diff --git a/README.md b/README.md index a50c072..e9a71c6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,65 @@ # ExnixOS-BY-MR +This project is based on the code of eznixOS, developed by our friend eznix. The goal is to build ISO images for Debian and Devuan using the Calamares and Debian Installer. The project is divided into four folders: two for Devuan and Debian, each with the Calamares installer, and two with both installers. + +No ISOs will be provided for download, but users can build them on their own. Follow the instructions below to get the code and build the ISOs. + +## Build Instructions + +### Prerequisites + +Before starting the ISO construction, make sure to have the following packages installed: + +#### Debian + +- live-build +- debootstrap + +#### Devuan + +- live-build +- debootstrap +- devuan-keyring + +Install the packages and build tools by running: + +```bash +sudo apt-get install live-build debootstrap +# For Devuan +sudo apt-get install devuan-keyring + +Getting the Code +Clone the repository using the following command: + +git clone https://git.acoroslinux.xyz/manuel/ExnixOS-BY-MR.git + +Project Structure +The project is structured as follows: + +BldHelper.sh - Script for ISO construction for any version. +eznixOS12X/ - Contains the base code of eznixOS. +scripts/ - Necessary scripts for ISO construction. +build-tools/ - .deb packages that need to be installed before building. +Installing Build Tools +Navigate to the build-tools/ folder and install the .deb packages: + +cd ExnixOS-BY-MR/build-tools/ +sudo dpkg -i *.deb + +Building the ISOs +Copy the contents of the eznixOS12X/ folder to your home directory. + +Execute the BldHelper.sh script: +# Make sure you are in the main directory +sudo ./BldHelper.sh + +Follow the instructions in the script to complete the ISO construction. + +Acknowledgments +We want to express our sincere thanks to eznix for the work done on eznixOS, which served as the basis for this project. + +Note: This project is intended for advanced users familiar with ISO construction. Make sure to fully understand the process before proceeding. + + + + diff --git a/eznixOS12X-calamares+debian-installer/BldHelper.sh b/eznixOS12X-calamares+debian-installer/BldHelper.sh new file mode 100755 index 0000000..32ee10a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12X +SUFFIX=amd64 +BUILD=eznixOS12X +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12X" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12X.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12X-calamares+debian-installer/bldeznix12X.sh b/eznixOS12X-calamares+debian-installer/bldeznix12X.sh new file mode 100755 index 0000000..b54b911 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/bldeznix12X.sh @@ -0,0 +1,385 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up build environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution bookworm \ + --archive-areas "main contrib non-free non-free-firmware" \ + --debian-installer live \ + --debian-installer-distribution bookworm \ + --debian-installer-gui true \ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application $BLDDIR \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X_${TODAY}" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +openvpn-systemd-resolved +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +## Add extra firmware packages +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $eznixOS12X/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12X/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/includes.binary/ +mkdir -p $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d/ +mkdir -p $eznixOS/eznixOS/config/includes.installer//usr/share/ + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12X $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12X/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12X/bootloaders/* $eznixOS/eznixOS/config/includes.binary +cp -r $eznixOS/eznixOS12X/D-I-installer/graphics $eznixOS/eznixOS/config/includes.installer/usr/share +cp -r $eznixOS/eznixOS12X/D-I-installer/themes $eznixOS/eznixOS/config/includes.installer/usr/share + +cp $eznixOS/eznixOS12X/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12X/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12X/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12X/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12X/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12X/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12X/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12X/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12X/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12X/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d +cp $eznixOS/eznixOS12X/D-I-installer/scripts/* $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d +cp $eznixOS/eznixOS12X/D-I-installer/preseed/* $eznixOS/eznixOS/config/includes.installer + +# Uncomment below line if you have packages in the misc64 folder to include: +#cp $eznixOS/eznixOS12X/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/BldHelper.sh b/eznixOS12X-calamares+debian-installer/eznixOS12X/BldHelper.sh new file mode 100755 index 0000000..32ee10a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12X +SUFFIX=amd64 +BUILD=eznixOS12X +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12X" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12X.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_debian.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_debian.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_debian.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_debian_dark.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_debian_dark.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_debian_dark.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_installer.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_installer.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_installer.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_installer_dark.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_installer_dark.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/logo_installer_dark.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/note_icon.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/note_icon.png new file mode 100644 index 0000000..6eabaef Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/note_icon.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/warning_icon.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/warning_icon.png new file mode 100644 index 0000000..a6a9e5c Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/graphics/warning_icon.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/preseed/preseed.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/preseed/preseed.cfg new file mode 100644 index 0000000..7ad50cc --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/preseed/preseed.cfg @@ -0,0 +1,33 @@ +################################################################################ +# Title: preseed.cfg +# Description: This preseed file includes configuration settings for a custom debian-installer iso. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +### You can choose to install non-free and contrib software. +d-i apt-setup/non-free boolean true +d-i apt-setup/contrib boolean true +d-i apt-setup/non-free-firmware boolean true + +### Select which update services to use; define the mirrors to be used. +# Values shown below are the normal defaults. +d-i apt-setup/services-select multiselect security, updates, backports +d-i apt-setup/security_host string security.debian.org + +### Uncomment this to add multiarch configuration for i386 +#d-i apt-setup/multiarch string i386 + +### Remove popularity-contest +popularity-contest popularity-contest/participate boolean false + +### Disable root account and add sudo previleges to the user +# Skip creation of a root account (normal user account will be able to +# use sudo). +d-i passwd/root-login boolean false + +### Keep /etc/default/grub file +d-i grub-pc/default string keep + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07final-cleanup b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07final-cleanup new file mode 100755 index 0000000..ebcb549 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07final-cleanup @@ -0,0 +1,18 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07final-cleanup +# Description: This script removes unwanted software and files after Debian installation +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Remove unwanted packages +chroot /target apt purge --autoremove -y \ + calamares \ + calamares-settings-debian \ + raspi-firmware + +# Clean unnecessary files +chroot /target rm -r /boot/firmware diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07grub-config b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07grub-config new file mode 100755 index 0000000..3307899 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07grub-config @@ -0,0 +1,33 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07grub-config +# Description: This script configures grub defaults after Debian installation. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Defines the variables +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="EznixOS" +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" +GRUB_CMDLINE_LINUX="" +GRUB_GFXMODE=1440x900 +GRUB_DISABLE_OS_PROBER=false + +# GRUB configuration file path +GRUB_CONFIG_FILE="/target/etc/default/grub" + +# Modify the GRUB file +sed -i "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=$GRUB_DEFAULT/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_TIMEOUT=.*/GRUB_TIMEOUT=$GRUB_TIMEOUT/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_DISTRIBUTOR=.*/GRUB_DISTRIBUTOR=\"$GRUB_DISTRIBUTOR\"/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"$GRUB_CMDLINE_LINUX_DEFAULT\"/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX\"/" $GRUB_CONFIG_FILE +sed -i "s/^#GRUB_GFXMODE=.*/GRUB_GFXMODE=$GRUB_GFXMODE/" $GRUB_CONFIG_FILE +sed -i "s/^#GRUB_DISABLE_OS_PROBER=.*/GRUB_DISABLE_OS_PROBER=$GRUB_DISABLE_OS_PROBER/" $GRUB_CONFIG_FILE + +# Run update-grub after modifying the file +chroot /target update-grub diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07rebuild-icon-caches b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07rebuild-icon-caches new file mode 100755 index 0000000..2b3c0ba --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07rebuild-icon-caches @@ -0,0 +1,13 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07rebuild-icon-caches +# Description: This script rebuilds the icon caches after Debian installation. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Rebuild the icon caches +chroot /target find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \; + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07update-system b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07update-system new file mode 100755 index 0000000..d8860e2 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/scripts/07update-system @@ -0,0 +1,16 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07update-system +# Description: This script updates the system after Debian installation. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Update the system +chroot /target apt update && apt upgrade -y +chroot /target apt dist-upgrade -y + +# Clean up unnecessary packages +chroot /target apt autoremove -y diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/themes/Clearlooks/gtk-2.0/gtkrc b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/themes/Clearlooks/gtk-2.0/gtkrc new file mode 100755 index 0000000..6b6ea7c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/themes/Clearlooks/gtk-2.0/gtkrc @@ -0,0 +1,444 @@ +# Credit: A few of the modeifications here were taken from the BSM Simple 0.8 theme by Bruno Schmidt Marques. +# Please keep this gtkrc in sync with the other ones from Clearlooks based themes. + +gtk-color-scheme = "base_color:#ffffff\nfg_color:#101010\ntooltip_fg_color:#000000\nselected_bg_color:#80A0C3\nselected_fg_color:#ffffff\ntext_color:#1A1A1A\nbg_color:#e0e0e0\ntooltip_bg_color:#f1f1f1" + +include "panel.rc" + +style "default" { + xthickness = 1 + ythickness = 1 + + ####################### + # Style Properties + ####################### + GtkButton::child-displacement-x = 1 + GtkButton::child-displacement-y = 1 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::image-spacing = 4 + GtkToolButton::icon-spacing = 4 + + GtkCheckButton::indicator-size = 14 + + GtkPaned::handle-size = 6 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 15 + GtkRange::stepper-size = 15 + + GtkScale::slider-length = 23 + GtkScale::trough-side-details = 1 + + GtkScrollbar::min-slider-length = 30 + GtkMenuBar::internal-padding = 0 + GtkExpander::expander-size = 16 + GtkToolbar::internal-padding = 1 + GtkTreeView::expander-size = 14 + GtkTreeView::vertical-separator = 0 + + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + WnckTasklist::fade-overlay-rect = 0 + # The following line hints to gecko (and possibly other appliations) + # that the entry should be drawn transparently on the canvas. + # Without this, gecko will fill in the background of the entry. + GtkEntry::honors-transparent-bg-hint = 1 + + GtkEntry::progress-border = { 2, 2, 2, 2 } + + #################### + # Color Definitions + #################### + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = shade(0.92,@bg_color) + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color # Color for selected items. + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.90, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[ACTIVE] = "#80A0C3" + base[SELECTED] = "#80A0C3" # Color for selected base items. + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = darker (@bg_color) + + engine "clearlooks" { + colorize_scrollbar = FALSE + reliefstyle = 1 + menubarstyle = 2 + toolbarstyle = 1 + animation = TRUE + radius = 3.0 + style = GUMMY + + # Set a hint to disable backward compatibility fallbacks. + hint = "use-hints" + } +} + +style "wide" { + xthickness = 2 + ythickness = 2 +} + +style "wider" { + xthickness = 3 + ythickness = 3 +} + +style "entry" { + xthickness = 3 + ythickness = 3 + + bg[SELECTED] = @selected_bg_color + fg[SELECTED] = @text_color + + engine "clearlooks" { + focus_color = @selected_bg_color + } +} + +style "spinbutton" { + + engine "clearlooks" { + hint = "spinbutton" + } +} + +style "scale" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" {#80A0C3 + hint = "scale" + } +} + +style "vscale" { + + engine "clearlooks" { + hint = "vscale" + } +} + +style "hscale" { + + engine "clearlooks" { + hint = "hscale" + } +} + +style "scrollbar" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + hint = "scrollbar" + } +} + +style "hscrollbar" { + + engine "clearlooks" { + hint = "hscrollbar" + } +} + +style "vscrollbar" { + + engine "clearlooks" { + hint = "vscrollbar" + } +} + +style "notebook_bg" { + + bg[NORMAL] = shade (1.02, @bg_color) +} + +style "button" { + xthickness = 3 + ythickness = 3 + + bg[NORMAL] = shade (1.04, @bg_color) + bg[PRELIGHT] = shade (1.06, @bg_color) + bg[ACTIVE] = shade (0.85, @bg_color) +} + +# The color is changed by the notebook_bg style, this style +# changes the x/ythickness +style "notebook" { + xthickness = 3 + ythickness = 3 +} + +style "statusbar" { + + engine "clearlooks" { + hint = "statusbar" + } +} + +style "comboboxentry" { + + engine "clearlooks" { + # Note: + # If you set the appears-as-list option on comboboxes in the theme, + # then you should set this hint on the combobox instead. + hint = "comboboxentry" + } +} + +style "menubar" +{ + bg[NORMAL] = shade(0.282,@bg_color) + + fg[NORMAL] = "#D0D0D0" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 1 + ythickness = 0 + engine "clearlooks" + { + hint = "menubar" + } +} + +style "menu" +{ + bg[NORMAL] = "#F8F7F6" # Color of menu background. + fg[NORMAL] = "#101010" + engine "clearlooks" + { + radius = 1.0 # Roundness of menu items. + } +} + +style "menu_item" +{ + + fg[PRELIGHT] = @selected_fg_color # Color of selected menu item text. + bg[SELECTED] = @selected_bg_color # Color of menu items. + bg[PRELIGHT] = @selected_bg_color # Color of menu items. + + #fg[NORMAL] = "#101010" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 0 + ythickness = 4 +} + +# This style is there to modify the separator menu items. The goals are: +# 1. Get a specific height. +# 2. The line should go to the edges (ie. no border at the left/right) +style "separator_menu_item" { + xthickness = 1 + ythickness = 0 + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 7 +} + +style "frame_title" { + + fg[NORMAL] = lighter (@fg_color) +} + +style "treeview" { + + engine "clearlooks" { + hint = "treeview" + } +} + +# The almost useless progress bar style +style "progressbar" { + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" { + # Explicitly set the radius for the progress bars inside menu items. + radius = 3.0 + + hint = "progressbar" + } +} + +# This style is based on the default style, so that the colors from the button +# style are overriden again. +style "treeview_header" = "default" { + xthickness = 2 + ythickness = 1 + + engine "clearlooks" { + hint = "treeview-header" + } +} + +style "tooltips" { + xthickness = 4 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color +} + +style "nautilus_location" { + + bg[NORMAL] = mix (0.60, shade (1.05, @bg_color), @selected_bg_color) +} + +# Wrokaroudn style for places where the text color is used instead of the fg color. +style "text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for menus where the text color is used instead of the fg color. +style "menuitem_text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for places where the fg color is used instead of the text color. +style "fg_is_text_color_workaround" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = darker (@bg_color) +} + +# Style to set the toolbar to use a flat style. This is because the "New" button in +# Evolution is not drawn transparent. So if there is a gradient in the background it will +# look really wrong. +# See http://bugzilla.gnome.org/show_bug.cgi?id=446953. +style "evo_new_button_workaround" { + + engine "clearlooks" { + toolbarstyle = 0 + } +} + + +############################################################################### +# The following part of the gtkrc applies the different styles to the widgets. +############################################################################### + +# The default style is applied to every widget +class "GtkWidget" style "default" + +class "GtkSeparator" style "wide" +class "GtkFrame" style "wide" +class "GtkCalendar" style "wide" +class "GtkEntry" style "entry" + +class "GtkSpinButton" style "spinbutton" +class "GtkScale" style "scale" +class "GtkVScale" style "vscale" +class "GtkHScale" style "hscale" +class "GtkScrollbar" style "scrollbar" +class "GtkHScrollbar" style "hscrollbar" +class "GtkVScrollbar" style "vscrollbar" + +# General matching follows. The order is choosen so that the right styles override +# each other. EG. progressbar needs to be more important than the menu match. +widget_class "*" style "notebook_bg" +# This is not perfect, it could be done better. +# (That is modify *every* widget in the notebook, and change those back that +# we really don't want changed) +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" + +widget_class "*" style "button" +widget_class "*" style "notebook" +widget_class "**" style "statusbar" + +widget_class "**" style "comboboxentry" +widget_class "**" style "comboboxentry" + +widget_class "**" style "menubar" +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "separator_menu_item" + +widget_class "*.." style "frame_title" +widget_class "*.*" style "treeview" + +widget_class "*" style "progressbar" + +# Treeview headers (and similar stock GTK+ widgets) +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" + +# The window of the tooltip is called "gtk-tooltip" +################################################################## +# FIXME: +# This will not work if one embeds eg. a button into the tooltip. +# As far as I can tell right now we will need to rework the theme +# quite a bit to get this working correctly. +# (It will involve setting different priorities, etc.) +################################################################## +widget "gtk-tooltip*" style "tooltips" + +########################################################################## +# Following are special cases and workarounds for issues in applications. +########################################################################## + +# Workaround for the evolution ETable (bug #527532) +widget_class "*.ETable.ECanvas" style "treeview_header" +# Workaround for the evolution ETree +widget_class "*.ETree.ECanvas" style "treeview_header" + +# Special case the nautilus-extra-view-widget +# ToDo: A more generic approach for all applications that have a widget like this. +widget "*.nautilus-extra-view-widget" style : highest "nautilus_location" + +# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 +# Note that this work around assumes that the combobox is _not_ in appears-as-list mode. +widget_class "*.." style "text_is_fg_color_workaround" +# This is the part of the workaround that fixes the menus +widget "*.gtk-combobox-popup-menu.*" style "menuitem_text_is_fg_color_workaround" + +# Work around the usage of GtkLabel inside GtkListItems to display text. +# This breaks because the label is shown on a background that is based on the base color. +widget_class "**" style "fg_is_text_color_workaround" +# GtkCList also uses the fg color to draw text on top of the base colors. +widget_class "*" style "fg_is_text_color_workaround" +# Nautilus when renaming files, and maybe other places. +widget_class "*" style "fg_is_text_color_workaround" + +# See the documentation of the style. +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "evo_new_button_workaround" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/themes/dark/gtk-2.0/gtkrc b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/themes/dark/gtk-2.0/gtkrc new file mode 100644 index 0000000..ec15a3a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/D-I-installer/themes/dark/gtk-2.0/gtkrc @@ -0,0 +1,444 @@ +# Credit: A few of the modeifications here were taken from the BSM Simple 0.8 theme by Bruno Schmidt Marques. +# Please keep this gtkrc in sync with the other ones from Clearlooks based themes. + +gtk-color-scheme = "base_color:#ffffff\nfg_color:#101010\ntooltip_fg_color:#000000\nselected_bg_color:#AF9479\nselected_fg_color:#ffffff\ntext_color:#1A1A1A\nbg_color:#e0e0e0\ntooltip_bg_color:#f1f1f1" + +include "panel.rc" + +style "default" { + xthickness = 1 + ythickness = 1 + + ####################### + # Style Properties + ####################### + GtkButton::child-displacement-x = 1 + GtkButton::child-displacement-y = 1 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::image-spacing = 4 + GtkToolButton::icon-spacing = 4 + + GtkCheckButton::indicator-size = 14 + + GtkPaned::handle-size = 6 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 15 + GtkRange::stepper-size = 15 + + GtkScale::slider-length = 23 + GtkScale::trough-side-details = 1 + + GtkScrollbar::min-slider-length = 30 + GtkMenuBar::internal-padding = 0 + GtkExpander::expander-size = 16 + GtkToolbar::internal-padding = 1 + GtkTreeView::expander-size = 14 + GtkTreeView::vertical-separator = 0 + + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + WnckTasklist::fade-overlay-rect = 0 + # The following line hints to gecko (and possibly other appliations) + # that the entry should be drawn transparently on the canvas. + # Without this, gecko will fill in the background of the entry. + GtkEntry::honors-transparent-bg-hint = 1 + + GtkEntry::progress-border = { 2, 2, 2, 2 } + + #################### + # Color Definitions + #################### + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = shade(0.92,@bg_color) + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color # Color for selected items. + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.90, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[ACTIVE] = "#AF9479" + base[SELECTED] = "#AF9479" # Color for selected base items. + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = darker (@bg_color) + + engine "clearlooks" { + colorize_scrollbar = FALSE + reliefstyle = 1 + menubarstyle = 2 + toolbarstyle = 1 + animation = TRUE + radius = 3.0 + style = GUMMY + + # Set a hint to disable backward compatibility fallbacks. + hint = "use-hints" + } +} + +style "wide" { + xthickness = 2 + ythickness = 2 +} + +style "wider" { + xthickness = 3 + ythickness = 3 +} + +style "entry" { + xthickness = 3 + ythickness = 3 + + bg[SELECTED] = @selected_bg_color + fg[SELECTED] = @text_color + + engine "clearlooks" { + focus_color = @selected_bg_color + } +} + +style "spinbutton" { + + engine "clearlooks" { + hint = "spinbutton" + } +} + +style "scale" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + hint = "scale" + } +} + +style "vscale" { + + engine "clearlooks" { + hint = "vscale" + } +} + +style "hscale" { + + engine "clearlooks" { + hint = "hscale" + } +} + +style "scrollbar" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + hint = "scrollbar" + } +} + +style "hscrollbar" { + + engine "clearlooks" { + hint = "hscrollbar" + } +} + +style "vscrollbar" { + + engine "clearlooks" { + hint = "vscrollbar" + } +} + +style "notebook_bg" { + + bg[NORMAL] = shade (1.02, @bg_color) +} + +style "button" { + xthickness = 3 + ythickness = 3 + + bg[NORMAL] = shade (1.04, @bg_color) + bg[PRELIGHT] = shade (1.06, @bg_color) + bg[ACTIVE] = shade (0.85, @bg_color) +} + +# The color is changed by the notebook_bg style, this style +# changes the x/ythickness +style "notebook" { + xthickness = 3 + ythickness = 3 +} + +style "statusbar" { + + engine "clearlooks" { + hint = "statusbar" + } +} + +style "comboboxentry" { + + engine "clearlooks" { + # Note: + # If you set the appears-as-list option on comboboxes in the theme, + # then you should set this hint on the combobox instead. + hint = "comboboxentry" + } +} + +style "menubar" +{ + bg[NORMAL] = shade(0.282,@bg_color) + + fg[NORMAL] = "#D0D0D0" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 1 + ythickness = 0 + engine "clearlooks" + { + hint = "menubar" + } +} + +style "menu" +{ + bg[NORMAL] = "#F8F7F6" # Color of menu background. + fg[NORMAL] = "#101010" + engine "clearlooks" + { + radius = 1.0 # Roundness of menu items. + } +} + +style "menu_item" +{ + + fg[PRELIGHT] = @selected_fg_color # Color of selected menu item text. + bg[SELECTED] = @selected_bg_color # Color of menu items. + bg[PRELIGHT] = @selected_bg_color # Color of menu items. + + #fg[NORMAL] = "#101010" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 0 + ythickness = 4 +} + +# This style is there to modify the separator menu items. The goals are: +# 1. Get a specific height. +# 2. The line should go to the edges (ie. no border at the left/right) +style "separator_menu_item" { + xthickness = 1 + ythickness = 0 + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 7 +} + +style "frame_title" { + + fg[NORMAL] = lighter (@fg_color) +} + +style "treeview" { + + engine "clearlooks" { + hint = "treeview" + } +} + +# The almost useless progress bar style +style "progressbar" { + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" { + # Explicitly set the radius for the progress bars inside menu items. + radius = 3.0 + + hint = "progressbar" + } +} + +# This style is based on the default style, so that the colors from the button +# style are overriden again. +style "treeview_header" = "default" { + xthickness = 2 + ythickness = 1 + + engine "clearlooks" { + hint = "treeview-header" + } +} + +style "tooltips" { + xthickness = 4 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color +} + +style "nautilus_location" { + + bg[NORMAL] = mix (0.60, shade (1.05, @bg_color), @selected_bg_color) +} + +# Wrokaroudn style for places where the text color is used instead of the fg color. +style "text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for menus where the text color is used instead of the fg color. +style "menuitem_text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for places where the fg color is used instead of the text color. +style "fg_is_text_color_workaround" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = darker (@bg_color) +} + +# Style to set the toolbar to use a flat style. This is because the "New" button in +# Evolution is not drawn transparent. So if there is a gradient in the background it will +# look really wrong. +# See http://bugzilla.gnome.org/show_bug.cgi?id=446953. +style "evo_new_button_workaround" { + + engine "clearlooks" { + toolbarstyle = 0 + } +} + + +############################################################################### +# The following part of the gtkrc applies the different styles to the widgets. +############################################################################### + +# The default style is applied to every widget +class "GtkWidget" style "default" + +class "GtkSeparator" style "wide" +class "GtkFrame" style "wide" +class "GtkCalendar" style "wide" +class "GtkEntry" style "entry" + +class "GtkSpinButton" style "spinbutton" +class "GtkScale" style "scale" +class "GtkVScale" style "vscale" +class "GtkHScale" style "hscale" +class "GtkScrollbar" style "scrollbar" +class "GtkHScrollbar" style "hscrollbar" +class "GtkVScrollbar" style "vscrollbar" + +# General matching follows. The order is choosen so that the right styles override +# each other. EG. progressbar needs to be more important than the menu match. +widget_class "*" style "notebook_bg" +# This is not perfect, it could be done better. +# (That is modify *every* widget in the notebook, and change those back that +# we really don't want changed) +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" + +widget_class "*" style "button" +widget_class "*" style "notebook" +widget_class "**" style "statusbar" + +widget_class "**" style "comboboxentry" +widget_class "**" style "comboboxentry" + +widget_class "**" style "menubar" +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "separator_menu_item" + +widget_class "*.." style "frame_title" +widget_class "*.*" style "treeview" + +widget_class "*" style "progressbar" + +# Treeview headers (and similar stock GTK+ widgets) +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" + +# The window of the tooltip is called "gtk-tooltip" +################################################################## +# FIXME: +# This will not work if one embeds eg. a button into the tooltip. +# As far as I can tell right now we will need to rework the theme +# quite a bit to get this working correctly. +# (It will involve setting different priorities, etc.) +################################################################## +widget "gtk-tooltip*" style "tooltips" + +########################################################################## +# Following are special cases and workarounds for issues in applications. +########################################################################## + +# Workaround for the evolution ETable (bug #527532) +widget_class "*.ETable.ECanvas" style "treeview_header" +# Workaround for the evolution ETree +widget_class "*.ETree.ECanvas" style "treeview_header" + +# Special case the nautilus-extra-view-widget +# ToDo: A more generic approach for all applications that have a widget like this. +widget "*.nautilus-extra-view-widget" style : highest "nautilus_location" + +# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 +# Note that this work around assumes that the combobox is _not_ in appears-as-list mode. +widget_class "*.." style "text_is_fg_color_workaround" +# This is the part of the workaround that fixes the menus +widget "*.gtk-combobox-popup-menu.*" style "menuitem_text_is_fg_color_workaround" + +# Work around the usage of GtkLabel inside GtkListItems to display text. +# This breaks because the label is shown on a background that is based on the base color. +widget_class "**" style "fg_is_text_color_workaround" +# GtkCList also uses the fg color to draw text on top of the base colors. +widget_class "*" style "fg_is_text_color_workaround" +# Nautilus when renaming files, and maybe other places. +widget_class "*" style "fg_is_text_color_workaround" + +# See the documentation of the style. +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "evo_new_button_workaround" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/black_hex_orange.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/black_hex_orange.jpg new file mode 100644 index 0000000..187a921 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/black_hex_orange.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/blue_purple_hex.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/blue_purple_hex.jpg new file mode 100644 index 0000000..04a5201 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/blue_purple_hex.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/bridge_water.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/bridge_water.jpg new file mode 100644 index 0000000..f3bb758 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/bridge_water.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/cloud_lake_peaks.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/cloud_lake_peaks.jpg new file mode 100644 index 0000000..8a8ba6c Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/cloud_lake_peaks.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/clouds_water.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/clouds_water.jpg new file mode 100644 index 0000000..7263320 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/clouds_water.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/darklave.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/darklave.png new file mode 100644 index 0000000..c4e792d Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/darklave.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/darknight.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/darknight.png new file mode 100644 index 0000000..d2a5a3b Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/darknight.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/desert_rock_lake.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/desert_rock_lake.jpg new file mode 100644 index 0000000..f9c6a0f Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/desert_rock_lake.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/fall_lake.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/fall_lake.jpg new file mode 100644 index 0000000..07e303c Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/fall_lake.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/fall_waterfall.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/fall_waterfall.jpg new file mode 100644 index 0000000..ba9a718 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/fall_waterfall.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/forest_stream.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/forest_stream.jpg new file mode 100644 index 0000000..3d40d1d Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/forest_stream.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/gold_pond_falls.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/gold_pond_falls.jpg new file mode 100644 index 0000000..d611d4e Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/gold_pond_falls.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/gray_lake_clouds.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/gray_lake_clouds.jpg new file mode 100644 index 0000000..b450a9e Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/gray_lake_clouds.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_abstract.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_abstract.png new file mode 100644 index 0000000..1b1b810 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_abstract.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_rock_falls.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_rock_falls.jpg new file mode 100644 index 0000000..0130003 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_rock_falls.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_waterstream.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_waterstream.jpg new file mode 100644 index 0000000..d188d0a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/green_waterstream.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/icy_lake.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/icy_lake.jpg new file mode 100644 index 0000000..d823847 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/icy_lake.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lake_powell.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lake_powell.jpg new file mode 100644 index 0000000..e8bca8f Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lake_powell.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lakerocks_clouds.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lakerocks_clouds.jpg new file mode 100644 index 0000000..6b2184e Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lakerocks_clouds.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lakeside.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lakeside.png new file mode 100644 index 0000000..49b60dc Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lakeside.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lavalamp.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lavalamp.jpg new file mode 100644 index 0000000..527bc61 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lavalamp.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lavalamp.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lavalamp.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/lavalamp.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/mirror_lake_boats.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/mirror_lake_boats.jpg new file mode 100644 index 0000000..8c69917 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/mirror_lake_boats.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/mountains_water.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/mountains_water.jpg new file mode 100644 index 0000000..a2121f9 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/mountains_water.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature002.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature002.jpg new file mode 100644 index 0000000..b9aa8d2 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature002.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature003.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature003.jpg new file mode 100644 index 0000000..c55aba8 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature003.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature005.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature005.jpg new file mode 100644 index 0000000..d4288cc Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature005.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature009.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature009.jpg new file mode 100644 index 0000000..bf31052 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nature009.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nightbefore.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nightbefore.png new file mode 100644 index 0000000..33486f6 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/nightbefore.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/reflection_canyon.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/reflection_canyon.jpg new file mode 100644 index 0000000..bab3d34 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/reflection_canyon.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/short_waterfall.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/short_waterfall.jpg new file mode 100644 index 0000000..0bfc40e Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/short_waterfall.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/snow-peaks.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/snow-peaks.png new file mode 100644 index 0000000..c4cdf08 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/snow-peaks.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/snowy_lake.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/snowy_lake.jpg new file mode 100644 index 0000000..e27b707 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/snowy_lake.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/theway.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/theway.png new file mode 100644 index 0000000..a2b4f41 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/theway.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/tree_lake_peaks.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/tree_lake_peaks.jpg new file mode 100644 index 0000000..254972a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/tree_lake_peaks.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/trees_lake.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/trees_lake.jpg new file mode 100644 index 0000000..38c1964 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/trees_lake.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/trees_waterfall.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/trees_waterfall.jpg new file mode 100644 index 0000000..84908be Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/trees_waterfall.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/underwater_rocks.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/underwater_rocks.jpg new file mode 100644 index 0000000..321551c Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/underwater_rocks.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/water_mountains.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/water_mountains.jpg new file mode 100644 index 0000000..cc913fa Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/water_mountains.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfall_lake.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfall_lake.jpg new file mode 100644 index 0000000..eb8a61e Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfall_lake.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfall_logs.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfall_logs.jpg new file mode 100644 index 0000000..69d8361 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfall_logs.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls003.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls003.jpg new file mode 100644 index 0000000..c492115 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls003.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls005.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls005.jpg new file mode 100644 index 0000000..fcf280a Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls005.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls014.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls014.jpg new file mode 100644 index 0000000..121fcc8 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls014.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls015.jpg b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls015.jpg new file mode 100644 index 0000000..e474383 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/backgrounds/waterfalls015.jpg differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bldeznix12X.sh b/eznixOS12X-calamares+debian-installer/eznixOS12X/bldeznix12X.sh new file mode 100755 index 0000000..b54b911 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bldeznix12X.sh @@ -0,0 +1,385 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up build environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution bookworm \ + --archive-areas "main contrib non-free non-free-firmware" \ + --debian-installer live \ + --debian-installer-distribution bookworm \ + --debian-installer-gui true \ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application $BLDDIR \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X_${TODAY}" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +openvpn-systemd-resolved +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +## Add extra firmware packages +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $eznixOS12X/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12X/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/includes.binary/ +mkdir -p $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d/ +mkdir -p $eznixOS/eznixOS/config/includes.installer//usr/share/ + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12X $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12X/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12X/bootloaders/* $eznixOS/eznixOS/config/includes.binary +cp -r $eznixOS/eznixOS12X/D-I-installer/graphics $eznixOS/eznixOS/config/includes.installer/usr/share +cp -r $eznixOS/eznixOS12X/D-I-installer/themes $eznixOS/eznixOS/config/includes.installer/usr/share + +cp $eznixOS/eznixOS12X/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12X/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12X/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12X/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12X/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12X/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12X/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12X/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12X/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12X/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d +cp $eznixOS/eznixOS12X/D-I-installer/scripts/* $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d +cp $eznixOS/eznixOS12X/D-I-installer/preseed/* $eznixOS/eznixOS/config/includes.installer + +# Uncomment below line if you have packages in the misc64 folder to include: +#cp $eznixOS/eznixOS12X/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/config.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/config.cfg new file mode 100644 index 0000000..1061be0 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/config.cfg @@ -0,0 +1,30 @@ +set default=0 + +if [ x$feature_default_font_path = xy ] ; then + font=unicode +else + font=$prefix/unicode.pf2 +fi + +# Copied from the netinst image +if loadfont $font ; then + set gfxmode=800x600 + set gfxpayload=keep + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus +else + set gfxmode=auto + insmod all_video +fi + +insmod gfxterm +insmod png + +source /boot/grub/theme.cfg + +terminal_output gfxterm + +insmod play +play 960 440 1 0 4 440 1 diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/grub.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/grub.cfg new file mode 100644 index 0000000..5413249 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/grub.cfg @@ -0,0 +1,57 @@ +source /boot/grub/config.cfg + +# Live boot +menuentry "EznixOS Live)" --hotkey=l { + linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} + initrd /live/initrd.img +} +menuentry "EznixOS Live ( fail-safe mode)" { + linux /live/vmlinuz boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788 + initrd /live/initrd.img +} + +# You can add more entries like this +# menuentry "Alternate live boot" { +# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} custom options here +# initrd /live/initrd.img +# } +# menuentry "Alternate graphical installer" { +# linux /install/gtk/vmlinuz vga=788 --- quiet custom options here +# initrd /install/gtk/initrd.gz +# } +# menuentry "Alternate textual installer" { +# linux /install/vmlinuz vga=normal --- quiet custom options here +# initrd /install/initrd.gz +# } + +# Installer (if any) +if true; then + +source /boot/grub/install_start.cfg + +submenu 'Advanced install options ...' --hotkey=a { + + source /boot/grub/theme.cfg + + source /boot/grub/install.cfg + +} +fi + +submenu 'Utilities...' --hotkey=u { + + source /boot/grub/theme.cfg + + # Memtest (if any) + if false; then + source /boot/grub/memtest.cfg + fi + + # Firmware setup (UEFI) + if [ "${grub_platform}" = "efi" ]; then + menuentry "UEFI Firmware Settings" { + fwsetup + } + fi + +} diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/install.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/install.cfg new file mode 100644 index 0000000..6e6a517 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/install.cfg @@ -0,0 +1,124 @@ +submenu 'Graphical installer ...' --hotkey=g { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/gtk/vmlinuz vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/gtk/vmlinuz priority=low vga=788 + initrd /install/gtk/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/gtk/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/gtk/vmlinuz rescue/enable=true vga=788 --- quiet + initrd /install/gtk/initrd.gz + } +} + +submenu 'Text installer ...' --hotkey=t { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/vmlinuz vga=788 --- quiet + initrd /install/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/vmlinuz priority=low vga=788 + initrd /install/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/vmlinuz rescue/enable=true vga=788 --- quiet + initrd /install/initrd.gz + } +} + +submenu 'Graphical installer with dark theme ...' --hotkey=d { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/gtk/vmlinuz vga=788 theme=dark --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/gtk/vmlinuz priority=low vga=788 theme=dark + initrd /install/gtk/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/gtk/vmlinuz auto=true priority=critical vga=788 theme=dark --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/gtk/vmlinuz rescue/enable=true vga=788 theme=dark --- quiet + initrd /install/gtk/initrd.gz + } +} + +submenu 'Text installer with dark theme ...' --hotkey=k { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/vmlinuz vga=788 theme=dark --- quiet + initrd /install/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/vmlinuz priority=low vga=788 theme=dark + initrd /install/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/vmlinuz auto=true priority=critical vga=788 theme=dark --- quiet + initrd /install/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/vmlinuz rescue/enable=true vga=788 theme=dark --- quiet + initrd /install/initrd.gz + } +} + +submenu 'Installer with speech synthesis ...' --hotkey=s { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/gtk/vmlinuz speakup.synth=soft vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/gtk/vmlinuz speakup.synth=soft priority=low vga=788 + initrd /install/gtk/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/gtk/vmlinuz speakup.synth=soft auto=true priority=critical vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/gtk/vmlinuz speakup.synth=soft rescue/enable=true vga=788 --- quiet + initrd /install/gtk/initrd.gz + } +} diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/install_start.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/install_start.cfg new file mode 100644 index 0000000..2454225 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/install_start.cfg @@ -0,0 +1,9 @@ +menuentry 'Start installer' --hotkey=i { + linux /install/gtk/vmlinuz vga=788 --- quiet + initrd /install/gtk/initrd.gz +} + +menuentry 'Start installer with speech synthesis' --hotkey=s { + linux /install/gtk/vmlinuz speakup.synth=soft vga=788 --- quiet + initrd /install/gtk/initrd.gz +} diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/live-theme/theme.txt b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/live-theme/theme.txt new file mode 100644 index 0000000..a097711 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/live-theme/theme.txt @@ -0,0 +1,51 @@ +desktop-image: "../splash.png" +title-color: "#ffffff" +title-font: "Unifont Regular 16" +title-text: "Live Boot Menu with GRUB" +message-font: "Unifont Regular 16" +terminal-font: "Unifont Regular 16" + +#help bar at the bottom ++ label { + top = 100%-50 + left = 0 + width = 100% + height = 20 + text = "@KEYMAP_SHORT@" + align = "center" + color = "#ffffff" + font = "Unifont Regular 16" +} + +#boot menu ++ boot_menu { + left = 10% + width = 80% + top = 52% + height = 48%-80 + item_color = "#a8a8a8" + item_font = "Unifont Regular 16" + selected_item_color= "#ffffff" + selected_item_font = "Unifont Regular 16" + item_height = 16 + item_padding = 0 + item_spacing = 4 + icon_width = 0 + icon_heigh = 0 + item_icon_space = 0 +} + +#progress bar ++ progress_bar { + id = "__timeout__" + left = 15% + top = 100%-80 + height = 16 + width = 70% + font = "Unifont Regular 16" + text_color = "#000000" + fg_color = "#ffffff" + bg_color = "#a8a8a8" + border_color = "#ffffff" + text = "@TIMEOUT_NOTIFICATION_LONG@" +} diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/loopback.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/loopback.cfg new file mode 100644 index 0000000..e94c44d --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/loopback.cfg @@ -0,0 +1 @@ +source /boot/grub/grub.cfg diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/splash.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/splash.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/theme.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/theme.cfg new file mode 100644 index 0000000..56e4c18 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/theme.cfg @@ -0,0 +1,13 @@ +set color_normal=light-gray/black +set color_highlight=white/dark-gray + +if [ -e /isolinux/splash.png ]; then + # binary_syslinux modifies the theme file to point to the correct + # background picture + set theme=/boot/grub/live-theme/theme.txt +elif [ -e /boot/grub/splash.png ]; then + set theme=/boot/grub/live-theme/theme.txt +else + set menu_color_normal=white/red + set menu_color_highlight=white/red +fi diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/unicode.pf2 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/unicode.pf2 new file mode 100644 index 0000000..290ddc0 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/boot/grub/unicode.pf2 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/hdt.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/hdt.c32 new file mode 100644 index 0000000..d67d918 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/hdt.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/install.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/install.cfg new file mode 100644 index 0000000..7ad0670 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/install.cfg @@ -0,0 +1,185 @@ +label installstart + menu label Start ^installer + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append vga=788 --- quiet + +label installstartspeech + menu label Start installer with ^speech synthesis + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft vga=788 --- quiet + +menu begin install + menu label ^Advanced install options + menu title Advanced install options + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + menu begin graphicalinstall + menu label ^Graphical installer + menu title Graphical installer + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label installgui + menu label ^Install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append vga=788 --- quiet + + label expertgui + menu label E^xpert install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append priority=low vga=788 + + label autogui + menu label ^Automated install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append auto=true priority=critical vga=788 --- quiet + + label rescuegui + menu label ^Rescue mode + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append rescue/enable=true vga=788 --- quiet + menu end + + menu begin textinstall + menu label ^Text installer + menu title Text installer + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label install + menu label ^Install + linux /install/vmlinuz + initrd /install/initrd.gz + append vga=788 --- quiet + + label expert + menu label E^xpert install + linux /install/vmlinuz + initrd /install/initrd.gz + append priority=low vga=788 + + label auto + menu label ^Automated install + linux /install/vmlinuz + initrd /install/initrd.gz + append auto=true priority=critical vga=788 --- quiet + + label rescue + menu label ^Rescue mode + linux /install/vmlinuz + initrd /install/initrd.gz + append rescue/enable=true vga=788 --- quiet + menu end + + menu begin graphicalinstalldark + menu label Graphical installer with ^dark theme + menu title Graphical installer with dark theme + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label darkinstallgui + menu label ^Install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append vga=788 theme=dark --- quiet + + label darkexpertgui + menu label E^xpert install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append priority=low vga=788 theme=dark + + label darkautogui + menu label ^Automated install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append auto=true priority=critical vga=788 theme=dark --- quiet + + label darkrescuegui + menu label ^Rescue mode + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append rescue/enable=true vga=788 theme=dark --- quiet + menu end + + menu begin textinstalldark + menu label Text installer with dar^k theme + menu title Text installer with dark theme + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label darkinstall + menu label ^Install + linux /install/vmlinuz + initrd /install/initrd.gz + append vga=788 theme=dark --- quiet + + label darkexpert + menu label E^xpert install + linux /install/vmlinuz + initrd /install/initrd.gz + append priority=low vga=788 theme=dark + + label darkauto + menu label ^Automated install + linux /install/vmlinuz + initrd /install/initrd.gz + append auto=true priority=critical vga=788 theme=dark --- quiet + + label darkrescue + menu label ^Rescue mode + linux /install/vmlinuz + initrd /install/initrd.gz + append rescue/enable=true vga=788 theme=dark --- quiet + menu end + + menu begin speechinstall + menu label Installer with ^speech synthesis + menu title Installer with speech synthesis + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label installspeechsynth + menu label ^Install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft vga=788 --- quiet + + label expertguispeech + menu label E^xpert install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft priority=low vga=788 + + label autoguispeech + menu label ^Automated install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft auto=true priority=critical vga=788 --- quiet + + label rescueguispeech + menu label ^Rescue mode + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft rescue/enable=true vga=788 --- quiet + menu end +menu end diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/isolinux.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/isolinux.cfg new file mode 100644 index 0000000..a3e3eab --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/isolinux.cfg @@ -0,0 +1,4 @@ +include menu.cfg +default vesamenu.c32 +prompt 0 +timeout 0 diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/ldlinux.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/ldlinux.c32 new file mode 100644 index 0000000..e94389b Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/ldlinux.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libcom32.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libcom32.c32 new file mode 100644 index 0000000..c4265b9 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libcom32.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libgpl.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libgpl.c32 new file mode 100644 index 0000000..11f43f1 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libgpl.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libmenu.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libmenu.c32 new file mode 100644 index 0000000..b3d6986 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libmenu.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libutil.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libutil.c32 new file mode 100644 index 0000000..6fc1da7 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/libutil.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/live.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/live.cfg new file mode 100644 index 0000000..bbf9975 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/live.cfg @@ -0,0 +1,12 @@ +label EznixOS Live + menu label ^EznixOS Live + menu default + linux /live/vmlinuz + initrd /live/initrd.img + append boot=live components quiet splash + +label EznixOS Live-failsafe + menu label EznixOS Live (fail-safe mode) + linux /live/vmlinuz + initrd /live/initrd.img + append boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788 diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/menu.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/menu.cfg new file mode 100644 index 0000000..db4f262 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/menu.cfg @@ -0,0 +1,18 @@ +menu hshift 0 +menu width 82 + +menu title Boot menu +include stdmenu.cfg +include live.cfg +include install.cfg +menu begin utilities + menu label ^Utilities + menu title Utilities + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include utilities.cfg +menu end + +menu clear diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/splash.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/splash.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/splash800x600.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/splash800x600.png new file mode 100644 index 0000000..38641e4 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/splash800x600.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/stdmenu.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/stdmenu.cfg new file mode 100644 index 0000000..671b16f --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/stdmenu.cfg @@ -0,0 +1,15 @@ +menu background splash.png +menu color title * #FFFFFFFF * +menu color border * #00000000 #00000000 none +menu color sel * #ffffffff #76a1d0ff * +menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff * +menu color tabmsg * #ffffffff #00000000 * +menu color help 37;40 #ffdddd00 #00000000 none +menu vshift 12 +menu rows 10 +menu helpmsgrow 15 +# The command line must be at least one line from the bottom. +menu cmdlinerow 16 +menu timeoutrow 16 +menu tabmsgrow 18 +menu tabmsg Press ENTER to boot or TAB to edit a menu entry diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/utilities.cfg b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/utilities.cfg new file mode 100644 index 0000000..d600a4c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/utilities.cfg @@ -0,0 +1,4 @@ +label hdt + menu label ^Hardware Detection Tool (HDT) + com32 hdt.c32 + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/vesamenu.c32 b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/vesamenu.c32 new file mode 100644 index 0000000..bbb65e0 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/bootloaders/isolinux/vesamenu.c32 differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/buildtools/debootstrap_1.0.152acoros3_all.deb b/eznixOS12X-calamares+debian-installer/eznixOS12X/buildtools/debootstrap_1.0.152acoros3_all.deb new file mode 100644 index 0000000..b9b944c Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/buildtools/debootstrap_1.0.152acoros3_all.deb differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/buildtools/live-build_20230502acoros1_all.deb b/eznixOS12X-calamares+debian-installer/eznixOS12X/buildtools/live-build_20230502acoros1_all.deb new file mode 100644 index 0000000..af83f21 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/buildtools/live-build_20230502acoros1_all.deb differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/branding.desc b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/branding.desc new file mode 100644 index 0000000..6a32bea --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/branding.desc @@ -0,0 +1,31 @@ +--- +componentName: eznixos +welcomeStyleCalamares: true + +strings: + productName: eznixOS + shortProductName: eznixOS + version: 12X + shortVersion: 12X + versionedName: eznixOS + shortVersionedName: eznixOS + bootloaderEntryName: eznixos + productUrl: https://sourceforge.net/projects/eznixos/ +# supportUrl: https://sourceforge.net/projects/eznixos/ +# knownIssuesUrl: https://sourceforge.net/projects/eznixos/ +# releaseNotesUrl: https://sourceforge.net/projects/eznixos/ +# donateUrl: https://sourceforge.net/projects/eznixos/ + +images: + productLogo: "eznixos-logo.png" + productIcon: "eznixos-logo.png" + productWallpaper: "wallpaper.png" + productWelcome: "slide_cs.png" + +slideshow: "show.qml" + +style: + sidebarBackground: "#292F34" + sidebarText: "#FFFFFF" + sidebarTextSelect: "#292F34" + sidebarTextHighlight: "#D35400" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/eznixos-logo.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/eznixos-logo.png new file mode 100644 index 0000000..d13bcfa Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/eznixos-logo.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/show.qml b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/show.qml new file mode 100644 index 0000000..29759b3 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/show.qml @@ -0,0 +1,148 @@ +/* === This file is part of Calamares - === + * + * Copyright 2015, Teo Mrnjavac + * + * Calamares 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 3 of the License, or + * (at your option) any later version. + * + * Calamares 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 Calamares. If not, see . + * + * EznixOS custom settings + */ + +import QtQuick 2.0; +import calamares.slideshow 1.0; + +Presentation +{ + id: presentation + + Timer { + id: advanceTimer + interval: 30000 + running: true + repeat: true + onTriggered: presentation.goToNextSlide() + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + + Image { + id: background1 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Welcome to EznixOS, a Debian based Linux
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background2 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 163 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("EznixOS is 100% compatible with Debian Linux
") + + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background3 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Look inside the ~/EznixOS12X folder for documentation
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background4 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Thank you for trying EznixOS12
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Component.onCompleted: advanceTimer.running = true +} + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/slide1.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/slide1.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/slide1.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/slide_cs.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/slide_cs.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/slide_cs.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/wallpaper.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/wallpaper.png new file mode 100644 index 0000000..d0a9bbc Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/wallpaper.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/welcome.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/branding/eznixos/welcome.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/bootloader.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/bootloader.conf new file mode 100644 index 0000000..2a76ecf --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/bootloader.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Bootloader configuration +# +--- +efiBootLoader: "grub" + +kernel: "/vmlinuz-linux" +img: "/initramfs-linux.img" +fallback: "/initramfs-linux-fallback.img" +timeout: "10" + +efiBootloaderId: "eznixos" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" + +installEFIFallback: true diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/displaymanager.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/displaymanager.conf new file mode 100644 index 0000000..859bdb0 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/displaymanager.conf @@ -0,0 +1,14 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure one or more display managers (e.g. sddm or Lightdm) +# +--- +displaymanagers: + - sddm + - lightdm + +basicSetup: false + +sysconfigSetup: false diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/finished.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/finished.conf new file mode 100644 index 0000000..3a38d85 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/finished.conf @@ -0,0 +1,10 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure finished screen options +# +--- +restartNowEnabled: true +restartNowChecked: false +restartNowCommand: "systemctl -i reboot" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/fstab.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/fstab.conf new file mode 100644 index 0000000..da38055 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/fstab.conf @@ -0,0 +1,27 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure fstab options +# +--- +mountOptions: + default: defaults,noatime,nodiscard + btrfs: defaults,noatime,noautodefrag,nodiscard + btrfs_swap: defaults + swap: defaults + +crypttabOptions: luks,keyscript=/bin/cat + +efiMountOptions: umask=0077 + +ssdExtraMountOptions: + btrfs: ssd + +tmpOptions: + default: + tmpfs: false + options: "" + ssd: + tmpfs: true + options: "defaults,noatime,mode=1777" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/luksopenswaphookcfg.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/luksopenswaphookcfg.conf new file mode 100644 index 0000000..f1f04ac --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/luksopenswaphookcfg.conf @@ -0,0 +1,8 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Writes an openswap configuration with LUKS settings to the given path +# +--- +configFilePath: /etc/openswap.conf diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/machineid.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/machineid.conf new file mode 100644 index 0000000..44c2e2a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/machineid.conf @@ -0,0 +1,18 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure machineid options +# +--- +systemd: true + +dbus: true + +symlink: true + +entropy-copy: true + +entropy-files: + - /var/lib/urandom/random-seed + - /var/lib/systemd/random-seed diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/mount.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/mount.conf new file mode 100644 index 0000000..a1c0617 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/mount.conf @@ -0,0 +1,38 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure mount options +# +--- +extraMounts: + - device: proc + fs: proc + mountPoint: /proc + - device: sys + fs: sysfs + mountPoint: /sys + - device: /dev + mountPoint: /dev + options: bind + - device: tmpfs + fs: tmpfs + mountPoint: /run + - device: /run/udev + mountPoint: /run/udev + options: bind + +extraMountsEfi: + - device: efivarfs + fs: efivarfs + mountPoint: /sys/firmware/efi/efivars + +btrfsSubvolumes: + - mountPoint: / + subvolume: /@ + - mountPoint: /home + subvolume: /@home + - mountPoint: /var/cache + subvolume: /@cache + - mountPoint: /var/log + subvolume: /@log diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/openrcdmcryptcfg.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/openrcdmcryptcfg.conf new file mode 100644 index 0000000..7058791 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/openrcdmcryptcfg.conf @@ -0,0 +1,8 @@ +# Ezarcher custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration file for opendmcryptcfg module +# +--- +configFilePath: /etc/conf.d/dmcrypt diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/packages.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/packages.conf new file mode 100644 index 0000000..6bdb1a7 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/packages.conf @@ -0,0 +1,19 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure packages options, remove live configuration +# +--- +backend: apt + +operations: + - remove: + - 'live-boot' + - 'live-boot-doc' + - 'live-config' + - 'live-config-doc' + - 'live-config-systemd' + - 'live-tools' + - 'calamares-settings-debian' + - 'calamares' diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/partition.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/partition.conf new file mode 100644 index 0000000..5b35218 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/partition.conf @@ -0,0 +1,34 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration for the partition options +# +--- +efiSystemPartition: "/boot/efi" + +efiSystemPartitionSize: 1024M + +efiSystemPartitionName: EFI + +userSwapChoices: + - none # Create no swap, use no swap + - small # Up to 4GB + - suspend # At least main memory size + - file # To swap file instead of partition + +swapPartitionName: SWAP + +drawNestedPartitions: false + +alwaysShowPartitionLabels: true + +allowManualPartitioning: true + +initialPartitioningChoice: none + +initialSwapChoice: none + +defaultFileSystemType: "ext4" + +availableFileSystemTypes: ["ext4","btrfs","xfs"] diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/services-systemd.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/services-systemd.conf new file mode 100644 index 0000000..88f961a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/services-systemd.conf @@ -0,0 +1,10 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Systemd services options +# +--- +timers: + - name: "fstrim" + mandatory: false diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/shellprocess.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/shellprocess.conf new file mode 100644 index 0000000..f99f347 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/shellprocess.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Shell process to remove calamares config files +# +--- +dontChroot: false +timeout: 999 +script: + - "-rm -r @@ROOT@@/etc/calamares/" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/unpackfs.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/unpackfs.conf new file mode 100644 index 0000000..91f16d4 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/unpackfs.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure unpack squashfs filesystem +# +--- +unpack: + - source: "/run/live/medium/live/filesystem.squashfs" + sourcefs: "squashfs" + destination: "/" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/users.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/users.conf new file mode 100644 index 0000000..a4c5202 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/users.conf @@ -0,0 +1,30 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure user and group options +# +--- +userGroup: users + +defaultGroups: + - cdrom + - floppy + - sudo + - audio + - dip + - video + - plugdev + - netdev + - lpadmin + - scanner + - bluetooth + +autologinGroup: autologin +doAutologin: false +sudoersGroup: sudo +setRootPassword: true +doReusePassword: true +allowWeakPasswords: true +allowWeakPasswordsDefault: true +userShell: /bin/bash diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/welcome.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/welcome.conf new file mode 100644 index 0000000..02cec71 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/modules/welcome.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure welcome options and set minimum specs +# +--- +showSupportUrl: false +showKnownIssuesUrl: false +showReleaseNotesUrl: false + +requirements: + requiredStorage: 10 + requiredRam: 1.0 + check: + - storage + - ram + - power + - root + required: + - storage + - ram + - root diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/settings.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/settings.conf new file mode 100644 index 0000000..3edf88d --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/calamares/settings.conf @@ -0,0 +1,66 @@ +# Configuration file for Calamares +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure setup options and branding +# Syntax is YAML 1.2 +# +--- + +modules-search: [ local, /usr/lib/calamares/modules ] + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +quit-at-end: false + +sequence: + +- show: + - welcome + - locale + - keyboard + - partition + - users + - summary + +- exec: + - partition + - mount + - unpackfs + - sources-media + - machineid + - fstab + - locale + - keyboard + - localecfg + - users + - displaymanager + - networkcfg + - hwclock + - services-systemd + - bootloader-config + - grubcfg + - bootloader + - packages + - luksbootkeyfile + - plymouthcfg + - initramfscfg + - initramfs + - sources-media-unmount + - sources-final + - shellprocess + - umount + +- show: + - finished + +branding: eznixos + +prompt-install: false + +dont-chroot: false diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/bldeznix12X-howto.txt b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/bldeznix12X-howto.txt new file mode 100644 index 0000000..1e769cd --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/bldeznix12X-howto.txt @@ -0,0 +1,120 @@ +Step by Step Live-Build - AMD64 Architecture Example + +----------------------------------- + +Suggested location for the build staging folder: + + /eznixOS12X -- build folder + +Suggested location for the collection of preparation files and packages: + + /eznix12X -- files location + + +The build procedure begins below. Copy and paste each command exactly unless you know what you are doing and are comfortable making changes. +ALL COMMANDS NEED TO BE RUN AS ROOT! + +---------------------------------- + +Step 1: Assign work, files, and build directory variables + +# Run command below to set the working directory: + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +---------------------------------- + +Step 2: Remove the icon cache cleaning hook, create the build staging folder, and cd into it + +# Run commands below to prepare for the build: + +rm /usr/share/live/build/hooks/normal/9000-remove-gnome-icon-cache.hook.chroot + +mkdir $BLDDIR +cd $BLDDIR + +---------------------------------- + +Step 3: Set up the live-build config + +# Run command below to configure live build: + +lb config --binary-images iso-hybrid --mode debian --architectures amd64 --linux-flavours amd64 --distribution bookworm --archive-areas "main contrib non-free non-free-firmware" --updates true --security true --cache true --apt-recommends true --firmware-binary true --firmware-chroot true --win32-loader false --iso-application $BLDDIR --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ --image-name "$BLDDIR-$(date -u +"%y%m%d")" --iso-volume "$BLDDIR-$(date -u +"%y%m%d")" --checksums sha512 --clean --color + +---------------------------------- + +Step 4: Pass the desktop and packages to the live-build config + +# Run command below to install the Xfce Desktop: + +echo "accountsservice arc-theme asunder atril breeze-gtk-theme breeze-icon-theme dconf-cli gnome-disk-utility gnome-keyring gnome-nettool gnome-system-tools greybird-gtk-theme gvfs-backends gvfs-fuse light-locker lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings mousepad network-manager-gnome network-manager-openconnect-gnome network-manager-openvpn-gnome numix-gtk-theme pavucontrol pulseaudio remmina tango-icon-theme xarchiver xfce4 xfce4-goodies xfce4-power-manager xfce4-terminal" > $WKDIR/$BLDDIR/config/package-lists/xfcedesktop.list.chroot + +echo "aisleriot alsa-utils apt-transport-https audacious audacious-plugins autoconf automake bleachbit btrfs-progs build-essential cdtool cdrdao cdrskin cifs-utils clonezilla cryptsetup cryptsetup-initramfs cups cups-filters curl dbus-user-session dbus-x11 debconf debhelper dh-autoreconf dialog dirmngr dkms dos2unix dosbox dosfstools dvdauthor exfatprogs faac faad fakeroot ffmpeg filezilla firefox-esr flac foomatic-db foomatic-db-engine frei0r-plugins fuse3 galculator gdebi geany ghostscript gimp gir1.2-ibus-1.0 gparted grsync grub-pc gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-plugins-good gthumb guvcview hardinfo haveged hplip-gui htop hunspell-en-us hyphen-en-us ibus ibus-data ibus-gtk ibus-gtk3 iftop im-config inxi isolinux iw jfsutils keepassxc lame less libegl1-mesa libibus-1.0-5 libgl1-mesa-glx libqt5opengl5 libreoffice-calc libreoffice-draw libreoffice-impress libreoffice-writer libreoffice-gtk3 libreoffice-help-en-us libnss-mdns libsmbclient libxcb-xtest0 libxvidcore4 linux-headers-amd64 live-build lsb-release lshw meld mencoder menu mjpegtools mpg321 mpv mtools mythes-en-us neofetch netcat-openbsd ntfs-3g nvidia-detect openconnect openvpn openvpn-systemd-resolved os-prober p7zip-full p7zip-rar papirus-icon-theme pciutils perl plymouth plymouth-label plymouth-themes policykit-1 printer-driver-gutenprint python3-ibus-1.0 rar samba-common-bin simple-scan simplescreenrecorder smplayer smplayer-l10n smplayer-themes soundconverter sox squashfs-tools streamripper sudo synaptic syslinux syslinux-common system-config-printer testdisk timeshift transmission-gtk twolame udisks2 upower unrar unzip webext-keepassxc-browser wget x265 x264 xclip xdg-utils xfsprogs xorg xserver-xorg-input-all xserver-xorg-video-all xorriso xscreensaver xterm zip zstd zulucrypt-gui zulumount-gui" > $WKDIR/$BLDDIR/config/package-lists/extrapackages.list.chroot + +echo "atmel-firmware bluez-firmware firmware-linux-free midisport-firmware firmware-misc-nonfree firmware-amd-graphics firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-cavium firmware-intel-sound firmware-iwlwifi firmware-libertas firmware-linux firmware-linux-nonfree firmware-misc-nonfree firmware-myricom firmware-netronome firmware-netxen firmware-qcom-media firmware-qcom-soc firmware-qlogic firmware-realtek firmware-samsung firmware-siano firmware-ti-connectivity firmware-sof-signed firmware-zd1211" > $WKDIR/$BLDDIR/config/package-lists/firmware.list.chroot + +echo "efibootmgr grub-common grub-pc-bin grub2-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub-efi-ia32-bin libefiboot1 libefivar1 mokutil os-prober shim-helpers-amd64-signed +shim-signed shim-signed-common shim-unsigned" > $WKDIR/$BLDDIR/config/package-lists/grubs.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo "b43-fwcutter firmware-b43-installer firmware-b43legacy-installer" > $WKDIR/$BLDDIR/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares Installer + +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/ +cp -r $WKDIR/$FLDIR/calamares/ $WKDIR/$BLDDIR/config/includes.chroot/etc/ +echo "calamares calamares-settings-debian" > $WKDIR/$BLDDIR/config/package-lists/calamares.list.chroot + +---------------------------------- + +Step 5: Make folders in the chroot + +# Run command below to create needed folders: + +mkdir -p $WKDIR/$BLDDIR/config/hooks/normal/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ + +----------------------------------- + +Step 6: Copy files into the chroot and live-build config + +# Run commands below to copy build files into the live system: + +cp -r $WKDIR/$FLDIR/bootloaders/ $WKDIR/$BLDDIR/config/ +cp -r $WKDIR/$FLDIR/ $WKDIR/$BLDDIR/config/includes.chroot/usr/share/ +cp -r $WKDIR/$FLDIR/xfce4/ $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +cp $WKDIR/$FLDIR/hooks/* $WKDIR/$BLDDIR/config/hooks/normal/ +cp $WKDIR/$FLDIR/scripts/* $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +cp $WKDIR/$FLDIR/icons/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ +cp $WKDIR/$FLDIR/backgrounds/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +cp $WKDIR/$FLDIR/launchers/ezadmin.desktop $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +ln -s /usr/share/$FLDIR $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/$FLDIR + +----------------------------------- + +# Run command below IF you wish to include deb packages from misc64 folder: + +# cp $WKDIR/$FLDIR/misc64/* $WKDIR/$BLDDIR/config/packages.chroot/ + +----------------------------------- + +Step 7: Start the build process + +# Run command below to start live build: + +lb build + +----------------------------------- + +Step 8: Wait for the build to complete. The ISO will be inside the build folder + +----------------------------------- + +# bldeznix12X-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/ezadmin-howto.txt b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/ezadmin-howto.txt new file mode 100644 index 0000000..3a6c1af --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/ezadmin-howto.txt @@ -0,0 +1,123 @@ + EZADMIN HOWTO + +This is a custom built script to perform various tasks on eznixOS. You can run the ezadmin script as root to perform its functions. SU to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. + + + EZ Admin Menu: + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + + +Select a|A to add yourself to the sudo group, allowing the use of 'sudo' to gain administrative privileges. Logout and Login is required to take effect. + +Select b|B to optimize your repositories to Debian's DNS based redirection system for automatically picking closer mirrors. The Stretch Backports repositories are added as well. Use can use Synaptic or your favorite text editor to customize the repositories if you wish. + +Select c|C to rebuild the default icon cache files and lower memory usage. + +Select d|D to install and/or upgrade the latest Firefox Latest. + +Select e|E to install YT-DLP video downloader + +Select f|F to install the newest kernel from backports. + +Select g|G to upgrade to Debian Testing. + +Select x|X to exit the menu and return to the command prompt. Reboot your system after performing any of the steps and in-between multiple steps just to be safe. + + +------------------------------------------------------------------- + + Functions + +------------------------------------------------------------------- + +# Add first user to sudo group + + read -p "Type you user name, be exact and press Enter: " ANS + usermod -aG sudo $ANS + +------------------------------------------------------------------- + +# Optimize mirrors and add contrib and non-free to sources.list + + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznix12X/sources/sources.bookworm /etc/apt/sources.list + apt-get -y update + +------------------------------------------------------------------- + +# Rebuild Default Icon Cache Files + + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ + +------------------------------------------------------------------- + +# Install and/or upgrade the latest Firefox Latest + + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznix12X/launchers/Firefox-Latest.desktop /usr/share/applications/Firefox-Latest.desktop + rm -r /opt/FFDL + +------------------------------------------------------------------ + +# Install YT-DLP video downloader + + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp + +------------------------------------------------------------------ + +# Install the newest kernel from backports + + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 + +------------------------------------------------------------------ + +# Upgrade to Debian Testing + + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznix12X/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade + +------------------------------------------------------------------ + +# ezadmin-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/license.txt b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/license.txt new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/license.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. 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 +them 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 prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. 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. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If 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 convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU 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 that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + 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 +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU 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 Lesser General +Public License instead of this License. But first, please read +. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/prepare-howto.txt b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/prepare-howto.txt new file mode 100644 index 0000000..13da446 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/prepare-howto.txt @@ -0,0 +1,59 @@ +Preparation for the bldeznix12X script + +-------------------------------------- + +Step 1 +Install the live-build tool and others: + +# apt-get install live-build squashfs-tools syslinux-common syslinux-utils xorriso isolinux + +-------------------------------------- + +Step 2 +Assign work, files, and build directory variables and make the build directory + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +mkdir=$BLDDIR + +-------------------------------------- + +Step 3 +Collect all background images, especially the current background, and copy them to a folder inside /$FLDIR. + +# cp -r backgrounds /$FLDIR/backgrounds + +-------------------------------------- + +Step 4 +Configure your desktop settings exactly the way you want to preserve them for the live system. +If using XFCE, all of these settings are stored in ~/.config/xfce4. Copy that folder inside /$FLDIR. + +# cp -r ~/.config/xfce4 ~/$FLDIR/ + +-------------------------------------- + +Step 5 +Copy any miscelaneous deb packages into the /$FLDIR/misc64 folder + +-------------------------------------- + +Step 6 +If you have any shell scripts, place them in the /$FLDIR/scripts folder. If you have any icons, place them in the /$FLDIR/icons folder. If you have any hooks, place them in the /$FLDIR/hooks folder. If you have any documentation, place the it in the /$FLDIR/doc folder. If you need other locations, add the folder inside the /$FLDIR folder and use the commands in the bldeznix script as a guide to adapting the script to your needs. + +-------------------------------------- + +Step 7 +The /bootloaders directory is found in /usr/share/live/build/ - copy the folder into your /$FLDIR/ directory. + +# cp -r /usr/share/live/build/bootloaders /$FLDIR/bootloaders + +Inside each of the subfolders within /bootloaders is a file named: splash.svg or splash.png. These are default images and can be replaced. Use whatever graphic program you like to create or edit an image for use as your boot splash. Any text you place on the image should be in the upper portion of the image - the lower half will display the boot menu. When you are satified with your image, save it as a 640x480 pixel PNG graphic file named splash.png. Copy the file into each of the subfolders of /bootloaders with the exception of the grub-legacy folder. Grub-legacy will probably never be used, but if you want to replace that image, save a copy of your splash image as a 640x480 pixel XPM graphic file and name it splash.xpm. You will need to gzip the splash.xpm file and replace the default file in the grub-legacy subfolder. + +-------------------------------------- + + +# prepare-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/readme.txt b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/readme.txt new file mode 100644 index 0000000..7a9a024 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/doc/readme.txt @@ -0,0 +1,40 @@ +Welcome to eznixOS + +The eznixOS is a respin of Debian GNU/Linux, currently based on the Debian 12 Bookworm release. The Debian live-build tool is used to build the ISO and I have included a folder located under /usr/share/eznix12X containing all the necessary build files and build script used to create the respin. I include all the files with the aim to help educate those willing to learn how to build your own live-build created Debian respins. + +This respin was built by my bldeznix12X script but can also be built identically by following the prepare-howto.txt and bldeznix12X-howto.txt files. The build process has been completely automated as long as you do not need to make any adjustments. The bldeznix12X will build a complete respin of Debian Bookworm with all of the eznixOS customizations. If you want to utilize the script to produce your own respin, you will need to edit various parts of the script. The script is documented and should be easy enough to rework into something personal for you. + +The ISO contains all the eznixOS build related files inside the /usr/share/eznix12X folder. Any changes to the files or the folder names must be represented in the bldeznix12X script. The script relies on certain folder names and files to operate correctly. Read the comments in the bldeznix12X script and the prepare-howto.txt and bldeznix12X-howto.txt files for guidance. The /eznix12X folder must reside in the same directory as the bldeznix12X script. Anything can be changed to suit your needs, but the changes must be identical in both the script and the folder structure around it. + +The ezadmin tool is a small script with a menu driven interface that performs a few basic functions. Please take a look at the ezadmin-howtow.txt on the Desktop of eznixOS. + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + +You can run the ezadmin script as root to perform its functions. Use "su -l" to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. Have fun. + + +# readme.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/grub/grub b/eznixOS12X-calamares+debian-installer/eznixOS12X/grub/grub new file mode 100644 index 0000000..dfc66a2 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/grub/grub @@ -0,0 +1,36 @@ +# If you change this file, run 'update-grub' afterwards to update +# /boot/grub/grub.cfg. +# For full documentation of the options in this file, see: +# info -f grub -n 'Simple configuration' + +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="exnizOS" +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" +GRUB_CMDLINE_LINUX="" + +# Uncomment to enable BadRAM filtering, modify to suit your needs +# This works with Linux (no patch required) and with any kernel that obtains +# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) +#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" + +# Uncomment this to run os-prober so search for and add other OS +# installations to the grub boot menu +GRUB_DISABLE_OS_PROBER=false + +# Uncomment to disable graphical terminal (grub-pc only) +#GRUB_TERMINAL=console + +# The resolution used on graphical terminal +# note that you can use only modes which your graphic card supports via VBE +# you can see them in real GRUB with the command `vbeinfo' +GRUB_GFXMODE=1440x400 + +# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux +#GRUB_DISABLE_LINUX_UUID=true + +# Uncomment to disable generation of recovery mode menu entries +#GRUB_DISABLE_RECOVERY="true" + +# Uncomment to get a beep at grub start +#GRUB_INIT_TUNE="480 440 1" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9070-add-architecture-i386.hook.chroot b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9070-add-architecture-i386.hook.chroot new file mode 100755 index 0000000..a6bca08 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9070-add-architecture-i386.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9070-add-architecture-i386.hook.chroot +# Description: Script to add i386 architecture +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + + +#add-architecture i386 +dpkg --add-architecture i386 diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9080-remove-not-need-packages.hook.chroot b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9080-remove-not-need-packages.hook.chroot new file mode 100755 index 0000000..2c87e03 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9080-remove-not-need-packages.hook.chroot @@ -0,0 +1,5 @@ +#!/bin/bash + +# Remove software +apt --purge --yes autoremove systemsettings nvidia-tesla-470* + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9090-enable-calamares-debug.hook.chroot b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9090-enable-calamares-debug.hook.chroot new file mode 100755 index 0000000..5b62e64 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9090-enable-calamares-debug.hook.chroot @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +# Enable debug mode for Calamares + + sed -i -e 's|^ *pkexec calamares|pkexec calamares -d|' /usr/bin/install-debian diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9095-rename-installer-eznixos.hook.chroot b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9095-rename-installer-eznixos.hook.chroot new file mode 100755 index 0000000..2ec5802 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9095-rename-installer-eznixos.hook.chroot @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +# Change installer icon name to EznixOS + + sed -i -e 's|Debian|EznixOS|g' /usr/share/applications/install-debian.desktop + sed -i -e 's|^ *Icon=install-debian|Icon=/usr/share/icons/default/lava-lamp.svg|' /usr/share/applications/install-debian.desktop diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9098-rebuild-icon-caches.hook.chroot b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9098-rebuild-icon-caches.hook.chroot new file mode 100755 index 0000000..c1ef601 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9098-rebuild-icon-caches.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9098-rebuild-icon-caches.hook.chroot +# Description: Script to remove packages and other things +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Lowers the footprint in RAM at the small expense of added size to the ISO. +#update-icon-caches /usr/share/icons/* +find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \; diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9099-create-symlinks-hook.chroot b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9099-create-symlinks-hook.chroot new file mode 100755 index 0000000..aa8451a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/hooks/9099-create-symlinks-hook.chroot @@ -0,0 +1,4 @@ +#!/bin/bash + +# Creates symlinks inside th chroot. +ln -s -r /usr/share/eznixOS12X /etc/skel diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp-2.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp-2.png new file mode 100644 index 0000000..0b494dc Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp-2.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp-svgrepo-com.svg b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp-svgrepo-com.svg new file mode 100644 index 0000000..0799a08 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp-svgrepo-com.svg @@ -0,0 +1,99 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp.png new file mode 100644 index 0000000..64eb47c Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp.svg b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp.svg new file mode 100644 index 0000000..a46115c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/icons/lava-lamp.svg @@ -0,0 +1,105 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/issue/issue b/eznixOS12X-calamares+debian-installer/eznixOS12X/issue/issue new file mode 100644 index 0000000..d58a10f --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/issue/issue @@ -0,0 +1,2 @@ +EznixOS \n \l + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/issue/issue.net b/eznixOS12X-calamares+debian-installer/eznixOS12X/issue/issue.net new file mode 100644 index 0000000..38cd47a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/issue/issue.net @@ -0,0 +1 @@ +EznixOS diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/launchers/Firefox-Latest.desktop b/eznixOS12X-calamares+debian-installer/eznixOS12X/launchers/Firefox-Latest.desktop new file mode 100755 index 0000000..b6ac618 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/launchers/Firefox-Latest.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Firefox Latest +Exec=/opt/moz/firefox/firefox %u +Terminal=false +X-MultipleArgs=false +Type=Application +Icon=firefox +Categories=Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;x-scheme-handler/http;x-scheme-handler/https; +StartupWMClass=Firefox +StartupNotify=true diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/launchers/ezadmin.desktop b/eznixOS12X-calamares+debian-installer/eznixOS12X/launchers/ezadmin.desktop new file mode 100755 index 0000000..4a948bc --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/launchers/ezadmin.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=EZ Admin Tool +Comment=ezadmin tool +Categories=System; +Keywords=System; +Exec=pkexec /usr/local/bin/ezadmin +Icon=/usr/share/icons/default/lava-lamp.png +Path=/usr/local/bin +Terminal=true +StartupNotify=false diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/lightdm/lightdm.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/lightdm/lightdm.conf new file mode 100644 index 0000000..0c037c0 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/lightdm/lightdm.conf @@ -0,0 +1,169 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +#run-directory=/var/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote, unity) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-backend = X backend to use (mir) +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option) +# unity-compositor-timeout = Number of seconds to wait for compositor to start +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-backend= +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +#unity-compositor-command=unity-system-compositor +#unity-compositor-timeout=60 +#greeter-session=example-gtk-gnome +greeter-hide-users=false +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +#session-wrapper=lightdm-session +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script= +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/live-user/10-user-setup.conf b/eznixOS12X-calamares+debian-installer/eznixOS12X/live-user/10-user-setup.conf new file mode 100644 index 0000000..89e58ad --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/live-user/10-user-setup.conf @@ -0,0 +1,2 @@ +LIVE_USERNAME=eznix +LIVE_USER_FULLNAME="exnixOS" diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual.en.html new file mode 100644 index 0000000..6ec7c9a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual.en.html @@ -0,0 +1,8792 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +
+ +

+ Live Systems Manual +

+ +
+ +

+ About +

+ +
+ +

+ About this manual +

+ +

+ 1. About this manual +

+ +
+ 1.1 For the impatient +
+ +
+ 1.2 Terms +
+ +
+ 1.3 Authors +
+ +
+ 1.4 Contributing to this document +
+ +
+ 1.4.1 Applying changes +
+ +
+ 1.4.2 Translation +
+ +
+ +

+ About the Live Systems Project +

+ +

+ 2. About the Live Systems Project +

+ +
+ 2.1 Motivation +
+ +
+ 2.1.1 What is wrong with current live systems +
+ +
+ 2.1.2 Why create our own live system? +
+ +
+ 2.2 Philosophy +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+ +
+ 2.2.2 No package configuration of the live system +
+ +
+ 2.3 Contact +
+ +
+ +

+ User +

+ +
+ +

+ Installation +

+ +

+ 3. Installation +

+ +
+ 3.1 Requirements +
+ +
+ 3.2 Installing live-build +
+ +
+ 3.2.1 From the Debian repository +
+ +
+ 3.2.2 From source +
+ +
+ 3.2.3 From 'snapshots' +
+ +
+ 3.3 Installing live-boot and live-config +
+ +
+ 3.3.1 From the Debian repository +
+ +
+ 3.3.2 From source +
+ +
+ 3.3.3 From 'snapshots' +
+ +
+ +

+ The basics +

+ +

+ 4. The basics +

+ +
+ 4.1 What is a live system? +
+ +
+ 4.2 Downloading prebuilt images +
+ +
+ 4.3 Using the web live image builder +
+ +
+ 4.3.1 Web builder usage and caveats +
+ +
+ 4.4 First steps: building an ISO hybrid image +
+ +
+ 4.5 Using an ISO hybrid live image +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+ +
+ 4.5.3 Using the space left on a USB stick +
+ +
+ 4.5.4 Booting the live medium +
+ +
+ 4.6 Using a virtual machine for testing +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+ +
+ 4.7 Building and using an HDD image +
+ +
+ 4.8 Building a netboot image +
+ +
+ 4.8.1 DHCP server +
+ +
+ 4.8.2 TFTP server +
+ +
+ 4.8.3 NFS server +
+ +
+ 4.8.4 Netboot testing HowTo +
+ +
+ 4.8.5 Qemu +
+ +
+ 4.9 Webbooting +
+ +
+ 4.9.1 Getting the webboot files +
+ +
+ 4.9.2 Booting webboot images +
+ +
+ +

+ Overview of tools +

+ +

+ 5. Overview of tools +

+ +
+ 5.1 The live-build package +
+ +
+ 5.1.1 The lb config command +
+ +
+ 5.1.2 The lb build command +
+ +
+ 5.1.3 The lb clean command +
+ +
+ 5.2 The live-boot package +
+ +
+ 5.3 The live-config package +
+ +
+ +

+ Managing a configuration +

+ +

+ 6. Managing a configuration +

+ +
+ 6.1 Dealing with configuration changes +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+ +
+ 6.1.2 Use example auto scripts +
+ +
+ 6.2 Clone a configuration published via Git +
+ +
+ +

+ Customizing contents +

+ +

+ 7. Customization overview +

+ +
+ 7.1 Build time vs. boot time configuration +
+ +
+ 7.2 Stages of the build +
+ +
+ 7.3 Supplement lb config with files +
+ +
+ 7.4 Customization tasks +
+ +
+ +

+ Customizing package installation +

+ +

+ 8. Customizing package installation +

+ +
+ 8.1 Package sources +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+ +
+ 8.1.2 Distribution mirrors +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+ +
+ 8.1.5 Additional repositories +
+ +
+ 8.2 Choosing packages to install +
+ +
+ 8.2.1 Package lists +
+ +
+ 8.2.2 Using metapackages +
+ +
+ 8.2.3 Local package lists +
+ +
+ 8.2.4 Local binary package lists +
+ +
+ 8.2.5 Generated package lists +
+ +
+ 8.2.6 Using conditionals inside package lists +
+ +
+ 8.2.7 Removing packages at install time +
+ +
+ 8.2.8 Desktop and language tasks +
+ +
+ 8.2.9 Kernel flavour and version +
+ +
+ 8.2.10 Custom kernels +
+ +
+ 8.3 Installing modified or third-party packages +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+ +
+ 8.3.3 Custom packages and APT +
+ +
+ 8.4 Configuring APT at build time +
+ +
+ 8.4.1 Choosing apt or aptitude +
+ +
+ 8.4.2 Using a proxy with APT +
+ +
+ 8.4.3 Tweaking APT to save space +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+ +
+ 8.4.5 APT pinning +
+ +
+ +

+ Customizing contents +

+ +

+ 9. Customizing contents +

+ +
+ 9.1 Includes +
+ +
+ 9.1.1 Live/chroot local includes +
+ +
+ 9.1.2 Binary local includes +
+ +
+ 9.2 Hooks +
+ +
+ 9.2.1 Chroot local hooks +
+ +
+ 9.2.2 Binary local hooks +
+ +
+ 9.2.3 Boot-time hooks +
+ +
+ 9.3 Preseeding Debconf questions +
+ +
+ +

+ Customizing run time behaviours +

+ +

+ 10. Customizing run time behaviours +

+ +
+ 10.1 Customizing the live user +
+ +
+ 10.2 Customizing locale and language +
+ +
+ 10.3 Persistence +
+ +
+ 10.3.1 The persistence.conf file +
+ +
+ 10.3.2 Using more than one persistence store +
+ +
+ 10.3.3 Using persistence with encryption +
+ +
+ +

+ Customizing the binary image +

+ +

+ 11. Customizing the binary image +

+ +
+ 11.1 Bootloaders +
+ +
+ 11.2 ISO metadata +
+ +
+ +

+ Customizing Debian Installer +

+ +

+ 12. Customizing Debian Installer +

+ +
+ 12.1 Types of Debian Installer +
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+ +
+ 12.3 Customizing Debian Installer content +
+ +
+ +

+ Project +

+ +
+ +

+ Contributing to the project +

+ +

+ 13. Contributing to the project +

+ +
+ 13.1 Making changes +
+ +
+ 13.2 Translation of man pages +
+ +
+ +

+ Reporting bugs +

+ +

+ 14. Reporting bugs +

+ +
+ 14.1 Known issues +
+ +
+ 14.2 Rebuild from scratch +
+ +
+ 14.3 Use up-to-date packages +
+ +
+ 14.4 Collect information +
+ +
+ 14.5 Isolate the failing case if possible +
+ +
+ 14.6 Use the correct package to report the bug against +
+ +
+ 14.6.1 At build time while bootstrapping +
+ +
+ 14.6.2 At build time while installing packages +
+ +
+ 14.6.3 At boot time +
+ +
+ 14.6.4 At run time +
+ +
+ 14.7 Do the research +
+ +
+ 14.8 Where to report bugs +
+ +
+ +

+ Coding Style +

+ +

+ 15. Coding Style +

+ +
+ 15.1 Compatibility +
+ +
+ 15.2 Indenting +
+ +
+ 15.3 Wrapping +
+ +
+ 15.4 Variables +
+ +
+ 15.5 Miscellaneous +
+ +
+ +

+ Procedures +

+ +

+ 16. Procedures +

+ +
+ 16.1 Major Releases +
+ +
+ 16.2 Point Releases +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+ +
+ 16.2.2 Point release announcement template +
+ +
+ +

+ Git repositories +

+ +

+ 17. Git repositories +

+ +
+ 17.1 Handling multiple repositories +
+ +
+ +

+ Examples +

+ +
+ +

+ Examples +

+ +

+ 18. Examples +

+ +
+ 18.1 Using the examples +
+ +
+ 18.2 Tutorial 1: A default image +
+ +
+ 18.3 Tutorial 2: A web browser utility +
+ +
+ 18.4 Tutorial 3: A personalized image +
+ +
+ 18.4.1 First revision +
+ +
+ 18.4.2 Second revision +
+ +
+ 18.5 A VNC Kiosk Client +
+ +
+ 18.6 A base image for a 128MB USB key +
+ +
+ 18.7 A localized GNOME desktop and installer +
+ +
+ +

+ Appendix +

+ +
+ +

+ Style guide +

+ +

+ 19. Style guide +

+ +
+ 19.1 Guidelines for authors +
+ +
+ 19.1.1 Linguistic features +
+ +
+ 19.1.2 Procedures +
+ +
+ 19.2 Guidelines for translators +
+ +
+ 19.2.1 Translation hints +
+ +
+ +
+ +


+
+ +

+ Live Systems Manual +

+
+ +


+
+ +

+ About +

+
+ +


+
+ +

+ About this manual +

+
+ +


+
+ +

+ 1. About this manual +

+
+ +
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +


+
+ +
+ 1.1 For the impatient +
+
+ +
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +


+
+ +
+ 1.2 Terms +
+
+ +
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +


+
+ +
+ 1.3 Authors +
+
+ +
+ +

+ A list of authors (in alphabetical order): +

+
+ +
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +


+
+ +
+ 1.4 Contributing to this document +
+
+ +
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +
+ +
+ 1.4.1 Applying changes +
+
+ +
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +
+ +

+ $ make build
+

+
+ +
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +
+ +

+ $ make build PROOF=1
+

+
+ +
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de
+

+
+ +
+ +

+ It is also possible to build by document type, e.g: +

+
+ +
+ +

+ $ make build FORMATS=pdf
+

+
+ +
+ +

+ Or combine both, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +
+ +
+ 1.4.2 Translation +
+
+ +
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+
+ +


+
+ +

+ About the Live Systems Project +

+
+ +


+
+ +

+ 2. About the Live Systems Project +

+
+ +


+
+ +
+ 2.1 Motivation +
+
+ +
+ +
+ 2.1.1 What is wrong with current live systems +
+
+ +
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +
+ +
+ 2.1.2 Why create our own live system? +
+
+ +
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +


+
+ +
+ 2.2 Philosophy +
+
+ +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+
+ +
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +
+ +
+ 2.2.2 No package configuration of the live system +
+
+ +
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +


+
+ +
+ 2.3 Contact +
+
+ +
+ + +
+ +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+
+ +


+
+ +

+ User +

+
+ +


+
+ +

+ Installation +

+
+ +


+
+ +

+ 3. Installation +

+
+ +


+
+ +
+ 3.1 Requirements +
+
+ +
+ +

+ Building live system images has very few system requirements: +

+
+ +
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
+ +
    +
  • + debootstrap +
  • +
+
+ +
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +


+
+ +
+ 3.2 Installing live-build +
+
+ +
+ +

+ You can install live-build in a number of different ways: +

+
+ +
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
+ +
    +
  • + From source +
  • +
+
+ +
+ +
    +
  • + From snapshots +
  • +
+
+ +
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +
+ +
+ 3.2.1 From the Debian repository +
+
+ +
+ +

+ Simply install live-build like any other package: +

+
+ +
+ +

+ # apt-get install live-build
+

+
+ +
+ +
+ 3.2.2 From source +
+
+ +
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +
+ +

+ You can build and install your own Debian package by executing: +

+
+ +
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +
+ +

+ # make install
+

+
+ +
+ +

+ and uninstall it with: +

+
+ +
+ +

+ # make uninstall
+

+
+ +
+ +
+ 3.2.3 From 'snapshots' +
+
+ +
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +


+
+ +
+ 3.3 Installing live-boot and live-config +
+
+ +
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +
+ +
+ 3.3.1 From the Debian repository +
+
+ +
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +
+ +
+ 3.3.2 From source +
+
+ +
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +
+ +
+ 3.3.3 From 'snapshots' +
+
+ +
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+
+ +


+
+ +

+ The basics +

+
+ +


+
+ +

+ 4. The basics +

+
+ +
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +


+
+ +
+ 4.1 What is a live system? +
+
+ +
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +


+
+ +
+ 4.2 Downloading prebuilt images +
+
+ +
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +


+
+ +
+ 4.3 Using the web live image builder +
+
+ +
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +
+ +
+ 4.3.1 Web builder usage and caveats +
+
+ +
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +


+
+ +
+ 4.4 First steps: building an ISO hybrid image +
+
+ +
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +


+
+ +
+ 4.5 Using an ISO hybrid live image +
+
+ +
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+
+ +
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+
+ +
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +
+ +
+ 4.5.3 Using the space left on a USB stick +
+
+ +
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +
+ +

+ # gparted ${USBSTICK}
+

+
+ +
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +
+ +
+ 4.5.4 Booting the live medium +
+
+ +
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +


+
+ +
+ 4.6 Using a virtual machine for testing +
+
+ +
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+
+ +
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +
+ +

+ Booting an ISO image is simple: +

+
+ +
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +
+ +

+ See the man pages for more details. +

+
+ +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+
+ +
+ +

+ In order to test the ISO with virtualbox: +

+
+ +
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +


+
+ +
+ 4.7 Building and using an HDD image +
+
+ +
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +
+ +

+ # lb clean --binary
+

+
+ +
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +
+ +

+ $ lb config -b hdd
+

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +


+
+ +
+ 4.8 Building a netboot image +
+
+ +
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +
+ +
+ 4.8.1 DHCP server +
+
+ +
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +
+ +
+ 4.8.2 TFTP server +
+
+ +
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +
+ +
+ 4.8.3 NFS server +
+
+ +
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +
+ +

+ # exportfs -rv
+

+
+ +
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +
+ +
+ 4.8.4 Netboot testing HowTo +
+
+ +
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +
+ +

+ To make our life easier, we can use virtualization. +

+
+ +
+ +
+ 4.8.5 Qemu +
+
+ +
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +
+ +

+ Edit /etc/qemu-ifup: +

+
+ +
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +


+
+ +
+ 4.9 Webbooting +
+
+ +
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +
+ +
+ 4.9.1 Getting the webboot files +
+
+ +
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +
+ +
+ 4.9.2 Booting webboot images +
+
+ +
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+
+ +


+
+ +

+ Overview of tools +

+
+ +


+
+ +

+ 5. Overview of tools +

+
+ +
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +


+
+ +
+ 5.1 The live-build package +
+
+ +
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +
+ +
+ 5.1.1 The lb config command +
+
+ +
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +
+ +

+ $ lb config --apt aptitude
+

+
+ +
+ +

+ It is possible to specify many options, such as: +

+
+ +
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +
+ +
+ 5.1.2 The lb build command +
+
+ +
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +
+ +
+ 5.1.3 The lb clean command +
+
+ +
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +


+
+ +
+ 5.2 The live-boot package +
+
+ +
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +


+
+ +
+ 5.3 The live-config package +
+
+ +
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+
+ +


+
+ +

+ Managing a configuration +

+
+ +


+
+ +

+ 6. Managing a configuration +

+
+ +
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +


+
+ +
+ 6.1 Dealing with configuration changes +
+
+ +
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+
+ +
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +
+ +
+ 6.1.2 Use example auto scripts +
+
+ +
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +


+
+ +
+ 6.2 Clone a configuration published via Git +
+
+ +
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +
+ +

+ $ lb config --config lso:live-images
+

+
+ +
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 7. Customization overview +

+
+ +
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +


+
+ +
+ 7.1 Build time vs. boot time configuration +
+
+ +
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +


+
+ +
+ 7.2 Stages of the build +
+
+ +
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +


+
+ +
+ 7.3 Supplement lb config with files +
+
+ +
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +


+
+ +
+ 7.4 Customization tasks +
+
+ +
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+
+ +


+
+ +

+ Customizing package installation +

+
+ +


+
+ +

+ 8. Customizing package installation +

+
+ +
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +


+
+ +
+ 8.1 Package sources +
+
+ +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+
+ +
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +
+ +

+ $ lb config --distribution sid
+

+
+ +
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +
+ +
+ 8.1.2 Distribution mirrors +
+
+ +
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+
+ +
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+
+ +
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +
+ +
+ 8.1.5 Additional repositories +
+
+ +
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +


+
+ +
+ 8.2 Choosing packages to install +
+
+ +
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +
+ +
+ 8.2.1 Package lists +
+
+ +
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +
+ +
+ 8.2.2 Using metapackages +
+
+ +
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +
+ +

+ $ debtags search role::metapackage
+

+
+ +
+ +
+ 8.2.3 Local package lists +
+
+ +
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +
+ +
+ 8.2.4 Local binary package lists +
+
+ +
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +
+ +
+ 8.2.5 Generated package lists +
+
+ +
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +
+ +
+ 8.2.6 Using conditionals inside package lists +
+
+ +
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +
+ +

+ The nesting of conditionals is not supported. +

+
+ +
+ +
+ 8.2.7 Removing packages at install time +
+
+ +
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +
+ +
+ 8.2.8 Desktop and language tasks +
+
+ +
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +
+ +
+ 8.2.9 Kernel flavour and version +
+
+ +
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +
+ +
+ 8.2.10 Custom kernels +
+
+ +
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +


+
+ +
+ 8.3 Installing modified or third-party packages +
+
+ +
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
+ +
    +
  • + packages.chroot +
  • +
+
+ +
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+
+ +
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+
+ +
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +
+ +
+ 8.3.3 Custom packages and APT +
+
+ +
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +


+
+ +
+ 8.4 Configuring APT at build time +
+
+ +
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +
+ +
+ 8.4.1 Choosing apt or aptitude +
+
+ +
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +
+ +
+ 8.4.2 Using a proxy with APT +
+
+ +
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +
+ +
+ 8.4.3 Tweaking APT to save space +
+
+ +
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +
+ +

+ $ lb config --apt-indices false
+

+
+ +
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +
+ +

+ $ lb config --apt-recommends false
+

+
+ +
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+
+ +
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +
+ +
+ 8.4.5 APT pinning +
+
+ +
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 9. Customizing contents +

+
+ +
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +


+
+ +
+ 9.1 Includes +
+
+ +
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +
+ +
+ 9.1.1 Live/chroot local includes +
+
+ +
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +
+ +

+ Your configuration will then have the following layout: +

+
+ +
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +
+ +
+ 9.1.2 Binary local includes +
+
+ +
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +


+
+ +
+ 9.2 Hooks +
+
+ +
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +
+ +
+ 9.2.1 Chroot local hooks +
+
+ +
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.2 Binary local hooks +
+
+ +
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.3 Boot-time hooks +
+
+ +
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +


+
+ +
+ 9.3 Preseeding Debconf questions +
+
+ +
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+
+ +


+
+ +

+ Customizing run time behaviours +

+
+ +


+
+ +

+ 10. Customizing run time behaviours +

+
+ +
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +


+
+ +
+ 10.1 Customizing the live user +
+
+ +
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +


+
+ +
+ 10.2 Customizing locale and language +
+
+ +
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
+ +
    +
  • + the locale generation +
  • +
+
+ +
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +


+
+ +
+ 10.3 Persistence +
+
+ +
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ + + +
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +
+ +
+ 10.3.1 The persistence.conf file +
+
+ +
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +
+ +
+ 10.3.2 Using more than one persistence store +
+
+ +
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +
+ +
+ 10.3.3 Using persistence with encryption +
+
+ +
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +
+ +

+ To install cryptsetup on your machine: +

+
+ +
+ +

+ # apt-get install cryptsetup
+

+
+ +
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +
+ +

+ Then unmount the mount point: +

+
+ +
+ +

+ # umount /mnt
+

+
+ +
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +
+ +

+ # cryptsetup luksClose live
+

+
+ +
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+
+ +


+
+ +

+ Customizing the binary image +

+
+ +


+
+ +

+ 11. Customizing the binary image +

+
+ +


+
+ +
+ 11.1 Bootloaders +
+
+ +
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +


+
+ +
+ 11.2 ISO metadata +
+
+ +
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+
+ +


+
+ +

+ Customizing Debian Installer +

+
+ +


+
+ +

+ 12. Customizing Debian Installer +

+
+ +
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +


+
+ +
+ 12.1 Types of Debian Installer +
+
+ +
+ +

+ The three main types of installer are: +

+
+ +
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +


+
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+
+ +
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +


+
+ +
+ 12.3 Customizing Debian Installer content +
+
+ +
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+
+ +


+
+ +

+ Project +

+
+ +


+
+ +

+ Contributing to the project +

+
+ +


+
+ +

+ 13. Contributing to the project +

+
+ +
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
+ +
    +
  • + Merge commits. +
  • +
+
+ +
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +


+
+ +
+ 13.1 Making changes +
+
+ +
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +
+ +

+ $ git push
+

+
+ +


+
+ +
+ 13.2 Translation of man pages +
+
+ +
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+
+ +


+
+ +

+ Reporting bugs +

+
+ +


+
+ +

+ 14. Reporting bugs +

+
+ +
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +
+ +

+ For the impatient: +

+
+ +
+ + +
+ +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +


+
+ +
+ 14.1 Known issues +
+
+ +
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +


+
+ +
+ 14.2 Rebuild from scratch +
+
+ +
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +


+
+ +
+ 14.3 Use up-to-date packages +
+
+ +
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +


+
+ +
+ 14.4 Collect information +
+
+ +
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +


+
+ +
+ 14.5 Isolate the failing case if possible +
+
+ +
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +


+
+ +
+ 14.6 Use the correct package to report the bug against +
+
+ +
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +
+ +
+ 14.6.1 At build time while bootstrapping +
+
+ +
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +
+ +
+ 14.6.2 At build time while installing packages +
+
+ +
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +
+ +
+ 14.6.3 At boot time +
+
+ +
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +
+ +
+ 14.6.4 At run time +
+
+ +
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +


+
+ +
+ 14.7 Do the research +
+
+ +
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +


+
+ +
+ 14.8 Where to report bugs +
+
+ +
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+
+ +


+
+ +

+ Coding Style +

+
+ +


+
+ +

+ 15. Coding Style +

+
+ +
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +


+
+ +
+ 15.1 Compatibility +
+
+ +
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +


+
+ +
+ 15.2 Indenting +
+
+ +
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +


+
+ +
+ 15.3 Wrapping +
+
+ +
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if foo; then
+         bar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ Foo () {
+         bar
+}
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +


+
+ +
+ 15.4 Variables +
+
+ +
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ FOO=bar
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ FOO="bar"
+

+
+ +
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +


+
+ +
+ 15.5 Miscellaneous +
+
+ +
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+
+ +


+
+ +

+ Procedures +

+
+ +


+
+ +

+ 16. Procedures +

+
+ +
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +


+
+ +
+ 16.1 Major Releases +
+
+ +
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +


+
+ +
+ 16.2 Point Releases +
+
+ +
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+
+ +
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +
+ +
+ 16.2.2 Point release announcement template +
+
+ +
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+
+ +


+
+ +

+ Git repositories +

+
+ +


+
+ +

+ 17. Git repositories +

+
+ +
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +
+ +

+ $ git checkout debian-next
+

+
+ +
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +


+
+ +
+ 17.1 Handling multiple repositories +
+
+ +
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ 18. Examples +

+
+ +
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +


+
+ +
+ 18.1 Using the examples +
+
+ +
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +


+
+ +
+ 18.2 Tutorial 1: A default image +
+
+ +
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +
+ +

+ You can't get much simpler than this: +

+
+ +
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +


+
+ +
+ 18.3 Tutorial 2: A web browser utility +
+
+ +
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +


+
+ +
+ 18.4 Tutorial 3: A personalized image +
+
+ +
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +
+ +
+ 18.4.1 First revision +
+
+ +
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +
+ +

+ Edit auto/config to read as follows: +

+
+ +
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ Now populate your local package list: +

+
+ +
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +
+ +

+ Now, build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +
+ +
+ 18.4.2 Second revision +
+
+ +
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Build again: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +


+
+ +
+ 18.5 A VNC Kiosk Client +
+
+ +
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +
+ +

+ Build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Enjoy. +

+
+ +


+
+ +
+ 18.6 A base image for a 128MB USB key +
+
+ +
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ Now, build the image in the usual way: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +


+
+ +
+ 18.7 A localized GNOME desktop and installer +
+
+ +
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+
+ +


+
+ +

+ Appendix +

+
+ +


+
+ +

+ Style guide +

+
+ +


+
+ +

+ 19. Style guide +

+
+ +


+
+ +
+ 19.1 Guidelines for authors +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +
+ +
+ 19.1.1 Linguistic features +
+
+ +
+ +
    +
  • + Use plain English +
  • +
+
+ +
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
+ +
    +
  • + Variety of English +
  • +
+
+ +
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
+ +
    +
  • + Be balanced +
  • +
+
+ +
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
+ +
    +
  • + Be politically correct +
  • +
+
+ +
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
+ +
    +
  • + Be concise +
  • +
+
+ +
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
+ +
    +
  • + Minimize translation work +
  • +
+
+ +
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
+ +
    +
  • + Be coherent +
  • +
+
+ +
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
+ +
    +
  • + Be cohesive +
  • +
+
+ +
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
+ +
    +
  • + Be descriptive +
  • +
+
+ +
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
+ +
    +
  • + Dictionary +
  • +
+
+ +
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +
+ +
+ 19.1.2 Procedures +
+
+ +
+ +
    +
  • + Test before write +
  • +
+
+ +
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
+ +
    +
  • + Examples +
  • +
+
+ +
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
+ +
    +
  • + External links +
  • +
+
+ +
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
+ +
    +
  • + Chapters +
  • +
+
+ +
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +
+ +

+ $ sisu --help markup
+

+
+ +
+ +

+ Here are some markup examples that may prove useful: +

+
+ +
+ +

+ - For emphasis/bold text: +

+
+ +
+ +

+ *{foo}* or !{foo}!
+

+
+ +
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +
+ +

+ - For italics: +

+
+ +
+ +

+ /{foo}/
+

+
+ +
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +
+ +

+ - For monospace: +

+
+ +
+ +

+ #{foo}#
+

+
+ +
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +
+ +

+ - For code blocks: +

+
+ +
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +
+ +

+ produces: +

+
+ +
+ +

+ $ foo
+# bar
+

+
+ +
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +


+
+ +
+ 19.2 Guidelines for translators +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +
+ +
+ 19.2.1 Translation hints +
+
+ +
+ +
    +
  • + Comments +
  • +
+
+ +
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
+ +
    +
  • + False friends +
  • +
+
+ +
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
+ +
    +
  • + Code blocks +
  • +
+
+ +
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
+ +
    +
  • + Newlines +
  • +
+
+ +
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +
+ +

+ Translators should never translate: +

+
+ +
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +
+ +

+ - The names of programs +

+
+ +
+ +

+ - The commands given as examples +

+
+ +
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +
+ +

+ - Links +

+
+ +
+ +

+ - Paths +

+
+ +
+ +
+ + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +

+ + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/about-manual.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/about-manual.en.html new file mode 100644 index 0000000..dbf850a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/about-manual.en.html @@ -0,0 +1,522 @@ + + + + + + about-manual - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About this manual +

+
+ +

+ 1. About this manual +

+
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +

+ 1.1 For the impatient +

+
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +

+ 1.2 Terms +

+
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +

+ 1.3 Authors +

+
+ +

+ A list of authors (in alphabetical order): +

+
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +

+ 1.4 Contributing to this document +

+
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +

+ 1.4.1 Applying changes +

+
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +

+ $ make build
+

+
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +

+ $ make build PROOF=1
+

+
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +

+ $ make build LANGUAGES=de
+

+
+ +

+ It is also possible to build by document type, e.g: +

+
+ +

+ $ make build FORMATS=pdf
+

+
+ +

+ Or combine both, e.g: +

+
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +

+ 1.4.2 Translation +

+
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/about-project.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/about-project.en.html new file mode 100644 index 0000000..2c02972 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/about-project.en.html @@ -0,0 +1,314 @@ + + + + + + about-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About the Live Systems Project +

+
+ +

+ 2. About the Live Systems Project +

+
+ +

+ 2.1 Motivation +

+
+ +

+ 2.1.1 What is wrong with current live systems +

+
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +

+ 2.1.2 Why create our own live system? +

+
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +

+ 2.2 Philosophy +

+
+ +

+ 2.2.1 Only unchanged packages from Debian "main" +

+
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +

+ 2.2.2 No package configuration of the live system +

+
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +

+ 2.3 Contact +

+
+ + +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/bugs.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/bugs.en.html new file mode 100644 index 0000000..ac139e0 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/bugs.en.html @@ -0,0 +1,419 @@ + + + + + + bugs - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Reporting bugs +

+
+ +

+ 14. Reporting bugs +

+
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +

+ For the impatient: +

+
+ + +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +

+ 14.1 Known issues +

+
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +

+ 14.2 Rebuild from scratch +

+
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +

+ 14.3 Use up-to-date packages +

+
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +

+ 14.4 Collect information +

+
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +

+ 14.5 Isolate the failing case if possible +

+
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +

+ 14.6 Use the correct package to report the bug against +

+
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +

+ 14.6.1 At build time while bootstrapping +

+
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +

+ 14.6.2 At build time while installing packages +

+
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +

+ 14.6.3 At boot time +

+
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +

+ 14.6.4 At run time +

+
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +

+ 14.7 Do the research +

+
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +

+ 14.8 Where to report bugs +

+
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/coding-style.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/coding-style.en.html new file mode 100644 index 0000000..f603650 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/coding-style.en.html @@ -0,0 +1,400 @@ + + + + + + coding-style - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Coding Style +

+
+ +

+ 15. Coding Style +

+
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +

+ 15.1 Compatibility +

+
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +

+ 15.2 Indenting +

+
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +

+ 15.3 Wrapping +

+
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if foo; then
+         bar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +

+ Bad: +

+
+ +

+ Foo () {
+         bar
+}
+

+
+ +

+ Good: +

+
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +

+ 15.4 Variables +

+
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +

+ Bad: +

+
+ +

+ FOO=bar
+

+
+ +

+ Good: +

+
+ +

+ FOO="bar"
+

+
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +

+ 15.5 Miscellaneous +

+
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/contributing-to-project.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/contributing-to-project.en.html new file mode 100644 index 0000000..49ff6f9 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/contributing-to-project.en.html @@ -0,0 +1,338 @@ + + + + + + contributing-to-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Contributing to the project +

+
+ +

+ 13. Contributing to the project +

+
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
    +
  • + Merge commits. +
  • +
+
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +

+ 13.1 Making changes +

+
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +

+ $ git push
+

+
+ +

+ 13.2 Translation of man pages +

+
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customization-overview.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customization-overview.en.html new file mode 100644 index 0000000..8730608 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customization-overview.en.html @@ -0,0 +1,175 @@ + + + + + + customization-overview - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 7. Customization overview +

+
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +

+ 7.1 Build time vs. boot time configuration +

+
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +

+ 7.2 Stages of the build +

+
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +

+ 7.3 Supplement lb config with files +

+
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +

+ 7.4 Customization tasks +

+
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-binary.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-binary.en.html new file mode 100644 index 0000000..c82dd86 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-binary.en.html @@ -0,0 +1,196 @@ + + + + + + customizing-binary - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing the binary image +

+
+ +

+ 11. Customizing the binary image +

+
+ +

+ 11.1 Bootloaders +

+
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +

+ 11.2 ISO metadata +

+
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-contents.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-contents.en.html new file mode 100644 index 0000000..19a400c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-contents.en.html @@ -0,0 +1,276 @@ + + + + + + customizing-contents - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 9. Customizing contents +

+
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +

+ 9.1 Includes +

+
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +

+ 9.1.1 Live/chroot local includes +

+
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +

+ Your configuration will then have the following layout: +

+
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +

+ 9.1.2 Binary local includes +

+
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +

+ 9.2 Hooks +

+
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +

+ 9.2.1 Chroot local hooks +

+
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.2 Binary local hooks +

+
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.3 Boot-time hooks +

+
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +

+ 9.3 Preseeding Debconf questions +

+
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-installer.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-installer.en.html new file mode 100644 index 0000000..9c470ba --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-installer.en.html @@ -0,0 +1,218 @@ + + + + + + customizing-installer - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing Debian Installer +

+
+ +

+ 12. Customizing Debian Installer +

+
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +

+ 12.1 Types of Debian Installer +

+
+ +

+ The three main types of installer are: +

+
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +

+ 12.2 Customizing Debian Installer by preseeding +

+
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +

+ 12.3 Customizing Debian Installer content +

+
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-package-installation.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-package-installation.en.html new file mode 100644 index 0000000..05328d3 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-package-installation.en.html @@ -0,0 +1,799 @@ + + + + + + customizing-package-installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing package installation +

+
+ +

+ 8. Customizing package installation +

+
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +

+ 8.1 Package sources +

+
+ +

+ 8.1.1 Distribution, archive areas and mode +

+
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +

+ $ lb config --distribution sid
+

+
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +

+ 8.1.2 Distribution mirrors +

+
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +

+ 8.1.3 Distribution mirrors used at build time +

+
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +

+ 8.1.4 Distribution mirrors used at run time +

+
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +

+ 8.1.5 Additional repositories +

+
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +

+ 8.2 Choosing packages to install +

+
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +

+ 8.2.1 Package lists +

+
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +

+ 8.2.2 Using metapackages +

+
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +

+ $ debtags search role::metapackage
+

+
+ +

+ 8.2.3 Local package lists +

+
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +

+ 8.2.4 Local binary package lists +

+
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +

+ 8.2.5 Generated package lists +

+
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +

+ 8.2.6 Using conditionals inside package lists +

+
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +

+ The nesting of conditionals is not supported. +

+
+ +

+ 8.2.7 Removing packages at install time +

+
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +

+ 8.2.8 Desktop and language tasks +

+
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +

+ 8.2.9 Kernel flavour and version +

+
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +

+ 8.2.10 Custom kernels +

+
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +

+ 8.3 Installing modified or third-party packages +

+
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
    +
  • + packages.chroot +
  • +
+
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +

+ 8.3.1 Using packages.chroot to install custom packages +

+
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +

+ 8.3.2 Using an APT repository to install custom packages +

+
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +

+ 8.3.3 Custom packages and APT +

+
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +

+ 8.4 Configuring APT at build time +

+
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +

+ 8.4.1 Choosing apt or aptitude +

+
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +

+ 8.4.2 Using a proxy with APT +

+
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +

+ 8.4.3 Tweaking APT to save space +

+
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +

+ $ lb config --apt-indices false
+

+
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +

+ $ lb config --apt-recommends false
+

+
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +

+ 8.4.4 Passing options to apt or aptitude +

+
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +

+ 8.4.5 APT pinning +

+
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-run-time-behaviours.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-run-time-behaviours.en.html new file mode 100644 index 0000000..becca70 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/customizing-run-time-behaviours.en.html @@ -0,0 +1,579 @@ + + + + + + customizing-run-time-behaviours - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing run time behaviours +

+
+ +

+ 10. Customizing run time behaviours +

+
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +

+ 10.1 Customizing the live user +

+
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +

+ 10.2 Customizing locale and language +

+
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
    +
  • + the locale generation +
  • +
+
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +

+ 10.3 Persistence +

+
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +

+ 10.3.1 The persistence.conf file +

+
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +

+ 10.3.2 Using more than one persistence store +

+
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +

+ 10.3.3 Using persistence with encryption +

+
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +

+ To install cryptsetup on your machine: +

+
+ +

+ # apt-get install cryptsetup
+

+
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +

+ Then unmount the mount point: +

+
+ +

+ # umount /mnt
+

+
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +

+ # cryptsetup luksClose live
+

+
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/examples.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/examples.en.html new file mode 100644 index 0000000..7727525 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/examples.en.html @@ -0,0 +1,595 @@ + + + + + + examples - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Examples +

+
+ +

+ 18. Examples +

+
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +

+ 18.1 Using the examples +

+
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +

+ 18.2 Tutorial 1: A default image +

+
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +

+ You can't get much simpler than this: +

+
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +

+ 18.3 Tutorial 2: A web browser utility +

+
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +

+ 18.4 Tutorial 3: A personalized image +

+
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +

+ 18.4.1 First revision +

+
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +

+ Edit auto/config to read as follows: +

+
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +

+ $ lb config
+

+
+ +

+ Now populate your local package list: +

+
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +

+ Now, build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +

+ 18.4.2 Second revision +

+
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +

+ # lb clean
+

+
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +

+ Build again: +

+
+ +

+ # lb build
+

+
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +

+ 18.5 A VNC Kiosk Client +

+
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +

+ Build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Enjoy. +

+
+ +

+ 18.6 A base image for a 128MB USB key +

+
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +

+ Now, build the image in the usual way: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +

+ 18.7 A localized GNOME desktop and installer +

+
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/git-repositories.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/git-repositories.en.html new file mode 100644 index 0000000..d4cd6d2 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/git-repositories.en.html @@ -0,0 +1,205 @@ + + + + + + git-repositories - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Git repositories +

+
+ +

+ 17. Git repositories +

+
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +

+ $ git checkout debian-next
+

+
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +

+ 17.1 Handling multiple repositories +

+
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/index.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/index.en.html new file mode 120000 index 0000000..f590e80 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/index.en.html @@ -0,0 +1 @@ +toc.en.html \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/installation.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/installation.en.html new file mode 100644 index 0000000..b86051d --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/installation.en.html @@ -0,0 +1,389 @@ + + + + + + installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Installation +

+
+ +

+ 3. Installation +

+
+ +

+ 3.1 Requirements +

+
+ +

+ Building live system images has very few system requirements: +

+
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
    +
  • + debootstrap +
  • +
+
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +

+ 3.2 Installing live-build +

+
+ +

+ You can install live-build in a number of different ways: +

+
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
    +
  • + From source +
  • +
+
+ +
    +
  • + From snapshots +
  • +
+
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +

+ 3.2.1 From the Debian repository +

+
+ +

+ Simply install live-build like any other package: +

+
+ +

+ # apt-get install live-build
+

+
+ +

+ 3.2.2 From source +

+
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +

+ You can build and install your own Debian package by executing: +

+
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +

+ # make install
+

+
+ +

+ and uninstall it with: +

+
+ +

+ # make uninstall
+

+
+ +

+ 3.2.3 From 'snapshots' +

+
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +

+ 3.3 Installing live-boot and live-config +

+
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +

+ 3.3.1 From the Debian repository +

+
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +

+ 3.3.2 From source +

+
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +

+ 3.3.3 From 'snapshots' +

+
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/managing-a-configuration.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/managing-a-configuration.en.html new file mode 100644 index 0000000..8c7b6df --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/managing-a-configuration.en.html @@ -0,0 +1,252 @@ + + + + + + managing-a-configuration - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Managing a configuration +

+
+ +

+ 6. Managing a configuration +

+
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +

+ 6.1 Dealing with configuration changes +

+
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +

+ 6.1.1 Why use auto scripts? What do they do? +

+
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +

+ 6.1.2 Use example auto scripts +

+
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +

+ 6.2 Clone a configuration published via Git +

+
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +

+ $ lb config --config lso:live-images
+

+
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/metadata.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/metadata.en.html new file mode 100644 index 0000000..b6dfea7 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/metadata.en.html @@ -0,0 +1,126 @@ + + + + + + metadata - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+

+ Metadata +

+

+ Document Metadata: +

+ Title: Live Systems Manual +

+ Author: Live Systems Project +

+ Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file. +

+ Publisher: Live Systems Project +

+ Date: 2015-09-22 +

+ Version Information: +

+ Sourcefile: live-manual.ssm.sst +

+ Filetype: SiSU text 2.0, ASCII text, with very long lines (1077) +

+ Source Digest: SHA2-256(live-manual.ssm.sst)= 5946f730f5507ab7b8fd85c9c536b89bd30afc6d5f336d8cafd50d54a84d9be6 +

+ Generated: +

+ Generated by: Generated by: SiSU 7.2.1_pre_rel of 2019w35/4 (2019-09-05) +

+ Ruby version: ruby 3.0.4p208 (2022-04-12 revision 3fa771dded) [x86_64-linux-gnu] +

+ Document (ao) last generated: 2022-06-14 13:53:03 +0000 +


+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+ +
\ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/overview-of-tools.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/overview-of-tools.en.html new file mode 100644 index 0000000..171486c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/overview-of-tools.en.html @@ -0,0 +1,288 @@ + + + + + + overview-of-tools - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Overview of tools +

+
+ +

+ 5. Overview of tools +

+
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +

+ 5.1 The live-build package +

+
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +

+ 5.1.1 The lb config command +

+
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +

+ $ lb config --apt aptitude
+

+
+ +

+ It is possible to specify many options, such as: +

+
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +

+ 5.1.2 The lb build command +

+
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +

+ 5.1.3 The lb clean command +

+
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +

+ 5.2 The live-boot package +

+
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +

+ 5.3 The live-config package +

+
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/procedures.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/procedures.en.html new file mode 100644 index 0000000..04a891c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/procedures.en.html @@ -0,0 +1,254 @@ + + + + + + procedures - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Procedures +

+
+ +

+ 16. Procedures +

+
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +

+ 16.1 Major Releases +

+
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +

+ 16.2 Point Releases +

+
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +

+ 16.2.1 Last Point Release of a Debian Release +

+
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +

+ 16.2.2 Point release announcement template +

+
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/style-guide.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/style-guide.en.html new file mode 100644 index 0000000..95498ea --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/style-guide.en.html @@ -0,0 +1,698 @@ + + + + + + style-guide - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Style guide +

+
+ +

+ 19. Style guide +

+
+ +

+ 19.1 Guidelines for authors +

+
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +

+ 19.1.1 Linguistic features +

+
+ +
    +
  • + Use plain English +
  • +
+
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
    +
  • + Variety of English +
  • +
+
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
    +
  • + Be balanced +
  • +
+
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
    +
  • + Be politically correct +
  • +
+
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
    +
  • + Be concise +
  • +
+
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
    +
  • + Minimize translation work +
  • +
+
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
    +
  • + Be coherent +
  • +
+
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
    +
  • + Be cohesive +
  • +
+
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
    +
  • + Be descriptive +
  • +
+
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
    +
  • + Dictionary +
  • +
+
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +

+ 19.1.2 Procedures +

+
+ +
    +
  • + Test before write +
  • +
+
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
    +
  • + Examples +
  • +
+
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
    +
  • + External links +
  • +
+
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
    +
  • + Chapters +
  • +
+
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +

+ $ sisu --help markup
+

+
+ +

+ Here are some markup examples that may prove useful: +

+
+ +

+ - For emphasis/bold text: +

+
+ +

+ *{foo}* or !{foo}!
+

+
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +

+ - For italics: +

+
+ +

+ /{foo}/
+

+
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +

+ - For monospace: +

+
+ +

+ #{foo}#
+

+
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +

+ - For code blocks: +

+
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +

+ produces: +

+
+ +

+ $ foo
+# bar
+

+
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +

+ 19.2 Guidelines for translators +

+
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +

+ 19.2.1 Translation hints +

+
+ +
    +
  • + Comments +
  • +
+
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
    +
  • + False friends +
  • +
+
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
    +
  • + Code blocks +
  • +
+
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
    +
  • + Newlines +
  • +
+
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +

+ Translators should never translate: +

+
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +

+ - The names of programs +

+
+ +

+ - The commands given as examples +

+
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +

+ - Links +

+
+ +

+ - Paths +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/the-basics.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/the-basics.en.html new file mode 100644 index 0000000..1e08eb9 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/the-basics.en.html @@ -0,0 +1,847 @@ + + + + + + the-basics - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ The basics +

+
+ +

+ 4. The basics +

+
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +

+ 4.1 What is a live system? +

+
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +

+ 4.2 Downloading prebuilt images +

+
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +

+ 4.3 Using the web live image builder +

+
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +

+ 4.3.1 Web builder usage and caveats +

+
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +

+ 4.4 First steps: building an ISO hybrid image +

+
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +

+ $ lb config
+

+
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +

+ 4.5 Using an ISO hybrid live image +

+
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +

+ 4.5.1 Burning an ISO image to a physical medium +

+
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +

+ 4.5.2 Copying an ISO hybrid image to a USB stick +

+
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +

+ 4.5.3 Using the space left on a USB stick +

+
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +

+ # gparted ${USBSTICK}
+

+
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +

+ 4.5.4 Booting the live medium +

+
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +

+ 4.6 Using a virtual machine for testing +

+
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +

+ 4.6.1 Testing an ISO image with QEMU +

+
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +

+ Booting an ISO image is simple: +

+
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +

+ See the man pages for more details. +

+
+ +

+ 4.6.2 Testing an ISO image with VirtualBox +

+
+ +

+ In order to test the ISO with virtualbox: +

+
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +

+ 4.7 Building and using an HDD image +

+
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +

+ # lb clean --binary
+

+
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +

+ $ lb config -b hdd
+

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +

+ 4.8 Building a netboot image +

+
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +

+ # lb clean
+

+
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +

+ 4.8.1 DHCP server +

+
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +

+ 4.8.2 TFTP server +

+
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +

+ 4.8.3 NFS server +

+
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +

+ # exportfs -rv
+

+
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +

+ 4.8.4 Netboot testing HowTo +

+
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +

+ To make our life easier, we can use virtualization. +

+
+ +

+ 4.8.5 Qemu +

+
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +

+ Edit /etc/qemu-ifup: +

+
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +

+ 4.9 Webbooting +

+
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +

+ 4.9.1 Getting the webboot files +

+
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +

+ 4.9.2 Booting webboot images +

+
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/toc.en.html b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/toc.en.html new file mode 100644 index 0000000..9612714 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/livebuild/live-manual/toc.en.html @@ -0,0 +1,1163 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   + next >>  +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

+ Live Systems Manual +

+ +

+ About +

+ +

+ About this manual +

+ +

+ + 1. About this manual + +

+ +
+ + 1.1 For the impatient + +
+ +
+ + 1.2 Terms + +
+ +
+ + 1.3 Authors + +
+ +
+ + 1.4 Contributing to this document + +
+ +
+ + 1.4.1 Applying changes + +
+ +
+ + 1.4.2 Translation + +
+ +

+ About the Live Systems Project +

+ +

+ + 2. About the Live Systems Project + +

+ +
+ + 2.1 Motivation + +
+ +
+ + 2.1.1 What is wrong with current live systems + +
+ +
+ + 2.1.2 Why create our own live system? + +
+ +
+ + 2.2 Philosophy + +
+ +
+ + 2.2.1 Only unchanged packages from Debian "main" + +
+ +
+ + 2.2.2 No package configuration of the live system + +
+ +
+ + 2.3 Contact + +
+ +

+ User +

+ +

+ Installation +

+ +

+ + 3. Installation + +

+ +
+ + 3.1 Requirements + +
+ +
+ + 3.2 Installing live-build + +
+ +
+ + 3.2.1 From the Debian repository + +
+ +
+ + 3.2.2 From source + +
+ +
+ + 3.2.3 From 'snapshots' + +
+ +
+ + 3.3 Installing live-boot and live-config + +
+ +
+ + 3.3.1 From the Debian repository + +
+ +
+ + 3.3.2 From source + +
+ +
+ + 3.3.3 From 'snapshots' + +
+ +

+ The basics +

+ +

+ + 4. The basics + +

+ +
+ + 4.1 What is a live system? + +
+ +
+ + 4.2 Downloading prebuilt images + +
+ +
+ + 4.3 Using the web live image builder + +
+ +
+ + 4.3.1 Web builder usage and caveats + +
+ +
+ + 4.4 First steps: building an ISO hybrid image + +
+ +
+ + 4.5 Using an ISO hybrid live image + +
+ +
+ + 4.5.1 Burning an ISO image to a physical medium + +
+ +
+ + 4.5.2 Copying an ISO hybrid image to a USB stick + +
+ +
+ + 4.5.3 Using the space left on a USB stick + +
+ +
+ + 4.5.4 Booting the live medium + +
+ +
+ + 4.6 Using a virtual machine for testing + +
+ +
+ + 4.6.1 Testing an ISO image with QEMU + +
+ +
+ + 4.6.2 Testing an ISO image with VirtualBox + +
+ +
+ + 4.7 Building and using an HDD image + +
+ +
+ + 4.8 Building a netboot image + +
+ +
+ + 4.8.1 DHCP server + +
+ +
+ + 4.8.2 TFTP server + +
+ +
+ + 4.8.3 NFS server + +
+ +
+ + 4.8.4 Netboot testing HowTo + +
+ +
+ + 4.8.5 Qemu + +
+ +
+ + 4.9 Webbooting + +
+ +
+ + 4.9.1 Getting the webboot files + +
+ +
+ + 4.9.2 Booting webboot images + +
+ +

+ Overview of tools +

+ +

+ + 5. Overview of tools + +

+ +
+ + 5.1 The live-build package + +
+ +
+ + 5.1.1 The lb config command + +
+ +
+ + 5.1.2 The lb build command + +
+ +
+ + 5.1.3 The lb clean command + +
+ +
+ + 5.2 The live-boot package + +
+ +
+ + 5.3 The live-config package + +
+ +

+ Managing a configuration +

+ +

+ + 6. Managing a configuration + +

+ +
+ + 6.1 Dealing with configuration changes + +
+ +
+ + 6.1.1 Why use auto scripts? What do they do? + +
+ +
+ + 6.1.2 Use example auto scripts + +
+ +
+ + 6.2 Clone a configuration published via Git + +
+ +

+ Customizing contents +

+ +

+ + 7. Customization overview + +

+ +
+ + 7.1 Build time vs. boot time configuration + +
+ +
+ + 7.2 Stages of the build + +
+ +
+ + 7.3 Supplement lb config with files + +
+ +
+ + 7.4 Customization tasks + +
+ +

+ Customizing package installation +

+ +

+ + 8. Customizing package installation + +

+ +
+ + 8.1 Package sources + +
+ +
+ + 8.1.1 Distribution, archive areas and mode + +
+ +
+ + 8.1.2 Distribution mirrors + +
+ +
+ + 8.1.3 Distribution mirrors used at build time + +
+ +
+ + 8.1.4 Distribution mirrors used at run time + +
+ +
+ + 8.1.5 Additional repositories + +
+ +
+ + 8.2 Choosing packages to install + +
+ +
+ + 8.2.1 Package lists + +
+ +
+ + 8.2.2 Using metapackages + +
+ +
+ + 8.2.3 Local package lists + +
+ +
+ + 8.2.4 Local binary package lists + +
+ +
+ + 8.2.5 Generated package lists + +
+ +
+ + 8.2.6 Using conditionals inside package lists + +
+ +
+ + 8.2.7 Removing packages at install time + +
+ +
+ + 8.2.8 Desktop and language tasks + +
+ +
+ + 8.2.9 Kernel flavour and version + +
+ +
+ + 8.2.10 Custom kernels + +
+ +
+ + 8.3 Installing modified or third-party packages + +
+ +
+ + 8.3.1 Using packages.chroot to install custom packages + +
+ +
+ + 8.3.2 Using an APT repository to install custom packages + +
+ +
+ + 8.3.3 Custom packages and APT + +
+ +
+ + 8.4 Configuring APT at build time + +
+ +
+ + 8.4.1 Choosing apt or aptitude + +
+ +
+ + 8.4.2 Using a proxy with APT + +
+ +
+ + 8.4.3 Tweaking APT to save space + +
+ +
+ + 8.4.4 Passing options to apt or aptitude + +
+ +
+ + 8.4.5 APT pinning + +
+ +

+ Customizing contents +

+ +

+ + 9. Customizing contents + +

+ +
+ + 9.1 Includes + +
+ +
+ + 9.1.1 Live/chroot local includes + +
+ +
+ + 9.1.2 Binary local includes + +
+ +
+ + 9.2 Hooks + +
+ +
+ + 9.2.1 Chroot local hooks + +
+ +
+ + 9.2.2 Binary local hooks + +
+ +
+ + 9.2.3 Boot-time hooks + +
+ +
+ + 9.3 Preseeding Debconf questions + +
+ +

+ Customizing run time behaviours +

+ +

+ + 10. Customizing run time behaviours + +

+ +
+ + 10.1 Customizing the live user + +
+ +
+ + 10.2 Customizing locale and language + +
+ +
+ + 10.3 Persistence + +
+ +
+ + 10.3.1 The persistence.conf file + +
+ +
+ + 10.3.2 Using more than one persistence store + +
+ +
+ + 10.3.3 Using persistence with encryption + +
+ +

+ Customizing the binary image +

+ +

+ + 11. Customizing the binary image + +

+ +
+ + 11.1 Bootloaders + +
+ +
+ + 11.2 ISO metadata + +
+ +

+ Customizing Debian Installer +

+ +

+ + 12. Customizing Debian Installer + +

+ +
+ + 12.1 Types of Debian Installer + +
+ +
+ + 12.2 Customizing Debian Installer by preseeding + +
+ +
+ + 12.3 Customizing Debian Installer content + +
+ +

+ Project +

+ +

+ Contributing to the project +

+ +

+ + 13. Contributing to the project + +

+ +
+ + 13.1 Making changes + +
+ +
+ + 13.2 Translation of man pages + +
+ +

+ Reporting bugs +

+ +

+ + 14. Reporting bugs + +

+ +
+ + 14.1 Known issues + +
+ +
+ + 14.2 Rebuild from scratch + +
+ +
+ + 14.3 Use up-to-date packages + +
+ +
+ + 14.4 Collect information + +
+ +
+ + 14.5 Isolate the failing case if possible + +
+ +
+ + 14.6 Use the correct package to report the bug against + +
+ +
+ + 14.6.1 At build time while bootstrapping + +
+ +
+ + 14.6.2 At build time while installing packages + +
+ +
+ + 14.6.3 At boot time + +
+ +
+ + 14.6.4 At run time + +
+ +
+ + 14.7 Do the research + +
+ +
+ + 14.8 Where to report bugs + +
+ +

+ Coding Style +

+ +

+ + 15. Coding Style + +

+ +
+ + 15.1 Compatibility + +
+ +
+ + 15.2 Indenting + +
+ +
+ + 15.3 Wrapping + +
+ +
+ + 15.4 Variables + +
+ +
+ + 15.5 Miscellaneous + +
+ +

+ Procedures +

+ +

+ + 16. Procedures + +

+ +
+ + 16.1 Major Releases + +
+ +
+ + 16.2 Point Releases + +
+ +
+ + 16.2.1 Last Point Release of a Debian Release + +
+ +
+ + 16.2.2 Point release announcement template + +
+ +

+ Git repositories +

+ +

+ + 17. Git repositories + +

+ +
+ + 17.1 Handling multiple repositories + +
+ +

+ Examples +

+ +

+ Examples +

+ +

+ + 18. Examples + +

+ +
+ + 18.1 Using the examples + +
+ +
+ + 18.2 Tutorial 1: A default image + +
+ +
+ + 18.3 Tutorial 2: A web browser utility + +
+ +
+ + 18.4 Tutorial 3: A personalized image + +
+ +
+ + 18.4.1 First revision + +
+ +
+ + 18.4.2 Second revision + +
+ +
+ + 18.5 A VNC Kiosk Client + +
+ +
+ + 18.6 A base image for a 128MB USB key + +
+ +
+ + 18.7 A localized GNOME desktop and installer + +
+ +

+ Appendix +

+ +

+ Style guide +

+ +

+ + 19. Style guide + +

+ +
+ + 19.1 Guidelines for authors + +
+ +
+ + 19.1.1 Linguistic features + +
+ +
+ + 19.1.2 Procedures + +
+ +
+ + 19.2 Guidelines for translators + +
+ +
+ + 19.2.1 Translation hints + +
+ +

+ Metadata +

+ +

+ + SiSU Metadata, document information + +

+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +

+ +
+

 

+ + + +
+ + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/os-release/os-release b/eznixOS12X-calamares+debian-installer/eznixOS12X/os-release/os-release new file mode 100644 index 0000000..0a2bc3b --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/os-release/os-release @@ -0,0 +1,6 @@ +PRETTY_NAME="EznixOS12X" +NAME="EznixOS" +VERSION_ID="12" +VERSION="12 (bookworm)" +VERSION_CODENAME=bookworm +ID=debian diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/bpkernel b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/bpkernel new file mode 100755 index 0000000..78a05c5 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/bpkernel @@ -0,0 +1,25 @@ +#!/bin/bash + +# bpkernel -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +bpkernelr () { + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 +} + +bpkernelr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ezadmin b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ezadmin new file mode 100755 index 0000000..d78256b --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ezadmin @@ -0,0 +1,151 @@ +#!/bin/bash + +# ezadmin -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + + +# --------------------------------------- +# Define Functions: +# --------------------------------------- + + +setsudo () { + clear + echo " " + bash /usr/local/bin/setsudo + clear + echo " " + echo "User Added To Sudo Group (logout & login)" + sleep 3 + clear +} + +optimize () { + clear + echo " " + bash /usr/local/bin/optimize + clear + echo " " + echo "Optimized sources.list & Updated Repos" + echo " " + sleep 3 + clear +} + +debtesting () { + clear + echo " " + bash /usr/local/bin/gototesting + clear + echo " " + echo "Upgrade to testing, reboot now" + echo " " + sleep 3 + clear +} + +iconcache () { + clear + echo " " + bash /usr/local/bin/iconcache + clear + echo " " + echo "Icon Cache Files Rebuilt (logout & login)" + sleep 3 + clear +} + +ffinstall () { + clear + echo " " + bash /usr/local/bin/ffinstall + clear + echo " " + echo "Firefox Current Installed" + sleep 3 + clear +} + +ytdlpinst () { + clear + echo " " + bash /usr/local/bin/ytdlpinstall + clear + echo " " + echo "YT-DLP video downloader Installed" + sleep 3 + clear +} + +bpkernel () { + clear + echo " " + bash /usr/local/bin/bpkernel + clear + echo " " + echo "Newest Kernel From Backports Installed (Reboot Required)" + sleep 3 + clear +} + +# --------------------------- +# Main Menu +# --------------------------- + +mainmenu () { while true +do + clear + echo "----------------------" + echo " EZ Admin Menu:" + echo " 12X Xfce Edition" + echo "----------------------" + echo "" + echo " (a) Add Myself to Sudo Group " + echo " (Logout & Login to take effect) " + echo " (b) Optimize Sources & Update Repos " + echo " (c) Rebuild Icon Cache Files " + echo " (Logout & Login to take effect) " + echo " (d) Install or upgrade Firefox Latest " + echo " (e) Install YT-DLP video downloader " + echo " (f) Install newest kernel from backports " + echo " (Reboot Required) " + echo " (g) Upgrade to Debian Testing " + echo " (Reboot Required) " + echo "" + echo " (x) Exit " + echo + read -p "Please enter your choice: " choice + case $choice in + a|A) setsudo;; + b|B) optimize;; + c|C) iconcache;; + d|D) ffinstall;; + e|E) ytdlpinst;; + f|F) bpkernel;; + g|G) debtesting;; + x|X) exit;; + *) echo "invalid answer, please try again";; + + esac +done +} + +# Begin main program: + +mainmenu + +done + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ffinstall b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ffinstall new file mode 100755 index 0000000..b0bd8fb --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ffinstall @@ -0,0 +1,31 @@ +#!/bin/bash + +# ffinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ffinstallr () { + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznixOS12X/launchers/Firefox-Latest.desktop /usr/share/applications/ + rm -r /opt/FFDL +} + +ffinstallr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/gototesting b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/gototesting new file mode 100755 index 0000000..8b548ac --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/gototesting @@ -0,0 +1,26 @@ +#!/bin/bash + +# gototesting -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +totesting () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznixOS12X/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade +} + +totesting + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/iconcache b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/iconcache new file mode 100755 index 0000000..42d2846 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/iconcache @@ -0,0 +1,30 @@ +#!/bin/bash + +# iconcache -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +iconcacher () { + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ +} + +iconcacher + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/optimize b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/optimize new file mode 100755 index 0000000..370ecde --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/optimize @@ -0,0 +1,25 @@ +#!/bin/bash + +# optimize -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +optimizer () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznixOS12X/sources/sources.bookworm /etc/apt/sources.list + apt-get -y update +} + +optimizer + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/setsudo b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/setsudo new file mode 100755 index 0000000..7460481 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/setsudo @@ -0,0 +1,24 @@ +#!/bin/bash + +# setsudo -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +setsudoer () { + read -p "Type your user name, be exact, and press Enter: " ANS + usermod -aG sudo $ANS +} + +setsudoer + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ytdlpinstall b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ytdlpinstall new file mode 100755 index 0000000..d60cafa --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/scripts/ytdlpinstall @@ -0,0 +1,24 @@ +#!/bin/bash + +# ytdlpinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ytdlpinstlr () { + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp +} + +ytdlpinstlr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/sources/sources.bookworm b/eznixOS12X-calamares+debian-installer/eznixOS12X/sources/sources.bookworm new file mode 100644 index 0000000..568f474 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/sources/sources.bookworm @@ -0,0 +1,15 @@ +# Main +deb https://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware + +# Updates +deb https://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware + +# Security +deb https://security.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware +# deb-src https://security.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware + +# Backports +deb https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/sources/sources.testing b/eznixOS12X-calamares+debian-installer/eznixOS12X/sources/sources.testing new file mode 100644 index 0000000..75ff196 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/sources/sources.testing @@ -0,0 +1,11 @@ +# Main +deb https://deb.debian.org/debian/ testing main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ testing main contrib non-free non-free-firmware + +# Updates +deb https://deb.debian.org/debian/ testing-updates main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ testing-updates main contrib non-free non-free-firmware + +# Security +# deb https://security.debian.org/debian-security/ testing-security main contrib non-free non-free-firmware +# deb-src https://security.debian.org/debian-security/ testing-security main contrib non-free non-free-firmware diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/slide1.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/slide1.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/slide1.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/splash.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/splash.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/splash.xpm b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/splash.xpm new file mode 100644 index 0000000..73a6a8a --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/splash.xpm @@ -0,0 +1,14048 @@ +/* XPM */ +static char * splash_xpm[] = { +"640 480 13565 3", +" c #01040C", +". c #01060F", +"+ c #01050D", +"@ c #02040B", +"# c #01050E", +"$ c #01060E", +"% c #01040D", +"& c #010711", +"* c #02060F", +"= c #01060D", +"- c #010611", +"; c #010712", +"> c #010610", +", c #020816", +"' c #000710", +") c #010816", +"! c #000714", +"~ c #010815", +"{ c #010917", +"] c #010713", +"^ c #010714", +"/ c #010919", +"( c #020A19", +"_ c #02091B", +": c #02091A", +"< c #020919", +"[ c #010918", +"} c #020A1A", +"| c #010814", +"1 c #010A19", +"2 c #010916", +"3 c #03091A", +"4 c #010A18", +"5 c #020B1A", +"6 c #020B1C", +"7 c #020B1D", +"8 c #020B1E", +"9 c #030B1C", +"0 c #020D1F", +"a c #020C1E", +"b c #030B1D", +"c c #020D21", +"d c #020B1B", +"e c #020C1F", +"f c #020C21", +"g c #020C20", +"h c #020E23", +"i c #030C1E", +"j c #030C1F", +"k c #020D1E", +"l c #030E24", +"m c #021027", +"n c #020E22", +"o c #020D22", +"p c #020F25", +"q c #010F26", +"r c #020E24", +"s c #020E26", +"t c #011028", +"u c #010F27", +"v c #010E25", +"w c #02112A", +"x c #02112D", +"y c #020F28", +"z c #02122C", +"A c #02122E", +"B c #01112B", +"C c #02102A", +"D c #021029", +"E c #03122C", +"F c #01102A", +"G c #02112B", +"H c #021433", +"I c #02122D", +"J c #021432", +"K c #03122D", +"L c #021533", +"M c #02132F", +"N c #02112C", +"O c #031432", +"P c #021536", +"Q c #031533", +"R c #021639", +"S c #021331", +"T c #021534", +"U c #031534", +"V c #031638", +"W c #021738", +"X c #021638", +"Y c #021434", +"Z c #021435", +"` c #031433", +" . c #03183B", +".. c #02183C", +"+. c #03183C", +"@. c #031739", +"#. c #02173A", +"$. c #031A3F", +"%. c #021A40", +"&. c #031940", +"*. c #021940", +"=. c #03193E", +"-. c #031941", +";. c #031A40", +">. c #02193E", +",. c #03193D", +"'. c #031B43", +"). c #031A42", +"!. c #031A41", +"~. c #031C45", +"{. c #031B44", +"]. c #021A3F", +"^. c #031B45", +"/. c #041C45", +"(. c #031C47", +"_. c #021D48", +":. c #031D49", +"<. c #041D4A", +"[. c #041D44", +"}. c #04204C", +"|. c #041D47", +"1. c #041D49", +"2. c #031F4B", +"3. c #041E4B", +"4. c #04204D", +"5. c #04214E", +"6. c #06234F", +"7. c #05224E", +"8. c #04214D", +"9. c #062251", +"0. c #062350", +"a. c #041F4E", +"b. c #04204F", +"c. c #092554", +"d. c #072352", +"e. c #082453", +"f. c #0B2757", +"g. c #082454", +"h. c #0C2857", +"i. c #0A2656", +"j. c #0A2857", +"k. c #082655", +"l. c #092857", +"m. c #092757", +"n. c #092858", +"o. c #0A2958", +"p. c #0C2B59", +"q. c #0A2859", +"r. c #0C2B5B", +"s. c #0D2B5D", +"t. c #0B295B", +"u. c #0B2A5B", +"v. c #0C2A5C", +"w. c #0C2B5C", +"x. c #0A295B", +"y. c #0C2C5D", +"z. c #0E2C5E", +"A. c #0E2E5F", +"B. c #0D2D5F", +"C. c #0D2D60", +"D. c #0F2F62", +"E. c #0D2D5E", +"F. c #0E2E61", +"G. c #103063", +"H. c #113164", +"I. c #0F2F63", +"J. c #113066", +"K. c #102F64", +"L. c #102F65", +"M. c #103064", +"N. c #0F2E64", +"O. c #123167", +"P. c #102E64", +"Q. c #123168", +"R. c #113067", +"S. c #133268", +"T. c #14336A", +"U. c #123269", +"V. c #133469", +"W. c #133369", +"X. c #113268", +"Y. c #133269", +"Z. c #113167", +"`. c #15366C", +" + c #14356B", +".+ c #13346A", +"++ c #15346B", +"@+ c #17376C", +"#+ c #16376D", +"$+ c #16366D", +"%+ c #15366B", +"&+ c #173770", +"*+ c #1B3B74", +"=+ c #193972", +"-+ c #16366F", +";+ c #183871", +">+ c #163670", +",+ c #183771", +"'+ c #163870", +")+ c #183770", +"!+ c #183872", +"~+ c #183B75", +"{+ c #1A3A75", +"]+ c #193B75", +"^+ c #173A74", +"/+ c #1A3D77", +"(+ c #193C76", +"_+ c #193B77", +":+ c #173976", +"<+ c #1A3C77", +"[+ c #193B7A", +"}+ c #1C3E7A", +"|+ c #1A3C79", +"1+ c #1C3E7B", +"2+ c #1B3E79", +"3+ c #1B3E7A", +"4+ c #1A3D79", +"5+ c #1D407C", +"6+ c #1D3F7C", +"7+ c #1C407C", +"8+ c #1A3E7A", +"9+ c #1B3E7C", +"0+ c #1B3F7D", +"a+ c #1C407D", +"b+ c #1B3F7C", +"c+ c #1A3E7B", +"d+ c #1A3E7C", +"e+ c #193D7B", +"f+ c #1A3F7D", +"g+ c #1B407F", +"h+ c #183E7D", +"i+ c #183E7C", +"j+ c #1A407E", +"k+ c #183D7C", +"l+ c #1A407F", +"m+ c #173D7C", +"n+ c #193F7E", +"o+ c #173D7E", +"p+ c #173C7D", +"q+ c #163C7B", +"r+ c #193F7F", +"s+ c #193F80", +"t+ c #1A4081", +"u+ c #183F80", +"v+ c #143B7C", +"w+ c #173E7F", +"x+ c #163D7E", +"y+ c #153C7E", +"z+ c #194082", +"A+ c #163D80", +"B+ c #173E81", +"C+ c #153C7F", +"D+ c #133A7D", +"E+ c #143B7E", +"F+ c #12397C", +"G+ c #11387B", +"H+ c #133C7E", +"I+ c #143C7E", +"J+ c #153D80", +"K+ c #143A7F", +"L+ c #133A7F", +"M+ c #143B7F", +"N+ c #123A7E", +"O+ c #143B80", +"P+ c #133B80", +"Q+ c #12397E", +"R+ c #11397E", +"S+ c #123A7F", +"T+ c #10387D", +"U+ c #10387E", +"V+ c #0F377C", +"W+ c #0D357B", +"X+ c #0E367C", +"Y+ c #0E367B", +"Z+ c #0D357A", +"`+ c #0C357A", +" @ c #0D367C", +".@ c #0F377D", +"+@ c #0B3379", +"@@ c #0C347A", +"#@ c #0A3278", +"$@ c #083177", +"%@ c #093177", +"&@ c #083076", +"*@ c #072F75", +"=@ c #072F76", +"-@ c #062E75", +";@ c #093077", +">@ c #062E74", +",@ c #052B6D", +"'@ c #052D73", +")@ c #052D72", +"!@ c #042A6A", +"~@ c #042C6F", +"{@ c #042C6E", +"]@ c #052C72", +"^@ c #042A6B", +"/@ c #042B6D", +"(@ c #052D71", +"_@ c #042869", +":@ c #042969", +"<@ c #042B6A", +"[@ c #042965", +"}@ c #042867", +"|@ c #042865", +"1@ c #042662", +"2@ c #042864", +"3@ c #042661", +"4@ c #042866", +"5@ c #04265D", +"6@ c #04265F", +"7@ c #04255E", +"8@ c #042761", +"9@ c #042762", +"0@ c #042359", +"a@ c #04255D", +"b@ c #052459", +"c@ c #03245A", +"d@ c #042356", +"e@ c #042358", +"f@ c #042153", +"g@ c #042257", +"h@ c #032255", +"i@ c #032254", +"j@ c #032152", +"k@ c #032154", +"l@ c #032050", +"m@ c #031F4F", +"n@ c #022152", +"o@ c #031F4D", +"p@ c #032153", +"q@ c #031D4A", +"r@ c #021F4C", +"s@ c #031E4B", +"t@ c #031D48", +"u@ c #031E4C", +"v@ c #031C46", +"w@ c #031C4A", +"x@ c #031A43", +"y@ c #03183A", +"z@ c #03183E", +"A@ c #03193F", +"B@ c #041A42", +"C@ c #04193F", +"D@ c #03163B", +"E@ c #03173A", +"F@ c #03163A", +"G@ c #031639", +"H@ c #021537", +"I@ c #021636", +"J@ c #031435", +"K@ c #031331", +"L@ c #021535", +"M@ c #021332", +"N@ c #03122F", +"O@ c #02132E", +"P@ c #021330", +"Q@ c #02122F", +"R@ c #01040B", +"S@ c #02040F", +"T@ c #020610", +"U@ c #000712", +"V@ c #01050F", +"W@ c #010817", +"X@ c #010915", +"Y@ c #010A1A", +"Z@ c #020814", +"`@ c #010715", +" # c #020817", +".# c #000914", +"+# c #01091A", +"@# c #020818", +"## c #020918", +"$# c #020A1B", +"%# c #010818", +"&# c #020A1C", +"*# c #020917", +"=# c #030A1D", +"-# c #030A1C", +";# c #020815", +"># c #030C1D", +",# c #020C1D", +"'# c #020B1F", +")# c #010D23", +"!# c #010D20", +"~# c #020D20", +"{# c #020E20", +"]# c #010E23", +"^# c #021028", +"/# c #021129", +"(# c #030F26", +"_# c #020E25", +":# c #011029", +"<# c #011230", +"[# c #03112A", +"}# c #01112C", +"|# c #021430", +"1# c #031434", +"2# c #031536", +"3# c #031431", +"4# c #031637", +"5# c #03183D", +"6# c #02193D", +"7# c #021739", +"8# c #04183C", +"9# c #031B41", +"0# c #021941", +"a# c #021B42", +"b# c #031B42", +"c# c #041B46", +"d# c #031B46", +"e# c #041F4B", +"f# c #05214E", +"g# c #05204D", +"h# c #031E4A", +"i# c #05204E", +"j# c #05204C", +"k# c #06224E", +"l# c #05224F", +"m# c #052150", +"n# c #06224F", +"o# c #072453", +"p# c #062351", +"q# c #092555", +"r# c #092656", +"s# c #0A2858", +"t# c #082756", +"u# c #092958", +"v# c #0B2958", +"w# c #0B2959", +"x# c #0A285A", +"y# c #0A295A", +"z# c #0E2D5F", +"A# c #0F2E5F", +"B# c #0D2C5E", +"C# c #0C2C5E", +"D# c #0E2E60", +"E# c #123166", +"F# c #143369", +"G# c #143269", +"H# c #15346A", +"I# c #14356A", +"J# c #123369", +"K# c #15356B", +"L# c #14346A", +"M# c #16366C", +"N# c #15356C", +"O# c #16376E", +"P# c #15356E", +"Q# c #193974", +"R# c #17376F", +"S# c #1A3A74", +"T# c #173873", +"U# c #163973", +"V# c #183974", +"W# c #1B3D77", +"X# c #1A3C76", +"Y# c #1B3E78", +"Z# c #1A3C78", +"`# c #193B78", +" $ c #183A78", +".$ c #193C79", +"+$ c #1A3D7A", +"@$ c #1C3F7C", +"#$ c #193C78", +"$$ c #193D79", +"%$ c #1C407E", +"&$ c #183D7B", +"*$ c #193F7D", +"=$ c #183F7D", +"-$ c #193E7D", +";$ c #1B4180", +">$ c #1A4080", +",$ c #183D7E", +"'$ c #183E7F", +")$ c #163C7D", +"!$ c #153C7D", +"~$ c #163D7D", +"{$ c #173E7E", +"]$ c #173E80", +"^$ c #153D7F", +"/$ c #11387D", +"($ c #11397F", +"_$ c #0C3479", +":$ c #0D367B", +"<$ c #0B357A", +"[$ c #0C3379", +"}$ c #093178", +"|$ c #0A3479", +"1$ c #072E75", +"2$ c #052D74", +"3$ c #052F76", +"4$ c #062E73", +"5$ c #042C70", +"6$ c #052B6E", +"7$ c #062D73", +"8$ c #042A6D", +"9$ c #042B6C", +"0$ c #04296A", +"a$ c #032B6C", +"b$ c #042967", +"c$ c #052866", +"d$ c #042966", +"e$ c #042A68", +"f$ c #042764", +"g$ c #052661", +"h$ c #04255C", +"i$ c #052762", +"j$ c #05265F", +"k$ c #04255A", +"l$ c #042660", +"m$ c #042459", +"n$ c #05245A", +"o$ c #04245A", +"p$ c #042458", +"q$ c #032459", +"r$ c #032052", +"s$ c #022050", +"t$ c #032051", +"u$ c #032151", +"v$ c #031E4F", +"w$ c #031C48", +"x$ c #031D4B", +"y$ c #041B48", +"z$ c #02173B", +"A$ c #04183E", +"B$ c #03173C", +"C$ c #021637", +"D$ c #031535", +"E$ c #021431", +"F$ c #031436", +"G$ c #031636", +"H$ c #031330", +"I$ c #011332", +"J$ c #01040A", +"K$ c #00040D", +"L$ c #01050B", +"M$ c #02050D", +"N$ c #010813", +"O$ c #020713", +"P$ c #000812", +"Q$ c #010710", +"R$ c #000814", +"S$ c #000711", +"T$ c #010819", +"U$ c #000713", +"V$ c #030B1E", +"W$ c #010D21", +"X$ c #030D21", +"Y$ c #020F24", +"Z$ c #020F27", +"`$ c #020F26", +" % c #021026", +".% c #011231", +"+% c #031332", +"@% c #021230", +"#% c #021538", +"$% c #02183D", +"%% c #041B44", +"&% c #041D46", +"*% c #041E49", +"=% c #031C44", +"-% c #051F4A", +";% c #05214D", +">% c #04204E", +",% c #041E4A", +"'% c #03204C", +")% c #04214F", +"!% c #062250", +"~% c #05214F", +"{% c #0A2655", +"]% c #072756", +"^% c #0C2757", +"/% c #0C2959", +"(% c #0C2B5A", +"_% c #092758", +":% c #0A2957", +"<% c #0D2B5C", +"[% c #0B2A5A", +"}% c #0B2B5C", +"|% c #0A2A5B", +"1% c #0C2B5D", +"2% c #0D2D5D", +"3% c #0F2F61", +"4% c #102F62", +"5% c #113064", +"6% c #123265", +"7% c #0E2D62", +"8% c #0E2D63", +"9% c #102F63", +"0% c #123267", +"a% c #143469", +"b% c #16356C", +"c% c #17376D", +"d% c #18386F", +"e% c #16376C", +"f% c #193A70", +"g% c #183870", +"h% c #14346D", +"i% c #173972", +"j% c #193A74", +"k% c #193A75", +"l% c #1D3F79", +"m% c #193C77", +"n% c #1A3B78", +"o% c #193B79", +"p% c #183A77", +"q% c #1B3C79", +"r% c #1A3C7A", +"s% c #1B3D7A", +"t% c #1B3F7B", +"u% c #1B407E", +"v% c #1A3E7E", +"w% c #1B3F7F", +"x% c #183F7F", +"y% c #1B4182", +"z% c #18407F", +"A% c #163D7F", +"B% c #183F82", +"C% c #11387C", +"D% c #133B7D", +"E% c #153C81", +"F% c #0F367B", +"G% c #10377C", +"H% c #0C367B", +"I% c #062F75", +"J% c #083178", +"K% c #073077", +"L% c #062E72", +"M% c #052C73", +"N% c #052B6F", +"O% c #052C6E", +"P% c #062F72", +"Q% c #052E74", +"R% c #052C70", +"S% c #052D70", +"T% c #052C6F", +"U% c #042B6E", +"V% c #042A6C", +"W% c #042968", +"X% c #042763", +"Y% c #04255B", +"Z% c #05245C", +"`% c #042760", +" & c #052358", +".& c #04245B", +"+& c #032358", +"@& c #022052", +"#& c #032354", +"$& c #032458", +"%& c #032355", +"&& c #032253", +"*& c #042154", +"=& c #031E4E", +"-& c #031F4E", +";& c #041E4C", +">& c #041C48", +",& c #031A44", +"'& c #041B45", +")& c #02193F", +"!& c #02193C", +"~& c #01122C", +"{& c #01112A", +"]& c #01050C", +"^& c #010612", +"/& c #020A18", +"(& c #020711", +"_& c #020A1E", +":& c #020A1D", +"<& c #020B19", +"[& c #030D20", +"}& c #030F25", +"|& c #020F22", +"1& c #03132E", +"2& c #031333", +"3& c #021532", +"4& c #03173D", +"5& c #041C46", +"6& c #041E47", +"7& c #041F49", +"8& c #041D48", +"9& c #031D47", +"0& c #021E4A", +"a& c #041F4C", +"b& c #041F4D", +"c& c #052251", +"d& c #072454", +"e& c #072554", +"f& c #092657", +"g& c #0C2858", +"h& c #082758", +"i& c #0C2A5A", +"j& c #0E2D5D", +"k& c #0D2C5D", +"l& c #0D2A5C", +"m& c #0C2C5F", +"n& c #123165", +"o& c #113166", +"p& c #123066", +"q& c #103065", +"r& c #113267", +"s& c #17366D", +"t& c #13336B", +"u& c #17386E", +"v& c #1A3A72", +"w& c #18376F", +"x& c #17386F", +"y& c #183971", +"z& c #193970", +"A& c #173772", +"B& c #16376F", +"C& c #1A3C74", +"D& c #193973", +"E& c #183A74", +"F& c #163A73", +"G& c #183B76", +"H& c #1B3D79", +"I& c #1B3E7B", +"J& c #193D7A", +"K& c #193E7C", +"L& c #1B3E7E", +"M& c #183E7E", +"N& c #173E7D", +"O& c #19407F", +"P& c #143A7D", +"Q& c #163D82", +"R& c #163E80", +"S& c #163D81", +"T& c #11377C", +"U& c #10377D", +"V& c #0D347A", +"W& c #0C367A", +"X& c #0B367B", +"Y& c #083078", +"Z& c #0A3279", +"`& c #062F74", +" * c #052C71", +".* c #062D71", +"+* c #042C6D", +"@* c #052A69", +"#* c #05255C", +"$* c #05255D", +"%* c #05255E", +"&* c #052760", +"** c #04265E", +"=* c #042357", +"-* c #05245B", +";* c #04235A", +">* c #042255", +",* c #032357", +"'* c #032356", +")* c #032256", +"!* c #022153", +"~* c #03204F", +"{* c #031E4D", +"]* c #021F4E", +"^* c #031F50", +"/* c #041C47", +"(* c #03183F", +"_* c #02173D", +":* c #011431", +"<* c #02030B", +"[* c #00060F", +"}* c #020611", +"|* c #000611", +"1* c #010510", +"2* c #010C1F", +"3* c #010C1D", +"4* c #011027", +"5* c #031029", +"6* c #031028", +"7* c #02112E", +"8* c #03132F", +"9* c #02163A", +"0* c #031737", +"a* c #03193C", +"b* c #061F49", +"c* c #021D47", +"d* c #031D46", +"e* c #051E4A", +"f* c #031F4A", +"g* c #05224D", +"h* c #082552", +"i* c #082452", +"j* c #072250", +"k* c #062352", +"l* c #0D2959", +"m* c #092756", +"n* c #0B2A59", +"o* c #0A2959", +"p* c #0D2C5B", +"q* c #092759", +"r* c #113163", +"s* c #14346B", +"t* c #18376E", +"u* c #15356D", +"v* c #183970", +"w* c #13346C", +"x* c #183A73", +"y* c #163872", +"z* c #183B77", +"A* c #1C3E79", +"B* c #1E407C", +"C* c #183A76", +"D* c #183C78", +"E* c #173A76", +"F* c #183C7A", +"G* c #1D417F", +"H* c #1D407F", +"I* c #173D7B", +"J* c #183F7E", +"K* c #173D80", +"L* c #143C80", +"M* c #0B3479", +"N* c #042D73", +"O* c #052A6D", +"P* c #042B6B", +"Q* c #032A6B", +"R* c #042A69", +"S* c #042868", +"T* c #052660", +"U* c #052359", +"V* c #032258", +"W* c #042051", +"X* c #042256", +"Y* c #02204F", +"Z* c #021F4D", +"`* c #021F4F", +" = c #031C49", +".= c #03173B", +"+= c #021334", +"@= c #011128", +"#= c #03122E", +"$= c #000610", +"%= c #000813", +"&= c #000916", +"*= c #030C20", +"== c #030A1B", +"-= c #030F27", +";= c #010F23", +">= c #02102C", +",= c #02173C", +"'= c #041C44", +")= c #02183B", +"!= c #031D45", +"~= c #051F4B", +"{= c #031E49", +"]= c #072350", +"^= c #072450", +"/= c #092452", +"(= c #092654", +"_= c #082857", +":= c #092859", +"<= c #0B295A", +"[= c #0F2D5F", +"}= c #0E2D60", +"|= c #133266", +"1= c #123266", +"2= c #113065", +"3= c #103166", +"4= c #16366E", +"5= c #14356C", +"6= c #1A3972", +"7= c #1A3A73", +"8= c #193872", +"9= c #183972", +"0= c #1B3C75", +"a= c #1B3B76", +"b= c #1C3F79", +"c= c #1A3D78", +"d= c #1D407B", +"e= c #1E4280", +"f= c #1A3F7E", +"g= c #1D4384", +"h= c #1B4283", +"i= c #194081", +"j= c #193F81", +"k= c #133A7E", +"l= c #123B7D", +"m= c #0F367C", +"n= c #0C367C", +"o= c #072E73", +"p= c #073075", +"q= c #052E73", +"r= c #052B70", +"s= c #042C71", +"t= c #062E76", +"u= c #042D70", +"v= c #052868", +"w= c #052A6C", +"x= c #042863", +"y= c #04255F", +"z= c #032359", +"A= c #042254", +"B= c #031B47", +"C= c #041C49", +"D= c #031D4C", +"E= c #031231", +"F= c #02122B", +"G= c #00040B", +"H= c #010812", +"I= c #020A17", +"J= c #010A1B", +"K= c #020D23", +"L= c #020E21", +"M= c #02102B", +"N= c #03112C", +"O= c #031738", +"P= c #041F4A", +"Q= c #031E48", +"R= c #03204D", +"S= c #0A2757", +"T= c #0B2857", +"U= c #0D2A59", +"V= c #0D2A5A", +"W= c #0E2D5C", +"X= c #0E2D5E", +"Y= c #0B2B5D", +"Z= c #0F2F60", +"`= c #113165", +" - c #123268", +".- c #16356B", +"+- c #18386E", +"@- c #17386D", +"#- c #17376E", +"$- c #193971", +"%- c #173870", +"&- c #1A3974", +"*- c #173971", +"=- c #193C75", +"-- c #1B3E77", +";- c #1C3F7B", +">- c #1E417D", +",- c #1C417F", +"'- c #1B3F7E", +")- c #1B417F", +"!- c #163C7C", +"~- c #12397B", +"{- c #173E83", +"]- c #153B7F", +"^- c #123A7C", +"/- c #143C81", +"(- c #0F377B", +"_- c #0C377C", +":- c #0B3278", +"<- c #083176", +"[- c #063075", +"}- c #052A6B", +"|- c #032967", +"1- c #032966", +"2- c #032761", +"3- c #031F51", +"4- c #02183F", +"5- c #020712", +"6- c #010B1C", +"7- c #010A17", +"8- c #020916", +"9- c #030D22", +"0- c #010E22", +"a- c #011330", +"b- c #031230", +"c- c #031430", +"d- c #021635", +"e- c #02183E", +"f- c #01183D", +"g- c #031E47", +"h- c #021B41", +"i- c #052250", +"j- c #042050", +"k- c #0B2B59", +"l- c #0F2E5D", +"m- c #102E60", +"n- c #0F2E61", +"o- c #0E2D61", +"p- c #123368", +"q- c #19386F", +"r- c #183A72", +"s- c #173A73", +"t- c #1B3D7B", +"u- c #1D3F7B", +"v- c #1B3F7A", +"w- c #1F417D", +"x- c #1B3E7D", +"y- c #193E7E", +"z- c #1A3F7F", +"A- c #1B4181", +"B- c #194083", +"C- c #153C80", +"D- c #082F75", +"E- c #063176", +"F- c #042D74", +"G- c #052E72", +"H- c #042D71", +"I- c #042B6F", +"J- c #032968", +"K- c #032864", +"L- c #052865", +"M- c #021E4D", +"N- c #041F4F", +"O- c #041D4B", +"P- c #041C4A", +"Q- c #021D49", +"R- c #02050F", +"S- c #02040C", +"T- c #000815", +"U- c #010A1C", +"V- c #030B1F", +"W- c #031A3D", +"X- c #051F4C", +"Y- c #072351", +"Z- c #0B2756", +"`- c #0E2C5D", +" ; c #102F66", +".; c #18396F", +"+; c #1A3B72", +"@; c #1C3C75", +"#; c #1B3B75", +"$; c #183973", +"%; c #1A3B76", +"&; c #193B76", +"*; c #1C3F7E", +"=; c #173D7D", +"-; c #193E7F", +";; c #143C7F", +">; c #123A7D", +",; c #0D3579", +"'; c #0A3277", +"); c #093179", +"!; c #062D74", +"~; c #083077", +"{; c #052B6C", +"]; c #052A6A", +"^; c #052864", +"/; c #032865", +"(; c #052763", +"_; c #03255D", +":; c #042152", +"<; c #031943", +"[; c #04173D", +"}; c #031537", +"|; c #021333", +"1; c #011026", +"2; c #011129", +"3; c #011432", +"4; c #011636", +"5; c #041B42", +"6; c #031B48", +"7; c #021C46", +"8; c #04204B", +"9; c #06214E", +"0; c #072451", +"a; c #082551", +"b; c #0E2B5B", +"c; c #0F2E60", +"d; c #18376D", +"e; c #18396E", +"f; c #1A3970", +"g; c #17366F", +"h; c #193A72", +"i; c #1D407D", +"j; c #1A3D7B", +"k; c #1D4280", +"l; c #1C4281", +"m; c #193F82", +"n; c #13397C", +"o; c #143A7E", +"p; c #0B3378", +"q; c #093378", +"r; c #062D72", +"s; c #03296A", +"t; c #032B6B", +"u; c #052765", +"v; c #052764", +"w; c #04245C", +"x; c #05255A", +"y; c #032257", +"z; c #011638", +"A; c #000612", +"B; c #030C1C", +"C; c #030E23", +"D; c #030F29", +"E; c #01122D", +"F; c #04183F", +"G; c #04193D", +"H; c #051E49", +"I; c #05234E", +"J; c #0B2858", +"K; c #0C2A59", +"L; c #0F2E5C", +"M; c #102F61", +"N; c #102F60", +"O; c #133366", +"P; c #113063", +"Q; c #133368", +"R; c #13336A", +"S; c #1C3D78", +"T; c #193D77", +"U; c #1C407F", +"V; c #1A4181", +"W; c #18407E", +"X; c #13397E", +"Y; c #143D80", +"Z; c #143A80", +"`; c #0E357B", +" > c #073076", +".> c #062C72", +"+> c #062B6F", +"@> c #052969", +"#> c #031A45", +"$> c #031538", +"%> c #01122E", +"&> c #02112F", +"*> c #020715", +"=> c #010B19", +"-> c #030A1A", +";> c #020819", +">> c #010C20", +",> c #010F25", +"'> c #021229", +")> c #03112B", +"!> c #04173A", +"~> c #031F4C", +"{> c #082451", +"]> c #0A2654", +"^> c #0D2858", +"/> c #0A2756", +"(> c #0D2B5B", +"_> c #0B2A5C", +":> c #0F2D60", +"<> c #133164", +"[> c #123263", +"}> c #16346B", +"|> c #17356C", +"1> c #17366C", +"2> c #193A71", +"3> c #1B3A73", +"4> c #1B3C76", +"5> c #1C3F78", +"6> c #1D4381", +"7> c #184080", +"8> c #153B7C", +"9> c #133A7B", +"0> c #133B7E", +"a> c #153D82", +"b> c #0E377D", +"c> c #073277", +"d> c #042D72", +"e> c #052E75", +"f> c #052F72", +"g> c #032969", +"h> c #052662", +"i> c #022150", +"j> c #021D4B", +"k> c #041E4D", +"l> c #031942", +"m> c #04163A", +"n> c #011434", +"o> c #011331", +"p> c #03091B", +"q> c #010C1E", +"r> c #030B20", +"s> c #020F23", +"t> c #021634", +"u> c #051C47", +"v> c #021E49", +"w> c #0B2755", +"x> c #0C2958", +"y> c #0C2A5B", +"z> c #0D2C5C", +"A> c #112F61", +"B> c #0F2F5F", +"C> c #123164", +"D> c #143268", +"E> c #16356D", +"F> c #193A73", +"G> c #193B73", +"H> c #183A75", +"I> c #1A3D76", +"J> c #1C3E7C", +"K> c #1D417E", +"L> c #19407E", +"M> c #183E80", +"N> c #1A4182", +"O> c #12397D", +"P> c #133B7F", +"Q> c #0A357A", +"R> c #0A3178", +"S> c #072F74", +"T> c #032C6E", +"U> c #05296A", +"V> c #031840", +"W> c #041A44", +"X> c #011536", +"Y> c #020C1C", +"Z> c #020D24", +"`> c #041E48", +" , c #05204B", +"., c #05214C", +"+, c #07244F", +"@, c #102E5F", +"#, c #102E62", +"$, c #103062", +"%, c #1D407A", +"&, c #1D4180", +"*, c #1C4080", +"=, c #1C4282", +"-, c #0D387D", +";, c #0B357B", +">, c #042C6C", +",, c #010511", +"', c #01040F", +"), c #01040E", +"!, c #02050E", +"~, c #02040D", +"{, c #01030B", +"], c #010309", +"^, c #010207", +"/, c #01030C", +"(, c #02091C", +"_, c #020B20", +":, c #020E27", +"<, c #020F29", +"[, c #041940", +"}, c #00050E", +"|, c #000917", +"1, c #030D23", +"2, c #010F24", +"3, c #010F2A", +"4, c #021231", +"5, c #011635", +"6, c #021942", +"7, c #041C43", +"8, c #021B45", +"9, c #05204A", +"0, c #06214D", +"a, c #112F62", +"b, c #123264", +"c, c #133267", +"d, c #103066", +"e, c #1A3B73", +"f, c #1C3F7A", +"g, c #1E407D", +"h, c #1D407E", +"i, c #1E427F", +"j, c #1B407D", +"k, c #183F81", +"l, c #052F75", +"m, c #083075", +"n, c #052968", +"o, c #042663", +"p, c #021A42", +"q, c #010206", +"r, c #010105", +"s, c #010103", +"t, c #000002", +"u, c #000001", +"v, c #010104", +"w, c #000101", +"x, c #010102", +"y, c #000000", +"z, c #010101", +"A, c #010002", +"B, c #031334", +"C, c #011433", +"D, c #010B1B", +"E, c #030F23", +"F, c #021A41", +"G, c #072452", +"H, c #0E2A5A", +"I, c #0A2A59", +"J, c #082757", +"K, c #123366", +"L, c #193870", +"M, c #1A3A71", +"N, c #163971", +"O, c #173B75", +"P, c #1C4181", +"Q, c #1D4080", +"R, c #183E81", +"S, c #193F83", +"T, c #153E80", +"U, c #063076", +"V, c #082F76", +"W, c #072E74", +"X, c #042765", +"Y, c #052761", +"Z, c #02060E", +"`, c #010208", +" ' c #000102", +".' c #000100", +"+' c #010204", +"@' c #000003", +"#' c #010001", +"$' c #010615", +"%' c #021943", +"&' c #021436", +"*' c #000811", +"=' c #010811", +"-' c #021C44", +";' c #041A40", +">' c #051D48", +",' c #062252", +"'' c #072353", +")' c #0E2C5C", +"!' c #103061", +"~' c #143466", +"{' c #133367", +"]' c #143368", +"^' c #19386E", +"/' c #193A6F", +"(' c #193871", +"_' c #1C3C76", +":' c #1D3C76", +"<' c #1C3E78", +"[' c #1A3E78", +"}' c #1E4180", +"|' c #1C4180", +"1' c #1A3F80", +"2' c #1A4180", +"3' c #032A69", +"4' c #032866", +"5' c #020207", +"6' c #010205", +"7' c #020203", +"8' c #020204", +"9' c #021539", +"0' c #01060C", +"a' c #030D1F", +"b' c #021128", +"c' c #011532", +"d' c #01183B", +"e' c #051E48", +"f' c #07224F", +"g' c #082450", +"h' c #0E2C5B", +"i' c #133168", +"j' c #1C3D77", +"k' c #1E417B", +"l' c #1D417D", +"m' c #173C7A", +"n' c #194080", +"o' c #163C7F", +"p' c #093076", +"q' c #042E73", +"r' c #04245D", +"s' c #02040A", +"t' c #010D22", +"u' c #051F49", +"v' c #092551", +"w' c #082554", +"x' c #153469", +"y' c #153369", +"z' c #18386D", +"A' c #1B3A75", +"B' c #1C3E76", +"C' c #1D3D76", +"D' c #1D4079", +"E' c #1D417B", +"F' c #163E7C", +"G' c #0E387D", +"H' c #0C337A", +"I' c #052D6F", +"J' c #032A6A", +"K' c #042766", +"L' c #011534", +"M' c #030D1E", +"N' c #030B1B", +"O' c #030E25", +"P' c #021737", +"Q' c #02183A", +"R' c #031A3E", +"S' c #031C43", +"T' c #021B44", +"U' c #07234F", +"V' c #092553", +"W' c #0F2B5B", +"X' c #113162", +"Y' c #173771", +"Z' c #1B3C77", +"`' c #1E407A", +" ) c #1B3D78", +".) c #1E427E", +"+) c #1E4381", +"@) c #1D4382", +"#) c #153D81", +"$) c #123A80", +"%) c #0C357B", +"&) c #072F77", +"*) c #010308", +"=) c #020105", +"-) c #030F24", +";) c #010F28", +">) c #011533", +",) c #0D2B5A", +"') c #123062", +")) c #112F63", +"!) c #0F3065", +"~) c #1E3E77", +"{) c #1C3B75", +"]) c #1F437F", +"^) c #1F4381", +"/) c #1D4281", +"() c #1B4285", +"_) c #173F81", +":) c #083074", +"<) c #042E72", +"[) c #020206", +"}) c #010003", +"|) c #010004", +"1) c #00050D", +"2) c #00070F", +"3) c #011535", +"4) c #04183D", +"5) c #04204A", +"6) c #06224D", +"7) c #082350", +"8) c #0F2C5B", +"9) c #1A396F", +"0) c #19396F", +"a) c #1C3D72", +"b) c #1D3D75", +"c) c #1B3C74", +"d) c #1A3B75", +"e) c #173F82", +"f) c #0E357A", +"g) c #0E377C", +"h) c #010613", +"i) c #02030A", +"j) c #020D25", +"k) c #00060E", +"l) c #02050B", +"m) c #01132F", +"n) c #041739", +"o) c #021A43", +"p) c #021B43", +"q) c #0A2753", +"r) c #0E2A59", +"s) c #0E2B5A", +"t) c #113062", +"u) c #123065", +"v) c #16346A", +"w) c #15336A", +"x) c #17366B", +"y) c #1C3C74", +"z) c #1C3B74", +"A) c #1E417A", +"B) c #1D3F7A", +"C) c #1B4080", +"D) c #1B4282", +"E) c #173D7F", +"F) c #163E81", +"G) c #042B70", +"H) c #020104", +"I) c #02081A", +"J) c #010A16", +"K) c #021736", +"L) c #04193E", +"M) c #082553", +"N) c #0F2D5E", +"O) c #0E2C60", +"P) c #1A3B70", +"Q) c #1D3E77", +"R) c #1E3F7A", +"S) c #1C3F7F", +"T) c #020613", +"U) c #020612", +"V) c #020D1D", +"W) c #01122B", +"X) c #051C45", +"Y) c #092957", +"Z) c #163568", +"`) c #1A3B74", +" ! c #1B3A74", +".! c #1E407B", +"+! c #1E417E", +"@! c #1F4382", +"#! c #173F7D", +"$! c #0F367D", +"%! c #073078", +"&! c #042C73", +"*! c #042D6F", +"=! c #032A6C", +"-! c #020103", +";! c #041A43", +">! c #011537", +",! c #031027", +"'! c #06214C", +")! c #092653", +"!! c #092652", +"~! c #112F5F", +"{! c #0F2E5E", +"]! c #143266", +"^! c #153568", +"/! c #18376B", +"(! c #1A3A70", +"_! c #1C3D75", +":! c #1D3F77", +"~ c #204482", +",~ c #062F76", +"'~ c #052867", +")~ c #020409", +"!~ c #01091B", +"~~ c #0E2C5F", +"{~ c #143467", +"]~ c #1B3A71", +"^~ c #1C3D73", +"/~ c #1D3E76", +"(~ c #1E3F77", +"_~ c #1F427C", +":~ c #21447E", +"<~ c #093176", +"[~ c #062C70", +"}~ c #052E76", +"|~ c #052C6D", +"1~ c #051D46", +"2~ c #07204A", +"3~ c #051E47", +"4~ c #0D2857", +"5~ c #0D2C5A", +"6~ c #112E60", +"7~ c #122F61", +"8~ c #133265", +"9~ c #153367", +"0~ c #133165", +"a~ c #143468", +"b~ c #163469", +"c~ c #1E4078", +"d~ c #1E3E79", +"e~ c #20427F", +"f~ c #0A3379", +"g~ c #020309", +"h~ c #041638", +"i~ c #041639", +"j~ c #030F28", +"k~ c #061E4A", +"l~ c #07224E", +"m~ c #0A2653", +"n~ c #0A2856", +"o~ c #123160", +"p~ c #112F60", +"q~ c #123064", +"r~ c #153468", +"s~ c #1C3C72", +"t~ c #1D3C77", +"u~ c #1F4380", +"v~ c #1E4281", +"w~ c #1A4184", +"x~ c #0B367A", +"y~ c #0D347B", +"z~ c #020307", +"A~ c #030E21", +"B~ c #01173A", +"C~ c #031C42", +"D~ c #041D45", +"E~ c #041B47", +"F~ c #0F2B5A", +"G~ c #112D5D", +"H~ c #102F5E", +"I~ c #102D5D", +"J~ c #0F2D61", +"K~ c #123063", +"L~ c #113061", +"M~ c #143366", +"N~ c #17376A", +"O~ c #1B3B72", +"P~ c #1B3D76", +"Q~ c #1D3E78", +"R~ c #194181", +"S~ c #10387C", +"T~ c #052A6E", +"U~ c #03255F", +"V~ c #010B1A", +"W~ c #021840", +"X~ c #0C2855", +"Y~ c #082352", +"Z~ c #0B2856", +"`~ c #122E5E", +" { c #153467", +".{ c #153569", +"+{ c #1B3A6F", +"@{ c #1F3F78", +"#{ c #1F427F", +"${ c #032867", +"%{ c #010106", +"&{ c #021633", +"*{ c #03173E", +"={ c #031839", +"-{ c #041E46", +";{ c #06204D", +">{ c #0D2D5B", +",{ c #0F2C5C", +"'{ c #102D5C", +"){ c #133264", +"!{ c #18366C", +"~{ c #1B3B73", +"{{ c #1C3F77", +"]{ c #1E417C", +"^{ c #1D3F7D", +"/{ c #1B4281", +"({ c #153B7A", +"_{ c #0C3378", +":{ c #0A367A", +"<{ c #010409", +"[{ c #010B1D", +"}{ c #010C21", +"|{ c #03112D", +"1{ c #092451", +"2{ c #19376D", +"3{ c #1D3C73", +"4{ c #1E3D77", +"5{ c #1D4282", +"6{ c #1E4485", +"7{ c #19417F", +"8{ c #143D7F", +"9{ c #13397D", +"0{ c #0A347A", +"a{ c #052B6B", +"b{ c #000816", +"c{ c #010E24", +"d{ c #031532", +"e{ c #051D49", +"f{ c #052049", +"g{ c #06204B", +"h{ c #08234F", +"i{ c #0A2652", +"j{ c #0B2653", +"k{ c #102F5F", +"l{ c #123163", +"m{ c #143264", +"n{ c #163569", +"o{ c #1D3E75", +"p{ c #1C3B76", +"q{ c #1F3F7A", +"r{ c #1D4078", +"s{ c #1E4382", +"t{ c #11397D", +"u{ c #042E74", +"v{ c #041A41", +"w{ c #061F48", +"x{ c #06224C", +"y{ c #0A2552", +"z{ c #0A2754", +"A{ c #0B2754", +"B{ c #0C2756", +"C{ c #112D5C", +"D{ c #0F2D5C", +"E{ c #102E5E", +"F{ c #1B3A70", +"G{ c #1E3E76", +"H{ c #1D3D74", +"I{ c #1D3C75", +"J{ c #1A3D75", +"K{ c #1E3F79", +"L{ c #204381", +"M{ c #1F4482", +"N{ c #183E84", +"O{ c #0E357C", +"P{ c #052967", +"Q{ c #030E22", +"R{ c #02193B", +"S{ c #08224D", +"T{ c #07234E", +"U{ c #0B2855", +"V{ c #102C5B", +"W{ c #102C5C", +"X{ c #163668", +"Y{ c #1B3B71", +"Z{ c #1C3B71", +"`{ c #1D3D77", +" ] c #20437D", +".] c #1E4181", +"+] c #03255E", +"@] c #020205", +"#] c #02122A", +"$] c #031129", +"%] c #05214B", +"&] c #0A2553", +"*] c #0C2C5A", +"=] c #163468", +"-] c #1A386F", +";] c #1C3B72", +">] c #20427D", +",] c #204380", +"'] c #1E4282", +")] c #183F83", +"!] c #083277", +"~] c #061F47", +"{] c #06204A", +"]] c #0B2654", +"^] c #0D2957", +"/] c #153366", +"(] c #122F62", +"_] c #153269", +":] c #163669", +"<] c #1A386E", +"[] c #1D3D73", +"}] c #1B3E75", +"|] c #1A417F", +"1] c #093277", +"2] c #000915", +"3] c #010D1E", +"4] c #061E48", +"5] c #051F47", +"6] c #0E2E5D", +"7] c #112F5E", +"8] c #11305F", +"9] c #143265", +"0] c #17376B", +"a] c #17366A", +"b] c #1E4179", +"c] c #1F417C", +"d] c #214380", +"e] c #073176", +"f] c #020714", +"g] c #020106", +"h] c #011430", +"i] c #0B2753", +"j] c #092651", +"k] c #0C2856", +"l] c #112E5D", +"m] c #0D2D5C", +"n] c #122F63", +"o] c #18386B", +"p] c #1C3B73", +"q] c #1E3D79", +"r] c #1D3E79", +"s] c #1F427D", +"t] c #204480", +"u] c #1E4482", +"v] c #0A3177", +"w] c #083278", +"x] c #053076", +"y] c #032762", +"z] c #02070F", +"A] c #07204B", +"B] c #0E2958", +"C] c #123162", +"D] c #1D3C74", +"E] c #1B3C73", +"F] c #1F3F77", +"G] c #1F4279", +"H] c #042B69", +"I] c #020B21", +"J] c #010C1C", +"K] c #030F22", +"L] c #061E47", +"M] c #061F4B", +"N] c #0B2854", +"O] c #123061", +"P] c #133064", +"Q] c #173569", +"R] c #17356A", +"S] c #1D3E74", +"T] c #1F3F75", +"U] c #1E3D76", +"V] c #1F3F79", +"W] c #1F407B", +"X] c #20427E", +"Y] c #20437E", +"Z] c #1D4181", +"`] c #1A4083", +" ^ c #153B80", +".^ c #0E367A", +"+^ c #093278", +"@^ c #083378", +"#^ c #00060D", +"$^ c #051F48", +"%^ c #0A2551", +"&^ c #132F5F", +"*^ c #102E5D", +"=^ c #18366A", +"-^ c #18366B", +";^ c #16366A", +">^ c #15356A", +",^ c #1C3D74", +"'^ c #1E4079", +")^ c #224482", +"!^ c #214582", +"~^ c #1D427F", +"{^ c #193E82", +"]^ c #00030A", +"^^ c #051E46", +"/^ c #0F2F5E", +"(^ c #153368", +"_^ c #18376C", +":^ c #1B3970", +"<^ c #1E3F76", +"[^ c #1F427A", +"}^ c #1E427C", +"|^ c #1E4483", +"1^ c #183D81", +"2^ c #000309", +"3^ c #04173C", +"4^ c #051C48", +"5^ c #071F4B", +"6^ c #08234E", +"7^ c #06204C", +"8^ c #09244F", +"9^ c #072550", +"0^ c #0F2A59", +"a^ c #1A396E", +"b^ c #1B396F", +"c^ c #1F4281", +"d^ c #0B3279", +"e^ c #020308", +"f^ c #03102A", +"g^ c #071E4A", +"h^ c #203F78", +"i^ c #1E3F78", +"j^ c #1F427B", +"k^ c #214581", +"l^ c #214583", +"m^ c #1B4284", +"n^ c #021025", +"o^ c #02142F", +"p^ c #061E49", +"q^ c #071F4A", +"r^ c #041F48", +"s^ c #092450", +"t^ c #12305F", +"u^ c #19376B", +"v^ c #18386C", +"w^ c #19386D", +"x^ c #1D3E73", +"y^ c #204079", +"z^ c #203F7A", +"A^ c #204280", +"B^ c #1A4280", +"C^ c #073177", +"D^ c #010E27", +"E^ c #041738", +"F^ c #041A3E", +"G^ c #021D45", +"H^ c #0C2754", +"I^ c #133062", +"J^ c #1D3C72", +"K^ c #1E3E74", +"L^ c #203F79", +"M^ c #204179", +"N^ c #20437F", +"O^ c #1F4282", +"P^ c #1E4383", +"Q^ c #113A7D", +"R^ c #082F77", +"S^ c #021023", +"T^ c #03142F", +"U^ c #031736", +"V^ c #021A3E", +"W^ c #072049", +"X^ c #07234D", +"Y^ c #112E5E", +"Z^ c #1C3A71", +"`^ c #1E3D74", +" / c #1D3F78", +"./ c #1E417F", +"+/ c #1A4084", +"@/ c #0C3478", +"#/ c #0B347A", +"$/ c #053075", +"%/ c #03112E", +"&/ c #021B40", +"*/ c #031F47", +"=/ c #0A2550", +"-/ c #0D2955", +";/ c #0F2C5A", +">/ c #14305F", +",/ c #153365", +"'/ c #143365", +")/ c #18376A", +"!/ c #1F3E77", +"~/ c #20447F", +"{/ c #224481", +"]/ c #214482", +"^/ c #1B4183", +"// c #0C2854", +"(/ c #153266", +"_/ c #173669", +":/ c #1F4079", +"( c #E4DB1B", +",( c #DAD21F", +"'( c #C2BB25", +")( c #908C31", +"!( c #31353D", +"~( c #041B40", +"{( c #222A3F", +"]( c #878438", +"^( c #BFB82C", +"/( c #D9D023", +"(( c #E4DB1D", +"_( c #E3DA1F", +":( c #DBD322", +"<( c #C9C129", +"[( c #ABA532", +"}( c #6F6D3D", +"|( c #262F45", +"1( c #061D47", +"2( c #2A3347", +"3( c #32384A", +"4( c #31394A", +"5( c #2A344A", +"6( c #1F2D4E", +"7( c #323C50", +"8( c #323B4F", +"9( c #333C51", +"0( c #152A54", +"a( c #203154", +"b( c #303C54", +"c( c #333D56", +"d( c #333E57", +"e( c #2C3956", +"f( c #122F5F", +"g( c #10305E", +"h( c #133161", +"i( c #1E3E75", +"j( c #204383", +"k( c #21252A", +"l( c #E6DD14", +"m( c #F6EC0D", +"n( c #6A672A", +"o( c #7D7A33", +"p( c #DAD11F", +"q( c #E7DE1A", +"r( c #9A9531", +"s( c #1C253B", +"t( c #041B41", +"u( c #7E7B37", +"v( c #DFD620", +"w( c #F8EE0D", +"x( c #E5DC1D", +"y( c #B2AC32", +"z( c #3E4142", +"A( c #051D4A", +"B( c #112349", +"C( c #C5BE2E", +"D( c #E9E01D", +"E( c #43474A", +"F( c #12264E", +"G( c #BFB935", +"H( c #ECE21D", +"I( c #4C4F4C", +"J( c #424951", +"K( c #7F7E4A", +"L( c #B3AD3E", +"M( c #DAD22D", +"N( c #F4EA14", +"O( c #DAD22C", +"P( c #1B2D56", +"Q( c #123060", +"R( c #1A396C", +"S( c #1F417A", +"T( c #1F407A", +"U( c #1E427D", +"V( c #093579", +"W( c #032A6D", +"X( c #010203", +"Y( c #222526", +"Z( c #6A6728", +"`( c #161F32", +" _ c #A8A22B", +"._ c #F3E910", +"+_ c #F7ED0E", +"@_ c #C6BF27", +"#_ c #2E3440", +"$_ c #928E38", +"%_ c #F2E912", +"&_ c #74733F", +"*_ c #062049", +"=_ c #08204C", +"-_ c #5C5D44", +";_ c #F1E716", +">_ c #B4AE38", +",_ c #6E6E49", +"'_ c #F3EA14", +")_ c #A8A33F", +"!_ c #70704D", +"~_ c #D2CA2F", +"{_ c #ECE21E", +"]_ c #F7ED0F", +"^_ c #DBD32D", +"/_ c #133061", +"(_ c #153465", +"__ c #19376A", +":_ c #19396C", +"<_ c #19386C", +"[_ c #1F4076", +"}_ c #1F3E75", +"|_ c #1F417B", +"1_ c #1F3E79", +"2_ c #20437C", +"3_ c #020208", +"4_ c #021C47", +"5_ c #00050C", +"6_ c #212529", +"7_ c #F7ED0D", +"8_ c #6A6727", +"9_ c #A6A02C", +"0_ c #E7DD1A", +"a_ c #C2BA27", +"b_ c #A8A22F", +"c_ c #A49F30", +"d_ c #B9B22B", +"e_ c #DDD51C", +"f_ c #C9C227", +"g_ c #222A3E", +"h_ c #696738", +"i_ c #F0E714", +"j_ c #E7DE1C", +"k_ c #C5BD2B", +"l_ c #A29C32", +"m_ c #AEA82F", +"n_ c #CAC32C", +"o_ c #E8DF1A", +"p_ c #73713D", +"q_ c #B5AF37", +"r_ c #F0E717", +"s_ c #5C5D47", +"t_ c #18294C", +"u_ c #D1C92E", +"v_ c #E3DA23", +"w_ c #353E51", +"x_ c #999544", +"y_ c #1C2F58", +"z_ c #133160", +"A_ c #163466", +"B_ c #19376C", +"C_ c #1F3E74", +"D_ c #1E3F74", +"E_ c #1F4078", +"F_ c #21407A", +"G_ c #1A3F83", +"H_ c #5E5C2F", +"I_ c #65622A", +"J_ c #656224", +"K_ c #26292C", +"L_ c #817E30", +"M_ c #F4EA10", +"N_ c #F5EB0F", +"O_ c #ADA72E", +"P_ c #3E413C", +"Q_ c #262D3A", +"R_ c #8D8833", +"S_ c #ECE216", +"T_ c #ACA62F", +"U_ c #0F1F40", +"V_ c #CDC526", +"W_ c #F6EC0E", +"X_ c #B5AE2F", +"Y_ c #414441", +"Z_ c #3F4243", +"`_ c #8F8B39", +" : c #DDD522", +".: c #F5EC0F", +"+: c #08214A", +"@: c #434748", +"#: c #C6BF30", +"$: c #11254C", +"%: c #888542", +"&: c #F6EC0F", +"*: c #928F42", +"=: c #999546", +"-: c #F1E817", +";: c #D4CC30", +">: c #A9A442", +",: c #C7BF36", +"': c #132E5F", +"): c #143261", +"!: c #122F60", +"~: c #133263", +"{: c #113160", +"]: c #153264", +"^: c #173468", +"/: c #1D4283", +"(: c #1C4182", +"_: c #183E82", +":: c #153E81", +"<: c #052966", +"[: c #020306", +"}: c #333631", +"|: c #E2D919", +"1: c #97922A", +"2: c #011737", +"3: c #6A6837", +"4: c #EBE216", +"5: c #F1E812", +"6: c #666535", +"7: c #4F503C", +"8: c #F3E911", +"9: c #C0B92C", +"0: c #0E1F40", +"a: c #051D45", +"b: c #041C42", +"c: c #1D2844", +"d: c #9B9637", +"e: c #61603F", +"f: c #A19C3B", +"g: c #F5EB11", +"h: c #767546", +"i: c #2B364D", +"j: c #DFD625", +"k: c #D7CF2B", +"l: c #1F2E4E", +"m: c #838148", +"n: c #BBB53C", +"o: c #8B8848", +"p: c #3B4351", +"q: c #B6B03E", +"r: c #1B2E56", +"s: c #102E5C", +"t: c #21417A", +"u: c #20417A", +"v: c #163C7E", +"w: c #163C80", +"x: c #052E71", +"y: c #000103", +"z: c #010E20", +"A: c #031634", +"B: c #A29C2A", +"C: c #B9B225", +"D: c #0E1C37", +"E: c #8C8833", +"F: c #C8C028", +"G: c #0F1D3B", +"H: c #8E8937", +"I: c #5F5E3B", +"J: c #061D46", +"K: c #2E3649", +"L: c #DFD724", +"M: c #D5CD2A", +"N: c #1E2D4D", +"O: c #A09B3C", +"P: c #F5EC11", +"Q: c #7A7847", +"R: c #08244E", +"S: c #0C2753", +"T: c #B6B03C", +"U: c #1C2F57", +"V: c #0F2B59", +"W: c #122D5C", +"X: c #122D5D", +"Y: c #20427B", +"Z: c #1F4179", +"`: c #234682", +" < c #214480", +".< c #595619", +"+< c #9D9717", +"@< c #BEB715", +"#< c #CAC216", +"$< c #C6BE14", +"%< c #AFA816", +"&< c #78731A", +"*< c #0D1420", +"=< c #757124", +"-< c #B2AB1C", +";< c #C8C01A", +">< c #C8C018", +",< c #B0A91D", +"'< c #716E26", +")< c #011736", +"!< c #212736", +"~< c #E1D81A", +"{< c #E9E016", +"]< c #414236", +"^< c #16223A", +"/< c #CFC726", +"(< c #58573B", +"_< c #E9E01A", +":< c #262C3A", +"<< c #071E48", +"[< c #8A8740", +"}< c #8F8B3F", +"|< c #46494A", +"1< c #E9E01E", +"2< c #C8C133", +"3< c #11254D", +"4< c #0B2552", +"5< c #143062", +"6< c #1A386C", +"7< c #1E3D73", +"8< c #1F4383", +"9< c #193E80", +"0< c #030E26", +"a< c #36361C", +"b< c #BAB216", +"c< c #F0E60D", +"d< c #F5EB0D", +"e< c #D2CA12", +"f< c #57551F", +"g< c #ABA517", +"h< c #EAE110", +"i< c #EAE111", +"j< c #EAE10F", +"k< c #CBC317", +"l< c #0D1726", +"m< c #2A2C24", +"n< c #E5DC13", +"o< c #E8DF12", +"p< c #40402A", +"q< c #363726", +"r< c #C5BD1A", +"s< c #F4EA0E", +"t< c #BCB41E", +"u< c #212528", +"v< c #21262C", +"w< c #D9D118", +"x< c #EAE113", +"y< c #E8DF13", +"z< c #636129", +"A< c #262A2D", +"B< c #D6CD1A", +"C< c #C6BF1F", +"D< c #162033", +"E< c #6E6D31", +"F< c #E8DF16", +"G< c #EAE115", +"H< c #EAE016", +"I< c #95902B", +"J< c #747033", +"K< c #B1AA2A", +"L< c #817D37", +"M< c #A6A033", +"N< c #AFA931", +"O< c #E6DC1A", +"P< c #212A3F", +"Q< c #06214A", +"R< c #1E2D4C", +"S< c #D3CB2C", +"T< c #E2D923", +"U< c #2E374B", +"V< c #B5AF38", +"W< c #606048", +"X< c #DBD32C", +"Y< c #1C2E56", +"Z< c #143060", +"`< c #133262", +" [ c #133060", +".[ c #173568", +"+[ c #1A396D", +"@[ c #20427A", +"#[ c #21437D", +"$[ c #22457F", +"%[ c #214381", +"&[ c #010306", +"*[ c #030408", +"=[ c #00040C", +"-[ c #49471D", +";[ c #D9D012", +">[ c #E7DD10", +",[ c #615D1B", +"'[ c #B5AE17", +")[ c #D7CF15", +"![ c #0E1725", +"~[ c #2D2E23", +"{[ c #F2E90E", +"][ c #F5EC0D", +"^[ c #504E22", +"/[ c #D0C818", +"([ c #B7B01D", +"_[ c #0E1623", +":[ c #21262D", +"<[ c #E6DD16", +"[[ c #8C8728", +"}[ c #8D882A", +"|[ c #D7CF1C", +"1[ c #DDD419", +"2[ c #292D31", +"3[ c #011639", +"4[ c #AFA826", +"5[ c #F5EC0E", +"6[ c #656335", +"7[ c #262E3D", +"8[ c #D2CA22", +"9[ c #0E1E3F", +"0[ c #A9A331", +"a[ c #F1E714", +"b[ c #363A3D", +"c[ c #041C41", +"d[ c #051D44", +"e[ c #051B45", +"f[ c #071F48", +"g[ c #07214B", +"h[ c #717044", +"i[ c #F4EA12", +"j[ c #A5A03C", +"k[ c #5F6047", +"l[ c #F1E717", +"m[ c #B7B138", +"n[ c #092350", +"o[ c #0D2855", +"p[ c #B6B03D", +"q[ c #1B2D54", +"r[ c #102F5D", +"s[ c #112C5C", +"t[ c #132F5E", +"u[ c #143262", +"v[ c #1B396D", +"w[ c #1A3A6E", +"x[ c #1A3A6F", +"y[ c #1E3D75", +"z[ c #20407B", +"A[ c #1C4381", +"B[ c #093379", +"C[ c #042C72", +"D[ c #020209", +"E[ c #041A45", +"F[ c #21241F", +"G[ c #D3CA13", +"H[ c #F0E60E", +"I[ c #D1C913", +"J[ c #BEB616", +"K[ c #C5BD15", +"L[ c #DCD312", +"M[ c #2D2E20", +"N[ c #B1AA18", +"O[ c #F2E80E", +"P[ c #D7CF16", +"Q[ c #2D2E21", +"R[ c #BAB31A", +"S[ c #E6DD13", +"T[ c #C5BD1B", +"U[ c #C0B81A", +"V[ c #DAD214", +"W[ c #6C6921", +"X[ c #21262B", +"Y[ c #161F31", +"Z[ c #CBC31D", +"`[ c #E6DC16", +" } c #3C3D31", +".} c #9F9924", +"+} c #797632", +"@} c #D1C921", +"#} c #E4DB18", +"$} c #22293A", +"%} c #C6BE26", +"&} c #ECE316", +"*} c #29303D", +"=} c #918D35", +"-} c #999434", +";} c #051C43", +">} c #10234A", +",} c #C3BC32", +"'} c #EBE21C", +")} c #4C4F4A", +"!} c #C8C130", +"~} c #EAE11D", +"{} c #464A4B", +"]} c #0B2450", +"^} c #1C3157", +"/} c #0D2856", +"(} c #11305E", +"_} c #123261", +":} c #133162", +"<} c #1C3C6F", +"[} c #1F3F76", +"}} c #1F4483", +"|} c #10397B", +"1} c #041F51", +"2} c #A39C18", +"3} c #C2BB14", +"4} c #4B491D", +"5} c #26261D", +"6} c #ACA51A", +"7} c #615E20", +"8} c #EEE40F", +"9} c #C7BF16", +"0} c #0E1522", +"a} c #2D2E22", +"b} c #F4EA0D", +"c} c #F3E90E", +"d} c #A59F1D", +"e} c #212427", +"f} c #928D23", +"g} c #F3E90F", +"h} c #BEB71C", +"i} c #5B592A", +"j} c #EEE512", +"k} c #B7B025", +"l} c #53512F", +"m} c #ECE314", +"n} c #BFB724", +"o} c #0E1A31", +"p} c #222734", +"q} c #E6DC18", +"r} c #CCC423", +"s} c #05183A", +"t} c #A6A030", +"u} c #59593C", +"v} c #56563D", +"w} c #F4EA11", +"x} c #EDE417", +"y} c #8D8938", +"z} c #0D1E3D", +"A} c #08214B", +"B} c #07204C", +"C} c #08214C", +"D} c #595B48", +"E} c #EFE618", +"F} c #D1C92D", +"G} c #A29D3E", +"H} c #1C3056", +"I} c #122F5D", +"J} c #10305F", +"K} c #122E5F", +"L} c #143163", +"M} c #173466", +"N} c #1E3D78", +"O} c #23437C", +"P} c #21447D", +"Q} c #214683", +"R} c #37361D", +"S} c #E9E00F", +"T} c #C3BB12", +"U} c #1C1F1F", +"V} c #0E1420", +"W} c #B7AF17", +"X} c #E3DA11", +"Y} c #212421", +"Z} c #2A2B23", +"`} c #D8CF14", +" | c #EBE110", +".| c #54521F", +"+| c #2D2F26", +"@| c #A69F20", +"#| c #021127", +"$| c #B9B11E", +"%| c #6A6729", +"&| c #A6A023", +"*| c #6F6C2B", +"=| c #0D1A31", +"-| c #C5BE20", +";| c #E9E015", +">| c #474733", +",| c #2D3130", +"'| c #F2E911", +")| c #B7B029", +"!| c #898531", +"~| c #CEC626", +"{| c #DDD421", +"]| c #A9A333", +"^| c #69683C", +"/| c #343840", +"(| c #062048", +"_| c #09214D", +":| c #B1AB39", +"<| c #E0D824", +"[| c #0A244F", +"}| c #0E2A58", +"|| c #0E2B59", +"1| c #112C5D", +"2| c #133261", +"3| c #173567", +"4| c #1D3B72", +"5| c #1F3E78", +"6| c #234785", +"7| c #1C4384", +"8| c #10367B", +"9| c #000308", +"0| c #948E15", +"a| c #ECE30F", +"b| c #45441D", +"c| c #3E3E1F", +"d| c #ECE20F", +"e| c #726E1C", +"f| c #B1AA1C", +"g| c #8E881A", +"h| c #2D2F27", +"i| c #E0D714", +"j| c #262A2C", +"k| c #636125", +"l| c #4D4C26", +"m| c #21252C", +"n| c #E6DD15", +"o| c #292E31", +"p| c #DCD31A", +"q| c #D7CF1B", +"r| c #21262F", +"s| c #837F2A", +"t| c #96912A", +"u| c #505033", +"v| c #747136", +"w| c #65633A", +"x| c #EDE317", +"y| c #CFC729", +"z| c #A59F35", +"A| c #5E5D3C", +"B| c #40444A", +"C| c #E7DE1F", +"D| c #8B8842", +"E| c #1B2D55", +"F| c #122E5C", +"G| c #132F61", +"H| c #1A3A6D", +"I| c #1C3B6F", +"J| c #214179", +"K| c #10397C", +"L| c #0D3479", +"M| c #02020A", +"N| c #C8C012", +"O| c #BDB513", +"P| c #C3BC16", +"Q| c #A6A01A", +"R| c #7C781C", +"S| c #BEB719", +"T| c #0E1521", +"U| c #ABA51D", +"V| c #011025", +"W| c #262929", +"X| c #E9E012", +"Y| c #777327", +"Z| c #77732A", +"`| c #F4EA0F", +" 1 c #9F9927", +".1 c #343630", +"+1 c #D2CA1E", +"@1 c #1C2334", +"#1 c #615F2E", +"$1 c #9D972E", +"%1 c #999432", +"&1 c #767337", +"*1 c #F1E814", +"=1 c #C6BF2C", +"-1 c #565740", +";1 c #092049", +">1 c #B4AD36", +",1 c #D5CD2B", +"'1 c #1F2D4D", +")1 c #0B2553", +"!1 c #0F2B58", +"~1 c #0E2A57", +"{1 c #132E5E", +"]1 c #143162", +"^1 c #1C3B70", +"/1 c #1D3B71", +"(1 c #1F3E76", +"_1 c #1F4075", +":1 c #22447E", +"<1 c #1F437D", +"[1 c #1E4481", +"}1 c #04296C", +"|1 c #010408", +"11 c #21231C", +"21 c #E4DA0F", +"31 c #8D8718", +"41 c #A19B18", +"51 c #C2BA18", +"61 c #454421", +"71 c #E4DB11", +"81 c #E0D713", +"91 c #3C3C24", +"01 c #7C7822", +"a1 c #161D2A", +"b1 c #DBD216", +"c1 c #898424", +"d1 c #21262E", +"e1 c #0E1A32", +"f1 c #BDB621", +"g1 c #BDB623", +"h1 c #F1E711", +"i1 c #67652D", +"j1 c #666432", +"k1 c #9A952C", +"l1 c #01183C", +"m1 c #61603B", +"n1 c #9C9732", +"o1 c #47493B", +"p1 c #B5AF2E", +"q1 c #E9E019", +"r1 c #EBE119", +"s1 c #807C3A", +"t1 c #3A3F48", +"u1 c #E5DC20", +"v1 c #DAD228", +"w1 c #24304C", +"x1 c #0C2651", +"y1 c #0A2451", +"z1 c #1B2E54", +"A1 c #0D2A56", +"B1 c #0F2A58", +"C1 c #102C5A", +"D1 c #0F2D5B", +"E1 c #143263", +"F1 c #204078", +"G1 c #36361B", +"H1 c #F3E90D", +"I1 c #F6EC0C", +"J1 c #78741A", +"K1 c #47451B", +"L1 c #49471A", +"M1 c #49471E", +"N1 c #494821", +"O1 c #49471C", +"P1 c #49471F", +"Q1 c #9B9518", +"R1 c #D0C813", +"S1 c #161B21", +"T1 c #C5BD18", +"U1 c #747020", +"V1 c #575520", +"W1 c #0E1729", +"X1 c #D5CD17", +"Y1 c #8F8A22", +"Z1 c #454530", +"`1 c #B0A925", +" 2 c #5E5C31", +".2 c #9F9928", +"+2 c #696739", +"@2 c #979232", +"#2 c #3E413D", +"$2 c #BEB72E", +"%2 c #E0D71F", +"&2 c #EEE417", +"*2 c #666540", +"=2 c #072048", +"-2 c #ABA639", +";2 c #96923F", +">2 c #0B234F", +",2 c #0E2955", +"'2 c #0E2B58", +")2 c #1C3A70", +"!2 c #1D3C71", +"~2 c #21437B", +"{2 c #204583", +"]2 c #5E5A17", +"^2 c #D6CE13", +"/2 c #0E1520", +"(2 c #96911C", +"_2 c #A9A31A", +":2 c #2E2F27", +"<2 c #454425", +"[2 c #0D192F", +"}2 c #D3CB18", +"|2 c #918C24", +"12 c #938E28", +"22 c #E2D918", +"32 c #363832", +"42 c #454531", +"52 c #ABA52A", +"62 c #7A7738", +"72 c #8C8834", +"82 c #061E44", +"92 c #959136", +"02 c #D3CA25", +"a2 c #D1C928", +"b2 c #172545", +"c2 c #062149", +"d2 c #515348", +"e2 c #EDE419", +"f2 c #E5DC21", +"g2 c #383F4C", +"h2 c #1C3057", +"i2 c #13305F", +"j2 c #153265", +"k2 c #143165", +"l2 c #1F437B", +"m2 c #21447F", +"n2 c #11397C", +"o2 c #10377B", +"p2 c #041E4E", +"q2 c #01112D", +"r2 c #000918", +"s2 c #6D691B", +"t2 c #D8CF12", +"u2 c #5D5A1F", +"v2 c #EDE40F", +"w2 c #D3CA15", +"x2 c #252820", +"y2 c #021024", +"z2 c #0D1728", +"A2 c #D3CB19", +"B2 c #212730", +"C2 c #DED519", +"D2 c #8A852E", +"E2 c #2A2E34", +"F2 c #EFE612", +"G2 c #BEB627", +"H2 c #938E2F", +"I2 c #757236", +"J2 c #1D2842", +"K2 c #959038", +"L2 c #F3E913", +"M2 c #F5EB10", +"N2 c #656441", +"O2 c #112449", +"P2 c #BEB734", +"Q2 c #EDE41A", +"R2 c #868241", +"S2 c #A9A43B", +"T2 c #09234F", +"U2 c #1D3157", +"V2 c #1F4583", +"W2 c #10377A", +"X2 c #11387E", +"Y2 c #062C71", +"Z2 c #6E6A1C", +"`2 c #D4CC11", +" 3 c #D3CB13", +".3 c #D3CB12", +"+3 c #D3CB14", +"@3 c #B7B018", +"#3 c #0D141E", +"$3 c #252824", +"%3 c #D6CD13", +"&3 c #EBE210", +"*3 c #595620", +"=3 c #2D2F28", +"-3 c #454420", +";3 c #0D1525", +">3 c #918C21", +",3 c #7E792A", +"'3 c #F5EB0E", +")3 c #B0AA2A", +"!3 c #1C2333", +"~3 c #DFD61A", +"{3 c #D5CC1F", +"]3 c #0E1C36", +"^3 c #01173C", +"/3 c #041A3F", +"(3 c #B1AB2D", +"_3 c #454639", +":3 c #051B41", +"<3 c #061D44", +"[3 c #ADA730", +"}3 c #A39D36", +"|3 c #081F49", +"13 c #0A234C", +"23 c #6C6B44", +"33 c #F3E914", +"43 c #AAA437", +"53 c #102248", +"63 c #C2BB33", +"73 c #ECE31B", +"83 c #4E514A", +"93 c #1C2E55", +"03 c #14305E", +"a3 c #153161", +"b3 c #143161", +"c3 c #183466", +"d3 c #193769", +"e3 c #203F75", +"f3 c #204076", +"g3 c #20427C", +"h3 c #1C4285", +"i3 c #113A7C", +"j3 c #052F73", +"k3 c #02060C", +"l3 c #615D1E", +"m3 c #434119", +"n3 c #AEA718", +"o3 c #918C1B", +"p3 c #2D2F29", +"q3 c #454426", +"r3 c #D3CB17", +"s3 c #6A672E", +"t3 c #2D3030", +"u3 c #666431", +"v3 c #C7BF23", +"w3 c #EDE314", +"x3 c #303434", +"y3 c #0E1E3E", +"z3 c #D2CA24", +"A3 c #E4DB1A", +"B3 c #22293C", +"C3 c #494B40", +"D3 c #F3E912", +"E3 c #BFB82F", +"F3 c #09224B", +"G3 c #182849", +"H3 c #CFC72C", +"I3 c #383E4C", +"J3 c #585A4A", +"K3 c #F0E617", +"L3 c #BAB336", +"M3 c #0B2651", +"N3 c #0C2755", +"O3 c #112C5B", +"P3 c #153262", +"Q3 c #123161", +"R3 c #183568", +"S3 c #183668", +"T3 c #1A386A", +"U3 c #1B396C", +"V3 c #1F437E", +"W3 c #10387A", +"X3 c #10397D", +"Y3 c #0C3279", +"Z3 c #000715", +"`3 c #39381F", +" 4 c #75701A", +".4 c #7A761B", +"+4 c #C1B916", +"@4 c #0E151F", +"#4 c #2D2F24", +"$4 c #444428", +"%4 c #0D172B", +"&4 c #D3CB1A", +"*4 c #918C25", +"=4 c #AAA426", +"-4 c #F2E910", +";4 c #E7DD16", +">4 c #D2CA20", +",4 c #9E992C", +"'4 c #837F2F", +")4 c #454739", +"!4 c #F0E614", +"~4 c #C5BD2A", +"{4 c #C9C22A", +"]4 c #07214A", +"^4 c #84813F", +"/4 c #95913F", +"(4 c #08204B", +"_4 c #08224C", +":4 c #0A234D", +"<4 c #B2AC37", +"[4 c #F1E816", +"}4 c #646449", +"|4 c #0E2957", +"14 c #0E2B57", +"24 c #123260", +"34 c #1C3A6E", +"44 c #1B3B6E", +"54 c #1B3A6E", +"64 c #1F3D74", +"74 c #204178", +"84 c #1E407E", +"94 c #0F377A", +"04 c #032660", +"a4 c #21231B", +"b4 c #E4DA10", +"c4 c #A59E15", +"d4 c #41401E", +"e4 c #E2D911", +"f4 c #3E3D1D", +"g4 c #0E1626", +"h4 c #918C22", +"i4 c #6A672C", +"j4 c #01132D", +"k4 c #5E5C2C", +"l4 c #EFE611", +"m4 c #B3AD23", +"n4 c #848029", +"o4 c #54532F", +"p4 c #C9C124", +"q4 c #0E1D38", +"r4 c #04183B", +"s4 c #A09B31", +"t4 c #8F8A36", +"u4 c #1C2642", +"v4 c #E1D81F", +"w4 c #C8C02C", +"x4 c #081F48", +"y4 c #082049", +"z4 c #273147", +"A4 c #DCD425", +"B4 c #D9D028", +"C4 c #232D49", +"D4 c #09224D", +"E4 c #05214A", +"F4 c #414549", +"G4 c #C9C131", +"H4 c #13284F", +"I4 c #09224E", +"J4 c #0A234F", +"K4 c #0B2550", +"L4 c #0C2752", +"M4 c #112D5B", +"N4 c #12315F", +"O4 c #143160", +"P4 c #153463", +"Q4 c #163264", +"R4 c #173365", +"S4 c #163365", +"T4 c #1A376B", +"U4 c #1B3B6F", +"V4 c #1D3B70", +"W4 c #204177", +"X4 c #22447F", +"Y4 c #C5BD12", +"Z4 c #D8D011", +"`4 c #16191B", +" 5 c #0E141F", +".5 c #C3BB15", +"+5 c #0D1626", +"@5 c #161E2E", +"#5 c #CDC51C", +"$5 c #E3DA17", +"%5 c #393B2F", +"&5 c #C6BE20", +"*5 c #E8DF15", +"=5 c #474834", +"-5 c #0E1B35", +";5 c #CFC722", +">5 c #6E6B34", +",5 c #393C3A", +"'5 c #E5DC19", +")5 c #E8DF18", +"!5 c #34383E", +"~5 c #061C43", +"{5 c #313743", +"]5 c #BBB42E", +"^5 c #071F47", +"/5 c #9B973C", +"(5 c #F5EC10", +"_5 c #7E7B42", +":5 c #08224E", +"<5 c #A09B3E", +"[5 c #7A7845", +"}5 c #0F2A57", +"|5 c #102D59", +"15 c #0F2C59", +"25 c #143061", +"35 c #183567", +"45 c #1A386B", +"55 c #1E3C73", +"65 c #204176", +"75 c #22427A", +"85 c #183D80", +"95 c #062F73", +"05 c #010913", +"a5 c #8B8616", +"b5 c #88821A", +"c5 c #010B1E", +"d5 c #938D1C", +"e5 c #ADA61A", +"f5 c #2D2F23", +"g5 c #444421", +"h5 c #0D1729", +"i5 c #031633", +"j5 c #8F8A29", +"k5 c #898529", +"l5 c #525231", +"m5 c #EDE313", +"n5 c #0F1C38", +"o5 c #7E7B2D", +"p5 c #DAD11C", +"q5 c #343634", +"r5 c #04193C", +"s5 c #0E1D3B", +"t5 c #B9B22A", +"u5 c #ABA52F", +"v5 c #65643C", +"w5 c #4D4E3D", +"x5 c #051C41", +"y5 c #8C8839", +"z5 c #9C9738", +"A5 c #071E46", +"B5 c #061D45", +"C5 c #3C4146", +"D5 c #E7DE1D", +"E5 c #CBC32C", +"F5 c #182749", +"G5 c #07224B", +"H5 c #2B354B", +"I5 c #E0D724", +"J5 c #D6CE2C", +"K5 c #202F50", +"L5 c #0A2450", +"M5 c #092550", +"N5 c #DBD32B", +"O5 c #0F2C58", +"P5 c #112D5A", +"Q5 c #163262", +"R5 c #163263", +"S5 c #143362", +"T5 c #143363", +"U5 c #153466", +"V5 c #1D3B6F", +"W5 c #203F76", +"X5 c #214177", +"Y5 c #214178", +"Z5 c #1F407D", +"`5 c #10387B", +" 6 c #2A2A1B", +".6 c #E2D910", +"+6 c #E9DF0F", +"@6 c #676416", +"#6 c #34331D", +"$6 c #A69F16", +"%6 c #36361E", +"&6 c #5D591E", +"*6 c #D5CC15", +"=6 c #26271E", +"-6 c #F2E90D", +";6 c #444426", +">6 c #918C23", +",6 c #40412E", +"'6 c #E6DC15", +")6 c #CAC21C", +"!6 c #A09B2A", +"~6 c #77742F", +"{6 c #0E1B32", +"]6 c #C9C122", +"^6 c #CAC221", +"/6 c #373937", +"(6 c #0E1D3A", +"_6 c #A9A330", +":6 c #E3DA1C", +"<6 c #393D3C", +"[6 c #A09A31", +"}6 c #EAE019", +"|6 c #A39E30", +"16 c #545540", +"26 c #59593E", +"36 c #B0AA33", +"46 c #F2E814", +"56 c #656544", +"66 c #09214C", +"76 c #8A8742", +"86 c #8F8B42", +"96 c #132F60", +"06 c #1B396E", +"a6 c #021B46", +"b6 c #041C4B", +"c6 c #010D1D", +"d6 c #8C8617", +"e6 c #F5EC0C", +"f6 c #EDE30E", +"g6 c #A09915", +"h6 c #4B4920", +"i6 c #21231D", +"j6 c #1C1E1E", +"k6 c #3E3D1F", +"l6 c #69651D", +"m6 c #B0A918", +"n6 c #E8DF0F", +"o6 c #45431F", +"p6 c #161A1C", +"q6 c #D1C914", +"r6 c #5A581C", +"s6 c #454428", +"t6 c #0D1628", +"u6 c #918C20", +"v6 c #212526", +"w6 c #B8B121", +"x6 c #EEE411", +"y6 c #58562E", +"z6 c #262B32", +"A6 c #D9D01A", +"B6 c #DBD21A", +"C6 c #292D30", +"D6 c #4F4F33", +"E6 c #DFD61B", +"F6 c #878332", +"G6 c #414237", +"H6 c #16213A", +"I6 c #0F1C39", +"J6 c #333737", +"K6 c #6E6C37", +"L6 c #CDC525", +"M6 c #7B7835", +"N6 c #011739", +"O6 c #9F9A32", +"P6 c #AFA92F", +"Q6 c #67653A", +"R6 c #3C3F3E", +"S6 c #172441", +"T6 c #262E40", +"U6 c #4B4D3E", +"V6 c #989336", +"W6 c #C8C12B", +"X6 c #0F2042", +"Y6 c #051D43", +"Z6 c #565744", +"`6 c #EFE617", +" 7 c #BBB433", +".7 c #0A224D", +"+7 c #1E2B4C", +"@7 c #D4CC2B", +"#7 c #E1D824", +"$7 c #2E374A", +"%7 c #55584B", +"&7 c #5B5D4C", +"*7 c #5B5D4B", +"=7 c #5C5E4F", +"-7 c #5C5E50", +";7 c #BEB83A", +">7 c #DED62A", +",7 c #5F6150", +"'7 c #5C5F51", +")7 c #5A5E52", +"!7 c #253555", +"~7 c #102D5B", +"{7 c #22417A", +"]7 c #11397B", +"^7 c #0F367A", +"/7 c #0F387C", +"(7 c #062C73", +"_7 c #0E131C", +":7 c #B7AF16", +"<7 c #EEE50E", +"[7 c #DED512", +"}7 c #D9D111", +"|7 c #DDD411", +"17 c #EBE10F", +"27 c #D8D014", +"37 c #D8D013", +"47 c #BBB41A", +"57 c #2E2E22", +"67 c #444425", +"77 c #0D1727", +"87 c #E6DD12", +"97 c #716E29", +"07 c #A6A025", +"a7 c #03132D", +"b7 c #726F2D", +"c7 c #A49E2A", +"d7 c #716F33", +"e7 c #EBE116", +"f7 c #DCD31C", +"g7 c #DAD21D", +"h7 c #E5DC1A", +"i7 c #989233", +"j7 c #DCD421", +"k7 c #DAD121", +"l7 c #E0D720", +"m7 c #EFE515", +"n7 c #E8DF1B", +"o7 c #585842", +"p7 c #112348", +"q7 c #C2BB30", +"r7 c #ECE21A", +"s7 c #4C4E47", +"t7 c #757446", +"u7 c #F5EB12", +"v7 c #A29D3C", +"w7 c #24314E", +"x7 c #E8DF20", +"y7 c #696B50", +"z7 c #102C58", +"A7 c #122D5B", +"B7 c #102B59", +"C7 c #163565", +"D7 c #1C3A6F", +"E7 c #021E4B", +"F7 c #21221A", +"G7 c #B6AF17", +"H7 c #403F1D", +"I7 c #26271F", +"J7 c #D7CF14", +"K7 c #2D2E1F", +"L7 c #454429", +"M7 c #262A2F", +"N7 c #D8CF1C", +"O7 c #DCD31B", +"P7 c #2A2E2D", +"Q7 c #0E1B33", +"R7 c #BAB322", +"S7 c #EEE413", +"T7 c #575630", +"U7 c #676534", +"V7 c #8B8733", +"W7 c #0E1D3C", +"X7 c #7B7837", +"Y7 c #E5DC1C", +"Z7 c #6B6A3E", +"`7 c #706F42", +" 8 c #A7A23A", +".8 c #09224C", +"+8 c #0A224E", +"@8 c #14274D", +"#8 c #C6BF32", +"$8 c #44484B", +"%8 c #23304D", +"&8 c #E7DE21", +"*8 c #F6EC10", +"=8 c #696B52", +"-8 c #102C59", +";8 c #142F5F", +">8 c #153160", +",8 c #163564", +"'8 c #163362", +")8 c #163464", +"!8 c #1B3A6D", +"~8 c #1F4077", +"{8 c #11377B", +"]8 c #837F1A", +"^8 c #D4CC13", +"/8 c #E0D712", +"(8 c #B5AE16", +"_8 c #676417", +":8 c #0D1624", +"<8 c #D4CB15", +"[8 c #22252B", +"}8 c #E7DD14", +"|8 c #9F9921", +"18 c #78742C", +"28 c #43432E", +"38 c #E7DE16", +"48 c #C9C121", +"58 c #041839", +"68 c #343734", +"78 c #A59F2C", +"88 c #E1D81B", +"98 c #EAE117", +"08 c #535237", +"a8 c #2E323D", +"b8 c #898536", +"c8 c #C5BE28", +"d8 c #E3DA1E", +"e8 c #ADA731", +"f8 c #41433F", +"g8 c #172646", +"h8 c #D3CB2A", +"i8 c #E3DA20", +"j8 c #353C49", +"k8 c #5E5F49", +"l8 c #112E5A", +"m8 c #143361", +"n8 c #173363", +"o8 c #183464", +"p8 c #163465", +"q8 c #1B386C", +"r8 c #204077", +"s8 c #1C1F1D", +"t8 c #54521C", +"u8 c #918B18", +"v8 c #A9A317", +"w8 c #AFA815", +"x8 c #A6A017", +"y8 c #8D881B", +"z8 c #57541C", +"A8 c #36361D", +"B8 c #3C3B20", +"C8 c #3C3B1F", +"D8 c #3C3B1D", +"E8 c #3C3B1E", +"F8 c #3C3B21", +"G8 c #3C3B1C", +"H8 c #3C3B23", +"I8 c #313222", +"J8 c #393925", +"K8 c #3C3B22", +"L8 c #393A25", +"M8 c #0D1523", +"N8 c #303227", +"O8 c #3C3C2A", +"P8 c #3C3C27", +"Q8 c #36382A", +"R8 c #3C3C28", +"S8 c #3C3D2E", +"T8 c #161D2B", +"U8 c #2D302D", +"V8 c #3C3D2C", +"W8 c #393B32", +"X8 c #303331", +"Y8 c #3C3D32", +"Z8 c #3C3D34", +"`8 c #363932", +" 9 c #262B35", +".9 c #656230", +"+9 c #97922E", +"@9 c #ABA42B", +"#9 c #9E992F", +"$9 c #767336", +"%9 c #31343A", +"&9 c #2D333B", +"*9 c #64633B", +"=9 c #949033", +"-9 c #AAA432", +";9 c #AFA930", +">9 c #A8A232", +",9 c #928E36", +"'9 c #61603E", +")9 c #2B3241", +"!9 c #031C41", +"~9 c #082046", +"{9 c #061E45", +"]9 c #373D48", +"^9 c #3C4145", +"/9 c #323948", +"(9 c #0A224C", +"_9 c #07224C", +":9 c #09244E", +"<9 c #383F4E", +"[9 c #3D434C", +"}9 c #3D444E", +"|9 c #32394B", +"19 c #384150", +"29 c #3D444D", +"39 c #3E454F", +"49 c #3E4552", +"59 c #3D4550", +"69 c #3D4450", +"79 c #3D4551", +"89 c #3E4755", +"99 c #3E4654", +"09 c #3E4754", +"a9 c #102B58", +"b9 c #122F5C", +"c9 c #132E5D", +"d9 c #153362", +"e9 c #153163", +"f9 c #153363", +"g9 c #153364", +"h9 c #193668", +"i9 c #1A3769", +"j9 c #1B396B", +"k9 c #1D3D72", +"l9 c #21417B", +"m9 c #11387A", +"n9 c #0F387B", +"o9 c #062F77", +"p9 c #01060B", +"q9 c #05193B", +"r9 c #04183A", +"s9 c #0D254F", +"t9 c #08234B", +"u9 c #0B244E", +"v9 c #09234D", +"w9 c #0A264F", +"x9 c #09254F", +"y9 c #0E2855", +"z9 c #0E2A56", +"A9 c #112C59", +"B9 c #143364", +"C9 c #183566", +"D9 c #1C3B6E", +"E9 c #032053", +"F9 c #03204E", +"G9 c #030B1A", +"H9 c #04193B", +"I9 c #081F4B", +"J9 c #0F2853", +"K9 c #0D2854", +"L9 c #173463", +"M9 c #193567", +"N9 c #1E3C71", +"O9 c #203E75", +"P9 c #0E3579", +"Q9 c #03245B", +"R9 c #042767", +"S9 c #052560", +"T9 c #04245E", +"U9 c #062B6B", +"V9 c #062B6C", +"W9 c #062B6E", +"X9 c #05183B", +"Y9 c #01173B", +"Z9 c #051C42", +"`9 c #071F46", +" 0 c #08204A", +".0 c #08234D", +"+0 c #0B254F", +"@0 c #09254E", +"#0 c #08234C", +"$0 c #0C2551", +"%0 c #0E2954", +"&0 c #0D2853", +"*0 c #102B57", +"=0 c #112C5A", +"-0 c #102D5A", +";0 c #153162", +">0 c #1B386A", +",0 c #21427C", +"'0 c #234581", +")0 c #324C81", +"!0 c #445F94", +"~0 c #37568D", +"{0 c #486395", +"]0 c #526C9B", +"^0 c #546D9E", +"/0 c #526C9E", +"(0 c #536EA0", +"_0 c #556FA4", +":0 c #5770A4", +"<0 c #5972A6", +"[0 c #566FA4", +"}0 c #5871A3", +"|0 c #5A72A1", +"10 c #5C74A3", +"20 c #5E75A5", +"30 c #5A72A0", +"40 c #506A9A", +"50 c #516A9C", +"60 c #4F6898", +"70 c #476395", +"80 c #425E93", +"90 c #425F95", +"00 c #436096", +"a0 c #3D5C97", +"b0 c #365590", +"c0 c #345491", +"d0 c #385894", +"e0 c #355694", +"f0 c #2E4E8C", +"g0 c #2B4C8A", +"h0 c #2D4D89", +"i0 c #2C4D8C", +"j0 c #294B8C", +"k0 c #244889", +"l0 c #264A8B", +"m0 c #22478B", +"n0 c #20468B", +"o0 c #1B4185", +"p0 c #12377A", +"q0 c #0E3376", +"r0 c #0A3173", +"s0 c #0A3175", +"t0 c #073278", +"u0 c #063078", +"v0 c #041F50", +"w0 c #021F53", +"x0 c #020C1B", +"y0 c #03193B", +"z0 c #051B42", +"A0 c #051B40", +"B0 c #082149", +"C0 c #08244C", +"D0 c #0B234D", +"E0 c #0C2450", +"F0 c #0A254E", +"G0 c #0B234E", +"H0 c #0E2652", +"I0 c #122E5B", +"J0 c #173362", +"K0 c #173465", +"L0 c #173566", +"M0 c #21427A", +"N0 c #21447C", +"O0 c #21457F", +"P0 c #0B327A", +"Q0 c #294D90", +"R0 c #4368A8", +"S0 c #BACBE8", +"T0 c #D4E2F5", +"U0 c #CCDCF2", +"V0 c #D1E1F5", +"W0 c #D3E2F5", +"X0 c #D3E1F5", +"Y0 c #D0E1F4", +"Z0 c #CFDFF3", +"`0 c #CEDFF4", +" a c #D1E1F4", +".a c #D3E1F4", +"+a c #D3E2F4", +"@a c #D2E1F5", +"#a c #CFE0F3", +"$a c #CEDFF3", +"%a c #CFE0F4", +"&a c #D0DFF3", +"*a c #CCDEF3", +"=a c #CDDEF3", +"-a c #CDDFF3", +";a c #CADCF4", +">a c #C8DAF0", +",a c #CBDBF0", +"'a c #CCDDF2", +")a c #CCDCF0", +"!a c #C9DAEE", +"~a c #C8D9ED", +"{a c #C7D9EE", +"]a c #C5D7F0", +"^a c #C1D4EE", +"/a c #BED1EC", +"(a c #C0D2EC", +"_a c #C2D2EC", +":a c #BFD1EA", +"b c #071F45", +",b c #072149", +"'b c #09204C", +")b c #0A244D", +"!b c #08244D", +"~b c #0D2551", +"{b c #163364", +"]b c #133B82", +"^b c #36538D", +"/b c #D2E1F4", +"(b c #C2D6F4", +"_b c #B6D0F1", +":b c #A8C5F0", +"c c #A2C2F0", +",c c #A5C3F0", +"'c c #AAC8F0", +")c c #E2ECF7", +"!c c #B6CAEA", +"~c c #2C5296", +"{c c #020710", +"]c c #020F21", +"^c c #01173D", +"/c c #0B254D", +"(c c #09244D", +"_c c #0A254F", +":c c #0B2650", +"d c #B3CDF3", +",d c #B5CDF3", +"'d c #B3CCF4", +")d c #AEC9F2", +"!d c #ACC8F2", +"~d c #ACC9F2", +"{d c #B0CBF3", +"]d c #BBD2F3", +"^d c #B2CCF0", +"/d c #8EB4EF", +"(d c #8FB4EE", +"_d c #9CBDEF", +":d c #9DBEEF", +"e c #ADCAF2", +",e c #B1CCF3", +"'e c #8FB3EB", +")e c #89B1EE", +"!e c #83ABEA", +"~e c #87AFEC", +"{e c #8EB3EE", +"]e c #81AAE8", +"^e c #81A9E7", +"/e c #D5E4F4", +"(e c #DEE9F6", +"_e c #6286C1", +":e c #194086", +"f c #6F97D7", +",f c #6A92D3", +"'f c #6891D1", +")f c #749AD7", +"!f c #A6C2EB", +"~f c #BED4F1", +"{f c #B3CDF0", +"]f c #B3CCF0", +"^f c #B3CDF1", +"/f c #B3CDEF", +"(f c #B4CEF0", +"_f c #B0CCF1", +":f c #B0CBF1", +"g c #8FB4ED", +",g c #98BBEF", +"'g c #88AFEB", +")g c #779FDF", +"!g c #729BDB", +"~g c #7CA0D9", +"{g c #B5CEF1", +"]g c #B7D0F0", +"^g c #B6CEEF", +"/g c #B5CEF0", +"(g c #AFCBF0", +"_g c #ADCAF0", +":g c #B8CFF2", +"h c #0F1520", +",h c #A29C18", +"'h c #EEE50F", +")h c #9F9918", +"!h c #6F6C2F", +"~h c #A9A326", +"{h c #A9A328", +"]h c #A9A329", +"^h c #A9A327", +"/h c #A9A32C", +"(h c #A8A229", +"_h c #A29C29", +":h c #958F2C", +"i c #C6BF33", +",i c #898644", +"'i c #0D2752", +")i c #0F2652", +"!i c #112C57", +"~i c #132E59", +"{i c #132E5B", +"]i c #112E5C", +"^i c #1C3F7D", +"/i c #153D7D", +"(i c #133A7C", +"_i c #0E3578", +":i c #16397A", +"j c #8AABE2", +",j c #84A7DF", +"'j c #7EA1DD", +")j c #6E95D5", +"!j c #85A9E4", +"~j c #6C93D3", +"{j c #6990D0", +"]j c #6990D1", +"^j c #678FCF", +"/j c #668DCD", +"(j c #678ECF", +"_j c #688FD0", +":j c #6D94D4", +"k c #122D58", +",k c #112E5B", +"'k c #183463", +")k c #183364", +"!k c #1E3C6F", +"~k c #1F3D71", +"{k c #1C3C70", +"]k c #1F3D73", +"^k c #214278", +"/k c #22457E", +"(k c #163D7C", +"_k c #5B76AB", +":k c #E3EDF5", +"l c #456DB0", +",l c #537CBD", +"'l c #5881C1", +")l c #6991D2", +"!l c #7AA3E1", +"~l c #87AEEB", +"{l c #B1CBF2", +"]l c #9CB4DD", +"^l c #173F84", +"/l c #041840", +"(l c #0E131A", +"_l c #C6BE13", +":l c #EAE00E", +"m c #7F7B1C", +",m c #807C1E", +"'m c #B9B118", +")m c #D7CF13", +"!m c #817C1B", +"~m c #807C1F", +"{m c #807C1D", +"]m c #63601E", +"^m c #B5AE15", +"/m c #F1E80F", +"(m c #E1D814", +"_m c #C0B81E", +":m c #7C7820", +"n c #BBD1F1", +",n c #ACC7F0", +"'n c #87ABE4", +")n c #7097D8", +"!n c #6188CA", +"~n c #3D64A8", +"{n c #436BAE", +"]n c #436AAD", +"^n c #3F66A9", +"/n c #4E75B8", +"(n c #658ECD", +"_n c #6A93D3", +":n c #C0D3EE", +"o c #6C95D5", +",o c #A1C1F1", +"'o c #CBDBF3", +")o c #315696", +"!o c #424118", +"~o c #E9E00E", +"{o c #8C8718", +"]o c #908B1A", +"^o c #C2BA15", +"/o c #171D26", +"(o c #BCB51B", +"_o c #EDE410", +":o c #292B24", +"p c #1C1F1E", +",p c #63601F", +"'p c #BCB516", +")p c #BDB514", +"!p c #D6CD12", +"~p c #E5DC11", +"{p c #BDB51A", +"]p c #BDB516", +"^p c #BDB518", +"/p c #938D1A", +"(p c #A09A1C", +"_p c #C3BC17", +":p c #8B861D", +"

Q c #2A5092", +",Q c #00070E", +"'Q c #051938", +")Q c #071A3A", +"!Q c #061B3A", +"~Q c #092042", +"{Q c #0B2245", +"]Q c #071D43", +"^Q c #0C2347", +"/Q c #0A2246", +"(Q c #1C345F", +"_Q c #1F3762", +":Q c #1E3562", +"R c #11284E", +",R c #162E55", +"'R c #152D55", +")R c #1A335D", +"!R c #203763", +"~R c #1E3762", +"{R c #1F3D6D", +"]R c #173875", +"^R c #0C3374", +"/R c #0C3275", +"(R c #163773", +"_R c #BBCDE9", +":R c #8BB0E6", +"S c #0E264A", +",S c #152D53", +"'S c #0F254E", +")S c #183058", +"!S c #1E3864", +"~S c #213965", +"{S c #223A68", +"]S c #203966", +"^S c #233E6C", +"/S c #233D6C", +"(S c #223C6D", +"_S c #163A78", +":S c #103676", +"T c #143977", +",T c #0C3273", +"'T c #0E3377", +")T c #123573", +"!T c #A8BCDA", +"~T c #ABC9F1", +"{T c #86B2EE", +"]T c #5880C0", +"^T c #668FCF", +"/T c #88B0EE", +"(T c #D6E5F5", +"_T c #4567A6", +":T c #071E3F", +"U c #88B4F1", +",U c #547ABD", +"'U c #547CBF", +")U c #587EC2", +"!U c #5F87C7", +"~U c #90B6F0", +"{U c #C2D8F4", +"]U c #86A0CE", +"^U c #041539", +"/U c #03132C", +"(U c #061937", +"_U c #0B1F42", +":U c #162D54", +"V c #213A63", +",V c #203862", +"'V c #1D3660", +")V c #243C66", +"!V c #243B67", +"~V c #253D69", +"{V c #25406D", +"]V c #233E6E", +"^V c #203E6E", +"/V c #213F71", +"(V c #0E3474", +"_V c #0C3274", +":V c #8FA4C9", +"W c #04245F", +",W c #042253", +"'W c #010A15", +")W c #021530", +"!W c #071D3E", +"~W c #0E2447", +"{W c #0D2248", +"]W c #0F274B", +"^W c #12284D", +"/W c #11284D", +"(W c #13294F", +"_W c #152B50", +":W c #162E54", +"X c #0E244A", +",X c #12294E", +"'X c #142A51", +")X c #1A3157", +"!X c #1D335D", +"~X c #1F3B67", +"{X c #243E6D", +"]X c #1B3F78", +"^X c #123977", +"/X c #0D3275", +"(X c #6680B0", +"_X c #90B5EB", +":X c #97BDF2", +"Y c #072E71", +",Y c #10316F", +"'Y c #A5BDE1", +")Y c #7EA5E2", +"!Y c #93BAF0", +"~Y c #90B6F1", +"{Y c #92B9F3", +"]Y c #92B8F3", +"^Y c #93B8F2", +"/Y c #97BCF2", +"(Y c #8FB5F4", +"_Y c #7FA4DF", +":Y c #6D93D4", +"Z c #243D68", +",Z c #253D6B", +"'Z c #243E6A", +")Z c #233D6D", +"!Z c #0F3473", +"~Z c #113676", +"{Z c #093072", +"]Z c #5572A4", +"^Z c #8BB3EE", +"/Z c #82A7E2", +"(Z c #5B82C3", +"_Z c #5D84C7", +":Z c #537BBE", +"` c #233F6D", +",` c #153774", +"'` c #123775", +")` c #143878", +"!` c #113775", +"~` c #0D3373", +"{` c #0C3172", +"]` c #0A3072", +"^` c #0A3073", +"/` c #0D306F", +"(` c #A1B8DB", +"_` c #90B4EB", +":` c #89AEE8", +"<` c #8DB3EA", +"[` c #9FBFF2", +"}` c #9DBEF2", +"|` c #9BBDF2", +"1` c #95B9F3", +"2` c #7DA6E6", +"3` c #88B1F0", +"4` c #A5BCE2", +"5` c #030F21", +"6` c #061A37", +"7` c #0B2040", +"8` c #0E2344", +"9` c #142B50", +"0` c #172E54", +"a` c #152B53", +"b` c #1B3259", +"c` c #1F365D", +"d` c #1C345B", +"e` c #1B335A", +"f` c #253C66", +"g` c #233D6B", +"h` c #25406F", +"i` c #163875", +"j` c #133775", +"k` c #123674", +"l` c #0D3372", +"m` c #0F3676", +"n` c #0C3174", +"o` c #092F73", +"p` c #133472", +"q` c #ADC4E5", +"r` c #8BB2EA", +"s` c #8CB1EB", +"t` c #8BB2EB", +"u` c #9CBDF2", +"v` c #7AA1E0", +"w` c #6087C8", +"x` c #5D84C6", +"y` c #5980C3", +"z` c #AFC6EA", +"A` c #1A3F82", +"B` c #072D72", +"C` c #04142D", +"D` c #0C1F40", +"E` c #0D2142", +"F` c #102649", +"G` c #0D2346", +"H` c #142A4E", +"I` c #1D345A", +"J` c #1E355C", +"K` c #1E365D", +"L` c #213861", +"M` c #1F355F", +"N` c #223862", +"O` c #273F6C", +"P` c #243D6A", +"Q` c #26416E", +"R` c #274270", +"S` c #143875", +"T` c #25427B", +"U` c #8BB1EA", +"V` c #86ADE9", +"W` c #93B8EF", +"X` c #A3C2F2", +"Y` c #85AAE5", +"Z` c #648ACB", +"`` c #6289CA", +" . c #5C83C5", +". . c #658DCD", +"+ . c #7DA6E4", +"@ . c #04132E", +"# . c #061B3B", +"$ . c #11284A", +"% . c #172D53", +"& . c #182E55", +"* . c #1C3259", +"= . c #172D55", +"- . c #1E345C", +"; . c #1C325B", +"> . c #233A63", +", . c #253C68", +"' . c #243D67", +") . c #28406C", +"! . c #273F6A", +"~ . c #254070", +"{ . c #163975", +"] . c #103373", +"^ . c #0E3372", +"/ . c #082F70", +"( . c #3E5A8D", +"_ . c #97BAF0", +": . c #8CB3EC", +"< . c #A1C1F0", +"[ . c #96BBF0", +"} . c #93B8F1", +"| . c #6E94D5", +"1 . c #5C82C4", +"2 . c #7CA5E3", +"3 . c #A4C4F3", +"4 . c #3B5C99", +"5 . c #051633", +"6 . c #091C3F", +"7 . c #0E2345", +"8 . c #11274A", +"9 . c #0F2548", +"0 . c #12294B", +"a . c #172D52", +"b . c #183054", +"c . c #172E53", +"d . c #1A3057", +"e . c #213760", +"f . c #253C67", +"g . c #263D68", +"h . c #273E69", +"i . c #223B65", +"j . c #29406E", +"k . c #163876", +"l . c #143874", +"m . c #123574", +"n . c #093071", +"o . c #5772A2", +"p . c #9FC0F3", +"q . c #97BCF3", +"r . c #91B9F0", +"s . c #7AA1DD", +"t . c #749BDB", +"u . c #8CB3F0", +"v . c #4E70AA", +"w . c #01102C", +"x . c #061734", +"y . c #051734", +"z . c #041632", +"A . c #041432", +"B . c #0F2648", +"C . c #162B50", +"D . c #12274E", +"E . c #182E54", +"F . c #1C345A", +"G . c #223962", +"H . c #243B69", +"I . c #1D3B6A", +"J . c #173A75", +"K . c #153775", +"L . c #153874", +"M . c #143773", +"N . c #0F3675", +"O . c #728BB6", +"P . c #92B8EE", +"Q . c #95B9EF", +"R . c #A3C4F1", +"S . c #9EBFF2", +"T . c #9BBEF2", +"U . c #97BAF2", +"V . c #97BBF3", +"W . c #7CA3E0", +"X . c #779FDE", +"Y . c #6281B9", +"Z . c #0A1D3D", +"` . c #102447", +" .. c #102547", +"... c #102648", +"+.. c #11264B", +"@.. c #162B4F", +"#.. c #182E53", +"$.. c #192F58", +"%.. c #1A325A", +"&.. c #1D355C", +"*.. c #253D66", +"=.. c #253C6B", +"-.. c #26406C", +";.. c #253F6D", +">.. c #183C76", +",.. c #133774", +"'.. c #143676", +").. c #0E3272", +"!.. c #0C3271", +"~.. c #8FA6CD", +"{.. c #8CB3ED", +"].. c #A2C2F2", +"^.. c #9EBEF2", +"/.. c #7CA3E1", +"(.. c #7299DA", +"_.. c #7298D9", +":.. c #749CDB", +"<.. c #769FDE", +"[.. c #8AB2F0", +"}.. c #9FC1F2", +"|.. c #7C97C8", +"1.. c #0A2F73", +"2.. c #091E3F", +"3.. c #122648", +"4.. c #0E2243", +"5.. c #0C2446", +"6.. c #162D52", +"7.. c #172C54", +"8.. c #193055", +"9.. c #1F365E", +"0.. c #1E355D", +"a.. c #2A416D", +"b.. c #25406E", +"c.. c #133674", +"d.. c #0F3373", +"e.. c #092F70", +"f.. c #092F71", +"g.. c #0E306B", +"h.. c #9EB5DA", +"i.. c #91B6EF", +"j.. c #8EB5EF", +"k.. c #A3C2F1", +"l.. c #9CBEF3", +"m.. c #9CBDF3", +"n.. c #96BBF3", +"o.. c #92B9F0", +"p.. c #91B8F0", +"q.. c #94B9F0", +"r.. c #94B8F1", +"s.. c #7FA6E2", +"t.. c #79A0E0", +"u.. c #87AFEE", +"v.. c #8DAAD8", +"w.. c #092E72", +"x.. c #051E4D", +"y.. c #001028", +"z.. c #01122A", +"A.. c #011531", +"B.. c #061835", +"C.. c #0D2042", +"D.. c #0E2446", +"E.. c #1D335A", +"F.. c #213860", +"G.. c #20365F", +"H.. c #29416D", +"I.. c #25406C", +"J.. c #173975", +"K.. c #143775", +"L.. c #113474", +"M.. c #123676", +"N.. c #163572", +"O.. c #ADC5E8", +"P.. c #9CBEEF", +"Q.. c #90B6EF", +"R.. c #94B8EF", +"S.. c #A6C5F1", +"T.. c #80A6E3", +"U.. c #7EA7E4", +"V.. c #A9C8F3", +"W.. c #9EB7E1", +"X.. c #0C3071", +"Y.. c #011229", +"Z.. c #041633", +"`.. c #0E2548", +" +. c #0F2649", +".+. c #12294C", +"++. c #1A3055", +"@+. c #152C52", +"#+. c #162E53", +"$+. c #152C51", +"%+. c #1B3158", +"&+. c #283F69", +"*+. c #233B65", +"=+. c #26406D", +"-+. c #193C74", +";+. c #294479", +">+. c #9BBDF0", +",+. c #9EBEF3", +"'+. c #9BBCF2", +")+. c #96BAF3", +"!+. c #6F95D6", +"~+. c #7299D9", +"{+. c #698FD0", +"]+. c #79A0E1", +"^+. c #8FB5F0", +"/+. c #A8C0E7", +"(+. c #143678", +"_+. c #041631", +":+. c #0E2144", +"<+. c #112749", +"[+. c #0B2345", +"}+. c #11284B", +"|+. c #152B4F", +"1+. c #182D52", +"2+. c #152D52", +"3+. c #172F54", +"4+. c #162E52", +"5+. c #20375F", +"6+. c #1F355D", +"7+. c #223861", +"8+. c #273F68", +"9+. c #273E68", +"0+. c #1B3A69", +"a+. c #173974", +"b+. c #153773", +"c+. c #133773", +"d+. c #153875", +"e+. c #103474", +"f+. c #0C3170", +"g+. c #103473", +"h+. c #0D3271", +"i+. c #082E70", +"j+. c #0A3171", +"k+. c #435F91", +"l+. c #9CBDF0", +"m+. c #8FB4EF", +"n+. c #A9C6F1", +"o+. c #A4C3F2", +"p+. c #A0C0F3", +"q+. c #9DBFF2", +"r+. c #769DDB", +"s+. c #759CDD", +"t+. c #668CCD", +"u+. c #7096D7", +"v+. c #B4CBEF", +"w+. c #214283", +"x+. c #061833", +"y+. c #071938", +"z+. c #112548", +"A+. c #0D2547", +"B+. c #12274C", +"C+. c #152A4F", +"D+. c #183055", +"E+. c #182F54", +"F+. c #1A3158", +"G+. c #263D66", +"H+. c #28406A", +"I+. c #29406A", +"J+. c #2B426E", +"K+. c #223D69", +"L+. c #153872", +"M+. c #163874", +"N+. c #143673", +"O+. c #113573", +"P+. c #0B3170", +"Q+. c #0B3272", +"R+. c #647FAE", +"S+. c #9DBDF0", +"T+. c #A9C6F2", +"U+. c #A5C4F3", +"V+. c #9EBFF3", +"W+. c #98BAF1", +"X+. c #96BAEF", +"Y+. c #95BAEF", +"Z+. c #5E84C5", +"`+. c #7FA8E7", +" @. c #355591", +".@. c #051632", +"+@. c #0B1F3F", +"@@. c #0F2245", +"#@. c #122649", +"$@. c #102346", +"%@. c #0D2244", +"&@. c #0D2447", +"*@. c #192E53", +"=@. c #162C50", +"-@. c #20365D", +";@. c #1E345D", +">@. c #1F375E", +",@. c #233963", +"'@. c #243A64", +")@. c #183B74", +"!@. c #153873", +"~@. c #0E3375", +"{@. c #879CC0", +"]@. c #9EBFEF", +"^@. c #9FBFEF", +"/@. c #96B9EF", +"(@. c #9CBDF1", +"_@. c #84ACEB", +":@. c #C0D5F3", +"<@. c #4E6EA9", +"[@. c #04235C", +"}@. c #021C45", +"|@. c #0A1E3D", +"1@. c #0A1E3E", +"2@. c #0A1F3F", +"3@. c #0C2040", +"4@. c #0C2243", +"5@. c #10254A", +"6@. c #1B3156", +"7@. c #1E365E", +"8@. c #253B65", +"9@. c #223B64", +"0@. c #273F69", +"a@. c #233C68", +"b@. c #263F6C", +"c@. c #1A3971", +"d@. c #163873", +"e@. c #163974", +"f@. c #143774", +"g@. c #113674", +"h@. c #113574", +"i@. c #0B3171", +"j@. c #0D3270", +"k@. c #99AFD3", +"l@. c #9FBFF0", +"m@. c #9BBCF0", +"n@. c #A5C3F2", +"o@. c #98BCF0", +"p@. c #9DBEF0", +"q@. c #688ECF", +"r@. c #82A9E9", +"s@. c #85ACE8", +"t@. c #9EC1F1", +"u@. c #6A88BD", +"v@. c #051733", +"w@. c #091E3D", +"x@. c #0C1F41", +"y@. c #0E2244", +"z@. c #102749", +"A@. c #162D4F", +"B@. c #13284C", +"C@. c #1D3359", +"D@. c #1C3359", +"E@. c #192F57", +"F@. c #21395F", +"G@. c #274069", +"H@. c #29426B", +"I@. c #263E69", +"J@. c #183873", +"K@. c #143572", +"L@. c #163774", +"M@. c #0A2F72", +"N@. c #103271", +"O@. c #9FBEF1", +"P@. c #A6C5F3", +"Q@. c #A6C4F2", +"R@. c #9DBDF2", +"S@. c #9BBDF3", +"T@. c #99BBF2", +"U@. c #9EBEF0", +"V@. c #79A1DF", +"W@. c #80A7E2", +"X@. c #B0CAF1", +"Y@. c #849FCC", +"Z@. c #031539", +"`@. c #010B18", +" #. c #04132D", +".#. c #152C4E", +"+#. c #1F355C", +"@#. c #1F365C", +"##. c #213960", +"$#. c #28416B", +"%#. c #283F6C", +"&#. c #2A426E", +"*#. c #264170", +"=#. c #113473", +"-#. c #113373", +";#. c #0F3573", +">#. c #103372", +",#. c #0B3073", +"'#. c #1E3B75", +")#. c #B0CAEE", +"!#. c #A6C5F0", +"~#. c #A0C0F0", +"{#. c #99BAF0", +"]#. c #9BBCF1", +"^#. c #7DA4E2", +"/#. c #97B0DB", +"(#. c #071834", +"_#. c #061837", +":#. c #061735", +"<#. c #081D3C", +"[#. c #102548", +"}#. c #182E51", +"|#. c #1D335B", +"1#. c #223860", +"2#. c #193465", +"3#. c #163972", +"4#. c #123672", +"5#. c #0A3070", +"6#. c #072E6F", +"7#. c #2D487C", +"8#. c #9BBEF0", +"9#. c #A0BFEF", +"0#. c #99BBF0", +"a#. c #AAC7F2", +"b#. c #9DBDF3", +"c#. c #9BBDF1", +"d#. c #6F95D5", +"e#. c #668DCF", +"f#. c #779DDD", +"g#. c #86ADEA", +"h#. c #81AAE9", +"i#. c #000810", +"j#. c #061736", +"k#. c #071A38", +"l#. c #0F2447", +"m#. c #0E2647", +"n#. c #172D50", +"o#. c #1E345A", +"p#. c #1E345B", +"q#. c #21385F", +"r#. c #1F355E", +"s#. c #123572", +"t#. c #0F3474", +"u#. c #082E6F", +"v#. c #072E70", +"w#. c #4A6699", +"x#. c #9DBDEF", +"y#. c #94B8EE", +"z#. c #ABC7F2", +"A#. c #9EBEF1", +"B#. c #A4C2F1", +"C#. c #5C83C6", +"D#. c #88AFEE", +"E#. c #AFC6EB", +"F#. c #1A3D82", +"G#. c #031229", +"H#. c #041733", +"I#. c #071937", +"J#. c #0F2243", +"K#. c #112447", +"L#. c #10274A", +"M#. c #13294C", +"N#. c #132A4C", +"O#. c #1F375F", +"P#. c #1E345E", +"Q#. c #243B64", +"R#. c #293F69", +"S#. c #283F6B", +"T#. c #263F6B", +"U#. c #26416D", +"V#. c #133672", +"W#. c #0E3472", +"X#. c #0C3372", +"Y#. c #0E3271", +"Z#. c #0A306F", +"`#. c #0B3071", +" $. c #7088B1", +".$. c #A9C6F0", +"+$. c #A2C1EF", +"@$. c #A0C0EF", +"#$. c #A9C6F3", +"$$. c #9EBFF0", +"%$. c #7AA2E2", +"&$. c #85ADEC", +"*$. c #2B4C8C", +"=$. c #01060A", +"-$. c #031733", +";$. c #051936", +">$. c #081C3B", +",$. c #102444", +"'$. c #0D2043", +")$. c #12274A", +"!$. c #13294B", +"~$. c #1B3057", +"{$. c #1B3157", +"]$. c #21375E", +"^$. c #263C65", +"/$. c #253B64", +"($. c #1D3C6B", +"_$. c #133572", +":$. c #133673", +"<$. c #153776", +"[$. c #0F3372", +"}$. c #082F6F", +"|$. c #0E3371", +"1$. c #869BBF", +"2$. c #A3C4F0", +"3$. c #ABC7F0", +"4$. c #A1C0EF", +"5$. c #688FD1", +"6$. c #83ABEB", +"7$. c #3C5E9B", +"8$. c #04152F", +"9$. c #091D3C", +"0$. c #0B1E3F", +"a$. c #122548", +"b$. c #132A4D", +"c$. c #132A4B", +"d$. c #162B51", +"e$. c #1A2F55", +"f$. c #1E355B", +"g$. c #1E365C", +"h$. c #223960", +"i$. c #21375F", +"j$. c #253B66", +"k$. c #283E68", +"l$. c #163775", +"m$. c #113471", +"n$. c #103472", +"o$. c #0F3472", +"p$. c #0F3272", +"q$. c #97AFD6", +"r$. c #98BAF0", +"s$. c #86ABE7", +"t$. c #9FBDED", +"u$. c #A8C6F3", +"v$. c #9EBEED", +"w$. c #5980C1", +"x$. c #95BBF0", +"y$. c #ABC9F2", +"z$. c #5173AE", +"A$. c #05152F", +"B$. c #071836", +"C$. c #0F2246", +"D$. c #182E52", +"E$. c #1D3358", +"F$. c #233960", +"G$. c #22385F", +"H$. c #233962", +"I$. c #233961", +"J$. c #263C66", +"K$. c #253E68", +"L$. c #223C6B", +"M$. c #143672", +"N$. c #153470", +"O$. c #AAC2E5", +"P$. c #A4C4F0", +"Q$. c #A1C1EF", +"R$. c #85ACE7", +"S$. c #87ACE3", +"T$. c #ABC7F1", +"U$. c #9FC1F0", +"V$. c #BED4F3", +"W$. c #081A3B", +"X$. c #0E2145", +"Y$. c #0F2547", +"Z$. c #0D2546", +"`$. c #142A4D", +" %. c #1C3257", +".%. c #1C3258", +"+%. c #21385E", +"@%. c #2A436C", +"#%. c #1D3A69", +"$%. c #173871", +"%%. c #173973", +"&%. c #113572", +"*%. c #103573", +"=%. c #0F3171", +"-%. c #092F6E", +";%. c #082D70", +">%. c #072D6E", +",%. c #1E3B72", +"'%. c #B1CAEF", +")%. c #AAC7EF", +"!%. c #A3C2F0", +"~%. c #A5C4F0", +"{%. c #92B6EF", +"]%. c #82A9E4", +"^%. c #769BD8", +"/%. c #A8C7F3", +"(%. c #A9C6F4", +"_%. c #5E85C8", +":%. c #8BB3F0", +"<%. c #819DCD", +"[%. c #071839", +"}%. c #0C2142", +"|%. c #11264A", +"1%. c #172C51", +"2%. c #192E54", +"3%. c #1F375D", +"4%. c #253C63", +"5%. c #273E67", +"6%. c #223964", +"7%. c #263F69", +"8%. c #263E67", +"9%. c #223E6A", +"0%. c #143872", +"a%. c #143772", +"b%. c #123472", +"c%. c #123673", +"d%. c #103272", +"e%. c #0C3171", +"f%. c #062C6C", +"g%. c #082E72", +"h%. c #445F95", +"i%. c #99BCEF", +"j%. c #8BB2EC", +"k%. c #80A6E2", +"l%. c #7196D4", +"m%. c #9FBCEA", +"n%. c #A1C2F0", +"o%. c #A2C1F0", +"p%. c #A0BEED", +"q%. c #587EC1", +"r%. c #5F85C7", +"s%. c #91ADDA", +"t%. c #061834", +"u%. c #071837", +"v%. c #152B4D", +"w%. c #152C4F", +"x%. c #152A4E", +"y%. c #20375E", +"z%. c #153771", +"A%. c #113470", +"B%. c #123474", +"C%. c #0D3272", +"D%. c #062D70", +"E%. c #5D76A5", +"F%. c #8FB7F0", +"G%. c #9ABCEF", +"H%. c #89B0EA", +"I%. c #7CA3DF", +"J%. c #7499D7", +"K%. c #8BACE2", +"L%. c #ADC8F2", +"M%. c #A9C7F3", +"N%. c #A7C7F2", +"O%. c #A3BDE3", +"P%. c #051530", +"Q%. c #061A38", +"R%. c #0C1F3F", +"S%. c #12284A", +"T%. c #152A4D", +"U%. c #1A2F54", +"V%. c #223961", +"W%. c #243A62", +"X%. c #253C65", +"Y%. c #143674", +"Z%. c #0D3171", +"`%. c #0B3070", +" &. c #798EB1", +".&. c #95B9EE", +"+&. c #A3C1EF", +"@&. c #82AAE5", +"#&. c #7BA2DE", +"$&. c #7B9FDD", +"%&. c #779BD6", +"&&. c #AFCBF3", +"*&. c #9DBCEC", +"=&. c #A2C3F3", +"-&. c #ADC6EE", +";&. c #1C3E80", +">&. c #062E70", +",&. c #051731", +"'&. c #04142E", +")&. c #0C1E3D", +"!&. c #0D2040", +"~&. c #091E3E", +"{&. c #0B203F", +"]&. c #0F2345", +"^&. c #112648", +"/&. c #172D51", +"(&. c #20365E", +"_&. c #243B63", +":&. c #092F6F", +"<&. c #072D6F", +"[&. c #0D316F", +"}&. c #89A0C7", +"|&. c #97B9EF", +"1&. c #95B7ED", +"2&. c #6E94D2", +"3&. c #A8C5F2", +"4&. c #9BBAEB", +"5&. c #5C84C6", +"6&. c #6087CA", +"7&. c #30518F", +"8&. c #081B38", +"9&. c #0F2344", +"0&. c #0C2140", +"a&. c #102445", +"b&. c #132749", +"c&. c #142A4C", +"d&. c #1A3056", +"e&. c #22375E", +"f&. c #263C64", +"g&. c #27406B", +"h&. c #1E396B", +"i&. c #163772", +"j&. c #143771", +"k&. c #123471", +"l&. c #113472", +"m&. c #103371", +"n&. c #0D3170", +"o&. c #082E6E", +"p&. c #0D2E67", +"q&. c #9EB6DA", +"r&. c #96B9EE", +"s&. c #7CA3DE", +"t&. c #769DD9", +"u&. c #7399D7", +"v&. c #6C92D0", +"w&. c #9FBCE8", +"x&. c #A6C4F0", +"y&. c #A6C6F1", +"z&. c #94B5E8", +"A&. c #5D82C4", +"B&. c #5C82C5", +"C&. c #6086C8", +"D&. c #7A9FDA", +"E&. c #7299D8", +"F&. c #4868A3", +"G&. c #0B1E3E", +"H&. c #091D3D", +"I&. c #162C4F", +"J&. c #14294D", +"K&. c #172E50", +"L&. c #1B3055", +"M&. c #243A63", +"N&. c #29416A", +"O&. c #243C65", +"P&. c #2C436F", +"Q&. c #0E3270", +"R&. c #0E3171", +"S&. c #0B306F", +"T&. c #13326B", +"U&. c #ABC3E4", +"V&. c #8DB4ED", +"W&. c #99BBEF", +"X&. c #94B7EE", +"Y&. c #7AA1DC", +"Z&. c #749CD8", +"`&. c #7096D4", +" *. c #6D93D1", +".*. c #8CAEE3", +"+*. c #8FB0E7", +"@*. c #97B4E6", +"#*. c #ACC6ED", +"$*. c #7B9DD8", +"%*. c #5D85C7", +"&*. c #90B0E5", +"**. c #8AB2EE", +"=*. c #6583B9", +"-*. c #081937", +";*. c #091A38", +">*. c #071936", +",*. c #081B3A", +"'*. c #0A1F3E", +")*. c #122546", +"!*. c #112649", +"~*. c #13284A", +"{*. c #192F51", +"]*. c #1A2F56", +"^*. c #243B62", +"/*. c #293F6A", +"(*. c #284370", +"_*. c #243E6E", +":*. c #1A396B", +"<*. c #15366F", +"[*. c #133671", +"}*. c #153772", +"|*. c #133571", +"1*. c #153673", +"2*. c #133574", +"3*. c #09306F", +"4*. c #082D71", +"5*. c #254075", +"6*. c #8AB0EC", +"7*. c #90B4EA", +"8*. c #A0BFF0", +"9*. c #7299D6", +"0*. c #6B91D0", +"a*. c #799CD7", +"b*. c #B8CFF1", +"c*. c #A8C7F1", +"d*. c #A7C7F1", +"e*. c #AAC7F0", +"f*. c #AFC9F1", +"g*. c #92B3E9", +"h*. c #A7C1EA", +"i*. c #BED3F2", +"j*. c #97B5E4", +"k*. c #4A71B5", +"l*. c #6A90D2", +"m*. c #030D1D", +"n*. c #061631", +"o*. c #081936", +"p*. c #081A38", +"q*. c #0D2041", +"r*. c #122749", +"s*. c #14284B", +"t*. c #172D4F", +"u*. c #192D51", +"v*. c #162C4E", +"w*. c #1C3156", +"x*. c #1F355B", +"y*. c #273D68", +"z*. c #273E6B", +"A*. c #133670", +"B*. c #12356F", +"C*. c #0A2F6E", +"D*. c #425D8F", +"E*. c #88AEE8", +"F*. c #6F96D2", +"G*. c #698FCD", +"H*. c #6B91CF", +"I*. c #688ECB", +"J*. c #B1C9EF", +"K*. c #8FB1E7", +"L*. c #6288CA", +"M*. c #6A8FCF", +"N*. c #84A5DE", +"O*. c #5B81C4", +"P*. c #4C73B5", +"Q*. c #4369AC", +"R*. c #87A3D2", +"S*. c #052052", +"T*. c #02070C", +"U*. c #02132B", +"V*. c #142B4E", +"W*. c #182F51", +"X*. c #20365C", +"Y*. c #20385E", +"Z*. c #233A62", +"`*. c #27406A", +" =. c #243D66", +".=. c #0F3271", +"+=. c #082E6D", +"@=. c #062D6E", +"#=. c #0A2F71", +"$=. c #617AA6", +"%=. c #89B1EA", +"&=. c #81A7E3", +"*=. c #83A9E5", +"==. c #8BB0E9", +"-=. c #8DB3EC", +";=. c #779ED9", +">=. c #6A90CE", +",=. c #698ECD", +"'=. c #A3BEE8", +")=. c #B8CFF3", +"!=. c #A9C7F0", +"~=. c #ACC9F0", +"{=. c #B2CBF1", +"]=. c #8BAEE5", +"^=. c #5E84C7", +"/=. c #9AB5DE", +"(=. c #081B39", +"_=. c #0E2141", +":=. c #102446", +"<=. c #13274A", +"[=. c #152B4E", +"}=. c #172E4F", +"|=. c #182D51", +"1=. c #20375D", +"2=. c #253B63", +"3=. c #223C68", +"4=. c #1B396A", +"5=. c #183B73", +"6=. c #173872", +"7=. c #133471", +"8=. c #103470", +"9=. c #123571", +"0=. c #103471", +"a=. c #0E3170", +"b=. c #7B90B7", +"c=. c #A2C1EE", +"d=. c #84ABE5", +"e=. c #7AA0DC", +"f=. c #92B6EE", +"g=. c #85ACE6", +"h=. c #769ED9", +"i=. c #7299D5", +"j=. c #688ECC", +"k=. c #87A8DC", +"l=. c #B2CAF2", +"m=. c #81A5DF", +"n=. c #5E86C8", +"o=. c #AAC2E7", +"p=. c #051732", +"q=. c #0C1F3E", +"r=. c #14284A", +"s=. c #152C4D", +"t=. c #182D50", +"u=. c #1B3054", +"v=. c #22385E", +"w=. c #21375D", +"x=. c #2A416B", +"y=. c #233C66", +"z=. c #1A3A6C", +"A=. c #143671", +"B=. c #123370", +"C=. c #113571", +"D=. c #0F3370", +"E=. c #0C316F", +"F=. c #0C306F", +"G=. c #0A2C69", +"H=. c #6F96D1", +"I=. c #789ED9", +"J=. c #6A8FCD", +"K=. c #8AB1EB", +"L=. c #7EA4DF", +"M=. c #7299D4", +"N=. c #6C93CF", +"O=. c #6D93CF", +"P=. c #6B91CE", +"Q=. c #7499D5", +"R=. c #B6CDF3", +"S=. c #B4CCF2", +"T=. c #AFCCF2", +"U=. c #7CA1DD", +"V=. c #6288C9", +"W=. c #4269AE", +"X=. c #7DA6E3", +"Y=. c #BDD5F3", +"Z=. c #AFC8ED", +"`=. c #214284", +" -. c #000817", +".-. c #061531", +"+-. c #071A39", +"@-. c #071B3A", +"#-. c #142B4D", +"$-. c #193052", +"%-. c #192F53", +"&-. c #1E3459", +"*-. c #253A61", +"=-. c #21365E", +"--. c #283F68", +";-. c #153870", +">-. c #143670", +",-. c #153973", +"'-. c #123470", +")-. c #113370", +"!-. c #0C3270", +"~-. c #0D3371", +"{-. c #0A306E", +"]-. c #0B2C6A", +"^-. c #99B3D9", +"/-. c #88AEE7", +"(-. c #729AD4", +"_-. c #658BC8", +":-. c #7398D4", +"<-. c #6287C5", +"[-. c #84ABE6", +"}-. c #749BD6", +"|-. c #7197D4", +"1-. c #6D94D1", +"2-. c #6F95D2", +"3-. c #6E93D0", +"4-. c #6A91CD", +"5-. c #6E93D1", +"6-. c #A5C0EA", +"7-. c #7FA4DE", +"8-. c #6C90D0", +"9-. c #6086C9", +"0-. c #BBD4F3", +"a-. c #365794", +"b-. c #071A37", +"c-. c #091A3B", +"d-. c #0D1F3F", +"e-. c #0B1F3E", +"f-. c #112547", +"g-. c #112849", +"h-. c #1A3153", +"i-. c #172C4E", +"j-. c #1D3258", +"k-. c #1E3359", +"l-. c #243A61", +"m-. c #15376F", +"n-. c #14356E", +"o-. c #143770", +"p-. c #0F326F", +"q-. c #0B316F", +"r-. c #0D3070", +"s-. c #0B2E6E", +"t-. c #13316D", +"u-. c #7AA1DB", +"v-. c #5F84C2", +"w-. c #6A8ECC", +"x-. c #5D82C0", +"y-. c #6D94D2", +"z-. c #84A8E2", +"A-. c #9ABAEE", +"B-. c #739AD7", +"C-. c #92B2E2", +"D-. c #B7CEF2", +"E-. c #B5CDF1", +"F-. c #769CDA", +"G-. c #B5CFF4", +"H-. c #506FAA", +"I-. c #071835", +"J-. c #081939", +"K-. c #081A3A", +"L-. c #122647", +"M-. c #15294B", +"N-. c #13284B", +"O-. c #152A4C", +"P-. c #192E51", +"Q-. c #192E52", +"R-. c #23395F", +"S-. c #22395F", +"T-. c #13366E", +"U-. c #16356F", +"V-. c #153670", +"W-. c #103370", +"X-. c #072D6C", +"Y-. c #254074", +"Z-. c #97B9EC", +"`-. c #759BD7", +" ;. c #6289C6", +".;. c #5B81BF", +"+;. c #668BC9", +"@;. c #5B7FBE", +"#;. c #6C92CE", +"$;. c #749BD7", +"%;. c #6B93D0", +"&;. c #6A91CE", +"*;. c #678DCB", +"=;. c #6A90CD", +"-;. c #6D93D0", +";;. c #6F94D1", +">;. c #B7CEF1", +",;. c #B9CFF2", +"';. c #6A91D3", +");. c #5B83C5", +"!;. c #6482B8", +"~;. c #000913", +"{;. c #010C1A", +"];. c #071B39", +"^;. c #0F2242", +"/;. c #0E2342", +"(;. c #172C50", +"_;. c #182C50", +":;. c #1F345B", +"<;. c #213761", +"[;. c #233B64", +"};. c #233C67", +"|;. c #28406E", +"1;. c #153671", +"2;. c #113371", +"3;. c #062C6D", +"4;. c #062D6D", +"5;. c #385283", +"6;. c #93B6EB", +"7;. c #6E94D0", +"8;. c #6086C4", +"9;. c #5A80BE", +"0;. c #5F85C3", +"a;. c #587DBC", +"b;. c #678CCA", +"c;. c #638AC7", +"d;. c #7399D6", +"e;. c #658BC9", +"f;. c #658CCA", +"g;. c #A6C1EC", +"h;. c #B7CEF3", +"i;. c #B6CDF2", +"j;. c #4B71B5", +"k;. c #5078B9", +"l;. c #7692C3", +"m;. c #061732", +"n;. c #0D2140", +"o;. c #112546", +"p;. c #0F2749", +"q;. c #162C4D", +"r;. c #1A2E53", +"s;. c #1C3055", +"t;. c #203459", +"u;. c #1D3259", +"v;. c #1D3965", +"w;. c #213867", +"x;. c #13356F", +"y;. c #13346E", +"z;. c #12346F", +"A;. c #072D6D", +"B;. c #446197", +"C;. c #85A9E1", +"D;. c #6389C7", +"E;. c #5C83C0", +"F;. c #557BB9", +"G;. c #5D83C1", +"H;. c #5479B8", +"I;. c #6589C7", +"J;. c #6389C6", +"K;. c #779DD8", +"L;. c #6F95D3", +"M;. c #88A9DE", +"N;. c #BFD3F2", +"O;. c #ADCBF2", +"P;. c #B1CDF1", +"Q;. c #6990D2", +"R;. c #A9C8F1", +"S;. c #B1CDF3", +"T;. c #84A0CF", +"U;. c #091B39", +"V;. c #102443", +"W;. c #112545", +"X;. c #162A4B", +"Y;. c #172B4E", +"Z;. c #1B2E51", +"`;. c #1E335B", +" >. c #21375C", +".>. c #233A61", +"+>. c #253B62", +"@>. c #2A416A", +"#>. c #253B67", +"$>. c #263D6A", +"%>. c #16356E", +"&>. c #14376F", +"*>. c #15356F", +"=>. c #133570", +"->. c #10326F", +";>. c #0C2F6F", +">>. c #09306E", +",>. c #082A68", +"'>. c #5F7FB4", +")>. c #5379B7", +"!>. c #4F74B2", +"~>. c #5278B6", +"{>. c #4268A6", +"]>. c #799BD4", +"^>. c #7399D4", +"/>. c #A3BEE7", +"(>. c #668CC9", +"_>. c #668CCA", +":>. c #BAD0F1", +"<>. c #BAD0F2", +"[>. c #4E74B7", +"}>. c #688ECE", +"|>. c #7FA6E6", +"1>. c #ACCAF2", +"2>. c #93AFDB", +"3>. c #082A67", +"4>. c #061733", +"5>. c #132747", +"6>. c #102344", +"7>. c #162A4D", +"8>. c #172C4F", +"9>. c #1A3052", +"0>. c #182E50", +"a>. c #1B2F54", +"b>. c #223A60", +"c>. c #273D66", +"d>. c #13346D", +"e>. c #163770", +"f>. c #0F316F", +"g>. c #0F336F", +"h>. c #0E326E", +"i>. c #0C3070", +"j>. c #072E6D", +"k>. c #082A65", +"l>. c #6F90C7", +"m>. c #7096D1", +"n>. c #597FBD", +"o>. c #4B71AF", +"p>. c #496FAE", +"q>. c #4268A7", +"r>. c #3B619F", +"s>. c #4066A5", +"t>. c #698DC9", +"u>. c #C6D9F2", +"v>. c #A3BDE6", +"w>. c #658CC9", +"x>. c #A2BEE9", +"y>. c #AECCF2", +"z>. c #4068AA", +"A>. c #5379BC", +"B>. c #7CA4E4", +"C>. c #9DBAE4", +"D>. c #11306D", +"E>. c #051937", +"F>. c #091C3A", +"G>. c #0E2143", +"H>. c #132748", +"I>. c #1B2F52", +"J>. c #20355A", +"K>. c #1C3158", +"L>. c #1F355A", +"M>. c #273D64", +"N>. c #20355D", +"O>. c #294069", +"P>. c #253F6B", +"Q>. c #153570", +"R>. c #123473", +"S>. c #10336F", +"T>. c #0F326E", +"U>. c #082F6E", +"V>. c #072E6E", +"W>. c #092A64", +"X>. c #7296D0", +"Y>. c #6990CB", +"Z>. c #567CBB", +"`>. c #4D73B2", +" ,. c #476DAC", +".,. c #335999", +"+,. c #759CD6", +"@,. c #6B92CE", +"#,. c #678DCA", +"$,. c #759BD8", +"%,. c #85A9E0", +"&,. c #A2C1ED", +"*,. c #658CCC", +"=,. c #5A80C3", +"-,. c #3E66A9", +";,. c #6890D0", +">,. c #A5C6F2", +",,. c #A1BFEB", +"',. c #1D3B73", +"),. c #031127", +"!,. c #041630", +"~,. c #041732", +"{,. c #091B3B", +"],. c #0B1E3D", +"^,. c #0E2242", +"/,. c #0F2647", +"(,. c #12294A", +"_,. c #20365B", +":,. c #2B426C", +"<,. c #283F6A", +"[,. c #233964", +"},. c #1D386A", +"|,. c #193767", +"1,. c #173670", +"2,. c #173671", +"3,. c #163671", +"4,. c #123570", +"5,. c #0E326F", +"6,. c #0B2F6E", +"7,. c #0A2E6E", +"8,. c #072C6F", +"9,. c #102F68", +"0,. c #749AD5", +"a,. c #648BC7", +"b,. c #466CAA", +"c,. c #345999", +"d,. c #294E8F", +"e,. c #5C82C0", +"f,. c #6990CD", +"g,. c #7097D4", +"h,. c #AFC8EE", +"i,. c #BCD2F2", +"j,. c #92B3E7", +"k,. c #6088C8", +"l,. c #335087", +"m,. c #041833", +"n,. c #0D2242", +"o,. c #142B4C", +"p,. c #263C63", +"q,. c #284069", +"r,. c #223B66", +"s,. c #273F6D", +"t,. c #143570", +"u,. c #10336E", +"v,. c #11346E", +"w,. c #0D2F6F", +"x,. c #062C6B", +"y,. c #213D73", +"z,. c #779CD9", +"A,. c #5B81BE", +"B,. c #5076B4", +"C,. c #486EAD", +"D,. c #446AA9", +"E,. c #3A609F", +"F,. c #2D5493", +"G,. c #254B8A", +"H,. c #4B70AE", +"I,. c #648AC9", +"J,. c #799ED9", +"K,. c #8DADE0", +"L,. c #B9CFF1", +"M,. c #88ABE2", +"N,. c #678DCE", +"O,. c #456399", +"P,. c #051834", +"Q,. c #051636", +"R,. c #0A1D3C", +"S,. c #0D203F", +"T,. c #15294C", +"U,. c #182C4F", +"V,. c #233A60", +"W,. c #20385F", +"X,. c #283E67", +"Y,. c #11346F", +"Z,. c #0E316D", +"`,. c #0A2D6D", +" '. c #436298", +".'. c #4D73B1", +"+'. c #3F65A3", +"@'. c #3B61A0", +"#'. c #355B9A", +"$'. c #29508F", +"%'. c #264D8C", +"&'. c #4064A2", +"*'. c #6389C8", +"='. c #678ECC", +"-'. c #7398D6", +";'. c #789DD8", +">'. c #83A8E2", +",'. c #385FA5", +"''. c #5674A9", +")'. c #14294C", +"!'. c #162B4C", +"~'. c #1E3257", +"{'. c #1B3056", +"]'. c #172E59", +"^'. c #19386A", +"/'. c #15346E", +"('. c #13336D", +"_'. c #14366E", +":'. c #0F316E", +"<'. c #0E316F", +"['. c #0B2F6F", +"}'. c #092E6E", +"|'. c #062D6C", +"1'. c #072F6E", +"2'. c #052B6A", +"3'. c #052C6C", +"4'. c #062A68", +"5'. c #5272A9", +"6'. c #698FCB", +"7'. c #547AB9", +"8'. c #3D63A2", +"9'. c #385E9D", +"0'. c #2B5292", +"a'. c #244A8B", +"b'. c #335796", +"c'. c #658BCA", +"d'. c #648BC9", +"e'. c #648BC8", +"f'. c #688FCB", +"g'. c #7097D3", +"h'. c #82A7E3", +"i'. c #567CBF", +"j'. c #5A82C4", +"k'. c #466CAF", +"l'. c #4A70B2", +"m'. c #77A0DF", +"n'. c #6C88B9", +"o'. c #091A39", +"p'. c #0A1B3B", +"q'. c #0E2343", +"r'. c #192D4F", +"s'. c #14294B", +"t'. c #192D50", +"u'. c #172E51", +"v'. c #162A4E", +"w'. c #182C51", +"x'. c #1E3358", +"y'. c #1A2F57", +"z'. c #23385F", +"A'. c #2B416A", +"B'. c #14356D", +"C'. c #12346C", +"D'. c #0C306E", +"E'. c #0B2F6D", +"F'. c #052C6B", +"G'. c #062D6B", +"H'. c #072C6D", +"I'. c #5376AE", +"J'. c #5D84C0", +"K'. c #5177B5", +"L'. c #335998", +"M'. c #305695", +"N'. c #2E5495", +"O'. c #254B8B", +"P'. c #2E5493", +"Q'. c #557AB8", +"R'. c #668CCB", +"S'. c #6288C6", +"T'. c #7096D3", +"U'. c #94B2E0", +"V'. c #5780C2", +"W'. c #5B84C6", +"X'. c #4167AA", +"Y'. c #4168AA", +"Z'. c #7795CA", +"`'. c #000C1D", +" ). c #03142D", +".). c #081935", +"+). c #081A39", +"@). c #0A203F", +"#). c #0C2141", +"$). c #0D2241", +"%). c #102544", +"&). c #14294A", +"*). c #1A2F52", +"=). c #1D3055", +"-). c #1D3257", +";). c #1F3459", +">). c #253E67", +",). c #14346E", +"'). c #13346F", +")). c #10336D", +"!). c #0F326D", +"~). c #0E306D", +"{). c #072A66", +"]). c #5B80BA", +"^). c #557CB8", +"/). c #4369A7", +"(). c #395F9E", +"_). c #325897", +":). c #2C5292", +"<). c #2A5091", +"[). c #224889", +"}). c #264E8C", +"|). c #678DCC", +"1). c #759BD5", +"2). c #5981C4", +"3). c #91B5EE", +"4). c #81A1D6", +"5). c #062254", +"6). c #0B1D3D", +"7). c #0C203F", +"8). c #0F2343", +"9). c #162A4C", +"0). c #283E65", +"a). c #273E66", +"b). c #15366D", +"c). c #13336C", +"d). c #15346D", +"e). c #11336F", +"f). c #0F3270", +"g). c #082D6C", +"h). c #0E2E68", +"i). c #658AC6", +"j). c #5177B4", +"k). c #3F65A4", +"l). c #2F5594", +"m). c #284E8E", +"n). c #2F5494", +"o). c #284F8D", +"p). c #395E9C", +"q). c #7399D5", +"r). c #749AD6", +"s). c #6187C5", +"t). c #668DCB", +"u). c #A3BFE9", +"v). c #6289C9", +"w). c #5F85C6", +"x). c #91B5ED", +"y). c #A6C3F1", +"z). c #95B2E2", +"A). c #102C61", +"B). c #051833", +"C). c #081A36", +"D). c #071737", +"E). c #122849", +"F). c #172A4D", +"G). c #22365C", +"H). c #1D3461", +"I). c #1E3564", +"J). c #223867", +"K). c #17366E", +"L). c #13356D", +"M). c #12336E", +"N). c #133771", +"O). c #11356F", +"P). c #0A2F6D", +"Q). c #0A2E6D", +"R). c #082F6D", +"S). c #072F6D", +"T). c #062C6E", +"U). c #678DC9", +"V). c #4C71AF", +"W). c #3E64A3", +"X). c #2D5392", +"Y). c #2B5191", +"Z). c #295091", +"`). c #3A5D9B", +" !. c #4E72AF", +".!. c #234A8A", +"+!. c #274C8C", +"@!. c #5E83C2", +"#!. c #6188C6", +"$!. c #5E84C2", +"%!. c #5D85C2", +"&!. c #6187C6", +"*!. c #7297D4", +"=!. c #88ACE3", +"-!. c #638AC8", +";!. c #BFD4F2", +">!. c #AEC8F0", +",!. c #5D86C7", +"'!. c #5E87C8", +")!. c #89AEE9", +"!!. c #90B2E8", +"~!. c #1A3569", +"{!. c #071736", +"]!. c #081837", +"^!. c #0C1E3F", +"/!. c #0D2141", +"(!. c #1F3358", +"_!. c #18335F", +":!. c #14356F", +"~. c #082D6E", +",~. c #052863", +"'~. c #5171A8", +")~. c #5276B4", +"!~. c #4166A5", +"~~. c #3C60A0", +"{~. c #294F8E", +"]~. c #284F8E", +"^~. c #234A8B", +"/~. c #28508E", +"(~. c #2D5393", +"_~. c #294F90", +":~. c #294E8C", +"<~. c #567CBA", +"[~. c #7397D1", +"}~. c #6B91CB", +"|~. c #85ABE5", +"1~. c #7298D4", +"2~. c #5F85C4", +"3~. c #5E85C2", +"4~. c #98B6E5", +"5~. c #90B0E6", +"6~. c #7EA2DD", +"7~. c #6C92D2", +"8~. c #355DA1", +"9~. c #5075B6", +"0~. c #7294D0", +"a~. c #46649B", +"b~. c #031126", +"c~. c #071838", +"d~. c #0E2142", +"e~. c #15284B", +"f~. c #1A2E52", +"g~. c #192D52", +"h~. c #263D63", +"i~. c #12326D", +"j~. c #13356E", +"k~. c #13336E", +"l~. c #05265D", +"m~. c #5F82BD", +"n~. c #496FAD", +"o~. c #2C5291", +"p~. c #2A518F", +"q~. c #274E8D", +"r~. c #264D8E", +"s~. c #254B8C", +"t~. c #1E4585", +"u~. c #4A6FAD", +"v~. c #799CD5", +"w~. c #7499D6", +"x~. c #769DD8", +"y~. c #5D84C2", +"z~. c #7CA1DC", +"A~. c #B3CEF2", +"B~. c #8BAFE7", +"C~. c #AEC8F2", +"D~. c #8BACE3", +"E~. c #5D84C4", +"F~. c #365DA1", +"G~. c #335C9F", +"H~. c #5777B2", +"I~. c #061934", +"J~. c #081938", +"K~. c #112446", +"L~. c #1A2F53", +"M~. c #1C3159", +"N~. c #253C64", +"O~. c #173364", +"P~. c #14336D", +"Q~. c #12326C", +"R~. c #12336C", +"S~. c #10326E", +"T~. c #0D306E", +"U~. c #0C2E6E", +"V~. c #0A2A60", +"W~. c #6186C1", +"X~. c #4167A5", +"Y~. c #264C8D", +"Z~. c #254D8C", +"`~. c #204788", +" {. c #365B99", +".{. c #6C94D0", +"+{. c #5E85C3", +"@{. c #638BC8", +"#{. c #5C84C1", +"${. c #ACC7EE", +"%{. c #7CA2E0", +"&{. c #8EB1EA", +"*{. c #6D94D3", +"={. c #86ABE5", +"-{. c #7795C9", +";{. c #010F29", +">{. c #0A1D3B", +",{. c #15294A", +"'{. c #172B50", +"){. c #1D3158", +"!{. c #1A3464", +"~{. c #12356D", +"{{. c #15336E", +"]{. c #10326C", +"^{. c #11326F", +"/{. c #10316E", +"({. c #082D6D", +"_{. c #052A67", +":{. c #062E6C", +"<{. c #0E2E66", +"[{. c #5C83BE", +"}{. c #3D62A1", +"|{. c #345A99", +"1{. c #2D5492", +"2{. c #2C5392", +"3{. c #294F8F", +"4{. c #244B8A", +"5{. c #22498A", +"6{. c #284D8D", +"7{. c #4C72AF", +"8{. c #5980BD", +"9{. c #6187C4", +"0{. c #5A80BF", +"a{. c #92B3E3", +"b{. c #749AD8", +"c{. c #658BCC", +"d{. c #3A62A6", +"e{. c #81A6E2", +"f{. c #7A9AD1", +"g{. c #020915", +"h{. c #122748", +"i{. c #1B2F51", +"j{. c #192F52", +"k{. c #253B61", +"l{. c #14346C", +"m{. c #0D316D", +"n{. c #0C306C", +"o{. c #0C2F6E", +"p{. c #092D6B", +"q{. c #0B2E6D", +"r{. c #092D6D", +"s{. c #072C6C", +"t{. c #052B69", +"u{. c #062B6D", +"v{. c #395F9D", +"w{. c #4368A7", +"x{. c #315796", +"y{. c #2A508F", +"z{. c #284E8D", +"A{. c #2F5695", +"B{. c #2E5594", +"C{. c #3A5E9C", +"D{. c #587EBC", +"E{. c #7EA1D9", +"F{. c #6E94D3", +"G{. c #0E2A5E", +"H{. c #000F24", +"I{. c #051532", +"J{. c #071935", +"K{. c #0A1C3A", +"L{. c #172A4C", +"M{. c #182B4E", +"N{. c #1A2E50", +"O{. c #172F51", +"P{. c #1F3965", +"Q{. c #052D6C", +"R{. c #254681", +"S{. c #5277B4", +"T{. c #3D63A1", +"U{. c #274D8C", +"V{. c #264C8C", +"W{. c #2C5493", +"X{. c #214788", +"Y{. c #234887", +"Z{. c #4E74B2", +"`{. c #5981BE", +" ]. c #6A8FCB", +".]. c #B5CEEE", +"+]. c #6F95D4", +"@]. c #6087C7", +"#]. c #547BBC", +"$]. c #3B62A6", +"%]. c #1A3669", +"&]. c #031024", +"*]. c #04132C", +"=]. c #15284A", +"-]. c #132647", +";]. c #1C2F52", +">]. c #172B4F", +",]. c #1C3254", +"']. c #2B426D", +")]. c #12346D", +"!]. c #0F316D", +"~]. c #0C2F6B", +"{]. c #092E6C", +"]]. c #072C6B", +"^]. c #062A6A", +"/]. c #062B6A", +"(]. c #042C6B", +"_]. c #052A68", +":]. c #31538D", +"<]. c #3F64A2", +"[]. c #2E5492", +"}]. c #2C5391", +"|]. c #274F8D", +"1]. c #1F4586", +"2]. c #1F4687", +"3]. c #4468A6", +"4]. c #5279B7", +"5]. c #A5C1E8", +"6]. c #557CBD", +"7]. c #5178B9", +"8]. c #5B85C6", +"9]. c #2C487C", +"0]. c #0B1C3A", +"a]. c #1B3053", +"b]. c #192E55", +"c]. c #2A4069", +"d]. c #0F326C", +"e]. c #082D6B", +"f]. c #092E6B", +"g]. c #072B6C", +"h]. c #395D97", +"i]. c #446AA7", +"j]. c #3E63A1", +"k]. c #345998", +"l]. c #2E5494", +"m]. c #2B5291", +"n]. c #244C8A", +"o]. c #234989", +"p]. c #1D4485", +"q]. c #305492", +"r]. c #537AB7", +"s]. c #5076B5", +"t]. c #5279B8", +"u]. c #557CBA", +"v]. c #5C82C1", +"w]. c #82A4DA", +"x]. c #597FC2", +"y]. c #5A84C5", +"z]. c #4369AD", +"A]. c #486FB3", +"B]. c #547ABC", +"C]. c #405F97", +"D]. c #051635", +"E]. c #091A37", +"F]. c #102343", +"G]. c #192C4F", +"H]. c #1A3054", +"I]. c #193363", +"J]. c #153261", +"K]. c #14336C", +"L]. c #11326D", +"M]. c #0E316C", +"N]. c #0D306C", +"O]. c #072D6B", +"P]. c #072B67", +"Q]. c #3C619C", +"R]. c #4A70AD", +"S]. c #4A70AE", +"T]. c #4066A4", +"U]. c #2F5595", +"V]. c #264C8B", +"W]. c #1F4485", +"X]. c #4F76B4", +"Y]. c #547BB9", +"Z]. c #577DBC", +"`]. c #557BBA", +" ^. c #547CB9", +".^. c #597FBE", +"+^. c #678ECA", +"@^. c #ABC7EF", +"#^. c #5E84C6", +"$^. c #5D83C4", +"%^. c #648AC8", +"&^. c #94B5E9", +"*^. c #557FBF", +"=^. c #5F88C9", +"-^. c #7599D5", +";^. c #779EDE", +">^. c #5273AD", +",^. c #04122A", +"'^. c #081835", +")^. c #061633", +"!^. c #0A1B3A", +"~^. c #182D4F", +"{^. c #1E3560", +"]^. c #1B3765", +"^^. c #13346B", +"/^. c #11336B", +"(^. c #11356E", +"_^. c #0B2F6B", +":^. c #0C2F6C", +"<^. c #0A2C6C", +"[^. c #092C6A", +"}^. c #4066A2", +"|^. c #3D609F", +"1^. c #476CAA", +"2^. c #4C72AE", +"3^. c #496FAB", +"4^. c #244A8A", +"5^. c #224888", +"6^. c #2A5190", +"7^. c #355998", +"8^. c #5179B7", +"9^. c #547BB8", +"0^. c #5278B7", +"a^. c #557CB9", +"b^. c #9CBBE8", +"c^. c #AAC6EF", +"d^. c #638ACA", +"e^. c #8BABE1", +"f^. c #84A6DF", +"g^. c #557ABC", +"h^. c #95B2E4", +"i^. c #5F85C5", +"j^. c #82A6E0", +"k^. c #365CA1", +"l^. c #7699D3", +"m^. c #5E81BF", +"n^. c #172B4D", +"o^. c #1C3256", +"p^. c #1C3662", +"q^. c #173565", +"r^. c #183667", +"s^. c #14336B", +"t^. c #11326A", +"u^. c #0F316B", +"v^. c #11346D", +"w^. c #0E306E", +"x^. c #0A2E6B", +"y^. c #082B6B", +"z^. c #3F66A3", +"A^. c #3C619F", +"B^. c #375C9B", +"C^. c #214987", +"D^. c #1D4584", +"E^. c #204686", +"F^. c #486DAC", +"G^. c #567DBA", +"H^. c #5379B8", +"I^. c #537BB8", +"J^. c #5C82BF", +"K^. c #6085C3", +"L^. c #84A5DC", +"M^. c #A2BFEC", +"N^. c #6187C8", +"O^. c #6489C8", +"P^. c #0A1B37", +"Q^. c #041834", +"R^. c #1D3155", +"S^. c #11316C", +"T^. c #11326C", +"U^. c #0E316B", +"V^. c #082E6C", +"W^. c #092C6B", +"X^. c #082C6C", +"Y^. c #4166A4", +"Z^. c #3B5F9D", +"`^. c #325896", +" /. c #1F4685", +"./. c #224988", +"+/. c #4F75B3", +"@/. c #5178B6", +"#/. c #537AB8", +"$/. c #7498D2", +"%/. c #B3CEF1", +"&/. c #ACCAF0", +"*/. c #97B6E7", +"=/. c #5E84C4", +"-/. c #91B3E7", +";/. c #90B2E5", +">/. c #0C2555", +",/. c #051630", +"'/. c #061839", +")/. c #162D50", +"!/. c #1B3560", +"~/. c #12316A", +"{/. c #10336B", +"]/. c #11316B", +"^/. c #11336D", +"//. c #0F316C", +"(/. c #0B2E6B", +"_/. c #082C6A", +":/. c #294983", +"(. c #84ABE7", +",(. c #405D92", +"'(. c #041835", +")(. c #14274A", +"!(. c #163368", +"~(. c #13326A", +"{(. c #11346C", +"](. c #0F2F69", +"^(. c #10316B", +"/(. c #0D2F6D", +"((. c #032A68", +"_(. c #032868", +":(. c #062863", +"<(. c #486CA9", +"[(. c #3D62A0", +"}(. c #385E9C", +"|(. c #325796", +"1(. c #325595", +"2(. c #325695", +"3(. c #204685", +"4(. c #123779", +"5(. c #385D9C", +"6(. c #4E74B3", +"7(. c #5A7EBD", +"8(. c #A4C1EC", +"9(. c #A8C5EF", +"0(. c #A8C7F0", +"a(. c #A9C6EF", +"b(. c #567CBC", +"c(. c #6185C3", +"d(. c #31599D", +"e(. c #2E559A", +"f(. c #2B5297", +"g(. c #3F68AA", +"h(. c #4F75B8", +"i(. c #83ABE8", +"j(. c #5171AA", +"k(. c #172B4C", +"l(. c #132849", +"m(. c #162D51", +"n(. c #1B3155", +"o(. c #172C52", +"p(. c #1D3562", +"q(. c #1B3563", +"r(. c #1B3764", +"s(. c #10306A", +"t(. c #11336C", +"u(. c #0D2F6A", +"v(. c #0A2D6B", +"w(. c #082B6A", +"x(. c #042C6A", +"y(. c #0B2C66", +"z(. c #476DA9", +"A(. c #375D9B", +"B(. c #2D5290", +"C(. c #2E5291", +"D(. c #2A4F8E", +"E(. c #234786", +"F(. c #4A70AF", +"G(. c #ABC8EF", +"H(. c #A7C4F0", +"I(. c #A9C5F0", +"J(. c #5177B9", +"K(. c #8CA8D9", +"L(. c #4F74B5", +"M(. c #274F93", +"N(. c #2A5196", +"O(. c #295196", +"P(. c #6083BF", +"Q(. c #031128", +"R(. c #192D4E", +"S(. c #21355A", +"T(. c #173160", +"U(. c #103069", +"V(. c #10326A", +"W(. c #11326B", +"X(. c #0D306A", +"Y(. c #0C2F6A", +"Z(. c #0C316C", +"`(. c #0A2E6A", +" _. c #0B2F6C", +"._. c #486EAA", +"+_. c #3D61A0", +"@_. c #2D5291", +"#_. c #2E5392", +"$_. c #234988", +"%_. c #2C518F", +"&_. c #395E9D", +"*_. c #466CAB", +"=_. c #789AD3", +"-_. c #A6C3EF", +";_. c #6289C8", +">_. c #557CBB", +",_. c #5177B8", +"'_. c #6B8AC4", +")_. c #90AEDE", +"!_. c #4970B1", +"~_. c #476EB0", +"{_. c #30569A", +"]_. c #244B90", +"^_. c #274F94", +"/_. c #3D63A8", +"(_. c #3E67A9", +"__. c #7B9BD2", +":_. c #020C1A", +"<_. c #061936", +"[_. c #061737", +"}_. c #182C4D", +"|_. c #152749", +"1_. c #1C3053", +"2_. c #1D3154", +"3_. c #1B2E53", +"4_. c #193466", +"5_. c #123169", +"6_. c #0F316A", +"7_. c #0F326A", +"8_. c #10306B", +"9_. c #0C2E6B", +"0_. c #0B2D6A", +"a_. c #0B2E6A", +"b_. c #082F6C", +"c_. c #092F6C", +"d_. c #042B68", +"e_. c #446AA8", +"f_. c #385D9B", +"g_. c #6889C0", +"h_. c #2F5492", +"i_. c #244988", +"j_. c #214685", +"k_. c #254B89", +"l_. c #274C8B", +"m_. c #4167A6", +"n_. c #4B71B0", +"o_. c #4C72B1", +"p_. c #5E83BF", +"q_. c #ACC7EF", +"r_. c #A2C0EE", +"s_. c #5D85C4", +"t_. c #547BBB", +"u_. c #486FB1", +"v_. c #254D91", +"w_. c #284F94", +"x_. c #295195", +"y_. c #3C64A8", +"z_. c #6288C8", +"A_. c #5177BB", +"B_. c #799FDE", +"C_. c #99B4E1", +"D_. c #0B2350", +"E_. c #132649", +"F_. c #16294A", +"G_. c #1C3154", +"H_. c #1B2F53", +"I_. c #1D3054", +"J_. c #153263", +"K_. c #183468", +"L_. c #173467", +"M_. c #12326A", +"N_. c #0E2E69", +"O_. c #0D2F6B", +"P_. c #092D69", +"Q_. c #092F6B", +"R_. c #2B4C86", +"S_. c #456BA8", +"T_. c #3F65A2", +"U_. c #7898CE", +"V_. c #2A4E8D", +"W_. c #5A7FBD", +"X_. c #9FBCE9", +"Y_. c #A7C5F0", +"Z_. c #A6C3F0", +"`_. c #A6C5EF", +" :. c #A7C7F0", +".:. c #9EBCEB", +"+:. c #4F76B7", +"@:. c #4D72B4", +"#:. c #446DAF", +"$:. c #22498E", +"%:. c #274E93", +"&:. c #295095", +"*:. c #2C5498", +"=:. c #5679B7", +"-:. c #7493CA", +";:. c #3B63A6", +">:. c #8AAEE6", +",:. c #122D60", +"':. c #0E2241", +"):. c #162B4D", +"!:. c #1D3255", +"~:. c #1C355D", +"{:. c #163267", +"]:. c #10316A", +"^:. c #102F6A", +"/:. c #0E3169", +"(:. c #0E306A", +"_:. c #0F306B", +"::. c #082C6B", +"<:. c #345792", +"[:. c #446AA6", +"}:. c #4066A3", +"|:. c #3E62A1", +"1:. c #294F8D", +"2:. c #355A99", +"3:. c #8BA9DA", +"4:. c #A5C2F0", +"5:. c #A5C5EF", +"6:. c #AAC6F1", +"7:. c #9CBBEB", +"8:. c #4B72B3", +"9:. c #2B5196", +"0:. c #224A8F", +"a:. c #2A5095", +"b:. c #2D5398", +"c:. c #91B1E4", +"d:. c #051430", +"e:. c #091A36", +"f:. c #1F3356", +"g:. c #1C3054", +"h:. c #112F66", +"i:. c #0F306A", +"j:. c #103169", +"k:. c #0E316A", +"l:. c #0B2E69", +"m:. c #062B69", +"n:. c #3A5F9A", +"o:. c #4067A2", +"p:. c #092E70", +"q:. c #5277B6", +"r:. c #7D9ED4", +"s:. c #A2C0F0", +"t:. c #A2C3F0", +"u:. c #9AB9E9", +"v:. c #567CBE", +"w:. c #4D74B5", +"x:. c #4A71B2", +"y:. c #476EAF", +"z:. c #21488E", +"A:. c #254C91", +"B:. c #4269AB", +"C:. c #86A8E0", +"D:. c #84ABE8", +"E:. c #375489", +"F:. c #020B18", +"G:. c #091938", +"H:. c #091B38", +"I:. c #0D2445", +"J:. c #223659", +"K:. c #1B3154", +"L:. c #20355C", +"M:. c #103168", +"N:. c #113069", +"O:. c #0E2F69", +"P:. c #0F336D", +"Q:. c #0D306B", +"R:. c #082D6A", +"S:. c #082B67", +"T:. c #3E62A0", +"U:. c #3C639F", +"V:. c #39609D", +"W:. c #315795", +"X:. c #153A7B", +"Y:. c #3A5F9E", +"Z:. c #4E73B2", +"`:. c #6A8ECB", +" <. c #94B4E6", +".<. c #456CAE", +"+<. c #4F74B6", +"@<. c #1F468C", +"#<. c #21498E", +"$<. c #254D92", +"%<. c #2C5497", +"&<. c #345C9F", +"*<. c #4F75B5", +"=<. c #4970B0", +"-<. c #4E75B5", +";<. c #6083C1", +"><. c #82A8E5", +",<. c #4969A0", +"'<. c #0B1C39", +")<. c #0D2344", +"!<. c #1E3255", +"~<. c #113168", +"{<. c #0B2F6A", +"]<. c #092C68", +"^<. c #092D6A", +"/<. c #103068", +"(<. c #3E64A2", +"_<. c #3C629F", +":<. c #3A609D", +"<<. c #244A88", +"[<. c #456BAA", +"}<. c #597DBC", +"|<. c #90B1E6", +"1<. c #5076B7", +"2<. c #4A71B3", +"3<. c #466DAE", +"4<. c #436AAB", +"5<. c #7AA2E0", +"6<. c #557BBC", +"7<. c #20478C", +"8<. c #20488D", +"9<. c #295096", +"0<. c #2F579A", +"a<. c #4469AA", +"b<. c #577AB8", +"c<. c #5E80BC", +"d<. c #000F26", +"e<. c #000F25", +"f<. c #102347", +"g<. c #132B4D", +"h<. c #113068", +"i<. c #103167", +"j<. c #0F2F68", +"k<. c #102F69", +"l<. c #0D3068", +"m<. c #0F2F6A", +"n<. c #0C2F69", +"o<. c #0B2F69", +"p<. c #0A2D6A", +"q<. c #062969", +"r<. c #456BA9", +"s<. c #39609C", +"t<. c #2F5593", +"u<. c #1F4585", +"v<. c #4D72B1", +"w<. c #4F74B3", +"x<. c #94B3E4", +"y<. c #9CBCF0", +"z<. c #88AAE2", +"A<. c #5278B9", +"B<. c #466DAF", +"C<. c #446BAC", +"D<. c #486FB0", +"E<. c #456BAC", +"F<. c #284E92", +"G<. c #1F478C", +"H<. c #1E468B", +"I<. c #264D92", +"J<. c #345CA0", +"K<. c #355CA0", +"L<. c #7294CE", +"M<. c #051A41", +"N<. c #00030B", +"O<. c #010A14", +"P<. c #05152E", +"Q<. c #1B2E52", +"R<. c #12336A", +"S<. c #0F3069", +"T<. c #0F3169", +"U<. c #102F6B", +"V<. c #0C2F68", +"W<. c #082C69", +"X<. c #082C68", +"Y<. c #072B68", +"Z<. c #032964", +"`<. c #032763", +" [. c #294A81", +".[. c #3A619D", +"+[. c #244A89", +"@[. c #6489C6", +"#[. c #7B9FDC", +"$[. c #5E84C3", +"%[. c #87AAE0", +"&[. c #9ABBF0", +"*[. c #87AAE4", +"=[. c #446CAE", +"-[. c #31589B", +";[. c #1B4388", +">[. c #2B5296", +",[. c #244C91", +"'[. c #2A5296", +")[. c #2F589B", +"![. c #3960A4", +"~[. c #769CD9", +"{[. c #071734", +"][. c #071738", +"^[. c #07193A", +"/[. c #0F2141", +"([. c #19305E", +"_[. c #0F3067", +":[. c #0E3068", +"<[. c #0A2D67", +"[[. c #0E326B", +"}[. c #0B2D69", +"|[. c #375991", +"1[. c #446BA8", +"2[. c #305593", +"3[. c #5579B7", +"4[. c #7296D2", +"5[. c #7EA2DC", +"6[. c #9DBDF1", +"7[. c #98BAEF", +"8[. c #5379BA", +"9[. c #4269AA", +"0[. c #3E66A8", +"a[. c #284E93", +"b[. c #1D458A", +"c[. c #2C5599", +"d[. c #325A9E", +"e[. c #31589C", +"f[. c #7FA4E1", +"g[. c #091933", +"h[. c #081934", +"i[. c #0E2E67", +"j[. c #0F2F67", +"k[. c #0C2C67", +"l[. c #0E2F68", +"m[. c #0E2F6A", +"n[. c #0B2E68", +"o[. c #0C2E6A", +"p[. c #052965", +"q[. c #3B5E9A", +"r[. c #4268A5", +"s[. c #365A98", +"t[. c #2E5391", +"u[. c #2D5391", +"v[. c #456AA9", +"w[. c #4A6FAE", +"x[. c #7B9FDA", +"y[. c #496FB2", +"z[. c #4168A9", +"A[. c #3961A4", +"B[. c #1C4388", +"C[. c #1F478D", +"D[. c #234B90", +"E[. c #2C5499", +"F[. c #30579D", +"G[. c #85ABE7", +"H[. c #061630", +"I[. c #071833", +"J[. c #09193A", +"K[. c #0F2445", +"L[. c #192C51", +"M[. c #182D53", +"N[. c #1B315B", +"O[. c #18315E", +"P[. c #0F3066", +"Q[. c #103067", +"R[. c #113269", +"S[. c #103269", +"T[. c #0C2E68", +"U[. c #072D6A", +"V[. c #042A66", +"W[. c #072760", +"X[. c #4166A1", +"Y[. c #3E64A1", +"Z[. c #7496CD", +"`[. c #89AADB", +" }. c #2A4E8C", +".}. c #41619B", +"+}. c #678AC5", +"@}. c #476DAB", +"#}. c #466AA9", +"$}. c #4A6DAD", +"%}. c #4C70B0", +"&}. c #6D92CF", +"*}. c #95B8F0", +"=}. c #94B7F0", +"-}. c #93B7F0", +";}. c #7DA2DB", +">}. c #4A6FB2", +",}. c #4067A9", +"'}. c #2F579B", +")}. c #1C4287", +"!}. c #1C4489", +"~}. c #1B4287", +"{}. c #1B4389", +"]}. c #496FB1", +"^}. c #87ADEA", +"/}. c #304C80", +"(}. c #000509", +"_}. c #04132F", +":}. c #061632", +"<}. c #102546", +"[}. c #0F2E67", +"}}. c #0B2E67", +"|}. c #0A2E68", +"1}. c #0C306A", +"2}. c #0C2E69", +"3}. c #042A67", +"4}. c #597DB8", +"5}. c #3E64A0", +"6}. c #4467A4", +"7}. c #7394C7", +"8}. c #2F5491", +"9}. c #7598D1", +"0}. c #33528A", +"a}. c #486CAC", +"b}. c #4469A8", +"c}. c #6084C1", +"d}. c #96B8F0", +"e}. c #95B8EF", +"f}. c #92B6F0", +"g}. c #91B5EF", +"h}. c #8FB6EF", +"i}. c #4E75B6", +"j}. c #456CAD", +"k}. c #3F66A8", +"l}. c #3B62A5", +"m}. c #244A8F", +"n}. c #184085", +"o}. c #194186", +"p}. c #355DA2", +"q}. c #6387C5", +"r}. c #668DCC", +"s}. c #5C85C7", +"t}. c #436299", +"u}. c #1C345C", +"v}. c #1B325D", +"w}. c #14326A", +"x}. c #0D2F67", +"y}. c #0C2E67", +"z}. c #0F2E6A", +"A}. c #092C69", +"B}. c #032A67", +"C}. c #7195CF", +"D}. c #4F73AF", +"E}. c #3F66A1", +"F}. c #3D64A0", +"G}. c #375C9A", +"H}. c #2B518F", +"I}. c #204584", +"J}. c #0A2D68", +"K}. c #2A4F8F", +"L}. c #3C61A0", +"M}. c #5E81C0", +"N}. c #8CB3EE", +"O}. c #8EB4F0", +"P}. c #97BBEF", +"Q}. c #7DA3DD", +"R}. c #5077B8", +"S}. c #466CAD", +"T}. c #365DA0", +"U}. c #194187", +"V}. c #375FA2", +"W}. c #416AAC", +"X}. c #3960A6", +"Y}. c #7B9FD9", +"Z}. c #91B9F4", +"`}. c #92BAF3", +" |. c #7DA2DD", +".|. c #5576AF", +"+|. c #020913", +"@|. c #17305D", +"#|. c #123067", +"$|. c #0D2D67", +"%|. c #0D3069", +"&|. c #0E2D68", +"*|. c #092B68", +"=|. c #0A2D69", +"-|. c #072C69", +";|. c #092E6A", +">|. c #234176", +",|. c #779CD6", +"'|. c #4C72AD", +")|. c #365C9A", +"!|. c #305494", +"~|. c #173A7B", +"{|. c #6889C1", +"]|. c #1A3E7F", +"^|. c #5B7EBD", +"/|. c #8DB4EE", +"(|. c #8BB2ED", +"_|. c #80A5E1", +":|. c #32599C", +"<|. c #184086", +"[|. c #3D66A8", +"}|. c #335B9E", +"||. c #355CA2", +"1|. c #3D65A9", +"2|. c #87ACE6", +"3|. c #8CB1E9", +"4|. c #6189C6", +"5|. c #5E80BA", +"6|. c #05142E", +"7|. c #081A37", +"8|. c #16294D", +"9|. c #1D3357", +"0|. c #192E58", +"a|. c #19305D", +"b|. c #112F64", +"c|. c #0E2F67", +"d|. c #0F2E68", +"e|. c #0D2F69", +"f|. c #0F326B", +"g|. c #0D2E68", +"h|. c #0A2E69", +"i|. c #052B68", +"j|. c #32528A", +"k|. c #5A7FB9", +"l|. c #7FA2DA", +"m|. c #5276B0", +"n|. c #2C5290", +"o|. c #1E4583", +"p|. c #3F649E", +"q|. c #234580", +"r|. c #4668A3", +"s|. c #325594", +"t|. c #2D4F8B", +"u|. c #305290", +"v|. c #5B7FBC", +"w|. c #2B508F", +"x|. c #2F5493", +"y|. c #4469A9", +"z|. c #567BBA", +"A|. c #89AFE9", +"B|. c #8AB1ED", +"C|. c #8BB1EF", +"D|. c #8BB1EE", +"E|. c #80A4E1", +"F|. c #385FA2", +"G|. c #244B8E", +"H|. c #1D4589", +"I|. c #325A9F", +"J|. c #345CA1", +"K|. c #13264A", +"L|. c #0F2F66", +"M|. c #0E2F66", +"N|. c #0B2D66", +"O|. c #0D2D66", +"P|. c #0C2D66", +"Q|. c #0B2D67", +"R|. c #032965", +"S|. c #3F629C", +"T|. c #486DA8", +"U|. c #3F659F", +"V|. c #335997", +"W|. c #305694", +"X|. c #466AA7", +"Y|. c #8FB0E6", +"Z|. c #89ABE1", +"`|. c #B2CBEF", +" 1. c #A5BFEA", +".1. c #4467A5", +"+1. c #365997", +"@1. c #254A8A", +"#1. c #88AFEA", +"$1. c #8AB0ED", +"%1. c #8AB0EE", +"&1. c #82A7E1", +"*1. c #4F75B6", +"=1. c #285095", +"-1. c #2A5297", +";1. c #335BA0", +">1. c #3C65A8", +",1. c #6B92D1", +"'1. c #081E49", +")1. c #020E1E", +"!1. c #081734", +"~1. c #102D61", +"{1. c #0F2E65", +"]1. c #0C2F67", +"^1. c #0F3068", +"/1. c #0D2D68", +"(1. c #0B2D68", +"_1. c #072A69", +":1. c #032863", +"<1. c #4E70AB", +"[1. c #486DA9", +"}1. c #4367A4", +"|1. c #244786", +"11. c #335693", +"21. c #4265A0", +"31. c #3F639E", +"41. c #3C5F9C", +"51. c #2F5190", +"61. c #395C9A", +"71. c #204586", +"81. c #375D9C", +"91. c #8AB0EB", +"01. c #88AEE9", +"a1. c #89AFEA", +"b1. c #89ADE9", +"c1. c #89AEEA", +"d1. c #87ADEB", +"e1. c #85AAE4", +"f1. c #2D5397", +"g1. c #183F84", +"h1. c #1A4288", +"i1. c #355EA2", +"j1. c #6C95D3", +"k1. c #071934", +"l1. c #091B3A", +"m1. c #0F2748", +"n1. c #172C53", +"o1. c #16305C", +"p1. c #0E2E64", +"q1. c #0E2F65", +"r1. c #072966", +"s1. c #072A68", +"t1. c #0B2B63", +"u1. c #5177B1", +"v1. c #466CA7", +"w1. c #39609B", +"x1. c #3F64A1", +"y1. c #466BAA", +"z1. c #4C71B0", +"A1. c #88ADE9", +"B1. c #86ACE8", +"C1. c #89ACE9", +"D1. c #88ACE9", +"E1. c #87ACE9", +"F1. c #87ABE7", +"G1. c #88ACE8", +"H1. c #88ADEB", +"I1. c #8AAEED", +"J1. c #8CB3F1", +"K1. c #87ACE7", +"L1. c #3960A3", +"M1. c #21478C", +"N1. c #557BBF", +"O1. c #203C70", +"P1. c #15315F", +"Q1. c #0D2E64", +"R1. c #0B2E66", +"S1. c #092C67", +"T1. c #062A66", +"U1. c #082B68", +"V1. c #062968", +"W1. c #5279B3", +"X1. c #4269A4", +"Y1. c #2A508E", +"Z1. c #123778", +"`1. c #0F3273", +" 2. c #45649C", +".2. c #5F7FB5", +"+2. c #1E407F", +"@2. c #14397D", +"#2. c #39609E", +"$2. c #4267A7", +"%2. c #4A6EAE", +"&2. c #5377B7", +"*2. c #7DA2DE", +"=2. c #86AAE6", +"-2. c #88ACEA", +";2. c #86AAE8", +">2. c #86AAE7", +",2. c #87ABE8", +"'2. c #88ADEA", +")2. c #8AAEEC", +"!2. c #89AFEC", +"~2. c #8CB2F1", +"{2. c #93B8F0", +"]2. c #8AAFE9", +"^2. c #1F468B", +"/2. c #1F468A", +"(2. c #3D65A7", +"_2. c #517ABA", +":2. c #7DA6E5", +"<2. c #335289", +"[2. c #04152E", +"}2. c #0B1D3B", +"|2. c #122A4C", +"12. c #112F65", +"22. c #0F2F65", +"32. c #0D2E65", +"42. c #0D2E66", +"52. c #0A2C67", +"62. c #062A67", +"72. c #022967", +"82. c #23437B", +"92. c #567BB7", +"02. c #365D98", +"a2. c #284E8C", +"b2. c #38578F", +"c2. c #A1C3F3", +"d2. c #5A79B0", +"e2. c #345B99", +"f2. c #4267A6", +"g2. c #4A6EAD", +"h2. c #5479B7", +"i2. c #7A9FDB", +"j2. c #85A9E5", +"k2. c #84A8E4", +"l2. c #85A9E7", +"m2. c #89ADEB", +"n2. c #8AAFEB", +"o2. c #8BB1F0", +"p2. c #8FB4F1", +"q2. c #8DB1EA", +"r2. c #4C72B3", +"s2. c #4067A8", +"t2. c #1E458A", +"u2. c #1A4186", +"v2. c #365EA3", +"w2. c #48689E", +"x2. c #0E2D66", +"y2. c #0D2F68", +"z2. c #092C66", +"A2. c #072A67", +"B2. c #072C68", +"C2. c #052964", +"D2. c #305189", +"E2. c #5579B3", +"F2. c #325895", +"G2. c #6C8CC1", +"H2. c #7396CC", +"I2. c #2B4D8A", +"J2. c #214686", +"K2. c #476CAB", +"L2. c #4D71B0", +"M2. c #7498D4", +"N2. c #86ABE6", +"O2. c #83A7E3", +"P2. c #84A8E6", +"Q2. c #83A8E4", +"R2. c #87ABE9", +"S2. c #85AAE8", +"T2. c #86ABE9", +"U2. c #88ACEB", +"V2. c #8BB0EB", +"W2. c #90B5F0", +"X2. c #4B71B2", +"Y2. c #476DAE", +"Z2. c #3E65A7", +"`2. c #234A8E", +" 3. c #2C5398", +".3. c #3961A5", +"+3. c #7BA2E1", +"@3. c #5D7FB9", +"#3. c #132F62", +"$3. c #0C2C64", +"%3. c #0A2C6A", +"&3. c #052862", +"*3. c #032662", +"=3. c #3F6199", +"-3. c #5276B1", +";3. c #345A98", +">3. c #214785", +",3. c #5373AA", +"'3. c #5074B3", +")3. c #82A6E2", +"!3. c #83A7E4", +"~3. c #83A7E5", +"{3. c #83A9E7", +"]3. c #8AAEEA", +"^3. c #8BB0EC", +"/3. c #8CB2F0", +"(3. c #4D73B4", +"_3. c #3960A2", +":3. c #20478B", +"<3. c #234B8F", +"[3. c #3D66A9", +"}3. c #668AC7", +"|3. c #061738", +"13. c #0E2140", +"23. c #162C54", +"33. c #152F5D", +"43. c #163260", +"53. c #0E2F64", +"63. c #0F2E66", +"73. c #092B69", +"83. c #072C67", +"93. c #062B68", +"03. c #032765", +"a3. c #4668A2", +"b3. c #3F65A0", +"c3. c #264B89", +"d3. c #2C4C88", +"e3. c #6C90C8", +"f3. c #5075B4", +"g3. c #7B9EDB", +"h3. c #81A5E1", +"i3. c #85A9E6", +"j3. c #8AAEEB", +"k3. c #5076B6", +"l3. c #2B5195", +"m3. c #264C91", +"n3. c #284F93", +"o3. c #285093", +"p3. c #20488C", +"q3. c #355EA0", +"r3. c #3C65A7", +"s3. c #456EB0", +"t3. c #7396D1", +"u3. c #0B1C3B", +"v3. c #162D4E", +"w3. c #182F53", +"x3. c #14305D", +"y3. c #0E2E63", +"z3. c #0E2D64", +"A3. c #0D2D65", +"B3. c #0E2E65", +"C3. c #0B2B64", +"D3. c #0C2E66", +"E3. c #0A2D65", +"F3. c #082B66", +"G3. c #062B67", +"H3. c #042862", +"I3. c #072861", +"J3. c #5075AE", +"K3. c #385E99", +"L3. c #2D518F", +"M3. c #264B8A", +"N3. c #0D3472", +"O3. c #103875", +"P3. c #093070", +"Q3. c #799CD8", +"R3. c #82A6E3", +"S3. c #82A6E4", +"T3. c #84A8E5", +"U3. c #89ADEA", +"V3. c #496FAF", +"W3. c #3E65A6", +"X3. c #1E468C", +"Y3. c #1D458B", +"Z3. c #335C9E", +"`3. c #3B64A6", +" 4. c #6A92D1", +".4. c #7B9FDB", +"+4. c #000511", +"@4. c #182E56", +"#4. c #132C5A", +"$4. c #0D2E63", +"%4. c #0C2C65", +"&4. c #0A2D66", +"*4. c #072B65", +"=4. c #597DB7", +"-4. c #345997", +";4. c #254A88", +">4. c #234886", +",4. c #0B3271", +"'4. c #09316F", +")4. c #365C9B", +"!4. c #5175B4", +"~4. c #80A4E0", +"{4. c #81A5E2", +"]4. c #89AEEB", +"^4. c #5178B8", +"/4. c #4B72B2", +"(4. c #345A9D", +"_4. c #194185", +":4. c #1C4389", +"<4. c #315A9D", +"[4. c #7EA3DE", +"}4. c #04122B", +"|4. c #051934", +"14. c #162E5C", +"24. c #17335F", +"34. c #0C2D63", +"44. c #0C2D64", +"54. c #092C65", +"64. c #082B65", +"74. c #082C66", +"84. c #062966", +"94. c #05265E", +"04. c #062765", +"a4. c #1B376B", +"b4. c #4367A3", +"c4. c #4468A5", +"d4. c #3E629F", +"e4. c #284D8C", +"f4. c #264C8A", +"g4. c #0B3371", +"h4. c #5579B6", +"i4. c #7FA3DF", +"j4. c #81A5E3", +"k4. c #86ABE8", +"l4. c #4D73B5", +"m4. c #1D4488", +"n4. c #1B4288", +"o4. c #264E93", +"p4. c #365EA1", +"q4. c #7FA5E2", +"r4. c #02060B", +"s4. c #071A35", +"t4. c #122850", +"u4. c #14315E", +"v4. c #0F2E63", +"w4. c #0D2C62", +"x4. c #0F2F64", +"y4. c #0D2D63", +"z4. c #0B2E63", +"A4. c #062965", +"B4. c #325085", +"C4. c #5D81BA", +"D4. c #3A5E9B", +"E4. c #325592", +"F4. c #274A88", +"G4. c #0E3573", +"H4. c #0D3473", +"I4. c #395D9C", +"J4. c #567AB8", +"K4. c #5A7EBC", +"L4. c #7DA0DB", +"M4. c #80A4E2", +"N4. c #92B6F1", +"O4. c #8CAEE6", +"P4. c #6D8EC8", +"Q4. c #1E4589", +"R4. c #173D82", +"S4. c #2D5294", +"T4. c #5478B5", +"U4. c #6C93D2", +"V4. c #041435", +"W4. c #0A1C3B", +"X4. c #11294B", +"Y4. c #152C5A", +"Z4. c #122E60", +"`4. c #102D5F", +" 5. c #0F2D63", +".5. c #0D2F64", +"+5. c #0B2D65", +"@5. c #092C64", +"#5. c #062865", +"$5. c #04275F", +"%5. c #446397", +"&5. c #587CB5", +"*5. c #325693", +"=5. c #32528C", +"-5. c #809DCE", +";5. c #42639F", +">5. c #2A4C8A", +",5. c #2C4F8D", +"'5. c #2F5393", +")5. c #4E72B0", +"!5. c #567BB9", +"~5. c #80A3E0", +"{5. c #80A2DF", +"]5. c #8BAFEC", +"^5. c #90B2E9", +"/5. c #6588C4", +"(5. c #6986BF", +"_5. c #254B8F", +":5. c #254A8E", +"<5. c #244A8E", +"[5. c #6B8BC2", +"}5. c #5174B1", +"|5. c #234A8F", +"15. c #1B3A72", +"25. c #0E2648", +"35. c #0F2C5E", +"45. c #0D2C63", +"55. c #0D2D64", +"65. c #0C2B64", +"75. c #082B63", +"85. c #072A64", +"95. c #0A2C68", +"05. c #082C67", +"a5. c #4C6FA8", +"b5. c #4C70AB", +"c5. c #345795", +"d5. c #4969A1", +"e5. c #A6C3EC", +"f5. c #6D8FC8", +"g5. c #5879B2", +"h5. c #345794", +"i5. c #335795", +"j5. c #2A5090", +"k5. c #486DAB", +"l5. c #5B7FBD", +"m5. c #91B4EC", +"n5. c #4D74B4", +"o5. c #224A8D", +"p5. c #1B4286", +"q5. c #224588", +"r5. c #4465A4", +"s5. c #1D4387", +"t5. c #1C468B", +"u5. c #23447E", +"v5. c #020F20", +"w5. c #031020", +"x5. c #021228", +"y5. c #16315A", +"z5. c #152C59", +"A5. c #132D59", +"B5. c #142D5B", +"C5. c #0C2D62", +"D5. c #0C2D65", +"E5. c #0C2C63", +"F5. c #0D2C65", +"G5. c #0A2C64", +"H5. c #092B65", +"I5. c #082A66", +"J5. c #092B66", +"K5. c #082963", +"L5. c #4F73AD", +"M5. c #4E73AC", +"N5. c #315694", +"O5. c #32538D", +"P5. c #264986", +"Q5. c #224685", +"R5. c #244785", +"S5. c #4367A6", +"T5. c #678AC7", +"U5. c #7DA1DD", +"V5. c #8FB2EC", +"W5. c #2A5195", +"X5. c #1E4588", +"Y5. c #184186", +"Z5. c #395C97", +"`5. c #061935", +" 6. c #12274B", +".6. c #152B56", +"+6. c #0E2E62", +"@6. c #0B2C64", +"#6. c #082B64", +"$6. c #072A65", +"%6. c #072965", +"&6. c #052A66", +"*6. c #122E62", +"=6. c #5277B2", +"-6. c #466CA6", +";6. c #274B89", +">6. c #224785", +",6. c #6E91CE", +"'6. c #7FA2DF", +")6. c #80A6E1", +"!6. c #8BB0EE", +"~6. c #91B3EA", +"{6. c #3B61A2", +"]6. c #295194", +"^6. c #254C8F", +"/6. c #21488B", +"(6. c #264D93", +"_6. c #31599C", +":6. c #3962A5", +"<6. c #4066A6", +"[6. c #071832", +"}6. c #102748", +"|6. c #162D59", +"16. c #132E58", +"26. c #112D5E", +"36. c #0A2D63", +"46. c #0A2D64", +"56. c #0A2C62", +"66. c #0C2E65", +"76. c #0A2B64", +"86. c #0B2C65", +"96. c #092D67", +"06. c #05265C", +"a6. c #203D71", +"b6. c #264A88", +"c6. c #254987", +"d6. c #7094D0", +"e6. c #8AAFED", +"f6. c #8CB2EE", +"g6. c #4568A8", +"h6. c #2A5194", +"i6. c #284F92", +"j6. c #1F4689", +"k6. c #1E4489", +"l6. c #22498D", +"m6. c #254D93", +"n6. c #30589C", +"o6. c #365EA2", +"p6. c #06162F", +"q6. c #0F2E62", +"r6. c #0C2B61", +"s6. c #0B2C62", +"t6. c #0B2C63", +"u6. c #0B2D63", +"v6. c #0B2B62", +"w6. c #062A65", +"x6. c #072967", +"y6. c #062964", +"z6. c #042964", +"A6. c #304E84", +"B6. c #476BA6", +"C6. c #244886", +"D6. c #224684", +"E6. c #7598D5", +"F6. c #7FA3DE", +"G6. c #8CB0ED", +"H6. c #93B7F1", +"I6. c #94B7F1", +"J6. c #5E83C0", +"K6. c #295093", +"L6. c #335A9D", +"M6. c #355C9F", +"N6. c #1D4487", +"O6. c #1C4387", +"P6. c #516FA8", +"Q6. c #2C4F91", +"R6. c #7191C9", +"S6. c #6385C0", +"T6. c #142A54", +"U6. c #0D2D62", +"V6. c #0B2B61", +"W6. c #0C2E64", +"X6. c #092A62", +"Y6. c #072B66", +"Z6. c #34538A", +"`6. c #385C97", +" 7. c #214684", +".7. c #1E4484", +"+7. c #214787", +"@7. c #779BD7", +"#7. c #89ACE8", +"$7. c #8AAFEA", +"%7. c #93B6EC", +"&7. c #345B9D", +"*7. c #30579A", +"=7. c #274F91", +"-7. c #20478A", +";7. c #294F92", +">7. c #22488B", +",7. c #173F83", +"'7. c #183F85", +")7. c #143C83", +"!7. c #2F5090", +"~7. c #274B8E", +"{7. c #224689", +"]7. c #1E468A", +"^7. c #597BB7", +"/7. c #6186C5", +"(7. c #071732", +"_7. c #0C2C62", +":7. c #0A2B63", +"<7. c #092B63", +"[7. c #0A2C65", +"}7. c #082A63", +"|7. c #062963", +"17. c #032560", +"27. c #32558F", +"37. c #2F5390", +"47. c #204684", +"57. c #7BA0DB", +"67. c #8CAFE7", +"77. c #6C94D2", +"87. c #32599B", +"97. c #2C5295", +"07. c #30589A", +"a7. c #395FA2", +"b7. c #295092", +"c7. c #22498C", +"d7. c #20488B", +"e7. c #13387D", +"f7. c #173C80", +"g7. c #92ADDF", +"h7. c #4566A2", +"i7. c #194286", +"j7. c #194087", +"k7. c #1C448A", +"l7. c #071733", +"m7. c #0E2546", +"n7. c #142B56", +"o7. c #0D2D61", +"p7. c #0A2A62", +"q7. c #0A2962", +"r7. c #0B2A63", +"s7. c #092B64", +"t7. c #092C63", +"u7. c #062A64", +"v7. c #06255B", +"w7. c #325793", +"x7. c #2D518E", +"y7. c #264A87", +"z7. c #375C9C", +"A7. c #264E90", +"B7. c #234A8D", +"C7. c #214486", +"D7. c #6488C9", +"E7. c #183F86", +"F7. c #184087", +"G7. c #1B4186", +"H7. c #3B5B9A", +"I7. c #21478A", +"J7. c #153F83", +"K7. c #345DA0", +"L7. c #4F78B8", +"M7. c #091A3A", +"N7. c #0D2C5F", +"O7. c #0B2B5F", +"P7. c #0A2B60", +"Q7. c #092B61", +"R7. c #082A62", +"S7. c #0A2A63", +"T7. c #092A63", +"U7. c #082C63", +"V7. c #082C64", +"W7. c #072964", +"X7. c #062864", +"Y7. c #325893", +"Z7. c #85AAE2", +"`7. c #6386C1", +" 8. c #254D90", +".8. c #1B4489", +"+8. c #1D448A", +"@8. c #294A83", +"#8. c #041333", +"$8. c #000408", +"%8. c #15294E", +"&8. c #112E59", +"*8. c #0E2B5D", +"=8. c #0D2C61", +"-8. c #0B2B60", +";8. c #0B2C61", +">8. c #0A2C63", +",8. c #0A2B62", +"'8. c #092962", +")8. c #072A62", +"!8. c #092D65", +"~8. c #072A63", +"{8. c #062961", +"]8. c #062962", +"^8. c #395D99", +"/8. c #274D89", +"(8. c #224786", +"_8. c #4D71AD", +":8. c #80A4DF", +"<8. c #9BBBF1", +"[8. c #5275B2", +"}8. c #284F91", +"|8. c #254D8F", +"18. c #21498C", +"28. c #1F4589", +"38. c #385DA1", +"48. c #1F478B", +"58. c #20488E", +"68. c #3760A2", +"78. c #3860A3", +"88. c #476AA5", +"98. c #000307", +"08. c #122A55", +"a8. c #0A2B61", +"b8. c #08295F", +"c8. c #092A61", +"d8. c #092961", +"e8. c #072860", +"f8. c #2A497E", +"g8. c #385C98", +"h8. c #284E89", +"i8. c #5074B1", +"j8. c #739BD7", +"k8. c #7BA2E0", +"l8. c #4E73B1", +"m8. c #264D91", +"n8. c #264D90", +"o8. c #254C8E", +"p8. c #214A8C", +"q8. c #21488C", +"r8. c #1C4488", +"s8. c #21488D", +"t8. c #285094", +"u8. c #284F95", +"v8. c #4E71AF", +"w8. c #04122C", +"x8. c #061634", +"y8. c #0D2B5E", +"z8. c #0C2A5E", +"A8. c #0D2C60", +"B8. c #0C2C61", +"C8. c #0A295F", +"D8. c #092A5F", +"E8. c #0C2E63", +"F8. c #052561", +"G8. c #34568E", +"H8. c #40649E", +"I8. c #2F548F", +"J8. c #284E8B", +"K8. c #294D8A", +"L8. c #153C7A", +"M8. c #5174B2", +"N8. c #87AFEA", +"O8. c #87ACE4", +"P8. c #769EDB", +"Q8. c #7DA5E2", +"R8. c #5D82BF", +"S8. c #274D91", +"T8. c #234B8D", +"U8. c #375FA3", +"V8. c #2E569A", +"W8. c #3F64A7", +"X8. c #051431", +"Y8. c #061532", +"Z8. c #132B4F", +"`8. c #112956", +" 9. c #122B59", +".9. c #0C2B60", +"+9. c #0C2C60", +"@9. c #092A60", +"#9. c #0B2D64", +"$9. c #052962", +"%9. c #052963", +"&9. c #03265D", +"*9. c #062253", +"=9. c #4266A1", +"-9. c #355994", +";9. c #2A508B", +">9. c #2F5590", +",9. c #234686", +"'9. c #244787", +")9. c #254A89", +"!9. c #234A89", +"~9. c #284C8C", +"{9. c #80A3DE", +"]9. c #84A9E5", +"^9. c #82A8E2", +"/9. c #79A1DE", +"(9. c #274E90", +"_9. c #163C82", +":9. c #193D7E", +"<9. c #214A8E", +"[9. c #0F254C", +"}9. c #112950", +"|9. c #0C2A5D", +"19. c #0B2B5E", +"29. c #0B2A60", +"39. c #0A2A5F", +"49. c #07285F", +"59. c #082861", +"69. c #072961", +"79. c #05275F", +"89. c #052860", +"99. c #052861", +"09. c #032661", +"a9. c #032760", +"b9. c #092558", +"c9. c #5B7EB7", +"d9. c #365A96", +"e9. c #2D518D", +"f9. c #2C508E", +"g9. c #244987", +"h9. c #4D72AE", +"i9. c #83AAE5", +"j9. c #8BB1EB", +"k9. c #7EA5E1", +"l9. c #7EA6E3", +"m9. c #769DDA", +"n9. c #284E91", +"o9. c #1A4085", +"p9. c #1B4387", +"q9. c #5F81BB", +"r9. c #93B6EA", +"s9. c #6587C1", +"t9. c #1E488D", +"u9. c #264B90", +"v9. c #2C5297", +"w9. c #000207", +"x9. c #041026", +"y9. c #132952", +"z9. c #102853", +"A9. c #102B5B", +"B9. c #102C5D", +"C9. c #0D2B5F", +"D9. c #0F2C60", +"E9. c #0C2A60", +"F9. c #0A2A61", +"G9. c #082961", +"H9. c #042860", +"I9. c #042861", +"J9. c #143064", +"K9. c #5F83BC", +"L9. c #4B6EA9", +"M9. c #3D619C", +"N9. c #315591", +"O9. c #2D508E", +"P9. c #284D8B", +"Q9. c #224683", +"R9. c #2B4F8D", +"S9. c #294D8B", +"T9. c #254988", +"U9. c #2A4E8E", +"V9. c #355B99", +"W9. c #5177B3", +"X9. c #7DA1DC", +"Y9. c #85ABE6", +"Z9. c #89B0E9", +"`9. c #91B5F0", +" 0. c #A3C1F0", +".0. c #395EA0", +"+0. c #2C5395", +"@0. c #1F478A", +"#0. c #20468C", +"$0. c #4469AB", +"%0. c #90B4EC", +"&0. c #90B3E9", +"*0. c #264C8E", +"=0. c #174286", +"-0. c #3C5EA0", +";0. c #6581B7", +">0. c #061635", +",0. c #112A4F", +"'0. c #112A55", +")0. c #0C2B5F", +"!0. c #0A2A5E", +"~0. c #052961", +"{0. c #062761", +"]0. c #03265E", +"^0. c #04265C", +"/0. c #284477", +"(0. c #6287BE", +"_0. c #486CA7", +":0. c #3D619D", +"<0. c #325692", +"[0. c #2C508C", +"}0. c #284C8A", +"|0. c #254888", +"10. c #244887", +"20. c #274A8A", +"30. c #547AB6", +"40. c #80A5E0", +"50. c #7FA5E1", +"60. c #9DBCED", +"70. c #7BA4E1", +"80. c #7FA8E4", +"90. c #80A9E5", +"00. c #3B60A1", +"a0. c #2D5497", +"b0. c #2B5194", +"c0. c #5B7FC0", +"d0. c #5E84C1", +"e0. c #7CA3DC", +"f0. c #4F72B0", +"g0. c #194287", +"h0. c #1C4289", +"i0. c #2A5397", +"j0. c #264477", +"k0. c #041025", +"l0. c #132953", +"m0. c #122854", +"n0. c #0B2A5E", +"o0. c #0B2A5D", +"p0. c #0C2B5E", +"q0. c #0B2A5F", +"r0. c #06295E", +"s0. c #072A60", +"t0. c #082962", +"u0. c #062860", +"v0. c #062760", +"w0. c #03235B", +"x0. c #405D8F", +"y0. c #6286BE", +"z0. c #4367A2", +"A0. c #2F538F", +"B0. c #2E528E", +"C0. c #2A4E8B", +"D0. c #284B89", +"E0. c #2B4E8C", +"F0. c #274A89", +"G0. c #274C8A", +"H0. c #264988", +"I0. c #294E8D", +"J0. c #274D8B", +"K0. c #577BB8", +"L0. c #7CA0DA", +"M0. c #8DB1EB", +"N0. c #99B9EC", +"O0. c #7BA5E1", +"P0. c #81ABE7", +"Q0. c #81AAE7", +"R0. c #2F5699", +"S0. c #21498B", +"T0. c #1E4689", +"U0. c #193D80", +"V0. c #1E458B", +"W0. c #2C559A", +"X0. c #030E1F", +"Y0. c #031023", +"Z0. c #0D295B", +"`0. c #09295F", +" a. c #082A60", +".a. c #082960", +"+a. c #072862", +"@a. c #032862", +"#a. c #4A6A9E", +"$a. c #6386BE", +"%a. c #3F629E", +"&a. c #305491", +"*a. c #305490", +"=a. c #274B8A", +"-a. c #597CB7", +";a. c #234483", +">a. c #294D8D", +",a. c #294C8C", +"'a. c #264989", +")a. c #2B4E8E", +"!a. c #5E81BE", +"~a. c #7DA1DB", +"{a. c #86AAE5", +"]a. c #9CBCF1", +"^a. c #9DBDEC", +"/a. c #7DA7E3", +"(a. c #83ADE9", +"_a. c #83ADE8", +":a. c #88B1EC", +"b. c #052258", +",b. c #0F2B5D", +"'b. c #668AC1", +")b. c #486BA5", +"!b. c #294D89", +"~b. c #274B87", +"{b. c #274B88", +"]b. c #2A4D8B", +"^b. c #315593", +"/b. c #224584", +"(b. c #5D7EBB", +"_b. c #335896", +":b. c #375B99", +"c. c #4C6DAA", +",c. c #34589A", +"'c. c #365C9E", +")c. c #486EAF", +"!c. c #4971B2", +"~c. c #6786BE", +"{c. c #5376B4", +"]c. c #274E92", +"^c. c #325B9D", +"/c. c #2E4B7F", +"(c. c #03060B", +"_c. c #030F20", +":c. c #10254B", +"d. c #08285B", +",d. c #07275F", +"'d. c #06255C", +")d. c #264A86", +"!d. c #234783", +"~d. c #284B87", +"{d. c #294C8A", +"]d. c #4367A5", +"^d. c #3F63A1", +"/d. c #365999", +"(d. c #3B5F9E", +"_d. c #4165A3", +":d. c #6185C1", +"e. c #041123", +",e. c #0F2952", +"'e. c #0A285B", +")e. c #09285A", +"!e. c #09275B", +"~e. c #09295B", +"{e. c #09285D", +"]e. c #07275C", +"^e. c #03275E", +"/e. c #042259", +"(e. c #355893", +"_e. c #224581", +":e. c #274A85", +"f. c #1B3A76", +",f. c #355997", +"'f. c #305391", +")f. c #305392", +"!f. c #4C71AD", +"~f. c #7198D2", +"{f. c #6B92CC", +"]f. c #678CC7", +"^f. c #81A4DE", +"/f. c #8AADE7", +"(f. c #8CB2E9", +"_f. c #8CB2EB", +":f. c #81AAE6", +"g. c #A9C9F0", +",g. c #89B4EF", +"'g. c #7297D1", +")g. c #2C5194", +"!g. c #3D5E9C", +"~g. c #5E7CB5", +"{g. c #355B9F", +"]g. c #466FB0", +"^g. c #0D2044", +"/g. c #0B2243", +"(g. c #0A2555", +"_g. c #0B2656", +":g. c #07285B", +"h. c #06275B", +",h. c #05255B", +"'h. c #07275E", +")h. c #05245D", +"!h. c #345690", +"~h. c #042559", +"{h. c #4C6594", +"]h. c #243964", +"^h. c #476BA8", +"/h. c #0A3170", +"(h. c #375994", +"_h. c #749AD4", +":h. c #7197D0", +"i. c #83AEEA", +",i. c #8CB2EC", +"'i. c #3C61A1", +")i. c #2B5294", +"!i. c #1E4488", +"~i. c #265094", +"{i. c #0B2045", +"]i. c #072655", +"^i. c #032156", +"/i. c #022051", +"(i. c #062559", +"_i. c #2E508B", +":i. c #05255F", +"j. c #042156", +",j. c #022151", +"'j. c #31548E", +")j. c #284A87", +"!j. c #05295F", +"~j. c #516EA0", +"{j. c #9AB6E2", +"]j. c #5070A9", +"^j. c #80A5DE", +"/j. c #779ED8", +"(j. c #7BA1DA", +"_j. c #9FBFEC", +":j. c #1B4184", +"k. c #80AAE6", +",k. c #6187C2", +"'k. c #5C7EB7", +")k. c #99BBEE", +"!k. c #6B8BC1", +"~k. c #21478B", +"{k. c #1E4487", +"]k. c #1D3F7E", +"^k. c #718EC0", +"/k. c #163A7D", +"(k. c #1D4388", +"_k. c #1A4388", +":k. c #062554", +"l. c #8BB3ED", +",l. c #33599A", +"'l. c #07234C", +")l. c #07214D", +"!l. c #072551", +"~l. c #052352", +"{l. c #062353", +"]l. c #062354", +"^l. c #052557", +"/l. c #042252", +"(l. c #0E3069", +"_l. c #274982", +":l. c #264680", +"m. c #88A6DA", +",m. c #6282B8", +"'m. c #98B6E3", +")m. c #16397C", +"!m. c #668ECC", +"~m. c #022250", +"{m. c #385687", +"]m. c #1E3A6D", +"^m. c #082B69", +"/m. c #6283BA", +"(m. c #80A7DE", +"_m. c #82A9DF", +":m. c #82A9DE", +"n. c #040E1F", +",n. c #02214F", +"'n. c #022251", +")n. c #052256", +"!n. c #0D2E62", +"~n. c #0A2F69", +"{n. c #3D5B8E", +"]n. c #26447A", +"^n. c #24457F", +"/n. c #0E326C", +"(n. c #224380", +"_n. c #7698CF", +":n. c #4E6EA8", +"o. c #143873", +",o. c #5474AA", +"'o. c #85ACE1", +")o. c #84A9DE", +"!o. c #86ABE0", +"~o. c #94B7E8", +"{o. c #A1C2EF", +"]o. c #C0D6F1", +"^o. c #C4D9F2", +"/o. c #C7D9F3", +"(o. c #98BDF3", +"_o. c #9CC0F3", +":o. c #80A3DA", +"p. c #637AA6", +",p. c #627BA6", +"'p. c #5F78A3", +")p. c #57719D", +"!p. c #526C98", +"~p. c #4D6794", +"{p. c #4A6592", +"]p. c #476390", +"^p. c #456090", +"/p. c #3E5A8B", +"(p. c #3B5889", +"_p. c #375486", +":p. c #314D81", +"q. c #010304", +",q. c #040406", +"'q. c #030405", +")q. c #021232", +"!q. c #030305", +"~q. c #010303", +"{q. c #010202", +"]q. c #020202", +"^q. c #030E27", +"/q. c #020405", +"(q. c #030304", +"_q. c #030204", +":q. c #03080E", +" $ , > ' > ) > ! $ ~ { $ ] ^ $ ] > & ^ & ! ] ~ / ( _ : < [ / { [ / { } ; | { : 1 2 < { } 2 3 4 : } 5 6 { 7 8 9 0 a } 7 7 b 8 8 6 7 c a 8 b 6 6 d e f g 0 a h 7 i 8 0 7 j k c l m n n h c o p q r r s t u v m p w p t x y z A w B x z C D E D F G H I I A z J A I K L H M N O M P Q R M S T U S H V W P X H Y Z ` P V . .. R X +. @. . #. $. .. %. &. @. *. =. +. -. ;. >. ,. &. '. ). !. '. ~. {. {. {. ]. ^. '. '. ^. /. (. _. :. <. [. }. |. 1. }. 2. 3. 4. 5. 6. 7. 8. 5. 9. 0. 0. a. b. 9. 9. c. c. d. e. d. e. c. e. f. g. g. h. i. j. k. i. l. m. m. n. o. f. o. p. q. q. r. s. t. u. v. v. w. s. x. y. z. A. B. A. C. D. E. F. F. F. F. G. H. I. J. K. L. L. M. N. O. J. L. L. P. N. Q. R. S. S. T. Q. U. V. W. X. T. Y. Z. T. X. `. + .+ ++ @+ ++ `. #+ `. $+ %+ &+ *+ =+ -+ ;+ &+ ;+ &+ &+ >+ ,+ '+ )+ !+ ~+ ~+ {+ ]+ ^+ /+ ~+ (+ ~+ ~+ /+ ~+ (+ _+ :+ <+ /+ [+ }+ |+ |+ 1+ 2+ 3+ 4+ |+ 4+ 3+ 5+ 6+ 7+ 8+ 3+ 9+ 0+ 8+ 8+ a+ b+ c+ d+ d+ e+ e+ d+ e+ c+ f+ d+ d+ f+ 0+ 0+ g+ h+ i+ j+ h+ k+ l+ m+ n+ h+ h+ h+ n+ h+ k+ o+ p+ m+ q+ h+ n+ r+ s+ t+ u+ s+ o+ v+ s+ w+ w+ x+ s+ x+ x+ x+ y+ z+ A+ A+ B+ A+ C+ C+ D+ A+ E+ F+ D+ G+ C+ D+ C+ E+ H+ I+ J+ K+ L+ F+ D+ M+ E+ N+ L+ O+ L+ O+ P+ L+ L+ Q+ Q+ R+ R+ R+ S+ T+ U+ R+ Q+ R+ V+ W+ X+ U+ X+ U+ X+ W+ W+ Y+ Z+ `+ @ W+ Y+ .@ +@ @@ W+ #@ +@ @@ #@ $@ +@ +@ #@ @@ #@ %@ %@ %@ &@ &@ %@ &@ *@ *@ %@ =@ -@ ;@ *@ >@ ,@ '@ )@ -@ !@ ~@ ~@ {@ ]@ ^@ /@ (@ ^@ _@ !@ {@ :@ <@ [@ }@ |@ 1@ 2@ 3@ 2@ 4@ 5@ 2@ 1@ _@ 6@ 7@ 6@ 8@ 9@ 6@ 0@ 6@ a@ b@ c@ d@ e@ f@ g@ 0@ h@ i@ j@ h@ k@ e@ l@ l@ l@ m@ n@ o@ l@ p@ q@ o@ :. :. r@ s@ t@ u@ s@ u@ (. (. s@ v@ w@ ^. x@ ,. s@ =. y@ ). -. ^. -. z@ A@ A@ B@ C@ +. z@ @. &. D@ E@ F@ G@ H@ X I@ Y J@ H@ ` V J K@ L@ M@ H N@ Y L@ K@ O@ O@ P@ Q@ Q@ N Q@ C A I ", +"R@ S@ R@ + + R@ + + # > T@ ; & R@ > U@ > V@ # > & > . & T@ > ; W@ ; ^ | ) | & ; ; > ] ^ X@ Y@ ) | ~ 1 Z@ [ / / `@ # ) { ) .# +# +# < @# b 2 _ { < W@ ## $# < %# < { $# Y@ 7 $# 5 &# *# =# a 6 -# ;# d a e ># } a { ,# c g f '# a e d a b 0 e h )# h !# h h f ~# {# r o ~# n r ~# ]# ^# /# n (# x C w _# Q@ D m I :# ^# C z w N <# P@ K@ [# N }# N A J z x U z I Y O@ N@ Q@ |# T J Y L@ L@ K@ S P 1# 2# 1# 3# 1# J J@ Z @. E@ 4# Y 1# #. . 5# 5# 6# 7# +. +. 8# W . .. . . &. 9# ;. 0# A@ a# !. ;. .. ~. '. b# c# t@ d# v@ v@ v@ v@ :. v@ v@ e# f# }. g# h# i# }. j# g# k# 7. 6. 6. l# 9. m# 4. n# 9. d. 9. o# m# p# c. e. c. d. c. q# q# d. q# i. l. r# r# s# l. t# l. u# v# n. o. q. t. w# q. t. x# y# v. u. u. s. z# A# B# E. A. F. C. C# D# G. G. G. G. G. G. E# K. J. N. M. L. J. F# O. L. S. O. J. J. O. S. S. G# H# I# O. G# F# Y. J# K# `. `. J# L# T. W. I# M# N# #+ N# N# O# N# &+ &+ P# ;+ -+ ;+ &+ ;+ Q# ;+ R# S# T# U# ]+ V# (+ W# X# U# ~+ (+ /+ Y# /+ Z# `# _+ ~+ Z# 1+ |+ `# `# $ |+ .$ 1+ 3+ +$ 4+ @$ #$ $$ 8+ +$ 0+ c+ 7+ b+ e+ d+ %$ 9+ 0+ 0+ 0+ d+ 0+ &$ i+ d+ 0+ 0+ %$ g+ m+ l+ *$ m+ =$ l+ n+ h+ m+ -$ k+ h+ h+ ;$ n+ l+ -$ n+ l+ l+ >$ ,$ s+ '$ s+ w+ o+ o+ )$ x+ !$ ~$ {$ ~$ x+ x+ ]$ B+ A+ A+ A+ A+ A+ B+ A+ A+ A+ D+ E+ y+ C+ E+ C+ A+ ^$ A+ D+ L+ M+ C+ E+ F+ N+ O+ Q+ /$ Q+ R+ /$ /$ /$ /$ R+ T+ P+ S+ T+ .@ V+ R+ R+ V+ X+ X+ X+ .@ ($ X+ .@ X+ _$ W+ :$ <$ @ @@ W+ +@ @@ W+ @@ @@ [$ +@ #@ %@ +@ &@ %@ %@ #@ #@ &@ &@ }$ %@ |$ *@ 1$ =@ =@ *@ -@ *@ 2$ 3$ '@ 4$ *@ !@ )@ 5$ ~@ 6$ 7$ 8$ ~@ (@ 9$ 0$ !@ a$ b$ c$ 4@ ,@ d$ 4@ 4@ !@ e$ f$ 3@ g$ 3@ 9@ h$ a@ i$ j$ 7@ k$ l$ m$ n$ o$ p$ f@ f@ i@ 0@ n@ l@ q$ r$ i@ f@ s$ l@ p@ l@ l@ t$ j@ h# u$ v$ s@ u@ q@ :. t@ w$ w$ :. w$ x@ x$ (. q@ y$ ^. !. -. !. ). b# ^. ). $. ). *. &. &. A@ !. z$ 5# A$ W #. I@ B$ C$ D$ #. E$ Y V S F$ E@ D$ S M@ M D$ G$ J A N@ H$ I$ H$ M J N@ P@ /# P@ ", +"* R@ J$ K$ # L$ M$ # N$ O$ > > & . ] V@ ; # P$ # > & ; ] . Q$ ] ~ ; ~ P$ & ) R$ W@ [ S$ | W@ { T$ ~ W@ ~ ~ ( ;# U$ [ { 2 { { W@ / ~ [ [ ) +# ## $# / : 2 } } { $# < < $# 6 -# $# ( } $# ~# &# e } g $# V$ b b [ 7 / 9 V$ a 6 V$ !# $# 7 j c a W$ o c X$ Y$ e ~# ~# o n h c Z$ c v h h h m ^# D c p `$ Y$ ^# C % ^# ^# I M N C N Q@ M Q@ N x x A G .% I x x Q@ M T J O@ Q@ P@ L@ +% A L@ P@ M@ ` P J L @% I@ Y H@ G$ C$ I@ #% L@ Y @. E@ z$ #. C$ W $% &. R =. A@ A@ $% A@ &. +. A@ =. $. $% =. =. z@ &. %% ^. {. &% ^. ~. x@ (. v@ *% ^. ~. =% t@ -% }. h# ;% g# >% ,% h# 4. '% 8. 7. 8. )% 9. !% m# ~% 9. e. d. c. d. e. c. e. {% e. g. q# g. c. e. v# v# ]% ^% t# o. /% l. j. s# (% q. t. _% :% (% <% t. <% [% }% t. v. |% 1% A. 2% D# D. 3% D# 4% 5% G. 6% G. H. D. 7% 8% J. 9% O. J. S. O. O. S. O. 0% I# T. S. S. G# Q. a% W. H# L# T. Y. W. J# ++ W. ++ b% c% c% L# #+ #+ d% P# e% f% g% -+ ;+ -+ P# -+ h% ;+ Q# =+ i% j% j% ~+ /+ k% ^+ ~+ ~+ ~+ (+ /+ ~+ (+ l% m% n% 6+ m% m% o% p% p% q% r% s% 1+ $$ 1+ 1+ t% 3+ 6+ $$ $$ 8+ @$ c+ $$ b+ d+ d+ d+ d+ a+ a+ %$ f+ 0+ 0+ m+ 0+ %$ %$ d+ u% n+ h+ n+ *$ l+ v% w% n+ l+ j+ m+ n+ n+ m+ n+ h+ r+ h+ m+ n+ h+ x% u+ y% s+ s+ z% '$ o+ o+ x+ w+ o+ v+ x+ u+ A% A+ A+ B% C+ A+ A+ B% A+ A+ C+ E+ A+ B+ C+ E+ D+ E+ F+ C+ I+ C+ L+ C% E+ C+ D% E% L+ K+ Q+ P+ S+ /$ F% R+ G% S+ T+ R+ S+ T+ V+ S+ T+ V+ ($ U+ W+ .@ .@ .@ .@ X+ W+ W+ @@ H% H% @@ +@ +@ @@ +@ +@ W+ +@ @@ +@ #@ +@ %@ #@ %@ I% }$ }$ J% >@ &@ K% >@ &@ L% -@ *@ >@ M% 4$ >@ '@ N% O% '@ ]@ )@ P% '@ Q% R% 9$ S% T% 8$ U% :@ V% |@ !@ b$ b$ 9$ W% l$ |@ ^@ f$ X% l$ l$ Y% a@ 2@ d@ h$ Z% `% 0@ o$ p@ & .& +& @& #& i@ $& %& p@ && t$ i@ p@ m@ j@ r$ t$ j@ *& t$ =& u@ o@ -& m@ ~. ;& <. u@ {. d# u@ >& ~. $. (. ,& z@ q@ c# -. '. x@ '& ;. %. 5# )& &. )& z@ !& 5# 5# .. z@ X P D$ D$ V P #% Y ` Y P P Y +% H H P@ S N w ~& G K@ A N {& H$ C ", +"+ % V@ # % R@ + + ; + > = ]& # ^& ; V@ + - V@ . & ] ] & ] - < ) / ~ ] ] N$ [ ~ ~ ] ) ~ `@ /& ) { W@ ~ ; { ) W@ ; (& | ) / 2 { } [ } ## $# 1 { ( | 4 $# _& $# < :& 6 6 8 ( 8 6 6 a e 9 $# 8 g <& < $# 8 &# e 8 a a g e i f g [& a }& n e e |& a c ~# r r h c h n Z$ `$ `$ _# {& 1& y h `$ y Z$ D :# x Z$ x C I N I I K x x A G 2& M A @% Q@ z }# A I 3# J I Y Q@ 3& Y K@ O@ A L J L@ X J H T U R S E$ #. L@ L@ C$ V D$ F@ #. C$ G@ =. V 4& .. z@ $% !. 5# %. b# %. ). ;. A@ !. ). &. &% 5& 6& x@ 7& v@ 8& 9& (. 7& v@ b# 9& -% ,% ,% }. 4. 0& a& b& 6. ;% u@ 7. 7. 6. 6. 6. ~% m# 6. ~% !% c& 9. d. m# 9. 9. d. e. {% c. i. d& q# {% i. i. e& f& g& o. j. o. n. o. n. n. t. h& i& j& <% v. s. k& x# l& s. y. z# s. z. 1% B. m& D# F. D. C. G. F. D. F. n& L. L. o& p& O. O. N. q& J. S. F# V. W. r& 0% G# F# Y. T. Y. Y. s& T. b% W. ++ b% T. L# s& T. + e% t& u& v& w& x& R# y& ;+ &+ z& g% &+ ;+ !+ A& B& C& D& k% (+ V# E& F& ~+ ~+ (+ (+ (+ /+ /+ _+ :+ :+ G& H& 2+ Z# |+ |+ |+ s% s% 6+ 3+ 1+ $$ 3+ |+ #$ $$ $$ I& e+ t% 7+ 7+ d+ %$ %$ %$ J& %$ K& 0+ 0+ u% *$ 0+ 0+ f+ d+ %$ L& l+ *$ h+ h+ l+ h+ n+ n+ n+ n+ n+ ;$ n+ h+ h+ m+ n+ h+ M& N& o+ s+ '$ s+ O& s+ y% t+ u+ u+ '$ u+ x+ w+ w+ z+ B+ B+ A+ C+ C+ E+ C+ C+ C+ B% P& C+ C+ A+ A+ A+ C+ D% C+ A+ E% Q& D+ B+ R& S& L+ P+ Q+ P+ L+ /$ T& Q+ T+ S+ R+ R+ T+ R+ Z+ T+ T+ S+ U& U+ V& X+ .@ X+ U+ .@ W+ Y+ X+ W& X& `+ +@ @@ @@ +@ .@ @@ @@ #@ W+ _$ @@ @@ +@ #@ %@ #@ }$ #@ %@ }$ Y& &@ *@ Z& `& >@ &@ &@ =@ >@ >@ * )@ >@ '@ R% .* R% ~@ (@ U% S% W% W% :@ b$ 9$ ^@ }@ +* |@ :@ 4@ g$ @* e$ 2@ |@ #* $* d$ %* &* b$ .& ** .& o$ =* -* %* a@ ;* e@ q$ i@ d@ >* h@ ,* '* )* j@ !* l@ *& ~* m@ u$ {* ]* ^* q@ x$ o@ q@ w$ (. (. :. d# =% t@ 5& !. /* x@ !. &. ,& !. -. ). ~. !. =. &. #. .. =. (* .. _* z@ $% z$ I@ P H@ P L@ H@ H@ D$ L@ H H P@ P T S H$ T K@ P@ P@ N A A :* H$ H P@ J ", +"$ <* $ + % + [* ]& % ]& L$ + # }* . ; ]& V@ T@ & |* 1* Q$ U$ ' & N$ - U$ ^ ; # & U@ ] > | ;# > ^ ) ^ [ | { ~ 2 ~ 1 | | 2 { } : 6 ) , 1 /& [ ) { / $# %# %# d 6 7 < *# e ## 6 $# [ } $# / 6 V$ 7 } &# 8 $# ## $# b 8 ~# 6 2* V$ ,# e 3* 9 g 8 c ~# 0 ~# ~# (# _# ~# n ^# Z$ h ~# Z$ p c 0 c p 4* G r y m y 5* D :# :# p t D ^# u N G 6* D x A x D 7* P@ z Y T A S I@ 8* P@ 3# z S Q@ J M@ P@ Y S T M@ 9* J 2& D$ L Z J J .. P P X +. 0* +. $% ;. &. A@ >. A@ +. -. +. A@ !. ). A@ %. x@ $. x@ !. a* '. |. b* =% {. '. c* |. d* ). t@ '. e* c# e# 9& 3. f* f* q@ 4. }. g* 7. n# 6. 6. 7. k# 8. 5. -& 7. h* i* 9. j* k* d. d. e. {% c. c. d. i. i. i. {% f. l* m* m. g& j. l. n* h& o. w# (% o* v. x# p* q* x# x# x# z. v. v. k& E. z. s. B# B. D. F. m& D. D. F. H. r* H. G. 5% 7% 9% G. n& O. J. 0% O. S. J. r& S. Z. S. F# F# F# Q. T. W. ++ ++ ++ J# s* T. ++ + s& b% u& #+ $+ t* u* R# v* R# w* -+ &+ =+ =+ &+ ;+ ;+ D& )+ x* =+ Q# y* ^+ ~+ ~+ (+ /+ ~+ (+ (+ ~+ ~+ /+ z* p% o% H& Y# A* B* C* s% H& r% s% D* E* 4+ 8+ 3+ s% 7+ 8+ t% a+ @$ D* 7+ 0+ 0+ F* 9+ d+ e+ 0+ %$ G* %$ *$ f+ 0+ j+ 0+ H* L& ;$ *$ h+ h+ h+ h+ n+ l+ n+ I* n+ l+ n+ h+ l+ n+ n+ ;$ s+ l+ '$ t+ s+ s+ J* x+ '$ s+ w+ w+ u+ w+ w+ x+ x+ x+ A+ B+ C+ B% B+ K* E+ A+ C+ A+ B+ B% C+ E+ D+ P& F+ E+ E+ E+ M+ E% C+ F+ D+ L* P+ P+ O+ R+ P+ Q+ L+ S+ Q+ S+ R+ P+ P+ G% R+ U+ R+ T+ V+ R+ X+ X+ X+ @@ W+ W+ U+ W+ .@ V+ H% M* .@ X+ @@ +@ +@ +@ #@ #@ +@ +@ +@ +@ @@ #@ #@ &@ %@ &@ %@ &@ &@ %@ &@ * &@ %@ =@ &@ '@ *@ *@ -@ >@ N* 2$ ]@ O* 9$ T% ~@ {@ ~@ P* U% Q* 1@ R* :@ /@ [@ d$ !@ X% S* f$ f$ 6@ 3@ T* %* X% l$ 9@ l$ X% 6@ U* 7@ .& o$ .& V* k@ m$ f@ W* p@ %& f@ X* u$ m@ Y* l@ -& Z* `* t$ o@ u@ -& ^* = W* -& u@ =& s@ t@ x@ %% b# w$ ). ^. v@ ^. z@ 5# (. *. ;. A@ ;. ). ,& 5# B$ .= G@ %. z@ &. z@ E@ H@ @. Z P Z J V E@ 2# ` 1# R M@ S += H@ S M J S Q@ O@ N@ I @= I #= w N ", +"[* # # * & - . - V@ . & T@ . $ V@ T@ V@ V@ > # > - ] $= & `@ . ] |* ] %= ~ ] | < 6 | ^ | ) Y@ [ ;# ~ ~ ~ ~ &= 4 $# / } | : { %= & 2 %= / { d < : < &# ( Y@ &# $# $# 1 d d 6 $# / 7 V$ b b V$ } *= [ a b 9 6 7 d ~# [& b g ~# 6 f a ~# == b c _# c {# c o -= _# ;= ~# p W$ Y$ n j c y Z$ C N q Z$ p ^# C C n N @% m N I z w x >= x P@ w A J I A I Q@ Q@ J A L@ H L Y C$ A G H$ U C$ P@ T H P@ H #. S L@ .= J C$ V 7# C$ I@ +. B$ ,= ,. 5# C$ 7# &. 7# +. . +. '= &. %. b# ;. )= b# b# . {. ~. /. /. d* v@ c* d# ). != t@ ^. t@ q@ ~= c* q@ {= v@ 2. l# }. a& 7. 7. '% 7. 6. ]= f# 7. m# p# ^= /= c. e. c. c. e. d. e. c. 9. (= e. q# q# i. i. i. j. w# /% m* _= k. := n. v# r. n* <= x# (% r. s. s. v. s. v. s. B# B# [= z. z. A. D. }= C. }= C. C. H. D. D. H. G. D. |= 1= M. 2= J. L. V. L# O. 3= S. O. F# F# F# H# H# T. H# T. N# T. T. T. ++ b% N# H# ++ T. + u& t* 4= ;+ $+ 5= ;+ -+ &+ &+ ;+ -+ &+ 6= 7= 8= 9= 0= D& a= (+ X# W# (+ (+ /+ Y# (+ /+ b= /+ m% `# 1+ }+ (+ c= Z# d= `# `# 2+ }+ t% 8+ 6+ I& 8+ 3+ 4+ t% t% a+ e+ 8+ a+ 0+ 0+ d+ 0+ 0+ 0+ G* 0+ e= 0+ i+ K& %$ f+ u% 0+ %$ ;$ j+ j+ l+ ;$ f= l+ h+ n+ i+ l+ n+ l+ n+ n+ n+ m+ l+ >$ n+ >$ t+ g= s+ l+ h= u+ s+ i= u+ w+ j= '$ w+ w+ !$ i= A+ A+ A+ B+ B+ C+ E+ C+ A+ C+ B% E+ A+ I+ C+ C+ A+ D+ D+ E+ E% k= C+ E+ l= N+ S+ L+ /$ S+ S+ S+ L+ /$ R+ S+ P+ P+ P+ R+ U+ X+ V+ V+ V+ R+ X+ .@ R+ X+ W+ m= X+ V+ F% @ n= m= V& @@ @@ #@ @@ @@ +@ +@ %@ W+ @@ #@ #@ %@ #@ +@ %@ #@ %@ #@ #@ +@ $@ o= *@ =@ p= 4$ *@ '@ q= {@ r= s= t= 2$ * 9$ ~@ u= T% (@ R% 6$ v= 9$ w= !@ !@ d$ x= :@ b$ f$ 9@ ** 6@ 2@ 8@ T* y= 7@ .& .& g$ p$ 8@ h$ m$ e@ .& z= A= =* ,* i@ )* u$ *& '* ~* l@ ~* ]* *& -& l@ <. B= u@ C= u@ (. s@ ~. D= (. {* (. (. '& ). ^. !. x@ ^. {. &. A@ *. &. x@ =. v@ A@ %. -. -. .= 5# >. z$ 5# $% L@ P 4# B$ 5# 4# I@ H@ O E= J T P Y S J@ M T M S Q@ @% Q@ F= z A S G z ", +"# ; # G= V@ + R@ + . V@ > # > . # V@ ^ * > H= - 1* . & > & U$ . ]& ] | { ~ ; & & ~ { 2 N$ N$ W@ ~ %# 2 2 < 4 2 ) $# : 2 } { W@ U$ 2 2 7 I= &# $# } $# 7 &# j $# [ 8 8 ( ~# J= $# / { $# e $# &# 7 ~# } &# 6 7 < 6 c g e ,# a e e K= 6 2* e a 7 j l h g c L= (# y g `$ n 0 l m {# r ~# Z$ s p p -= ^# M= `$ m C ^# C C A B ^# N N H$ A N M I z N@ J O@ I N= N M P@ A I Q@ E$ P@ I H S 1# L@ I@ L@ A X H )= H 4# V L@ I@ V V C$ T E@ .. 5# .= I@ +. H W P X O= 7# ). .= B@ C@ &. ). A@ +. 6# '. != ). != d* =. '= ~. '. b# 1. (. {. P= *% _. Q= q@ |. P= }. 2. 3. '% 8. 8. 8. 7. 7. R= 6. f# m# ^= 9. b. 9. d. 9. p# d. c. e. e. c. e. e. q# f. c. i. S= S= S= T= l. U= [% o* V= w# o. i& t. (% W= v. t. s. z. X= z. z. [= B# [= X= Y= m& F. Z= B. 3% H. H. D. D. D. M. 9% L. 8% `= 2= L. O. o& S. S. F# p& O. - S. .- F# J. G# Y. H# L# Y. T. M# K# b% +- b% K# b% u& @- #- #- ;+ B& $- g% g% &+ %- g% *+ =+ ;+ 7= &- g% *- 9= {+ (+ ]+ k% ~+ (+ =- -- X# Y# Y# (+ /+ m% _+ `# m% Z# `# 3+ A* 4+ ;- c= 4+ 8+ 1+ @$ t% t% >- 7+ t% $$ I& b+ 8+ d+ d+ G* b+ 0+ 0+ %$ %$ %$ G* %$ n+ ,- 0+ %$ G* d+ '- f= )- ;$ n+ v% n+ l+ l+ h+ l+ n+ h+ n+ n+ h+ >$ l+ n+ n+ h+ !- '$ )$ s+ s+ u+ '$ s+ w+ w+ s+ u+ x+ u+ x+ u+ ]$ B% C+ A+ C+ B% B% A+ C+ y+ C+ E+ C+ B+ ~- C+ B+ A+ R& C+ O+ {- ]- C+ ^- N+ S+ O+ O+ Q+ L+ O+ O+ Q& /$ /- Q+ Q+ /$ Y+ X+ ($ R+ (- V+ V+ Y+ X+ ($ W+ X+ X+ W+ X+ m= X+ _- `+ V& W+ @@ X+ @@ +@ +@ %@ :- @@ +@ @@ +@ %@ #@ #@ +@ %@ %@ *@ *@ %@ #@ %@ <- >@ %@ [- >@ *@ I% L% o= 6$ S% )@ (@ ,@ T% 5$ +* a$ 5$ {@ /@ R* d$ 4@ :@ W% }- |- 9@ 4@ b$ X% 4@ 9@ 2@ 1- 9@ 7@ 2- %* 7@ ** 3@ o$ o$ h@ m$ X* m$ i@ i@ )* u$ >* =* ~* {* ~* s@ t$ 3- t$ -& m@ C= -& s@ q@ w$ :. '& t$ x$ (. ~. d# >& ^. (. C@ v@ v@ /* x@ ). !. ). x@ A@ 5# $% -. 4- 0# 6# z@ #. ,. G@ .= H 7# .= #. 7# J G@ C$ M@ T L@ Y H@ J J Y L@ ` J S A Q@ Y G I I A I N ", +"= - M$ % ]& V@ # > V@ ^& ] | | N$ - 5- = . > + + 1* ; S$ ; ) . R$ ] H= ] ] & ~ N$ *# | *# ] | | ; ) [ ## $# 6- { ^ < 7- [ | [ [ X@ *# -# d { 4 } < ( / W@ b 6 ( ,# &# 8- d } a < $# 2 b a e *= -# $# $# b e $# e a 7 6 ,# h 9- c o h !# o 3* a c ~# n r c ~# s o L= r ^# r o r h Y$ 0- /# u m t `$ G D `$ I D B G p I C `$ :# /# z A 8* H$ I F= a- b- G Q@ x c- H J H$ J K@ P@ C$ H L L@ H T L@ P@ P@ Y L@ d- H T J@ #. O= E@ L@ R G@ . e- )& f- @. y@ G@ V (* e- 6# +. -. +. 5# A@ !. *. A@ b# '. v@ ^. ^. g- h- 9& v@ 9& ^. |. :. ). ,% *% 9& '. &% 0& 1. 9& q@ ;% ~% }. 6. 6. 8. 7. 6. 6. 6. 7. b. i- !% j- 9. m# m# 9. d. c. e. o# {% {% c. g. q# {% c. f. c. g& g& s# m. l. o. o. k- (% (% w. <% l- t. t. s. s. s. z. z. [= Z= m- B# E. D# F. n- D# F. D. G. D. G. G. o- G. O. J. 2= O. L. J. J. E# J. S. O. O. S. H# p- - Q. Q. H# H# T. T. T. I# K# ++ M# ++ `. K# + @- d% q- ;+ P# &+ d% %- &+ &+ -+ &+ ;+ ;+ ;+ S# =+ ;+ r- {+ ^+ ~+ k% ^+ ^+ s- ^+ /+ Y# (+ /+ W# (+ m% `# Z# Y# |+ t- u- 1+ s% 1+ 4+ v- w- 1+ 7+ 8+ 1+ t% t% 8+ c+ %$ 8+ t% 0+ %$ e+ %$ 0+ 9+ %$ e= %$ %$ *$ u% 0+ G* 0+ 0+ x- y- k+ I* l+ z- n+ n+ m+ l+ n+ m+ m+ l+ n+ l+ r+ m+ m+ n+ n+ A- t+ '$ '$ s+ u+ '$ '$ u+ !$ x+ t+ u+ w+ '$ x+ A% A+ B% B+ C+ A+ A+ D+ C+ A+ A+ B- A+ E+ y+ E+ A+ E+ E+ E+ C- E% C- A+ D+ k= Q+ O+ L+ Q+ R+ S+ E% L+ O+ L+ P+ S+ T+ Y+ T+ T+ S+ S+ R+ V+ V+ T+ X+ W+ .@ W+ X+ X+ Y+ Y+ <$ X& W+ @@ W+ #@ X+ W+ @@ #@ +@ +@ @@ +@ %@ %@ &@ %@ &@ +@ #@ &@ &@ &@ %@ &@ 4$ >@ D- E- * =@ Q% 4$ *@ 7$ I% F- q= G- * Q% R% /@ {@ H- I- 9$ J- X% J- V% e$ :@ ^@ f$ J- X% 1@ 3@ K- 6@ c$ 8@ L- 6@ .& h$ X% a@ m$ m$ 0@ d@ ;* m$ c@ 0@ e@ 0@ i@ >* f@ ^* ^* t$ M- p@ k@ -& m@ N- =& (. O- q@ <. '. P- :. Q- :. b& x$ c# (. ^. '& v@ ). )& ^. A@ >. 5# -. ;. z$ 5# .= E@ R z@ 5# +. V E@ B$ X ` C$ 5# Y T T X T H Y E= J I I P@ M A z H$ A z A N :# A A ", +"& > $ R- + S- R@ + # # 1* Q$ + V@ H= - & - H= ; & - > ] > & - 2 ) ; [* 2 ~ ^ | | | ; 1 ] - ) ) { T- | ## { ~ 2 1 & ) 2 : [ ## < $# -# ## { < 6 7- 3 { -# &# { $# V$ Y@ ( &# :& ) < Y@ ( 7 7 7 7 V$ j U- i 6 7 } : V- n L= $# n L= 7 e ,# g e $# c n ~# o Y$ `$ j h _# L= _# h l n n _# y r _# p r G C C G ^# #= N ^# {& N C N D Q@ S M A Q@ I S A K z H$ M L@ P@ E$ P@ T I #= U L T P@ P@ D @% C$ P@ Y D$ H G@ 4# P =. I@ z$ V C$ X . L@ R 5# )& ). G$ $% A@ '= b# ). A@ z@ &. W- =. &. b# ^. '& '= (. 5& $. 5& v@ {= *% '= {= w$ b# _. :. {= 2. 9& e# e# 7& j# >% X- }. 7. 7. 6. 7. 8. 6. ^= !% 9. 5. Y- 9. e. e. e. e. c. e. c. {% e. {% {% i. f. Z- q# f. f. h. S= t# m. n* o. l. l. o. o* s. i& v. v. k& s. z. [= z. s. 1% 1% `- z. [= F. C. D# C. C. F. F. D. H. H. H. J. E# ; J. J. L. O. S. O. S. p- o& R. p- p- r& Q. T. T. T. F# H# b% ++ K# ++ M# %+ t* s& .+ #+ .; t* 4= ;+ &+ z& +; #- =+ ;+ ;+ &+ &+ -+ ;+ Q# @; x* #; $; ~+ ]+ %; ~+ X# /+ E& (+ (+ ~+ /+ Y# &; `# :+ /+ H& `# s% |+ H& `# ;- u- 8+ 3+ 1+ 8+ 8+ +$ t% $$ b+ G* c+ t% a+ %$ e= %$ 0+ %$ d+ a+ 0+ G* u% i+ %$ 0+ %$ G* *; g+ n+ f= k+ m+ h+ n+ h+ h+ l+ l+ ;$ l+ h+ n+ >$ =; f= l+ h+ h+ M& A- -; '$ w+ u+ s+ o+ w+ w+ s+ i= !$ x+ w+ A% C+ A+ A+ A+ B- B+ A+ A+ A+ B+ A+ C+ ;; E+ C+ A+ C+ D+ E+ D+ M+ E% C- E+ E+ >; Q+ /$ O+ Q+ R+ Q+ /$ O+ k= S+ S+ R+ R+ S+ V+ R+ R+ V+ Y+ ,; V+ V+ V+ V+ X+ .@ Z+ Z+ Z+ W+ H% :$ @@ X+ #@ #@ W+ W+ +@ #@ @@ +@ #@ %@ *@ &@ &@ &@ #@ %@ '; *@ &@ *@ K% ); *@ !; [- ~; &@ Q% >@ '@ Q% {; 5$ R% /@ R% {@ V% {@ O% 8$ N% R% U% ]; /@ @* ^; /; 2@ f$ |@ (; }@ 2@ 7@ 9@ |@ l$ 6@ a@ 6@ _; 7@ 7@ l$ .& =* o$ e@ X* h@ g@ 0@ d@ h@ p@ i@ j@ j@ m@ u@ x$ :; =& l@ -& x$ ^* v@ q@ w$ v@ (. B@ c# /* {. /* 5& w$ (. d# d# '. ;. A@ z@ <; !. . 5# $% (* &. A@ -. 5# =. 5# =. z$ z$ [; }; L@ P@ R H 2# Y D$ P@ I Y H$ |; M J P@ I I I ` H$ z A z I G ", +"+ M$ # . V@ . & + > & . - %= > $ ] - V@ ; S$ > > ; . - > & = R$ (& ] ; & | %= W@ ~ S$ ; X@ ~ ~ N$ ;# 2 ~ 2 | N$ { ) +# 1 { [ } : / ## < ,# d { 1 7 $# } ) ## V$ } : ( $# &# $# ## } 6 } &# 7 } { 9 6 6 8 V$ a g a 7 h g g g e e a e j r a s c 1; c Y$ `$ ~# 2; y h h h h Z$ `$ y Z$ ^# C G y G #= z x A m C m Z$ C P@ x 7* N x M M M@ P@ N@ L@ M I A J S C$ M@ G$ 3; 4; H Y E$ M T U H B$ D$ X .. X H@ z$ @. #. z@ 5# @. @. +. 7# 9* . E@ @. y@ (* . ;. z@ #. +. &. $. 5; -. =. ~. ~. b# A@ &. x@ v@ 6; 7; v@ x@ *% 7; c# h# P= *% {= 8; 9; ;% ;% :. e# f# f# 7. 7. 6. k# 7. ^= 7. 6. i- 0; a; 9. 9. d. d. 9. d. d. e. e. c. Z- Z- i. r# {% {% i. f. g& S= l. n* b; n* w# <= <= p* v. [% r. v. X= z. t. v. B# v. z. k& v. v. c; D# G. D# z# D. H. F. 6% H. G. M. q& `= L. L. O. J. O. F# - S. o& r& J. W. - d; Y. S. .- ++ H# .- b% ++ N# M# M# M# .- b% M# +- e; f; g; R# ;+ g% .; .; &+ )+ &+ =+ &+ &+ &+ Q# !+ h; =+ k% ]+ /+ Q# (+ /+ /+ (+ (+ /+ (+ /+ /+ (+ _+ `# 2+ /+ Z# s% s% H& s% |+ |+ #$ 3+ 4+ 3+ i; 6+ 8+ $$ 8+ j; e+ J& 7+ 0+ b+ a+ %$ %$ %$ 0+ %$ e= G* ,- k; G* u% ,- %$ '- g+ )- f+ h+ n+ m+ l+ l+ ;$ l; m+ m+ n+ ;$ >$ l+ n+ n+ l+ h+ n+ s+ t+ '$ x% J* s+ >$ o+ i= u+ s+ s+ !$ u+ j= A+ C- m; A+ B% B+ B% A+ C+ E+ n; A+ ^$ A+ C+ B% C+ B+ E+ E+ o; Q+ M+ C+ E+ D% L+ L+ E% O+ S+ Q+ T& Q+ R+ S+ S+ P+ R+ G% R+ T+ R+ T+ L+ S+ T+ T+ V+ X+ .@ .@ X+ X+ W+ X+ _- @ W+ W+ X+ @@ #@ p; +@ +@ +@ +@ +@ W+ #@ $@ [- q; &@ *@ &@ %@ ;@ #@ &@ ~; *@ *@ Q% r; 1$ I- N% * '@ ~@ I% * s= s= W% s; /@ w= ,@ t; R* e$ b$ !@ R* ^@ 9$ ]; U% 2@ 4@ |@ |@ X% 6@ u; l$ j$ a@ v; e@ w; a@ 0@ =* x; o$ u$ )* y; p@ ,* >* h@ W* >* >* o@ q@ M- t$ t$ q@ Y* o@ u@ i@ ~. -& l@ :. t@ 7; {. (. s@ 0& x@ &. v@ '. '. *. C@ -. x@ !. !. +. A@ &. A@ B$ -. e- (* G@ +. 5# C$ X B$ .. .= }; L@ G@ C$ 1# S z; P@ H ` ` X S M@ I z H$ Q@ M A I I A x ", +"# L$ . ; R- $= V@ > > = # > & N$ # U@ V@ - ] S$ & > - T@ > |* ; ^ ] ] ] ; | $= | A; ) ) ] ) W@ 2 ^ 5 { | ;# ; ^& J= ) %# | [ [ 1 : ( &# 2 } < == { 5 < : &# } $# [ 6 V$ 9 $# b d ~# X$ } $# b 6 b -# 6 B; a d } ( 1 c o 0 0 g e a 7 Y$ 7 V$ 6 7 ~# n ~# h c h t Z$ _# s p -= n o C; Y$ ,# _# f /# D _# `$ s O@ m % {& B Z$ ^# m D; N G B I A @% M O 7* A J P@ E$ H$ A S A A M E; T J J M J H T G$ P L@ W R P H 4- @. T E@ .= X 5# W @. z@ .= W A$ 5# )= F; A@ ;. ). C@ G; '. $. ). ). ,. ). '. !. h- !. /. =% 8& 7& /* /* |. H; 9& |. 8& {= X- s@ s@ g# g# }. ^= 9; 8. 8. 9; 6. '% '% 8. I; >% !% ^= ~% d. 9. d. d. e. e. {% {% e. e. {% q# q# Z- i. q# g& S= J; f. p* l* K; o* o* L; W= u. v. (% v. t. s. t. t. k& z. v. [= z. s. M; 3% D. B. N; O; P; F. G. 6% G. D. G. H. 9% J. L. L. N. L. E# O. q& p- O. Q; F# F# Q. O. F# H# .- .- ++ ++ ++ + R; Y. b% .- t* b% #+ `. b% d% ;+ u& R# d% &+ =+ =+ =+ -+ &+ 7= D& S# *+ 0= *+ S; T; X# <+ /+ Y# Y# Y# /+ /+ /+ b= /+ Y# Z# Y# Y# Z# s% 1+ 6+ 1+ s% s% @$ 4+ I& 8+ 8+ 1+ +$ D* 7+ @$ 0+ t% 8+ c+ e+ 0+ G* d+ d+ d+ u% 0+ e+ d+ f+ %$ u% u% G* U; '- j+ *$ n+ l+ n+ m+ l+ k+ f= m+ n+ m+ n+ n+ l+ n+ l+ =; m+ h+ '$ s+ t+ V; W; {$ t+ '$ w+ w+ o+ u+ x+ w+ x+ A% C+ B+ A+ B- C+ A+ w+ B+ B% B+ A+ C+ D+ E+ y+ E+ E+ E+ F+ A+ Q+ X; C+ D+ C+ Y; P+ Z; L+ S+ S+ Q+ L+ R+ R+ P+ R+ R+ Q+ P+ G% R+ T+ G% /$ V+ .@ X+ W+ W+ U+ X+ X+ Z+ `; @ X& X+ .@ W+ X+ `; +@ W+ @@ @@ @@ #@ #@ +@ #@ +@ %@ *@ &@ %@ > > <- &@ ~; I% '@ *@ >@ * t= .> U% 7$ * +> >@ )@ * U% * '@ {@ /@ !@ R% V% v; }@ @> W% S* @> X% X% X% /@ 8@ 6@ 6@ m$ o$ m$ o$ a@ Y% 0@ X* ;* -* 0@ )* e@ ;* u$ j@ && f@ ~* l@ o@ i@ n@ p@ l@ l@ u$ m@ 3. j- O- <. =& -& q@ q@ ^. x@ u@ #> v@ d# u@ B= ). &. {. {. !. !. &. -. -. A@ 5# $% &. 5# A@ C@ A@ #. z@ . R #. X $% $> 4# J F@ H@ M J I@ H@ H S %> S Q@ L@ J M J P@ 7* &> K@ M= I z ", +"+ # $ $ R@ # & + # T@ = ; = Q$ R@ ^ > > U@ ; - > > > + S$ & { ] ; [ ) ~ ] | N$ N$ | ~ < [ ^ ) ^ # { ## ; ~ *> , : [ [ ~ ~ 2 : < ] : $# } X@ } *# < [ $# < ## &# V$ : b 7 6 a j &# => V- 8 =# =# V$ -> -# 3* 7 ;> 7 0 h :& i c o e a e i >> a ,# ,# ~# h *= 7 0- ,> ~# r Y$ Y$ p h r `$ c C; y y '> h D M= C G D ^# F +% C C G G A A N C K N O O@ M I U M@ E$ J S D$ )> K@ 8* T L@ P@ X T T L@ I@ H Q@ Y L@ ` D$ O= X R H B$ $% 5# +. W )= #. !> O= z@ A@ . (* ;. ;. &. =. =. ). =. =. {. (* $. '& /. {. v@ {. |. {. |. {= t@ P= j# e* v@ e* Q= h# a& a& a& ~> g# k# 9; ;% 6. 4. 7. 8. 8. 6. ^= Y- e. 0. {> m# 9. d. e. e. 9. {% c. e. ]> {% {% c. f. Z- i. ^> /> m* l* n* K; J; n. s# n* (% (> <% [% o* v. v. s. v. s. u. s. z. _> :> <> Z= 3% F. D# [> 4% H. G. 6% H. H. H. 5% q& F# J. `= O. S. O. O. S. @+ V. L# Y. S. O. F# S. }> b% F# |> ++ T. ++ b% ++ ++ t* b% 1> M# f% #- #- g% &+ u& 2> 7= &+ ;+ *+ ;+ 7= 3> =+ =+ ;+ r- 7= #; ^+ /+ 4> (+ (+ 5> b= /+ ~+ ~+ (+ /+ c= `# Z# /+ _+ s% s% :+ _+ 1+ `# I& @$ 3+ #$ 7+ 3+ I& t% 7+ 7+ %$ 0+ 7+ e+ d+ d+ d+ d+ d+ %$ %$ d+ %$ 0+ *$ u% f+ i+ G* e= g+ l+ l+ 6> l+ l+ l+ q+ n+ l+ l+ l+ n+ n+ n+ n+ n+ n+ >$ ;$ h+ -; s+ s+ >$ W; 7> '$ s+ !$ !$ 8> s+ w+ w+ v+ 9> x+ C+ A+ A+ A+ B% y+ C+ A+ A+ A+ E+ D+ E+ n; B+ C+ C+ E+ C+ E% E% E+ E+ E+ 0> N+ Q& O+ a> O+ /- P+ S+ L+ S+ R+ R+ T+ /$ R+ V+ Y+ T+ S+ T+ .@ U& W+ W+ U+ W+ W+ U+ X+ U+ _- b> X+ `; W+ @@ W+ W+ @@ +@ @@ +@ %@ %@ #@ [$ #@ &@ #@ p= c> [- *@ *@ #@ %@ &@ -@ 4$ p= >@ q= d> e> * P* f> )@ /@ 9$ H- ^@ :@ T% S* 9$ !@ g> 3@ ^@ L- 4@ W% h> X% l$ f$ i$ 2@ 8@ ;* 8@ v; f$ 7@ 0@ X* c@ o$ o$ d@ %& t$ )* g@ +& r$ :; i> s$ {* t$ p@ m@ a. l@ `* =& i> u@ j> u@ ;& k> u@ ~. ). ~. w$ a# {. = w$ (. 5& x@ (. t@ -. {. l> ). !. ). 5# *. !. &. z@ =. (* m> $% E@ a* .= Z E@ n> .= G@ B$ U K@ E$ H Y H E$ o> P@ J P@ L@ H ` H P@ :# I 8* M I ", +"> V@ - * # > Q$ + . . ]& ; $ > + . ; & H= `@ ] - . ] + ~ $ V@ ^ ; Q$ | ~ | N$ | ] { ; ] ~ ~ ~ $# Y@ ] ; $# ) { *# ~ ) ( p> } 6 ## { [ } $# 2 ## &# ## ) : 6 $# < : ( : ~# 2 8 9 e } $# 0 q> ># 7 b } 7 g 6 -# 1 0 ~# e ~# 0 r> J= g h j V- e e n g 7 a '# }& Y$ c Y$ r s> Z$ `$ Z$ Z$ r `$ q G `$ % :# C Q@ A G F 7* E$ D P@ |# I K I z A x w H C A H$ I H S Q@ Y E$ I Y Y M A ` t> C$ 3# C$ I@ T D$ P L@ T C$ T D$ L@ D$ C$ 5# 7# +. E@ +. 7# 5# . . 4- . z$ !. . A@ 5# ;. x@ A@ b# *. . {. u> '. b# v@ ). v@ /* t@ -% _. 9& 9& 1. :. v> 9& d* h# b& a& }. X- 9; 7. }. 8. 9; 8. 7. g* 6. ^= 0. 9. b. 9. d. e. e. e. c. e. w> e. c. c. c. c. d. f. c. q# q# r# l. x> j. o. x> w# n* n* v# o. t. y> (> w. z> v. v. s. 1% t. z. X= A> Z= B> B# }= 4% Z= P; C> D. D. G. G. H. n& L. S. J. `= O. F# J. H# D> L. o& F# Q. Z. V. H# Y. Q. T. H# 1> H# s& ++ t* b% b% ++ b% E> s& u& u& c% 7= &+ f% g% -+ =+ ;+ ;+ 7= 3> 3> F> F> ,+ 9= G> *+ j% /+ a= H> /+ I> Y# b= W# /+ Y# (+ b= |+ o% b= c= s% 1+ |+ s% J> 1+ 1+ 3+ ;- 6+ 7+ @$ @$ @$ 7+ t% K> 0+ 7+ b+ 0+ %$ %$ d+ %$ a+ 0+ %$ 0+ %$ -$ f+ %$ )- G* k; 0+ n+ ;$ g+ j+ ;$ ;$ h+ L> l; ;$ l+ l+ ;$ m+ h+ r+ n+ ;$ s+ n+ n+ s+ s+ j= x% 7> t+ s+ w+ x+ x+ M> N> {$ !$ w+ w+ A+ C+ A+ K* B% A% A+ C+ A+ B+ C+ A+ J+ A+ C+ A+ E+ ~- D% C- L+ M+ O> A+ D% S+ P> L+ Q+ E% R+ S+ R+ /$ P+ R+ R+ T+ G% Y+ X+ V+ T+ V+ Y+ U& V+ W+ X+ @@ W+ @@ X+ X+ X+ .@ Q> W+ W+ W+ @@ W+ W+ +@ #@ +@ +@ +@ +@ +@ +@ +@ %@ %@ ;@ R> #@ *@ *@ *@ %@ *@ S> $@ >@ `& ,@ H- '@ =@ q= ~@ q= * :@ +* T> H- {; R* 9$ {@ U> !@ R* 4@ e$ 4@ f$ }@ X% X% 3@ 6@ 9@ 6@ 8@ l$ i$ c$ h$ 3@ g@ >* ~* q@ m@ -& l@ -& q@ B= q@ '& ^. = x$ w$ c# (. B@ V> w$ ^. d# _. t@ !. '. = {. q@ ^. x@ ,& '. {. b# {. {. W> B= = :. '. x@ ). !. ). &. &. .. A@ e- &. A@ 5# 5# +. &. @. 5# }; X 4# @. G@ H@ T X> J R }; H P A O S H$ J J@ A A G H$ |; Q@ I ", +"* & V@ . V@ # % + R@ [* . R@ + > - - ' $ ; ; . # ; U@ . * # ] V@ > > ] ] *> ; 2 ~ ~ ^ X@ 2 -> *# 2 2 N$ N$ ; N$ / 2 N$ [ == : &# 5 5 ## [ *# : ## { [ $# | | } 2 < a $# -> V$ ) W@ b b &# [ Y> == b 6 b } d b b 7 -# b 6 8 6- q> c a j r ~# c Z> i ~# o *= 7 o ^# ^# L= N p C; ^# m _# h p y p p n `$ x D w s 6* M C I :# C a- {& M= G I A P@ P@ K@ M ^# G P@ L M I L 8* J J Y P@ I@ H L L P G@ 9* D$ 4# L@ P H T I$ J M@ U @. X .= G@ 5# (* . . +. %. A@ 6# ). -. =. ;. =. *. A@ +. =. A@ -. '= 9# &. '. |. 5& ;. |. 1. `> ~. v@ , 8& t@ :. c* , s@ b& b& ., P= e# 8. 4. a& }. R= 6. 7. +, 6. 8. 9. m# 0; Y- 9. e. d. e. {% d. d. e. e. c. c. c. i. i. {% f. g& f. l* f. u# (% J; n* (% t# p* v. q* := r. (% @, v. z. s. k& v. _> s. s. z. A> #, H. $, z# 9% G. H. `= D. D. D. H. K. L. L. Z. o& J. O. S. H# F# S. F# Q; a% F# O. F# T. ++ Y. L# ++ ++ b% q- +- $+ b% s& #- +- u& b% $+ &+ ;+ -+ &+ &+ -+ &+ =+ 7= ;+ ;+ F> S# 7= r- D& ,+ -- %; %; (+ (+ /+ Y# ~+ (+ Y# Y# %, b= |+ 2+ Y# %, s% }+ %, 1+ }+ |+ q% s% s% r% 3+ ;- 6+ t% 8+ b+ %$ F* 7+ K> G* %$ 0+ %$ %$ %$ G* G* %$ u% )- G* 0+ j+ G* &, *; h+ U; j+ l+ *, n+ n+ l+ l+ L> l+ l+ ;$ n+ >$ =, n+ l+ l+ n+ o+ u+ s+ '$ w+ u+ s+ '$ x+ w+ M> '$ w+ w+ x+ '$ C+ A+ A+ B% B+ B- A+ C+ C+ B+ B+ A+ A+ D+ B+ C+ E+ C+ J+ E+ C- O+ M+ C+ F+ 0> Q+ L+ L+ Q+ Q+ R+ R+ R+ S+ R+ L+ S+ V+ T+ U+ T+ T+ R+ R+ T+ T+ T+ .@ U+ U+ W+ X+ W+ Y+ T+ -, ;, @@ W+ +@ +@ W+ W+ V& @@ @@ #@ #@ +@ &@ &@ +@ p; #@ %@ &@ *@ &@ *@ > *@ *@ &@ ~; 1$ 4$ R% T% * Q% ]@ N% ~@ O% >, W% ~@ T% {@ s= 0$ !@ b$ !@ R* 4@ }@ }@ b$ :@ l$ |@ l$ v; 6@ a@ w; d# R b- Z> : %# ,, ', ', 1* ), !, ~, {, ), ], <* ^, ], <* % ), ,, /, S@ ), ^& ^& W@ # (, _& _, :, v <, V L@ #. )& %% '. {. -. c# {. ). )& -. &. )& [, =. B$ )& *. ;. X . z$ 5# e- 2# 4# G@ z@ H@ C$ L@ H@ Y C$ Y A ` S U K@ I$ S A J@ J +% K@ G P@ M@ O@ M ", +". > !, . # + + ' # }, Q$ = # # $ U$ Q$ S$ # # U$ ; > N$ V@ > Q$ ' . $ ; ~ N$ N$ O$ W@ | [ ~ ~ ( ## ) ~ ] 4 ] ## W@ U$ ~ ] ) ~ ( : < ( $# &# ) [ / { 2 : ~ { ~ |, 5 0 a $# ## ( $# V$ [ $# $# d 6 /& { 6 $# 6 9 -# ,# 7 V$ b } ~# 0 o 8 7 e c 9 V$ 7 r L= c ~# c _# p 1, -= }& <, s> % D m p F= `$ 2, _# y w 3, t Z$ G N C M t N 4, w z x Q@ N I P@ S J I N Y P@ Q@ N E$ 5, H +% J P J S S I@ C$ J R Y C$ Q@ C$ Q@ L@ L@ L L@ P T V C$ E@ $% 4& +. 5# b# $% -. %. +. z@ 6, %. A@ .. *. *. '. &. ^. 7, ;. &. '. /. 8, d# 9& ~. ^. ~. ~. 9& v@ t@ h# 9, h# ,% j# s@ 9; 7. 0, f# 8. 2. 9; 6. 6. 6. ^= 7. 7. 0. m# Y- Y- e. d. c. e. {% d. e. c. c. c. h. i. i. g& q# i. i. f. g& g& v# o. (% o. o. n* o. y# v. q* u. n* s. v. v. z. s. A> A# k& A# m- [= a, H. b, 3% H. 6% G. G. H. F. G. 6% c, O. S. J. 3= d, o& J. S. S. S. S. S. S. H# d; .- F# b% t* s* b% ++ ++ s& t* b% s& q- #+ `. N# c% $+ 7= =+ $- .; $- =+ =+ ;+ ;+ g% =+ =+ #; S# e, F> S# y* ]+ S; /+ (+ /+ W# b= Y# Y# Y# /+ (+ /+ `# 4+ W# Y# A* }+ f, 1+ t- |+ |+ g, I& 8+ #$ 4+ t% 7+ 7+ h, 0+ $$ c+ %$ 0+ K> G* G* i, %$ G* %$ i, j+ ,- e= f+ u% j, x- h+ -$ j+ n+ U; n+ h+ l+ h+ n+ ;$ l+ n+ l+ l+ h+ n+ ;$ l+ n+ >$ w+ '$ t+ '$ w+ s+ '$ '$ w+ x+ '$ u+ x+ !$ s+ B% C+ B% C+ A+ B+ B% B+ A+ k, B+ A+ A+ E+ K* B+ C+ C+ A+ E+ k= X; L+ A+ D+ 0> N+ Q+ O+ P+ S+ S+ R+ S+ P+ L+ P+ T+ S+ P+ S+ R+ R+ T+ R+ R+ T+ T+ U+ .@ .@ U+ .@ Y+ @@ @@ X+ -, +@ +@ W+ W+ +@ @@ +@ #@ +@ @@ #@ #@ +@ %@ %@ &@ %@ %@ %@ *@ *@ &@ l, 4$ &@ m, S> -@ ~@ *@ * `& (@ '@ ~@ O% T% 9$ 6$ !@ t; {; u= O% V% @* ^@ 4@ :@ W% |@ /; n, o, |@ 4@ 3@ l$ ** p, 7 . q, ], r, s, t, s, u, s, s, v, w, x, u, x, y, x, u, x, s, x, z, t, x, s, x, A, A, s, t, x, s, v, s, x, s, q, V@ <, &. ^. c# x@ !. !. z@ !. !. &. A@ ). ). =. A@ .= z$ &. E@ z@ (* .= z$ P P L@ L@ P P }; B, T C, J P S H A P@ L@ P@ S S H$ O I H 3# G A ", +"M$ ; R@ ^& T@ $ % V@ > S$ > ; V@ # U@ + Q$ > > & ~ ] & %= ] 1* & ] ~ ) ~ ^ ; `@ N$ ) ] | ) ) ; ; ; X@ X@ W@ U$ [ ) { ) ) / | ~ ~ } { *# 9 [ { ) [ 2 : : 2 { , $# &# D, 6 $# J= $# b &# < J= 6 6 Y> i e *= a b V$ 6 d q> a q> !# L= i c ~# E, c 0 n j 0 ~# n L= ~# r Y$ ^# _# m _# D `$ r o m ^# h ^# Z$ ^# C C p D w I w P@ t 4* P@ x Z$ G x G x C G S H$ I S A H$ H A Z A M L@ 1# L Q@ L@ L@ D$ C$ C$ Y z$ G$ P L@ E$ M@ V L@ R W E$ Y .. A@ C$ z@ . ). B$ 7# $% T #. &. )= z@ .= *. ;. F, =. 5# &. =. {. {. ). !. {. /. ~. ). !. ^. (. v@ 1. 3. s@ *% {= j# ,% h# ;% }. g# 7. a& 9; g* 6. 6. 6. 7. 7. ^= p# m# 0. G, 9. d. d. 9. e. {% c. {% {% c. f. i. q# r# {% f. g& f. H, J; I, V= J, _% x> <= r. m. <% w. p* v. l& v. [= t. t. v. y. z# m- m- X= m& D# b, 6% G. F. 6% H. 6% H. 6% K. S. c, O; K, O. F# S. F# O. S. S. S. F# H# F# H# d; ++ T. b% $+ s& ++ s& s& s& b% ++ e% .; c% u& L, ;+ =+ &+ f% 2> ;+ =+ &+ M, &+ ;+ &+ !+ a= 7= N, ;+ ]+ /+ A* k% O, /+ b= b= (+ Y# b= (+ Y# Y# p% `# /+ -- |+ |+ 3+ t- g, u- s% 1+ I& s% 7+ g, +$ t% 8+ I& 7+ 7+ K> %$ a+ a+ %$ e= G* %$ e= %$ e= e= u% e= %$ j+ j+ U; g+ n+ 0+ ;$ P, Q, v% m+ n+ ;$ n+ n+ h+ l+ l+ r+ n+ h+ l+ n+ =$ J* '$ t+ s+ '$ )$ '$ s+ !$ w+ R, j= u+ u+ o+ S, A+ C+ A+ B+ C+ C+ B% A+ C+ C+ C+ C+ T, A+ A+ A+ C+ A+ D+ M+ C- Q+ C+ E+ D% ;; O+ O+ E% P+ /- S+ R+ R+ Q+ S+ /- S+ S+ R+ V+ ($ S+ R+ R+ V+ T+ .@ X+ X+ .@ +@ #@ W+ @@ X+ X& H% @@ %@ V& @@ +@ W+ +@ +@ +@ @@ %@ #@ #@ +@ &@ %@ %@ &@ %@ %@ > E- U, V, $@ -@ 4$ !; W, ]@ 7$ * '@ Q% 4$ )@ T% ]; N% w= ,@ {; O% /@ b$ 2@ :@ }@ R* 9@ |@ X% 0$ 4@ |@ X, Y, 9@ 5# 1 Z, J$ `, x, v, ' s, v, t, ' u, A, x, x, x, .' z, s, +' @' z, u, s, s, s, y, z, s, y, x, x, s, t, z, x, #' s, +' $' z@ ,& %' ^. !. ;. z@ A@ x@ ^. =. !. =. =. .= !. 5# &. 8# A@ +. 5# D@ L@ H T P H@ V 2# D$ H 7# L@ &' 2# H M M@ J J M@ H H M Q@ N I 6* I ", +"+ # # - }* . # ), # - Q$ ; - - > > + . *' & ] =' ~ - N$ 4 U$ ) ) & U@ ] > - ^ ] { 2 ! ; X@ < R$ 7- [ ) ## : { ) ~ { d ) U@ { [ ## 7 / ] { _ ~ $# :& } : ~ ( } &# $# $# &# d /& { 6 / e &# 6 e b *= e a ~# 6 } a ~# ~# e h n n a c c i ,# a V$ r o Z$ h `$ m % p Z$ p q ^# m `$ ,> `$ D /# r r D G C C G B G y M= N Q@ S |# O@ S I A G P@ J N |# P@ 3; P@ O E$ M P@ T D$ M@ K@ L@ Z J P@ H ` H$ L 7# K@ P I@ 4# I$ 2# X V d- Y $% a* )& +. =. ,. )& 7# 5# A@ A@ +. .. z$ *. !. 0# -' &. A@ ). $. ;' &. a# {. 9& ). 9& v@ v@ `> >' {= e# t@ a& 8& j# , t@ q@ ~> 8. ;% a& 9; 0, g* 4. 9; 7. 6. ^= 6. 9. ,' 9. {> '' 9. d. c. e. e. 9. {% c. Z- c. ^% q# q# Z- h. q# S= o. g& J; w# l* n* p* H, )' v. s. <% (% <% v. v. s. s. z. A> k& c; z. c; A. C. D. D. !' 4% 6% D. G. 6% 6% ~' E# J. N. {' ]' Q. S. Y. S. .- S. F# F# F# F# F# F# H# T. ++ .- .- b% b% W. t* ^' +- f; #+ T. t* .; /' z& z& (' (' 7= 7= )+ (' ;+ =+ =+ =+ =+ _' :' F> *+ {+ <' [' {+ (+ Y# (+ Y# /+ Y# Y# (+ b= Y# &; s% /+ Y# |+ 1+ 5+ H& 1+ |+ |+ +$ 1+ s% t% ;- 5+ 7+ 7+ 8+ x- a+ 8+ c+ %$ d+ 7+ 0+ 0+ e= 0+ k; %$ e= ,- G* e= ,- f= %$ }' g+ ;$ j+ ;$ l+ n+ ;$ ;$ |' g+ l+ h+ l+ ;$ l; l+ l+ l+ n+ s+ t+ t+ 1' s+ 2' u+ s+ '$ u+ x+ w+ )$ x+ w+ w+ x+ B- B+ B+ B+ B+ A+ A+ B% C+ A+ C+ C+ B+ B+ C+ E+ C+ >; D% l= E+ {- B+ D+ E+ k= E% O+ O+ N+ /- P+ P+ R+ L* P+ S+ R+ T+ V+ T+ U+ T+ T+ T+ T+ .@ V+ Y+ Z+ X+ +@ @@ Y+ @@ Y+ H% W+ V& #@ @@ @@ @@ V& #@ +@ +@ &@ +@ @@ @@ Z& :- $@ ~; ~; %@ &@ &@ >@ >@ 1$ U, -@ > * G- ]@ e> Q% I- )@ 3$ q= T% (@ ^@ 3' 0$ 4' :@ ~@ 9$ X% 2@ ^@ 4@ 9@ 3@ 9@ (; u; x= 4@ 3@ i$ 7# *# # ], 5' 6' 7' s, 8' u, x, s, s, y, y, y, y, y, u, u, x, s, x, u, s, s, x, v, y, y, y, s, s, y, u, x, x, r, v, +' !, 4& ,& ). ,& w$ A@ A@ x@ x@ '& e- 5# *. -. z@ z@ 4- *. +. E@ G@ R z$ G@ 1# P Y J@ 9' . 1# 2# P ` H$ H H@ P@ M@ ` 8* P@ Z S M M@ ^# A I E$ ", +"!, > @ . + # T@ + > V@ . T@ 0' ]& ; . ; - . ; $= ] $ 1* 1* H= N$ %= 2 ; N$ Q$ > & ; | ~ U@ ~ ] U@ 2 { ] | W@ ( { W@ | ^ 2 2 / ~ < 2 < { d (, $# &# $# : { U- ,# } ~ { [ :& e == j ~# { $# &# V$ 7 == d e a c a 8 6 8 0 a e ~# Y$ _# o a' a ~# a c a ~# `$ h e `$ r ^# r Y$ p o `$ 1, p b' D q r p n l `$ G G <, C [# x z D K w A M x ^# A 8* c- A N G K@ A M &> M Q@ c' A T T P@ P@ 4# d' M@ I@ E$ 2# L@ T W 2# U C$ G@ J P C$ H P @. L@ H 4# y@ G@ $% A$ &. E@ P #. . ). _* )& ,. A@ =. '. -. ). {. ~. b# p, '. =% '. %% {. {. e' 9, *% -% {= P= Q- 3. P= h# e# a& a& 4. 2. f' k# f' f' g# f' g' ^= ^= a; ]= ~% d. !% !% d. e. {% e. {% {% {% {% Z- {% {% i. i. {% Z- h. /% n* l* S= n* f. n* k- h' (% o. <% w. o. r. v. t. s. z. [= s. z. A# z. [= Z= A. $, F. r* D# G. H. G. 6% 6% G. 2= p& O. J. D> S. O. F# S. i' O. F# S. H# H# H# F# .- .- T. T. 1> b% b% s& M# s& t* b% %+ I# `. @- #+ t* x& ;+ &+ 7= =+ 7= 7= ;+ ;+ 7= =+ =+ =+ =+ @; 0= #; j' Y# X# W# /+ (+ (+ (+ /+ b= Y# k' Y# b= 3+ b= /+ 3+ 1+ H& }+ 1+ H& u- ;- B* 1+ 1+ l' |+ @$ t% 8+ I& b+ 8+ t% e= 0+ 0+ %$ %$ G* %$ 0+ %$ %$ j+ m' %$ %$ j+ G* G* y- ;$ l+ j+ l+ ;$ l+ |' l+ m+ n+ l+ n+ l+ h+ g+ n+ m+ n+ s+ t+ '$ s+ '$ r+ u+ n' u+ o+ x+ w+ i= w+ u+ i= u+ A+ A+ B+ o' A+ B+ B+ A+ E+ C+ B+ C+ A+ A+ E+ E+ C+ A+ C+ C+ C+ Q& E% A+ D+ F+ k= O+ P+ R+ S+ P+ /- /$ Q+ P+ S+ T+ S+ L+ T+ .@ V+ R+ R+ R+ Z+ V+ T+ T+ T+ .@ X+ X+ .@ F% V+ @@ W+ @@ @@ @@ +@ #@ +@ @@ +@ :- +@ #@ #@ [$ &@ p' }$ ;@ %@ *@ >@ &@ >@ =@ $@ -@ &@ 7$ I% s= q' p= R% I- P* T% q= R% @> !@ W% 9$ d$ P* 9$ e$ d$ v; X, S* :@ 4@ W% X% f$ 9@ a@ r' I | s' 5' 6' v, s, x, u, u, s, s, s, x, y, y, x, x, y, u, z, x, s, z, y, u, x, s, y, y, y, y, y, y, u, u, z, u, x, u, `, J@ {. x@ !. /* &. !. &. ). &. &. ;. A@ z@ +. -. >. 4- .. [; A@ B$ 7# R +. E@ .= P Y 7# D$ H@ T T P S z M@ M@ +% N@ O@ Y Y I A F= O@ I %> ", +". > U@ > + > $ R- V@ & N$ . R@ . > # ^ > $ ; & - - ; & & > 1* . & | ) > . ; ^ W@ ) ~ - `@ ~ ( | W@ ## W@ / 4 | | / [ | { ) { Y@ { -# ~ ) X@ ~ / 2 ## $# } } J= ( 7 &# [ a a k b / 6 g 7 ,# *= a 6 6 } V$ 8 7 9 g a 0 c e 0 a ># ~# h e n v K= 8 c c _# o r ~# t' h o c ^# D 9- `$ h n }& `$ Z$ w `$ D M w w a- G A Q@ E= A A 8* A w x )> G M@ Q@ M %> M S K@ P@ Q I@ P L T C$ H Y H J H$ G$ H@ T E$ H R I@ @. X #. #. T C$ #. $% .. +. (* z@ e- #. ,. 0# ). >. {. C@ z@ '. &. )& /. ). =% %% ]. &% '. =% =% `> u' ;. {. ~. *% ^. {= P= _. {= P= P= h# h# a& a& 7. g# a& e# }. g# 9; v' 7. 6. 6. 6. 0. b. ~% 6. 9. w' c. e. d. c. {% e. {% c. {% h. q# g& {% i. U= o. v# l* (% J; w# o* (% p* (% (> s. [% (> y> v. v. [= s. m- m- A# X= z. z# A. 3% D. F. [> D. D. G. G. D. G. 5% E# 2= S. O. `= x' S. J. F# x' - S. S. F# y' H# 1> .- s& ++ H# H# ++ T. %+ z' d; c% @- c% M# `. u& s& x& ;+ ;+ &+ =+ 7= (' ;+ 7= =+ g; 6= 7= A' *+ B' C' _' [' b= %; /+ /+ ~+ D' b= b= ~+ W# (+ Y# b= 4+ b= 2+ `# |+ %, f, ;- d= E' ;- 6+ @$ t% ;- 1+ 3+ 7+ t% e= a+ t% c+ t% b+ %$ %$ %$ d+ %$ %$ e= u% j+ f+ G* ,- 0+ U; f= l+ l+ j+ l+ h+ h+ h+ h+ n+ l+ l+ l+ ;$ n+ l+ n+ h+ r+ s+ y% t+ t+ t+ '$ o+ F' o+ '$ u+ w+ '$ s+ i= w+ w+ A% B+ B% C+ B+ B- B+ B% A+ A+ B+ C+ C+ C+ C+ E+ E+ A+ E+ C+ E+ S& L+ E+ D+ D+ E+ Q& /- S+ L+ P+ T+ S+ G% /$ P+ P+ S+ Q+ R+ R+ V+ T+ R+ R+ V+ T+ V+ Z+ V+ V+ @@ X+ X+ +@ F% X+ G' X+ W+ +@ }$ H' +@ @@ #@ #@ &@ #@ %@ &@ D- #@ %@ .* &@ %@ &@ #@ &@ *@ .* Q% I% 7$ Q% >@ * >@ *@ 5$ S% I' (@ Q% 0$ !@ I- J' ,@ 9$ }- !@ !@ V% f$ 9@ f$ |@ 9@ K' /; c$ v; W* G | J$ 5' 5' v, s, x, u, x, u, s, u, u, y, y, y, z, u, y, s, x, u, s, z, x, s, u, y, u, u, y, y, x, y, y, y, u, y, x, 6' Z W> b# -. {. w$ A@ !. -. &. &. 5# B$ V> . z@ !. F@ &. @. .= X G@ +. e- z$ C$ G@ V P G@ P H ` L' E$ @% S H 8* Y P@ A J A E$ A O@ ~& P@ ", +". $ > ~ > > $ ]& + & + $ S$ ; ; U$ > ] & > # ; - S$ S$ |* }* & ~ ; ; 2 | > ~ [ [ W@ ] ; 2 ~ ## U@ ~ ; [ ~ U@ ~ | { ~ ## d | / 7- [ /& 6 / 1 < +# M' &# 2 [ } $# $# $# 0 7 $# a ## : b &# 2* [ N' 6 8 b 7 $# e *= e b e j c ~# ~# i o e 7 e ,# c a e o r W$ n n s> t `$ Z$ r `$ Y$ r `$ s r O' % :, z ^# D N ^# A ^# G G p E N A I O@ G O@ E$ P@ Q@ A M P@ P@ |# H Y A D$ J L@ 4# P@ J T S C$ Y S H J 7# Q #. V P' z@ z$ H@ E@ z@ Q' (* *. #. I@ . G@ -. R' $% 0# . *. ). A@ p, A@ =. !. ]. ). 5& &% {. ^. !. d* S' |. '. |. |. v@ 8& T' *% (. :. h# v> _. j# j# h# f* g# f# 8. u@ l# n# U' ^= ^= 6. 6. ]= Y- m# ^= V' c. d. e. Z- {% c. c. {% h. Z- Z- c. i. Z- c. f. {% W' l* /% m* x> o. p* b; W= n* y> z. W= p* `- [= m- A> X= s. z. [= [= N; A> X' D. P; n- D. G. G. O; O; 6% H. `= L. O. J. E# `= F# H# ]' 0% - S. O. S. O. T. 1> d; 1> ++ .- .- s& ++ s& +- s& t* K# b% s& #- /' q- R# Y' =+ ;+ &+ =+ 6= ;+ =+ $- 6= C' h; #; #; *+ G> j' X# /+ Z' &; ^+ Y# %, (+ b= Y# `' b= (+ ) o% 2+ b= 2+ 1+ u- s% s% s% A* f, K> s% 7+ I& g, i; l' 7+ a+ .) 7+ 7+ G* %$ b+ G* %$ a+ d+ 0+ G* +) k; j+ G* ,- f+ 0+ G* w% ;$ )- l+ |' P, ;$ ;$ @) l+ n+ n+ n+ @) >$ =, @) l+ >$ r+ h+ s+ t+ s+ s+ x+ s+ s+ i= x+ !$ s+ w+ w+ u+ x+ k, B% B+ B+ A+ C+ A+ R, B+ A+ E+ B+ A+ A+ C+ C+ E+ A+ D% R& C+ S& #) E+ M+ C+ k= O+ O+ O+ S+ S+ T+ S+ R+ G% S+ R+ Q+ S+ R+ $) S+ S+ V+ T+ Y+ V+ Z+ X+ Z+ @@ @@ V& _$ _$ %) X& W+ +@ W+ Z& +@ #@ @@ +@ #@ +@ :- #@ #@ #@ +@ +@ &@ %@ *@ &@ #@ %@ =@ &@ -@ `& 6$ '@ )@ Q% &) r; Q% ~@ I' S% )@ 5$ 9$ /@ !@ w= W% :@ }@ W% J- |@ v; d$ 6@ X% ** 2@ 9@ 9@ z= Z$ ^ R@ *) =) v, s, x, y, y, y, x, x, s, y, x, u, s, u, z, s, u, x, t, z, z, t, x, t, A, x, x, y, z, u, u, y, s, z, x, x, o> p, x@ ^. !. {. ^. &. -. -. &. (* &. a# ,= z@ =. (* A@ A@ )= z$ y@ V 2# F@ 2# P }; P z; H A Y P P@ H 3# Q@ J S z G A Q@ /# A w w w ", +"L$ $ + $= > + R- # V@ # Q$ # H= + . V@ & # V@ U$ | ; - ; 1* + T@ > ; 2 ; . ## *# ] ) ) W@ ~ [ ^ ) ~ ~ ] W@ ) ) W@ ~ T- `@ 2 { ( ) ;# < V$ [ 2 $# Y@ { [ %# $# W@ ) } } 7 < b 6 7 a 7 { Y@ ,# d e $# 6 e } b ~# ,# e g n 9 8 &# e 7 a 3* 8 L= ,# 8 V- a K= L= (# 7 ~# r h b' h h w h r Z$ _# 4* n -) q Z$ ;) D ^# m _# t N F D M= z w I A |# S P@ O@ H M E$ J 7* w 8* P@ M S 3& H P@ >) P@ J Q@ 3# Y J H@ ` 2# T U C$ E@ X S G@ G$ #. R $% H $% .. C$ P ,= 5# z$ *. )= .= z@ .. -. ). >. &. {. [, -. !. '. ). '. p, =% b# '. /* v@ {. v@ 5& 9& u' 8; ,% h# a& e# P= P= e# q@ d* |. f' a& a& ;% 7. 7. ^= ^= 6. ^= v' 6. i- 0. 6. d. c. {% {% c. d. e. e. {% e. w' Z- g& q# q# f. f. g& ^> f. j. v# V= (% ,) n* n* r. v. p* p* i& z. <% z. 1% [= [= [= m- ') m- [> r* )) n- G. H. H. G. D. G. H. 5% o& L. O. O. 1= F# S. q& !) F# .- S. F# H# 1> H# Q. F# b% .- .- b% f; f; c% t* t* q- q- $+ + u& +- #+ R# 7= 3> =+ g% 7= =+ =+ =+ ;+ *+ ~) *+ {+ *+ *+ {) a= /+ ]+ X# ~+ (+ ~+ /+ %, b= %, b= Y# -- `# <+ Y# %, 1+ |+ s% s% H& %, %, 3+ g, 5+ $$ @$ 1+ 7+ ]) 7+ a+ t% 7+ K> %$ K> G* G* G* G* e= G* %$ %$ f+ G* G* ^) j+ U; w% /) U; l+ @) l+ L> ;$ @) l+ l+ ;$ l+ ;$ l+ >$ l+ n+ n+ n+ ;$ M& t+ t+ '$ w+ u+ >$ -; i= w+ o+ u+ u+ i= !$ ]$ B- () B+ B+ C+ B% B+ A+ C+ B- A+ B+ C+ A+ A+ C+ E+ B+ _) B+ C- {- M+ A+ E+ k= L+ O+ L+ /- /- P+ R+ S+ S+ R+ L* /- R+ T+ T+ V+ T+ V+ S+ V+ T+ T+ .@ U+ X+ X+ ($ Y+ Y+ .@ G' @ H' W+ W+ X+ +@ +@ +@ @@ +@ +@ +@ %@ %@ #@ %@ %@ #@ %@ &@ $@ > %@ &@ 7$ I% -@ >@ L% :) L% u= 4$ q= S% T% * <) d> 9$ ~@ 6$ U% !@ V% R* :@ X, 4@ 2@ 4' b$ 8@ 6@ 1@ T* w@ c $ @ `, [) s, s, s, z, y, y, z, u, s, z, u, u, s, x, u, s, x, x, z, u, u, x, u, z, s, x, }) u, y, y, x, t, y, x, |) v, :, A@ ,& ,& '. '. F, ). &. ^. ,& (* z@ B$ 6# A@ +. z@ .= =. #. +. .= }; 2# H L@ +% D$ J L@ P P M@ J J S J Y |; P@ J A A P@ Q@ A G I A ", +"# . R@ L$ 1) # > $ S$ V@ V@ V@ + . ), !, # > 2) U@ Q$ %= ~ & 1* . { %= U@ ~ 2 ~ ) ~ ] ; U@ { <& ~ & ) ~ *# | %= ] ## ) 1 | 2 ~ 2 2 6- [ { ## V$ < W@ $# $# -# $# [ { ># } e i V$ == c a %# $# 7 6 6 a b d j 6 &# 2* V$ d 7 c i 9 6 c i V$ $# d 7 6 l `$ n o ~# r ~# e Y$ s> ^# C; _# h p >= F= /# w p 1; ]# p ^# :# `$ ^# x M= N M= w G N M I N@ [# P@ M w M= H P@ H 7* E$ P@ K@ 3# O 3; P@ K@ Y J Q@ 4# S 3) T d- H X Y C$ P@ L V V D$ E@ C$ P z$ I@ E@ z@ -. z$ .= I@ B$ *. y@ z$ &. A@ -. &. A@ 4) !. *. ;. z@ $. *. {. 9# {. ;. '. -' &% b# 5& ,% 5) 8& 9& &% ~= -% e* e# t@ '% e# X- 6) g# a& j# 7. U' 6. 6. ^= ^= ^= 7) ^= Y- Y- a; V' c. c. e. c. d. Z- c. c. Z- h. Z- i. f. T= W' f. l* l* ^> /% (% 8) o. o. V= W= (% w. z> n* j& v. s. [= B# [= z. A> c; c; a, Z= 3% )) )) 5% H. H. G. D. `= H. P; K. J. O. O. `= O. O. S. J. O. S. S. 9) F# F# T. T. .- H# .- x' .- ^' b% ++ s& s& f; f; s& u& f% e; u& 0) =+ =+ $- a) b) 7= ;+ =+ M, ;+ =+ @; #; !+ 7= c) a= d) /+ S; W# ~+ (+ /+ %, /+ (+ ~+ /+ (+ Y# %, %, b= u- s% s% 1+ 6+ }+ ;- 3+ 1+ 1+ 5+ ;- g, @$ t% 7+ 7+ K> 7+ 7+ 7+ a+ %$ 0+ %$ e= 0+ e= G* ^) u% f+ %$ G* l+ U; U; ;$ '- u% l+ l+ l+ l+ n+ l+ g+ l+ l+ ;$ l; A- l+ n+ h+ n+ n+ h+ =; -; t+ t+ i= s+ i= i= x+ t+ M> w+ x+ u+ ]$ ]$ B+ B+ B% C+ A+ B+ A+ A+ A+ B% A+ A+ e) A+ C+ B+ A+ ^$ C+ O+ O+ M+ I+ D+ E+ Q+ O+ E% a> N+ R+ L+ Q+ R+ T+ P+ S+ R+ R+ U& .@ T+ R+ Y+ Z+ V+ V+ T+ R+ S+ .@ .@ X+ Y+ f) g) X& @@ @@ @@ [$ W+ W+ @@ #@ +@ %@ #@ #@ %@ #@ #@ %@ &@ &@ &@ &@ *@ &@ D- &@ 7$ >@ l, q= S% '@ R% 6$ 9$ r= O* 6$ I- 5$ ~@ N* N% R* 9$ R* {@ P* :@ 2@ :@ X% f$ K- 6@ X% X% ). e h) i) r, [) v, s, s, u, y, x, x, u, y, x, u, v, A, t, s, u, y, y, u, x, u, u, y, y, u, y, y, y, y, y, y, u, y, s, s, v, j) x@ ^. ~. {. '. !. -. &. &. &. z$ ). ;' (* .= A@ )& .= @. .. e- #. X G@ V 4# V P O S P M@ G@ C$ J@ L@ P H$ O M@ E$ +% P@ 8* x M S M )> ", +"R@ k) M$ R@ l) + ; > - ]& ]& U@ V@ Q$ ; V@ ; ; | N$ ^ ; S$ & S$ - ; | U@ N$ 2 ^ `@ R$ . ; ;# | d O$ %= ; %= ] N$ { ) | [ { } < | ## - 8- ) %# U- ) *# $# } ) [ $# $# $# : } ## ) 4 $# %# : < $# 8 } 6 X$ e '# a e [& e D, } a a 8 i $# &# d 7 8 a ,# X$ o b o c e `$ p c h [& h r s> Y$ y ^# C y `$ p `$ ~# D m m N N ^# 0- N M t q P@ O@ P@ I B G H$ B I 3# E$ M m) 7* P@ )> @% @% M S L S P Y J 1# 7# 4# H H$ E$ L@ P@ U V n) C$ H@ H 7# D$ T 9* A@ 5# ,= e- +. (* 5# 6# ). *. ,. A@ ,. =. )& !. ;. o) A@ ;. ). ;. ). 5& {. ;. ;. !. p) (. -' 9& (. :. v@ v@ `> ,% 9& t@ ,% e* a& ~= a& 0, g# 9; g' ;% g# 8. k# 7. 7. 7. ]= q) !% m# l# {> {% c. e. e. c. {% {% e. c. r) {% f. f. T= h. l* g& g& /% s) K; h' ,) (% ,) (% n* r. )' (> p* z. z. z. z. [= z. [= A> t) m- A. c; c; 5% 4% H. 5% D. H. u) n& G. E# O. S. c, 0% 0% F# c, v) .- ]' S. H# d; d; H# w) H# H# .- 1> x) ^' s& s& c% q- s& $+ q- +- d% 0) e; d% v* y) y) +; @; *+ @; C' v& *+ ;+ h; @; &- z) r- _' %; [' W# %; /+ ]+ (+ /+ Y# %, b= /+ b= A) %, %, b= B) |+ 4+ }+ ;- J> |+ 5+ @$ 5+ 1+ 3+ 3+ I& t% l' @$ @$ 7+ .) 7+ .) a+ K> %$ %$ e= k; G* G* e= ,- g+ %$ u% ,- U; g+ l; /) ;$ l+ -$ C) ;$ l+ z- ;$ n+ l+ n+ r+ l; l+ ;$ >$ j+ l; l+ M& s+ ,$ {$ D) t+ t+ s+ t+ E) j= u+ i= x+ B+ B+ z+ B% B+ A+ B- B+ B% A+ ^$ B+ E+ ^$ R, A+ B+ C+ F) C+ C+ S& E% A+ A+ C+ C- O+ O+ L+ L+ /- S+ L+ R+ S+ Q+ R+ R+ P> S+ T+ V+ S+ V+ V+ V+ V+ .@ Y+ V+ X+ W+ @@ +@ Y+ Z+ b> -, V& +@ @@ @@ W+ @@ +@ [$ #@ @@ +@ %@ #@ <- &@ #@ #@ %@ %@ *@ ~; .* 1$ >@ >@ '@ '@ R% G) )@ ]@ 5$ * * e$ * ^@ 5$ @> b$ 2@ |@ V% P* T% 3' 6$ ^@ 9@ v= o, u; 7@ a@ )& 6 . J$ `, =) H) 8' x, y, y, u, s, u, u, x, x, y, u, u, u, x, y, u, s, u, y, u, u, y, x, u, u, y, y, u, y, u, y, u, s, x, I) 4- E@ {. A@ !. {. x@ *. !. ). .= &. !. &. &. !. >. 5# C$ $> F@ =. 5# )= z; L@ H .. C$ S H P@ Y P@ L@ H ` #= S P@ P@ I N w w x Q@ @% I ", +"+ V@ ]& $ * . + . > + . V@ > > $ - - - . V@ = N$ U@ U@ U@ ^ ~ ] ; ) ) ] - | & ^ ] { ; & Q$ ~ ) 2 { d 1 %= `@ %# ~ W@ ## ~ W@ J) W@ $# } ) ## 1 b W@ < 6 *= W@ 6 1 /& / a a V$ ( J= 7 V$ } 6 => 7 7 e k 6 i n a j a 8 e V$ q> a 6 &# ~# ,# i o o 7 a a j e r n h o c c r Z$ ^# `$ `$ p Y$ p c m u q 4* G I m z I ^# D O@ A 8* A S w %> ^# x A M z L@ S Q@ M Y Y o> H S P@ H@ H L@ L@ L@ P@ L@ T L P I@ 2# Y I@ P@ Y U U }; J E@ X K) 5# A@ .= A@ E@ +. +. &. y@ . L) +. V> #. &. A@ A@ -. /. /. $. ^. ^. '. /. {. != v@ |. d* (. 1. Q= e' &% 8& {= h# a& g# a& }. s@ s@ 4. g# ;% ;% 4. 7. g# 6. 6. ^= a; ^= 0. b. i- ^= 9. e. {% e. c. M) {% c. {% Z- Z- Z- g. J; f. l* f. g& w# g& K; (% H, (% p* p* (% (% )' <% (% N) z. s. s. [= [= [= s. A# X= A# t) $, D. O) 6% D. C> C> C> P; H. `= J. S. a% O. {' H# J. J. L. H# O. H# F# O. .- .- 1> H# 1> 1> ^' d; t* t* q- ^' .- t* t* b% t* d% P) f% .; $- ;+ 7= 7= *+ =+ =+ 7= *+ 7= =+ 7= #; @; 0= Q) A' W# (+ R) W# /+ (+ (+ ~+ Y# b= D' Y# b= Y# f, %, %, H& J> b= A* 6+ u- 1+ 1+ 1+ 6+ I& 7+ 1+ l' ;- ;- a+ a+ 5+ .) l' e= e= e= e= e= G* 0+ 0+ %$ u% )- e= g+ '- %$ S) l+ l+ ;$ ;$ l; ;$ n+ n+ n+ ;$ ;$ l+ ;$ l+ l+ l+ n+ >$ n+ )- l+ r+ '$ s+ >$ O& o+ '$ s+ x+ i= t+ s+ N> w+ '$ s+ ]$ B% B+ B+ B+ B+ R, F) A+ m; B+ A% C+ C+ B+ A+ B+ ^$ B- S& E% A+ E+ A+ C- E% O+ L+ O+ L+ S+ L+ P> Q+ S+ /- S+ T+ S+ V+ Q+ R+ V+ V+ Y+ X+ @@ .@ U+ W+ W+ W+ @@ Z+ Z+ %) _- U& @@ @@ #@ @@ @@ +@ #@ +@ #@ +@ #@ &@ %@ %@ &@ %@ #@ %@ &@ $@ &) I% >@ *@ >@ '@ )@ q= q= -@ ~@ q= 5$ * U% I- /@ 5$ {; !@ V% W% 2@ }@ 2@ X% e$ P* R* a@ X, :@ -* 7# $# $= J$ r, 8' 7' u, z, s, s, z, y, y, x, s, x, u, y, y, y, u, y, y, x, x, s, x, u, u, s, z, y, y, y, y, s, s, t, y, A, t, T) E@ -. F, -. ). !. e- ,& {. !. {. B$ F, z$ 4& *. V> .= 4) ,= G@ z@ . ,= H H@ Z Y H P Y S L@ H A Y S S S H J H |; N J M@ Q@ P@ N ", +"S$ & $ + R@ L$ ]& S$ S$ }* - ; | V@ > . |* - # - - > S$ ! - & > ~ 2 U) R$ ; ] ^ { ^ ; | *# > ] ; ; < { | 4 $# { ) < ; ; ~ *# [ 2 ~ ~ / $# [ } $# 6 ~ &# ( { ) 9 +# 6 7 [ $# { 8 : } V$ V) d b D, d 0 e ~# 6 g 8 8 a d e ,# b e n a e j e ,> e o p Y$ r h r s> r p `$ p D /# `$ p h `$ h p n p t C w C P@ 8* y N G Q@ :# %> G A W) ~& A L@ Q@ 3# b- Q@ O@ A L@ H P O J J Y J Q P@ M U X P@ R G$ H H T G$ T $% y@ V ,= 5# F@ .= 4- 2# . z@ z@ E@ . z$ =. 5# z@ >. -. F, &. ,. 5# ). x@ X) [. ,& '= ~. '= {. != `> 1. d* 8& |. P= , 7& , , s@ a& g# a& 4. }. s@ 8. j# g# 7. a; {> 6. n# g' 7. 6. 6. 0. d. Y- 6. i* d. 9. e. h. e. c. c. {% Z- Z- Z- Z- q# f. h. f. l* (% T= S= n* x> i& Y) n* (% (% (> [= W= @, z. z> z. s. k& A# z. z# [= [= A> !' P; )) H. 6% 4% P; n& Z) 6% G. {' F# 0% H# E# S. S. F# F# F# F# F# F# 1> F# .- H# F# 1> s& .- F# s& 1> t* t* ^' b% u& b% t* d% e; z& P) v& ;+ ;+ =+ =+ 7= 7= &+ 7= =+ *+ @; `) ! *+ C& _' Z' /+ W# <' b= b= Y# /+ (+ b= Y# b= Y# <' A* %, k' B) J> .! d= 6+ B* 1+ d= 6+ 6+ >- #$ +! @$ >- 8+ %$ K> l' 7+ b+ e= G* %$ %$ %$ G* e= ^) G* %$ d+ G* %$ e= %$ @! n+ l+ j+ ;$ @) l+ l+ ;$ ;$ ;$ l+ l+ ;$ l; l+ l+ @) n+ M& n+ n+ A- s+ s+ t+ #! w+ o+ '$ s+ i= s+ i= N> '$ s+ t+ ]$ A+ B% B% B+ B+ B+ A+ C+ C+ B+ E+ E+ B+ A+ B+ B+ ;; E+ A+ E% L* D+ C+ D+ M+ L+ L+ Q+ O+ /- Q+ Q+ E% /- S+ R+ R+ S+ T+ Y+ Y+ R+ T+ V+ V+ X+ .@ Y+ T+ U+ W+ X+ `; U+ @@ H% $! X+ X+ +@ #@ %@ X+ @@ #@ #@ #@ #@ +@ <- &@ &@ &@ &@ %! &@ * -@ R% >@ =@ -@ `& S> u= ]@ 1$ `& *@ (@ )@ '@ &! +* *! {@ N% =! W% <@ W% L- W% 4@ :@ W% u; |@ Y, c@ J +# V@ ], s, 6' x, u, t, s, -! y, y, s, H) u, y, y, y, y, y, y, u, z, u, u, z, u, u, y, y, y, y, y, y, y, y, y, y, u, }) A, ), G@ ). x@ l> ;! -. ). 5& !. A@ ;. ;. e- z$ >. #. A@ 5# (* @. .. 5# A@ G@ 1# 2# }; X Z O B$ H Y >! L@ O H$ M@ H S M@ Z E$ A Q@ I ~& I x ", +"Q$ # + & # ] T@ ^& ~ Q$ # & Q$ . Q$ & ; - ; # V@ > ] - . . | ; ; > ## N$ & N$ { | Z@ ) 1 { ) U$ W@ ) 2 ~ 2 ) $# ) W@ H= [ { < 6 | ~ { ~ { [ | [ ) 1 # / X@ } ## Y@ 4 ( : < W@ $# $# 6 $# ,# 1 [ b 2* ( q> a ,# 6 e &# a' 7 ~# q> a $# b ~# L= ~# n ,# `$ j Y$ Z$ s ~# c ,! b' _# 9- n -= G z Z$ m p ~# G D s h C C I m M C Z$ I M D D B (# M z z A }# A M I A N@ G @% z E$ K@ d- E$ Q@ O@ T C$ M T D$ G$ P H@ T T L@ L@ L@ e- 7# E$ 7# . R z@ W z@ .. =. e- )= )& *. e- =. !. !. A@ (* @. x@ A@ &. x@ {. b# +. -. '. '. {. &% =% 5& ~. d* /. H; *% 9& e* P= {= e# ~= q@ h# j# 4. 0, '! 9; f# 7. 9; 8. U' ^= a; 6. ^= 6. 9. !% )! !! i* e. {% c. c. {% c. Z- Z- c. Z- c. g& l* h. g& g& j. g& l* n* h' b; (% l- h' (% z> N) ~! `- [= {! E. A> <% z# m- [= [= [= m- c; P; )) G. $, 6% ]! 9% n& O; G. ^! S. F# S. ]' E# S. F# H# y' /! .- H# S. H# .- H# .- H# f; d; 1> t* ^' t* .; ^' d; c% t* f; (! 0) d% +- g; @; =+ ;+ _! 7= 7= 7= 7= =+ 7= 7= `) {+ _' :! - ;- ;- 7+ l' 7+ i, a+ l' l' G* G* a+ G* 0+ 0+ [! ,- ^) G* %$ ,- e= ,- d+ ,- w% @) l; ;$ f= n+ l; l+ l+ l+ n+ n+ n+ l+ n+ >$ A- n+ }! l+ m+ h+ s+ y% |! 1! t+ t+ t+ '$ o+ s+ s+ u+ x+ o+ u+ A% A% A+ C+ C+ B% A+ A+ A+ C+ A+ A+ A+ B+ C+ A+ C+ ;; 0> A+ C- Q& F) C+ C+ E+ O+ O+ O+ L+ R+ P+ R+ S+ /$ Q+ R+ R+ T+ T+ T+ T+ T+ T+ R+ T+ U+ S+ V+ T+ W+ U+ .@ @@ Y+ .@ q; %) X+ _$ @@ W+ +@ +@ #@ +@ +@ #@ %@ %@ #@ &@ %@ *@ *@ *@ #@ R> ~; =@ &@ =@ ~; I% )@ * Q% * (@ T% H- P* H- * I- {; /@ Q* P* R* b$ b$ X% 4@ f$ 4@ S* 4@ `% T* l@ M@ / # q, r, [) z, y, z, u, y, y, y, u, u, x, u, u, u, x, u, s, y, u, A, A, z, u, s, y, y, y, y, y, y, u, s, u, z, x, v, s, 2! 3! ). &. {. ;! ). p) '& (. '& ,. &. &. -. 4- 4- (* #. #. [; F@ 4! . D$ 4# @. X M@ #% $> K@ Y }; Z A Y P@ N= M L@ O M@ 4, H 8* P@ P@ x S ", +"# @ . . ]& > = + Q$ . V@ > & [* # }* ; > V@ $ . ] . > $ Z@ ) N$ P$ $ & X@ ] - > | W@ ) X@ 1 ] `@ [ Y@ ) 5! N$ ; { ~ W@ { 6- U$ $# 8 { [ &# N$ *# } { { { R$ { $# :& } 7 $# < $# ( $# : 7 ( g a 7 7 8 e ~# Y@ [& e e 8 &# ~# e 6! n e g o ~# 7 ,# C; 9- o q e h C; a 0- n n L= n y h (# p ^# `$ `$ 5* _# z ,! h r Z$ D Z$ m G G F= y G ^# N S A K@ A N N@ G M Q@ A Y M |# O@ P@ ` P@ d- H x O J D$ S @. L@ W W Y I@ X O d- L@ 7# T L@ $% 7# @. A@ L@ E@ E@ +. =. I@ !. +. ]. -. . +. =. ). 0# !. F, !. =. =. A@ R' {. '. =. '. 5; %% 5& /* `> 9& 7! *% :. *% ., P= h# j# e* 8; Q- g# g# '! 9; ;% 7. g# U' q) ^= ^= a; ^= ^= {> Y- e. 0; 0. c. c. e. c. {% c. {% 8! {% c. Z- {% i. g& g& l* l* l* l* /% l. b; /% 9! n* (% (% r. v. W= `- [= z. 0! m- A> [= m- A# m- t) z. X' r* G. r* $, G. 6% G. O; O; 6% E# a! J. S. Q; S. b! F# S. c! 1> H# y' F# H# H# F# 1> d; d! ++ c% c% s& N# #- b% t* s& f; #- t* d% q- L, ;+ =+ =+ e! 7= 7= 7= ;+ 7= @; =+ *+ {+ #; `) f! g! Z' Y# h! b= b= Y# Y# /+ b= %, Y# Y# %, %, }+ H& b= A* 6+ 6+ i! ;- f, k' j! +! g, +! 5+ 6+ 6+ 7+ t% a+ b+ l' l' K> 0+ b+ e= e= e= i, %$ %$ G* &, u% e= ,- k! 6> Q, f= f= g+ l+ ;$ ;$ ;$ ;$ ;$ l+ l+ ;$ f= h+ >$ '$ l+ n+ h+ l+ l! i= t+ s+ u+ n' t+ s+ t+ N> x+ '$ s+ x+ w+ '$ x+ A% B- B% C+ B- A+ B+ C+ A+ A+ R, B% C+ A+ C+ A+ ^$ I+ ^$ C- E% C- D+ E+ E+ C- O+ O+ /- R+ S+ S+ R+ /- S+ S+ S+ P+ S+ V+ U+ G% V+ T+ V+ Y+ Y+ Y+ X+ X+ .@ W+ X+ W+ W+ :$ m! +@ X+ +@ @@ +@ @@ _$ W+ &@ #@ @@ #@ +@ #@ %@ %@ &@ *@ *@ >@ *@ -@ =@ &@ =@ )@ )@ * r; 2$ ~@ T% S% ~@ 6$ O* ~@ /@ /@ /@ (@ P* <@ }@ a@ R* d$ W% v; 8@ T* 2@ W* y ;# ]& ], H) z, z, x, u, u, y, u, x, s, z, u, y, x, y, z, y, s, y, z, x, s, A, y, y, y, y, y, y, y, y, u, x, s, x, s, x, s, 2! M@ d# x@ c# &. !. B$ ]. x@ >& ). =. !. >. F; $% )& +. A@ B$ z@ V z@ C$ Y }; C$ H 2# D$ T V J 1# H$ Q@ n! M O@ #= @% 8* S G b- P@ x A M ", +"J$ + + + R@ - . * + }* ; S$ T@ > # V@ ~, & > > Z@ N$ [* ^ > ^ U$ N$ ; S$ - { H= - o! ; S$ ) } { { ) 4 , | ) 6 %= ] { ## ) < ~ { } / { d { ## $# ) ~ < / 6 8- Y@ /& 7 ( ## b ( *# } b == $# =# ># 7 < 6 7 7 a' j e j &# L= ~# &# g a e ~# j a b c g c s> c X$ h `$ t p h `$ `$ r h p! ^# q w m 6* Q@ Z$ ^# 4* q D `$ Z$ m I G I I G P@ q! M N K@ A y A E$ E$ I H A P@ Q O@ P H 8* ` 7# J T H ` T G$ H G@ 0* C$ D$ r! T I@ J D$ G@ E@ X .= 2# V C$ s! G@ @. &. *. #. >. 0# 5# #. 5# )& *. t! &. {. )= '. 9# '. '= |. u! =% {. ~. 9& 5& '& =% /. `> v! Q= -% P= {= s@ j# j# }. , g# a& a& 9; 9; 7. n# f' w! 6. ^= 7. 6. ^= ^= 0. e. d. a; d. c. {% c. {% {% {% {% h. Z- h. h. f. f. H, x! l* f. g& ^> (% V= V= (% ,) (% p* p* t. {! W= z> z. z. z. [= A# `- A. c; [= y! Z= !' 6% n- $, H. H. H. O; H. O; z! J. S. F# O. F# a! F# J. H# F# H# F# .- 1> .- .- H# d; .- Y. .- 1> t* t* t* q- q- s& s& c% d% q- f% f; 2> =+ 7= M, 7= &+ ;+ =+ *+ *+ *+ *+ @; S# *+ C& A! a= /+ A* <' Y# -- b= Y# <' b= b= b= %, b= m% |+ b= b= 1+ 6+ 6+ t- s% 2+ ;- l' u- 1+ t% t% 6+ 5+ l' l' l' l' t% 7+ 0+ G* e= G* e= a+ G* G* e= %$ j+ ,- e= k! )- &, f= ;$ U; )- g+ n+ l+ n+ l+ ;$ n+ n+ l; ;$ n+ r+ n+ ;$ l+ g+ ;$ O& '$ t+ t+ i= t+ t+ s+ u+ N> u+ s+ N> u+ w+ u+ i= B% B% B% B+ B+ B+ B+ A+ C+ A+ C+ C+ B! B+ B+ B% F) R& E+ S& /- S& A+ C+ 0> O+ E% Q& /- R+ R+ R+ L+ /$ T+ S+ P+ T+ G% X+ V+ V+ V+ V+ Z+ Z+ Y+ X+ W+ +@ W+ @@ _$ Y+ Y+ _- :$ W+ +@ +@ +@ +@ +@ #@ #@ #@ @@ %@ +@ +@ &@ &@ #@ &@ &@ '@ >@ *@ ~; >@ V, .> `& >@ ]@ -@ C! '@ H- '@ d> 9$ 9$ O* /@ !@ R* P* b$ :@ f$ b$ ^; 9@ h> y= 6@ X% m@ p O$ *) =) s, s, 8' u, y, u, s, v, H) x, 8' s, x, y, u, s, z, y, z, s, x, s, s, y, y, y, y, y, u, y, s, w, s, u, s, x, x, r, y ^. %% ^. D! ^. (* x@ '. ,& A@ )& x@ A@ E@ A@ .= &. ). .. )& Y z$ R G@ V V n> 2& J }; M P X Z O ` P@ P@ K@ A M S 8* H$ A t N= #= ", +"!, # . > + # N$ T@ - $ $ R- & 5- V@ E! # ; ] . | N$ ] & ] ; | | !, ; > ] ~ > - & ) ~ ~ 2 / ] ) $# ) ] | { | ) [ W@ 5 < Z@ $# 7 ( ( 6 Y@ [ ) 4 { { d ,# d X@ 6 } 7 2 W@ # < d V$ =# b 6 6 $# ( 7- e ~# 7 6 ,# e 7 a ~# r d j F! X$ j ~# *= 7 c n r 8 i o ~# h C; 9- c h 9- p Y$ m % r ^# F= D Y$ u Z$ D ~& Z$ G /# w z G A O@ J J O A P@ A I A M x P@ N J A O@ @% T H C$ P@ E$ P@ P C$ P H E$ Z E$ U 2& W H C$ I@ Q' @. L@ H@ .. X C$ H@ V @. z@ G! -. $% 5; 5# B@ E@ e- z@ ;. &. =. '. ). /. ~. ^. ,& S' H! ~. =% '. '. 5& d# /* &% %% v@ d* e* u' I! J! , P= j# , a& a& g# 8; j# 9; 8. 9; g* 6. 6. a; 7. ^= a; q) i* d. !! {> {% d. e. c. {% c. c. e. {% h. Z- i. f. f. K! g& /% /% H, K; n* W' (% w# L! W= (% <% s. p* W= s. v. z. [= z. z. A> A. X= m- [> !' r* O; 6% 4% n& H. O; H. 6% C> a! J. S. S. M! ]' F# .- H# S. S. S. O. .- .- 1> .- .- 1> 9) 1> d; ^' t* t* 0) f; q- f; q- +- q- N! (! M, h; =+ O! 7= 7= *+ 7= 7= *+ 7= *+ y) C' P! c) Q! {+ A* b= g! /+ (+ %, b= b= Y# b= Y# %, %, b= r% 2+ l% f, s% 5+ 1+ t- B* ;- 4+ 6+ 6+ t% I& 6+ 6+ .) l' +! l' j! l' e= e= G* G* G* K> R! 0+ e= ^) ,- )- e= e= )- ,- g+ ;$ &, ,- l+ l; l+ l+ l+ l+ l+ l+ l+ n+ l; >$ n+ l+ n+ h+ ;$ ;$ >$ t+ s+ r+ r+ '$ s+ s+ x+ '$ s+ x+ w+ x+ x+ k, B+ A+ B+ A+ A+ A+ K* ]$ A+ B+ m; B+ B+ A+ B+ B+ e) S! E+ C+ #) T! E+ D+ I+ O+ L+ P+ /- P+ S+ /- Q+ S+ P+ S+ S+ P+ T+ T+ X+ T+ R+ V+ T+ V+ X+ .@ U& W+ .@ W+ W+ Z+ f) <$ U! @@ +@ V+ @@ +@ @@ #@ #@ %@ +@ m, %@ #@ *@ +@ *@ &@ &@ *@ >@ &@ e> '@ r; *@ S> -@ s= 2$ r; ~@ H- S% * I' !@ /@ :@ {@ b$ W% !@ V% W% X% R* 1@ b$ W% j$ 6@ w$ h ;# V! ], [) H) s, x, x, u, H) z, u, x, s, u, y, y, u, x, y, z, x, u, u, y, x, s, u, y, y, y, u, +' u, u, s, z, y, u, y, u, v, W! ). x@ z@ ^. '. A@ ). !. &. ). *. z$ -. B$ +. 7# .= +. .= +. B$ F@ .= 4# T D$ L@ H L@ P ` ` O ` O P 4# H$ S A G O@ 8* A z /# M `$ ", +"R@ . & . # ; # = . . X! $ + Y! T@ V@ + & ; }, | [* . $ ] ; ] ) /& ; S$ ^& ] ; 2 - 6 ] ; W@ Z@ { W@ Z! { ^ ~ d /& } 2 W@ { ~ ^ } } : ] 6 ~ { ) 2 / : &# &# ) , d $# Y@ { / $# < &# b b $# &# a $# 0 i e e 9 < 6 8 c &# 6 F! V$ d *= `! t' r h a r h e ~ F! 9- r ~# c n ~# ^# n p p `$ /# y :# 4* G h Z$ -= 4* z C F= `$ Z$ I I )> N w M= N x x w G S S I .~ P@ o> A o> P@ M@ P@ J P@ T Q@ P J L@ L@ d- H@ ,= H$ T P G$ ,= I@ A@ .. V R' E@ z$ G$ 4- 5# +. >. 5# 0# e- e- . (* z@ =. A@ ,. 0# %. &. =. /. A@ 5& '. ). {. ^. /. &% +~ ^. 5& v@ {. S' e* ,% P= _. {= {= _. j# {= h# a& g# a& ., 0, 9; 6. a& g# ^= ^= a; ^= 7. 6. a; !! e. @~ h* #~ c. c. e. e. {% h. {% Z- h. Z- f. g& m* K! g& x> o. ,) r) (% ,) U= 9! W= ,) p* <% t. (> $~ [= m- [= m- z. z. A> A> A> 0! N; N; 3% r* $, A. o- G. 9% D. H. 6% O. F# F# F# H# z! H# F# S. S. S. .- .- H# .- .- F# 1> s& d; 1> 1> b% t* s& q- 9) q- d; %~ s& t* t* &~ &~ a) @; 7= *+ =+ *+ @; 7= =+ 7= &+ @; @; ! @; *~ j' a= /+ S; Z' -- A* =~ 5> %, k' %, k' %, /+ }+ B) D' %, 2+ s% f, s% ;- u- B* ;- 1+ 6+ $$ @$ ;- l' t% -~ G* .) l' i, %$ %$ e= G* ;~ ^) %$ ^) e= >~ l; &, %$ f+ G* &, &, ;$ )- l+ w% l+ ;$ n+ n+ l+ ;$ n+ l+ ;$ n+ l+ n+ n+ h+ h+ n+ n+ '$ s+ s+ r+ )$ t+ t+ {$ i= s+ u+ u+ w+ x+ y+ A+ B% B+ B+ A+ C+ E+ A+ A+ A+ B% B+ B+ C+ D+ E+ A+ A+ A+ B+ E+ E% 0> E+ G+ D+ E% O+ O+ O+ Q+ P+ L+ O+ S+ R+ S+ T+ V+ T+ T+ V+ S+ R+ Y+ V+ @@ .@ .@ T+ X+ W+ X+ Y+ X+ W+ <$ X+ @@ +@ +@ '; @@ W+ #@ #@ M* :) %@ %@ %@ %@ #@ &@ %@ %@ -@ *@ (@ &@ >@ I% I% I% ,~ `& l, (@ {@ '@ '~ {@ r; '@ R% {@ R* ]; R* J- :@ :@ `% 8@ 9@ 9@ l$ l$ &. e ] )~ [) v, v, r, y, u, y, s, u, y, u, s, u, y, y, z, x, z, z, s, H) u, u, x, y, y, y, y, y, x, x, y, s, |) x, z, A, A, z, [) !~ (. {. {. {. d# x@ '. ). ). -. ). &. .. B$ &. 5# H@ B$ E@ +. 5# &. =. V D$ H +% J G@ V H Z C$ L@ P J H 2& J +% N J +% I ~& S N@ I ", +". ^& > ; N$ V@ ] ] > . $ }* & # & # T@ ]& > # ; ; . & | ^& %= ] N$ ; | X@ ' | # ; X@ ] ' 1 ~ ;# ~ 6 # ) [ > ~ { ; ] { W@ { } / ( 4 [ / W@ ~ 2 &# -# ) W@ &# } W@ < == $# ## d ,# V$ 7 a j g V$ 8 a i a 6 0 +# 7 a 6 a ,# 7 b 8 c L= e 8 ,# n ~# o s g L= 9- h n Y$ p h r p D D t q Z$ C C ^# `$ q t w F= C z w ~& w G w 8* D Q@ C w I z J Q@ E$ 1& Z |# L@ I@ E$ L@ 2# K@ Y P@ 3) T 2# E$ D$ 4# J X G$ H Y G$ T V V @. H@ E@ @. ,= .. +. e- ]. -. z@ 5# A@ .= ]. z@ *. O= ). '. %. 0# F, =. '. {. %% {. =% H! ~. '. =% /. /. T' {. &% Q= t@ 7& g- {= {= {= P= , P= j# g# g# f' 6) '! s@ ;% k# 9; 6. ^= 6. 6. ^= 6. ^= a; m# n# h* V' d. c. c. Z- {% Z- c. {% c. h. h. f. g& l* Z- l* V= (% H, i& p* /% (% (% (% p* p* p* z> W= )' N) @, [= [= [= [= m- A> A> m- ~~ c; G. r* O; |= {~ n& |= 6% 6% {~ Q; S. J. S. c! .- H# Y. H# x' H# H# H# .- H# F# .- .- 1> d; 1> 1> 1> 1> f; 9) f; t* s& t* ]~ d% ^~ f% /' =+ *+ =+ =+ C' *+ @; *+ C' *+ @; 7= *+ *+ /~ (~ g! l% Y# h! D' b= Y# %, b= b= %, %, l% /+ b= d= %, k' %, }+ f, B* B* _~ :~ B* g, 6+ 7+ i; g, 7+ l' .) i, 9+ .) 7+ a+ G* ^) ^) G* G* e= G* e= e= %$ %$ %$ e= G* %$ *, l+ l+ )- ;$ l; ;$ l; ;$ l+ h+ h+ l+ l+ l+ l+ l+ h+ l+ n+ l+ n+ u+ s+ s+ r+ =; s+ t+ t+ w+ o+ '$ t+ u+ w+ w+ B+ B+ B+ k, B+ B+ B% B- B% A+ C+ A+ B% A+ A+ E+ A+ A+ C+ C+ E+ O+ M+ C+ P& C+ M+ L+ L+ E% L+ /- Q& C- N+ R+ R+ T+ S+ /$ /$ U+ R+ R+ T+ T+ .@ W+ X+ Y+ X+ X+ W+ +@ W+ W+ @@ H% @@ +@ @@ @@ W+ :- +@ W+ +@ q; #@ %@ %@ *@ +@ *@ *@ <~ >@ %@ &@ &@ *@ >@ I% T% q= [~ I% }~ * >@ (@ r= (@ (@ |~ ~@ O% J- ^@ n, :@ I- W% f$ |@ f$ l$ y= z$ e }* *) ^, H) v, t, y, y, u, x, z, y, y, x, t, u, x, u, s, +' z, v, u, y, z, u, s, z, x, y, u, s, t, y, y, y, x, t, x, u, u, v, `@ -. '. -. !. !. >. &. -. '. z@ ). d# z$ 4& ). E@ V E@ z@ V C$ . P 7# W J@ V I@ Y H@ #. H P@ A Y T J E$ S O M S H |# M z I #= ", +"% . U@ . & & # . . ; # ]& $ Q$ % % 1* U@ H= > V@ ; > > ; ] ] | - > %= U@ - ; & & > 2 X@ Z! ; ; Q$ ; { [ > N$ ] 2 ) ) N$ 6 { ~ 2 ) [ *# < [ / ## ) ) : $# { &# ) 2 a V$ 6 7 e } b } i e a 7 7 5 } :& b c 6! 8 a o ~# ~# !# e 7 n [& 7 e t' 0 o o `$ r L= q h L= t' r _# h `$ m `$ m ~& ^# y w C w Z$ ^# :# 2; ^# u ^# w A A O@ J I z M G A w M H P@ M Q@ L L@ Y P@ L Q@ O H Y J 2# z$ T L@ T U H@ L@ J C$ H U V D$ d- X $% +. B$ $% U )& ]. =. B$ )& )= !. =. >. 0# B$ !. F, b# A@ B$ ,. A@ ^. 1~ $% =% '= b# 5& =% '& {. '. 2~ P= +~ 8& 3~ >' -% e* , e# P= j# , s@ h# 9; g# 0, g# a& 6. 7) ^= 6. ^= ^= ^= ^= 6. a; Y- i* a; !! c. c. c. {% Z- {% {% Z- c. 4~ Z- {% i. g& c. l* l* ,) /% r) n* /% s# (% p* 5~ (% p* s. l- z> L! {! s. 6~ 7~ ') A> Z= M; m- t) $, 6% 8~ H. 8~ 9~ 0~ |= 6% ]! ^! a~ S. S. O. b~ c, S. F# H# H# H# v) d; .- .- H# .- .- 1> t* ^' d; ^' t* q- c% f; #- b% t* f; f% q- .; f% ;+ *+ 7= *+ *+ C' *+ 7= @; @; @; @; `) A' C' C& ~) c~ -- d~ R) b= -- %, b= Y# Y# b= b= Y# b= }+ 3+ b= k' b= A* s% g, g, }+ u- e~ g, 5+ 7+ ;- i; 7+ 7+ e= G* .) l' K> %$ G* e= G* %$ k; ,- e= G* e= ,- 0+ e= G* ^) k; l+ l+ u% j+ g+ n+ l+ h+ f= h+ ;$ l+ ;$ ;$ l+ h+ ;$ ;$ n+ |' ;$ u+ t+ t+ s+ O& o+ t+ i= N> u+ i= s+ w+ u+ i= ]$ B+ B+ B% B% B% B+ A+ B% C+ E+ A+ A+ C+ A+ C+ E+ A+ A+ R& E+ E% A+ E+ A+ E+ k= O+ O+ E% E% P+ /$ R+ O+ O+ S+ /- O+ Q+ S+ $) X+ R+ R+ R+ T+ Y+ .@ X+ @@ U+ .@ .@ W+ X+ m= X& f~ #@ +@ @@ @@ `; #@ %@ '; #@ #@ +@ *@ &@ &@ %@ %@ &@ &@ >@ > ~; >@ 4$ >@ ~@ I% G- `& 5$ '@ (@ 0$ {@ R% /@ {@ d$ <@ 9$ 1- 4@ W% W% W% 9@ l$ x= 4@ e@ H } ; g~ q, v, [) v, u, x, x, s, x, z, x, v, =) u, z, y, s, z, z, x, y, y, y, y, x, z, v, x, x, s, z, z, y, u, s, =) s, u, +' q, Y! A@ (. q@ &. &. ,& -. '. A@ ). A@ -. ,. A@ >. E@ G@ E@ h~ E@ i~ V T D$ S S E@ }; C$ Z E@ H &' @% Q@ Y L@ T ` M P@ P@ J Y #= M I G ", +"]& # T@ * }* = > - > & > . ]& ] - V@ & %= U@ # E! ; & P$ ^ ] | S$ ] > H= ] ; > ] & & / { ) ] ; { ^ R$ ; ) ~ ~ | ) | W@ 2 < [ 5 { [ { ~ / { W@ -# 2 } ) / $# ## &# V$ &# d d $# ## 7 8 b } 7 2* } 7 &# : d 0 6 8 a a a i ~# c 6 7 8 8 8 e a _# r h ^# h o r -) r r c Y$ `$ ^# |& t G h j~ G G G y q m D C B w % ^# D P@ M A J P@ w x M z 8* C E$ H P@ P@ P@ L@ L N@ L@ T 3) L D$ M@ L V P #. E$ H@ R J &' H R I@ 4# H +. .= .. e- +. $% )& . 7# >. )= &. *. A@ ). H! >. e- 0# %. z@ %% %% &. H! 5# &. '. b# o) != |. v@ '= 6& 9& ~. /. {. d* *% k~ , j# e* 1. j# {= j# g# g# j# l~ s@ 9; a& 7) k# 7) U' 6. !! ^= a; ^= i* V' m~ i* e. e. c. c. c. Z- h. K! K! Z- {% ^% f. n~ h. l* U= H, H, p. )' 8) p* n* (% o~ p* z. `- W= @, m- N; A> A> z. m- a, p~ m- A> Z= [> n& q~ r* )) C> ^! O; 6% n& r~ c, 0% O. J. 0% {' F# y' H# F# b! d; v) .- 1> 1> d; ^' d; d; d; ^' f; f; u& f; t* f; f; f; q- f; ]~ s~ (! 7= @; *+ O! *+ *+ C' *+ 7= @; C' @; #; t~ B' =~ t~ Y# A* Z' b= b= Y# b= b= %, b= %, b= b= ) }+ 2+ %, `# 1+ 6+ }+ 6+ 6+ ;- 6+ J> 1+ @$ 8+ 6+ @$ .) l' G* i, .) a+ e= e= %$ e= u~ u~ %$ G* e= G* |' -$ 0+ f+ *$ u% Q, Q, v~ j+ n+ ;$ l+ ;$ l; ;$ ;$ n+ n+ ;$ ;$ y% ;$ l+ n+ l+ n+ r+ i= s+ s+ t+ n' s+ s+ N> u+ u+ N> '$ i= u+ ]$ B% B+ w~ B- B+ A+ B+ B% B% E+ K* B+ E+ C+ A+ A+ C+ F) F) H+ C+ C- A+ ^$ C+ B+ M+ O+ E% E% O+ L+ Q+ L+ E% S+ P+ P+ R+ T+ P+ T+ T+ T+ R+ G% V+ Z+ @@ X+ Y+ W+ X+ @@ @@ _$ Y+ x~ y~ +@ @@ +@ +@ W+ @@ +@ }$ %@ #@ +@ %@ #@ *@ ~; ~; *@ >@ [- &@ I% l, e> >@ d> /@ N% /@ H- O% H- U% (@ {@ )@ 0$ S* !@ {; }- w= W% W% b$ X, |@ e$ )* S [ . g~ *) z~ s, x, u, x, y, s, u, y, x, x, y, y, y, y, x, y, y, y, s, t, y, s, u, y, z, z, u, x, s, t, s, u, x, x, s, s, x, s, + O= A@ ^. = !. 5# *. )& A@ ;. F, A@ ). F@ -. z@ A@ >. E@ R 9* .= .= F@ &' D$ C$ X V L@ E@ H@ H@ J Q@ J@ P J H S Q@ H$ S T H$ S A H$ ", +"!, T@ > $ . . > > > . + = o! |* ' # # H= # > !, > > ] - > - > > > X@ | U$ | N$ - 2 ) ^ ^ { U@ [ ^ . |* R$ 2 | ] ) 2 [ W@ /& 2 ,# ( $# 6 ~ $# $# Y@ $# 8 Y@ 1 / / &# 7 b : 6 == $# a &# a ~# 8 a 6 d e 7 b e A~ $# ( 6 &# e L= e ~# c e *= i e 8 L= n e Y$ h c h c (# o h o r p 4* ^# b' O' % <, p N= y p q w C ^# M= D G /# A }# H$ G C P 8* H E$ L@ |# G P@ I E$ A J P@ M H$ S 3& 3; :* H$ M@ O@ J L B~ T U C$ L L@ H +. e- y@ z$ 7# +. )& e- .= 6# A@ @. A@ &. 5# 5# )& F, V 4) !. %. F, A@ '. &. A@ A@ !. C~ ~. b# D~ -. {. =% '. 5& ~. {. /* D~ {. v@ t@ 1. *% '! E~ 1. j# P= e# a& g# f' g# g# g# f' f' f' 9; v' !! 6. a; 6. ^= !% d. {> a; c. c. d. c. Z- {% c. Z- {% {% h. h. g& f. F~ r) H, H, H, U= (% G~ W= W= H~ l- h' I~ s. W= `- z. z. [= A> m- [= y! J~ <> K~ L~ X' P; 0~ 6% )) ]! 6% H. D> {~ M~ {' E# O. F# O; N~ H# v) H# H# v) F# .- d; d; .- d; 1> d; 1> d; ^' f; t* d% 0) t* t* f; f; ]~ d; t* /' e! $- *+ 7= O~ *+ *+ *+ *+ C' @; *+ C' C' C' C' P~ j' Q~ /+ Y# Y# Y# b= b= b= Y# Y# Y# %, b= %, %, ) %, }+ 1+ g, B* 6+ g, ;- u- t- g, +! 7+ 6+ 6+ 7+ t% 7+ e= 7+ l' i, G* G* ^) G* %$ e= e= ^) ^) ^) j+ e= e= *$ u% e= S) S) )- l+ n+ l+ l+ l+ l; l+ n+ ;$ l; n+ M& >$ l+ ;$ l+ ;$ O& R~ s+ >$ s+ )$ s+ t+ i= w+ u+ s+ u+ w+ w+ w+ B- B+ A+ B+ A+ B+ C+ A+ B% A+ A+ A+ B+ A+ C+ B% B+ D+ A+ ;; R& E% C- B+ A+ A+ C+ Q& O+ O+ E% O+ R+ L+ Q+ P+ S+ P+ S+ S~ P+ S~ S+ R+ T+ R+ G% V+ U+ W+ X+ +@ .@ X+ @@ _$ Z+ H% :$ W+ @@ @@ #@ +@ #@ +@ +@ #@ +@ +@ #@ %@ }$ %@ D- %@ #@ &@ *@ '@ '@ -@ -@ `& T~ )@ Q% C! 9$ w= U% R% /@ <) U% 0$ 9$ 1@ :@ :@ e$ 2@ f$ U~ `% v; f@ Z$ | # *) r, s, v, x, u, u, y, u, x, y, y, u, z, y, u, x, u, y, x, y, u, u, x, s, u, z, y, y, u, x, s, z, x, x, s, x, x, x, x, s, q, R E~ W> B@ 7; ). E~ A@ A@ ). &. ). ). )& )& l> z@ +. &. z$ #. I@ =. ` Z P T H L@ M@ P H ` 1# P Y L@ Y Y H Y P@ J N@ Q@ Q@ 3# A ", +". . = + ]& . $ $ Q$ > $ ! U$ 5- U$ > # . . # V@ - ~ ) N$ ] ^ U@ ] ; > - ; > - & ; R$ ] 2 [ { ) 2 | [ [ W@ ] ] ] %# [ Y@ X@ 2 < $# ( [ } Y@ [ 2 6 7 $# 2 < b } ~# $# $# } 6 e 6 _ e ,# V~ ~# g d 8 a 6 g V$ ,# 6 &# < V$ ,# d e ~# ~# e 7 7 *= r Y$ h c c o n a _# _# {& n h m D b' m K= m D C N /# y Z$ D `$ w I Z$ w I A M N@ N I P@ C w x A E$ P@ E$ U ` L |# J P U Y H@ E$ L@ U O U C$ C$ H T I@ J H D$ V Y F@ @. 4# @. (* z@ 7# e- >. ,. -. +. A@ e- W~ ). !. ). B$ .. ;. 5# 5# 5# )& &. &. {. ;. ;. +~ !. ;. |. |. e' D~ |. &% _. '& d* |. 9& *% e' '! -% e# g# , g# 0, 0, 9; g# f# f' k# f# 9; k# v' ^= 7. 6. 6. ^= i* c. X~ q) Y~ c. e. c. {% Z- h. Z- {% 4~ {% Z~ f. g& K! h. H, ^% H, l* n* V= `~ h' W= p* 5~ W= s. `- {! @, @, m- [= [= s. [= [= L~ A> A> t) 4% 0~ n& G. z! z! 6% r~ O; O; { c, S. F# v) .{ F# v) H# H# .- H# H# H# F# 1> 1> d; 1> .- d; ^' +{ f; f; c% (! q- q- f; f; q- s& /' f% (' 7= *+ e! =+ 7= =+ *+ C' 7= @; *+ @; @{ @; P~ j' d~ b= b= h! <' D' Y# k' k' k' b= b= %, Y# 3+ |+ %, A) 1+ 1+ ;- 1+ |+ %, b= g, 1+ ;- 7+ >- g, #{ t% t% i, K> l' .) u~ e= G* G* h, G* G* ^) e= e= j+ %$ G* ,- /) %$ }' S) ;$ )- ;$ ;$ l; ;$ l+ m+ ;$ l; ;$ n+ A- A- ;$ ;$ n+ l+ J* W; t+ y% '$ y% u+ y% y% u+ x+ u+ u+ u+ u+ w+ i= C+ A+ B+ A+ B+ A+ B% A+ A+ A+ B+ B+ A+ C+ B- A+ B+ B+ B+ D% T! Q& S& E+ C+ C+ O+ E% E% L+ S+ /- O+ Q+ R+ V+ T+ S+ R+ R+ R+ T+ R+ R+ /$ R+ U+ .@ .@ X+ X+ @@ .@ X+ +@ +@ _- ;, #@ +@ +@ @@ @@ +@ #@ %@ %@ #@ ~; &@ &@ &@ ;@ W, %@ &@ `& U, &@ )@ '@ >@ )@ '@ 7$ Q% )@ 8$ [~ }@ /@ ^@ !@ 0$ W% !@ /@ }@ ${ /; X% 2@ W% }@ X% q@ h ] > *) 6' %{ s, s, #' u, u, y, s, x, z, x, u, y, u, 7' u, A, y, y, u, x, w, x, x, s, x, t, v, x, =) v, s, s, H) s, x, s, x, s, q, J@ (. ^. !. ;. ;. {. ;. !. &. $. (* .= 5# E@ =. -. &. !. .= ). G@ 5# X 1# G@ C$ .= . G@ .= 4# X B$ L@ Z Y ` Q@ P@ 3# +% I P@ I Q@ J @% ", +"Q$ [* > Q$ L$ * R@ + = Z, ; . $= $ ] # V@ # & - ^& %= . . > & | H= ^& N$ ; # | | U@ - | - ; /& { 1 { W@ ~ { Y@ W@ / 2 2 } / 4 2 : < ( $# $# ) W@ < Y@ &# $# 9 W@ J= } $# / d b ( } /& 7 0 $# 8 U- 7 ,# 6 ~# d ,> W$ ,# $# 7 $# V- 7 a e ~# e g X$ a c h % n o V$ e K= g p r r `$ p 2, Y$ r /# /# C C C w N= Z$ h `$ p ^# D y 8* [# C Q@ N .~ I C A {& A E; |# P@ Q@ Q@ D$ S O H Y S z U 3& P T J +. P L@ M@ P C$ Y 2# L 7# R +. 4# C$ 6# I@ C$ &{ 7# X !> *{ z$ ={ G@ E@ +. =. 6# z@ )& z@ +. )& =. F, /. =% '. '= ;. A@ '. S' 5& 3~ != +~ -{ Q= -% /* |. 7& *% w$ e* -% P= ;{ `> , j# h# a& a& }. ;% 9; 9; n# f' n# U' U' ]= ^= a; q) q) @~ c. )! (= c. c. {% {% {% {% Z- Z- Z- Z- Z- f. l* K! r) v# l. >{ ,) H, p* b; ,{ p* '{ W= W= j& A# L; ~! p~ z. [= [= z. L~ ') M; N; m- [= N; 5% $, b, ){ q~ 6% O; 6% H. {~ F# c, c, b~ a% H# .- !{ .- y' F# H# .- F# .- .- 1> d; 1> ^' c! d; d! q- q- q- ]~ d% t* f; q- ]~ ]~ ^~ ~{ @; C' *+ @; 7= *+ *+ @; b) @; *+ 0= B' #; *+ {{ C' Q~ b= `' S; b= l% A* Y# %, %, k' k' %, 3+ s% %, %, ]{ 1+ f, ^{ g, 6+ .! d= e~ i! @$ ]) 6+ >- l' 7+ +! K> j! l' K> e= e= G* >~ e= u~ %$ G* G* ,- )- G* ,- K& 0+ &, w% )- j+ l; ;$ @) l; ;$ @) ;$ g+ /) l+ /{ h+ ({ r+ l+ >$ ;$ l+ >$ t+ '$ >$ n' t+ s+ y% u+ '$ t+ t+ w+ u+ s+ k, m; B+ B% R, A+ B% A+ C+ B+ A+ B+ E+ B+ A% B+ A+ C+ B+ A+ E+ Q& E% B+ C+ C+ L+ E% E% L+ L+ /- P+ /$ O+ /$ G% T+ R+ V+ S+ T+ R+ V+ _{ Y+ Y+ W+ .@ @@ V& X+ W+ +@ @@ X+ :$ :{ f~ @@ +@ +@ #@ @@ +@ #@ +@ +@ #@ %@ &@ *@ &@ %@ &@ =@ *@ >@ D- 1$ (@ `& L% G- H- `& d> {; ,@ {; {; S* R% 0$ 9$ }@ W% !@ g> ^@ 1- }@ ^@ 9@ |@ {. h & <{ *) `, s, r, x, y, x, x, r, v, x, y, u, u, s, u, y, x, s, z, x, y, s, s, x, x, s, x, s, x, x, u, =) x, x, s, y, s, A, x, s, q, <, v@ &. '& ;. %% A@ c# ,& 5# )& &. ). &. 4- &. (* 8# +. V A@ ,= (* A@ E@ H X E@ 2# 2# T T C$ b- Q@ M@ L@ L@ P@ P@ I P@ Q@ J #= Q@ A M ", +" + + M$ & # # $ ; - - > ^& ^& & ; & U@ V@ [* $= > . & - 2 ! - ^& ~ N$ S$ | N$ & 5- ; ^ %= 2 ~ } ( ~ } *# V$ 1 ) - ^ ## / ) { ,# $# W@ | 6- ( == } } e d -> } e ( 8 [{ ( } &# [ 6 6 V$ &# V$ [ a 8 7 7 d 6! }{ a 8 9 9 ~# $# i [& g q> ~# h -) 7 `$ K= l n 7 r r h p :, p r p q s> ,> Y$ I z D `$ M z /# C r z y w G Z$ w A I K@ Q@ K 1& |{ Z z H$ A B K@ M 3# A 8* O H S O@ Y d- X H J T T Y C$ #. d- O= 7# @. C$ C$ Q' X E@ >. L@ V H$ +. . E@ (* .. =. $% +. z@ ). 0# 9# A@ ,. ,. *. *. A@ ). *. x@ '. x@ /. {. /. |. 5& `> %% w$ /. %% v@ {. u' k~ *% -% :. 5) {= *% 0, , , l~ a& g# 9; 9; 9; f' f' n# n# 1{ ^= 6. a; v' a; @~ e. )! V' e. c. {% h. {% Z- h. h. Z- h. K! K! f. K! r) K! H, H, ,) H, (% (% p* W= ,{ b; K; W= `- $~ W= @, [= ') m- z. X' m- 0! A> A> ') 0! b, C> {~ H. C> G. 6% ]! 6% ]! b~ D> G# ]' H# H# 1> a! H# H# H# .- 1> 2{ c! 1> H# d; d; d; 1> ^' d; f; ]~ t* t* z& ]~ 3{ f; 3{ 3{ ^~ O~ 7= *+ &+ 7= @; ~{ ;+ =+ =+ @; @; C' 0= h! 4{ F> @{ P! Y# Y# S; {{ f! Y# %, %, b= Y# %, %, ]{ 6+ H& k' b= /+ b= B* 1+ 1+ f, k' 1+ 1+ -~ l' 5+ l' 7+ .) K> G* i, j! .) i, e= G* ^) ^) u~ G* e= e= k; j+ G* ^) G* e= &, 5{ n+ k! j+ l+ ;$ l; l+ @) l+ l+ l+ n+ ;$ l+ l; =, l+ l+ ;$ n+ >$ t+ 6{ y% 7{ V; '$ s+ u+ u+ t+ '$ i= w+ i= i= w+ B+ C+ A+ m; B% w~ B+ C+ A+ B+ B+ C+ ]$ C+ A+ ^$ 8{ 8{ R& E% /$ 9{ C+ C+ P> S+ L+ Q& L+ /- /- Q& O+ R+ R+ P+ R+ V+ R+ T+ Y+ R+ Y+ Y+ V+ U& U+ X+ Y+ m= U+ X+ +@ @@ @@ 0{ M* +@ &@ #@ +@ &@ #@ #@ #@ #@ #@ %@ *@ m, &@ &@ *@ -@ [- p= >@ >@ )@ -@ I% &@ (@ 9$ ]@ 2$ T% (@ }- O% U> :@ a{ /@ }@ W% !@ !@ 4@ 0$ P* b$ 3@ !. f ~ + J$ [) 5' ^, v, z, x, s, x, s, x, y, x, z, u, y, y, s, u, -! y, x, u, x, x, x, x, z, y, y, 7' x, v, v, }) v, v, 6' s, s, s, =) >> x@ p) (. !. !. -. ). '. -. A@ ). )& -. &. .= ). 5# #. 8# ,= .. #. E@ +. $> G@ V 2# P L@ P P M 1# E$ M H H K@ Q@ A Q@ Q@ N@ P@ A I ", +"R@ # T@ # # S$ > > & & . > % + . |* V@ V@ . S$ V@ $ U$ ; & # . N$ - ; 4 | . > ] *# | ; | b{ Y@ | < ) [ } } / / | ] ( ## : 7 { 6 } ( { 8 X@ < $# { 6 b _ : [ { ( e 7 6 7 } 6 9 e [& 6 e e $# ( } 7 i i V- V$ ># &# 0 2* n {# a j a c k L= c{ h Y$ % ^# r K= ,> 4* w ^# r p 1; m `$ Z$ /# h ^# P@ ^# m 2; u /# )> _# /# G w C O@ B Q@ J 3# F= I H O@ H$ A I a- b- 3# 8* r! M J E$ d{ L V :* P@ >) T J T H H@ I@ d- C$ D$ L z$ z$ 4# W D$ Q' )& z$ . e- )= ). z@ 5# !. =. #. &. >. 5# ;. '. A@ 0# -. &. x@ =. %% ). -. ). %% %% '= {. |. D~ 6& +~ {. e{ |. f{ H; t@ , P= P= 7& e# P= j# g{ f' g# 0, 9; a& 9; 4. g' n# h{ i{ 6. 6. a; j{ 1{ 0. 9. V' a; ]> Z- h. Z- h. 8! {% Z- h. {% c. h. l* K! r) r) g& H, V= (% V= (% ,) (% V= G~ W= l- j& k{ H~ {! m- [= A> m- l{ m- A> m- ') m{ <> r* G. P; H. q~ |= O; M~ z! 8~ M~ D> F# F# F# n{ S. v) 1> 1> .- .- 1> .- .- 1> !{ d; 1> ^' 1> 1> d; +- t* t* f; f; d% 0) f; f; ]~ s~ +; 6= 7= *+ *+ o{ O! @; @; *+ @; 7= *+ 7= C' p{ C' P~ _' ) Y# q{ <' b= r{ Y# Y# _~ %, %, Y# b= %, |+ A* k' k' k' B* |+ g, .! k' 6+ 6+ g, l' i; g, +! 7+ .) e= e= l' ]) G* e= %$ %$ e= G* e= ^) G* k; ,- +) e= >~ ^) G* s{ l+ l; k! l; l; ;$ ;$ l; ;$ ;$ n+ h+ ;$ ;$ ;$ l+ ;$ n+ l+ l+ ;$ t+ s+ s+ r+ x% t+ s+ '$ w+ w+ M> u+ u+ w+ u+ w+ B+ B% B+ C+ B+ E+ B+ B% A+ A+ C+ B+ D+ E+ A+ A+ C+ E+ R& A+ O+ E% E+ C+ H+ L* Q+ Q& Q+ L+ S+ O+ R+ t{ T+ R+ P+ R+ R+ Y+ V+ T+ V+ G% m= U+ `; W+ V+ W+ @@ W+ W+ Z+ W+ X+ @ @@ :- +@ +@ %@ #@ %@ %@ *@ #@ &@ +@ -@ %@ %@ S> *@ C! p= &@ I% 4$ -@ )@ p= I% * * R% *@ u{ u= {@ }- )@ {@ ~@ R* |@ P* W% ^@ <@ ^; !@ 7@ X 7 ; ], ^, q, r, x, t, s, y, s, y, v, x, z, x, s, s, u, z, s, s, r, s, v, v, x, u, u, x, s, u, u, s, s, s, H) A, v, r, 8' u, t, s, H) ;> A@ ;! T' &. b# d# x@ z@ x@ &. ). A$ l> A@ 7# .. 7# x@ $% V @. E@ .= B$ V H 2# 1# L@ C, S J 2# P 2# O P@ S L@ A H M J 8* 1# S z ", +"* & . . . # V@ S$ S$ - ; | * V@ > |* # . > H= # & - N$ ^ ] ~ ~ ^ ^ %# ~ ; N$ N$ 7- N$ ) T- ) ~ # 2 { } ) { | R$ ] ~ 1 ) : W@ ~ { e W@ 2 X@ ~ /& $# } $# 6 } 7 +# e } } 7 6 7 $# { < } c | ~ ,# e *= e 7 D, k 8 6 k ~# [& s> 7 e 8 h ~# ~# 8 a e r `$ c o 0- `$ `$ n ^# r o c h Y$ h Y$ _# r 2; D D ^# G D 5* C ^# w z w I B H$ O@ M P@ A P@ 8* @% M J O@ H$ P@ P@ L@ ` P@ P 4# P |# H A S L L@ T T V 7# C$ L@ 4; Y D$ C, Y P H J 7# $. >. >. P +. 5# &. )= =. e- %. ;. .= -. &. )& &. A@ ). ;. &. ,& A@ -. x@ /. ~. ~. v{ {. {. d* w{ &% &% v@ `> u' P= e* {= P= {= x{ h# 1. P= d* 0, g# e# g# 8; h{ 0, 6. n# 7) g# g' a; g' @~ y{ m~ z{ c. A{ m~ {% {% {% Z- 8! Z- h. B{ Z- {% K! K! l* r) K! H, l* C{ 8) '{ p* h' I~ i& W' D{ p* E{ N) H~ p* j& [= t) m- A> A> A> :> y! a, a, 8~ O; 6% O; C> 0~ 6% |= M! O; O; ]' L. a% F# n{ n{ x' .- H# x' 1> .- 1> d; 1> d; 1> d; 1> d; d; 9) F{ s& s& d% ^' f; f; q- z& ]~ q- z& O! b) @; G{ H{ O! C' ;+ *+ @; I{ *+ @; ~) a= @; J{ #; S; <' K{ h! b= %, b= b= %, %, b= k' k' Y# c= %, k' b= c= f, d= B* w- %, >- ;- g, i; 7+ 6+ i! 7+ l' L{ e= K> ]) ^) e= i, e= e= >~ .) +) k; >~ e= s{ [! k; k; ,- M{ &, &, g+ j+ ;$ n+ ;$ ;$ ;$ l+ l+ h+ ;$ ;$ A- >$ n+ l+ n+ n+ l+ i= N> s+ y% r+ w+ t+ u+ u+ i= M> w+ N> i= i= j= B% k, A+ B% A+ B% B+ B% B% B% B% B+ B% B% A+ B+ C+ C+ F) C+ C+ N{ S& B+ E+ C+ O+ E% O+ a> Q+ P+ S+ O+ P+ S+ P+ L+ L+ R+ T+ Y+ R+ R+ T+ Y+ W+ Y+ V& .@ X+ W+ W+ W+ X+ `; _- H% O{ @@ @@ %@ %@ %@ +@ %@ +@ %@ &@ }$ %@ &@ J% V, * %@ p' =@ &@ >@ *@ (@ N% )@ ]@ * e> U% )@ I- R* b$ /@ b$ v= 9$ ^@ ^@ W% P{ X% x= a@ Y 6- T@ R@ *) ^, r, v, z, x, s, s, x, s, x, v, s, s, =) u, y, z, s, 6' x, u, u, y, y, y, y, y, z, u, y, x, H) x, x, x, v, s, u, u, x, s, ] $% {. !. '. ). z@ '. b# ). *. %. 5# A@ *. =. G! x@ +. .. .= =. 5# H P T Y H P D$ Y H L@ H ` S H$ ` S J ` H$ K@ P@ A z O I ", +"1* > ]& % !, & $ # # ]& ^ | L$ . ; $= ; & ; | | H= > > |* H= ~ ; $= U$ ~ ~ 2 N$ N$ | & U$ { 2 { ) ^ $# W@ { ) { / U$ /& %# N$ [ ~ $# { } $# # ## d ( { Y@ / < Y@ b / 7 [ < 6 0 6- 7 1 [ 8 -# 8 $# V$ b c e $# ~# 3* 8 &# ,# j 0 g a 6! L= s> 8 i [& 7 n 9- t' n n h w Z$ r n c o p _# c{ Q{ Z$ r h /# :# M {& 4* D C w w ^# F= C P@ P@ I M 3# N N N@ 1& N@ 3# Q@ 3& Q M N@ S O@ E$ H H K@ I S P T L@ O C$ V L@ L J P G$ C$ 1# U 7# V R 5# $% #. B$ A@ 7# )& V R{ 5# =. 4- F, ). *. &. e- (* !. A@ &. 5# ;. B@ ). a* H! D~ /. !. D~ 7, u> >' v@ ~. != 5& e' d# {= e* P= , {= P= , S{ , , j# a& g# k# T{ ., , n# n# f' 1{ v' q) ^= q) !! v' q) e. U{ @~ V' c. {% Z- {% Z- {% Z- h. h. K! g& g& V{ r) K! l* r) W{ g& i& p* h' W= I~ I~ l- H~ @, k{ l- H~ z. [= A> [= [= m- A> M; l{ )) q~ C> n& n& 6% ]! |= M~ u) z! {~ 6% E# {~ r~ b~ X{ c! F# b! H# H# H# 1> 1> ^' d; c! 1> d; d; t* 1> q- q- 9) 0) f; f; q- t* f; 9) q- Y{ (! z& *+ N! Z{ b) C' 7= *+ C' C' 7= *+ *+ `{ S# {{ /~ q{ <' Y# S; %, D' Y# %, k' /+ D' _~ `' %, %, %, ] _~ k' _~ %, ]{ 6+ k' 6+ i; e~ i! 5+ >- i! i; l' ]) K> K> l' l' e= e= G* G* G* ]) K> +) G* ^) k! k; e= G* u% G* .] .] U; )- k! l+ l+ l; ;$ l; l; n+ l+ ;$ ;$ >$ n+ f= l+ n+ >$ n' i= t+ t+ t+ s+ y% t+ i= u+ w+ y% '$ w+ u+ x+ i= k, A+ B+ B+ A+ A+ A+ R& A+ B! C+ C+ B+ B+ B+ B+ B+ C+ B% E+ Q& S& C+ E+ E+ M+ O+ O+ /- S+ R+ S+ Q+ L+ Q+ /- /$ Q+ Q+ R+ R+ R+ S+ Y+ V+ W+ Y+ @@ X+ .@ W+ W+ W+ @@ V& <$ H% @@ +@ +@ #@ #@ +@ #@ #@ +@ #@ @@ '; &@ $@ > p; J% =@ *@ -@ =@ >@ s= ]@ -@ '@ )@ R% 2$ 0$ R% 6$ T% !@ <@ V% !@ 0$ S* ]; J- W% W% f$ +] K@ Y@ & ^, 6' +' @] s, s, x, z, x, u, u, s, x, x, s, y, y, y, s, s, y, x, 7' y, u, u, y, y, u, x, y, z, z, u, z, u, s, u, s, u, 8' x, V! 5# B@ &. '& #> ;! A@ V> &. ). &. E@ $% =. e- .= h~ .= z$ z@ 7# Z V C$ 1# P |; J P@ |# Y E$ R H Y T +% K@ H$ L M I I )> S S S ", +"# # # # !, > - V@ + + = $ > > # ; > # V@ N$ ; & & Q$ ^& & R$ ; ] 2 %= 2 ] V@ 2 /& | Z! ; { [ ) ; *# d ~ 1 7- 2 W@ 2 ) ] 2 ~ & < 1 < ) a J= : | { 1 ;# 7 { $# $# &# d V$ 6 i < $# 7- &# 6 b a a 6 e 8 d ~# i &# 7 6 {# e L= a q> a n n n 0 c L= n o -) ;= % p q> p ~# r n Y$ l ;= c G p ^# #] C q D D M z Z$ w N /# F= J }# $] N E$ z I A N M T U E$ N w M@ D$ N x O@ T H T J M@ Y T X D$ 7# L@ P' W I@ Y #. 7# T C$ L 2# A@ E@ z$ W @. @. $% z$ ,= $% )& E@ )& A@ B$ >. z@ =. &. !. !. !. ;. B@ ;. b# /. '= '. =% ~. =% {. '= '= b# 6& Q= *% t@ *% P= ~= %] u' g{ '! , e# 9; 0, g# g# 0, e# f' 9; f' 6. k# 1{ 6. 6. a; a; !! @~ !! a; &] !! q) V' c. {% {% Z- h. h. h. Z- h. r) h. f. H, K! l* H, W' H, b; $~ (> (% (% W{ *] h' j& p~ E{ k{ N) N) [= [= [= m- m{ [> !' 0~ 0~ q~ q~ ]! z! 0~ 0~ C> |= |= O; {~ =] a~ Z) y' n{ a% c! y' y' c! x) H# ^' ^' ^' .- d; d; 1> d; d; 1> q- f; f; 0) q- q- f; d! -] ;] O! ^~ 0) +- v& H{ v& C' @; @; 7= *+ @; @; 7= `{ P! Q) f! Q~ <' D' <' R) 5> k' b= Y# %, %, _~ %, %, %, H& Y# _~ k' k' ]{ >] d= 6+ k' 6+ i; i! e~ l' i! ,] 7+ 7+ .) e= l' l' i, e= e= e= ^) u~ ]) ;~ ^) e= %$ u% %$ %$ ,- ^) G* .] '] g+ l+ ;$ l; l+ l+ ;$ l+ l+ l+ l+ ;$ l+ l+ l+ ;$ ;$ ;$ l! D) s+ y% t+ s+ A- g= t+ i= N> y% t+ u+ s+ w+ ]$ B% B- B% A+ B+ B% B% B! B- A+ A+ K* C+ A+ C+ A+ A+ D+ J+ B+ )] a> F) C+ F+ C- K+ O+ /- Q+ S+ P+ S+ L+ Q+ R+ E% R+ T+ S+ R+ R+ T+ R+ T+ _$ m= .@ X+ W+ Z+ X+ W+ @@ Z+ +@ _- :$ W+ @@ @@ +@ p; #@ %@ #@ +@ +@ >@ %@ &@ D- > !] %@ D- * 1$ -@ 4$ ^@ '@ G) .* R% 6$ N% S% ~@ (@ >, P* X% }- W% g> U% x= J' b$ X% i@ D *# $ i) q, r, q, x, s, s, t, y, t, x, u, s, s, |) x, x, x, z, u, u, x, s, z, u, s, s, y, z, A, v, x, x, u, x, z, x, x, s, s, s, x, x, q, B$ '. ;! A@ x@ ). (* =. =% x@ )& P )= z@ )& $% H@ &. .= 2# 2# @. U C$ L@ O R S P T D$ P C$ ` 2& +% J E$ S z I M J w @% ^# I ", +"$ # ]& > # > . $ + & ' S$ N$ - ^& = > R- & . # M$ Q$ # > . H= > ] | ; 2 { V@ { | ; [ ] ~ 1 $# ## Y@ ) `@ ~ ;# ] } ^ ] ! } 2 [ d J= { ) ~ 6 i W@ [ / Y@ : { *# &# } $# 6 8 } ## } [ } } c e $# == _ =# b a N' $# e a 0 -# e {# e ~# L= g c ,# 2, ~# [& o g n C; _# r `$ n h r 0 [& r r m `$ q m t w I G z z G I p ^# `$ w N J O A M x E; x I G M z 7* I Y Q@ I |# P@ P P d- E$ Y L@ E$ S J C$ G$ X d- U Y . z@ y@ #. E@ .. #. @. X +. #. =. )= .. E@ (* 0# )= ;. 5# &. )& =. &. 5# &. ). x@ v{ b# ,& S' z@ ,. 5# /. {. D~ '. +~ &% ~] |. &% w{ 7! {] 7& t@ P= f{ g{ -% '! h# s@ {= j# g# 0, 9; l~ l~ 9; 8. U' f' ]= ]= n# v' {> g' a; !! ]] w> a; @~ c. Z- {% K! Z- Z- K! h. ^] h. h. f. ^> h. F~ l* g& g& W' (% ,) '{ p* ,{ W= L! z> z. k{ E{ `- l- m- m- m- A> 0! L~ [> /] (] q~ 0~ M~ q~ C> z! O; ~' E# {' C> M! F# x' y' _] x' ]' H# !{ :] x) |> .- 1> ^' .- H# d; d; ^' q- <] F{ q- f; M, F{ 3{ z& q- 3{ ]~ ]~ (! f% [] y) y) ~{ C' C' *+ *+ *+ ~{ C' _! ~) `{ ~) _! Q~ j' -- b= S; /+ }] A) %, %, b= b= k' %, b= c= %, b= k' k' A* }+ k' -~ %, ]{ I& +! i! ;- >- g, .) .) l' L{ ]) l' i, e= G* G* %$ G* i, u~ ^) e= >~ 6> %$ G* f+ G* ^) &, /) 6> u% ;$ ;$ g+ l; l+ l+ ;$ ;$ l+ l; n+ l+ ;$ ;$ l+ l+ |] 2' y% t+ }! =, /{ t+ s+ '$ u+ '$ |! y% s+ u+ u+ w~ R, B+ B% A+ k, B+ B% B% B% B% B- B+ C+ A+ C+ B+ D+ J+ C+ C- O+ J+ C+ E+ M+ L+ L+ L+ a> /- P+ L+ E% E% /$ S+ R+ T+ T+ R+ R+ R+ V+ G% .@ `; W+ W+ W+ @@ @@ W+ X+ @@ @@ H% H% #@ @@ #@ +@ [$ &@ %@ #@ }$ }$ *@ &@ #@ =@ V, S> 1] *@ 2$ '@ I% >@ * )@ T% G) G) R% ^@ P* W% P* !@ !@ W% ^@ 4@ d$ 4@ d$ !@ /; |@ u@ C ] ], `, 6' 5' +' r, s, x, s, s, z, x, u, H) s, v, z, x, s, x, t, u, v, u, u, x, u, s, x, u, x, A, u, y, x, s, x, x, x, s, s, v, s, v, 6' 2& ^. ^. ,. !. (* &. !. A@ &. !. 4) A@ ,& >. &. 5# V> R V> E@ F; G@ E@ C$ R E@ E@ 2# 1# Y D$ 2# Y P@ }; H J P@ A z O@ Q@ G x I I ", +"]& [* V@ & . 0' > . = }, ; . > . ^& # . ; T@ # N$ - ; T@ - 1* | ; ' ] 2] { ) - ] Z! ; | | ) 2 ) ~ 2 & U$ { ( ~ ] 7 *# X@ ( ## ) W@ ## ;# ~ d ( / 1 ( ~ 2 4 3] N' d U- 7 6 7 -# 4 9 Y@ $# :& J= X$ &# 2 3* '# b a c{ i 9 -# a ,# c 0 a ~# e a r p 2, n h c f h h n p _# `$ X$ `$ ^# Y$ Z$ Y$ ,> `$ Z$ w G w G B `$ m {& ^# F= z N w N M D D z I I z F B P@ |# K@ m) ` 1& W |# E$ J E$ L@ H$ H L@ C$ M L@ C$ H C$ K@ 7# H 4# #. z$ 4# +. 4# 4# P B$ $% .= *. #. A@ ,. $% $% >. $. *. =. +. e- b# b# x@ &. .. x@ ;. &. &. D~ '. /. ~. ~. /. S' '= >' &% 3~ 4] 5] >& /* != `> e* ., ,% , P= P= s@ P= 0, e# P= l~ 9; I! 0, f# 9; g# f' f' 7) i{ j{ y{ ]= !! ]> #~ q) q) w> c. {% Z- K! h. K! Z- h. K! h. l* g& r) F~ l* l* W{ W' W' p* W' h' 6] I~ 7] l- L! p~ W= N) 8] A> [= A> A> m- ') 9] ') ') 0! 0~ 0~ ]! O; O; 6% {~ r~ z! { b~ F# Q; r~ D> =] ^! c! b! 0] a] ^' 1> .- d; d; 1> 1> d; 1> s& 9) ^' 9) f; q- ^' f; +- f; q- ]~ F{ s~ .; N! e, 7= 7= *+ *+ @{ @; C' G{ C' *+ @; `{ S# @{ B' ~) S; Y# <' <' b] D' b= %, %, k' k' %, %, k' d= k' %, k' ] _~ c] i! ]{ d= 6+ .) i! -~ l' d] g, 7+ 5+ ]) i, u~ .) R! e= ^) e= L{ ^) G* e= e= ^) 6> k! ^) +) k; ^) U; l; ;$ k; k! ;$ z- l; l+ l+ ;$ l+ l; l; ;$ @) ;$ A- l+ @) ;$ l! >$ y% y% A- V; s+ t+ s+ s+ t+ t+ s+ w+ w+ u+ z+ z+ B% B+ B% A+ B+ B+ A+ C+ A+ B+ A+ A+ C+ B+ B+ _) C+ A+ S& Q& #) E+ C+ E+ L+ O+ Q+ S+ L+ /- S+ /$ L+ Q+ R+ R+ R+ T+ T+ V+ V+ T+ T+ Z+ Y+ W+ V+ Z+ W+ W+ W+ X+ W+ @@ `+ Q> +@ #@ #@ +@ #@ *@ %@ %@ ~; }$ ~; D- > 1] &@ 4$ e] >@ 4$ >@ *@ >@ * .> R% ]@ s= ,@ * I- (@ * +* 9$ +* 4@ Q* !@ 9@ V% 2@ ^; X% '. c{ f] % z~ z~ =) s, s, 8' u, z, x, t, u, u, x, x, x, x, =) g] x, s, x, x, x, y, y, z, u, v, s, s, s, u, y, u, s, y, x, y, }) s, s, x, v, 6' N ). ~. = B= -. ). x@ &. )& L) ). 5# >. z@ -. (* =. (* ,= z@ )= B$ 2# 4# X R G@ 2# 2# Z ` M@ L@ +% K@ P ` Q@ P@ P@ H$ F= A w z x ", +"]& o! . $ > . S$ . ^ H= S$ Y! - ^ `@ > U@ + - - V@ | ; . % - N$ ^ 5- > + ^& U@ ] N$ ] N$ | | N$ | , | ) - ~ ~ | | %# ~ ## } $# X@ } : { _ ## & ## 6 X@ } } I= V$ } ( : $# [{ ># g b ( -# b 6 ~# ,# $# 7 a &# ~# c n a 7 =# g 0 o [& a L= ~# ~# e e Y$ o e a c C; n r h ~# ^# p ;= ;) r u h p `$ D p G w ^# w Z$ ,> G m M O@ N= G I C ^# I O@ L N P@ h] J J O U I 3& P@ T J J D$ T ` K@ H Y 3# ` Y I@ @. J .= I@ L z$ 5# 7# . C$ .= H V .= y@ +. 5; X +. x@ ;. *. 5# =. $. A@ $. ). A@ y@ '. b# a* !. S' +. &. '. !. H! {. {. !. D~ /. |. ~. =% 1~ 3~ +~ *% 9& d* k~ -% , P= , P= h# e# 0, e# j# '! 9; I! l~ f' k# ]= 9; 7) k# v' 1{ i] ^= !! j] Y~ h* q) V' e. Z- Z- Z- k] h. h. h. K! K! K! g& H, K! H, l* U= h' G~ ,{ p* l] m] W= ,{ l- l- k& W= l- [= A> z. m- m- A> ') n] ') 0! a, a, C> ]! |= H. q~ ]! 9~ r~ ^! Z) b~ F# 1> b~ b~ :] H# H# 1> o] d; d; .- 1> 1> 1> 1> d; .- 1> ^' d; 9) f; t* q- f; f; f; ]~ f; M, Y{ N! f% p] ~) 7= @; c) @; @; @; ~) C' C' C' @; _' C' C& @; q] l% Y# r] D' 5> D' %, Y# b= %, k' %, k' %, %, /+ %, %, k' s] g, 5+ _~ 5+ 7+ e~ g, #{ .) d] i! .) .) +! .) .) t] e= e= >~ ^) ^) K> %$ G* e= ^) k; ^) e= k; )- k! ;$ ;$ u] j+ ;$ |' g+ l+ @) l; l+ ;$ ;$ @) @) n+ M& ;$ n+ ;$ n+ l; y% t+ y% n+ x+ t+ '$ o+ i= s+ i= w+ u+ u+ x+ A% B+ B+ B% B+ B+ B% B+ A+ B+ B+ B% B% A+ B+ B+ B% B+ A+ ;; S& E% L+ E+ E+ M+ O+ P+ O+ E% L+ /- Q+ Q+ L+ S+ T+ S+ V+ R+ T+ T+ R+ (- V+ V+ W+ .@ V& Z+ W+ W+ @@ Z+ @@ @@ M* v] +@ +@ +@ Z& #@ @@ %@ #@ &@ U, w] x] > %@ >@ $@ =@ *@ 4$ -@ -@ )@ !; S% R% * R% ]@ * U> * T% }@ ^@ {; W% P{ P{ 3@ P{ W% y] 5# h > + ^, 6' v, s, y, t, u, u, x, t, z, s, u, x, u, x, s, v, =) y, u, s, x, y, x, u, x, s, y, x, s, x, u, y, s, s, s, v, z, s, x, x, H) v, `$ !. -. {. x@ A@ {. B@ ). d# C@ 4- A@ 5# #. E@ +. 4& E@ X T E@ H@ J E@ R )= }; J Y P #. H M@ S M P@ H Z J z H }# K@ 1& I H$ ", +"]& H= !, R@ V@ # # $ # & z] ; . Q$ V@ & > > . V@ R@ - *' }* - > ; ; > ^& ] U$ . & X@ | P$ | ) 4 2 *# R$ & 2 ~ > ~ 2 | { &# 2 / /& [ ] +# J= 1 { ~ ( ~ W@ } , 6 9 -> == $# $# 7 q> ~# a 6 7 /& == e e 8 $# 7 6 e 7 8 &# [{ g g ,# Y> , 8 e 8 a a K= a ~# ~# !# 6 c o 2; p 4* r p ~# s K= h o 0- m D p `$ ^# y u `$ D B N w z 5* z D Q@ 2; W) s D A O@ L J T O@ O E$ |# O E$ J A P O T H T s! J C$ X J L D$ H D$ Y Z 7# C$ D$ y@ ,= E@ P A@ +. E@ 8# C$ @. E@ A@ Q' A@ ,. +. z@ 5; !. =. 9# *. x@ ;. b# ). ,. %% {. [. T' ^. &% {. /. /. ^. &% 3~ 3~ &% |. A] 3~ -{ >' -% P= 7! , '! , a& j# '! j# '! g# ;% ., j# n# n# f' ]= f' 7) y{ ^= {> ]= a; /= Y~ !! w> Z- Z- {% {% {% K! l* Z- Z- h. B] f. g& K! K! H, l* l* H, H, W= ,{ )' p* I~ W= h' z> @, H~ z. z. m- A> A> N) A> ') [= C] l{ ') t) 0~ ]! q~ 0~ 9~ 9~ { {~ O; =] =] S. =] x' r~ H# H# H# H# .- .- d; !{ d; d; .- d; 9) ^' d; ^' ^' t* f; q- 0) q- q- Z{ ]~ O~ f; Y{ ^~ D] *+ *+ v& E] y) C' @; F] b) *+ *+ b) P! ~) 7= P~ d~ W# b= d~ R) b= G] %, Y# b= %, Y# %, b= %, %, %, k' /+ %, .! B* 1+ c] 2+ 7+ g, g, .) .) g, 6+ -~ ]) i, K> .) l' ^) e= ^) G* ^) R! G* >~ e= e= ,- %$ e= |' g+ 6> /) 5{ /) j+ ;$ |' &, |' l+ ;$ l; l; ;$ L> l; l; C) ;$ >$ ;$ l+ n+ y% t+ }! r+ x% y% t+ w+ x+ w+ o+ u+ w+ u+ i= ]$ B% k, B+ B+ B% A+ B+ A+ C+ A+ B% B+ B+ A+ A+ A+ A+ ^$ ;; C+ E% L+ k= A+ C+ k= O+ E% O+ P+ P+ C- M+ Q+ R+ S+ S+ /$ S+ V+ Y+ Y+ V+ R+ X+ W+ X+ X+ V+ V+ @@ X+ Y+ X+ @@ <$ &@ &@ +@ +@ Z& +@ %@ +@ +@ %@ &@ e] *@ W, &@ *@ 7$ !; *@ *@ *@ -@ `& `& Q% s= T% R% R* +> ~@ 9$ (@ V% :@ H] }@ b$ b$ 1@ 9@ R* |@ 4# e & ], z~ q, q, s, s, x, s, =) x, u, v, t, s, s, s, H) x, s, s, x, y, s, x, s, u, u, x, z, x, s, y, x, |) u, A, s, v, q, s, s, x, s, H) 6' I] {. !. &. z@ ;. ). '. &. -. =. -. z@ z$ 7# -. z@ A@ (* 7# G@ 5# 5# E@ R +. X C$ H@ 1# P@ L@ P@ O S I I H Z N J H$ N= A G b- G ", +"V@ k) ]& R@ * + $ & # & # N$ ; N$ $ + > + !, # > ; ; H= X@ %= U@ > & h) `@ ^ - $= & U@ %= ; | [ 2 ~ - | { ) S$ ) | 2 2 [ /& [ 8 < # ## W@ | %= ~ | { } *# &# 4 ( 6 ( } ) V$ i &# 7 J] 2* q> /& 8 6 i ~# e b 8 g 6 8 e q> 2* 1 K] e X$ 8 e 0 ~# h i n Y$ ,# e o h r `$ r 0 ~# Y$ n Z$ c r 6* o )> N ^# ^# `$ Z$ G z z N I t /# w G A w /# A I N D N Q@ P@ Q@ T H E$ L@ S 8* J H H$ E$ P@ L@ E$ P X O@ P@ X L@ P X 7# T 4# E@ .= Q' z$ z$ R' A@ . )= #. z$ +. O= (* e- G@ !> )& )& A@ &. 5# 9# H! '. b# 7, o) x@ '. 6, '. 0# '. ~. =% &% w{ ~. 5& 6& '= +~ /* 8& e* L] {] M] *% P= , '! P= , e# '! '! , 8; g# 9; ;% g# k# k# 7) k# y{ 1{ i{ i{ {> @~ !! V' N] j{ B{ Z- Z- K! K! K! g& {% c. h. Z- g& g& l* r) l* F~ W' W' W{ b; `~ I~ h' 8) p* l- l- [= L! {! [= O] m- m- A> m- A> L~ m{ m- A> P] 9% ]! 9~ =] n{ O; O; {~ ^! H. r~ Q] =] M! b! b! .- .- H# H# R] d; d; H# .- 1> 2{ 9) ^' 9) 9) ^' q- q- t* e; ;] f; ]~ f; f; 3{ 3{ S] ]~ ~{ z) &~ T] O! @; @; @; @; @; C' C' I{ C' U] c~ V] W] r{ _' h! <' 5> l% k' _~ _~ _~ k' k' b= k' _~ %, k' ] :~ _~ X] i! d= Y] ^{ g, +! ]) +! g, ]) ]) ]) ,] .) .) ;~ ^) R! >~ e= e= i, k; ^) e= @! k! e= ^) k; 6> e= .] Z] l; k! l; ;$ l+ l; l; ;$ @) ;$ @) l; l+ l; l; ;$ n+ l+ l+ A- |! |! >$ 2' i= |! t+ i= i= s+ w+ w+ u+ w+ k, A+ B% w~ B% B% B+ B% B+ B+ B+ `] A+ B+ E+ A+ A+ A+ B+ B+ B+ B+ Q& ^ C+ D+ ^$ P> L+ L+ O+ R+ /- O+ G% /$ T+ R+ T+ Y+ /$ R+ T+ t{ T+ T+ Y+ .^ V+ Y+ Y+ X+ W+ W+ Z+ @@ `; X& f~ +@ W+ +@ +^ @^ +^ +@ +@ +^ w] !] %@ &@ w] > w] S> -@ 7$ u{ C! W, '@ '@ (@ 5$ R% ~@ ,@ <@ +* /@ !@ 9$ }- [@ }@ S* :@ /; a@ 2# 6 > R@ 2! q, q, s, r, v, |) x, y, z, y, s, s, v, x, s, r, r, v, s, t, z, 8' x, x, s, u, x, s, s, t, v, t, u, z, u, s, r, x, s, s, r, v, v, @# A@ x@ '. x@ ^. A@ {. ). x@ ). !. ). ;. -. -. ;. I@ 9* +. (* $. z@ C$ H L@ L@ Z X H@ M L' P J C, }; P@ J J Q@ M M z I 2& P@ {& ", +"$ + R@ R@ ]& # #^ . > > =' S$ $ ]& k) ] - $ `@ V@ |* > * Q$ - ] & > ; ; Z, ] - U$ < | { [ ] %= ~ ~ Z@ ] | { | 9 ^ < [ { W@ X@ W@ ) +# ^ / $# N$ &= } 1 &# ( } *# 3* $# a 7 9 &# a' &# : -# $# 7 [ ## { e 8 7 6 b 7 7 e 7 ( a c a 6! 8 b n L= a' g c L= 2, h 9- X$ ~# F! h r L= r % e h h ^# p Y$ y G t ^# @= w w C N G z m F= 4* ^# G G I O@ K@ A %> I Q@ E$ L K@ J |# E$ M N |# L J J S L@ D$ P@ T I@ J T @. B$ X S 2# W }; ,= +. 4# z$ !> +. )= E@ =. >. >. . ). >. !. $% .. *. $% #. x@ &. 5# 5; !. b# '= '= ). x@ {. b# %% ). 5; 3~ 3~ {. 5; +~ ^. ^. '& $^ 1. d* P= ,% e* P= {= {= , '! , , 6) j# 8; U' 9; 6) f' ]= n# y{ 7) %^ y{ !! f' !! !! ^= i* {> !! (= c. h. Z- Z- {% h. {% r) r) r) K! g& l* r) l* r) H, W' H, H, D{ &^ h' )' *^ W= H~ N) A> {! A> A> A> m- A> A> 0! A> ') 0! 0! )) H. 0~ )) )) =] { {~ Z) n{ {~ |= =^ Q] -^ v) y' ;^ >^ c! .- a] .- 1> .- ^' 1> !{ 1> 1> 9) t* ^' ^' q- f; (! f; f; ;] f; Z{ f; f; N! s~ ;] ^~ ,^ H{ O! z) C' @; C' @; C' C' C' C' ~) I{ =~ `{ W# D' d~ '^ r{ %, b= %, k' A) k' %, k' _~ %, %, _~ k' :~ ] w- 1+ s] B* )^ -~ e~ .) >- g, >- l' .) !^ R! l' .) ^) ^) G* ^) e= i, ~^ +) e= e= 6> >~ ^) e= ,- e= }' &, @) )- @) @) ;$ l+ ;$ ;$ ;$ l; l+ l+ l; @) ;$ ;$ n+ l+ l+ l+ A- }! }! y% u+ t+ t+ w+ h= V; t+ s+ i= w+ x+ B% B% B+ B- B% `] {^ A% B+ A+ C+ B+ B% B% A+ B+ C+ E+ E+ E+ A+ O+ M+ C+ D+ 0> P+ L+ O+ O+ R+ S+ Q+ L+ L+ S+ T+ V+ V+ V+ F% T+ V+ Y+ Y+ Z+ _$ T+ .@ Z+ +@ @@ @@ @@ W+ @@ M* H% +@ +@ #@ ;@ +^ $@ %@ &@ p' %@ p' !] !] U, p= 7$ =@ &@ =@ )@ 5$ ,@ S% ~@ '@ r= 7$ R% I- 9$ ^@ |- !@ !@ }- P* W% h> +* |@ 7@ N 7 > ]^ ], *) q, s, s, s, x, z, z, x, x, s, s, s, }) x, #' x, x, A, v, x, s, s, s, x, y, z, u, x, x, s, s, s, s, v, y, u, |) x, s, 6' r, w, ,, 4- &. '& 5# !. ). B$ V> e- >. C@ =. 5# z$ +. !. A@ 5# E@ B$ (* .. F@ 5# 5# C$ H T P L@ L@ X J M 3# Y Z H A Q@ S 8* I M@ P@ I ", +"] > X! # . H= . > = S$ ; ; + . - ; ] | ; S$ # > & ; ; ; ^ [ ^ - ) > %= ; ] 2 | U@ N$ ~ > S$ `@ ^ ( 2 { $# < { J] / W@ / ## { 1 / ) 4 } $# / [ 6 /& Y@ Y> 4 { 4 $# / 7 } W@ 7 $# e 7 d a 7 6 ,# b V$ ) V- } $# 7 0 e a i {# $# b a L= ~# c ~# n p c n h n Q{ `$ m w _# p Y$ n /# 1; Y$ % G :# w `$ G O@ z G w G z ^# w G b' w I [# G E; M A h] E$ Y A J J P@ P@ A T T :* L@ I@ L@ L U P T D$ R I@ D$ I@ Q@ L L@ 1# L@ )= Q' +. ,. @. 5# A@ $% >. +. X (* #. 6# &. 6# >. z$ +. ). *. >. ,. !. -. =% %' b# %% 3~ /. ;. ~. &% &% {. {. ). /. =% 1~ ^. ^^ *% 9& 6& 9, -% P= '! P= , 0, g# '! I! e# 0, ., g# T{ ., ;% ^= {> @~ 1{ g' ^= !! i{ !! !! i* &] !! ^= (= Z- {% Z- Z- Z- Z- h. h. h. h. K! g& l* l* r) l* H, W' U= (> G~ ,{ /^ l- l- H~ `- [= p~ m- m- ') m- ') z. Z= q~ )) <> 0~ 0! X' M~ ]! 9~ {~ ]! M~ 9~ 0~ {~ {~ (^ r~ -^ v) F# n{ :] v) _^ 0] b! F# H# 1> 1> ^' ^' d; 9) f; F{ ^' F{ f; 0) f% F{ :^ ]~ ]~ f; ;] ^~ ^~ 3{ Y{ z) f; <^ ~) ~) @; ~) C' ~) C' @; C' P! ~) {{ I{ l% r{ R) V] r{ b= %, b= b= [^ k' k' b= %, u- %, k' b= k' %, X] i! -~ ]{ }^ i! g, i! .) 6+ 5+ l' l' K> !^ l' ]) G* e= G* G* e= R! i, ,- e= >~ M{ k; G* ^) G* G* ^) v~ |^ 6> k! ;$ ;$ l; l+ l; ;$ l; @) l+ ;$ ;$ l+ @) l+ )- ;$ l+ ;$ |! y% |! h= t+ s+ u+ u+ w+ s+ i= u+ u+ w+ ]$ A+ B+ 1^ B+ B+ B- B% B+ B% A% B- A+ B+ C+ B+ A+ A+ E+ E+ C+ S& L* T, C+ D+ E% /- Q+ L+ /- P+ R+ Q+ Q+ O+ S+ V+ V+ R+ T+ T+ V+ T+ Y+ Y+ Y+ Z+ @@ @@ @@ W+ .@ @@ #@ W+ W+ @^ #@ #@ +@ #@ %@ &@ #@ &@ %@ &@ %@ f~ C! -@ U, )@ '@ 1$ W, q= S% 5$ r= )@ ]@ 6$ 5$ N% N* 5$ {@ ^@ W% ^@ ^@ b$ @> f$ J' 3@ m@ G 6 1) 2^ z~ 5' ^, v, =) H) y, u, s, y, t, x, s, 6' |) v, s, s, z, x, z, z, x, s, s, u, z, s, s, v, x, s, x, x, x, H) y, s, A, x, s, x, s, 6' ), #. A@ ^. d# A@ A@ l> %% B$ !. -. -. !. 3^ &. B$ 5# A@ A@ B$ 4- A@ B$ .= G@ L@ P Y V X P@ P@ L@ T O E$ S P@ P@ x P@ E$ z P@ I A ", +"+ > R@ $ T@ $ # > # ; S$ > + !, > U$ > ; 5- > V@ & ^& V@ V@ - & $= |* ] Q$ U@ U$ { ] & > ] ) ; ; | ] 6 ( ) ;# { b{ ## $# { | [ T- 2 *# W@ +# ) ## ) [ [ } { W@ / ( / < } b :& $# $# 2* 7 7 ~# ,# a b j o [ D, | $# a e a ( 7 c i 7 J] e n ,> n j n s> Q{ Y$ % Y$ g c n 9- h `$ p m m w w o _# ^# s y Y$ 2; D C K C w C ^# ^# G I I F= N t N A I |# E$ |# P@ L@ |# n> E$ T A O T z; M O I@ J T P S z; L@ L P@ P E@ P z$ #. ,= I@ #. $% I@ .= 5# =. z@ z$ 2# Q' ;. ]. v{ &. &. A@ !. 5; +. C@ !. ). p, b# ). X) '= !. b# D~ D~ x@ &. '. {. /. 3~ ~. %% b* v! &% 4^ >' e' 1. 5^ -% A] 6^ 7^ X- , , '! '! 9; f' j# 6^ 8^ g' f' 7) a; ^= 9^ a; y{ j{ y{ m~ 8! w> m~ 8! 8! {% {% )! {% h. K! Z- 0^ K! K! H, g& l* r) H, W{ ,{ F~ s) (> b; W= W= 6] l- l- p~ O] 8] A> m- [= m- m- A> L~ t) K~ 0~ 0~ l{ |= 0~ ]! 0~ 9~ C> {~ ]' 1= ^! {~ Q] (^ Q] =] c! N~ R] !{ H# a^ H# 1> ^' 1> ^' d; d; 9) ^' d; d; b^ t* ]~ f; ]~ f; f; q- f; ]~ F{ N! e! Y{ 7= 7= S] ,^ C' C' C' C' @; *+ C' @; 4{ P! =~ ~) P! A* %, d~ V] %, A) %, k' b= %, %, k' %, %, ]{ _~ k' 2+ _~ _~ >- g, w- k' j! i! +! 7+ l' >- i! .) ]) !^ c^ .) l' u~ ;~ e= e= ^) R! ^) ^) G* ,- )- ,- >~ k; ^) >~ e= @) ;$ k! ;$ |^ n+ @) ;$ @) l; l+ l; l+ l; ;$ )- ;$ ;$ ;$ ;$ ;$ y% t+ t+ 2' {$ t+ t+ w+ w+ i= s+ w+ u+ w+ u+ k, B+ B+ B+ B- ]$ B% B% B% B% B+ A+ A+ A+ B+ B+ B% C+ A+ M+ M+ E% M+ C+ E+ M+ L+ /- L+ O+ P+ S+ R+ O+ /$ L+ T+ R+ V+ R+ V+ V+ Y+ V+ F% f) Y+ @@ X+ Z+ [$ +@ Y+ W+ f) :- <$ @@ d^ W+ @@ +@ <- #@ +@ %@ }$ ~; *@ I% W, *@ D- >@ e> *@ [- (@ (@ q= R% '@ R% 5$ V% T% {; }- {@ 9$ b$ d$ !@ }@ f$ X% |@ q@ % *# V! R@ `, [) +' s, v, x, x, s, x, z, 6' s, s, x, s, s, x, u, u, y, y, u, y, y, x, x, y, u, r, [) s, q, u, r, v, u, z, s, x, u, s, x, v, 5' e^ D@ &. x@ /. /* =. ,& F@ A@ (* 5# 5# x@ 0# 7# B$ .= _* @. ,= R 9* z$ G@ R C$ V H L@ T S G@ P@ |; P@ S A N M@ M@ +% M Q@ Q@ b- A ", +"+ V@ ]& ]& # ; > V@ + # . # $ $ . S$ S$ ] ] - + V@ - 2 ; N$ ; > ] ) ] ~ A; { & . H= ; | ) X@ ~ ; ## { X@ | d [ ^ ] [ ## N$ ] # [ , { < ,# { W@ / ( e [ X@ $# ( ,# &# 7 b $# _ } a } b e ># ># 7 b 8 ~# 6! i g o 3* 7 q> } g ># e [& c s> n Y$ 0 8 Y$ s> c{ ~# h c ;= n ^# `$ t ^# 4* m C p (# p ,> ^# D D w ^# m f^ ;) N I Z$ w I N #= D C P@ A 8* M E$ T #= C$ U H$ P@ z J J L@ T Y I C$ 4# J #. z; T L@ P 0* M@ I@ H@ D$ #% 4# C$ 5# Q' [, . 6# 5# 5# . $% ;' . &. )& R #. ;. A@ . !. !. !. ). )& (* /. =% x@ b# T' =% =% %% ,& /. &% ~. &% D~ >' 9& /. v@ ~] |. k~ 2~ {] g^ ~= _. P= 6^ P= e# '! I! '! g# f' l~ 6) h{ f' ]= n# 7) f' ]= {> A{ 1{ j{ @~ A{ 8! q) A{ 8! Z- h. Z- {% Z- h. h. h. h. r) H, l* H, V{ H, V{ 8) H, /% *^ `~ /^ W= *^ *^ H~ 8] @, {! ~! A> m- [= ') ') ') m{ <> ]! 0~ m{ q~ 0~ ]! M~ ]! ]! 0~ 9~ =] 9~ 6% 9~ M! =] Q] R] a] b! v) 1> /! _^ 1> 9) .- H# d; 9) 1> 9) q- q- 9) F{ :^ q- f; ]~ ]~ ]~ ;] q- ;] (! N! P) y) @; ,^ y) @; @; C' C' @; ~) h^ @{ C' `{ i^ /~ @{ Q~ b= l% q{ Y# b] j^ %, %, k' %, k' _~ _~ b= %, :~ _~ k' f, w- -~ e~ s] d= i! >- i; t] g, g, ]) k^ u~ ^) t] .) u~ l^ l^ G* e= e= ^) e= ^) >~ k; k! ^) e= e= G* ^) ;$ l; l; l; l+ l; l; ;$ l+ l+ @) ;$ ;$ @) ;$ ;$ l; ;$ l+ l+ ;$ >$ |! y% >$ W; y% t+ t+ i= w+ t+ N> w+ u+ w+ j= B% B% m^ B- B- B% B+ A+ A+ B+ B+ B% A+ B+ B+ B+ D+ A+ B+ M+ E% O+ F+ A% E+ O+ L+ Q+ ^ P+ T+ S+ G% L+ T+ R+ R+ R+ T+ Q+ V+ T+ T+ Y+ _$ V+ @@ W+ Z+ W+ +@ W+ @@ Z+ @@ W+ q; +@ #@ &@ +@ %@ &@ #@ #@ #@ *@ &@ ~; =@ >@ =@ 5$ 2$ >@ e] Q% =@ '@ M% R% R% O% a$ !@ R% R% ,@ 9$ g> f$ }@ 8$ }@ !@ !@ w$ r ~ + *) 5' [) v, x, v, x, s, v, u, u, s, s, -! s, u, y, z, y, v, =) x, v, s, x, s, s, s, u, 8' u, s, x, u, t, H) s, s, }) s, H) r, x, =) v, s, N 5# {. !. ,& 0# {. x@ '. ;. x@ &. &. %. 9* B$ *. A@ E@ A@ B$ #. .= X $> D$ O Y S J M@ T H$ J@ T +% a- P@ A %> B, N A N Q@ I ", +"+ + !, & # & Q$ $ > * & ' ; $ * * ; $= U@ }* - ; S$ N$ > . > & ; | - - ]& ^& [ | (& ; U@ ] N$ N$ 8- ~ ] ) - { N$ < 4 } 2 [ 1 [ [ ) 4 ~ 2 ~ $# 6 @# / 2 ## d { d $# 0 8 $# < a 7 7 ## j $# 0 V$ V$ 6 V$ '# '# e a c j 7 0 ,# 7 0 e ~# o ~# e |& o ^# ,> Z$ o n t' Y$ n^ h h c t' ,! n D r m 4* p I m Z$ 4* Z$ ^# o^ x C G D z I I {& C C #= z N J S A E$ H H |# J J L O@ M O H L@ J P I@ 3& O J d- X U d- G@ T E@ +. E@ T =. G$ $% A@ .. z$ W }; $% %. +. &. G! Q' 5# ;. ,. 9# b# *. 4- F, !. F, ). 7, C@ b# !. %% {. /. 1~ ^. &% ^^ 3~ D~ |. 6& -{ 3~ p^ >' k~ q^ r^ p^ P= P= A] , , ~= 9; , 9; 9; 7) h{ 6) ., f' 6. f' @~ s^ y{ y{ a; i{ y{ q) m~ #~ i* !! &] B{ c. h. h. r) Z- 8! Z- h. h. h. W' r) F~ 0^ F~ s) W{ I~ )' h' h' W= H~ *^ l- t^ z. O] H~ @, p~ m- m- [= m- 7~ |= q~ 0~ <> /] 9~ 0~ O; 6% ]! 0~ ]! ]! ]! z! 9~ x' Z) N~ a] u^ v^ d; b! :] o] w^ 1> 1> ^' .- d; d; 9) f; F{ ^' Z{ ;] f; ]~ ;] ]~ ;] ;] ]~ ^~ s~ x^ e! C' S] y) O! ~{ *+ *+ @; ~) ~) ~) C' C' P! ~) Q) y^ z^ k' %, d~ A) b] A) k' k' A) b= %, k' k' %, k' k' %, b= A^ ]{ ]{ g, 6+ s] .) i; e~ t] #{ e~ -~ t] 7+ ]) u~ t] u~ e= ^) G* ^) e= R! k; k; ^) >~ k! ^) ^) ^) ^) ^) l; l; l; )- @) ;$ l+ @) l+ |' |' |' l+ l; l+ l; l+ l+ l+ l+ n+ B^ n' s+ D) O& D) t+ s+ h= i= '$ s+ y% i= w+ '$ B% {^ R, () B- B% B+ B+ C+ C+ B% B% E+ A+ C+ E+ A+ 0> T, E+ M+ E% E% C+ D+ M+ O+ O+ Q+ Q+ P+ P+ E% Q+ Q+ R+ T+ R+ T+ T+ Y+ V+ F% T+ T+ Y+ U+ X+ +@ Z+ Z+ @@ @@ p; @@ #@ @^ X& d^ #@ &@ %@ +@ %@ %@ $@ <- V, =@ *@ *@ >@ > C^ I% *@ q' * r; >@ (@ ,@ 5$ R% N% * /@ W% !@ P* 8$ /@ c$ :@ (; !@ E@ o ~ # V! g] x, r, s, 8' v, z, s, H) z, H) x, z, =) s, s, x, s, v, s, s, s, z, z, s, s, s, s, v, s, 7' z, s, v, s, s, s, 8' v, t, @] 5' }) v, v, D^ x@ /. {. '. &. e- ;. ). &. =. )& ,= =. 5# 5# z@ ,. .= 5# z@ .= z@ z@ 2# J@ E$ Y H E$ L@ H P J A I P@ z M A M H M A I )> ", +"Z, + # > = & > = . T@ & $ $ $ . & > | ] & > . ' > . # > & ; ] . . & Q$ ] | | ~ | ( ; ; W@ { ~ ] ^ Y@ Y@ [ { [ ## 2 6 ) ) } 4 < $# d 4 < 6 } ) W@ -# 7 d 6 Y> } D, &# $# { $# 6 ,# : 7 ,# 7 &# c V$ 8 a 7 g ~# e 6 } V$ a 0 c L= h h e L= l !# W$ [& c c{ p ~# ]# r K= K= s n g c{ Y$ w 4* % ^# Z$ {& z w O@ H$ z t N z I G C z I A M M Q@ 8* S P@ H H$ L H E$ 3# I D$ O P@ P T T y@ T 4# E@ 4# @. E^ 7# L@ G@ .= R P H 4& .= W .= O= P ,= . e- *. 5# A@ ,= &. 5; 5# F^ 9# !. 0# &. z@ b# {. /. X) 6# %% !. =% %% '. /. &% 3~ &% /. G^ |. 3~ 6& ~. /* g- P= p^ =% 4] e* , ~= g{ , '! j# j# e# 0, I! g# T{ 6) k# 9; a; 1{ 1{ y{ 7) ]= ^= y{ y{ H^ A{ i] N] A{ {% Z- B{ K! K! K! f. K! K! r) r) H, H, ,) r) V{ F~ V{ C{ s) h' '{ l- H~ 7] W= H~ k{ ') H~ {! [= 0! A> I^ ') m- ') ') ') l{ l{ 8~ K, 6% ]! { 9~ =] =] 9~ =] Q] Q] =] Q] b~ Q] /! }> %~ w^ N~ d; 1> 1> d; 9) ^' 1> ^' 9) J^ Z{ ;] f; ;] f; [] ;] ]~ ]~ ]~ O~ ;] K^ H{ O! C' @; G{ C' *+ *+ 7= C' ~) *+ C' C' V] L^ M^ c~ @{ r] A) K{ j' b] b] A) f, %, j^ %, %, b= %, %, k' _~ k' s] k' w- g, X] ] s] g, e~ ]) l' e~ N^ l' t] -~ G* .) ]) i, e= ^) G* ^) ^) G* G* >~ ^) k; k; ^) e= 6> ,- v~ O^ P^ )- l+ ;$ ;$ ;$ l; l; ;$ |' /) l; l+ ;$ l+ ;$ )- l+ l+ |! t+ y% |! t+ t+ s+ s+ s+ i= u+ y% t+ w+ u+ N> N> R, m; {^ S, B% B% B+ ]$ B+ B+ A+ B+ C+ E+ D+ B% E+ C+ A+ A+ O+ E% C+ C+ l= Q^ E% L+ /$ P+ P+ L+ /$ L+ R+ R+ T+ V+ R+ V+ V+ X+ T+ V+ Y+ .@ +@ Z+ @@ @@ W+ @@ +@ _$ +@ @@ c> @@ #@ %@ +@ #@ %@ =@ &@ p; o= R^ [- %@ *@ `& $@ C! * q= )@ 1$ ]@ o= 5$ R% r= }@ N% /@ v; b$ {@ d$ /@ b$ }@ W% 6@ P h ) R@ g~ ^, v, r, s, s, s, s, =) v, u, v, s, s, r, v, x, s, v, x, s, x, v, v, v, v, s, s, s, s, s, s, +' 6' r, s, s, s, s, r, s, s, H) x, +' ^, K= &. {. (. !. ,& ;. ). v{ x@ 5# !. 5# !. )& +. +. 5# [, A@ A@ z$ z@ ` D$ z$ P H P S M@ M@ J L@ H +% K@ Q@ M@ :* @% P@ +% G I I ", +"R@ 5- - T@ Q$ + % V@ + [* $ Q$ . > $ ' N$ ^& N$ 1* N$ U@ %= N$ & ; X@ ] ~ ; ] > ~ - > ] / { | 2 J) 2 { { { | | ~ ) W@ V~ [ $# ] U$ ) | -> ## ) / < *# { / ) < { *# *# 1 / b | : < U- ( : $# == $# &# d } 7 7 7 ## 6 e e 9 } 7 6 F! n a c 0 n C; 6 S^ `$ p 6! (# e C; n o `$ 9- ~# p r ^# c g j /# F= m ^# F= m 1; I ^# x O@ C {& F= %> D Z$ E O@ I E$ G :# O@ I J 3# A M@ E$ P@ Y E$ J O T^ P@ T 4# X L L@ Y C$ U^ B$ L@ P 1# C$ X @. 4# 7# 4) ,. ;. +. O= 5# L@ ;. =. A@ 5# )& B$ +. &. =. *. ). )& 0# &. 5; V -. A@ V^ {. %% 1~ '= '= '= &% 3~ {. 7, d* 3~ W^ &% &% -' e' $^ 7! H; 7! k~ P= , -% , P= j# 9; P= 0, '! l~ l~ X^ 0, f' {> 7) n# ]= ^= q) q) y{ y{ y{ m~ j{ q) N] ]> {% {% h. h. h. K! F~ Z- K! K! l* g& W' V{ H, V{ '{ (% '{ C{ H, Y^ H~ H~ p* o~ l- A> 8] 8] @, [= 0! A> A> A> A> ') 9] <> <> q~ 6% 9~ ]! =] 9~ =] =] =] =] =^ Q] Q] b! x' {' x' ;^ x) x) /! d; ^' .- d; d; d; ^' d; d; ]~ F{ 9) Z{ ]~ f; (! ;] f; ;] Z^ ;] `^ ;] N! x^ v& @; @; *+ C' @; *+ *+ C' @; @; C' C' 7= 7= Q) @{ V] / <' d~ b] {{ D' Y# k' k' Y# k' _~ _~ k' k' %, k' _~ _~ B* >- w- %, d= g, i! >- .) >- g, l' >- ]) ./ .) .) .) e= l^ e= ;~ >~ ^) G* e= ^) e= )- e= G* 6> ,- &, .] /) @) ;$ l; l; l; @) l+ ;$ ;$ ;$ ;$ |^ ;$ l+ ;$ l; l; l+ ;$ y% t+ y% t+ h= s+ t+ t+ i= t+ t+ u+ w+ i= i= w+ ]$ K* +/ E+ B+ B+ C+ A% B+ A+ C+ B+ J+ B+ B+ A+ C+ R& ^$ ^$ M+ Q& C+ D+ E+ >; O+ O+ O+ L+ P+ P+ Q+ L+ O+ R+ S+ V+ V+ Q+ V+ X+ T+ _$ @/ V+ Z+ @@ W+ W+ W+ @@ @@ @@ +@ [$ #/ %) @@ #@ #@ #@ %@ }$ %@ > Z& =@ V, %@ '@ p= >@ Q% *@ $/ '@ L% )@ /@ T% R% )@ (@ H- |~ 0$ ~@ 9$ /@ 9$ }@ W% |@ +] H@ a & + g~ [) 6' %{ r, 8' s, s, v, }) s, s, s, s, z, x, s, x, s, 6' 6' v, }) =) s, =) x, v, v, s, s, v, q, x, s, s, =) x, x, s, q, s, v, 6' x, =) @# ). {. '& d# -. v@ =. A@ L) !. ). {. !. +. x@ &. G! @. +. B$ +. #. L@ J@ V }; E@ H H P J S |; L@ H$ 1# +% M +% S M I M z I ", +"+ Q$ + & ; 2) > M$ R@ > V@ Q$ ; & . > Z, > U$ ^& ) { ' > V@ ; ; & - ; $ ; ^& ^ ) ( { N$ ; Z! 2 ## [ T- | ( ) (& 1 ~ 1 ) ; 2 { ) : [ / / W@ ~ ~ } { 1 $# d ## ,# ( : [ } { e _ 6 $# == ( e } -> 6 $# $# 6 } j V- c V$ c L= r X$ L= j ~# ~# L= h L= ~# r 6! Y$ h % O' Y$ p n D m `$ ^# n^ o n D m m `$ `$ `$ N M= F= w %/ y {& F D m G w M G I D N M A L@ T K M@ S Y L@ O 8* 3# d- T L I@ T Z X J T 0* I@ 4# Q X I@ I@ L >) z$ +. y@ .. e- E@ z$ @. +. W A@ +. A@ ;. ;. 6# -. ). *. %. x@ '. A@ &/ ). ). {. 7, x@ {. A@ H! '. &% &% =% ). 1~ 3~ ~. 3~ &% e' != &% 9& t@ */ >' g{ , *% , '! j# ;% P= '! , 0, ;% I! =/ h{ @~ v' {> U' v' 1{ i{ 1{ j{ H^ q) /= U{ -/ ]> Z- K! Z- h. Z- K! r) Z- V{ Z- g& l* W' F~ F~ F~ ;/ h' G~ >/ b; `~ 7] W= W= H~ H~ @, p~ l- p~ A> A> 0! A> ') ){ 0! 0~ 0~ <> ,/ '/ 9~ 9~ 8~ z! 0~ Z) ]! =] r~ N~ R] R] a] n{ n{ N~ n{ .- d; )/ w^ d; 9) d; 1> d; 9) d; d; t* 9) J^ Z{ ]~ ]~ s~ ]~ t* f; J^ ;] Y{ e! P) ~{ C' C' 3> *+ G{ C' @; ~) y^ C' C' !/ _' C' Q) :! `{ <' r{ d~ K{ A) 5> k' b= ] k' %, k' %, `' %, _~ k' ] ] B* s] i! Y] .! ~/ e~ {/ e~ #{ e~ e~ ]) N^ L{ e= t] l' u~ i, >~ ]/ ^) >~ e= e= ^) ^) +) +) >~ )- )- G* U; /) l+ k! ;$ s{ |^ l; ;$ ;$ ;$ l; l+ ;$ |' ;$ n+ l; @) ;$ ;$ ;$ y% y% y% s+ u+ t+ y% s+ u+ u+ ^/ N> u+ u+ i= u+ M> B- B- B+ A+ B+ A% B+ A+ B+ B+ _) C+ B% B+ E+ B+ ;; E+ E+ E% A+ B+ C+ E+ C- E% O+ E% L+ P+ R+ /$ Q+ R+ S+ S+ R+ Y+ Y+ Y+ V+ Y+ Y+ Z+ W+ +@ W+ Z+ W+ @@ #@ @@ @@ d^ +@ |$ @@ +@ +@ #@ %@ =@ %@ %@ &@ $@ >@ 1$ *@ q= > u{ N* )@ * '@ Q% ~@ R% d> !@ 5$ O% !@ P* /@ g> 0$ W% ^@ b$ b$ =* J ( ; R@ g~ ^, z~ q, s, x, s, s, v, s, H) x, s, r, v, +' q, v, x, x, x, s, s, s, z, x, g] r, x, v, s, q, q, r, v, s, 6' s, s, s, v, v, z~ 6' -! 6' - =. p, x@ ^. D! ). &. ). w$ &. &. &. A@ 8# d# E@ 5# #. .= .. P P @. 1# I@ D$ X H T P 1# H L@ P@ H$ H$ M@ |# 7* |; S J S N 2; ", +". # V! V@ S$ . . # ; S$ . > & U@ | & . `@ | N$ - ^ { U@ Q$ ; N$ ^ Q$ > V@ ; | ; ; ~ U@ T@ . ; | 2 X@ 2 { Z@ ) , ] } | R$ 2 `@ ] 1 2 } ( 7 ) { [ [ +# : 1 { d ## 8 } { 1 d : i 7 [{ $# 6 6 c d [ Y@ &# -# c &# e J= n 0 o e 0 &# n a' c c s> Y$ g i f h ~# h m % 9- n q `$ Z$ l D r Y$ 4* b' m /# $] 4* m /# G ^# E N N /# E N m z H O@ F= E$ A A H S P@ A A |# M J T H H I L@ T H E$ T O= T L X C$ L@ P L@ C$ T 2# s! E@ +. ,. L) . $% e- z$ z@ ;. >. z@ v{ >. 5# )& A@ ). $. $. b# ;. F, ;. 9# ]. '= ). %. '. ;. x@ %% '. b# +~ 5& /. u> {. =% 3~ ~. D~ |. &% 9& H; 3~ `> 5^ ~= -% -% '! 7^ j# l~ '! I! I! 9; s^ 6^ 6) U' v' y{ j{ H^ H^ @~ ]= // ]= j{ A{ ]> m~ A{ {% h. h. K! K! Z- K! r) r) h. r) l* H, W' F~ F~ C{ V{ b; F~ h' I~ '{ l- 7] H~ l- ~! @, 8] ~! O] m- m- m- ') 0! 0! ') 0~ 0~ <> <> (/ ]! 9~ 9~ 8~ M~ { b~ { _/ b~ =^ Q] Q] u^ u^ N~ 2{ _^ w^ b^ .- _^ ^' .- x) ^' d; 9) ]~ Z{ ]~ F{ ^' ]~ ;] Y{ f; ]~ ;] ]~ ;] M, O! H{ O! ~{ C' *+ ~) C' C' @; C' @; y) z) i^ C' ~) r{ :/ V] r{ K{ V] '^ r{ b= k' k' k' k' k' b= %, _~ _~ %, _~ _~ B* B* i! g, X] _~ +! i! +! >- i! i! t] .) +! G* u~ .) u~ u~ e= %$ ^) i, k^ ,- e= ^) 6> ,- ^) %$ M{ ^) }' |' @) j+ |' l; @) @) l+ @) l; ;$ l+ l; |' ;$ ;$ A- l; l; ;$ l; >$ t+ y% y% i= M> ^/ t+ u+ i= u+ M> B+ B- m; B- C+ A+ B% C+ B% B+ A+ C+ B! A+ B+ C+ E+ C+ J+ C- T! A+ C+ D+ S& O+ L+ L+ L+ S+ R+ Q+ L+ Q+ V+ S+ /$ V+ V+ W+ T+ T+ Z+ _$ @@ +@ W+ Y+ @@ Z+ #@ W+ +@ Z+ +@ |$ !] d^ +^ p; +@ ~; ~; %@ %@ %@ *@ I% `& `& >@ `& Q% r; >@ t= 2$ )@ (@ S% N% N% I- O% /@ [/ u; 0$ :@ 4@ !@ P* p@ H$ / $ ], 5' 2! r, v, v, v, s, s, 5' s, g] x, s, s, s, x, s, @] v, s, s, u, x, v, v, s, v, x, }) =) v, @] +' s, s, v, r, v, 6' 6' v, v, 5' v, v, x, <* 5# &. 5# ;! {. x@ &. ). *. z@ 5# ;. -. =. z@ .= z$ +. $% &. G@ C$ .= D$ I@ H@ 4# 2# H L@ Y T Y Q@ O I N@ M@ w 3; Q@ S A z n! ", +"+ ; + % > & & V@ & . $ > & & Z, = = Q$ > U) ] & > ; - Q$ & & & N$ > N$ X@ - Q$ ~ ] ## } X@ 2 ^& X@ ; > | ) N$ ~ [ | ~ | W@ *# ( ] # 4 e { 2 { ## %# J= < } $# ## 6 b &# a 2 } &# 8 b 6 6 9 d } 1 5 9 a $# 6 3* J= '# h e h ,# 7 a ,# ~# s> n W$ 7 p n Y$ n Y$ p 0 r h p y Z$ Y$ c Z$ h t b' Z$ ^# w w % G w 6* G F= y O@ G I )> ~& M n! I M= Q@ w I A Q@ 3) 3# O T G$ J S L 3# L@ 1& E$ J ` C$ L@ s! I@ Y 7# R W H R 9* t> 4# $% @. +. @. 0* R >. &. .= A@ )& A@ A@ =. v{ R' ;' v{ ;. *. ]. ;. !. !. 9# '. 6, '= b# '. b# v{ ^^ '= /. =% 3~ 5& /. ^^ W^ ~. &% W^ ~. 3~ u' H; -% 7! -% -% , , , j# 9; '! I! 6^ '! I! I! 6^ h{ =/ 1{ 1{ y{ y{ {> N] A{ !! @~ m~ 8! X~ i{ B{ 8! Z- h. K! Z- K! r) r) r) K! g& H, W' F~ F~ }/ F~ l] `~ |/ W= G~ H~ *^ I~ l- 1/ C] p~ 8] ~! ') m- m- A> ') ') 0! K~ =] 0~ ]! <> 9] 0~ 0~ q~ 2/ =] ]! Q] 9~ u^ =^ =^ Q] u^ u^ N~ x) 1> x) 2{ d; d; d; ^' ^' 9) 9) ^' d; Z{ F{ ^' F{ q- +- 3/ 3{ 3{ ]~ 3{ ;] 3{ ^~ N! s~ S] C' C' ~) @{ C' C' @; @; C' ~) y^ P! ~) :/ y^ @{ '^ '^ V] '^ r{ r{ %, k' _~ k' _~ k' %, k' _~ _~ ] %, 4/ g, i! i! B* _~ N^ e~ #{ N^ l' d] -~ .) 5/ R! a+ .) .) u~ e= >~ G* >~ e= e= ^) ^) +) G* M{ ^) e= e= e= k! @) l; +) l; 5{ ;$ ;$ l; l+ ;$ ;$ ;$ ;$ l+ l; A- ;$ ;$ h+ ;$ >$ t+ t+ t+ N> n+ y% t+ s+ u+ t+ t+ s+ w+ s+ s+ M> B+ B- B% B% B+ B% A+ B+ B% B- B+ K* C+ A+ A+ A+ E+ J+ C+ E+ O+ A+ A+ A+ C+ E% L+ /$ L+ /- /- S+ /$ Q+ S+ R+ S+ T+ R+ V+ V+ Y+ Y+ Z+ W+ W+ @@ Z+ Z+ W+ @@ @@ +@ _$ #@ +^ 6/ [$ }$ +@ %@ <~ %@ %@ %@ &@ +^ e] &@ =@ )@ 7/ t= >@ '@ s= * ,@ C! 6$ r; 8$ 8/ +* 0$ }@ }- ~@ 4@ b$ P{ 4@ q@ w [ > R@ *) q, v, q, v, z, s, =) x, u, s, r, v, q, v, 7' x, x, s, v, s, +' r, v, g] q, q, q, =) s, v, t, x, x, x, 7' x, 6' ' x, s, A, 6' v, r, g] V! X {. ^. 5& {. ). A@ -. [, '. -. .= e- &. &. z@ >. V z@ ,. 4& .= 4# $% V $> P J C$ J D$ H S H K@ E$ Y H$ ` P@ A M O@ G G ", +"+ V@ $ . ] !, + # [* o! . - ; T@ $ ]& $ > & P$ `@ /& ] N$ ; 2 N$ N$ ; N$ & ; & | ^ ## ( - ~ X@ N$ | | /& & & R$ ~ ] | ~ ~ 2 { ) 2 ^ { ] [ ;# & W@ Y@ / +# / [ $# $# [ g ~# ( / < J= ,# J= &# 8 < ( q> ,# 6 $# e e j 8 D, 6 7 W@ 7 6 {# a ,# 9 7 0 X$ e n a r X$ s> h a h s> p p Y$ Y$ `$ _# h u 1; h D ^# h m I G M w E y I G O@ 6* N H$ I |# M A C P@ O@ T L@ |# O@ J T L@ L@ H 3# T I O@ I@ P T 4# Q@ L H@ I@ >) 2# Y )= W E@ @. ,= W =. *. +. C$ $% .. z@ A@ C$ B$ *. A@ ;' v{ 9/ &. ;. =. z@ ). =. 0# b# v{ D! ;! b# 1~ =% '= 0/ 3~ b# != ;! L] '. /. &% w{ w{ w{ &% &% p^ -% e' -% H; P= g{ ~= '! '! '! '! '! P= I! I! l~ a/ 8^ s^ 1{ 1{ {> y{ b/ H^ y{ y{ y{ H^ V' B{ c/ &] B{ Z- {% c. h. h. K! h. r) r) 4~ V{ K! F~ C{ V{ d/ V{ '{ e/ *^ h' *^ W= Y^ D{ f/ g/ [= h/ 8] ') ') ') [= m- ') 0! 9] ]! 0~ 0! 9] ]! ]! ]! Q] =^ =] =] =] =] 9~ Q] Q] i/ -^ { Q] v^ 2{ w^ /! z' d; 1> 9) ^' 9) 9) ^' ^' f; 9) d; F{ q- ]~ 0) ;] s~ ]~ ;] O! [] j/ ^~ S] S] C' C' (~ F] *+ C' ~) ~) C' @; C' @{ ~) C' C' @{ d~ A) k/ l/ r{ [^ k' _~ %, %, k' k' %, %, b= k' ] ] s] i! e~ i! m/ ] >- #{ e~ #{ l' N^ >- ]) .) .) u~ t] .) >~ G* ^) i, ;~ ^) l^ ^) e= e= ^) 6> ^) ^) >~ e= /) l; ;$ )- )- /) g+ P, l; l+ l; ;$ ;$ ;$ l; >$ l; l; ;$ ;$ ;$ ;$ >$ t+ t+ y% r+ i= t+ s+ w+ w+ s+ N> u+ w+ s+ n/ w~ B% B% B% B% B- B% A+ A+ B% A+ C+ A+ C+ B+ B- m; E+ B% E+ E% Q& A+ C+ D+ k= O+ O+ L+ S+ a> P+ Q+ Q+ R+ R+ P+ P+ V+ .@ .@ R+ Y+ Y+ _$ W+ W+ @@ +@ +@ W+ W+ #@ %@ #@ #@ @^ R> &@ &@ > #@ *@ %@ #@ *@ 7$ $@ -@ $@ >@ !; *@ *@ '@ ]@ 5$ ~@ u= R% {@ {@ t; 3' /@ !@ ^@ /@ P* n, |@ =! x@ ^# ) Q$ R@ J$ q, 6' q, s, v, x, =) v, v, s, s, x, v, =) s, v, v, s, s, x, v, q, v, 6' g] v, s, v, v, v, s, s, s, x, v, [) 6' t, H) =) s, 6' +' v, s, s' S (. (. /* ). ,& ). !. &. {. $. A@ e- E@ .= _* V D@ $% 7# R C$ P Y L@ C$ ` ` T P@ Y Z T Y P@ Y P@ U 1# N@ Q@ G F= z P@ ", +". # ~ ; . + > * ' - # . . & + ]& ]& ; | - ] ] S$ [ ; | | | ; & - - ) U$ ~ < [ > ^& ; | X@ 2 { ; & ~ { ) ; | ; *' $# | N$ 2 < < { N$ | { Y@ $# Y> +# ) / { Y@ } &# 2 < } Y> a 8 &# } $# d a j 6 a j i V- Y@ i a 8 k ~# j L= Y$ L= b 8 a o/ ~# ~# n Y$ s> |& n s> p m r n^ c w r ]# h p _# Z$ 4* ^# `$ }& p ^# p m D N H$ M 3# C /# E$ O@ P@ I @% 8* L J >) L@ A I M P@ L@ S H M P@ 4# Q J J I@ P %> L L@ }; W G@ 4# V I@ z$ #. . .= @. (* z@ E@ .. y@ !. >. =. )= !. )& ,. . ;. !. v{ 9/ ). =. ,. p, p/ S' %% ). '= q/ {. '= %% r/ !. 3~ 1~ D~ u! '. -{ 5] |. e' 3~ &% w{ *% 8& s/ 5^ g{ 9, t/ 6^ u/ I! h# 0, 0, '! I! 9; 6^ I! 6^ f' 7) ]= i{ v/ 1{ 1{ y{ y{ 7) a; 8! ]> A{ Y~ h. h. K! h. r) K! r) K! K! r) r) F~ r) r) K! w/ r) s) W' h' W= W{ l- E{ 8) H~ ~! 6~ h/ 8] 0! L~ m- 0! 0! l{ ') K~ 9] /] <> 9] q~ ]! ]! 9] (/ =] 9~ ]! 9~ 9~ x/ y/ z/ R] u^ /! o] a] !{ A/ a] ^' ^' d; .- 9) ^' 9) d; 9) 9) Z{ 9) ;] ;] f; O~ f; 3{ ;] [] O! Y{ K^ H{ O~ ~) ~) ~) b) ~) @; C' @{ ~) ~) @{ B/ ~) C' (~ Q) d~ / c~ '^ / C/ [^ Y# k' k' b= k' k' _~ k' }+ _~ %, _~ D/ }+ i! D/ k' _~ l' i! >- N^ #{ d] ]) .) l' u~ !^ .) E/ ^) e= ./ ^) >~ e= ^) ^) ^) e= f+ e= ^) ^) ,- F/ *, g+ /) k! l; '] |' l; l; |' l; l; l; l; l; ;$ l+ l; l+ @) A- y% |! y% |! G/ N> |! y% u+ s+ t+ M> N> i= u+ j= B% B+ B- B% B- B% B+ B+ B+ B+ B+ B% B% A+ B+ H/ A+ C+ E+ C+ M+ O+ M+ F+ F+ D+ k= L+ O> S+ S+ S+ Q+ G% L+ P+ S+ S~ T+ V+ V& R+ V+ Y+ Y+ +@ W+ Z+ V& @@ Y+ W+ #@ @@ +@ '; |$ |$ }$ #@ #@ +@ %@ *@ &@ &@ I% Y& &@ e] > *@ >@ Q% q= U% N% d> )@ ~@ r= * d> ^@ P* u= ,@ 9$ Q* e$ |@ f$ {. _# | # g~ *) q, q, 6' 5' |) u, x, @] v, s, v, s, v, g] s, z, s, u, s, v, +' q, 6' +' x, x, s, x, s, s, A, x, H) x, s, 6' r, v, v, s, r, v, r, v, s, q, N= ~. ,& '& d# x@ E@ {. A@ &. z@ !. A@ .. 5# A@ $% z@ 5# @. E@ V L@ L@ 7# P E@ 2# Z D$ I H S S H$ b- A A b- A 8* S N@ x z ", +"# . + . + . + I/ * # R@ V@ . S$ $ > ~ ; & > > S$ 1* # | & S$ N$ Z! ; S$ ~ [ ~ - ~ & ; ; * 5! . 8- Z@ } 4 5 ## `@ { `@ | `@ J/ `@ / } [ { { 6 X@ &# 6 ) [ ) [ [ ] 2 ) J= 8 8 } $# 6 a +# d c Y@ 6 e b /& 6 g &# 7 L= L= ~# L= 0 c ~# K/ ~# 0 ~# L= n [& e a L= p n |& L= h ^# 1; ]# Z$ p }& q C p p Z$ c p c{ 4* m B ^# 2; m N z {& M O@ L/ M/ N/ O/ P/ }# 1& T P@ H #= T L M J P E$ @% 3# Q U J O@ H I@ I@ @. T U T X C$ I@ T D$ #. G$ #. z$ .= $% +. L@ z$ $% +. =. O= )= z@ ,= =. )& 0# )& &. %. 9/ C~ !. >. 7, p, b# x@ 5; &. ). x@ {. /. '= D~ w{ ^^ '= &% &% -{ w{ Q/ W^ w{ 3~ R/ k~ g^ g^ M] 9, S{ S/ , '! '! 9; '! , 6^ g# I! X^ 6^ %^ 1{ y{ H^ j{ T/ j{ j{ y{ 1{ N] y{ {% q) U/ w> K! h. h. w> K! K! K! h. K! F~ K! l* r) K! r) l* W' W' V/ p* ,{ ~! W= 7] o~ 8] O] N; l- L~ L~ m- A> m{ ,/ ') ') m{ m{ 9~ ]! { |= 9~ 0~ ]! 9~ ]! Q] =^ =^ 9~ =] i/ Q] W/ =^ W/ ^! w^ 0] X/ 2{ d; !{ ^' d; ^' d; ^' 9) F{ ^' F{ f; ;] ;] N! 3{ ;] ]~ K^ ;] ;] H{ S] S] *+ *+ v& @; C' @; @; @; ~) ~) C' C' ~) y^ ~) c~ V] K{ b] Q~ Y/ [^ r{ b] _~ k' %, %, %, k' %, _~ _~ k' k' _~ .! s] Z/ s] ] >- i! i! #{ l' 6+ >- t] ]) #{ ^) l' ]) i, ^) e= >~ ^) G* L{ ^) ^) ^) +) +) ^) >~ )- %$ @! Q, @) l; l; l; l; ;$ `/ l+ l; ;$ l; l; l; l+ n+ ;$ l+ l+ y% A- =, g= |! s+ i= y% t+ i= s+ h= ( u+ s+ u+ u+ z+ ]$ ]$ B% A+ B+ A+ R, A+ B% B+ B% B+ A+ C+ B- o' B+ J+ A+ A+ S& O+ E+ D+ F+ k= L+ O+ R+ f) Q+ T+ V+ T+ T+ S+ V+ T+ V+ Z+ V+ Z+ Y+ Y+ .@ W+ _$ Z+ W+ p; p; W+ @@ +@ @@ +@ q; C^ %@ #@ *@ %@ #@ &@ &@ p= *@ >@ e] <- &@ *@ =@ *@ '@ Q% R% 7$ M% U% /@ s= '@ ^@ T~ 8$ }- R* !@ V% X% 7# g ;# . J$ *) [) 8' @] s, z, =) H) v, v, s, v, u, A, s, 8' v, %{ x, s, s, x, [) v, r, v, s, s, s, s, +' s, z, v, s, s, s, s, x, v, q, 5' s, [) v, s, 5' M= ^. x$ (. ^. ). x@ {. =. ). '. &. &. =. +. z@ B$ e- 4# >. .= E@ 7# H@ i~ G@ C$ U F$ Z 2# H P@ P@ H E$ 4, M S ` M S N I A ", +"+ # $ # Q$ .( # L$ & . * . * Q$ & S$ ] N$ & > & - . 0' . ; N$ | > H= o! ^ N$ | `@ U@ ; N$ E! ] . X@ 2 | ~ N$ | | - ] U$ 4 ~ ^ | U$ { ) { | X@ | } } 6 W@ $# d < &# $# 6- 1 b { < ## } &# &# 7 -# : 7 0 b } < b -# *= 6- q> ~# c L= n ~# {# O' s> ># e r [& g e c o p ;= ]# ~# [& Y$ n /# ^# Z$ !# ^# 1; m y o h w % `$ y G ^# x z B O@ n! P@ +( @( #( $( %( I N z D I O@ Q@ 8* H$ E$ H |# J G$ T ` L@ E$ 4# X L@ P C$ 3# V H T I@ U X &( *( =( -( ;( >( ,( '( )( !( #. $% G$ ~( *. )& %. *. 4- *. B@ z$ !. A@ {( ]( ^( /( (( _( :( <( [( }( |( 1( X) /. D~ /. /. %% 1~ w{ &% &% W^ e' >' H; e{ 7! 2( 3( 4( 5( P= '! 8^ '! 0, l~ I! I! j# h{ 6^ 6( 7( 8( 9( 0( y{ y{ 1{ y{ H^ H^ v' q) ]] a( b( c( d( e( r) K! K! K! K! K! F~ r) K! l* l* F~ F~ V{ G~ `~ W' h' f( E{ p* l- f( g( h( m- ~! 8] A> @, m- 0! A> A> 0! m{ /] 9~ M~ {~ 8~ =] 0~ ]! 9~ =] =] 9~ 9~ 9~ Q] u^ Q] a] Q] W/ N~ ^' _^ 0] -^ 1> 2{ ^' ^' 9) ^' F{ ^' F{ ^' ^' J^ F{ f; O~ 3{ `^ ]~ i( ;] ]~ O~ S] S] ~) ~) z) U] ~) G{ @; @; C' ~) @; U] ~) `{ h^ i^ ~) @{ b] K{ d~ '^ j^ [^ k' ] _~ _~ k' k' _~ k' k' k' ] %, s] d] ] -~ ] :~ -~ i! +! l' g, {/ .) ]) #{ ;~ ]) .) t] u~ e= h, ^) e= >~ e= ^) e= ^) M{ >~ >~ k; k; v~ j( @) l; |' l; ;$ l; ;$ ;$ /) ;$ @) l; ;$ |' ;$ n+ l+ ;$ r+ ;$ >$ t+ t+ y% N> i= y% t+ t+ t+ N> i= y% u+ w+ u+ i= B% B% B% B+ B- z+ ]$ B- B+ B+ B% C+ C+ C+ A+ A+ A+ A+ E+ C- O+ ;; E+ D+ C+ L+ O+ R+ Q+ S+ V+ R+ Q+ /$ S~ R+ R+ T+ G% V+ T+ Z+ T+ X+ W+ Z+ f) @@ +@ W+ W+ @@ @@ '; %@ <- @^ %@ +@ #@ +@ &@ %@ %@ 1$ &@ *@ <- *@ 1$ -@ R% !; )@ R% 9$ /@ S% )@ * V% U% N% * }@ 9$ W% }@ |@ +] H e N$ ]& g~ ^, v, z~ 6' s, v, =) s, v, s, H) s, u, s, s, +' +' r, s, =) x, x, r, s, q, q, +' z, r, s, +' H) s, q, q, s, q, q, ^, e^ 5' ^, [) z~ +' 8' ^, '# *. p) (. ). ). ;. -. &. G@ A@ w$ &. A@ (* z@ z@ E@ B$ )& 5# 5# V H@ E@ 4# $> Y 1# 2# J J@ n> Y I Y Y 8* H Q@ I 8* E$ A A ", +"R@ > # . > [* V@ = > > + & > # H= | ; > > $= 5- N$ ; $ ] ] N$ ; > P$ > & - - Q$ ' ] N$ ; > ^& N$ | U@ U@ %= ; N$ ; [ ] { ~ [ 7 { { ) < 2 / { } } ) ## /& ~ / $# [ Y@ 9 7 { J= -# 7 6 6 &# ## &# b ~# 6 ,# k b c c Q{ a 0 n E, 0 [& j Y$ g 6 a e e ~# X$ [& r t e % c c p ,> 1; m D 4* w ^# /# ^# n m C m b' D C /# D I G P@ I >) k( l( #( m( n( G I M o^ P@ N Q@ H H A E$ #= T C$ 8* O@ H J d- d- L n> 7# E$ d- C$ r! . G$ o( p( #( #( #( #( #( #( #( #( q( r( s( =. +. 4- z@ z@ $% -. A@ )& e- t( u( v( w( #( #( #( #( #( #( #( w( x( y( z( 1~ -{ 3~ =% /. w{ ~] w{ 3~ e' 4] 5^ 3~ A( B( C( w( w( D( E( '! I! , a& j# '! '! '! 9; F( G( w( w( H( I( v' !! g' y{ H^ 1{ J( K( L( M( N( w( w( O( P( Z- K! h. K! K! r) r) F~ r) x! V{ F~ V{ G~ G~ W{ '{ H~ W{ Q( h( Y^ 8] 7] m- L~ 8] O] o~ ') 7~ ') [= I^ 0! 0~ 9~ <> { O; 9~ 9~ 9~ 0~ =] 9~ 9~ u^ =] 9~ =] Q] =^ =^ :] N~ x) 2{ w^ R( ^' ^' ^' 9) 9) w^ 9) 9) 9) Z{ F{ Z{ 9) f; f; ;] ]~ O~ Y{ ;] `^ `^ O! j/ @; b) h^ U] G{ o{ ~) y^ @{ ~) ~) !/ C' K{ y^ :/ b] @{ S( D' T( K{ b= j^ _~ k' k' _~ ] ] _~ k' k' _~ _~ %, ]{ g, ]{ B* w- s] U( g, i; >- #{ e~ N^ ]) -~ L{ !^ K> .) i, ^) u~ e= ^) i, ^) e= ^) e= +) %$ e= ^) k; e= }' l; ;$ k! l; |^ @) l; l; w% l; l; l; Z] /) ;$ =, l; ;$ =, l+ r+ t+ t+ t+ N> N> s+ t+ y% x+ w+ `] N> i= N> t+ M> B% B% B% B- m; B+ ]$ A+ A+ A+ A+ C+ C+ B- B+ A+ A+ I+ E+ E+ E% L* F+ E+ D+ E% O+ P+ O+ Q+ L+ T+ T+ /$ Q+ S+ T+ T+ Y+ F% Y+ Z+ Z+ V+ @@ F% Y+ +@ p; +@ +@ +@ +@ #@ [$ +@ V( +^ %@ &@ %@ *@ > > >@ *@ *@ >@ W, 1$ >@ -@ )@ !; r; T% ~@ T% r; R% H- 6$ 6$ q= 0$ ^@ {@ W( 9$ .& ` 0 ; + R@ ], =) 6' q, v, v, H) v, g] ' s, q, v, s, s, s, r, q, s, v, x, s, @] s, v, +' q, r, ^, @] s, s, X( q, q, v, =) v, s, s, x, t, 6' 6' q, [) ^, !~ x@ ). ). p, x@ A@ ). A@ 5& $% .= 0# x@ ,. 5# .= D! 5# +. .= ,= P 5# V J C$ J J@ U K@ H H 1# P@ +% M@ O@ O )> P@ A M n! I ", +"R@ . = # # # ^& . L$ ]& - > $ . > . U@ 5- ; . T@ ] & }* ; - Q$ > & - # S$ ; %= ; %= ] ; T- > { ] ] Z! ; X@ | & N$ *# X@ < , , $# | < 2 ^ 2 W@ { { b | 1 ## [ 6 $# i 6 7 6 d } 8 $# e $# 7 < e ~# a &# e i 7 7 b 9- $# ## 9- ~# a c n |& L= e ># j L= c -) h Y$ !# c{ h r Y$ j p p h O' m /# C ^# b' Y$ 2; m 4* r 4* G b' w x C G A P@ Y( l( #( m( Z( D G G |# 8* M E$ M@ T J S L@ L I@ J T H T I@ 1# d- O U 3# S X O `( _ ._ #( #( #( #( #( #( #( #( #( #( +_ @_ #_ . +. ;. ;. =. ;. 9/ ;' -. $_ %_ #( #( #( #( #( #( #( #( #( #( #( +_ &_ 3~ =% ~. &% 3~ 5& x@ 5& 4] w{ *_ W^ 2~ ,% =_ -_ ;_ #( #( >_ %] 6^ , , a& , I! 8^ I! ,_ '_ #( w( )_ ]= 1{ q) !! H^ !_ ~_ {_ ]_ #( #( #( #( #( ^_ P( h. Z- K! K! F~ K! ^% V{ r) H, V{ F~ d/ W{ ;/ W{ V{ W= W{ W{ /^ W{ 7] 8] /_ m- p~ 8] p~ I^ y! K~ ') ') 0! 0! M~ 9] (_ 9] ]! r~ Q] {~ =^ Q] 2/ __ u^ =] Q] Q] =^ =^ N~ :_ <_ %~ _^ :_ <] 9) 9) 9) 9) 9) ^' Z{ F{ Z{ ]~ F{ J^ F{ ]~ Y{ F{ `^ O! ;] 3{ 3{ e! [_ 3{ K^ G{ }_ }_ G{ ~) @{ @{ @{ C' C' C' @{ d~ h^ r{ ~) i^ %, |_ 1_ A) l% A) k' 2_ _~ k' ] 2_ _~ k' k' _~ k' b= :~ _~ _~ i! .! s] -~ e~ i! ]) #{ i! .) ]) .) e= i, .) G* e= >~ l^ G* e= u~ >~ >~ ^) +) k; M{ ,- k; ^) G* l; ;$ u] @) @) |' ;$ ;$ l; @) l; ;$ l; l; ;$ >$ >$ |^ n+ n+ l+ A- |! t+ s+ i= y% t+ i= u+ u+ u+ n/ N> u+ w+ k, B% K* B% R, B- +/ w~ B- A+ C+ R, B+ B% _) B! A+ R& ^$ E+ E+ E+ S& D+ F+ G+ k= E% L+ Q+ Q+ S+ P+ L+ /$ L+ R+ R+ V+ V+ T+ V+ _$ p; Z+ Y+ _$ Y+ V& +@ +@ #@ +@ +@ %@ &@ +@ |$ q; :- %@ *@ &@ %@ %@ ;@ *@ W, %@ *@ >@ >@ `& S> q= >@ I- )@ u= T% Q% ,@ R% U% S% R* e$ /@ /@ !@ *& N@ b V@ V! g~ q, q, q, q, v, g] 8' =) q, s, ^, 6' }) [) ^, 3_ 6' 8' v, q, 6' 5' e^ q, 2! e^ r, s, ^, q, q, q, [) g] r, r, 6' x, +' r, 6' 6' r, g~ z~ 6' # A@ !. 4_ !. ). A@ &. -. ). )& !. &. =. . E@ E@ B$ @. z@ ). D@ J@ 5# @. V L@ }; J ` U }; O H A O E$ z @% A P@ O I z F ", +" T@ H= . V@ > $ . 5_ ]& 1* $ . Q$ & > R- > H= Q$ W@ T@ ; . ; $ ; (& # - }* ] Q$ ] ; P$ ^ > ; ; ~ O$ 5- O$ $= ] N$ N$ ~ { / *# X@ [ 4 [ } [ 4 Y@ ~ ) J= ( ~ 1 } 6 &# d 6 { 2 ## 6 ( a 6 a &# ~# :& e $# k 7 c 7 =# ~# a ~# 9 a f c &# ,# n {# n c c c ~# L= h p c e e h h % Y$ Z$ n n h :# {& D ,> F= r h c{ ^# ^# p `$ N /# D I z C G 6_ @( #( 7_ 8_ z w M E$ M o> A J P@ L S 4# Y E$ H U d- C$ L E$ H P@ R P W X R 9_ 7_ #( #( #( 0_ a_ b_ c_ d_ e_ 7_ #( #( #( f_ g_ A@ +. e- A@ =. >. ,. h_ i_ #( #( #( j_ k_ [( l_ m_ n_ o_ #( #( +_ p_ ^^ =% ~. ~. &% &% /. 6& 3~ 3~ D~ w{ &% |. 5^ 5^ q_ #( #( r_ s_ P= '! I! g# I! '! '! t_ u_ #( #( v_ w_ H^ H^ 1{ 1{ y{ x_ #( #( #( #( #( #( #( #( ^_ y_ Z- Z- h. h. K! r) B] r) r) V{ V{ F~ V{ V{ V{ 8) d/ 8) W' `~ f( *^ z_ H~ I~ I^ p~ H~ A> A> A> 0! 0! ') 0! m{ X' A_ 0! /] =] Q] 2/ =] Q] Q] Q] Q] Q] Q] Q] Q] Q] u^ /! N~ W/ _^ B_ x) /! 9) d; d; 9) 9) 9) Z{ Z{ F{ 9) J^ F{ ]~ ;] ;] C_ ;] q- ;] ;] s~ a) D_ [] O~ G{ <^ ~{ ~) C' ~) ~) C' @{ ~) C' @; @; P! E_ Q) d~ `' `' F_ r{ [^ '^ D' _~ %, b= _~ ] _~ k' k' %, :~ :~ ] ] ] d] c] >] #{ ,] >- N^ l' d] N^ 7+ t] !^ R! ]) .) R! e= ^) ^) e= >~ e= e= ^) ^) k; M{ e= >~ e= >~ /) l; l; g+ l; s{ l; @) l; ;$ l; ;$ ;$ |^ l; =, l; l; ;$ ;$ ;$ r+ s+ |! t+ s+ u+ t+ |! N> u+ i= t+ '$ h= V; t+ `] G_ B- B% B- {^ `] B% B- B+ B+ B+ B% A+ B+ A+ B% R, J+ B+ C- E% C- C+ C+ E+ k= Q+ O+ R+ R+ N+ Q+ /$ G% T+ L+ T+ V+ Y+ V+ f) V+ V+ Y+ X+ +@ X+ @@ +@ W+ @@ W+ +@ #@ #@ $@ @^ @@ *@ #@ %@ *@ U, %@ %@ 7$ &@ m, *@ -@ '@ q= !; '@ ~; ,~ 2$ U, !; ~@ U% R% 9$ P* }@ /@ W% {@ {* ^# Y@ Q$ <{ z~ z~ z~ [) v, 6' r, =) [) 5' 6' ^, q, q, q, q, r, [) x, +' s, 6' q, 5' 6' r, ^, i) q, 5' %{ s, s, 6' q, g] [) [) s, v, r, 6' ' @] g] 5' ^, ^, V@ .= v@ ^. d# ^. A@ '& +. l> &. &. V> z@ *. 5# E@ .. 5# .= V E@ P P 1# ` 1# 1# Z H T . H H Z P@ P@ 3# S G q! J I I z ", +"+ [* + ]& . $= 2 . # k) # - # M$ & H= k) + ; & | $ = * - U@ & . * ; - & ; | Q$ S$ R$ V@ ] { /& { | | | [ 2 & `@ - 6 [ < 1 ] ~ < ~ Y@ X@ 1 N$ ) { | / ~ %# +# < 5 8 < R$ a ># 6 e 6 a 8 < 0 6 7 9 ,# } a n 0 e c a 7 o g i ~# ~# 0 ,# a L= L= e 6 8 o c K= n^ E, n 2, p `$ (# L= h h _# ^# _# m n h D B G G G ^# /# y w C 1& L/ H_ I_ J_ K_ z M E$ G n! |# P' O P@ U P@ C$ Y L T D$ L O@ P C$ >) 7# d- 2# P 4; L_ M_ #( #( N_ O_ P_ Y . =. .= Q_ R_ S_ #( #( 7_ T_ ,. #. !. (* #. 5# U_ V_ #( #( W_ X_ Y_ 0# ). 5; %% %% Z_ `_ : .: p_ {. =% D~ &% ~. 3~ 1~ L] &% 3~ D~ +: W^ W^ e{ p^ @: D( #( #( #: $: '! '! g# '! , I! %: &: #( +_ *: f' 1{ y{ g' 7) 1{ =: #( ]_ -: ;: >: ,: #( #( ^_ P( K! K! r) ^] F~ h. r) r) F~ r) l* H, V{ V{ W{ '{ '{ `~ W= ': `~ ): o~ 8] 8] !: ~: {: O] ]: ') A> y! l{ m{ m{ 8~ m{ m{ 9] /] ^: =] =] =] 9~ ]! =] =] Q] u^ Q] N~ n{ Q] =] o] <_ -^ d; :_ X/ F{ ^' 9) ^' 9) t* d; F{ ;] F{ J^ s~ f; ]~ P) 3{ ;] ;] ]~ ^~ O! (! [] O~ y) b) o{ S] S] F] C' @; ~) C' ~) ~) C' d~ (~ Q) `{ R) k' q{ %, %, A) A) %, _~ j^ %, k' k' ] k' _~ _~ k' k' _~ :~ e~ Y] ] >- #{ i! N^ .) i! -~ .) .) .) u~ t] t] e= ^) R! u~ ^) ]) R! k; ^) >~ +) k; e= G* ^) ^) @) @) P, ;$ )- s{ l; ;$ ;$ @) |^ l; ;$ ;$ |^ y% l; l+ l; l+ l+ l+ /: |! y% t+ i= t+ (: t+ N> '$ s+ |! i= u+ N> z+ `] +/ _: B% A+ B+ B- B- B% B+ B+ A+ B% A+ C+ C+ A+ ^$ R& :: O+ O+ E+ C+ G+ D+ Q+ L+ O+ R+ P+ L+ Q+ G% /$ R+ V+ V+ F% Z+ Z+ Z+ Y+ Z+ _$ _$ +@ @@ @@ +@ +@ @@ [$ +@ +@ &@ @^ $@ %@ &@ *@ I% @^ &@ =@ R^ &@ 4$ *@ u{ S% )@ 2$ Q% 7$ O* -@ R% 6$ G- T% ~@ P* 9$ u= :@ U% <: ^. `$ 1 > <{ q, 6' q, =) v, x, s, [) 5' r, q, s, z~ 6' g] t, s, 6' ^, +' r, +' ^, q, q, 5' r, 6' q, r, g] s, =) @] e^ +' [: ^, v, 6' q, r, `, [) 5' +' e^ R@ V {. {. {. ,& ^. !. &. x@ 5# &. (* !. ). -. &. z@ &. P z$ E@ . ` J@ L@ L@ T P P ` M@ D$ O H N A O S x O@ G G K z ", +"> V@ # L$ T@ $ & # . . V@ * & Q$ | H= $ & o! . & S$ ; [ ) ~ V@ ' H= H= ; V@ ' ~ %= > ; N$ X@ X@ ) N$ ; ~ N$ ~ ; N$ 2 { / *# X@ ( ^ [ D, { { Y@ { ) W@ { { ## 6 W@ a == 7 1 Y> j Y@ $# $# [ a +# } 6 k 7 Y> 6 8 } b 6 b 6 V$ 7 e e 0 8 j ># e {# ~# Q{ ~# a e -) g Y$ :# n p ^# Y$ Y$ o Y$ n y ^# ^# D % D 1; D w w :# 6* t M D G O@ x D 3; z I n! I M J }# J O@ M O P@ P@ Q@ 8* J 0* I@ L@ L@ J D$ P@ H I@ I@ .= T }: |: #( #( N_ 1: ,. #. E@ 2: ,= $% )= F@ 3: 4: #( #( 5: 6: B$ $% . ;. R' 7: 8: #( #( 9: 0: q/ ). %% 7, b# ,& a: b: c: d: e: %% {. %% D~ &% 3~ ~] 3~ [. 3~ &% +: 4] `> g- {= 7! f: w( #( g: h: 6^ u/ s/ l~ 0, i: j: #( #( k: l: 6^ @~ {> f' q) i{ m: n: o: p: X~ N] q: #( #( ^_ r: Z- h. Z- h. K! h. K! 4~ r) U= l* l* C{ V{ W{ W{ W{ `~ s: I~ t^ t^ Y^ t^ 8] !: m- A> o~ ') ') m- 7~ m{ 0! m{ 0! m{ 0~ 9~ 9~ ]! 9~ ]! (/ =^ =] {~ =] _/ =^ R] N~ :] =^ Q] =^ a] 2{ d; z' <_ d; ^' ^' !{ 1> ^' 9) 9) Z{ F{ F{ Z{ ;] ;] (! [] ;] 3{ 3{ 3{ 3{ }_ ^~ K^ D] ^~ C' @{ y^ t: @{ C' G{ b) C' ~) ~) y^ ~) y^ k/ y^ u: b= d~ y^ b] b] k' k' _~ k' k' :~ _~ %, _~ _~ k' k' k' ] e~ X] k' ] e~ i! d] N^ .) d] N^ ]) ]) ;~ ^) t] ]) l^ >~ u~ ^) >~ e= ^) >~ e= ^) +) +) >~ k; e= e= j( Z] u] j+ @) @) l; @) |^ @) l; l; l; l+ ;$ ;$ ;$ ;$ l+ l; 5{ C) A- y% y% A- /{ y% t+ y% u+ y% t+ h= u+ u+ N> w~ v: B% B% A+ w: K* B+ m; B+ C+ A+ B+ B% B+ A+ A+ A+ ^$ D% A+ Q+ O+ J+ C+ E+ P+ S+ T+ V+ T+ V+ Q+ O> Y+ T+ G% T+ T+ F% V+ W+ Y+ p; @@ #@ @@ Y+ @@ +@ %@ +@ @@ @@ 1] :- !] f~ %@ #@ v] #@ %@ S> >@ >@ =@ >@ =@ M% )@ C! Q% q= {@ x: R% 9$ R% 6$ 5$ ~@ V% ~@ u{ :@ [/ d$ ,. Y$ [ > s' g~ 2! ^, [) 6' s, =) q, q, 5' x, s, r, ^, 8' 6' q, q, v, e^ e^ ^, y: s, ^, q, ^, v, q, 6' z~ 3_ u, r, v, 6' q, 6' q, r, 2! s, v, *) *) z~ q, ], i) ` '. (. ). &. ^. b# !. x@ &. 5# A@ A@ B@ 5# A@ E@ 6, z@ O= R $% _* #. S P 2# V R L@ G$ P C$ L@ @% M M H$ O@ H$ #= A Q@ A ", +"# + + + $= $ U@ & S$ & > & & & *' > ; ] $ # & ^ ) { ] > ] N$ ] > | N$ ; - ]& N$ P$ ] @# N$ ^ 1 X@ ;# & N$ N$ ) } W@ 2 { %# } } { %= X@ Y@ [ { 1 2 < -# ) ( _ [ | / 7 $# V$ d b D, 8 6 7 : 7 a [& i ~# V$ 6 a e e $# g ~# a e } c ,# 6 &# 8 Q{ X$ n n r o L= o c Y$ :# z: h p h p Z$ w 4* D ;= t ^# z 2; Z$ Z$ (# % O@ ^# n! A I D 8* N@ w ^# A G |# B 3# 8* J L@ P@ +% d- :* P@ A: T E$ A d- Y E$ T G$ C$ P' L@ B: #( #( #( C: D: P' 9* X R V Q' e- 5# .. E: W_ #( #( F: G: 5# $% *. ,. H: w( #( .: I: 9# ). b# H! ;. )& H! %% {. 0/ !. %% J: 1~ =% =% 3~ w{ +~ &% /. 3~ W^ w{ -{ 3~ 4] k~ -% K: L: #( #( M: N: I! '! 0, , O: w( #( P: Q: R: 6^ 7) g' f' v' y{ S: y{ j{ j{ y{ j{ T: #( #( ^_ U: r) h. K! K! K! V{ V: V{ V{ r) l* F~ V{ W: W{ V{ V{ X: d/ p* 7] W{ *^ f( *^ !: I^ ') 0! A> A> ') ,/ ') m- A> m{ m{ 9~ ]! 9~ ]! =] ]! =] 9~ 9~ ^! n{ b~ =] =^ )/ n{ Z) =^ Q] )/ /! <] w^ <_ .- 1> d; 9) 9) 9) F{ ^' J^ F{ Z{ 9) ;] ]~ ;] e! f; f; s~ ;] 3{ `^ ^~ N! 3{ [] @{ C' ~) C' ~) @; C' @; @; ~) @{ y^ y^ ~) k/ y^ t: Y: Z: z^ b] b] %, _~ %, %, k' k' k' _~ c] _~ j^ k' ] Y] s] -~ Y] :~ N^ `: i! < ]) ,] < ]) l' ]) e= ]) l' ^) >~ i, ^) ^) e= ^) ^) e= ^) M{ k; e= ^) 6> >~ @! Z] @) @) @) @) ;$ l; l; @) l; l; l; @) l; ;$ n+ ;$ ;$ ;$ l; ;$ r+ |! t+ A- >$ y% t+ t+ w+ w+ '$ y% V; '$ u+ m; j= B% B- k, B+ B+ B- B% C+ C+ B+ B+ B+ E+ B% E+ C+ B+ I+ A+ Q& L+ O> F+ F+ P> /- R+ R+ /$ P+ S+ /$ G% T+ G% T+ T+ /$ V+ T+ Y+ Z+ Z+ Z+ X+ Z+ +@ #@ +@ #@ &@ &@ &@ %@ %@ q; p= #@ p; > #@ %@ $@ > e] &@ &@ .> !; '@ R% C! q' R% T% Q% 5$ /@ '@ q= N% /@ ~@ |@ ^@ l$ X f ~ + R@ V! q, ^, q, 6' v, x, [) v, v, @] s, 8' [) =) q, s, s, q, ^, ^, v, q, q, ^, q, e^ q, q, z~ ^, e^ 5' 5' =) x, 6' v, 6' 6' 5' v, ^, q, 5' z~ 6' q, ^, G ^. B= {. v{ '. ). x@ ). &. )& !. x@ C@ A@ z@ &. A@ G@ C$ 5# 4# R z$ D$ |; T L@ L' P X n> O K@ H Q@ H P@ I ` P@ M A 8* ", +"X! ; * $ = & ; Q$ V@ > > - - Q$ & ' & Q$ N$ & # Q$ > 2 | ^ ; ^ ~ N$ & *' ~ & { - ; ) & ^ ; N$ | 2 (& ; > Z! *# { ~ X@ /& 4 6 { 7 Y@ T- [ N$ ) : ## X@ < < 6 W@ d } < Y@ } } ( } 6 &# < 7 g V$ .< +< @< #< $< %< &< *< e =# o a [& q> 7 e ~# i _# n ,# h a n 9- i C; q r K] 4* ,> Y$ D o 4* 2; ^# ^# Z$ =< -< ;< >< ,< '< b' I w I D A z D G J O@ P@ F= N P@ M Q@ H$ T^ H P@ d- H O J L 3# J P@ L L H M )< X> I@ T !< ~< #( #( {< ]< . C$ @. Z #. C$ B$ .. C$ z$ ^< /< #( #( %_ (< $% . W~ ;' b_ #( #( _< :< 9# !. !. b# ). H! H! x@ x@ 9# H! 1~ X) << =% b# w{ &% H! &% /. 3~ &% &% ~. +~ &% b* *% *% [< +_ #( 7_ }< I! '! '! |< 1< #( #( 2< 3< '! 6^ 1{ a; 7) 1{ j{ y{ y{ j{ 4< H^ H^ T: #( #( ^_ r: h. K! h. F~ K! F~ K! V{ F~ K! F~ K! r) V{ F~ F~ V{ f( G~ H~ Y^ &^ 7] Y^ I~ g/ 5< ') p~ h/ ') A> 0! A> 0! 0! ') m{ 9~ ]! ]! ]! Q] 9~ =] 0~ Q] Z) ^! b~ 9~ 9~ Q] =^ u^ u^ u^ /! N~ 6< _^ o] w^ w^ ^' ^' ^' F{ 9) ^' F{ Z{ F{ F{ 7< ;] ;] ^~ q- ]~ [] ;] 3{ 3{ s~ a) `^ T] *+ C' @; ~) @; C' *+ ~) ~{ C' ~) ~) @{ y^ i^ E_ y^ E_ '^ z^ '^ b] _~ _~ b= k' _~ k' _~ _~ .! _~ %, k' k' g, ] Y] A^ i! }^ U( i! e~ #{ #{ e~ N^ ]) ]) K> .) ]) R! v~ u~ L{ >~ e= u~ >~ G* e= +) 6> ,- l^ k; ^) @! 8< ;$ l; k! |^ l; /) ;$ l; ;$ l; f= ;$ /) *, @) ;$ ;$ l+ A- l+ /: t+ }! =, 2' t+ t+ |! u+ u+ M> j= u+ o+ s+ ]$ 9< B% B+ A+ B+ B% B% B+ C+ A+ A+ A+ C+ E+ D+ C+ E+ J+ 8{ E+ M+ L+ 0> 0> A+ H+ P+ S+ O+ P+ S+ R+ T+ /$ V+ T+ V+ Y+ Y+ V+ V+ Z+ _$ Y+ Z+ Z+ _$ +@ +@ @@ W+ +@ +@ %@ %@ #@ 6/ q; %@ }$ %@ &@ %@ W, &@ $@ &@ &@ !; =@ -@ Q% T% *@ T% R% G- (@ ~@ w= ,@ )@ u= b$ @* R* .& H e 2 T@ V! V! q, z~ ^, q, q, r, 5' 5' q, q, s, =) q, 6' q, 5' =) 6' q, z~ q, v, r, 3_ ^, [) q, 6' q, 6' [) z~ @] ^, [) 6' r, q, %{ g] [) ^, r, [) q, q, q, ^, 0< v@ :. <. w$ x@ !. 5# A@ A@ ). &. A$ A@ &. *. L) z@ .. }; U G@ E@ +. R R H@ O G@ +% O H Y P }; P@ Z M M Y Y H$ z 3# ", +"]& . & & $ # k) + = ; + * V@ . # ^ . Q$ & ^& T@ . . N$ | ^ | ] N$ ~ X@ N$ | 5! | ~ N$ H= ; ; ; { S$ ; N$ | X@ ; N$ { ~ ~ / { ( 1 ## -# / 6 6 ~ [ 4 Y@ | } 7 V$ | 6 6 V~ ## } 9 ,# ( $# ,# 6 &# a< b< c< #( #( #( #( #( d< e< f< 7 i '# a 8 V$ g< h< h< h< i< h< j< h< h< j< h< i< h< h< k< l< r p m< n< i< o< p< q< r< s< #( #( #( #( s< t< u< b' 2; % ^# P@ I v< w< x< y< z< N@ ^# O@ A< B< x< x< C< D< P@ O T T H P T E< F< G< H< I< L C$ T J< W_ #( #( K< L@ .= E@ W e- z$ W F^ H@ W H@ y@ L< 7_ #( #( M< >. $% $. %. N< #( #( O< P< $. 9# %. *. *. x@ H! b# b# ^^ b# /. %% %% /. {. 3~ 3~ 3~ 7, 1~ 3~ &% /. Q< $^ v@ b* *% p^ R< S< #( #( T< U< I! I! V< #( #( ;_ W< l~ I! 8^ h{ g' N] y{ s^ y{ 1{ y{ y{ j{ i] T: #( #( X< Y< K! Z- h. r) r) r) h. F~ F~ F~ r) K! V{ V{ V{ V{ F~ L! W{ V{ '{ Z< 8) G~ Q( ~! `< `< ~: [ ') ') ') 9] 0! ') m{ ,/ /] ]! ]! .[ 9~ r~ Q] x/ u^ :] ^! .[ x/ =^ =^ u^ u^ 6< Q] =^ N~ _^ ^' <_ +[ F{ F{ ^' ^' 9) 0] ^' ^' 9) ;] Z{ Z{ 3{ 3{ H{ (! ]~ M, H{ J^ }_ Y{ ^~ j/ s~ O! @; @; @; ~) C' C' @{ y) z) C' @{ ~) `{ t: @[ ~) y^ A) T( y^ c~ D' k' k' _~ k' _~ k' _~ k' %, _~ #[ _~ k' ] $[ ]{ N^ _~ >- e~ e~ < t] e~ -~ t] ]) %[ ;~ .) i, R! e= ^) c^ ^) u~ ^) e= ^) ^) M{ +) e= k; k! v~ ^) '] @) ,- ;$ l; ;$ l; @) l; l+ /{ l; ;$ /) l; ;$ |^ ;$ ;$ *$ l; y% t+ |! A- r+ t+ |! t+ i= s+ j= t+ t+ s+ x+ s+ B+ B+ A+ A+ B% B+ B+ y+ B+ B+ A+ C+ C+ A+ C+ C+ E+ _) D+ M+ L+ O+ D+ E+ D% H+ P+ L+ /$ /$ T+ /$ G% F% V+ R+ V+ V+ Y+ Y+ .@ V+ R+ f) Z+ _$ %@ @@ @@ #@ #@ #@ %@ &@ #@ 1] @^ %@ *@ *@ &@ *@ %@ ~; =@ =@ T% 7/ !; ]@ T% C! `& S% 5$ R% ]@ '@ ^@ /@ U% /@ T% b$ b$ e@ O h { > R@ J$ 5' g] +' [) 5' %{ r, H) r, 6' `, ^, z~ 2! ], 3_ 6' z~ ], g~ &[ =) v, e^ z~ q, q, v, +' q, r, 6' 6' ^, 5' e^ *[ e^ 5' 5' v, v, q, q, *) *) q, *) _, '. %% '. B= ). (* ). '. b# 5# =. !. ). ,& -. =. B$ z$ z$ 7# #. R z; .= 5# }; L@ E@ H V Z Y H Q@ S P@ P@ M S A P@ A G ", +"% . + > =[ + T@ . = ; | S$ # # $ . + + * T@ & - ! ] ] | ; ~ & | ; ; & . > | U@ %= N$ ) { Z@ & ~ 4 N$ Z! | Z! | | / 4 | ( < [ 1 d } D, ( ~ &# } b &# ( 7 Y@ :& D, $# : ( } 7 ## a k -[ ;[ #( #( #( #( #( #( #( #( #( >[ ,[ g 8 7 7 e '[ #( #( #( #( #( #( #( #( #( #( #( #( #( )[ ![ n h ~[ {[ #( ][ ^[ /[ #( #( #( #( #( #( #( #( ([ _[ G ^# D F= w :[ <[ #( m( 8_ A Z$ O@ z [[ m( #( 7_ }[ A M E$ 4# P Y :[ |[ #( #( 1[ 2[ 0* 3[ L@ 4[ #( #( 5[ 6[ E$ L@ @. 7# 6# 5# B$ $% $% @. P +. 7[ q( #( #( 8[ 9[ )& ]. >. 0[ #( #( a[ b[ c[ V^ 9# 5; b# ). '= =. d[ X) %% 1~ L] '. e[ /. /. D~ %% '= f[ w{ &% &% $^ 3~ g[ $^ v@ k~ Q< h[ i[ #( w( j[ 6^ k[ l[ #( #( m[ a/ '! 6^ I! 6^ n[ i{ j{ o[ H^ j{ H^ y{ j{ X~ p[ #( #( ^_ q[ h. K! K! F~ r) K! V{ F~ r) F~ F~ V{ V{ F~ V{ F~ V{ r[ `~ s[ `~ &^ ,{ 8] Q( t[ o~ o~ A> u[ `< 0! ') A> ') ') m{ m{ y/ ]! 9~ y/ /] r~ =] =] ]! =] ]! 9~ Q] u^ 6< v[ )/ /! u^ 6< W/ A/ <] /! w[ x[ 9) 9) 9) 2{ ^' F{ Z{ F{ Z{ ]~ 9) J^ 3{ 3{ Y{ f; f; [] 3{ `^ }_ [_ [_ O! y[ ~) C' ~) G{ @{ ~) =+ ~) C' ~) @{ C' @{ !/ i^ i^ t: b] `' z[ r] %, b= _~ k' ] k' _~ ] ] _~ ] ] k' _~ :~ _~ m/ A^ %, X] e~ X] {/ t] -~ i! ]) N^ ]) k^ t] .) i, >~ ^) G* ^) l^ >~ e= ^) l^ +) u% G* >~ u% +) >~ O^ @) u] u] P, A[ l; l; @) ;$ ;$ ;$ |^ l; @) =, n+ l; ;$ ;$ ;$ t+ t+ t+ s+ A- s+ t+ t+ u+ i= y% y% s+ t+ u+ t+ `] B+ B+ A+ B+ B% B+ B+ B% E+ B+ C+ C+ B% B+ A+ C+ ^$ A+ C+ E% L+ M+ D+ F+ D% P+ E% Q+ /$ Q+ /$ G% G% /$ T+ V+ T+ V+ T+ V+ Z+ Z+ Y+ Z+ @@ @@ @@ @@ @@ @@ +@ %@ +@ +@ 1] B[ q; D- &@ *@ *@ '@ >@ *@ 1$ *@ >@ )@ 2$ d> *@ T% )@ C[ H- 8$ ,@ {@ |~ {; 6$ P* 8$ W% r$ J j ; . R@ 2! *) q, [) [) %{ D[ 5' v, 5' @] *) ^, 5' 5' e^ z~ *) ], q, [) q, 6' 6' ^, ^, 5' ^, [) q, 3_ e^ %{ q, e^ q, e^ q, ^, e^ e^ r, q, z~ g] e^ e^ q, q, / 0# (. (. >& c# ,& A@ &. A@ ). &. E[ -. *. .= .= +. 9* z$ F@ E@ 2# $> T }; D$ H@ C$ T H Y P M Q@ P@ J K@ M a- H A M@ .~ ", +"# . + ; R@ + > ; = > ] $ Q$ - . S$ # T@ & . & W@ *' | ] ] | ] N$ & & + > , . ) ~ %= ^ { { ~ X@ ; ; H= 2 2 ^& | 2 ~ : [ H= ~ == < [ < { $# 1 { [ } $# { [{ b 7 d &# $# : $# d ( b ># F[ G[ #( #( #( H[ I[ J[ K[ >[ $( #( #( L[ M[ ~# a e 8 N[ O[ O[ O[ O[ O[ O[ O[ O[ O[ O[ $( #( #( P[ _[ 6! n Q[ {[ #( ][ R[ #( $( S[ T[ U[ V[ m( #( #( s< W[ ^# s )> G ^# X[ l( #( m( Z( ~& I 1& H Y[ Z[ #( #( `[ } %> T O P 4, .} 7_ #( N_ +} T 4# P D: @} #( #( #} $} X V C$ 7# y@ #. z@ +. z@ .= ,. A@ A@ %} #( #( &} *} >. >. 9/ =} w( #( w( -} &. R' %. ). 5; '. ;} '. =% 1~ /. X) %% D~ 1~ =% =% 3~ f[ L] `> 3~ $^ W^ w{ $^ q^ f{ X) p^ , >} ,} #( #( '} )} !} #( #( ~} {} 8^ 8^ l~ 6^ 8^ ]} %^ y{ y{ y{ 1{ j{ y{ j{ N] p[ #( #( ^_ ^} /} h. Z- r) r) K! r) F~ F~ V{ V{ F~ r) F~ F~ >/ V{ (} C{ G~ f( L! e/ 8] H~ I~ o~ 8] g/ 0! _} :} 0! ') A> m{ 0! m{ <> 0~ ]! =] =] 9~ 9~ 9~ y/ =] Q] =] Q] =] Q] Q] R] ^! /! =^ =^ W/ 6< !{ ^' <} F{ 9) ^' 9) F{ F{ Z{ ^' J^ ]~ F{ 7< F{ ;] [] ]~ ;] `^ 3{ 3{ i( D_ ^~ [} y[ C' ~) C' [_ <^ b) C' @{ @{ @{ C' y^ @{ L^ y^ =~ 1_ '^ Z: k/ / A) j^ :~ _~ _~ C/ _~ k' _~ %, k' _~ k' k' k' ] k' ^{ ]{ s] i! e~ e~ l' .) e~ -~ ]) .) .) u~ ]) u~ e= e= e= e= G* ^) >~ h, ^) >~ }} k; >~ >~ 6> k; c^ l; l; k; l; /) &, 5{ |^ l; l+ l+ l; ;$ g+ l; A- G/ @) ;$ ;$ =, t+ t+ |! =, t+ i= y% s+ u+ u+ y% s+ i= N> i= B- B% B% K* B+ B+ A+ A+ B+ C+ A+ A+ B+ C+ A+ B+ D+ F+ F+ D% ~- C- L+ D+ n; |} R+ L+ Q+ Q+ O+ S+ G% Q+ F% V+ R+ R+ Z+ V+ Z+ X+ Y+ Y+ Z+ Z+ Y+ @@ +@ @@ #@ #@ +@ %@ #@ #@ 1] @^ &@ *@ &@ %@ p= &@ I% 4$ I% >@ e> Q% H- )@ * N% 8$ 5$ T% 9$ /@ {@ /@ 9$ O* :@ /@ 1} Q@ q> | = ], ^, [) q, [) 2! e^ ^, 5' [) @] r, g] *) q, 6' q, z~ 2^ *) ^, q, ], ^, r, i) *) e^ e^ e^ e^ ^, 2! q, *) 5' 3_ ^, z~ 2! e^ 5' %{ 5' e^ ^, q, e^ *) 6' - $% ^. 5# :. 9& ~. {. ). e- ). ,& .. 5# +. &. -. 4& z$ z@ B$ #. R E@ V P L@ L@ a- Y Z H J J@ P@ A M@ P@ S A Q@ I M@ P@ ", +"]& L$ $ = . R- # - + $ | ] $ $= . [* k) k) . Q$ *' ~ ^ & { | | ^ < ] # # 2 Z! T- 2 | ~ *# ~ , < h) Z! U$ S$ 2 ## Z! | X@ | ~ [ 4 } [ => 2 6 < ( j } } &# $# [ d $# ~ ( Y@ } 6 6 V~ Y@ == $# 2} #( #( $( 3} 4} ~# [& ~# 5} 6} d< #( #( 2} } 8 ~# e o a 7 j k s *= L= p n 7} 8} #( #( 9} 0} c n a} {[ #( #( b} c} d} e} G b' `$ f} g} #( #( h} z y m w x k( S[ #( m( %( O@ P@ W) Q H i} j} #( #( k} H L@ E$ A l} m} #( #( n} o} P@ L@ E$ p} q} #( #( r} @. s} ,. C$ X W E@ X +. 7# E@ A@ A@ &. t} #( #( W_ u} >. ;. $. v} w} #( #( x} y} z} e- 7, H! %. b: H! %% p, S' '. X) D~ -{ D~ '= '= /. L] e' w{ w{ w{ W^ $^ 3~ u' A} M] B} C} D} E} #( #( F} g: #( w( G} I! I! 8^ 8^ 8^ =/ t/ h{ m~ g' 1{ v' j{ j{ j{ i] q: #( #( X< H} U/ ^] Z- h. h. 0^ ;/ K! F~ F~ F~ K! F~ F~ V{ C{ H, I} `~ L! ,{ t^ Z< t^ J} [ H~ t^ K} L} `< Q( m- ') 0! M} 0! ') m{ 9~ 0~ /] y/ ]! 9~ Q] _/ x/ =^ =] u^ R] Q] 9~ Q] r~ u^ /! u^ R( W/ 2{ w^ A/ +{ d; d; ^' ^' F{ 9) ^' ^' ]~ ]~ F{ ;] 3{ ]~ K^ 3{ 3{ ]~ O! ;] [] s~ S] ;] y) /~ C' <^ G{ @{ @; C' ~) ~) @{ @; y^ P! C' Z: N} d~ D' u: O} [^ b] b= k' _~ P} ] :~ :~ k' k' k' ] :~ %, ]{ s] i! g, k' i! +! e~ i! ]) i! e~ ]) .) #{ i, t] t] !^ ]/ R! >~ ^) >~ e= >~ e= ^) +) k; Q} ^) u] >~ e= @! }} )- @) /) |' ;$ l; l; /) l; l+ l; |^ ;$ l; l; ;$ ;$ l+ ;$ >$ y% y% G/ /{ N> s+ g= s+ u+ s+ (: t+ w+ i= j= A+ B% B+ B+ B% A+ B+ A% C+ B% B+ B% C+ B+ A+ C+ C+ D+ ^$ C+ S& O+ C+ F+ >; /$ R+ Q+ S+ S+ S+ R+ L+ /$ T+ T+ Z+ Y+ V+ Z+ Z+ +@ _$ _$ _$ #@ W+ @@ @@ :- p; #@ &@ %@ %@ &@ c> !] #@ *@ &@ *@ *@ 1$ *@ =@ > `& R% T% )@ Q% N* G) !; .> S% ~@ U% +* O% ^@ s; S* _. m 6 { + ], ], V! q, 2! g~ ^, e^ [) 5' ^, ^, [) *) *) z~ [: `, *) *) *) r, e^ ], ^, *) 2! ^, e^ z~ e^ 5' 2! q, 2! q, [) q, ], *) ^, 5' q, q, ^, v, 2! V! *) `, # R q@ :. (. ^. (. F, ^. =. >. {. &. 5# 5# z@ A@ +. A@ &. z@ E@ +. z@ X 2# H@ H@ F@ L@ V C$ J Y S Q@ M@ A M A Q@ P@ K I ", +"]& + + & # $ + |* . & R$ ^& + > T@ + N$ N$ P$ > U$ & ; Q$ ; !, H= ~ N$ ] ] V@ # ) ) ) ~ 2 | ( & 1 2 | ~ 2 < { | ~ | 2 ] $# 6 -> ## 6 d } < d $# } 6 } $# } 7 < a Y> $# 6 b -# } a e R} S} #( #( T} U} $# 7 a i i V} W} #( #( X} Y} &# k L= s> ~# j o n Y$ c 7 0 Z} `} #( #( | .| e e n +| {[ #( #( $( @| ^# #| B /# p :# $| #( #( n< +( F= 8* z {& +( S[ #( m( %| w A P@ M L #= &| #( #( g} *| z N@ =| -| #( #( ;| >| L J T d- ,| '| #( #( )| #. 7# E@ U )= !& )= X 5# X X $% @. E@ !| 7_ #( 7_ u( )& =. E@ 0: ~| #( #( #( .: {| ]| ^| /| 0: !. !. {. %% ;} H! %% a: D~ u! 1~ /. 4] L] u! 1~ 3~ 3~ W^ w{ (| W^ 3~ b* 5^ q^ _| :| #( #( #( #( #( <| U< 6^ I! '! I! t/ [| =/ 6^ !! a; 1{ i] j{ 7) j{ H^ p[ #( #( X< q[ c/ B{ Z- h. K! r) }| || F~ r) r) r) V{ F~ C{ r) W: C{ `~ '{ l] l] 1| Y^ H~ t^ o~ 2| z_ 7~ p~ o~ O] m- 0! 0! ,/ ') ,/ 9] /] ]! 9~ 3| 9~ =] Q] =^ 9~ Q] =] Q] =^ =^ =^ u^ u^ =^ v[ 6< :_ _^ F{ w[ +[ 9) 9) ^' ^' F{ F{ F{ F{ Z{ f; Z{ J^ ;] 4| O! `^ ;] `^ O! 3{ ;] 3{ S] i( `^ i( z) @; ~) (~ ~) y^ @{ ~) ~) y^ I{ @{ ~) :/ Q) 5| :/ D' P! M^ [^ j^ k' _~ _~ _~ _~ _~ ] _~ k' ] 2_ %, k' c] c] Z/ ] -~ >- {/ i! -~ #{ e~ .) 7+ ]) #{ e= t] R! >~ .) ^) >~ ^) 6| ^) ^) ^) e= +) ^) >~ k; +) e= c^ P, ;$ k! |^ l; l; ;$ l; l+ l; l+ ;$ ;$ l+ l; ;$ n+ A- ;$ )- A- t+ |! y% 2' 7| t+ t+ |! i= s+ g= u+ w+ u+ s+ w~ B% B- B% B- B- B% M> A+ C+ B+ A+ E+ C+ E+ A+ C+ C+ C+ n; C% /$ M+ D+ E+ k= T+ R+ G% V+ R+ Y+ 8| Q+ F% Z+ V+ T+ Y+ f) Z+ W+ Z+ Y+ W+ #@ @@ @@ @@ `; p; #@ #@ #@ &@ &@ B[ !] #@ %@ &@ &@ >@ =@ *@ > Q% 7$ '@ I% -@ 7$ 7$ e> )@ O* M% I- T% V% H- {; w= 9@ z@ % 1 ] # ]& R@ ], e^ ^, 5' z~ 5' g] 5' ^, q, q, [) 5' e^ ^, z~ 2! q, ^, *) ^, ^, *) e^ e^ `, V! 9| V! e^ 5' e^ *) ^, [) q, e^ `, ^, ], ], q, z~ ], e^ z~ g] q, J$ ` D= v@ v@ >& !. A@ (* ). &. p, F, !. ;. [, (* +. #. z$ 5# G@ 5# V }; 1# P 1# H@ X T H J Y M P Y S Q@ G w G I G ", +"= > H= ; > # # & $ N$ ]& . & . Z, + & & & ' X@ & . H= - N$ ; | ) ) | - N$ ] . > - X@ ~ ) ## { & ] W@ [ < | N$ 4 X@ ## | [ { /& ^ %# { 1 6 6 ( 8 } | ~ $# } 5 a < 9 ( 7 D, } Y> ,# 0| #( #( a| b| 6 :& $# b e 7 ~# c| d| #( $( e| '# a L= e 8 7 &# L= ~# r -) ~# f| #( #( ][ g| c r ,# h h| {[ #( #( i| j| G 4* F= m 1; m k| ][ #( d< l| Q@ Q@ F= )> m| n| #( m( Z( I M N= w H n! o| p| #( #( q| r| H s| 5[ #( 7_ t| X> I@ d- L@ T u| 5[ #( #( 9_ 4; W C$ I@ ,. .. .. X a* 7# W #. !& #. v| 7_ #( w( =} &. =. $. %. w| x| #( #( #( #( #( #( _< y| z| A| x@ %% X) q/ !. %% 1~ a: ,& a: =% +: 1~ /. 3~ w{ W^ w{ f{ w{ 3~ 2~ q^ k~ w{ B| C| #( #( #( +_ D| '! I! I! 6^ 8^ [| [| =/ 6^ I! v' 1{ j{ y{ y{ H^ H^ T: #( #( X< E| c/ i] }| K! K! K! }| F| W' F~ r) V{ V{ F~ F~ C{ C{ F~ F~ W' Y^ G~ Y^ W{ `~ H~ o~ 2| o~ G| 7~ Q( p~ I^ A_ 0! 0! m{ m{ m{ .[ 9~ y/ /] =^ =] 9~ 9~ =] 9~ Q] Q] =^ Q] =^ Q] u^ u^ 6< v[ H| o] I| +[ A/ 9) ^' 9) ^' F{ F{ ^' Z{ Z{ ;] F{ Z{ F{ ;] 3{ &~ J^ 3{ [] }_ 3{ 3{ H{ j/ [] H{ @{ ~) C' F] J| @{ @{ @{ y^ @{ ~) @{ @{ i^ c~ h^ t: b= K{ u: @[ b] D' k' k' |_ _~ k' ] :~ ] _~ _~ k' _~ s] _~ i! s] :~ Y] g, e~ >- .) i! < t] l' t] ^) t] ]) ^) ^) >~ l^ G* ^) l^ ^) l^ ;~ +) s{ e= e= +) l^ ^) /) ;$ ;$ l+ l; |' l; l; l; ;$ ;$ ;$ l; l; l; ;$ ;$ ;$ t+ G/ A- y% |! |! >$ u+ i= y% y% u+ i= s+ '$ w+ s+ i= B+ `] B% B% B+ B% C+ A% A+ B+ B+ B+ A+ C+ C+ C+ B! D+ C+ E+ F+ Q+ L+ D+ F+ F+ K| R+ L+ G% R+ S+ G% /$ /$ F% Z+ V+ Y+ f) L| @@ X+ Z+ Z+ _$ @@ W+ #@ @@ +@ V& #@ #@ #@ #@ <- c> +^ >@ *@ &@ %@ 1$ S> o= -@ '@ >@ &) 4$ '@ 7$ 6$ T% T% U% O* R% S% (@ :@ W% |@ z$ q *# ; ], J$ z~ z~ q, q, ^, 5' z~ 3_ ], ^, q, r, g] *) ], g~ g~ ^, g~ 2! *) ], ], e^ ], g~ ^, V! ], 2^ e^ [) 2! *) e^ 2! g~ V! *) ], R@ g~ ^, q, *) *) M| V! Z d# q@ w$ {. !. ;. -. ). A@ %. '. '. !. 5# =. z@ +. .= V C$ D$ 2# E@ 2# P P J Y ` J@ E$ L@ T J J Y M I M +% A :# ", +"= N$ > + ; T@ %= & ] # $ $= - . . ; + # !, ; Q$ . & ^ . { ~ ~ ] *# ; & & ] N$ & H= | |* W@ ~ N$ | ~ N$ ] ## X@ ; N$ ] 2 | ) V~ [{ { ) 2 , ~ [ < $# 4 } } ( d [ $# d 1 d / 7 / ,# $# N| #( #( O| ># 0 ># b a 0 $# b ~# P| #( #( Q| j e ~# c o 7 a t' n a o R| s< #( #( S| T| L= ]# e n h| {[ #( #( U| h ^# @= m y V| Y$ W| X| #( 7_ Y| ~& N N O@ v< l( #( m( n( E$ P@ D G O@ I t> Z| `| #( 7_ 1 .1 |: #( #( +1 @1 I@ L@ r! Y L@ #1 W_ #( #( $1 R Q' X E@ L G@ !& E@ R O= .. z$ z$ V w| W_ #( #( %1 )& z$ %. %. %. &1 q( #( #( #( #( #( #( #( #( *1 =1 -1 x@ =% 7, 1~ J: '. ;1 3~ ). /. L] 6& &% ~] ^^ 4] *_ 3~ W^ w{ b* 5^ A} p^ >1 #( #( #( ,1 '1 '! '! S{ 6^ '! 6^ 8^ 6^ 6^ 8^ s^ H^ )1 j{ H^ H^ H^ T: #( #( X< Y< !1 // ~1 }| r) F~ }| }| K! K! r) K! r) F~ F~ V{ 8) V{ V{ C{ z_ l] *^ I~ {1 t^ t^ t^ t^ g/ I^ 5< ]1 I^ L} ') 0! ') I^ ') ') /] 9] ]! y/ .[ /] 2/ =] ]! Q] 9~ u^ z/ =^ u^ =^ u^ =^ u^ u^ o] w[ a^ :_ <] ^' ^' 9) ^' 9) ^1 F{ ^' ]~ /1 J^ 7< K^ ;] s~ `^ ;] s~ ;] `^ (1 T] _1 T] i( F] @{ ~) <^ F] @{ ~) ~) y^ I{ C' E_ /~ ~) :! ~) y^ :/ '^ V] Z: b] :1 k' k' ] k' %, k' _~ _~ _~ ] ] _~ k' :~ Y] X] k' <1 < {/ i! >- -~ m/ t] .) t] R! i, l' i, e= ^) e= ^) ^) i, u~ ^) >~ >~ u] +) >~ [1 ,- G* /) @) ;$ 6> l+ /) g+ @) @) @) l; l+ |^ ;$ ;$ l; >$ ;$ >$ y% n+ 2' D) |! t+ i= i= y% s+ '$ i= u+ j= u+ u+ t+ M> w~ R, B% B+ B% B% y+ B+ C+ A+ A+ A+ A+ A+ C+ C+ A+ A+ D% D+ M+ L* E+ D+ D+ D% N+ L+ Q+ L+ V+ R+ /$ /$ G% T+ _$ Y+ f) F% Z+ Y+ Z+ Y+ _$ Z+ W+ W+ @@ _$ +@ +@ p; +@ :- &@ e] e] &@ &@ *@ *@ *@ %@ =@ I% q= q= L% q= ]@ ]@ -@ V% {@ * }1 q= S% ,@ 9$ ^@ 6@ C$ m 6 ; R@ R@ g~ z~ g~ *) *) q, z~ ], ^, 2! *) q, *) z~ z~ q, 2^ 2^ 9| g~ ^, g~ ], V! *) <{ ], *) ], V! ], ], ], ], J$ s' ], ], 2^ *) *) ], q, e^ 9| e^ ^, [) i) |1 M= ^. v@ ^. w$ (. <. =. A@ x@ A@ ). *. A@ D! =. F; +. .. 9* )& G@ Y 5# @. R E@ P }; S I #= S 1# Y A M@ Q@ I Q@ @% A 2; ", +"+ . # > + + - . T@ V@ - X! * U@ 2) ; N$ . ; Q$ ' > S$ }, # |* ; ~ ~ ^ - > H= 1* # > ] N$ ~ X@ W@ ~ ) ~ ] | ) , /& 2 H= | { 5 ) W@ ; } ## W@ /& ( -> } } ## ~ ## 9 ( $# a $# 7 6 / $# ,# 11 21 #( #( 31 6 $# i [& D, 7 b 0 r 41 #( #( 51 8 0 j e 8 c L= Q{ n ~# 61 71 #( #( 81 91 }& /# c W! ^# ~[ {[ #( 7_ 01 Y$ n^ {& ^# `$ q `$ a1 b1 #( $( c1 A 4* I z d1 l( #( m( n( 1& G |# O@ M K E$ e1 f1 #( #( m} g1 #( #( h1 i1 H E$ D$ L@ Y D$ j1 m( #( #( k1 L@ y@ @. E@ P' O= I@ ={ H@ 7# !& l1 z$ z@ m1 W_ #( #( n1 *. =. . e- ). ;. o1 p1 q1 #( #( #( #( #( #( #( #( r1 s1 %% ;. q/ q/ L] '& d[ =% D~ 3~ &% w{ &% w{ '& 1( Q< w{ +: b* 7! 5^ t1 u1 #( #( #( v1 w1 I! 6^ ]} '! , I! 8^ 8^ X^ =/ x1 %^ y1 H^ j{ j{ o[ p[ #( #( X< z1 X~ A1 B1 F~ K! K! C1 F~ r) r) r) F~ V{ r) H, F~ V{ V{ F~ V{ l] t[ D1 8) `~ D{ H~ t^ [ `< 5< ,/ [= E1 ') m{ ,/ A_ 0! 0! m{ y/ 9~ 0~ 9] 3| x/ 6< Q] 9~ =^ Q] =^ =^ =^ u^ 6< 6< =^ u^ u^ a] _^ ^' :_ /! F{ F{ ^' F{ 9) 9) 9) ^' J^ F{ Z{ Z{ x[ 3{ 3{ `^ 3{ [] 3{ 7< `^ [] S] S] H{ [_ !/ B/ F] F1 @{ @; @; @; ~) ~) /~ @{ y^ ~) c~ !/ @{ b] @{ d~ A) j^ k' k' _~ k' ] _~ _~ |_ b= 2_ ] :~ ] _~ :~ e~ D/ >] N^ ,] d] N^ ]) g, t] l' t] ]) i, .) l' i, e= ^) ^) ^) !^ e= e= ^) >~ M{ u] e= +) )- l^ @! *, l; G* k! l; |' s{ l; @) ;$ ;$ @) l+ ;$ l+ s+ @) ;$ l+ ;$ L> A- y% t+ t+ i= w+ }! t+ u+ i= t+ w+ u+ N> t+ A% B% B+ A+ B+ B% o' B+ o' A+ E+ A+ A+ D+ C+ B% E+ A+ I+ >; E+ S& O+ F+ F+ D+ t{ Q+ L+ Q+ /$ T+ G% /$ G% R+ R+ T+ R+ V+ _$ +@ W+ _$ _$ _$ @@ Z+ +@ @@ %@ +@ #@ #@ &@ %@ %@ @^ $@ *@ &@ >@ >@ >@ > *@ 7$ *! )@ G- 6$ M% * !; '@ T% U% +* /@ ~@ P* _@ z= n> }& *# 2 # ]& ], ^, q, e^ e^ V! e^ g~ g~ V! V! J$ e^ 9| *) ]^ ], ], *) *) e^ ], R@ 2^ <{ R@ ]^ *) J$ ], ], ], S- ]^ V! e^ R@ ]^ V! q, q, J$ ]^ *) `, *) q, R@ J$ o D! u@ >& ^. w$ ). '. x@ !. *. ). ). ). 5# &. &. e- &. z$ z@ )= R e- &. G@ J H 7# J H Y |; x A H I H A M 1# P@ z ", +"]& 0' . . # > }* V@ . & # = > Z! ] $ > & & - $= =' ]& - # & ; - ~ X@ 2 . $= - & & ] 2 ^ ] U@ U$ ^ ^ R$ U@ } 1 X@ X@ N$ ( 5 `@ } %# / $# ;# 1 ( | ~ / [ ) } d } } 6 | $# } [ [{ ## G1 H1 #( I1 J1 K1 L1 -[ M1 N1 -[ O1 -[ P1 Q1 #( #( R1 a 0 7 9- *= '# e V$ e S1 T1 #( #( {[ U1 2, c Y$ c c r a} {[ #( m( V1 l /# ,> (# n ^# p W1 X1 #( #( Y1 w {& A {& :[ l( #( m( n( o^ P@ 8* N n! I m) O@ Z1 y< #( #( 7_ #( #( `1 J H$ J 5, L T E$ 2 m( #( #( .2 . G; y@ 8# )= V E@ E@ >! .= E@ +. $% =. +2 W_ #( #( @2 ;. A@ *. )& $. t( c[ $. #2 ]( $2 %2 %_ 7_ #( #( #( #( &2 *2 b# q/ X) H! b# %% x@ 1~ /. D~ w{ w{ =2 3~ 1( 7& w{ W^ g[ g[ A] -2 w( #( #( #( 7_ ;2 6^ '! '! 6^ 6^ I! I! 6^ =/ 8^ >2 v/ y{ y{ y{ j{ ,2 q: #( #( X< H} B{ '2 !1 B] K! }| V: V: K! r) V{ r) r) F~ V{ F~ V{ F~ W{ t[ V{ Y^ t[ t[ `~ z_ o~ l- f( o~ &^ 0! O] O] ') 0! 7~ A> 0! A_ ,/ 2/ 9~ =] y/ m{ y/ =^ =] Q] ^: =^ Q] u^ =] =^ u^ 6< =] u^ u^ =^ o] <_ _^ v^ )2 F{ Z{ F{ Z{ b^ F{ 9) F{ Z{ F{ !2 `^ ;] ;] `^ 3{ ;] `^ 3{ 3{ ^~ _1 j/ 3{ O! ~) ~) i( F] y^ C' C' C' C' C' @{ @{ ~) V] '^ ~) y^ [^ ~2 y^ S( D' 2_ k' _~ _~ k' _~ _~ _~ k' k' k' ] >] ] _~ D/ e~ :~ Y] ]) g, i! ]) N^ N^ t] t] ]) #{ u~ t] e= e= >~ e= ^) R! i, ^) e= >~ e= k! ~^ {2 ^) 6> ,- @! l; k! k! ;$ P, '] l+ ;$ l; l; l; g+ ;$ l; @) ;$ l+ l; l; l; >$ t+ y% t+ |! i= |! |! u+ u+ i= t+ y% u+ '$ ]$ A+ A+ B+ R, B% B+ A+ K* B+ C+ A+ A+ A+ D+ A+ E+ D+ C+ C+ E+ k= L+ /$ F+ F+ K| /$ Q+ /$ G% T+ V+ f) G% V+ V+ V+ _$ _$ p; _$ +@ _$ _$ @@ +@ Z+ #@ +@ +@ @@ #@ #@ %@ %@ R> w] e] &@ *@ #@ W, `& m, 1$ `& &@ R% 9$ r; * Q% )@ * 8$ '@ R% ~@ T% s= !@ p@ L@ ~# } ] + R@ J$ e^ 5' e^ 5' e^ e^ e^ e^ e^ ], J$ ], e^ 2! g~ ], <{ 2! ^, q, e^ )~ R@ 9| *) `, ], J$ R@ ]& J$ s' ], J$ J$ `, 2^ R@ V! 5' e^ *) )~ V! R@ *) ], ^, b l> E~ p) H! &. &. A@ -. ). ). '. A@ &. ;! A@ 5# F@ &. 6# E@ C$ 2# $> 4# C$ P P C$ V H +% S J @% S o> J S A M I z ", +"# ]& ]& # . 2) # $ & . . ; . ; [* $ & ; . > Z, 5! ] U@ & | ; ; - `@ ! ; ~ ; |* ] > # ^& ~ | ] | | U@ %= 2 ) X@ ] | & U@ Y@ ~ | 2 | [ ~ { { ## ,# } } | { ,# 5 $# b 6 [ $# Y@ d } ]2 I1 #( #( $( $( $( $( #( #( #( #( #( #( #( #( #( ^2 /2 e V$ *= 7 c ~# ~# n (2 $( #( #( _2 `$ s> p Y$ s> |& Z$ :2 {[ #( ][ <2 ^# p % {& b' Z$ Y$ [2 }2 #( #( |2 G z O@ ^# 6_ l( #( m( %| O@ z M A O@ L M 8* A 12 7_ #( #( #( 22 32 J A J L H@ J E$ 42 5[ #( #( 52 7# V O= @. V 4# O= @. E@ G; ,. @. . +. 62 +_ #( #( 72 +. A@ .. =. ;. !. ;. . *. 82 ;} H! 7: 92 02 +_ #( #( #( a2 b2 a: '= 1~ 1~ X) X) L] &% 3~ ~] L] /. +~ Q/ w{ c2 W^ *_ b* d2 e2 #( #( ;_ #( #( f2 g2 I! I! I! 6^ I! 6^ 0, 6^ 6^ =/ %^ j{ j{ j{ H^ H^ T: #( #( ^_ h2 ^] U/ ~1 B1 K! r) 4~ r) B] K! }| F~ F~ F~ V{ V{ C{ C{ G~ G~ l] 7] Z< e/ t^ &^ ~! 8] i2 (} Z< :} 6~ Q( ') 0! ') ,/ A_ ,/ m{ j2 9] ]! 0~ k2 9] 9~ Q] y/ x/ Q] =^ Q] =^ =^ u^ =^ =^ u^ =^ <_ N~ +[ 2{ w[ <] 9) 9) F{ ^' F{ 9) F{ Z{ 9) 9) 9) x[ [] ]~ f; &~ C_ f; 3{ Y{ K^ S] [] S] `^ ~) G{ b) o{ C' C' @{ @{ F1 y^ U] ~) @{ 4{ (~ Z: @{ '^ b] K{ '^ l2 [^ j^ _~ ] j^ ] ] k' _~ _~ ] ] B* _~ _~ s] A^ m2 P} >- d] e~ ,] < g, >- ]) .) #{ u~ ]) u~ ^) >~ i, e= ^) R! e= k; e= ^) G* +) +) e= k! >~ &, /) u] ,- l; P, C) @) ;$ l; |' l; l+ ;$ l+ l; A- ;$ ;$ r+ j+ 2' V; s+ y% V; N> s+ s+ u+ w+ i= m; t+ t+ N> z+ w~ B% B+ B+ B% B+ B+ B% B% A+ B+ B+ o' A+ E+ D+ E+ E+ E+ n2 k= O+ Z; o2 E+ |} S~ Q+ /$ G% V+ V+ T+ f) L| F% Y+ _$ Z+ Y+ Y+ X+ _$ Z+ Z+ _$ p; @@ +@ @@ +@ +@ <- +@ *@ %@ $@ E- I% %@ *@ C^ I% 7$ *@ *@ I% 7$ G- )@ =@ '@ V% O* 4$ 4$ T% U% 9$ ^@ ^@ p2 H j ~ & ]& R@ ], 2^ ], *) `, *) ], e^ e^ e^ 2! J$ V! J$ ], ], J$ J$ ], ]^ R@ R@ ]^ L$ J$ R@ R@ 2^ R@ J$ J$ R@ ]& R@ *) J$ R@ J$ R@ ], )~ R@ R@ ]^ ], R@ V! ], {, g~ W@ -. E~ {. x@ '& ^. w$ &. (. ;. z@ z@ e- =. '. =. A@ ;. &. G@ P .= 5# G@ 4# P Y H P M@ M@ 3; |; J Q@ #= A O@ P@ P@ Q@ q2 ", +"> # # + U@ > > & U@ . . & - > > ; ^ # Z, . > > 5- . }* & ; U@ ) ~ > ; - ; *# %= Z! .# ^ ] ] N$ > ^& r2 X@ ^ N$ 2 ; S$ R$ | }* |* ;# ) ) / | d ,# { 8- D, /& ; Y@ ) 6 : $# d i 6 ( } s2 I1 #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( t2 /2 8 V$ b a *= g s> u2 v2 #( #( w2 x2 L= Z$ L= s> Y$ y2 `$ ~[ {[ #( ][ <2 ^# h /# w `$ p ^# z2 A2 #( #( |2 /# z b' D 6_ S[ #( m( %( #= O@ A 1& O@ J w P@ O@ B2 C2 #( #( 7_ D2 T L T M@ Q T I@ J E2 F2 #( #( G2 7# E@ . X z$ d- L@ L@ 7# )= ,. =. E@ >. H2 #( #( 7_ I2 C@ !. >. ;. .. t( &. )= !. b# b: 9# ;. 9# J2 K2 L2 #( #( M2 N2 {. X) J: '= L] L] D~ D~ &% &% &% 3~ &% w{ W^ w{ W^ w{ O2 P2 #( #( Q2 R2 i[ #( w( S2 I! '! I! I! '! I! I! 1{ =/ 8^ T2 H^ y{ y{ j{ H^ p[ #( #( ^_ U2 !1 w/ A1 N] B] r) h. r) F~ F~ F~ F~ V{ d/ C{ C{ C{ V{ d/ d/ d/ `~ &^ {1 t^ W{ [ o~ ~! u[ z_ f( /_ ~! 0! 0! ,/ m{ M} ,/ I^ ,/ 9] 9~ 9~ 9~ y/ 9~ Q] x/ x/ __ Q] u^ =^ i/ u^ Q] 6< u^ 6< =^ 6< +[ 2{ 9) d; <] 9) d; Z{ 9) F{ Z{ F{ 9) 3{ F{ Z{ 3{ 3{ f; [] Z{ ;] `^ i( `^ 7< H{ S] H{ T] F] F] <^ b) G{ ~) y^ @{ ~) ~) ~) @{ @{ B/ Z: t: y^ {{ c~ k/ S( r{ A) _~ _~ :~ :~ ] :~ k' _~ _~ k' _~ _~ ] ] e~ g, k' w- ,] e~ d] t] < < t] ]) ]) >~ ]) .) >~ ^) u~ >~ >~ >~ ^) k; >~ l^ >~ k; >~ %$ k! /) M{ @! l; V2 ;$ l; l; @) l+ l; /) ;$ l+ l+ l; l; n+ l; l+ A- l+ ;$ t+ |! y% |! ;$ n' t+ u+ u+ s+ t+ o+ '$ u+ N> u+ C+ S, _: A+ A+ B% A+ A+ B+ A+ C+ C+ C+ D% G+ D+ D+ E+ D+ F+ o; Q+ W2 F+ D+ 0> S+ X2 /$ G% R+ R+ T+ Y+ V+ R+ S+ Y+ V+ V& +@ Z+ _$ Z+ Z+ :- +@ +@ +@ #@ @@ %@ #@ &@ #@ 1] c> E- R> &@ > [- Q% &@ p= $@ Q% (@ Y2 (@ -@ '@ /@ O% S% w= '@ )@ V% +* :. K ~# ~ ] R@ ^, i) V! ]^ J$ *) 2^ *) J$ J$ ], ], V! R@ R@ R@ ]^ # R@ R@ J$ ], ]& R@ R@ R@ ], )~ s' R@ {, R@ ]^ J$ ]& R@ ]^ ]^ R@ 2^ 2! g~ J$ ], )~ `@ &. :. O- v@ ^. v@ u@ A@ {. B@ p, &. ). B$ ). z@ )& B$ 5# -. X z@ V X 2# R }; O V J Z +% O +% P@ A Q@ M H E$ A +% ", +"L$ ]& L$ + > $ . ]& # $ T@ ; T@ U$ Q$ & - $ ; > *' > + ; # & - ^ ^& T- ] ] | U@ U@ ; - P$ Q$ S$ U@ ; ] ] ) ( `@ & X@ Z! %= | | ; ~ ) ( *# 2 Y@ $# Y@ ~ 5 ( a 1 [ [ J= Y@ 7 < $# b /& } Z2 I1 #( I1 `2 3 3 3 3 .3 .3 .3 +3 3 3 .3 3 @3 #3 j *= 0 L= c u $3 %3 #( #( &3 *3 a' X$ }& |& s> Y$ E, L= =3 {[ #( ][ -3 p w 1; w D m y ;3 }2 #( #( >3 `$ {& w C m| n| #( m( %| Q@ L O@ x O@ P@ I E$ M ,3 '3 #( #( #( )3 T d- I@ P L 4; O= E$ !3 ~3 #( #( {3 ]3 W W |# P C$ #. O= . d- 5# ^3 E@ /3 (3 #( #( N_ _3 :3 /3 =. $. B$ 6# ;. )& &. *. 9# !. H! 9# 9# <3 [3 w( #( #( }3 '= '= %% a: '= |3 ~] ^^ &% 3~ w{ W^ ^^ w{ 13 w{ W^ w{ 23 33 #( w( 43 53 63 #( #( 73 83 6^ '! 6^ '! I! I! l~ h{ =/ 6^ H^ y{ H^ v/ H^ p[ #( #( ^_ 93 N] A{ U/ A1 /} F~ V{ F~ F~ r) r) F~ r) C{ V{ F~ V{ C{ C{ V{ 03 d/ d/ `~ l] &^ e/ 8] a3 Z< e/ b3 I^ 0! ,/ m{ c3 I^ ,/ m- 0! 0! 0! 9] ]! ]! =] 9~ Q] Q] /] d3 =^ Q] Q] u^ =^ Q] u^ 6< Q] u^ u^ R( +[ a^ ^' d; F{ 9) Z{ F{ F{ F{ F{ F{ Z{ J^ 7< J^ ;] ]~ e! J^ `^ 3{ H{ `^ e3 }_ [_ f3 [] F1 @{ i( F] <^ C' C' @{ ~) y^ h^ y^ @{ @{ C' u: B/ i^ b] q{ Y: [^ 2_ %, Y# g3 k' _~ 2_ _~ :~ ] _~ ] _~ $[ s] m2 A^ X] s] -~ g, d] ]) #{ e~ #{ t] ]) u~ ;~ ]) l' e= i, ^) ^) ^) G* e= G* >~ ^) 6> +) >~ +) }} k! l; l; l; )- l; l+ @) l; ;$ ;$ l; l+ n+ |' l; l+ l; n+ l+ n+ ;$ |! t+ t+ y% C) >$ |! |! u+ u+ i= s+ i= x+ x+ u+ ]$ h3 C+ B+ B+ A+ A+ A+ B+ C+ D+ K* B+ B% A+ A+ D+ E+ D+ F+ D+ O+ O> G+ D+ i3 N+ Q+ /$ G% S+ T+ T+ Y+ f) T+ Y+ _$ Y+ V& @@ +@ Y+ _$ p; +@ +@ @@ +@ +@ @@ #@ %@ %@ &@ *@ !] E- D- *@ &) $@ Q% *@ &@ &@ 1$ I% '@ 7$ Q% j3 ]@ ~@ )@ 6$ (@ T% 9$ R* !. G e ; N$ + @ e^ J$ V! *) ], R@ R@ R@ R@ 9| ], R@ k3 R@ <{ $ J$ + R@ g~ R@ J$ R@ $ . ]& =[ G= R@ R@ R@ R@ R@ R@ R@ ]& R@ R@ R@ R@ R@ J$ J$ + 2^ 2^ . z@ d# ). c# (. '& w$ x@ x@ .. ). =. 5# &. 5# &. A@ +. .= =. +. )= G@ #. H@ 5# G@ X P ` L K@ P@ L@ P@ H$ U M H$ G Q@ +% ", +". # S$ & - Z, & > R- = . . & = ; ] ; . > Q$ O$ + . . & * N$ ; | ~ ; - | ^ %= N$ ; # V@ ~ 2 U$ ^ { > | ## [ ~ 2 %= %= X@ ( X@ D, 1 W@ 1 Y@ [ ) { 1 } b ## } { Y@ 6 3* [{ ## J= $# 6 ## l3 I1 #( d< m3 6 &# / : _ / 9 ~# d } e 6 7 8 $# V$ e j n c n3 #( #( m( o3 n h |& r r L= p a [& p3 {[ #( ][ q3 `$ w l b' 2, p _# z2 r3 #( #( >3 (# Y$ D t m| S[ #( m( s3 A n! ~& z E$ M z A t3 C2 #( #( #( #( h1 u3 T L J P T 7# J T v3 #( #( w3 x3 W G$ ` D$ H@ #. #. E@ F^ .. =. ,. y3 z3 #( #( A3 B3 C@ =. z@ A@ >. 9/ =. e- ]. v{ b: b: 5; b: 9# 7, C3 D3 #( #( E3 J: X) %% %% '= X) &% =2 ^^ (| 3~ w{ ~] W^ F3 w{ w{ G3 H3 #( #( f2 I3 g[ J3 K3 #( #( L3 6^ 6) '! 6^ 8^ 8^ v/ =/ 8^ M3 y{ j{ y{ %^ j{ p[ #( #( X< 93 A{ c/ N3 A1 o[ B{ Z- K! r) h. V{ V{ w/ V{ O3 d/ V{ C{ V{ V{ C{ t[ V{ e/ `~ t^ Q( f( /_ Z< o~ P3 5< m{ Q3 ,/ ,/ m{ ,/ m{ ,/ m{ M} A_ 9~ =] /] R3 3| S3 y/ y/ T3 u^ u^ z/ =] 6< v[ U3 v[ v[ 6< W/ +[ )2 ^' d; F{ ^' F{ 9) 9) d; 9) )2 F{ Z{ :^ Z{ 3{ ;] K^ K^ `^ 3{ K^ `^ ;] y[ H{ j/ `^ G{ @{ i( [_ [_ F1 ~) *+ y^ y^ ~) @{ K{ y^ @{ Z: y^ q{ S( Y/ ~2 [^ A) %, ] _~ %, k' |_ ] k' _~ _~ %, k' k' Y] ] e~ e~ >] V3 e~ d] < .) d] i! .) t] t] >~ t] k^ l^ R! ^) ^) ^) l^ R! e= ^) >~ /) 6> ^) e= ^) >~ ^) @) l+ /) l+ l; @) l; A[ ;$ l; l; @) ;$ @) ;$ ;$ ;$ ;$ y% ;$ |! y% |! |! N> /{ t+ t+ s+ x+ x% ^/ t+ u+ u+ w+ A% B+ B% B- B+ A+ B% B% C+ E+ C+ C+ A+ B+ I+ D+ C+ D+ E+ D+ F+ L+ P> E+ D+ W3 X3 T+ R+ S+ T+ V+ .^ F% Q+ Y+ V+ Z+ _$ V+ m= X+ p; Z+ Z+ Y3 p; @@ +@ #@ m, _$ %@ #@ %@ &@ <~ @^ p' =@ ~; #@ 4$ '; -@ !; 7$ 2$ =@ '@ >@ '@ s= ]@ T% '@ |~ u= ~@ x= 5# ^# 7 2 U@ + . # J$ * J$ % R@ R@ R@ J$ J$ V! ], + . + ]& L$ + R@ <{ ]& J$ R@ . ]& + > ]& R@ R@ 9| J$ ]& R@ R@ + ]& R@ ]^ J$ R@ R@ R@ > F@ (. v@ q@ {* b# %% (. x@ )& ). ). -. &. 5# 5# !. &. 5# B$ E@ V . P G@ P Y T L@ s! Y 2& T 1# Y K@ O@ S @% J @% x ", +"Z, . # + - & = . $ + & . * + > ] & $ # . H= + > . o! - . Q$ + ; > A; & $= %= N$ H= > 2) H= N$ `@ U@ ~ . ^ ~ W@ ~ { | N$ X@ N$ Z! N$ Z3 2 V~ 7- 2 { ~ ) } [ } W@ 2 W@ 2 < 4 $# &# < [{ 9 `3 b} #( $( 4 6 $# b 1 J= &# i i 6- e h j k e :& e 8 ~# n .4 H1 #( #( +4 @4 p n 0 ~# Y$ s> ~# `$ Q{ #4 {[ #( ][ $4 Y$ p m m ^# Z$ s> %4 &4 #( #( *4 w ^# ^# W) +( l( #( m( %( t N P@ O@ I M 3# A =4 #( #( -4 ;4 #( #( >4 Y[ L@ L@ T J G$ L@ U ,4 #( #( 7_ '4 W C$ T 4# E@ X 7# E@ +. .= 5# .. )4 !4 #( #( ~4 ,. 6# ;' +. z$ C@ ;. 6# b: %. ,. 5# 9# ;' 9# b: !. P< x( #( #( {4 J: '& ). u! '= '= /. &% ^^ 3~ w{ f[ 1~ W^ 3~ W^ ]4 ^4 &: #( 7_ /4 (4 _4 :4 <4 #( #( [4 }4 '! I! 8^ 6^ ]} x1 l~ =/ 8^ h{ =/ y{ y{ y{ T: #( #( X< 93 H^ U/ // |4 14 4~ K! K! K! r) V{ V{ w/ d/ F~ F~ V{ V{ V{ V{ d/ W{ d/ e/ >/ t^ t^ Z< 8] o~ &^ i2 P3 I^ 0! 24 ') ,/ ,/ L} ]: m{ m{ 9] 3| ,/ A_ A_ Q] =^ Q] Q] x/ =^ =^ Q] u^ __ u^ =^ 34 34 u^ =^ +[ w^ a^ 44 54 a^ Z{ Z{ 9) 9) J^ F{ !2 J^ F{ Z{ 64 ]~ 3{ s~ [] `^ ^~ ;] ;] 3{ S] x^ [] H{ ~) @{ *+ ~) ~) ~) @; ~) 74 y^ ~) c~ V] t: :! i^ 4{ S( b] u: c~ Z: r{ _~ Y# _~ _~ ] ] :~ ] _~ $[ k' .! s] _~ :~ 84 $[ >] Y] e~ X] i; ,] e~ ]) V3 ]) R! R! .) !^ ^) >~ >~ ^) e= u~ e= >~ >~ e= k! %$ e= e= e= )- .] s{ 6> k! @) v~ s{ @) ;$ l; l+ ;$ l+ U; g+ =, y% ;$ ;$ ;$ ;$ l+ |! y% y% r+ V; t+ s+ s+ u+ u+ m; u+ y% u+ E) A+ B- B+ C+ A+ B% B% A+ B+ B+ C+ C+ C+ A+ C+ C+ C+ D+ >; D% E+ L+ L+ F+ F+ 94 t{ G% /$ f) R+ Q+ V+ Y+ V+ V+ T+ T+ Y+ Z+ Z+ #@ +@ _$ Z+ %@ `; +@ +@ %@ +@ &@ %@ &@ &@ %@ e] E- *@ &@ #@ *@ W, &@ S> '@ >@ *@ (@ 7$ '@ '@ '@ 5$ r= 8$ I- V% 04 E@ N 7 2 > $ > > + S- R@ R@ @ g~ # S- + R@ = + + = + . + . + + # $ - - L$ + # * % > # + S- + J$ Z, + R@ R@ V@ !, R@ J$ + R@ R@ # R x$ <. q@ :. x@ (. (. '& '& *. ;! ;! &. -. ). v{ $% @. @. E@ E@ @. Z $> P F$ T K@ ` ` J T E$ T H P@ S P@ G I$ H$ ", +"]& Q$ & ]& J$ ]& + > * N$ k) + # # ; | & . T@ . > $= > $ H= ; + H= | W@ - ; > - ^& | & & N$ | > N$ |* ; N$ N$ U$ ~ - { X@ X@ 2 | ; N$ | > 1 | &= [ ) < D, { X@ W@ W@ Y@ Y@ { d _ 2* *# [ } a4 b4 #( #( c4 } b j a L= a {# {# 7 e e ~# $# 0 j g 8 8 d4 X} #( #( e4 f4 a' _# r 8 n s> E, i 1, )> #4 {[ #( ][ <2 Y$ w ^# /# #] ^# /# g4 &4 #( #( h4 N m D 2; +( l( #( m( i4 j4 A I I I 8* O@ k4 l4 #( #( m4 n4 5[ #( 7_ I< D$ T H L@ L@ C$ L o4 g} #( #( p4 q4 L@ L@ r4 #. H@ L@ #. 7# X #. ,. s4 #( #( #( t4 =. )= :3 $% &. ;' 6# ;. b: 5; b: v{ ). 6# !. !. 0# u4 v4 #( #( w4 a: '& '& X) x4 D~ w{ ~] ~] ^^ y4 q/ Q/ +: W^ W^ z4 A4 #( #( B4 C4 D4 ]4 E4 F4 1< #( #( G4 H4 I4 M3 6^ J4 =/ s^ 8^ M3 K4 L4 j{ 1{ v/ T: #( #( X< 93 S: -/ A1 N3 14 N] }| r) w/ r) F~ V{ V{ r) C{ V{ 0^ r) M4 >/ >/ t[ d/ `~ e/ t^ N4 &^ O4 o~ Z< `~ Q( I^ L} P4 h/ ]: c3 Q4 R4 S4 m{ ,/ 9] 9~ 9] m{ .[ =] a] r~ Q] =^ .[ =^ =^ u^ 9~ =^ T4 u^ u^ u^ R( o] /1 U4 44 V4 F{ 9) F{ F{ F{ F{ Z{ Z{ J^ F{ Z{ 7< `^ ]~ `^ 3{ s~ ]~ ]~ ^~ S] j/ j/ `^ ~) @{ ~) F] W4 y^ C' @{ F1 @{ @{ @{ `{ q{ y^ Y: y^ Z: r{ t: :/ '^ b] ] ] _~ :~ _~ _~ k' _~ _~ _~ _~ ] ] ] ] e~ X4 $[ Y] N^ e~ i! t] {/ N^ l' .) ]) ,] .) ]) l^ G* >~ L{ ^) i, ^) >~ G* ^) 6> +) ^) e= ^) k! @! |' 5{ s{ l; l; 2' ;$ l; ;$ ;$ l; ;$ ;$ l+ l+ >$ ;$ l+ l; g+ ;$ l+ t+ s+ y% u+ N> y% u+ u+ u+ u+ o+ u+ w+ x+ k, B+ A+ B% A+ C+ B% B+ B+ B+ B+ C+ C+ C+ B+ B+ C+ E+ C+ l= k= /$ X; F+ D+ D+ X3 /$ Q+ Q+ T+ R+ V+ Y+ Z+ Z+ _$ Z+ Z+ _$ _$ W+ @@ _$ Z+ '; @@ @@ #@ #@ &@ *@ &@ %@ *@ %@ *@ !] Q% >@ *@ >@ *@ &@ &@ -@ R% >@ =@ d> R% '@ d> d> T% )@ I- N% _; .= ^# j { }* & & $ = !, + L$ R@ # V@ # & > Q$ ; V@ * & ] U@ . % # & ] ' . > - T@ ]& + > # . + # # !, ]& > # + R@ R@ M$ + 7* = x$ (. s@ u@ B= {. w$ ). {. ). (* =. -. r4 A@ A@ .= >. 5# &. _* V R 4# V H@ J Y C$ L@ L@ Y P@ +% P@ N Q@ M@ Q@ A ", +"* H= & Z, . . R@ $ # ' # + # > ] - ; ]& # V@ ; ; . & & > | ) ~ %= R$ ] ^& U@ ; U$ ; H= ; . N$ - ] & ~ | ~ ; ~ 1 | %= U$ | H= | U$ | ( 4 { ] { { Y@ 2 ] $# d Y@ V$ $# 9 ~ %# Y> [ == 6 Y4 #( #( Z4 `4 : b } a 7 c {# ~# j 6 b ~# ># a V$ :& 5 .5 #( #( {[ J1 7 e ~# e i n^ 1; % ~# |& Y$ #4 {[ #( ][ 61 h h {& D D N N +5 r3 #( #( *4 G z G h 6_ S[ #( m( %| m) K G E K S @5 #5 #( #( $5 %5 e1 &5 #( #( *5 =5 L@ T T I@ L@ 4# -5 ;5 #( #( ._ >5 C$ X @. I@ s! 7# .= . E@ +. ,5 '5 #( #( )5 !5 $% =. 5# z@ >. 7# z@ @. ~( 5; =. +. ;. +. ~5 ;} >. {5 &2 #( #( ]5 b# X) X) /. 1( 0/ D~ ^5 ~] D~ w{ =2 W^ w{ +: F3 /5 w( #( (5 _5 H; _| 2~ x{ :5 <5 w( #( g: [5 t/ 6^ '! 8^ 6^ 6^ 8^ 8^ K4 =/ v/ H^ H^ p[ #( #( ^_ 93 }5 o[ A1 /} }| |5 4~ 15 V: r) F~ K! V{ V{ F~ F~ C{ F~ F~ V{ F~ C{ G~ f( ~! d/ 8] P3 a3 f( z_ a3 h( 25 L} O] o~ m{ L} M} A_ S4 3| ,/ 35 A_ 3| 3| 3| { { Q] Q] Q] u^ u^ u^ =^ =^ 45 T4 6< u^ 6< _/ o] 2{ <] :_ a^ 9) <] Z{ ^' F{ J^ +{ Z{ J^ ;] Z{ J^ ;] ]~ 3{ Y{ ;] 3{ 55 x^ ^~ O~ j/ }_ C' C' C' <^ 65 G{ @{ @{ F1 F] ~) U] @{ @{ h^ b] t: k/ T( y^ 75 b] C/ %, _~ k' _~ `' _~ _~ :~ %, _~ :~ ] ] _~ ] #{ i! _~ <1 >- e~ d] t] 3+ i! .) .) ,] u~ .) ]) u~ e= u~ !^ ^) u~ e= ^) ^) e= e= k! e= e= e= j+ G* 5{ @) v~ u% @) ;$ w% l; l; k! l; l; l; l; l+ G/ =, l+ l+ ;$ n+ l+ =, 1' t+ i= i= '$ t+ s+ t+ j= n/ i= x+ u+ 85 B+ A% E+ k, C+ B+ C+ A+ A+ E+ C+ C+ A+ B+ A+ E+ D+ D+ D% E+ Q+ O+ D+ F+ ^- S~ /$ L+ /$ Q+ V+ V+ Y+ Z+ V+ Y+ Z+ L| _{ _$ W+ +@ _$ :- _$ +@ %@ #@ +@ @@ %@ #@ *@ &@ *@ D- !] $/ &@ 95 *@ *@ =@ I% -@ I% -@ =@ '@ )@ 9$ 0$ (@ >@ -@ N% s= +& E@ p g | ; `@ S$ !, + # + $ ]& !, V@ ] |* S$ > - & 5- . & > | ) ; ^ { - ] O$ Q$ ] & & ^ N$ R$ $= . * ' S$ & 5- & Q$ Q$ ' - # ]& . + R@ S- c{ w$ k> q@ :. {* (. -. d# x@ (* x@ -. 5# .= z@ =. 4- 5# .= z$ B$ H Z S R D$ #. S T H@ L@ H C$ Z J I J A Q@ M@ @% ", +"= > - - Q$ ]& ]& ]& + L$ . * $ . + $ V@ $ $ $= V@ o! . U@ . > P$ ; { ] - > - S$ ] - N$ > > ; & S$ X@ ^ | 2 | - ~ 2 [ 2 ;# 05 X@ 2 N$ | ~ [ ~ 1 { [ ^ ~ { ( / } W@ } d Y@ d a $# 6 7 a5 $( #( I1 b5 d ~# $# 9 a a $# e 8 6 k 0 6 0 c5 ~# d5 I1 #( #( e5 r 0 L= a g ~# c m D p p m f5 {[ #( ][ g5 r K/ p h ^# ^# w h5 }2 #( #( >3 `$ z z ^# +( l( #( m( %( M I A F= i5 P@ j5 m( #( m( k5 Q@ S l5 m5 #( #( g1 n5 L@ Y T E$ P' W o5 W_ #( #( p5 q5 H r5 Y P a* d- C$ )= s5 t5 #( #( #( u5 )= e- ,. T 4- v5 w5 =. ,. x5 9# ,. 9/ 9# =. b: *. 9# y5 7_ #( #( z5 A5 x@ ). 1~ /. a: B5 W^ &% ^^ =2 =2 3~ H! 4] C5 D5 #( #( E5 F5 p^ 7! 5^ G5 s/ H5 I5 #( #( J5 K5 6^ 8^ 8^ 8^ 6^ L5 8^ M5 s^ j{ y{ y{ T: #( #( N5 93 H^ o[ ~1 o[ ^] O5 /} V: K! 0^ r) P5 r) r) F~ C{ F~ t[ F~ V{ d/ V{ G~ t[ t^ Y^ e/ `~ b3 Z< b3 Q5 t^ u[ R5 ]: S5 T5 L} L} ') ,/ ]: A_ c3 A_ .[ 9~ =] U5 =] { 9~ Q] =] 6< Q] __ u^ 6< u^ u^ 6< 6< +[ H| V5 b^ a^ a^ +[ 9) F{ F{ F{ Z{ ;] Z{ Z{ ;] J^ J^ 7< ;] 3{ ;] }_ W5 }_ X5 3{ W5 [_ j/ H{ s~ y^ ~) W4 F] Y5 U] @{ [} b) @{ @{ @{ @{ @{ Z: @{ t: '^ T( T( b] r{ A) k' _~ ] ] :~ _~ _~ _~ :~ ] k' _~ X] s] A^ >] :~ ,] e~ Z5 ,] l' d] #{ ]) ]) u~ u~ ]) ]) R! t] l^ >~ ^) ^) ^) e= ^) e= k; e= e= ^) )- e= &, &, ;$ ;$ l; ;$ |' @) @) /) s{ l; l+ ;$ l; ;$ l+ ;$ |^ l+ ;$ l; h+ s+ t+ y% n' D) '$ s+ y% s+ j= '$ '$ |! E) R, B- B+ B% B% A+ A+ B% D+ A+ D+ C+ C+ E+ C+ E+ C+ D+ ^- E+ O> L+ R+ G+ G+ G+ `5 Y+ /$ Q+ Y+ G% F% F% o2 Z+ V+ Y+ Z+ @@ _$ Z+ p; _$ p; [$ @@ +@ #@ +@ '; #@ %@ #@ *@ ;@ c> $/ *@ D- 7$ >@ ~; '@ >@ e> >@ -@ * >@ )@ w= -@ * Q% T% /@ o@ T `$ 8 ~ | ] & - > - }* . > T@ . > %= | > ; - & H= ! ^ X@ / R$ X@ X@ , ~ : { W@ ~ 2 *# ^ X@ { R$ 2 ; ~ *# ; ) & ; & . & . + > = V@ c t@ x$ w$ k> :. {* ). ,& l> )& &. &. =. V> A@ ). +. B$ 5# ,. @. V E@ ` 2# K@ Y }; Y T P H M P L@ H S #= A 8* I ", +". + & X! = . * + + # > !, & ]& Q$ ; ^& Q$ > # Q$ . S$ > & Q$ + | ) ; O$ ~ ) ~ /& X@ Z! Z! N$ # N$ N$ %= P$ N$ ~ ] ] N$ W@ ~ > 5! U@ ] 7- I= <& $# { ) # Y@ W@ ( 6 /& { | 9 &# 6 d 7 7 7 6 d 6 .6 #( #( +6 @6 5 ,# b 7 *= $# 0 0 #6 $6 %6 7 0 g &6 a| #( #( *6 =6 ~# c h L= 7 _# j s> s> `$ p Z$ M[ -6 #( ][ ;6 D z % o 4* % D %4 }2 #( #( >6 G w b' M 6_ l( #( m( n( c- x A N O ,6 '6 #( #( )6 o} H$ A |# !6 #( #( M_ ~6 T E$ W L >) L@ {6 ]6 #( #( #( ^6 /6 .= W C$ 4) V E@ (6 _6 W_ #( #( :6 <6 z@ A@ $% $% z@ [6 }6 |6 !( ]. %. )& %. %. %. 9# v{ 16 (( #( #( D3 26 %% '= x@ /. ^^ %% J: D~ 4] ^^ =2 ~] w{ Q/ f[ 36 w( #( 46 56 W^ 2~ b* 66 13 D4 '! 76 +_ #( +_ 86 , '! 6^ I! '! I! 8^ =/ M3 j{ y{ H^ T: #( #( X< 93 b/ o[ ~1 ~1 |4 c/ A1 r) F~ r) C1 |5 F~ F~ C{ V{ C{ C{ C{ C{ G~ V{ C{ C{ &^ a3 {1 &^ Z< `~ i2 e/ ): o~ 96 S4 E1 2| ') 0! ,/ A_ ,/ ,/ ,/ A_ 9~ =] =] A_ x/ 9~ =^ =^ =^ =] 9~ u^ =^ __ u^ =^ u^ v[ v[ R( W/ X/ 9) 0] 06 ^' F{ ^' d; J^ 9) F{ Z{ Z{ Z{ J^ 7< 3{ 3{ ]~ C_ 3{ i( 3{ }_ C_ i( j/ K^ S] ~) @{ [_ 74 74 B/ @{ C' @; @{ ~) t: ~) y^ Z: E_ y^ Z: Y/ y^ r{ [^ D' _~ _~ 2_ P} $[ $[ :~ :~ _~ ] ] _~ >] >] e~ e~ m2 -~ N^ e~ d] ]) #{ +! ]) ]) #{ R! ]) t] .) u~ >~ >~ ^) >~ ^) ^) ^) R! e= ,- e= ^) 6> e= >~ @! l; l; ;$ l; l; g+ l+ ;$ ;$ ;$ @) ;$ l+ l+ n+ l+ l+ ;$ -$ l+ n+ =, s+ y% 2' x% y% t+ s+ u+ u+ t+ i= w+ w+ k, B- B% A+ A+ B% E+ A+ E+ D+ A+ A+ D+ E+ G+ E+ B+ D+ E+ D+ D+ Q+ Q+ O> D+ F+ Q^ T+ R+ f) V+ V+ G% G% G% G% Z+ V+ _$ p; p; @@ @@ Z+ _$ _{ +@ @@ #@ +@ &@ +@ #@ &@ m, '; &@ c> e] $@ =@ I% Y& >@ *@ -@ `& 7$ Q% >@ >@ 2$ )@ )@ q= G- (@ -& }; _# F! 5 W@ X@ P$ ) U$ | U@ - > & ; N$ Z! ] ; 2 { ^ ~ /& { | | 2 7- ) } @# ## ) } { 2 4 == < | R$ } /& : ) 2 | ; ^ (& ; ] S$ Q$ & S$ . { a6 j- (. q@ b6 q@ '. (. x@ ). !. A@ b# b# C@ *. z@ B$ E@ G@ )& G@ L@ G! E@ P L@ J E$ A J Y M@ M O N 3# J J A M@ ", +"= * . R$ > + # . & U@ * ^ + > & & T@ }* . S$ ; . . S$ Q$ & T@ ; ; ; ^& V@ ~ 2 4 ^ | | & }* - ; ] ; U@ ; ~ ^ W@ | { [ 2 ] - & & ' /& ## N' d { 1 %# W@ ( 6 a < &# 6 ## c6 } < X$ &# $# &# d6 e6 #( #( f6 g6 h6 i6 a j6 k6 l6 m6 n6 d< o6 7 6 p6 q6 #( #( f6 r6 {# 8 e a L= L= n g l `$ m m L= M[ {[ #( ][ s6 `$ D m p m 4* % t6 }2 #( #( u6 `$ p `$ C v6 S[ #( m( %| M 3# O@ M M w6 #( #( x6 y6 n! 3# b- H z6 A6 #( #( B6 C6 T T T Y T L D6 ;4 #( #( #( E6 F6 G6 H6 I6 J6 K6 L6 7_ #( #( %_ M6 l1 ,. y@ $% 5# N6 O6 #( 7_ q( P6 Q6 R6 S6 )& T6 U6 V6 _< #( #( #( W6 X6 7, Y6 '. J: q/ J: 1~ D~ << /. ~] w{ &% 4] Z6 `6 #( #( 7 w{ W^ +: A} D4 .7 -{ u/ +7 @7 #( #( #7 $7 6) 6^ S{ =/ 8^ 8^ %7 &7 *7 =7 -7 ;7 #( #( >7 ,7 =7 =7 '7 )7 !7 X~ A1 A1 w/ w/ F~ C1 F~ ~7 C{ V{ K! r) C{ C{ `~ C{ d/ t[ >/ W{ Z< &^ f( a3 z_ 8] h( o~ Z< L} A_ S5 0! m{ m{ ,/ m{ m{ ,/ A_ =] .[ Q] 9] ]! =] 9~ Q] =^ =^ 6< u^ =^ __ u^ =^ u^ T4 u^ v[ :] !2 9) +[ I| Z{ Z{ Z{ Z{ Z{ J^ Z{ Z{ J^ 7< C_ J^ e3 C_ 3{ `^ J^ 3{ O! 3{ C_ s~ j/ [] D_ C' ~) D_ [} 74 @{ C' C' J| ~) ~) @{ E_ {7 u: c~ y^ `' @[ q{ S( r{ b] j^ _~ ] j^ P} _~ k' k' ] _~ _~ :~ ] s] s] 84 Z/ _~ V3 d] d] N^ .) {/ ]) ]) l' R! R! t] ]) i, ^) >~ >~ >~ u~ e= e= e= G* u] f+ l^ ,- ^) ^) v~ |' l; k! l; ;$ l; ;$ ;$ ;$ ;$ ;$ n+ l+ ;$ n+ l+ C) l; n+ l+ l+ t+ t+ g= r+ z% t+ t+ t+ x+ x+ t+ u+ w+ i= i= C+ B+ A+ K* A+ A+ A+ A+ A+ C+ C+ E+ E+ D+ E+ E+ G+ E+ n; ]7 ^7 L+ C% W2 W2 |} /7 F% G% Y+ f) V+ f) L| F% L| Z+ Z+ Z+ Z+ W+ W+ Z+ _$ _{ @@ @@ '; &@ #@ +@ +@ *@ &@ &@ >@ > w] I% ~; 4$ *@ >@ S> Q% H- *@ '@ >@ -@ '@ )@ Q% T% (7 T% <. S w o Y@ , ) %= *# *# [ ~ ~ | | ~ { 2 | 2 [ ## ~ ## ( { $# ~ $# [ &# a } a 7 g $# ( a 8 / a } b b 6 } Y@ %# $# } ( ; & Q$ # & ' > { -. (. x$ u$ <. x$ (. {. ^. {. ). (* -. ,& &. !. !. &. -. A@ [; E@ G@ G@ D$ E@ X P H$ H L@ T J 1& A ` A z I K@ I ", +"Q$ $ = . $ + ; . # & ; + - & Q$ # Q$ ] > ]& . # $ > - (& ; & ~ & S$ P$ ; | ] ^ - > | > { (& P$ ; | ; N$ ~ ] U) N$ , V~ - > N$ ) ] 2 ~ d } [ 7 [ 6- | [ a [ V) } } i [ 7 } k < : _7 :7 #( #( #( #( <7 [7 }7 |7 n6 $( #( #( ][ -3 c 6 =6 17 #( #( a| 27 37 37 37 37 27 37 27 37 27 47 l< h Y$ 57 {[ #( ][ 67 n^ _# m @= `$ % Y$ 77 r3 #( #( h4 2; C D 2; +( 87 #( m( %( O@ O@ A O@ 97 g} #( #( 07 %> a7 J P@ H H b7 g} #( #( c7 H H 4# W P T G$ d7 e7 #( #( #( #( H< f7 g7 h7 W_ #( #( #( M_ i7 #. +. .. +. A@ $. ;. O6 #( #( #( #( +_ o_ j7 k7 l7 m7 #( #( #( #( n7 o7 1~ a: >. 9# X) X) %% a: D~ /. /. =% ^^ D~ p7 q7 #( #( r7 s7 +: W^ W^ W^ _| =_ b* A] =_ t7 u7 #( w( v7 I! 6^ [| t/ I! w7 x7 #( #( #( #( #( #( #( #( #( #( #( #( +_ y7 o[ O5 z7 A7 K! B7 F~ 15 P5 V{ t[ d/ d/ d/ d/ V{ V{ C{ d/ &^ W{ G~ G~ [ &^ t^ 8] b3 ]1 /_ G| /_ E1 C7 ,/ L} ,/ m{ 0! A_ m{ y/ /] .[ S3 .[ =] =^ Q] Q] z/ Q] =] Q] =^ u^ u^ u^ Q] v[ u^ :_ w[ )2 +{ !2 D7 J^ Z{ Z{ Z{ Z{ Z{ 9) ]~ 7< F{ Z{ e3 `^ H{ ^~ `^ }_ H{ `^ `^ [} [] j/ K^ i( @{ o{ ~) F1 @{ @{ F1 [} C' @{ y^ y^ ~) (~ :! i^ L^ '^ '^ T( c~ [^ j^ %, ] A) A) _~ ] _~ _~ ] k' _~ ] s] _~ w- e~ ] t] d] {/ g, .) i! +! ]) ]) K> i, t] ]) t] >~ G* G* ^) l^ >~ >~ >~ >~ +) u] %$ ^) k; 6> /) /) l; k! l; g+ $ n+ |' ;$ n+ l+ >$ t+ y% s+ x% s+ s+ o+ N> t+ t+ t+ w+ w+ w+ k, B% B% R, K* A+ K* B+ B+ ]$ C+ E+ D+ E+ E+ E+ E+ D+ ;; D+ F+ k= /$ F+ ^7 `5 C% /$ G% V+ V+ Z+ Z+ p; L| p; _$ Z+ _$ Y+ p; @@ %@ _$ [$ :- p; %@ &@ #@ +@ #@ %@ %@ &@ >@ &@ @^ C! U, >@ >@ &@ I% +^ R% q= > '@ I% N* 1$ Q% I% ~@ ,@ ). J % ~# a ~# ( Y@ 1 1 &# &# Y@ :& : / < $# 8 7 b 6 _ ( &# 7 Q{ j ~# e c K= Q{ X$ !# a e L= 0 V$ *= '# 0 a' ,# b b g *= 7 } } $# *# } ] | ~ ] ~ 4& {* E7 k> x@ (. ~* :. v@ v@ z@ B@ A@ !. A@ ). +. @. *. 5# G@ (* L@ D$ X C$ X L@ @. 2# P Z P@ S S E$ I x N@ Q@ N ", +"# . = = k) Q$ . $ R@ + V@ !, > & . + # & U@ & o! V@ * . + . & > | & ' - . U@ ) - ] & > (& H= U@ ; U$ U$ U$ ' J/ ^ - / X@ ~ 2 { Y@ 2 2 N$ N$ ## : W@ [ ] $# [ 1 4 [ a ( < -# /& } } 8 a ( ># F7 G7 d< #( #( #( #( #( #( #( #( #( #( H[ H7 c O' I7 17 #( #( #( #( #( #( #( #( #( #( #( #( #( J7 _[ c ~# K7 {[ #( ][ L7 Y$ ^# w /# u K/ % l< }2 #( #( >6 /# I ^# t +( S[ #( m( i4 N P@ |# M7 N7 #( #( O7 P7 S P@ J 1& H H Q7 R7 #( #( S7 T7 P@ H |# T E$ L 3; U7 ~3 #( #( #( #( #( #( #( #( #( #( 4: V7 W7 $% .. @. 5# 7# e- +. X7 Y7 +_ #( #( #( #( #( #( #( #( #( #( #( :6 Z7 J: %% '& b# ;} u! |3 0/ J: /. a: ~. =2 ~] 3~ `7 i[ #( w( 8 +: +: +: 3~ W^ .8 5^ =_ {] +8 @8 #8 #( #( ~} $8 6^ 8^ =/ 6^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 o[ }5 b/ N3 V: |5 -8 M4 P5 C{ C{ d/ d/ t[ >/ C{ C{ F~ C{ {1 ;8 Z< >8 b3 ): Q5 ,8 '8 a3 )8 )8 Q4 L} :} I^ L} 0! ,/ m{ ,/ m{ 3| A_ A_ 3| A_ d3 Q] 6< x/ 6< u^ 45 u^ u^ =^ u^ u^ u^ 6< =^ <_ H| 2{ b^ a^ !8 b^ F{ Z{ F{ F{ Z{ F{ Z{ Z{ F{ 9) 9) 3{ ;] [] K^ `^ `^ `^ }_ s~ 3{ ^~ }_ H{ ~) ~) ~) ,^ U] C' G{ ~8 F1 ~) @{ @{ ~) t: u: '^ t: u: b] q{ u: [^ A) _~ _~ _~ _~ _~ ] k' _~ ] ] ] _~ ] _~ -~ 84 ] ]{ e~ e~ e~ .) #{ e~ ,] .) ]) .) u~ .) .) u~ e= >~ l^ >~ L{ >~ ^) >~ ^) u] e= ^) k; k! |' Q, l; /) ;$ ;$ l; n+ ;$ ;$ l; Z] l+ l+ l; ;$ l+ ;$ ;$ l; l+ l; l+ y% y% t+ i= i= t+ s+ i= u+ '$ x+ x+ '$ x+ x+ A+ A+ B% F+ C+ B+ C+ C+ C+ A+ C+ A+ E+ E+ C+ C+ D+ D+ >; F+ F+ /$ S~ W2 G+ {8 Q+ G% F% G% T+ V+ V+ V+ V+ Y+ Y+ Z+ L| _$ +@ @@ Z+ _$ p; #@ &@ &@ #@ #@ <- %@ &@ %@ %@ >@ e] e] %@ &@ %@ Q% r; !; ,~ ]@ 4$ >@ 7$ (@ )@ 95 R% ]@ n, &. }; w /# ~# ~# [& o e *= ~# e 8 g 8 2* e e e b X$ 9- ~# h c h c _# 4* r Z$ t w % m ^# Z$ t ^# `$ o p -) p Y$ 9- o h e V$ c a b i 6 | ## N$ # { $% -& q@ N- u@ B= s@ w@ w$ (. ^. x@ !. 0# &. .= z@ z@ z@ E@ z$ )= 2# .= z$ G@ 2# }; G@ T 4# L }; O J M Q@ z z B #= ", +"+ ; T@ X! # . # = . $ ]& # . > . # $ # # ; > # = ]& . Q$ > ; > ; ^& ] 2 H= # ) X@ ; U$ & & & ; R$ | | ; | ) 2 N$ ^ W@ | | 4 X@ 2 /& [ 6 X@ ( | => / Y@ [ W@ 6- 9 ,# 6 d b d 7 k d 6 ( 8 ]8 ^8 ][ #( #( #( #( #( $( /8 (8 _8 c s> `$ =6 17 #( #( #( #( #( #( #( #( #( #( #( #( #( )[ /2 C; 6 ~[ c} #( ][ q3 h p p 1; b' m G :8 <8 #( #( u6 Y$ w -= 2; [8 }8 #( m( n( A o^ G |8 #( #( '3 18 ~& P@ I K 3& E$ H |# 28 38 #( #( 48 o} L@ L@ r! D$ Q 58 P 68 78 88 #( #( #( #( #( #( 98 t5 08 @. X L) ,. .. e- C@ %. >. $. a8 b8 c8 q1 #( #( #( #( #( #( w( d8 e8 f8 9# 5; q/ %% J: d[ q/ J: 1~ f[ J: 0/ /. /. ^^ g8 h8 #( #( i8 j8 W^ w{ +: W^ W^ +: q^ =_ _4 g{ (4 k8 l[ #( #( >_ t/ 6^ =/ 8^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 A{ w/ !1 P5 |5 C1 -8 B] l8 ;/ V{ d/ w/ W: t[ d/ V{ t[ >8 t[ &^ Z< Z< Z< m8 n8 b3 D{ o8 '8 u[ 25 ]: S4 m{ 3| ,/ ,/ A_ ,/ M} S4 p8 ,/ ,/ ,/ 3| =^ Q] =] .[ d3 =^ 6< q8 34 u^ 6< v[ 34 v[ !8 <_ 9) F{ ^1 <} <] Z{ F{ 9) F{ F{ F{ J^ F{ J^ Z{ Z{ J^ 3{ ;] H{ `^ 3{ 3{ 3{ `^ j/ r8 K^ `^ G{ ~) C' j/ G{ y^ @; G{ F] ~) ~) @{ y^ @{ @{ c~ i^ F] D' T( P! r{ [^ 2_ k' ] ] _~ _~ ] _~ k' k' ] ] ] $[ >] A^ :~ _~ Y] i! i! e~ .) g, e~ .) ]) ]) V3 ]) .) ]) >~ >~ ^) e= e= e= e= ^) >~ G* 6> i, ^) k; k; G* @) C) k; ;$ l; @) @) ;$ ;$ ;$ l; l+ l+ ;$ ;$ h+ ;$ l; ;$ l+ l; ;$ y% t+ s+ u+ t+ t+ s+ u+ N> '$ s+ '$ s+ w+ C+ B+ C+ D+ D+ ]$ C+ A+ y+ C+ m; A+ E+ A+ E+ E+ C+ C+ D+ n2 D+ C% o2 `5 W2 W2 G% G% G% Y+ Y+ V+ V+ Z+ Y+ _$ G% _$ _$ #@ #@ +@ p; '; _$ p; @@ %@ #@ #@ %@ %@ %@ *@ %@ &@ =@ [- *@ *@ *@ Q% I% e> )@ M% =@ '@ *@ >@ >@ I% e> -@ |@ A@ P b- D ,> ^# ^# m h p c{ _# ]# m 9- r ^# `$ D y C C D w `$ z G P@ G I x I Q@ A P@ S P@ P@ Q@ S Q@ P@ N G {& w w D D D p m r h e e a [ : { ,= j@ ~* -& x$ E7 t@ 1. x$ x$ x@ '. x@ A@ B$ ). 5# )& E@ E@ *. G@ V E@ }; @. ,= H $> J P 1# H Y M@ 1# S M I A x ", +"= $ 0' + R@ Z, M$ $ $ $ = o! + + ]& . S$ Q$ .( # N$ > . > $ ; > > = - ^ X@ | ^ ~ > ^& | ] H= N$ ; > - & ] ! ] ^ $# W@ ] / { *# | | N$ ~ 6 D, ## } 6 2 J= W@ [ ( { 3* d } ,# 1 ( :& d => 7 6 6 Y> 6 s8 t8 u8 v8 w8 x8 y8 z8 I7 a e *= a h g A8 B8 C8 B8 D8 E8 D8 F8 E8 G8 G8 E8 B8 H8 I8 L= 6* c p J8 K8 L8 M8 Z$ ,> p p ^# ^# #= % N8 O8 P8 m| N % G G ^# Q8 R8 S8 T8 P@ P@ }# U8 V8 S8 W8 M E$ 3# M z M A z I L X8 Y8 Z8 `8 M I@ P I@ @. E^ V O= y@ G$ 9 .9 +9 @9 O_ #9 $9 %9 O= .. . X .. 4# z$ .= $. .. &. F^ Q' ;' 9[ &9 *9 =9 -9 ;9 >9 ,9 '9 )9 d[ Y6 !9 ~9 {9 a: %% B5 7, X) X) ^^ ^5 ^5 ^^ 5& ~] ~] ]9 ^9 ^9 /9 w{ w{ +: =2 W^ W^ w{ Q/ (9 (9 G5 _9 :9 <9 [9 }9 |9 s/ I! 6^ I! 6^ 19 29 39 }9 29 49 59 69 79 89 99 49 09 99 H} o[ 0^ X~ z7 a9 V: P5 W: l8 b9 c9 V{ d/ W: W: C{ C{ >/ d/ t[ Z< >/ `~ t[ |/ `~ G~ 7] d9 a3 h( 25 e9 S4 f9 g9 p8 ,/ A_ ,/ 35 h9 i9 j9 h9 M} i9 x/ =^ __ d3 x/ u^ =^ 6< __ =^ u^ u^ v[ v[ v[ v[ +[ w^ !2 A/ !2 F{ 9) Z{ 9) 1> F{ Z{ <] F{ Z{ J^ k9 7< `^ K^ [] 3{ i( `^ `^ [] }_ [} H{ ,^ G{ ~) [} F] G{ ~) @{ C' ~) y^ ~) @{ ~) y^ u: :/ B/ `' A) l9 A) [^ 2_ ] _~ k' ] k' ] _~ ] ] ] k' _~ ] :~ -~ w- _~ ] ]) d] e~ ,] N^ d] k^ t] ]) u~ t] ]) ]) ^) l^ !^ ^) ^) e= ^) >~ G* ^) u] +) ^) ,- ,- G* /) /) k; l+ ;$ C) l; ;$ ;$ @) l+ l; l+ |^ l; l+ l+ g+ l+ ;$ ;$ n+ y% y% u+ '$ '$ t+ i= s+ o+ u+ t+ w+ w+ w+ A% B+ R, G+ D+ A+ K* B! m9 E+ C+ C+ E+ I+ I+ D% E+ E+ D+ F+ D+ M+ /$ n9 G+ G+ ^7 N+ /$ Y+ Y+ Y+ V+ Z+ T+ f) p; _$ Y+ W+ '; %@ #@ p; p; %@ +@ +@ #@ &@ %@ &@ #@ &@ %@ <~ *@ +^ <- &@ *@ W, (@ e> (@ >@ >@ G- (@ (@ U, =@ >@ o9 b$ ^. C$ P@ P@ P@ P@ ` L@ S +% 1# H@ G A I S H$ M A S H E$ ` U J C$ E$ P C$ L@ }; 7# V F@ %. +. @. 5# .= .= B$ B$ z@ H 2# H@ 2# H ` a- T D Q@ x p r g e 6 6! L@ j@ ~* -& :. d# q@ ;& (. l> !. &. 0# 5# >. z@ ). x@ .. &. z@ )= E@ V L@ L@ T J H 4# Z P@ ` +% M O@ A S K@ b- I ", +"I/ Q$ . Z, p9 $ = = L$ > # & ^ Z, ]& + # + N$ ) N$ Q$ |* - . ; . Q$ Q$ Q$ U$ Z! ] & ] > }* ] | | X@ ; 2 & ^ 2 N$ ~ Y@ / ; < O$ ~ 1 N$ ( ## ] ~ ( *# d d | ] ) X@ } ## 1 T$ { : a ## ( =# 6 [ $# 9 5 / d } == 6 ,# e d &# e o } 7 Q{ V$ r j i e [& Y@ h Y$ o 8 8 L= n c ~# n s> L= X$ u `$ `$ E, Y$ D Y$ t t t h `$ G w {& ^# ^# A F= ^# G I w `$ G F= P@ /# m) %> I A S Q M O@ 1& 3; S |# a- I T Q@ d- Y 4# P@ 4# L@ P@ L@ V d- q9 @. 7# O= T @. @. r9 r9 r4 R .. +. ,. Q' =. =. =. ,= C@ =. )& B$ $. C@ . >. $. b: 9/ *. !. ,. A@ ;. b: &. 9# 82 Y6 q/ %% %% ;} X) X) a: /. %% 1~ 0/ f[ ^^ ^^ 5] W^ w{ W^ w{ W^ W^ =2 (| .8 F3 F3 s9 t9 u/ u9 I! v9 w9 8^ 8^ '! x9 I! 6^ 8^ =/ 8^ =/ 6^ v/ M3 j{ b/ o[ b/ H^ b/ y9 o[ b/ ~1 K! z9 A9 V: || r) || C1 F~ F~ V{ F~ F~ F~ d/ d/ >/ t[ `~ >/ G~ a3 >/ [ &^ [ ): a3 f( Q4 Q4 R4 )8 B9 3| S4 35 ]: 35 C9 h9 S3 S3 3| S3 x/ =] =^ 3| 9~ x/ x/ u^ =^ =^ v[ 6< v[ v[ 6< 6< D9 I| a^ 9) H| b^ Z{ Z{ ^' F{ ^' Z{ Z{ F{ J^ Z{ F{ J^ 3{ Y{ `^ 3{ `^ `^ `^ }_ C_ W4 j/ K^ <^ @{ ~) y^ ~8 E_ @{ y^ @; @{ @{ ~) P! @{ t: Z: h^ u: k' W] Y: b] b] A) _~ ] k' k' ] $[ ] ] ] :~ _~ _~ _~ _~ g, Y] s] d] e~ i! i! ]) ,] E/ .) .) #{ >~ ]) .) l' u~ G* e= e= e= ^) >~ l^ l^ +) M{ >~ +) /) i, H* P, @) k! l+ *, @) l; l+ k! ;$ l+ ;$ l+ l+ ;$ ;$ ;$ l; ;$ ;$ ;$ A- t+ y% t+ >$ '$ s+ t+ t+ w+ o+ u+ w+ )$ x+ B+ B% A+ C+ C+ C+ E+ D+ C+ C+ E+ E+ E+ D+ D% C+ D+ D+ G+ W2 G+ L+ G% D+ G+ D% (- T+ T+ V+ V+ T+ F% G% Y+ Z+ Y+ L| _$ _$ #@ #@ p; <~ <~ %@ +@ #@ %@ %@ %@ &@ %@ <~ %@ &@ C^ $/ > &@ 1$ R% * '@ >@ >@ l, C! -@ [- >@ Q% > +] m@ b# v@ F, x@ d# t@ ^. (. v@ {. :. s@ ). (. >& :. q@ v@ p, v@ 5& {. (. 9& 9& Q- :. <. v@ 8& o@ x$ q@ m@ E9 o@ {* W* -& q@ x$ 1. o@ :. !. v@ ~. F, A@ b# 6# 5# H S M A 2; 1; D P@ h$ f@ j- p@ u@ F9 :. ^. w$ 9& '& '& A@ V> A@ )& ). .= V =. .. 5# V ,. G$ |; S Y E@ P Y H$ Q@ O@ O 8* N@ A N J ", +"R@ . $ + 0' .( # . ]& > = # > > > # > $ - U@ & ' ^& Q$ > $= ; ; S$ S$ ^ ; . 2 ] T@ S$ ~ | H= ; & H= U@ ] ] { { ; ' [ R$ W@ 2 *# ~ G9 } 2 *# 6 } ) 2 W@ } } 1 4 6 7 ) { D, ,# } ( ~ 2 == 6 J= [ $# ( ~# [& d d 7 6 :& g 9 9 ~# 5 r e i 0 e j g c n ~# 8 0 n L= ~# c ^# 2, p ~# c Y$ ^# |& t Y$ n Y$ q t 4* m /# t /# b' 4* /# m A I w G z w I /# K |{ z A H$ c- O@ :* M |# H$ O@ H J L |# T D$ L@ |# |# C$ J L@ 4# P' 58 H I@ O= L r9 ={ r5 H9 R{ )= X X . !& #. >. =. >. z@ +. e- /3 r4 .= $% $. $. 4) 6# &. A@ ;' v{ Y6 b: b: 9# b: Y6 9# H! '= 0/ J: x4 r/ %% X) J: '. y4 ^^ =2 w{ w{ &% +: w{ F3 F3 +: W^ W^ F3 q^ 5^ W^ , I9 S{ 6^ 6^ _9 :9 t/ 8^ 6^ 6^ 6^ =/ =/ =/ L4 J9 K9 j{ j{ o[ j{ H^ b/ }5 b/ o[ X~ B7 z9 |4 /} V{ r) V{ F~ C{ C{ F~ t[ V{ C{ d/ C{ d/ >/ C{ >/ `~ Z< Z< Z< Q5 a3 h( L9 Q5 P3 Q4 L} u[ T5 c3 Q4 M9 c3 M} A_ 3| d3 S3 M} S3 T3 Q] Q] z/ x/ =^ =^ 6< 6< 6< v[ v[ v[ u^ 6< v[ u^ <} 54 Z{ I| N9 J^ F{ F{ Z{ F{ Z{ Z{ F{ ;] F{ C_ 7< W5 O9 3{ `^ 3{ O! ]~ `^ 7< [] j/ K^ [} C' @{ ~) F1 <^ @{ @{ ~) y^ @{ @{ y^ y^ @{ Z: y^ k/ k' |_ Y/ [^ C/ j^ k' _~ ] _~ _~ k' %, ] _~ ] k' _~ :~ ] i! d] Y] X4 i! e~ e~ N^ +! e~ N^ t] ]) >~ R! ]) ]) l^ ^) e= >~ e= G* e= >~ G* G* ,- G* e= k; e= G* |' l; @) 6> ;$ @) l; ;$ l+ ;$ l+ ;$ l+ ;$ n+ l+ l; l; l+ ;$ f= >$ t+ y% '$ l+ >$ t+ s+ '$ u+ s+ w+ u+ w+ x+ z+ A+ w~ C+ A+ A+ E+ E+ F+ D+ D+ E+ D+ F+ C+ D+ E+ D+ F+ G+ G+ G% G% {8 W2 P9 n9 V+ V+ Y+ V+ Y+ V+ F% f) f) Y+ Z+ Y+ &@ +@ @@ @@ p; p; &@ p; &@ %@ +@ &@ %@ &@ +@ &@ &@ %@ > E- *@ >@ ,~ q= '@ >@ > *@ *@ >@ '@ !; *@ Z& '~ & i@ Q9 *& w; (; T* 0$ c$ f$ @* |@ R9 S9 T9 r' l$ w; -* w; ;* 7@ 9@ w; 7@ +] 4@ S9 g$ 0$ 4@ n, R* ,@ U9 V9 w= 0$ W9 {; @* L- f$ v; 4@ 8@ X% 7@ y= S9 r' f@ )* *& q@ 9& &. F, z@ #. $% 6@ n$ l@ l@ {* -& (. u@ '. ). ^. &. e- &. ,= *. .= [, 5# @. .. ,= C$ E@ E@ ` M@ |# P D$ C$ Y ` K@ P@ S K@ M A +% ", +"$ Q$ + + = !, > . $ Q$ V@ # ]& T@ & Q$ H= ^ > H= U@ . > ^& N$ # 5_ N$ P$ Q$ - ] ; T- & | . U@ ~ < N$ S$ N$ N$ ; U@ & ~ N$ ~ | ! 4 | N$ N$ < 2 { 2 > ) ~ W@ ) ) { 4 1 { *# 7 [ ) Y@ J] d == { $# } i a &# i 6 k 6- 7 8 a 6 a X$ V$ 8 c a $# 6 ># L= g g D o n ~# j ~# n h a h Z$ n^ h Y$ n ,# Y$ ;= m 2, n p o 1; D D /# z /# ^# w {& n! C #= z x q w N D |# B M H$ E$ T E$ A I E P@ 1& M Y h] E$ O L L 3) d- s! O= J V }; C$ C$ P P' I@ 7# H 7# H@ J d- C$ . r5 X9 +. +. Y9 @. =. =. $. ;' ,. $. )& =. >. /3 ;. :3 Z9 5; ;. Y6 b: 82 5; b: ;} x@ '& !. A5 `9 X) X) '. X) f[ 0/ L] ~] ~] ~] 3~ W^ +: W^ +: w{ W^ W^ F3 +: +: 66 0 .0 C} +0 @0 6^ #0 .0 >2 T2 8^ T2 6^ =/ T2 $0 %0 K4 K9 b/ y9 &0 S: o[ }5 }5 b/ *0 H^ A9 P5 -8 =0 V: V: -0 15 F| C{ V{ F~ V{ >/ C{ G~ W{ V{ d/ &^ `~ &^ f( f( [ &^ Q( b3 a3 Q5 ;0 ]: L} )8 ,/ m{ 3| 35 R4 ,/ S4 d3 3| i9 35 >0 x/ =^ =^ .[ d3 __ U3 v[ 6< 45 =^ v[ 6< v[ v[ u^ H| +[ b^ A/ +[ a^ J^ F{ Z{ )2 !2 J^ 7< F{ 7< Z{ F{ J^ 3{ 3{ W5 }_ i( 3{ `^ D] 65 j/ K^ <^ ~) @{ C' @{ G{ ~) ~) @{ ~) ~) @{ :/ @{ P! Q) i^ t: Y/ #[ ,0 @[ Z: 2_ _~ _~ k' ] g3 ] _~ ] k' :~ :~ %, _~ _~ '0 D/ w- _~ e~ d] e~ #{ N^ e~ ,] ]) ]) G* ^) t] u~ >~ e= >~ >~ >~ ;~ +) k; >~ e= k! k; ^) %$ %$ ^) f+ /) |' ,- g+ /) ;$ |' l+ l+ g+ ;$ l+ ;$ n+ C) >$ n+ l+ ;$ h+ l; |! t+ y% r+ h+ -; t+ s+ w+ w+ '$ w+ u+ x+ y+ A+ C+ E+ y+ A+ A+ C+ E+ C+ E+ D+ D+ D+ E+ G+ E+ E+ D+ >; ]7 Q+ G% O> F+ F% 94 S~ U& Y+ Z+ F% Y+ f) ,; _{ Y+ _$ Z+ _$ p; p; #@ p; p; p; #@ %@ %@ +@ %@ %@ ~; *@ *@ *@ &@ $@ $/ [- &@ *@ K% *@ 1$ > V, >@ >@ *@ > K% +^ :@ )0 !0 ~0 {0 ]0 ^0 /0 (0 _0 :0 <0 [0 }0 |0 10 20 30 40 50 60 70 80 90 00 a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0 n0 o0 G_ Z; p0 q0 r0 s0 t0 u0 S> $@ > G- q= w= 5$ 4' V* z= v0 w0 7@ {* +] h$ =* l@ m@ <. x$ w$ ^. v@ :. ^. %. x@ 5# &. . )& A@ .= ;. 5# z$ E@ C$ T P@ L@ Y H$ H$ M H J O P@ P@ I A M ", +"* * . ' L$ $ + & $ 0' = X! ]& # $ # = Q$ . H= + & ' N$ Q$ H= o! | H= [* - ~ =' ~ . & ] ~ ; ) 4 ~ ~ ; ] ] > & P$ U@ [ W@ ~ H= W@ { ## ; ;# { ] 8- < < [ { 6 ## 1 ) $# ># x0 6 Y@ } } 1 c 6 9 6 i 0 2* 6 [ 0 k 6! n L= a >> ~# 7 0 3* Y> a h 0 e r e 8 c E, n K= r Y$ c n p % }& L= o h r m ^# Y$ r Y$ c h h Z$ 0- m /# D `$ w /# `$ m x )> z z z :# O@ K N M P@ M E$ w A |# L@ w |# M d- 3) E$ I@ C$ Y I@ T J T U 3; L@ C$ E@ T G$ G$ d- H X O= y@ 4# y0 @. n) +. $% $% E@ +. $. /3 $% z@ . ;' L) A@ z0 )& A0 Y6 v{ $. :3 b: Y6 b: Y6 Y6 H! x@ '= J: x4 %% J: J: B0 << ~] << 4] D~ =2 W^ w{ w{ w{ w{ 3~ w{ 3~ W^ +: W^ k~ +8 .8 C0 D0 6^ 6^ E0 F0 G0 J4 =/ H0 [| 6^ =/ 4< =/ =/ S: }5 o[ H^ H^ }5 }5 }5 o[ b/ }5 A9 }5 ~1 a9 I0 l8 P5 r) B7 C{ C{ d/ C{ d/ d/ C{ >/ C{ d/ C{ Z< i2 H~ Z< Q5 a3 J0 Q5 n8 Q4 E1 K0 A_ ]: L0 ]: m{ ,/ m{ ,/ A_ h9 35 M} d3 ,/ S3 =] Q] 3| A_ 45 u^ 6< v[ 6< 6< v[ u^ 6< v[ v[ D9 44 D7 )2 H| N9 /1 9) F{ /1 Z{ Z{ 7< J^ 7< J^ J^ C_ 3{ 3{ ^~ `^ }_ 3{ 3{ s~ K^ }_ S] S] <^ !/ @; @{ @{ @{ U] @{ ~) @{ @{ y^ t: @{ y^ r{ V] y^ r{ M0 y^ Z: N0 D' %, g3 ] ] :~ _~ _~ k' _~ _~ ] ] ] O0 X] -~ ] ]{ t] d] ,] l' i! g, t] .) t] ]) t] ]) R! ^) ^) u~ >~ i, u~ e= >~ ^) e= k! G* e= G* +) u~ }' }' k; l+ ;$ ;$ ;$ ;$ P^ @) Z] l+ l+ l+ h+ t+ n+ l+ l+ l+ ;$ =, t+ s+ s+ r+ u+ t+ t+ s+ t+ t+ s+ u+ !$ w+ w+ x+ A+ K* C+ E+ E+ C+ E+ D+ E+ F+ E+ E+ F+ D+ F+ F+ |} |} F+ k= G% G+ F+ G+ C% G% F% F% Z+ Y+ F% F% f) Z+ V+ Z+ Z+ _$ #@ +@ d^ [$ '; '; %@ %@ #@ &@ &@ #@ %@ %@ %@ *@ Q% $/ 1$ V, >@ 1$ !; !; p= >@ >@ *@ &@ %@ P0 Q0 R0 S0 T0 U0 V0 W0 X0 Y0 Z0 `0 a .a +a T0 @a .a a #a $a %a &a Z0 *a =a -a ;a >a ,a 'a )a !a ~a {a ]a ^a /a (a _a :a . > !, . S$ # + & N$ T@ ]& | - $ . > $ # H= ; ; ] P$ N$ > V@ | ~ | 2 ] | { > ^& ; 2 ^ W@ ~ ; U$ ## ( X@ 1 ) *# 2] N$ . X@ ## ~ ) == d W@ ( W@ } /& 1 } 7 q> } ( } b 6- $# i 0 &# $# } 7 ># ,# e a 6! d W$ r 0- 7 a L= 9 } e ~# e c r n Q{ g ~# c h ~# Y$ p n ~# p ^# m % p n D % n 0- h ^# `$ F= m m Y$ 4* 1; /# M= A m K M O@ F= ~& O@ I S M J z E$ E$ K M M 8* M A |# 3& J d- T C$ U ia L@ 4; C$ 3) O= O= G@ W ={ C$ T 7# W y0 ja r5 y@ 8# F^ G; C@ =. 8# ;' =. $% ,= =. Q' =. ;. :3 ;' /3 9/ Z9 Z9 9# %. b: 9# 9# Y6 b: Y6 '= %% %% X) X) r/ ^5 f[ ^5 ^^ ~] =2 ^^ =2 +: w{ W^ w{ W^ F3 ]4 13 +: F3 (4 +8 =_ ka la S{ 6^ >2 +0 8^ 8^ I! $0 ma I! 6^ =/ L4 L4 %0 j{ }5 o[ }5 na H^ b/ b/ *0 oa pa |4 }| -8 |5 -0 P5 V{ I0 l8 M4 d/ F~ C{ >/ >/ >/ C{ Z< t[ Z< Z< Z< Z< a3 &^ Z< Q5 Q5 Z< ): P3 R4 m{ 0! 0! m{ ,/ A_ ,/ 3| A_ S3 3| ,/ .[ S3 d3 =^ =^ d3 __ Q] =^ =^ 6< u^ =^ =^ u^ R( R( v[ !8 54 a^ qa I| /1 Z{ Z{ J^ J^ F{ F{ 7< J^ 7< C_ 7< `^ ]~ O! `^ `^ `^ 3{ }_ f3 W5 K^ _1 K^ @{ ~) F] @{ @{ (~ @{ @{ ~) ~) y^ y^ @{ @{ :/ '^ B/ @[ @[ y^ t: b] b] :~ ] ] _~ k' ] ] ] k' |_ ] _~ ] ] :~ i! >] _~ ]) e~ d] < k^ e~ e~ ]) ]) t] ]) t] ]) i, ^) ^) ^) ^) ^) ^) >~ e= G* ,- e= e= k; ,- e= ra .] Q, f= l; ;$ ;$ g+ ;$ l+ /) ;$ l; l+ ;$ r+ l+ m+ l+ ;$ n+ l+ r+ t+ s+ '$ w+ '$ '$ >$ s+ x+ '$ '$ x+ x+ v+ x+ A+ A+ A+ A+ E+ E+ C+ A+ A+ C+ E+ G+ G+ D+ D+ F+ >; |} sa k= /$ o2 F+ W2 W2 o2 G% C% f) F% V+ p; L| f) _$ _$ _$ #@ #@ +@ #@ +@ p; %@ %@ #@ &@ %@ %@ *@ %@ &@ &@ &@ 1] E- 1] &@ q' U, *@ D- >@ >@ &@ *@ &@ %@ @@ ta ua va wa xa ya ya za wa Aa Ba Ca Da Ea Fa Ga Ha Ia Ja Ia Ka Ba La Ka Ma Ba Ma Ga Na Na Ha La Ha Oa Ha Pa Qa Qa Ha Ra Sa Ta Ua Va Va Wa Fa Aa Xa Ya Za `a b .b +b #a @b #b $b %b &b *b =b -b 4@ e@ *& u@ a. u@ h# t@ v{ C@ A@ x@ 5# A@ 5# ). &. @. X )= F@ !> 5# T X L@ H J Y J@ Z P@ S J Q@ N= N |; A ", +"L$ J$ ;b [* ]& R@ L$ + - # R@ # ]& ]& 1) [* Q$ !, & V@ + ] . . U@ }* N$ k) ' . & U@ ; Q$ > S$ T- | ; ) 2 N$ ## > X@ N$ X@ .# %= ~ - ! ^ | | / { | *# , ^ ;# /& $# $# { W@ { W@ 1 } { [ { ( / { } $# } < < ( Y> d 3* 0 a a a < J] e &# ~# e a ,# a ~# $# b d 8 g h F! e V- 6 o d _# ;= 2, r |& L= `$ `$ h % Y$ b' F 4* 4* m t ^# Z$ 1; ^# G w w y /# w I ^# t [# w I A I H$ C z I H |# M P@ M 8* J U E$ I@ K) D$ T J C, E$ 4; T G$ L C$ >) r9 O= G$ I@ X R X a* a* . r4 @. r9 G; ,. $% +. )= +. A@ /3 /3 :3 y@ +. ;' ,. &. =. ~( &. ;. 9# Y6 >b 9# b: b: !9 b# J: x@ 0/ J: a: x4 w{ 1~ r/ ^^ a: =2 D~ ~] w{ w{ w{ F3 W^ F3 +: F3 +: +: ,b +8 'b )b C0 'b L5 I4 !b =/ _| =/ ~b =/ 6^ L4 M3 &0 L4 M3 L4 b/ o[ b/ %0 o[ b/ }5 }5 a9 c/ U/ B1 |5 P5 M4 l8 V{ V: F~ C{ d/ d/ C{ t[ d/ d/ `~ >/ >/ Z< &^ Z< &^ I~ z_ Z< n8 n8 Z< ): 2| g9 {b g9 m{ m{ ,/ A_ A_ m{ ,/ y/ 9~ =] .[ d3 3| =] =^ .[ S3 =^ U3 z/ 6< 6< v[ u^ v[ 34 R( 6< H| I| <] a^ 54 )2 Z{ Z{ 7< J^ J^ J^ 7< F{ Z{ Z{ J^ 7< }_ 3{ K^ `^ 3{ }_ 3{ j/ O! `^ j/ [_ @{ y^ J| (~ G{ M^ @; G{ W4 @{ @{ ~) @{ t: t: Z: @{ y^ b] y^ y^ C/ [^ A) ] ] j^ 2_ ] ] ] ] ] ] _~ _~ P} ] )^ X] _~ -~ e~ d] N^ .) #{ d] .) .) ]) k^ t] .) .) e= ^) e= e= e= ^) e= >~ e= M{ e= e= M{ ;$ +) H* S) |^ k; l+ l; l; l+ ;$ l; C) l+ n+ ;$ l; A- l+ ;$ h+ ;$ h+ l+ l+ s+ t+ '$ '$ 8> '$ o+ s+ w+ t+ s+ u+ !$ u+ !$ A+ C+ C+ C+ B! C+ C+ y+ E+ C+ C+ F+ E+ F+ D+ D+ F+ i3 F+ Q+ /$ G% F% ^7 W2 C% F% f) V+ f) T+ Y+ F% _$ p; V+ Z+ +@ R> d^ +@ +@ '; p; '; #@ %@ %@ &@ #@ #@ I% e] >@ 4$ >@ E- E- Q% >@ *@ &@ '@ *@ >@ *@ %@ @@ `; ]b ^b /b (b _b Ia :b .. 5# A@ W> &. 5# $% .= .= 7# V P z$ Z H P D$ H O@ P@ Q@ P@ I I N ~& I ", +"L$ 0' Z, Z, + . ]& L$ (& ' o! . ; & $ > T@ T@ V@ # & > # U@ ] N$ Q$ | H= $ ; ' S$ - > ; | ^ & | ) | N$ | ] S$ P$ | < ;# | ~ ) %= N$ 4 ; ~ I= ( # ~ 2 [ ) ( 6- / < Y@ [ 5 6 7 ) 7 ,# < ) 9 7 ~# &# 0 a '# ( < ~# $# 6 q> 6 e 6 6 ,# 0 7 b L= e 3] c n p {# Y$ 0 2, n h c n g h 0 n^ h h p C; E, Y$ ^# h 5* p `$ N {& b' m ,> #] w D 1; G w 2; w w D Q@ P@ O@ I E$ O@ P@ P@ H M J z P@ M H M@ E$ Q H$ S J J L@ M L@ O= P G$ r! P r9 X @. T 58 . y@ L X +. . +. @. .. 5# W e- ,. +. +. [, R' 6# ;. ;. $% ~( ~( v{ z0 <3 zb t( 6# 5; b# 9# d[ 7, 7, J: b# J: '. X) 7, Ab 7, 1~ y4 W^ f[ =2 W^ w{ 13 +: F3 F3 +: 0 Bb Bb +: F3 Cb Db Eb :5 6^ +0 @0 6^ 8^ 8^ K4 M3 E0 K4 8^ M3 L4 M3 H^ o[ b/ K9 ,2 b/ b/ }5 }5 -8 -8 B1 14 -8 B] F~ F~ W: O3 W: t[ W{ V{ d/ d/ d/ C{ &^ >/ t[ >/ Z< Q5 a3 a3 Q5 a3 Z< Fb a3 f9 {b {b ,/ S5 E1 ,/ S4 A_ ,/ Gb C9 y/ Hb 3| h9 3| .[ x/ __ T3 Q] =^ v[ v[ 34 =^ u^ v[ q8 34 v[ v[ H| 54 V4 +{ I| <_ Z{ ;] Z{ F{ J^ Z{ C_ Z{ C_ 7< C_ 7< 3{ ;] 7< 3{ [] 3{ `^ `^ 3{ T] [_ @{ ~) @{ !/ y^ y^ @{ ~) @{ ~) t: y^ @{ y^ h^ :/ i^ @{ `' C/ :/ :/ [^ t: 2_ _~ j^ k' 2_ _~ _~ 2_ #[ :~ ] k' ] #[ Y] e~ ] X] A^ e~ i! ,] t] d] ]) .) ,] ,] u~ ]) ]) R! ;~ ^) e= e= e= e= G* G* G* ;$ ,- e= G* G* G* .] l+ k! j+ g+ P, ;$ ;$ l+ l+ n+ l+ ;$ ;$ f= l+ n+ h+ l+ ;$ ;$ l+ r+ s+ i= r+ M& t+ s+ s+ '$ s+ x+ '$ !$ !$ '$ H/ B+ A+ C+ E+ E+ F+ E+ E+ C+ D+ E+ E+ W3 C+ D+ D+ Ib W2 F+ /$ /$ G% F% ^7 94 V+ Y+ Z+ Y+ Y+ Y+ V+ f) _$ '; V& _$ :- Jb :- #@ '; p; #@ #@ %@ *@ &@ &@ &@ &@ &@ %@ >@ #@ *@ I% W, >@ I% $@ I% r; *@ #@ #@ +@ %) Kb Lb Mb Aa Ba Nb Ob Pb Qb pb Rb Sb Tb Ub Vb 8b Wb 3b 3b Xb 6b bb pb Tb xa Yb Zb `b c |b |b }b 7b 7b pb pb }b 1b .c +c @c lb #c $c %c %c %c %c lb &c +c db *c =c -c ;c >c ,c 'c `a )c !c ~c .@ T% l$ m$ k@ =& w$ x$ u@ O- ^. ). &. e- &. $% 6# 3^ .= 5# 5# 5# C$ +. D$ Q D$ D$ 2# H 1# L@ H 2& 8* A b- Y G S ", +"$ ; > * ]& . T@ $ ]& ; Q$ = > o! = > + + > ; # Q$ !, ]& * U@ & . & {c . . & ~ N$ ^ ; ^& ^ $ & N$ & S$ /& 2 ' S$ { { | & | ^& ~ | ) { ~ *# | ) 7- ^ [ W@ 2 $# < [ 4 ) Y@ a 6- 9 ,# < ( e 6 7 $# d e i a &# ( 8 a q> 6 7 7 7 ~# k 8 b N' 8 ~# k ,# Y$ c [& L= h `$ Y$ ]c `$ L= n p n Y$ h `$ Q{ ~# D p m % Y$ 4* ^# :# t F= ^# D D ^# C z ^# M z D w G O@ N z P@ Q@ b' M@ M 3& O@ ` O@ z I |# P@ J z K@ L L 2& P' I@ J P 4# G@ L E$ H@ Q' r9 !> y@ @. G; @. Q' E@ ,. +. y0 #. L) L) )= )= $. =. A@ =. 6# >. 6# >. 4- V^ =. ^c A@ 9# Y6 b: 7, 7, Y6 Y6 >b d[ u! L] u! 1~ << r/ f[ X) =2 f[ W^ f[ B0 W^ W^ *_ W^ +: +: Bb F3 W^ +: W^ 13 v9 t9 /c (c I! _c !b :c / t[ C{ Z< d/ }c `~ `~ a3 a3 a3 &^ Q5 Q5 t^ ,8 |c Q5 Q4 S4 f9 3| A_ m{ S4 L} 3| L0 35 35 d3 h9 3| d3 x/ __ __ Q] =^ u^ u^ 6< u^ 6< u^ v[ v[ v[ v[ !8 !8 <] w^ 44 X/ 9) Z{ ^' ^' Z{ 7< J^ /1 J^ J^ 7< C_ `^ `^ 3{ `^ 1c i( `^ }_ 64 i( D_ C' @{ @{ C' y^ @{ ~) @{ ~) @{ @{ y^ @{ y^ B/ y^ '^ @{ L^ c~ 2c S( b] b] j^ :~ _~ _~ _~ _~ :~ _~ :~ _~ ] _~ ] :~ ]{ i! D/ Y] N^ i! i! ]) t] i! < ]) N^ t] i, .) .) R! G* ^) ^) e= >~ %$ G* ^) ^) k; k! ^) ^) e= G* U; ;$ l; l; g+ g+ 6> l; @) ;$ l+ n+ l+ ;$ n+ l+ l+ h+ l+ l+ l; l+ >$ '$ '$ >$ N& i= s+ )$ '$ w+ !$ '$ x+ w+ !$ A% C+ D+ E+ C+ D+ A+ D+ F+ E+ C+ E+ D+ D+ D+ F+ G+ F+ 3c m9 G+ Q+ o2 4c ^7 5c Z+ Y+ Z+ Z+ Z+ Y+ _$ L| Z+ _$ _$ T+ p; [$ W+ &@ @@ p; %@ &@ &@ &@ %@ &@ *@ %@ }$ *@ &@ W, $@ E- >@ *@ l, > 2$ *@ &@ %@ %@ @@ U+ 6c 7c 8c Wa 9c 0c ac bc cc dc ec pb fc `b gc Tb }b Wb 6b hc ic jc `b kc lc mc nc oc mc mc pc pc gc Vb |b |b 1b .c qc rc sc tc %c %c %c %c %c %c %c lb uc vc qb ya wc xc yc zc Ac Bc Cc Dc Ec Fc w= l$ o$ m@ :; `* s@ (. s@ (. F, %. ^. z@ 5# G@ z@ ;. i~ i~ E@ G@ R D$ Y H@ 1# Y M@ Q@ ` S P@ A A I z I P@ ", +". = V@ * ;b = = G= . & Gc - Q$ Z, ]& V@ o! ]& + V@ Q$ ]& > $ ]& . + . N$ & . Q$ S$ *' ; Q$ U@ - ! ~ |* - - Z! ] *# . N$ { ~ ~ & | ) ( ] Y@ X@ ( /& /& d 1 ; ) D, Y@ d 1 $# d d N' 9 } ( $# [ } &# ## a' $# &# $# D, 7 L= [& 0 b 9 V$ a 6 a ,# a e d c g ~# a ~# L= p c L= c s> h 0- Y$ L= Y$ Y$ y2 0 ,> z: c -) n n }& Y$ D 4* D D _# 4* w 2; /# F m 1; 4* 2; w w G I A I M D 8* J I E$ M |# G E$ L@ 3; J U J T Y G$ E$ 3) J I@ 4# V 4# J T H 7# G$ !> @. X z$ W ={ r4 #. ,. E@ 6# E@ C@ .= /3 . C@ W- 5# =. ;' Hc z@ 9# =. A0 t( Y6 Y6 Ic 9# b: 7, b: b: Y6 d[ '& << u! {9 << 0/ a: x4 X) q/ << f[ ~] B0 F3 +: W^ F3 ,b Jc F3 13 F3 F3 W^ #0 D0 Kc )b .0 8^ Lc Mc 8^ 8^ =/ M3 Nc t/ =/ %^ =/ L4 Oc j{ o[ /} M3 o[ ,2 A9 b/ o[ a9 z7 V: -8 a9 Pc Qc M4 M4 I0 Qc F| d/ d/ d/ t[ >/ >/ G~ d/ t[ G~ Z< Z< a3 o8 a3 Q5 P3 d9 Q5 a3 Q5 ]: o8 g9 ]: S4 h9 Rc M} A_ M} d3 A_ M9 A_ h9 x/ =^ d3 x/ u^ u^ _/ u^ =^ =^ v[ 6< v[ 6< 34 <_ <} Sc F{ Tc D7 9) F{ F{ 7< 7< J^ J^ F{ 7< F{ Z{ C_ J^ }_ 3{ `^ `^ T] 1c }_ i( `^ S] ~) ~) @{ C' ~) @{ ~) @{ @{ @{ y^ C' ~) i^ @{ y^ y^ :/ @{ :/ b] 2c Z: C/ b] _~ ] 2_ j^ _~ _~ _~ ] $[ _~ :~ ] _~ s] e~ e~ s] >] i! e~ e~ .) >- >- t] t] t] >~ K> l' ]) >~ e= ^) ^) ^) ^) ^) ^) ^) >~ k; e= e= *; G* &, ;$ /) s{ k! ;$ |' l+ ;$ l+ l+ l+ l+ ;$ n+ ;$ n+ n+ l+ l+ ;$ h+ n' t+ t+ |! r+ s+ y% t+ u+ u+ )$ '$ w+ x+ x+ '$ B+ E+ E+ A+ E+ E+ E+ D+ E+ E+ D+ E+ F+ n2 D+ D+ F+ F+ G+ Uc W2 G% G+ D+ `5 Z+ F% Y+ Z+ V+ Z+ _$ F% L| _{ Z+ _$ _{ +@ #@ +@ _$ '; +@ %@ #@ %@ %@ &@ %@ *@ }$ %@ *@ 4$ V, E- +^ *@ p= >@ -@ *@ &@ *@ %@ +@ ($ Vc Wc Xc Yc Zc `c d .d +d @d #d $d %d `c c Ob &d ab 7b *d *d d `b |b Sb ,d 'd )d sc gb %c !d %c ~d gb %c %c lb {d db ]d ^d /d (d _d :d T@ L$ + + & o! & ]& # V@ . S$ H= ; | ] ; & . ; T@ Q$ 2 ; & ~ - & ~ | ) 2 ] H= &= N$ /& }* 7- 2 2 X@ | 1 ~ ~ | ) N$ { 1 1 2 | ] ) ) | ) { 4 [ ,# $# ( [ b 6 6 2d *# : o 1 7 e $# 7 6! 7 h ( 6- a d ~# a 7 7 a a ~# c 6 a d 0 c a e ~# g e e K= !# % ~# % h p n s> ^# o c ^# p m q `$ w `$ % z m `$ `$ {& `$ N -= :# m % |# C N n! F= ~& o^ I o^ E$ M M P@ N E$ I@ J L t> L@ T M Y |# G$ 0* U L@ d- L@ H E@ 58 3d V 4d +. 5d r4 r9 5d 6# 5# =. +. ,. ,. R' +. e- R' A@ R' :3 v{ =. ;' :3 =. =. b: Y6 6d 9/ b: 5; 9# b: b: X) J: 7d b: H! '= 1( ^5 f[ X) J: f[ Jc ~] W^ +: w{ w{ +: F3 13 w{ *_ W^ F3 +: D4 _9 Q< 8d :4 6^ E0 t/ K4 =/ M3 8^ K4 J9 M3 j{ 9d L4 &0 j{ H^ 0d y9 H^ o[ a9 }5 }5 }5 !1 a9 }5 ad A9 P5 M4 F~ b9 bd cd d/ d/ C{ C{ d/ >/ `~ t[ d/ t[ Z< b3 ): dd &^ Z< Q5 ;0 ed P3 )8 {b M} P3 S4 m{ ,/ M9 fd h9 h9 S3 gd ^: S3 T3 d3 =^ d3 T3 i/ hd <_ u^ v[ 45 45 6< 6< 6< v[ !8 44 +[ D7 ^1 44 /1 !2 J^ 7< 7< F{ 7< 7< 7< J^ 7< J^ 7< }_ `^ K^ 3{ K^ 3{ W5 `^ `^ `^ i( }_ G{ @{ f3 U] ~) y^ y^ @{ ~8 y^ @{ @{ y^ y^ @{ c~ B/ u: S( t: :/ [^ id ] k' ] 2_ P} k' ] ] k' k' ] :~ ] _~ Y] 6+ >- 4/ i! e~ #{ -~ t] e~ e~ N^ ]) .) ^) ]) .) ^) ^) !^ ^) ^) G* u~ k; ^) e= +) 6> ^) v~ k! e= e= g+ l; j+ 6> l; l; l+ l+ l+ ;$ l+ l+ l+ ;$ =, l+ l+ n+ h+ h+ M& x% t+ '$ o+ h+ s+ s+ u+ i= o+ o+ )$ x+ !$ x+ y+ C+ w+ C+ E+ D+ E+ D+ D+ D+ E+ C+ F+ E+ F+ F+ D+ F+ F+ ^- o2 T& F% C% W2 W2 o2 V+ Z+ _$ _$ V+ f) F% _$ p; _{ Z+ p; +@ <~ %@ p; +@ p; :- &@ &@ %@ %@ %@ %@ %@ &@ *@ &@ &@ U, &@ &@ *@ *@ >@ >@ ~; #@ Z+ Vc O> jd kd ld 'a Zb md nd od pd #d qd rd sd td ud ab ic sb *d {* u@ x$ 7; !. !. ). -. !. 4& *. &. . A@ A@ +. @. 5# 1# &' Ld P G@ X J s! Q@ M |; J S S Q@ G ", +"+ = $ $ ; . > . ]& R@ . = > ]& X! o! ; > - - $ ; H= > ^ *' U@ ^ $ . T@ H= Z! # & ; Q$ %= ] 5- ^ ] | | ; | | & N$ ) ] | N$ 2 { < ) U$ ( P$ Z! P$ W@ | H= b{ W@ { ~ ~ Y> d $# < N' '# a B; 2* ( { $# o 4 c b [ e ,# M' K/ d e ~# g a *= 7 L= L= n q> o 7 ,# o c e K= 8 a ~# c L= c{ C; 0- Z$ m |& `$ h r r Y$ ~# D p p r @= D Y$ m F= N G m x 2; `$ C ^# F= G A `$ S O@ I z O@ M U^ M O@ c' P@ 8* ` J o^ P@ J T M@ ` H L@ T L' S I@ G$ C$ O= C$ !> O= q9 W @. E@ G@ . r5 /3 =. $% z$ a* G; /3 =. $% /3 >. $% =. A@ A0 A0 x5 =. /3 >. b: b: b: Y6 b: b: Y6 b: B5 r/ J: '& `9 r/ X) L] ~] r/ =2 L] L] =2 ^^ W^ W^ 3~ F3 W^ w{ w{ W^ +: +: 2~ +: Md Md ka 13 Nd G0 D4 _c K4 ]} L5 Od Nd K4 M3 &0 &0 L4 K9 j{ Pd }5 b/ }5 a9 b/ Qd A9 -8 ad a9 P5 a9 =0 0^ O3 M4 C1 C{ C{ C{ C{ C{ t[ t[ t[ `~ >/ >/ &^ &^ Z< {1 &^ Z< b3 S5 ): '8 S5 Rd M9 Sd ,/ 0! ,/ A_ Td Rc 3| S3 S3 Q] S3 3| 3| 45 45 S3 S3 __ u^ =^ =^ =^ v[ v[ 6< v[ 6< v[ !8 H| 34 F{ <} D7 J^ Z{ 9) Z{ J^ Z{ 7< C_ e3 C_ C_ }_ `^ `^ (! `^ W5 `^ `^ }_ }_ `^ S] j/ <^ F1 [} F] @{ @{ @{ @; @{ @{ y^ @{ @{ @{ !/ t: t: Ud :/ 2c y^ Z: b] b] ] _~ :~ ] :~ k' _~ k' _~ k' ] _~ _~ _~ X] d] 4/ X] i! i! +! .) ,] e~ l' ]) l' i, K> t] u~ ^) >~ ^) e= G* l' k; e= ^) k; k! 0+ ^) G* u% ^) &, '] ;$ k! l; ;$ l+ l+ ;$ ;$ ;$ ;$ l+ l+ l; z- -$ ;$ n+ h+ ;$ s+ t+ t+ '$ n+ M& '$ o+ u+ w+ w+ !$ v+ !$ x+ x+ ]$ E+ C+ C+ C+ D+ E+ E+ D+ F+ F+ F+ F+ F+ W2 F+ F+ E+ n2 W2 ^7 f) o2 F+ Ib 4c T+ Y+ Z+ Y+ f) V+ f) L| L| Z+ Z+ _$ #@ _$ +@ %@ #@ _$ :- &@ %@ *@ %@ &@ %@ *@ *@ &@ *@ *@ R> &@ %@ &@ %@ %@ *@ *@ +@ X+ Vd o' Wd W0 Yb Xd td Yd Zd `d e .e .e rd qd +e @e wc 8b sb 0c #e $e =d %e &e &e nc *e *e =e mc nc rc wd =e -e ,d -e ;e Ad rc =d gb lb >e rc &c &c rc ,e ,d 2b 'e )e !e ~e {e ]e ^e nc /e (e _e :e m, |@ 7@ *& j@ o@ x$ w$ = 5& ,& /* &. &. G@ A@ -. .= .= A@ B$ X 5# C$ 2& P T J@ T ` S Y P@ Q@ 3; Q@ A H S ", +"$= + $ . k) $ # * X! - . ]& k) > ]& U@ . N$ & S$ ; ]& . / H= S$ ^ U@ + ; Z! ] - [* . . S$ ; ~ $# W@ ; W@ ~ ; - - - U$ N$ 2 ) X@ ; } { { ~ [ [ X@ 1 < } ) ; ~ { D, ~ [ [ 6 j 6 $# d : Y@ d 7 a b 0 d &# 6 V$ $# *# ,# n $# ~# 8 i -# g 6 L= L= 3] g {# {# ~# e c 7 Y$ 0 h 8 Y$ h ;= m Z$ s> ,> `$ p G D n m Z$ ^# }& m n^ Z$ % /# z z 2; :# N ^# ^# w /# t I ^# P@ G z O@ N J Y E$ C, S z M / >/ t[ >8 >/ &^ `~ &^ Q5 a3 a3 n8 Q5 S5 |c |c S5 |c c3 c3 7e Sd 35 A_ S3 8e d3 35 /] y/ 3| A_ S3 d3 Q] T3 T3 T3 6< =^ v[ 6< 6< 34 6< 34 v[ V5 34 54 I| b^ H| V4 9e J^ F{ F{ F{ d; )2 Z{ Z{ 7< J^ C_ 7< }_ 3{ K^ J^ 3{ }_ ;] ;] 3{ H{ [_ T] 65 G{ !/ @{ F] E_ @{ @{ y^ y^ y^ F] ~) h^ ~) :! @{ y^ b] F1 u: C/ [^ [^ ] :~ :~ :~ _~ ] k' _~ _~ ] _~ $[ :~ _~ e~ ]{ _~ e~ e~ g, < #{ g, >- t] ]) R! R! t% l' i, ^) ^) %$ e= R! e= G* ^) e= +) G* ^) ^) u% %$ +) /) ;$ n+ j+ ;$ l+ ;$ l; l; ;$ l+ ;$ l+ ;$ ;$ l+ n+ l+ l+ ;$ n+ s+ t+ '$ A- n+ s+ t+ '$ w+ u+ o+ x+ x+ w+ !$ 0e B+ D+ A+ F+ E+ A+ A% E+ >; E+ W2 F+ F+ F+ F+ D+ 94 S~ W2 G+ o2 (- 5c W2 P9 Z+ Y+ Y+ L| F% f) _$ L| L| L| _{ p; _$ #@ #@ +@ m, p; #@ ae %@ &@ %@ S> &@ &@ *@ m, S> &@ W, U, *@ &@ &@ %@ =@ +@ W+ W+ be ce de ee fe ge he Gd ie je ke le me ne oe pe qe re ac &d jc se fe =d nc nc nc nc te ue ve Ad we xe -d we Vb `b ye Ub ,d oc rc ze &c ze &c @c Ae nb ob Be Ce De Ee Fe Ge He Ie Je Ke Le Me Ne Oe @@ n, a@ W* *& m@ -& {. :. w$ /* v@ !. &. x@ ;. 5# E@ )& 5# P X 4# 1# Y H J H 2# O P@ A S A N I H$ I Q ", +"$ = = ]& - . . . . . . - $ ; . # + > ; z] . $ !, ' - Q$ . > ; $ > . T@ ] Q$ ; | | | O$ { Q$ 1 1 | 2 | 5! - ] ) / ~ ## [ { } [ } { < | ## /& *# ~ /& [ 2 } [ / { 6 ,# | } $# 6 } < ) W@ } == } 6 $# 7 k $# a 0 6 a d 0 6 0 0 n L= n a ~# K/ `$ ~# *= g j 8 f 8 e h h s> c ^# p ^# ^# Y$ ^# Y$ % D r h ^# Y$ L= w m /# z 5* A G /# m ^# I /# E; N |# Q@ A M I |# S M |# w H I O P@ T J P L E$ H O= T I@ E$ L@ O= W H I@ D$ n) ja 58 W y@ E@ R y0 4; a* a* +. G; Pe /3 $% ,. ,. /3 .. ;. A@ 6# ;' =. ~( :3 A@ ;. ;} Z9 ~( Ic 82 b: Y6 9# Y6 {9 b: A5 X) q/ b: J: ^5 Qe r/ ^^ Re f[ ~] 3~ 3~ +: w{ +: +: +: 13 13 Se }e }e 13 13 13 t9 [e [e Te :4 :9 Ue Nd $0 / d/ Q5 Q5 >8 a3 Z< &^ a3 )8 b3 d9 |c {b Q4 Ye o8 c3 c3 m{ 3| ]: T3 i9 S3 d3 >0 Ze d3 v[ U3 T3 j9 U3 `e 34 6< 6< v[ 34 V5 f .f 34 Sc Sc )2 +f 54 06 a^ Z{ J^ C_ J^ J^ J^ J^ ;] 9) F{ Z{ 7< 3{ T] `^ }_ `^ }_ }_ y[ K^ [_ T] W4 74 F1 r8 J| F1 @{ ~) @{ E_ @{ !/ y^ 5| y^ S( i^ y^ c~ Z: V] [^ C/ j^ k' k' _~ _~ _~ _~ ] ] ] _~ _~ _~ _~ :~ g, D/ ] e~ e~ e~ i! .) #{ -~ ]) ]) N^ ^) t] V3 i, >~ R! >~ ^) G* K> e= e= ^) %$ u% k; ^) ,- G* k; /) U; U; |' ;$ l; w% l; l+ ;$ g+ n+ ;$ l+ l+ n+ l+ l+ h+ l+ n+ >$ '$ -; s+ J* o+ s+ s+ x+ w+ w+ x+ x+ !$ x+ w+ A+ B+ C+ D+ D+ E+ F+ F+ F+ D+ F+ D+ D+ G+ @f G+ W2 C% W2 W2 o2 /$ ^7 ^7 o2 Z+ Y+ Y+ Y+ F% Z+ _$ F% L| _{ Z+ _$ _$ [$ :- #@ `; '; p; [$ %@ p' &@ %@ +@ &@ &@ &@ >@ D- *@ $/ %@ *@ *@ &@ ~; #@ @@ U+ #f $f %f &f ;c Hd *f =f -f ;f >f ,f 'f )f !f ~f sb {f ]f ^f /f (f {f _f :f oc mc %* X* j- -& ~* a. (. c# <. (. -. =. ^. -. (* W~ A@ e- ,= !> @. G! L@ 4& 1# L@ L@ Y P@ P@ Q@ 8* P@ P@ L@ P@ J ", +"& = ]& = . Q$ ; . . o! = T@ - ]& . ; $ - U@ > . + . > ; V@ & $ > $ S$ & U@ N$ Q$ ] > ; U@ ; ] U@ & & 5- > ; ] | N$ H= | %= ^ X@ [ Y@ ] *> *# Z! %= N$ Z! 1 { %# : } ( [ [ } 7 Y@ V~ e D, $# b Y@ 2 ## &# [ d a $# d } ( 6 2* a a 0 c ,# 6 r e ~# a' a o {# Y$ ]# 8 c e i h &# c {# ^# p p ~# L= p D -) Y$ % % 1; r s> `$ % 6* D ^# m C % /# Z$ ^# /# :# C p ^# G z S I n! P@ J A I M S M w H >) E$ T +% T H 3) O H T L@ E^ r9 W @. V t> V O= n) 4# r9 ja ja bf H9 8# cf y@ r4 a* !& A@ ;. a* =. df )& 5# /3 $% $% A@ A0 /3 ;' z0 v{ ]. ~( ef b: b: Y6 Y6 *. b: B5 J: J: ff x4 r/ 0/ r/ x4 0/ ^5 a: f[ W^ F3 W^ +: F3 +: Md 13 13 }e +: F3 F3 F3 }e [e gf [| t/ 8^ E0 ~b ]} ~b H0 hf L4 %0 L4 if if %0 H^ H^ jf }5 a9 a9 a9 oa oa b/ a9 V: A9 Qd W: =0 6e Qd I0 d/ t[ t[ >/ }c >8 t[ Z< >/ >/ n8 a3 &^ n8 n8 Q5 Q5 P3 P3 n8 Q5 n8 c3 {b o8 c3 Q4 L} A_ K0 Ze Td M9 A_ 35 kf T3 x/ u^ x/ j9 T3 T3 34 v[ u^ T4 .f 34 34 34 34 D9 44 D7 b^ <} Sc ^1 F{ J^ Z{ Z{ J^ 7< J^ J^ 7< 7< J^ J^ 1c }_ 7< }_ 3{ `^ W5 W5 }_ [} j/ [_ S] F1 D_ F] @{ y^ ~) ~) y^ ~) y^ @{ ~) !/ :/ lf y^ mf b] k/ c~ [^ [^ k' :~ $[ g3 :~ :~ _~ k' k' ] k' _~ _~ ] N^ w- ] i! 84 e~ e~ ]) ]) N^ ]) .) .) u~ i, ]) l' u~ >~ l^ e= ^) R! e= ^) ^) +) k! G* G* 0+ G* G* .] Q, H* ,- l+ w% Q, -$ ;$ ;$ ;$ l+ l+ n+ n+ l+ l+ -$ n+ -$ n+ l+ s+ '$ s+ J* ~$ o+ '$ !$ x+ x+ o+ )$ x+ v+ x+ B! C+ C+ D+ C+ D+ C+ E+ D+ F+ F+ D+ D+ F+ W2 W2 W2 G+ G+ W2 /$ G% G% L| f) Z+ ,; p; _$ Y+ Y+ Z+ f) nf _{ '; _$ p; p; :- &@ %@ %@ '; +@ @@ &@ &@ #@ %@ *@ &@ &@ &@ 4$ D- [- !] %@ &@ }$ &@ %@ #@ .@ of pf &b qf rf sf tf uf vf wf le xf yf ^d zf Af Zb Bf Cf {f (f (f Df Ef oc ue kc vd vd vd {f vd vd $e ,e Yb `b Tb Tb Ff Vb Ub ,d Gf nb {d {d Sb Hf 9b Vb If Jf Kf Lf vf Mf Nf Of Pf Qf Rf Sf Tf Uf &@ }@ $* 0@ A= o@ -& q@ w$ ^. d# p, x@ -. A@ !. &. *. &. 8# >. E@ z@ X F@ 4& F@ J L@ P H$ M@ H$ I P@ T 4, S 7* ", +"%= > $ . * & ; $ $= + + + U@ = $= . U@ Q$ > V@ * $ & > Q$ + ^ . Q$ V@ * # P$ S$ P$ .# R$ N$ ~ > > & ; & N$ ] ; | 2 X@ ;# 1 ~ > & | [ ) > { { %= | { [ 2 | < 2 ~ [ -# +# 8 : 1 ## 4 4 6 ,# Y> 6 3* d } 8 } 1 } ,# i ~# b e 6 j k c h 4 a Y$ k 6 6 6! n L= s> h n ~# 2* [& n p X$ e g L= h `$ m s> 4* |& ;= D ^# Y$ N 4* % Y$ _# 2; G 4* z D m /# w F= A z F= E$ Q@ 3; O@ I P@ S O@ O T N@ P@ P@ E$ >) P@ L@ L' T :* T L@ O= O= L@ J L@ Vf T 0* V y@ L G$ y0 . r4 r5 y@ ,. @. @. ,. !& A@ G; a* F^ A0 /3 +. A@ =. /3 )& ;' /3 ~( v{ v{ b: $. 5; b: Y6 H! d[ b: >b X) J: a: J: J: J: J: x4 J: =2 ^5 Re =2 =2 +: W^ F3 +: +: W^ +: F3 +: +: }e [e Wf [e Wf Wf R: [| $0 Xf H0 Yf / d/ t[ d/ >8 >8 >/ Zf a3 o8 Q5 Q5 o8 n8 o8 n8 n8 a3 Q5 Sd M} Sd Ye fd `f Rc g 3| h9 .g S3 h9 M9 3| __ =] =] S3 d3 d3 6< v[ 34 u^ 6< v[ 6< 6< 6< 34 +g @g /1 I| H| ^1 F{ /1 Z{ J^ J^ Z{ Z{ Z{ C_ C_ C_ `^ C_ `^ `^ }_ r8 W5 `^ #g 1c r8 S] [_ W4 F1 f3 F] F] @{ ~) C' @{ @{ @{ @{ t: h^ M^ / y^ t: Z: l/ J| [^ C/ [^ j^ ] _~ :~ _~ ] ] _~ k' _~ k' k' :1 X] e~ e~ :~ X] e~ e~ e~ ]) -~ -~ .) k^ ^) ^) ]) ]) R! e= >~ ./ e= ^) ^) %$ L{ e= %$ k; e= G* G* ^) e= Q, }' 6> )- &, U; l+ l; |' L& ;$ l+ ;$ h+ h+ n+ l+ n+ n+ n+ n+ s+ s+ '$ r+ N& s+ '$ '$ w+ !$ !$ v+ !$ !$ !$ v+ A+ C+ K* D+ E+ E+ E+ F+ E+ F+ D+ F+ E+ G+ W2 W2 F+ W2 G+ $g G% G% G% f) Y+ _$ V& _$ Z+ Z+ ,; p; _$ p; p; _$ <~ '; @@ +@ +@ #@ _$ '; #@ &@ >@ &@ %@ &@ &@ *@ *@ %g 1d m, E- U, >@ <- &@ #@ @@ U& &g *g =g -g ;g >g ,g 'g )g !g 4f ~g {g ]g se se #e ^g ^g /g Cf (f ^f (g _g ub *e we :f ve $e ve $e $e vd X% >* t$ ~* u$ u@ x$ q@ w$ ). x@ &. &. ). $% 4& B$ $% .. X F@ E@ .= P R $> X +% H ` L@ O@ L@ A I Q@ I ", +"= R@ > # = ]& $ S$ ) > = . ] . #^ > # + - & . > ; ] N$ ] { . 2) ] . + S$ ' . Q$ ] - ] ; - N$ ] | ) f] } A; N$ N$ & *# | ~ ; & ] 4 8- | ] ] ; ^& | ~ P$ < *# 7- 7- 2 0 7 2 Y@ ## $# $# : j b ,# d [ 7 Y> Y@ 0 *= n 0 g *= 9 a a ,# L= [{ ,# ~# j ,# ,# 8 bg cg dg eg T1 T1 fg ~# Z$ c p Y$ n y p {# `$ C; n p n n r p h p 2, % r `$ m w z {& ^# G ^# G ^# z N I m) w I 3& A H$ z O@ J >) E$ H T J P@ O@ J L 3& M@ d- L@ G$ Ld T L 0* 4# L@ P' I@ G$ O= W r5 y@ 8# E@ y0 r9 y@ E@ y0 ,. $% #. x5 @. $% A0 a* F; e- =. $. )& ;' =. x5 ;' 82 b: gg 82 9# A5 82 7, d[ X) x4 b# r/ 7, X) r/ Ab Ab ^5 hg ig jg kg lg +: +: y4 +: +: F3 13 +: F3 F3 F3 t9 mg [e }e t/ ng og pg H0 ~b x1 ~b ~b Od &0 H^ qg %0 qg y9 a9 }5 }5 }5 a9 A9 }5 a9 Qd ad A9 cd A9 Qd Qc 03 c9 ad 03 }c }c C{ rg >/ }c J0 a3 >/ >8 a3 a3 a3 n8 a3 n8 a3 n8 n8 n8 n8 Ye Rc Ze sg 7e o8 Ze 35 35 T3 M9 T3 d3 >0 kf T3 __ 45 T3 d3 x/ __ 34 v[ 6< =^ 6< 6< 6< tg 6< <_ Sc b^ )2 44 +{ 7< Z{ 7< 7< C_ 7< 7< J^ 7< 7< 7< e3 e3 3{ H{ W5 }_ `^ }_ `^ K^ W5 S] [] [_ /~ [} [_ [_ @{ C' @{ F] 74 @{ t: t: @{ F_ t: :/ y^ Z: @[ F_ Z: [^ ug j^ k' %, 2_ _~ _~ k' j^ k' :~ k' ] B* B* w- i! .! X] Z/ +! e~ +! -~ e~ l' .) %[ i, u~ .) R! >~ u~ i, e= e= u~ vg k; G* ^) g+ k; e= u% &, +) S) S) f= j+ l+ l+ l+ ;$ ;$ '- l+ l+ l+ g+ l+ n+ n+ n+ ;$ l+ l+ '$ '$ '$ o+ h+ =; s+ '$ '$ x+ i= )$ !$ x+ !$ v+ D+ F+ C+ D+ D+ E+ D+ D+ G+ F+ D+ P& G+ G+ W2 G+ W2 n2 `5 ]7 o2 G% L| f) f) 94 F% _$ _$ _{ _$ _{ p; _$ wg p; _$ p; #@ #@ &@ #@ #@ &@ '; $@ %@ *@ 1] &@ D- *@ &@ ~; p= -@ E- E- &@ #@ &@ %@ X+ $) xg yg Sf zg ve Ag Bg Cg Dg Eg Fg Gg Hg Ig ]g jc Jg Kg #e Lg Lg Mg Ob Ng (g (g Ef _g _g *e *e vd Og Bf Mg zf #e zf *d :g :g fc 7b Pg Ha Xb Qg Rg Sg Tg Ug Vg 1g 2g 1g Wg Xg Yg me 6g Zg pb `g h .h U& n, X% >* j@ ~* {* (. q@ d# x@ ). '. D! 4- B@ &. +. &. .= B$ C$ G@ 4# L@ V ` 4# 2# H P@ D$ P@ L@ E$ %> Q@ A G ", +"p9 ]& $= $ ]& J$ + . = . ]& & Z, .( # # L$ ]& - U@ . Q$ & %= H= ] ' & ~ S$ ; H= T@ # > > > ] ] $= |* ; U@ ; ~ | ' H= P$ H= 4 %= { S$ & ] W@ ) 7- [ ~ ~ N$ /& X@ 4 | / D, <& Y@ &# Y@ Y@ q> / { +h @h #h #h $h %h 6 d } $# 8 $# j 0 ,# g &h *h =h -h ;h L= ~# Y> ~# 6 >h ,h 'h #( #( #( #( #( )h s> 0- |& {# n |& L= `$ m -) c Y$ Q{ Y$ p p p ;= m w 2, % % h 6* D /# }# ^# /# A ^# N /# /# w z 8* E$ N@ I z P@ Y L A E$ O@ J P@ L !h ~h {h ]h ^h ^h /h (h _h :h b A5 '= X) r/ B5 |3 2h 0/ y4 ;1 3h 4h #( (5 5h F3 F3 F3 +: F3 13 F3 +: F3 }e Wf )b 13 6h Wf 8d H0 [e 7h ~b H0 :5 ]} 8h H0 L4 y1 9d &0 x1 S: b/ y9 b/ na 9h b/ A9 a9 A9 A9 A9 a9 a9 Qd Qc t[ rg 0h ah 03 }c d/ C{ t[ t[ >/ >8 >/ >/ >8 &^ Q5 Z< n8 o8 Q5 bh b3 Q5 o8 Ye Sd 35 L0 C9 Td 35 fd Rc 35 Rc M} A_ i9 ch T3 d3 T3 =^ S3 S3 6< =^ =^ 6< u^ v[ 34 34 34 34 34 D9 w^ /1 a^ Sc Z{ J^ 7< 7< Z{ 7< J^ C_ 7< `^ J^ C_ }_ 4| 3{ W5 }_ `^ `^ ;] `^ }_ f3 i( f3 M^ G{ D_ W4 Y5 (~ ~) ~) r8 J| ~) ~) y^ P! @{ u: t: 2c u: u: u: b] b] 2_ ] ] C/ k' :~ :~ k' k' _~ _~ k' X] s] s] -~ D/ 5+ >- N^ e~ >- .) e~ N^ l' t] ,] ./ ]) l' ^) ^) K> ^) ^) K> +) ~^ ./ ^) k; )- G* k; ,- G* H* Q, g+ )- l+ ;$ ;$ |] j+ ;$ l+ l; l+ l+ f= h+ l+ h+ n+ l+ n+ i= w+ '$ '$ =; =$ '$ s+ s+ )$ s+ o+ )$ !$ !$ 9> v+ D+ C+ E+ E+ E+ E+ C+ E+ E+ F+ F+ F+ G+ W2 G+ G+ dh (- 94 G+ C% Q+ (- f) eh R+ T+ Y+ p; _$ f) _{ _{ _$ _$ p; <~ +@ +@ p; %@ #@ %@ <~ %@ %@ &@ &@ %@ > %@ >@ &@ *@ %@ e] $/ v] %@ #@ +@ W+ $) fh gh hh ih $c jh kh lh mh )g nh oh ph qh Ig rh sh sh se th ]g sh ^g sh se {f uh vh %e %e wh xh yh zh Ah ud ud ud Bh Ch 4b Dh 6b Eh Fh Gh Hh Ih Jh Kh Lh 5f 1g 2g Kh Mh Nh Oh Ph Qh Rh _f Sh Th Uh O{ .* |@ .& y; D= q@ k> p2 {. !. /* x@ )& x@ .= -. E@ !. $% .= G@ @. @. V B$ $> E$ +% O K@ Q@ T K@ M S 8* I x ", +"= 0' $ $ $ o! ]& & $ & = = Z, - + X! - & . = . + = T@ N$ Q$ ] ; - > h) & + + # . U@ ^ ^ ^ ; ; [ ; ] ^& ^ 2 ; & H= | P$ & ; | { , ] ~ ^ [ 2 1 ( ~ 1 ~ } Y@ 7- } } a 1 } $# 2 -# Vh #( #( b} Wh &# Y@ 6 ( 2* 7 a i 6 Xh Yh #( #( Zh `h c 0 i h 8 i m( #( #( #( #( #( #( .i g n r L= c{ o n Z$ c{ h % h n^ s> % L= y `$ w 1; m `$ s `$ `$ /# z 2; `$ % A G G m m ^# G z :# M I M O@ P@ O@ L A z I A T +i #( #( #( #( #( #( #( #( #( #( N_ E6 @i #i L@ q9 C$ X9 n) r4 r4 a* !& a* 5d @. G; $i 6# =. R' %i ;' A@ . ;' |h /3 /3 e- $% A0 A0 9# 82 Y6 b: b: 82 >b &i ~( *i B5 r/ J: A5 J: 1( f[ Ab x4 3h 4h #( (5 5h 3~ 13 F3 ,b +: 13 +: F3 F3 }e [e [e Wf =i =i -i ;i >i ,i [e Ue Nd 'i )i H0 L4 L4 L4 L4 M3 %0 ,2 }5 b/ !i ~i a9 a9 a9 a9 Qd Qd A9 a9 {i P5 F~ ]i Qc 0h P5 >/ d/ >/ rg >/ >/ t[ d/ t[ J0 a3 Q5 a3 a3 Q5 n8 o8 S5 P3 n8 Q5 o8 M} g9 p8 Rc M9 Rc M9 h9 h9 y/ A_ 3| M9 S3 T3 x/ Q] __ T3 T4 6< 6< 6< 6< 6< 6< U3 34 Sc v[ .f 44 Sc ^1 Sc ^1 ^1 7< J^ J^ Z{ J^ Z{ C_ e3 }_ J^ }_ 3{ `^ 3{ 3{ 3{ }_ 3{ 7< }_ i( [] 1c [} X5 y) f3 W4 F1 ~) @{ @{ y^ t: @{ O} y^ y^ u: M^ !/ '^ Z: 75 ~2 [^ A) ] ] :~ P} :~ ] _~ ] ] _~ ] ] :~ k' w- w- :~ -~ i! i! i! .) >- i! -~ .) -~ G* +! .) u~ h, ^) ^) %$ G* e= e= u% ^) e= )- G* G* ^i G* e= H* P, l+ j+ l+ l; n+ ;$ n+ n+ ;$ l+ n+ l+ n+ l+ l+ l+ n+ h+ O& /i t+ s+ o+ O& h+ r+ )$ x+ )$ s+ '$ !$ !$ 9> v+ D+ F+ F+ D+ D+ E+ P& (i F+ F+ F+ Ib G+ 4c G+ W2 W2 5c _i W2 F% F% n2 F% f) G% _$ Z+ L| Z+ Z+ p; p; p; _{ p; '; '; +@ _{ +@ %@ %@ '; #@ &@ %@ >@ %@ [- %@ *@ &@ *@ *@ &@ $/ I% *@ %@ #@ @@ ($ :i f si ti ui vi wi U+ r; 6@ X* xi ~> -& u@ q@ (. d# x$ A@ -. -. {. z@ A@ A@ B$ -. $. .= 2# T ` X> Y @% K@ H K@ L@ P@ M@ S K@ P@ A ", +"V@ 0' = Z, X! .( $ o! - $ . > = V@ !, =' Q$ ; # . Z, . H= %= . = ] ]& > ] . . { & N$ ~ U$ ~ ; S$ ~ - |* U@ - *> /& H= P$ X@ > *# W@ ] . ] T- } { { ~ ~ 7- X@ 2 X@ ( d { 1 1 { ## 2 d 6 G9 ,# yi zi #( #( Ai Bi i [{ 1 a 6 ,# Y@ ## Ci $( #( m( Di b [& ~# ~# ,# s8 L[ #( #( H1 Ei .5 Fi Fi Gi !# K/ _# `$ L= n z: p p L= Y$ n^ L= m `$ 2, % C w h t I ^# G 1; w w n^ <, z O@ 4* ~& w `$ M S ^# P@ M N I J M O@ M P@ P@ I L Q c7 #( #( #( #( #( #( #( #( #( #( #( #( #( ._ Hi Ii r9 r9 . r4 .= y0 G; .= E@ O= r5 $% $% =. 5# ~( =. $% R' :3 /3 F^ /3 :3 x5 Ji Ki Ic 9# Y6 9# 82 >b Y6 Y6 ;' ~9 {9 ;1 x4 d[ {9 J: ;1 ~] Li Mi 4h #( (5 Ni Se F3 W^ F3 Bb +: F3 13 #0 13 F3 }e [e [e [e Oi #( #( Pi 8d 7h +8 K4 ng Yf x1 Od 'i x1 Qi Oc Ve S: }5 Ri *0 }5 {i na a9 }5 a9 A9 A9 =0 Qd 0h Si W: {i =0 d/ d/ V{ c9 t[ t[ t[ &^ Z< >/ &^ Q5 Ti a3 Q5 O4 Q5 Ui P3 n8 n8 Vi Td Wi p8 S4 M9 Rc i9 Rc 3| M} Rc 3| >0 S3 T3 j9 u^ 6< d3 U3 6< u^ 6< 34 j9 `e V5 v[ D9 34 !8 H| D9 9e I| I| b^ 7< F{ J^ Z{ 7< F{ J^ C_ C_ C_ 7< J^ 3{ `^ H{ `^ `^ W5 3{ W5 [} [_ H{ i( 65 G{ i( @{ t: F1 @{ @{ @{ y^ y^ t: t: y^ u: 2c k/ :/ [^ u: 2c b] j^ k' k' _~ j^ %, %, ] ] _~ _~ ] _~ _~ _~ X] w- _~ ] #{ i! i! {/ N^ -~ -~ .) t] #{ i, 7+ ]) G* ^) e= ^) G* e= u~ ,- G* G* +) +) G* ,- ,- e= H* ;$ l+ j+ g+ l+ f= l+ l+ ;$ h+ h+ l+ l+ ;$ l+ l+ n+ n+ n+ =$ O& M& '$ s+ =; h+ =; o+ !$ !$ !$ Xi x+ w+ !$ x+ !$ 0e E+ D+ D+ D+ 0e Yi D+ 94 F+ W2 G+ W2 G+ G+ G+ 94 o2 C% G% G% .^ G% F% L| _$ _$ f) @/ L| _$ p; Z+ p; _$ _$ _$ p; [$ +@ #@ #@ '; %@ &@ $@ &@ *@ &@ &@ &@ *@ *@ &@ &@ p= C^ %@ #@ +@ X+ Zi `i j .j +j @j #j me $j >f %j 4i 5i 5i &j Ch *j ic ic rh sh se Lg se sh th ]g se se ]g sh ^g =j ^f -j ;j >j Mf ,j 'j )j !j ~j ~j {j ]j ^j ^j /j (j _j :j * j- m@ ^* :. N- = v@ ~. '. -. A@ &. &. 5# 4& z$ (* +. P L@ P E@ F@ P K@ +% M J@ C$ J@ H K@ P@ S :# ", +"# p9 0' = # = = = . }* . # . > T@ & ]& - = = $ > # . S$ + . > $ + * ] S$ ; =' *' H= | | 7- ] | ' ; ~ ] - & ; ~ ] X@ | 2 ; (& | | ~ } [ 2 W@ { P$ /& ~ X@ /& $# 1 => d } / Y@ 7 ~ 4 D, 8j $( #( $( 9j i &# ,# e 0 D, Y@ G8 >[ #( #( 0j 0} k k e c 7 aj d< #( d< bj @4 ~# L= e n ~# r r Y$ s> r L= n^ n n h Z$ /# cj D w m <, Z$ `$ m @= p ^# Z$ b' w x m w z p y /# G 2; z 1; A A n! N O ` Y E$ L M M@ M J dj #( #( '3 ej ~3 E6 ~3 88 fj gj #( #( #( #( #( F< hj T !> @. r4 G; . r5 r4 $% $% ja a* A0 $% $% =. /3 ;' /3 A@ +. ;' =. t( ;' df &i /3 b: b: Y6 9# Y6 82 ^5 Y6 A5 82 << ^5 2h << J: x4 =2 ij 4h #( (5 5h +: 13 W^ F3 W^ 13 }e 13 mg F3 Cb mg }e [e }e Oi #( #( jj 1e kj ng >2 [| +8 ma lj &0 ng mj %0 ,2 a9 }5 H^ ,2 }5 }5 Qd Qd Qd Qd Qd w/ B7 A9 nj Qc c9 rg }c W: >/ 03 c9 >/ oj d/ >8 &^ >/ Q5 n8 a3 n8 Q5 a3 Ye o8 P3 n8 Zf Ye Rd ]: n8 Ye R4 R4 Rc 35 S3 M9 8e 8e d3 ch j9 d3 d3 __ >0 d3 v[ U3 `e v[ V5 34 6< 6< 6< 34 34 +[ 44 /1 J^ <} .f F{ 7< 7< Z{ J^ J^ Z{ 7< 7< C_ e3 e3 W5 }_ `^ f3 `^ K^ }_ 1c e3 T] W4 [_ [_ W4 F] W4 ~8 F] @{ ~) @{ y^ y^ y^ Ud t: y^ S( J| y^ b] S( V] [^ [^ _~ _~ _~ ] ] k' :~ _~ _~ _~ _~ ] ] ]{ d= >] w- m2 X] e~ i! e~ .) N^ i! < ]) #{ .) e= .) i, e= e= ^) e= e= u~ e= G* ^) ,- G* e= ^) G* G* %$ )- l+ ;$ )- ;$ w% g+ h+ ;$ l+ l+ n+ h+ n+ n+ h+ n+ n+ O& n+ *$ h+ o+ '$ '$ m+ pj )$ o+ x+ x+ !$ !$ !$ !$ !$ !$ 0e D+ F+ F+ D+ D+ (i D+ D+ Ib G+ G+ E+ F+ W2 G+ 4c 5c 4c ^7 G% Y+ f) L| L| _$ Z+ _{ Z+ _$ _$ p; _$ p; p; p; '; '; Y3 _$ #@ #@ %@ %@ &@ > &@ *@ &@ %@ >@ V, *@ %@ %@ > c> qj +@ [$ V& 6c rj 6j pc sj tj [j uj vj wj xj yj 5i 5i zj Ig *j jc &d sh sh sh ^g Aj Kg #e #e /g /g /g se Kg /g 7i {f {f Bj Cj :b Dj ,f Ej Fj Gj (j (j ]j (j (j (j (j 4f )j Hj Ij Jj Kj Lj Oh Mj |i ]e Nj Oj Pj Qj ta )@ f$ d@ d@ j@ d# d# = (. ,& x@ F, A@ '. B@ 5# !. R $> 5# ;. 5# H@ V G@ C$ L@ H T P@ 1& K@ m) J M@ P I G ", +". + 0' = + + 0' * ]& = & ; S$ J$ + * $ - = ]& T@ . . Q$ N$ - - & ] R$ 0' ~ Q$ U@ H= Q$ > ] S$ ~ U@ [ > ^ R$ ~ 5- ; N$ ) - ^ X@ %= ; ; X@ 2 { | | ) | 2 { 2 | 8- } 5 Y@ 1 } $# 9 } ,# 6- | 4 Rj Sj #( #( Tj Uj J= Vj a U- [ e %< #( #( -6 Wj e n C; 8 7 {# Xj $( #( Yj Zj ~# 7 e c h n m 2, r c L= c a -) Z$ p n t p 1; % 1; 4* ;) p t w G A % /# w C ^# N /# /# ^# %> I A I I A A E@ +. a* H9 &k r9 L) =. 5d y0 e- $% >. =. =. /3 A@ ~( /3 $. /3 9# Z9 =. $. $. 5; p/ 9# gg b: >b 0/ b: Y6 82 J: X) x4 x4 r/ x4 ^5 ij *k #( (5 Ni =2 W^ W^ W^ +: 13 13 F3 F3 13 13 }e 13 13 [e =k #( #( jj E0 -k |e =/ =/ H0 hf E0 M3 M3 Od !i ;k ~i }5 b/ >k }5 }5 }5 A9 {i A9 Qd Qd Qd {i {i 0h ,k }c c9 }c }c >8 >8 >8 >8 'k J0 a3 >8 J0 n8 >8 n8 o8 Q5 Z< o8 n8 o8 Ye Zf )k C9 `f Ye M} 3| S3 3| M9 Rc Rc 8e j9 .g 35 d3 d3 45 j9 T3 34 34 34 .f v[ .f 34 V5 34 !k V5 ~k Tc {k 9e D9 <} J^ J^ J^ 7< ]k 7< 7< /1 e3 3{ C_ J^ `^ W5 3{ T] }_ T] `^ }_ W5 W5 j/ ^k j/ W4 F] W4 G{ 74 y^ ~) @{ y^ h^ y^ t: y^ @{ c~ u: B/ 2c [^ L^ u: [^ C/ /k k' _~ _~ ] :~ ] %, k' ] k' k' s] s] s] g, X] _~ w- e~ d] +! ]) i! d] ]) ]) .) e= l' l' G* e= G* e= e= K> e= G* >~ %$ ^) ;~ e= G* %$ G* f= n+ ;$ u% n+ Z] n+ l+ ;$ ;$ z- n+ n+ h+ l+ m+ n+ h+ k+ n+ n+ M& =; )$ )$ M& (k '$ o+ '$ x+ x+ s+ )$ v+ 9> v+ 0e D+ E+ E+ G+ D+ F+ F+ F+ Ib G+ G+ G+ Ib W2 W2 G+ W2 G+ (- o2 G% 8| F% V+ Z+ Y+ p; p; Z+ _$ p; p; p; <~ p; <~ '; _$ p; &@ &@ %@ <~ #@ &@ &@ &@ *@ &@ *@ 7$ %@ m, *@ >@ *@ 1] #@ W+ U+ of _k :k f ak bk ck ]j (j _j dk (j (j _j ]j oe ek fk gk hk ik jk kk ]j lk mk we %b nk 6c .* X% d@ :; ~* a. u@ s@ h# (. d# x@ !. A@ v{ p, >. e- .= +. =. +. @. E@ C$ 2# 1# G@ 1# J S }; A S z |; I N@ ", +"V@ T@ (& & |* & * $ $ & $ ; V@ + ]& + Q$ L$ * Q$ o! & Q$ V@ & H= & H= ; & + ~ > | | & . N$ H= N$ U@ N$ ~ ; > | N$ [ ; | & T@ ; P$ N$ ; 5 { X@ < | U@ ~ ~ { | V~ 1 { 2 %# / } Y@ [ d ,# 9 Y> { c5 ok d< #( #( pk $# 3* k 7 ># qk rk #( #( sk ~# i K/ 0 e c e tk #( #( uk r c g h ~# h s> c s> ]# e K/ n L= |& ^# vk s> t p % Z$ % ;= {& <, D z m s> w w w w E; A D % F= G w 8* G w J P@ O@ S Q@ 8* 7* M J Q x E$ L `j #( #( wk xk T G$ P' H L 4# C$ P yk f7 #( #( #( zk Ak C$ O= 4# r4 X9 r9 Bk ,. r4 G; ,. /3 =. =. =. =. 9/ ~( ~( Ji v{ >. =. /3 c[ ;' 9# Y6 Y6 Ck 82 Y6 Dk Y6 82 82 1( ;1 r/ ff J: J: f[ Ek 4h #( (5 Fk =2 =2 W^ +: +: W^ +: F3 Jc Gk 13 }e 13 13 [e Oi #( #( Hk / J0 Pk a3 Q5 >8 Q5 ;8 n8 n8 a3 o8 o8 o8 o8 n8 C9 Qk o8 R4 o8 `f Rc M9 m{ M9 Ze .g Rc A_ M9 h9 d3 T3 d3 __ gd T4 V5 V5 v[ 34 v[ .f !k .f .f .f V5 44 Rk 9e +g 44 !2 C_ F{ F{ J^ Z{ 7< J^ 7< C_ J^ e3 3{ 3{ 3{ [] `^ W5 }_ }_ T] `^ K^ W4 K^ X5 j/ F1 [} r8 ~) ~) ~) ~) @{ y^ C' y^ q{ u: @[ @{ t: [^ 2c M^ [^ b] [^ ] :~ %, _~ :~ _~ _~ k' k' _~ k' s] c] m2 e~ e~ ] _~ i! g, -~ .) #{ i! ]) ]) .) i, .) .) u~ ^) 0+ e= e= K> K> %$ %$ G* ^) ,- G* %$ 0+ e= ,- l+ ;$ f= l+ g+ l+ l+ l+ ;$ w% m+ l+ n+ l+ k+ h+ h+ h+ m+ h+ h+ h+ s+ )$ )$ F' )$ )$ o+ w+ u+ x+ 8> 9> !$ v+ 9> F+ D+ E+ F+ F+ W2 F+ (i D+ F+ G+ F+ F+ W2 G+ W2 G+ ^7 Sk 4c ^7 F% F% f) Z+ _$ _$ Y+ Z+ '; _$ _$ '; '; '; <~ _$ +@ _$ #@ &@ %@ <~ '; V, &@ %@ &@ > > p' #@ ;@ *@ >@ ;@ 6/ f~ +@ U+ P+ Tk Uk Vk Wk Xk 4f ri Vg Yk Zk `k 5k 4i 4i Xb l *j &d Jg sh sh Lg se th #e .l {f {f {f ^d {f /g =j #e se /g ^d +l @l #l hi pe $l (j dk ii _j dk %l 'f &l *l =l -l ;l >l ,l jk 'l )l !l ~l {l 9g ]l ^l &@ 4@ 7@ A= -& o@ _. {* ^. (. /. /* &. A@ 5# &. 6# $% 5# /l $% z$ X K@ L@ L@ P X E$ P@ A J J P@ P@ S A N@ ", +"R@ ]& - # ; # . + o! # - T@ $ o! = - Q$ 0' . . $ + Q$ ; ] . > $ U@ U$ # k) T@ & ^ N$ T@ H= H= > ; 8- | ] - X@ ^& ) | H= & > X@ 2 1 ; [ ~ 2 ) W@ { ) d 4 | | 8- { ~ D, &# d d [ 6 d 6 Y@ 1 e (l _l #( #( :l ~# r ,> m c |l 1l 2l 3l 4l m s> `$ b' % 4* D G `$ C Y$ /# G T8 5l 6l h| X[ N= w z I w K M A H$ N P@ J J E$ O@ E$ |# J I E$ J `j #( #( wk 7l J 4# C$ S G$ L@ E^ V O= 8l 9l #( #( #( 0l I@ O= y@ @. 8# Q' .= ,. =. $% al bl cl !( dl g_ ;' ;. ~( ,. /3 6# >. z0 A0 Ki 9/ b: b: Y6 el fl gl hl il jl r/ r/ r/ r/ Y6 L] ;1 ij 4h #( (5 kl W^ =2 =2 F3 F3 F3 +: F3 13 }e }e }e }e 13 :4 Oi #( #( jj ~b ll Nd =/ ml K4 ~b 8h hf %0 ng ;k nl ol pl ql rl ql sl A9 a9 tl Pd Qd A9 A9 0h Pc I0 Lk ul oj vl oj ul }c wl xl yl zl Al Q5 >8 Pk n8 Q5 >8 Ye Q5 Q5 o8 d9 n8 Vi n8 o8 K0 fd Bl Rc M9 Rc 8e c3 M} 8e Cl T3 i9 T3 S3 x/ u^ Dl d3 j9 U3 45 6< v[ El 34 34 .f .f 34 .f I| 9e ]k +{ 34 )2 7< J^ 7< J^ 7< C_ J^ C_ J^ 7< 3{ `^ `^ T] W5 `^ }_ 3{ W5 W5 }_ j/ 1c [} ~) y^ F1 r8 Y5 E_ y^ 74 y^ y^ @{ y^ @{ y^ :/ @{ Ud 2c @[ k/ u: [^ b] k' ] ] ] _~ _~ _~ ] _~ _~ _~ _~ ] _~ X] e~ ] ] -~ i! i! k^ .) g, #{ .) l' +! i, .) l' K> G* e= ^) e= K> G* G* ./ G* +) G* ^) u% )- k; Q, Q, H* *$ ;$ l+ n+ n+ h+ l+ n+ l+ l+ -$ l+ h+ m+ n+ l+ k+ =; o+ s+ '$ o+ o+ 8> )$ )$ x+ x+ Yi )$ Xi Fl Gl v: E+ E+ F+ D+ F+ n; E+ n; F+ D+ F+ G+ G+ sa G+ G+ 4c ^7 ^7 $g F% G% f) f) _{ _{ _{ p; _$ Hl _$ _$ _{ _{ _{ L| '; p; <~ #@ #@ #@ '; <~ %@ *@ &@ *@ v] &@ %@ #@ :- *@ #@ %@ B[ B[ M* Il .@ yg Jl Kl Ll Ml $j Nl bc Ol Pl sh Ql Rl 4i oh 6b ph l Ig Ig sh sh sh Kg sh 7i (f {f ^d {f .l Sl Kg sh sh 7i Cf ac Tl Ul Vl &l 4j hi )l [j _j _j _j _j 3g Wl Xl Yl Zl `l m .m Yg 'f je +m gb @m #m $m *@ 4@ $& e@ :; l@ N- -& d# {. >& >& u@ x@ $% z@ &. A$ 5# z@ E@ X T $> H G@ 7# T O= H@ A P@ E$ M q! P@ +% J ", +"R@ # $ ]& > . . + Z, . 1* ; T@ * ]& * R- ]& ; . Q$ = & - & . ^ ; . > Q$ N$ | . ' P$ & P$ P$ H= ; X@ H= ] - ## ] *# X@ ; N$ Q$ N$ 2 N$ X@ ~ { W@ / [ ) 2 / ~ ~ { X@ N$ X@ ( / ~ 4 6 } 6 Y@ %m => 1 [ &m H[ #( #( *m ( 7 d =m b} #( #( -m L= ~# a 8 a ;m >m ,m 'm #( #( )m !m ~m {m ,m ]m s> ~# 0- g K/ C; ]m ^m Yj H[ m( /m (m _m :m ]) ]) d+ G* ^) ^) K> i, %$ e= e= 0+ K& K> G* u% G* %$ S) Q, h, l+ ;$ l+ l+ ;$ n+ n+ l+ m+ h+ h+ ;$ l+ l+ h+ l+ m+ M& M& o+ '$ )$ 9> !$ 8> v+ 9> !$ )$ 8> v+ 9> v+ (i E+ G+ D+ D+ G+ G+ D+ F+ 4c G+ F+ G+ W2 Uc F+ W2 ^7 P9 W2 F% L| f) L| L| f) _{ _$ _$ Z+ Z+ L| _$ _{ p; _$ nf Z+ Z+ #@ %@ %@ <- <~ %@ '; *@ D- *@ S> &@ &@ &@ &@ %@ R> +^ @^ X+ X2 .n +n @n #n $n ^e %n &n *n =n -n ;n oh Rl 5i 5i 5k >n 7k 7k Ig &d Ig jc ]g ]g ^g ^g 7i 7i se #e jc sh sh ^g se Sl ]f wc ,n 'n )n &n ]j ii [j _j _j hi _j !n ~n {n ]n ^n /n Hj Nh (n _n Eg ^e ti `g :n ; . = ; > ]& $ > & $ # T@ + > . = X@ ] S$ . | & $ ; . Z! & %= ; ~ ( & %= & ; | %= { ; ; ~ ~ ~ ) ) [ ~ ~ ; { Z! Z! ; 2 X@ N$ 2 ( 1 ) } 6 a / 4 2 a }n #( #( |n 1n } 2n 3n #( #( X} 4n a e 6 M' j 5n #( #( #( #( #( #( #( #( #( #( 6n j g h Y$ 7n e5 |n #( #( #( #( #( #( #( ][ 8n 9n Z$ m 0n `$ x /# an bn #( #( #( #( #( #( #( cn dn L/ E$ I /# G w z ~& :* J E$ J Q@ |; H %> A M@ +i #( #( 5m 6m L J 4# I@ L@ L@ 0* d- 2# V X en #( #( W_ fn r9 . ={ .= H9 r5 L) gn O< #( #( #( #( #( #( #( i_ hn 9[ A0 A@ $. =. |h ~( in jn kn #( #( #( #( #( #( #( #( &: ln x4 mn r/ r/ nn *k #( (5 Ni B0 Bb B0 F3 F3 on pn h8 #( #( qn rn sn tn #( #( #( #( #( #( #( #( #( #( un Oc ma )i if M3 vn wn #( #( #( #( #( #( #( xn yn Pd Qd Lk zn Mm zn Mm An #( #( Bn Cn Dn En #( #( #( #( #( Fn Gn Hn o8 Z< J0 n8 Q5 n8 Ye o8 Vi In o8 bh Ye ]: Ze Zf Bl Bl d3 ch Jn h9 8e h9 d3 T3 S3 i9 >0 u^ U3 T3 Kn 34 6< 34 v[ `e .f v[ 6< 34 34 .f H| qa 55 Ln Mn J^ 7< J^ 9e 9e C_ C_ J^ e3 3{ J^ C_ `^ }_ j/ W5 3{ `^ `^ `^ `^ ^~ [_ }_ h^ @{ F] #g ~8 74 @{ B/ @{ t: @{ y^ @{ K{ B/ ~2 :/ U] Y: lf k/ j^ A) A) ] :~ _~ k' ] _~ ] `' _~ k' _~ _~ :~ k' e~ i! >] ] >- Z5 i! .) i! g, ]) l' >- a+ i, l' .) .) u~ e= >~ i, K> G* %$ G* G* )- G* e= G* %$ G* '- S) |' )- ;$ l+ ;$ l+ l+ ;$ m+ n+ h+ y- y- l+ n+ n+ h+ m+ q+ o+ '$ Nn )$ M& !- '$ )$ 8> 9> !$ )$ !$ v+ !$ 9> 0e C+ G+ F+ G+ G+ G+ G+ G+ G+ On G+ W2 `5 4c _i f) W2 W2 4c F% f) Y+ f) f) Y+ Z+ p; '; f) L| _$ Z+ p; L| '; <~ <~ #@ %@ +@ &@ &@ %@ &@ %@ m, >@ `& 7$ &@ &@ ~; &@ #@ M* 6/ g) Fc Pn Qn Rn Sn Tn 3f Ih Un Vn Wn Xn Yn Zn `n 5i Bh Ql o Rl 5k 6b 6b bb *j ab &d &d Ig sh ic .o Ig *j ab .o Ig &d sh /g fe td +o @o Vl |k #o _j (j _j (j $o %o &o *o =o gk ~n ^n -o ;o >o je +m ,o Z0 'o )o W+ |@ $* o$ :; -& a. u@ 5& ~. t@ {. !. {. p, z@ E@ $% B$ -. 6# z@ +. X }; G@ ` ` C, Z H A M D$ o> M Q@ E$ ", +"- $ Z, + 0' . $ k) $ 0' . S$ + $ . & Q$ U@ . + $ R@ o! Q$ ; ; $ }* . . [* . . | H= o! ] U@ & ] & N$ ; ; - *# 2 ; ^ ; Q$ H= o! ; =' & | ) ; - N$ 4 { ] 5 1 V~ Z@ ~ 2 <& ( ) 1 ( 1 } [ $# b 1 6- J= !o ~o #( #( _l 5 {o $( #( $( ]o =# ~# d o {# ~# 5n $( #( #( #( #( #( #( #( #( #( ^o g a C; /o (o #( #( #( #( #( #( #( #( #( #( _o :o m D m % m 8 Fb Q5 Q5 Q5 po Ye Vi Vi Vi o8 Ye Ye Td Rc Sd Cl qo `f K0 8e ro so to T3 d3 S3 S3 d3 45 uo j9 gd T3 U3 vo 34 R( V5 34 v[ V5 34 Rk <} wo 9e xo yo Sc J^ 7< C_ Z{ J^ Z{ C_ C_ }_ C_ 7< zo `^ `^ e3 T] }_ K^ }_ }_ }_ T] [_ j/ j/ Y5 [_ ~8 F] ~) @; y^ @{ ~) @{ @{ u: y^ y^ b] y^ u: S( :/ k/ A) b] A) k' _~ _~ k' k' ] k' _~ _~ _~ ] _~ X] g, g, ] w- +! >- g, .) #{ i! d] l' .) #{ G* l' l' i, ^) ^) G* L{ %$ G* u% G* G* u% ,- e= k; %$ G* e= Q, S) 0+ n+ n+ C) ;$ l+ l+ h+ h+ h+ n+ n+ n+ n+ r+ n+ n+ h+ n+ '$ s+ '$ =; h+ pj )$ o+ v+ 8> Ao o+ v+ 9> Xi v+ y+ n; E+ G+ (i F+ F+ F+ F+ F+ G+ W2 sa _i ^7 f) F% P9 4c G% L| L| L| F% Z+ Y+ Z+ Z+ Z+ _{ '; '; p; p; p; p; '; :- %@ &@ %@ S> %@ %@ %@ &@ p= %@ &@ S> *@ *@ &@ &@ *@ q; G' of Bo Co 'd Do Eo +m Ml Fo =n Go Ho Io Jo Ko Lo ud Ql Mo Ch ud 7k Xb 6b Xb Wb 6b 7k ph ph l 7k Dh 5k 6b 6b ab &d ]g ^g /g $e No Oo Lh |k Po Qo dk (j &l Ro So To gk Uo Vo Wo Xo Yo Zo `o p .p +p @p #p $p H' %p o$ i@ &p j@ u@ :. >& B= E~ ^. '. !. ). &. '. ). E@ z$ 0# z@ . V 5# 4# C$ P P H T J A S b- Q@ A z ", +"T@ $ L$ + = p9 > ]& ' $ . Q$ Z, ] > > . - . $= > = > > # Q$ ; # ] N$ > T@ & ; - $ Q$ . ' H= T@ - ; H= N$ Q$ ; W@ { ~ ) | V@ Z! X@ ~ { 2 X@ ~ / 2 , | W@ ( D, ~ d $# d /& ( 6 } [ 6 < ( ## Y@ !# 6 $# *p #( #( d< =p -p #( #( ;p >p j ~# } 7 a j ,p 'p )p !p #( #( ~p {p ]p ]p ^p /p m ~# `$ (p 7_ #( #( c} _p :p

M 3; J o^ I$ L bp #( #( wk 9 3# Q L@ J I@ O= J O= I@ r9 q9 cp dp #( #( ep O= O= q9 ja 5d fp 4: #( #( M2 gp hp ip jp kp lp #( #( m7 mp V^ =. /3 x5 np (( #( #( a[ op pp gm qp rp sp _( W_ tp r/ r/ r/ x4 up 4h #( (5 Ni f[ Jc =2 +: vp wp w( #( 4h xp 13 }e yp zp Ap Bp #( #( Cp Dp Dp Ep Fp Fp Gp H0 'i H0 Hp Ip #( #( ]_ Jp Kp Lp Mp Np *8 #( #( Op Pp Qd {i Qd A9 I0 Qp w( #( Rp Sp #( Tp Up Vp Wp Xp Yp #( #( Zp `p Pk o8 a3 ed a3 n8 o8 n8 Ye Ye n8 Ye Sd Rc Td Vi q Cl h9 .g q so .q h9 3| T3 d3 T3 j9 `e kf gd j9 q8 V5 34 34 V5 34 V5 .f v[ vo V5 Sc V4 +q yo ^1 J^ J^ Z{ 7< 7< 7< Z{ 7< J^ `^ 7< C_ }_ 3{ 3{ }_ ;] 3{ `^ W5 W5 [} j/ j/ [_ <^ <^ r8 @{ y^ @{ ~) Ud y^ @{ y^ t: h^ y^ Z: u: t: r{ :/ y^ [^ C/ b] k' _~ ] %, _~ _~ _~ k' _~ ] _~ k' X] g, e~ Z/ Y] ]{ >- +! N^ ]) -~ i! -~ .) .) i, i, t% .) G* G* e= e= %$ %$ e= 9+ h, %$ ,- ,- G* G* %$ 0+ Q, S) @q j+ n+ g+ l+ n+ l+ l+ n+ h+ l+ *$ ;$ h+ =; n+ n+ h+ n+ =; s+ ,$ '$ !- )$ )$ )$ 9> v+ #q Ao v+ Yi Yi v+ G+ D+ D+ G+ G+ G+ D+ W2 4c G+ W2 4c 4c $q P9 4c f) T& ^7 F% L| f) f) f) 5c _$ _$ p; p; p; Z+ p; <~ <~ <~ p; p; p; %@ &@ *@ #@ '; %@ &@ *@ >@ %@ &@ &@ %@ &@ %@ %@ +@ W+ %q /- &q *q =q -q sf ;q |f >q Wn ,q Ho 'q )q !q ~q Ja oh 4i Ql Dh 5k 5k Ql 5k 6k 5k 4i 5i 5i 5i 5i 5k 5i 5k 5k {q *j Ig se /g ^f ]q Tl ^q /q (q _q (j :q %o * a. l@ {* w$ C= >& %% (* +. z@ E@ 5# +. z@ $% &. .. +. +. 5# P M@ P@ K@ Y Q@ J S P@ @% P@ M 3# ", +"= = * $ T@ M$ & + * . . Q$ Q$ > ; & V@ $ o! & }* z] * - * . * > P$ ; ; - Q$ > # ; `@ *# X@ ~ Q$ [ | ] S$ N$ W@ 2 > N$ ~ V@ | 2 & ) { ^ | < / { ~ ~ W@ | | N$ Z@ *# 2 ( { ) < $# 1 6 } d [ 6 ,# aq bq #( #( cq #( #( d< dq 6 ,# j a 3* ~# ># ~# 0 j )h #( #( eq o 6! 6 [& n Y$ s> fq gq #( #( hq iq e ~# r s> |& c jq kq v6 p `$ D l< lq #( #( mq nq p B :# {& I oq y< #( #( pq qq w w M S K z M I H P@ n! M O@ d- M dj #( #( rq 6m M@ T G$ D$ P 58 4# T 4# O= P sq tq #( #( uq vq r4 ja ja G: wq #( #( xq yq ,. 6# .. $% $% zq Aq #( #( Bq Cq =. /3 b: Dq +_ #( 7o Eq Y6 b: <3 b: Y6 82 Fq Gq Hq A5 x4 ;1 L] Iq 4h #( (5 Jq =2 Q/ 3~ Kq Lq w( #( Mq Nq Oq [e [e [e 13 13 Pq #( #( jj Qq Wf Rq =i =i Sq )i Yf ma Tq #( #( +_ Uq Vq if >k a9 Wq Xq ]_ #( #( Yq {i Zq cd a9 }5 `q w( #( #( #( r .r rg t[ t[ >8 +r @r #( #( #r $r Q5 n8 n8 Q5 n8 o8 Ye Bl Bl %r Ye Vi Td `f Ye o8 c3 Rc .g `f i9 .g 8e T3 n kf El T3 j9 T3 gd El v[ v[ u^ 34 34 v[ 6< V5 V5 34 v[ <} !2 +{ 44 Ln J^ )2 Z{ J^ 7< J^ ]k C_ 7< `^ Z{ 7< }_ `^ T] f3 W5 `^ 64 W5 T] }_ [_ [_ K^ ^k ~8 G{ ^k (~ @{ @{ ~) r8 @{ y^ @{ @{ y^ u: c~ h^ c~ [^ k/ b] r{ b] N0 k' k' %, $[ :~ _~ ] _~ j^ ] k' B* d] i! e~ c] k' >- ]) i! #{ .) g, -~ -~ 7+ i, i, .) ]) e= e= %$ %$ G* G* G* 0+ e= e= |] ,- G* G* G* G* U; S) S) j+ l+ f= n+ n+ l+ n+ l+ l+ l; h+ n+ n+ h+ h+ =; k+ m+ =; o+ ,$ o+ o+ w+ o+ Xi v+ 9> v+ Yi v+ v+ 9> 9> 0e F+ G+ F+ E+ G+ G+ W2 W2 W2 G+ F+ G+ F+ 4c &r W2 _i V& L| L| F% f) F% _$ p; p; p; p; '; m, p; _$ p; '; p; p; %@ &@ %@ %@ %@ *@ wg <~ V, *@ >@ &@ %@ #@ %@ #@ #@ #@ @@ U+ *r =r 6j -r ;r >r ,r 'r )r !r ~r {r ]r ,q Xn ^r /r (r yj 5i 5i Ql 5k 5i _r _r :r !, + ]& Q$ . ~ & . > ; . . ; . # S$ + * #^ ; ~ =' ; U$ & . U@ | | H= H= & ] | - ; ; ; `@ ] ^& { X@ - } ( ~ ## 2 / { ~ W@ } / 2 [ 1 5! | [ 1 6 [ { < [ ^ V~ ) d a 6! 2d d ,# hr I1 #( #( #( #( ir _7 ~# ,# L= d d e e ,# c {# [l #( #( }l h h 0 c {# {# c jr #( #( d< kr g p L= _# A~ {# p ^# 2, l _# p Y$ lr c} #( 7_ mr G F= G /# A ~& N nr 7_ #( or pr M A S n! I P@ M@ S P@ 8* J J S :* H$ dj #( #( 5m qr M L@ d- 4# 4# P' G$ T L@ J L@ I@ rr #( #( sr tr q9 q9 r9 ur 8: #( 7_ vr ,. wr F^ 6# /3 =. A@ xr +_ #( yr zr =. A0 df -} #( #( Ar Z9 Br Y6 c[ >b >b >b 82 82 <3 82 J: r/ J: Iq 4h #( (5 Ni 2h Jc Cr Dr 7_ #( (5 Er F3 +: 13 6h 13 }e =i Oi #( #( Pi Qq Qq Rq s9 =i :c 8h ~b Fr Gr #( #( Hr Ir jf mj Jr *0 Ri Kr Lr #( #( Mr Nr Mm ad -8 {i lo w( #( #( Or Pr Qr 03 oj rg >/ Pk Rr w( #( Sr Tr a3 Z< a3 Q5 n8 n8 o8 o8 Bl %r Vi Vi Vi Rc `f Bl M9 h9 35 Ur 35 8e Vr >0 >0 n h9 S3 j9 __ >0 El U3 gd v[ 34 6< f 34 34 V5 V5 .f @g V4 9e {k <} ]k J^ J^ F{ J^ F{ J^ 7< J^ e3 C_ e3 }_ }_ `^ T] Y5 f3 `^ }_ T] }_ }_ r8 1c j/ W4 F] W4 ~8 G{ y^ y^ ~8 74 @{ y^ y^ V] k/ [^ y^ V] A) y^ T( [^ D' A) k' _~ j^ k' _~ k' ] _~ _~ _~ _~ Y] X] g, e~ w- ] V3 #{ i! g, l' #{ g, l' l' #{ e= i, l' K> G* U; e= G* i, G* k; ,- e= ,- 6> G* %$ f= u% %$ Q, S) g+ *$ l+ n+ w% m+ n+ '- C) h+ h+ h+ n+ M& h+ h+ h+ n+ !- x+ o+ o+ '$ x+ )$ o+ 8> Yi Yi v+ Wr Xr v+ Yr (i ~- F+ (i ~- G+ F+ F+ 3c 3c 4c W2 W2 G+ 4c W2 W2 W2 f) L| F% F% _{ L| nf L| nf _$ _$ p; '; p; _$ p; <~ p; '; &@ %@ *@ <~ %@ &@ <~ '; p' &@ &@ &@ &@ &@ &@ &@ @@ @@ +@ Zr `r s Mb .s Nj =f 6q +s @s #s $s 'q ,q %s Ho Io Yn &s *s 4i [r 4i 5i _r Lo [r xj =s Lo yj }r 5i -s Mo 6b 7k 7k Xb Ch ic &d #e ^d ;s yh >s rd rd ,s 's )s !s ]& L$ + > . + . X! Z, $ ; $ + T@ > [* > # # ^& S$ Q$ ; & > . > - Q$ . ) | X@ ] ; X@ | ] ; $ ; N$ - ) ) ( 2 > X@ ## - N$ ; | W@ 4 [ ( ## { R$ D, ] [ ( ( ## 5 6 $# [ ^ [ / < &# Y> Y> 9 J= :s p /8 #( #( |p 77 h D L= {# h ,# `$ C h h L= h % |s #( #( 1s 2s t w r G [# F= I 3s 4s #( $( 5s M z w I w P@ n! I O@ P@ #= J H >) >) dj #( #( wk 6s |# H ` J G$ r! Ld Y r! C$ L@ 7s 8s #( #( ._ 9s 7s r4 r4 0s #( #( as bs cs #. a* L) /3 $% =. ds es #( 7_ fs /3 A0 ~( gs #( #( ]5 t( gg t( Y6 >b ~9 ~9 82 Y6 >b >b J: r/ x4 Iq 4h #( (5 5h hs is js 7_ #( *8 ks yp 13 }e 13 F3 +: }e }e 63 #( #( Hk Wf Wf [e ls ms ns $0 )i os ]_ #( *8 ps qs rs ,2 qg !i 9h b/ ss ts #( w( us A9 {i Qd Qd lo w( #( #( vs Sm }c }c >8 oj Pk oj ws xs #( #( ys Pk a3 Q5 Ye o8 Vi o8 o8 o8 o8 Ye Ye Rd zs Rc Vi Rc c3 M9 Rc Rc Rc .g i9 S3 >0 .g d3 S3 45 j9 j9 45 El 34 V5 v[ f V5 V5 34 6< V5 ~k Sc J^ Z{ Ln N9 9e 7< F{ Z{ F{ J^ C_ 7< J^ C_ C_ C_ 3{ `^ [} H{ 3{ }_ }_ }_ }_ }_ ^k [} W4 [_ @{ F] b) As @{ y^ E_ J| y^ y^ t: t: P! i^ :/ L^ :/ c~ q{ b] [^ k' j^ k' _~ k' ] _~ :~ :~ ] _~ ] ] ] -~ w- i! 2_ Y] e~ i! i! .) l' 6+ #{ l' l' K> l' l' .) G* %$ G* G* e= G* j, +) %$ e= ,- u% G* |' *$ G* Q, w% n+ l+ l+ l+ w% ;$ n+ w% w% h+ -$ n+ h+ !- h+ h+ Bs h+ M& {$ )$ o+ )$ '$ o+ )$ )$ )$ Yi v+ Fl 9> Yi Yi v+ ~- G+ F+ W2 G+ E+ @f F+ W2 W2 4c W2 Cs sa 4c _i W2 _i F% f) Ds _{ _{ _{ _{ _{ p; ,; '; <~ '; Z+ '; nf Es p; <~ '; *@ &@ &@ *@ %@ '; %@ &@ %@ &@ *@ &@ %@ #@ #@ +@ +@ Il Fs Gs de Hs Is Js Ks Ls Ms Ns Os Ps Os 'q Qs Rs $s Ss Ts Us Vs oh 5i _r xj Ws Xs Ys 4i }r 5k Mo ph Ig &d jc jc 6b 7k 6b &d se {f Zs +l `s t .t +t @t )s )s !s #t To $t %t |j &t ]s &t *t =t -t /s $c /e ;t G% >t 6@ ,t && p@ o@ D= >& E7 ^. w$ ^. x@ 9# ). &. ]. A@ .= R .= 7# C$ H X E$ H P G@ Y M q! A H Q@ P@ M ", +"o! ; > & - $ ]& # # ]& J$ N$ * {c & %= $ $ V@ > > ; | & $ & > & $ ~ | H= ~ & Q$ ~ U@ & N$ & H= ~ > ~ H= - R$ ] R$ ^ *# | U$ ; V~ 4 | | & Y@ | N$ } 2 $# | %# , X@ ( { } } / 4 [ X@ [ 6 $# W@ 7 7 6 6- [ 't #( #( #( )t d ,# K= j 9 i 9 { e c Y> Y> [l #( #( }s } 0 L= a' o Y$ !t d< #( $( ~t !# 2, n n h _# 0- p ^# % `$ 4* $] h5 {t #( #( ]t w ~& D /# z ~& I 4* G ^t #( #( /t I E G N I H$ P@ z E$ 3& M n! H$ J >) dj #( #( 5m z6 |# T E$ U^ O= V O= O U r! n) O= (t #( #( '3 _t E@ ja :t b 82 ~9 x4 ;1 ;1 Ek 4h #( (5 4t 5t 8 &: #( +_ 6t 7t 13 +: on +: F3 13 13 }e Oi #( #( jj }e }e s9 8t Wf 9t 0t )i at #( #( bt ct L4 Kk if !i Jr >k dt et ft #( #( gt Qd tl Lk Mm lo w( #( ]_ ht Sm }c }c 03 oj >8 >8 >8 it #( #( jt Pk >8 o8 o8 o8 Q5 n8 n8 Ye bh Bl Vi sg Sd M9 Rc Cl 8e Rc .g kt .g i9 Rc d3 >0 .g j9 i9 x/ T3 d3 U3 v[ `e 34 34 __ vo V5 V5 .f V5 V5 @g U4 /1 7< <} lt ^1 7< e3 zo 7< C_ C_ e3 C_ Z{ C_ zo }_ }_ N! W5 W5 }_ `^ W5 1c r8 [_ T] [_ ~) y[ ~8 ^k r8 y^ F1 y^ @{ y^ {7 E_ t: J| c~ t: 2c [^ mt Ud b] b] j^ k' k' k' g3 ] ] %, Y# k' k' k' k' >- _~ g, c] ] ]{ -~ i! .) l' g, i! .) .) ;~ K> 7+ .) .) K> G* %$ G* G* i, G* G* e= ,- *$ G* 0+ ,- 0+ }' w% h+ j+ l+ l+ '- z- l+ f= w% n+ n+ n+ h+ h+ m+ h+ h+ q+ h+ q+ nt )$ )$ o+ v+ v+ '$ )$ v+ v+ x+ #q Yi Yr Yr ~- W2 F+ F+ 4c F+ G+ W2 W2 W2 W2 ot 3c _i sa 4c 4c P9 f) F% f) f) f) .^ L| $g _$ _$ p; p; <~ Z+ '; p; <~ <~ '; p; <~ %@ %@ %@ 4$ m, %@ &@ &@ %@ &@ %@ %@ #@ #@ @@ Z+ pt qt rt st tt ut vt wt xt yt Ms Qs Os Os Os Qs %s Ps zt At Bt `n Ja 5i 5i * ]& ]& * = $ $ = | | $ R- $ - . $ | . > Q$ ; Q$ $ ; # & T@ ] Q$ & ~ Z! ' 1 %= & P$ ) N$ Q$ N$ X@ 2 U@ 2 }* U@ *' =' Q$ T@ | ] ; { > 2] { | { W@ { 2 Y@ 2 } /& /& ,# } < 2 Y@ ( | 6 6 d 6 Mt Nt #( #( #( f6 Ot k 7 e 1 ,# 6 d V$ Y> 6! a .i #( #( Pt 9 g s> L= c Y$ Qt #( #( Rt St `$ D s> Z$ L= p r s> 4* Z$ n % b' Tt &3 #( 7_ Ut p F= m m p 4* t /# I Vt #( #( Wt z C G I ~& /# O@ P@ I O@ H$ M M L@ c' dj #( #( rq Xt G$ d- L@ T T Y T L@ 2# U V r9 Yt #( #( N_ Zt y@ ja `t 4: #( 7_ u r9 r5 =. $% .u $% =. $% $% -} #( #( +u /3 F^ =. @u &: #( +_ }t #u gg Y6 >b ;} 82 d[ `9 >b ef x4 J: ff Iq 4h #( (5 $u %u (5 #( w( &u *u 13 13 Se 13 }e Se Wf on Wf Oi #( #( jj =u Wf -u ;u 7h =u >u Yf ,u #( #( 'u hf jf qg qg jf *0 !i )u !u ~u #( #( {u ]u zn Mm Lk lo w( #( ^u /u {i oj (u _u oj oj Pk Zf :u #( #( 0 .g Jn j9 Cl |u d3 n >0 d3 __ 45 45 45 `e gd 34 .f v[ !k 34 V5 V5 34 V5 V5 44 Sc J^ Rk Mn !2 7< J^ C_ +f Z{ C_ C_ Z{ `^ 7< e3 C_ 1c [_ W5 1c r8 }_ 1c }_ zo S] r8 X5 74 r8 r8 ~8 1u ^k ~) @{ y^ y^ !/ t: J| h^ c~ '^ k/ Z: Y: k/ S( @[ b] A) _~ k' ] g3 _~ _~ ] _~ _~ _~ ] Y] Y] 6+ w- d= }^ 2u i! ]) ,] i; w- >- l' a+ G* G* .) l' a+ G* K> e= G* a+ %$ %$ G* ,- u% %$ %$ %$ G* %$ U; l+ g+ K& n+ u% f= h+ h+ -$ n+ k+ h+ l+ h+ m+ n+ h+ q+ M& =; )$ o+ '$ '$ !$ 8> '$ 8> v+ 9> 3u Ao Yi Yr Yi 9> G+ W2 F+ W2 F+ W2 W2 G+ W2 W2 G+ G+ 4c sa W2 P9 ^7 Q+ L| f) P9 F% L| P9 ot _$ @/ '; p; '; <~ '; p' <~ '; %@ '; p; %@ %@ *@ m, %@ p; &@ &@ &@ &@ &@ *@ 1] @@ @@ W+ R+ 4u 5u Qa 6u Hs 7u 8u *n 9u 0u au bu bu Ps Os Qs Os Ps Ps cu du eu fu 4i oh 4i _r ud ph Dh Ig ]g sh jc Kg ^g /g /g /g /g gu ^g Ng {f hu iu ju [q )s ku lu Et }q mu nu ~n nu |j ]n ou pu qu ;o ru su tu @p uu vu p= g$ n$ 1} o@ <. a. t@ m@ c# ~. {. ). ,& '. A@ V> =. ). 5# 7# L@ F@ V P &' T J 3# P@ H H H H P@ I A ", +"p9 p9 + $ # # - . 0' $ # [* ] & + . ] $ $ . . & Z! . Q$ ; ; - > - ]& . $ ; & *' V@ V@ (& > ~ & ] ; U@ Q$ U@ `@ & ] { V~ | N$ ] H= N$ J) H= N$ [ ) | { { 7 2 [ ( { Y@ I= ( 2 6 == d d a { } ( Y@ i p6 0j #( #( #( #( #( wu a e 6 d k o ~# d g ,# 9 )h #( #( eq a A~ L= ~# n 8 xu #( #( yu zu s> -) c C; h b' l !# r D |& b' t Au d< #( 7_ Bu Cu Cu Du Eu Fu Gu Hu Iu Ju )6 #( #( }2 Ku M Q@ {& P@ B M K N %> M 3; d{ P@ t> +i #( #( 5m Lu J U H L@ Q Y t> L' X 4; T X Mu #( #( M_ Nu Ou r9 Pu N_ #( 7_ d_ Qu Qu Ru Su Su Tu Uu Vu Wu Xu w( #( Yu Zu ,. $% `u v #( #( #( .v +v @v #v $v >b >b 82 82 9# B5 ;1 r/ up 4h #( (5 %v i[ #( 7_ &v *v Re Se W^ on =v Se Se Oq 13 }e Oi #( #( Hk Wf /c Qq =v -v =u ;v >v ,v #( #( 'v Jk if !i nl if )v !v Ri Pd ~v #( #( {v ]v ^v Qd Pc lo w( #( /v (v _v (u :v ] _~ :~ k' k' k' k' k' _~ d= g, g, i! ] s] g, +! g, l' 6+ i! l' l' K> i, .) l' ./ e= %$ G* ^) K> %$ ,- G* %$ +) f+ G* u% %$ e= &, g+ l+ 0+ l+ ;$ n+ l+ ;$ l+ l+ n+ m+ m+ h+ m+ n+ h+ m+ o+ o+ o+ M& '$ o+ x+ 8> )$ Xi 8> !$ )$ 8> 8> 9> 9> 9> G+ D+ ~- 4c G+ W2 G+ G+ W2 W2 W2 4c P9 4c On _i W2 f) V+ L| L| L| L| L| L| '; p; p; _$ p; p; 9v @/ '; <~ '; '; '; +@ #@ #@ +@ &@ %@ *@ &@ %@ &@ *@ &@ %@ +@ X+ U+ Fs 0v av bv cv dv ev fv #n >q 0u Qs Qs Os Qs Os Ps Os Os Os Ps gv hv iv jv xj _r Ql ud Ch Ig ]g Mg 7i (f /g 8k 7i ^f fe kv Cf lv $c mv nv ov pv qv ku rv * $ T@ ] $ }* - S$ . U$ S$ & Dv . * . . . Q$ S$ T@ Q$ $ $ ; N$ | H= & ' U@ | R$ ^ %= ~ ^& ~ Ev 2 N$ { ~ 2 1 N$ | 2 ~ 2 ~ [ ^ { 4 X@ d 1 ~ | ( /& b 7 V~ { $# 6 V~ 6 Di m( #( #( Fv #( #( Nt Gv ,# b 7 d a i d c 3] L= [l #( #( }s ~# A~ ~# o |& ~# Hv #( #( 3 V} r h 2, ~# `$ p Z$ 9- L= `$ r V| C J_ m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( q| qq F= M z I I G 8* I M P@ S E$ O@ a- +i #( #( rq z6 P@ d- 3d 4# d- Q 3; Q G$ d- L@ V Iv #( #( Jv Kv r4 O= Lv W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( Mv Zu ;' /3 /3 Nv !4 #( #( #( #( #( Ov Pv Qv Rv >b Y6 82 >b ff << Iq *k #( w( M2 #( w( Sv Tv W^ Re Se W^ on Se }e Uv on [e }e Oi #( #( Hk [e 8d Vv Qq =i =u Wv Xv Yv #( #( Zv ma jf >k Jr !i !i `v Pd }5 w w( #( .w +w {i {i Mk lo w( #( @w #w $w :v ul vl rg oj ul J0 %w En #( &w *w >8 'k n8 n8 Q5 Ye o8 Ye qo o8 Vi =w Vi qo 8e qo -w ;w kt >0 ch .g >0 ch kf Vr ch d3 gd j9 45 gd El El 34 .f V5 U3 V5 34 v[ V5 34 .f V5 <} Z{ Z{ >w >w Z{ C_ Z{ J^ 7< e3 e3 e3 7< 7< 7< 7< 3{ 3{ T] W5 }_ [} W5 }_ T] [} f3 W5 T] j/ C' 74 W4 ^k @{ ~) @{ @{ @{ y^ @{ y^ @{ '^ c~ B/ S( ,w 'w / [^ 2_ _~ _~ k' k' _~ ] _~ k' %, _~ ] b= _~ Y] i! g, _~ s] 5+ i! i! 7+ >- i! 7+ .) .) i, a+ l' 7+ G* ^) G* G* G* G* G* G* G* %$ f= f+ e= G* %$ %$ )w l+ g+ *$ l+ n+ n+ n+ l+ n+ h+ h+ m+ h+ m+ m+ h+ h+ M& '$ !w !- '$ )$ )$ 8> 8> o+ )$ Fl v+ Yr 9> Yi 9> 9> m9 F+ E+ G+ G+ F+ G+ W2 W2 W2 G+ 4c ^7 4c 4c _i 4c F% f) ~w L| P9 f) L| L| p; _$ p; '; p; nf {w p; '; '; '; p; <~ '; %@ #@ %@ +@ '; &@ %@ +@ +@ %@ %@ %@ +@ @@ .@ ]w ^w #b /w (w _w :w vt = + # ]& . > + Z, ]& L$ $ $ > - Z, . Q$ $ . & - Q$ & ; ; U$ . & 2 ] H= Q$ ^ ; H= { & Z! ; > S$ P$ 2 . ] | T- N$ ~ N$ %= ^ 2 W@ ~ | { U@ ; ) ~ N$ ] { d ## { V~ *# < /& [ ( 7- | / Y@ { a4 jw #( #( kw lw S} #( #( mw nw $# a ,# a e ># ~# c 0 [l #( #( eq 7 L= 7 0 L= |& ow #( #( pw p 2, h L= c `$ (# Y$ 1; p `$ Z$ 4* n qw m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( rw sw n! Q@ G I I J P@ F= D J H J 1& M c7 #( #( wk z6 M D$ 0* tw G$ L@ J 0* O= C$ O= uw vw #( #( ww xw r4 r4 yw W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( zw Aw :3 /3 A0 Bw Cw Dw W_ #( #( #( #( #( w( Ew Fw ~9 ~9 ~9 >b x4 Ek 4h #( #( 7_ #( #( Gw Hw x4 Iw Re W^ Oq on }e on 8t Oq 13 Pq #( #( jj =i =u Qq =i Qq Jw Kw Lw Mw #( #( Nw ma Jr if Ow dt ;k Pw na Qw Rw w( #( Sw Tw Mm Qd Lk Uw w( #( Bn Vw rg zn 0 .g .g >0 Rc ch ch i9 d3 T3 j9 gd j9 .x T3 6< f 6< v[ `e f V5 V5 v[ .f .f +x 7< Z{ +f !2 J^ 7< J^ F{ 7< J^ C_ C_ J^ }_ C_ C_ }_ 1c T] K^ }_ `^ 1c `^ K^ W5 65 T] W5 [} F] [} ^k W4 F] @{ y^ @{ @{ @{ y^ @{ y^ u: :/ t: @[ [^ t: S( b] b] ] ] 2_ k' _~ k' _~ _~ k' ] ] ] _~ _~ -~ g, _~ k' 7+ -~ e~ l' l' g, #{ 7+ ]) @$ u~ 7+ K> G* e= K> %$ G* b+ G* u% k; e= g+ ,- %$ %$ %$ G* H* v% '- *$ n+ k+ h+ l+ n+ n+ w% n+ n+ @q n+ @x q+ m+ =; o+ 8> !- )$ '$ o+ 8> x+ 8> 8> Xi v+ Yi Ao #x Yi 9> Yi m9 (i F+ E+ D+ G+ G+ 4c @f @f 4c P9 P9 5c 5c $g L| _{ _$ _$ nf L| nf Z+ p; '; _$ '; <~ _$ _{ :- p; ~w '; p; #@ %@ %@ &@ %@ %@ <~ &@ p' %@ &@ %@ &@ #@ #@ W+ X+ &g $x 8q Eo %x dv &x *x Qs Ns au Qs Os Qs Qs Qs Qs Qs Os Qs Os Os =x -x ;x >x ,x 'x )x !x ac {f /f ]f /f Af Df ~x {x ]x ^x /x Kf (x _x :x 7w ov le |q > ' ~ Z! ; ^ . o! Q$ ^ H= ] U$ Z! & *> N$ ; | - . | ] ! X@ N$ Q$ U@ H= T@ I= { } ) ] 2 } ) ^ +# 6 ( { / ( ) 1 & ~ ( Y@ $# { X@ 4x $( #( I1 5x a 6x #( #( e6 7x $# 0 &# $# 7 a' 8x a 0 [l #( #( eq n h !# n a' r 9x #( #( w2 0x Y$ e c h s> h m ^# `$ Y$ Z$ y L= ax m( #( d< bx cx mr mr mr dx mr ex ex fx fx gx gx hx x ^# F= #= w A H :* o^ M :* b >b ~9 `9 up 4h #( &: Ax w( #( 7_ Bx Li y4 ,b Re 13 +: F3 F3 F3 13 [e Oi #( #( Hk =u =i =u ;u Cx =u Yf Dx Ex #( #( Fx ma 3e if if qs rs qg %0 if w w( #( .w Gx Mm {i {i Hx w( #( @w Ix :v Jx >8 Pk Kx ul 0 >0 Vr n j9 T3 gd j9 El gd 34 34 V5 V5 v[ 34 V5 34 V5 V5 ~k Ux ]k ]k @g Vx ;] J^ 7< 7< e3 C_ Z{ C_ C_ C_ C_ C_ `^ }_ [_ W5 `^ }_ [} W5 }_ W5 [] [} @{ y^ y^ 8v W4 y^ @{ @{ 74 F1 @{ @{ t: y^ y^ t: t: B/ A) @[ k/ ~2 b] C/ j^ k' _~ ] k' k' %, _~ %, k' %, k' k' 5+ w- w- k' %, >- i! .) 7+ >- g, .) l' 5+ G* a+ l' 7+ G* a+ %$ %$ G* e= ,- ,- G* G* *$ 0+ G* G* G* Wx '- Q, U; j+ m+ -$ n+ h+ h+ h+ n+ q+ n+ q+ m+ h+ h+ m+ q+ )$ m+ o+ )$ o+ p+ nt 9> 8> Fl Xi v+ v+ 9> 9> Yr Yr Yi (i G+ G+ G+ G+ W2 W2 4c W2 W2 4c _i ^7 Xx _i _i L| P9 f) f) F% L| L| _{ _{ _{ Z+ _{ '; '; <~ _$ <~ m, m, '; <~ '; %@ %@ %@ p; p; m, '; *@ %@ +@ @@ +@ X+ U+ ta Yx Zx `x y .y +y :w @y Ns Ns Qs Qs Qs Qs Qs Os Qs Os Os Os Os #y cu $y %y &y *y =y -y _x ;y >y ak ,y 'y )y Hh >o qd le !y ~y ke p e 7w ov >o |j !s sv {y To sv ]y gk vv |j ^y /n /n /y 4f )j -f (y _y ge :y }$ n, 7@ *& =* O- = $ # = o! > $ [* [* ; > !, > > . - ; | & ] N$ U@ & . > N$ H= | - ; > . ^ ~ H= - $ Q$ P$ ^ | `@ P$ > N$ | ^ ^ ~ U@ | d ; 05 ; N$ ~ { ~ , / ~ 2 4 => ~ { { ) 4 ^ ) ) ~ d ( }y |y #( #( 1y 2y q> 3y Tj #( #( 4y 2n /& a 6 a e ~# ,# Y> [l #( #( }s n r s> 2, 7 q> xu #( #( Yj 5y n n !# c{ h Z$ -) h h L= }& Z$ E, 6y ][ #( m( 7y m 2; [# G 4* N /# 4* F= A 8* G F= G 8* Q@ I z N J P@ P@ U o> O@ O@ S E$ +i #( #( 5m 8y T J J t> T H t> U d- O= d- 9y 5[ #( #( 0y 58 r9 r9 ay .: #( W_ by y@ wr R{ al +. y0 %i bf cy B$ :3 F^ $% =. |h /3 =. /3 dy /3 dy /3 ey fy gy _( 7_ #( #( hy iy jy >b ky up 4h #( (5 ly my #( #( g: ny Iw Iw 8t Se F3 F3 +: 13 *_ }e =k #( #( oy Wf Wf =i [e =u Qq =i py qy #( #( ry sy ty ;k jf rs dt >k uy vy wy #( #( xy ]v Lk Lk Qd Hx w( #( yy zy Ay Ay By oj Ay (u [v oj Cy |v #( 1v Dy Zf Pk J0 Bl Ye Vi Vi Bl Bl Bl Vi Ey Bl Bl q q so 4v Bl 8e 8e 8e qo q q >0 gd |u ch kf gd gd El gd Fy T3 `e .f .f El tg 34 34 34 V5 .f Tc +x N9 !2 .f 7< 7< C_ 7< 7< J^ J^ C_ C_ 7< C_ J^ W5 3{ s~ K^ `^ W5 H{ }_ }_ f3 f3 _1 F1 @{ @{ <^ [_ J| y^ @{ @{ ~) Ud B/ t: y^ Ud t: t: @{ u: [^ V] u: [^ N0 _~ j^ k' k' k' _~ ] ] _~ _~ ] k' _~ >- c] g, u- k' .) >- e~ +! .) 6+ 7+ .) ]) ;~ i, 7+ l' b+ i, e= %$ %$ %$ e= G* G* G* ,- ,- G* G* u% ,- %$ Gy )w f+ -$ Q, h+ h+ k+ h+ n+ h+ m+ I* m+ h+ h+ h+ h+ !- !w '$ )$ o+ o+ 8> v+ Xi Fl Fl Yi Yi 9> #q 9> Yr Yi ~- F+ n; F+ W2 G+ W2 _i W2 W2 4c 4c W2 Hy _i L| ^7 _{ _{ f) L| L| _{ L| L| nf p; '; '; '; <~ _$ '; '; m, <~ <~ <~ *@ %@ %@ %@ <~ m, %@ *@ %@ &@ %@ #@ W+ ($ ta Iy Jy Ky Ly My &x Ny @s Qs Qs Qs Qs Os Qs Qs Qs Os Os Os Ps Qs Ps gv Oy Py %y %y Qy Ry !y 6g 6g Sy pv Ty Uy Ml 7w 7w Vy Wy Xy p je e Yy Zy Zy ni )s &o }q }q sv e @z #z <- :@ 0@ $z i@ l@ (. O- = t@ = {. 5& &. &. x@ !. &. E@ 5# @. .. @. .= +. R I@ Z H |# ` P@ P@ P@ A P@ A ", +"1* $ L$ ]& . V@ = $ * = $ & . . $ o! > $ Q$ $ > . - # [* $ & Q$ & N$ o! ; $ | $ ~ . 2) U$ - # ] & . & > & ; - & ~ ## R$ R$ S$ N$ | [ ] *# | N$ ~ | ] ## } } | { $# 6 2 ) [ 5 | { ( { } / %z #( #( -6 &z 6 6 6 *z $( #( $( =z 6 ~# a 6! e 5 j 7 -z #( #( eq k a Y$ ,# o ~# *z #( #( <7 St j L= c r p r n n p Y$ -) Z$ p +| or #( $( ;z p Y$ y t n^ ^# @= c m w {& A z F= A N >z I I O@ :* G |# I a- 3; J 3; +i #( #( wk z6 T O C, G$ T H T U I@ I@ U ,z #( #( 7_ 'z @. &k U^ )z !z #( 7_ ~z bf r5 cf a* {z y@ %i r4 /3 +. /3 .u df A0 /3 |h |h A0 |h x5 x5 |h Bw ]z ~9 ^z /z w( #( W_ (z >b >b ^5 up 4h #( (5 Ni _z :z #( #( r_ 0 ch kf n .q T3 j9 f !k gd Fy `e El V5 34 f 34 34 .f ~k V5 ~k Rk Ux N9 +f I| 34 J^ 7< J^ C_ J^ 7< e3 7< }_ C_ C_ zo }_ W5 i( }_ W5 s~ W5 1c W5 T] [_ F1 @{ @{ ~8 ^k F1 F1 ~) @{ @{ @{ @{ t: Ud Ud @{ 2c {7 u: [^ k/ M^ b] b] %, ] ] _~ _~ ] k' _~ _~ %, _~ k' k' >- 4/ B* -~ _~ l' .) i! 6+ l' 5+ i! .) l' #{ K> l' l' 7+ G* %$ G* e= G* b+ %$ G* G* K& f+ h, 0+ ,- u% n+ -$ h+ u% K& *; h+ l+ n+ m+ h+ h+ n+ m+ h+ h+ bz q+ q+ !- Fl 8> )$ 8> )$ m+ pj !$ 8> Xi 9> v+ Ao m9 cz dz cz (i G+ G+ G+ 4c W2 W2 W2 W2 W2 4c Ds _i ez 5c P9 fz L| nf nf L| L| Hl _{ _{ _{ '; '; Hl p; p; '; p; <~ m, m, m, <~ %@ &@ #@ >@ %@ <~ %@ #@ %@ #@ #@ #@ W+ S+ @f gz st hz iz My jz *x kz Qs Qs Ns Qs Ns Qs Qs Qs Qs Os Os Ps Ps Os lz mz Py %y %y nz |w oz pz qz rz sz tz uz Vy Vy vz wz wz wz je p /x xz wf 7w gi fk #t }q To ]y =o |j |j ^n yz cw dw zz 'l Az ^s d Bz b Cz Dz b$ h$ X* l@ l@ o@ q@ E~ w$ x$ ^. *. (* ). z@ A@ &. V .= 5# V J@ R V P P S J K@ J S J@ M H$ H$ N ", +"V@ 1* Z, = 0' V@ $ * . 0' * $ # . L$ . = . + S$ . = ; $ + . . H= ; & N$ Ez & T@ ; S$ . Q$ > | > ; H= . U@ | {c . ; U$ 2 ~ N$ X@ & U$ | 05 2 ~ H= ; [ { N$ [ W@ { X@ 1 1 I= 4 2 5 9 /& 5 [ W@ 7- Fz Gz #( #( Hz _7 V~ 7 k >p Iz #( #( -p Jz c i n ~# 7 {# ,# [l #( #( }s |& ~# c n ]c Q{ Kz d< #( $( :m 0- h h |& Y$ ~# Z$ Y$ Y$ ~# |& Y$ r Lz Mz #( #( Nz c m }# C G ^# r F= A G F= I N A N G O@ A I A c- z O@ G O@ Oz H O@ bp #( #( wk 8y T I H J |# G$ J J L@ G$ Pz Qz #( #( Rz Sz O= C$ I@ Tz Uz #( #( d_ y@ wr Ou al Vz . /3 Wz Xz /3 Yz F^ A0 =. /3 |h |h A0 /3 |h /3 Zz `z x5 Ck Br A .A #( #( +A @A ~9 7d Ek 4h #( (5 Fk 2h #A $A #( #( %A &A Li Re Se *A =v F3 Oq Uv ym #( #( Pi [e Wf Wf }e Qq Qq Qq =A -A #( #( ;A >A ,A 'A )u )A ;k !v ~i !A ~A #( #( {A ]A Mm {i {i lo w( #( ]_ ^A {i zn ul }c }c :v oj [v /A #( #( (A Ye _A Vi Ye =w Nx Q5 n8 Ye n8 Ye Ye Vi Vi Ye Ye Vi qo qo qo Cl 8e i9 35 Cl Jn 35 .x gd .q kf j9 j9 45 U3 gd .x El v[ V5 V5 f ~k 6v ~k ~k 34 Rk <} Vx 9e <} Vx J^ Z{ C_ 7< J^ 7< J^ J^ J^ C_ 7< C_ C_ }_ H{ }_ W5 T] W5 `^ }_ T] [_ T] [} J| y^ T] E_ @{ ~) ~) y^ @{ @{ t: E_ t: J| @[ t: B/ t: C/ Ud Ud [^ k' ] _~ _~ g3 _~ `' ] ] _~ k' k' _~ s] i! g, 6+ -~ _~ 5+ >- i; 7+ 5+ g, #{ 7+ l' :A K> 7+ 8+ a+ %$ G* e= %$ 0+ G* G* G* G* u% j+ %$ 0+ 0+ 0+ j+ m+ m+ i+ h+ y- L> h+ l+ k+ '- h+ m+ q+ m+ =; !- h+ =; o+ )$ !$ 8> o+ v+ Xi Xi 8> )$ Yi pj Xi )$ Yi Yi Yr Yr m9 W2 G+ W2 G+ 4c W2 4c 4c _i 4# V C$ @. P Y +% A J Y |; H A 8* 7* ", +"+ + + Z, = V@ > k3 $ !, $ $ = Z, $ > . + $ ^ [* $ V@ R$ $ . > & . . $ & ; ' | | ] ; H= > & Z! N$ X@ H= ## & ' N$ U@ ] ; U@ Z@ | ] ; X@ ~ 2 Z! ( 2 ; *# | W@ 1 %# 6- [ ~ J) N$ { ( d Y> ( { oA pA #( #( qA rA d W@ e 0 a sA d< #( #( 2} tA a 0 } e 3* {# uA #( #( eq e 0 ~# 8 e 0 U} -p #( #( eg #3 7 p q ~# k m p Y$ h % h vA Y$ wA #( #( xA yA % p (# D N `$ m I M /# z ~& m) n! I z )> Q@ z I z m) 3; M I S L c7 #( #( 5m 8y Oz n> T G$ L@ d- L@ T G$ zA AA #( #( #( K< 7s 58 q9 0* r9 BA #( #( CA DA bf EA wr r5 {z df Wz df ,. F^ A0 |h /3 /3 |h A0 A0 /3 /3 A0 |h |h A0 :3 Br Fq FA #( #( GA ~9 ~9 Y6 HA 4h #( (5 IA x4 r/ JA KA #( #( <| LA Re Se ms on Se on Iw Dp #( #( MA Qq =u Wf =u NA Qq Wv OA PA +_ #( En QA RA Pw SA !i >k !v >k TA ts #( w( UA VA WA Lk XA Uw w( #( #( YA Mm Lk :v A7 [v ul [v ZA `A #( #( B J0 J0 n8 J0 Ti Vi o8 Bl o8 Ye Ye o8 qo qo =w Ye Bl fd Rc q q `f ch to ch .g gd n T3 n j9 T3 gd j9 T3 j9 El gd V5 .f V5 V5 !k V5 V5 ~k .f ~k Ux I| Vx ^1 +f Z{ J^ J^ C_ J^ C_ J^ Z{ J^ ]k 7< 7< C_ `^ }_ }_ W5 }_ }_ `^ 1c [_ [_ [_ }_ G{ @{ o{ ^k r8 y^ @{ F] [_ y^ y^ @{ y^ {7 B/ y^ y^ y^ [^ lf Ud b] [^ k' _~ k' k' k' ] k' k' k' %, _~ _~ Y] e~ i! g, B* k' >- 5+ i! >- l' #{ >- l' .) +! K> a+ ]) G* G* ^) G* d+ 0+ G* %$ G* G* G* G* %$ 0+ d+ 0+ g+ n+ n+ i+ *$ h+ h+ n+ h+ n+ h+ ({ h+ m+ m+ l+ o+ q+ n+ Xi 8> 8> p+ )$ o+ )$ v+ )$ Fl !$ Yr v+ Xi 9> Yr Yr .B &r G+ m9 G+ W2 W2 G+ G+ 4c _i 4c $q P9 _{ 4c _i _i $g ~w _$ L| _{ L| nf p; '; <~ '; '; <~ '; _$ <~ '; <~ <~ <~ p; %@ ;@ %@ %@ +@ %@ m, %@ %@ +@ @@ V+ a> +B @B ]d #B iz $B %B &B Ns Ns *B =B bu bu Qs Qs Os Qs Os Os Os Os Os Ps -B mz %y nz nz nz nz nz ;B Wy wz xz >B ;B ;B &y nz nz &y &y eA wz wz !y ,B !g 'B To &o ^n nu gk nu vv [x hk 2q `y )B 1i !B ~B {B ]B 3b ^B /B (B l$ =* A= k> -& O- C= >& w$ !. +. A@ !. V> ). E@ .. .= X G@ 7# C$ D$ M@ 2# L@ O P@ ` A M I A P@ A ", +"L$ ]& R@ $ + > U@ . Y! ]& J$ = . > L$ Q$ o! + . $ $ $ * 0' M$ ; U@ H= Q$ ] ] *' (& $= N$ | N$ - N$ }* N$ U@ V@ Z@ H= & ~ X@ ; > ^& ( [ ## { 2 H= =' 2 ) ~ J] ] ## { ~ [ T- &= ) ) 1 4 [ 5 { ) ( ( _B H1 #( #( :B } &# d ,# 3* Y> .i #( #( }s $# {# Q{ c :& a h }B #( #( s< |B c s> ~# A~ Y$ s> y s> c{ ^# /# ,> s> 1B d< #( #( 2B /2 s> D N b' C F= M A A 3B L/ z z x O@ ^# M w z I w |# M I P@ U +i #( #( wk 7l J L 3# E$ O@ L@ L@ L@ 4B G2 7_ #( #( 5B =5 O= O= 6B 58 y0 7B N_ #( #( 8B 9B a* r4 H9 0B al !& G; ,. .. aB bB A0 dy F^ cB |h A0 dy dy df |h dB A0 eB fB gB #( #( hB 82 >b jy HA *k #( (5 $u ;1 2h 2h iB 46 #( #( jB kB Se on on }e F3 on lB #( #( >i Wf ;u Wf [e Wf =u Qq mB nB oB #( #( pB qB ,A qg if >k rB sB tB #( #( uB vB vy wB XA zn Hx w( #( #( xB yB zn zn zB Ay oj Jx AB w( #( Sr BB 'k 'k Pk Q5 'k Ye az Vi Ye o8 Bl Bl Bl `w CB q x x Cl Ye Bl q qo qo .g `m DB EB FB El ch kf j9 j9 Fy .x gd T3 V5 !k .f f El V5 v[ .f .f V5 Rk wo Mn 7< Sc +f 64 C_ e3 J^ J^ C_ C_ C_ C_ C_ 7< K^ }_ `^ i( GB 3{ }_ W5 1c [_ _1 [_ T] /~ F1 J| f3 ^k M^ y^ @{ 74 @{ y^ @{ @{ 75 O} :! M^ y^ c~ @[ y^ [^ C/ b] ] k' _~ _~ k' %, _~ _~ ] k' k' ]{ i! g, g, 5+ ] >- 7+ e~ i; l' g, e~ 7+ .) l' i, b+ l' %$ ^) 0+ G* e= G* G* %$ %$ 0+ G* ./ d+ %$ 0+ 0+ f+ h+ l+ n+ *$ h+ v% h+ h+ m+ h+ h+ -$ HB h+ =; 8> !- m+ !- )$ p+ 8> o+ 8> o+ 9> 9> 8> !w 9> Yr ~- Xi Yi 9> Yr G+ G+ G+ W2 G+ W2 4c _i W2 _i W2 4c 4c [A ,; _i P9 f) ~w Xx L| _{ _{ ~w _{ <~ '; p; <~ <~ p; p; '; <~ m, <~ m, '; '; &@ &@ #@ #@ #@ <~ &@ %@ #@ @@ T+ ^l IB JB =e KB LB MB vt >q NB kz au *B au NB Qs Qs Qs Os Os Os Os Os Os Ps OB 8A Py 0A nz nz nz nz nz PB &y nz &y eA 0A &y &y &y &y &y &y >B Wy /x (x wf QB ` A #= P@ I 2& H$ ", +"# = . # . # > . J$ + + . . - * 0' > U@ $ $ * = = . $ ; & . = # ) 5- %= + & > S$ %= Q$ Q$ V@ Q$ ' Q$ & Q$ . ] ) Q$ [ [ 2 ] ~ | %= ] { *# > | } *# O$ ## Z! *> { [ X@ ;# *# 8- X@ Y> } ) *# WB XB #( #( YB ZB 6 $# 6 < 6 $# } `B C #( #( .C } j a 6 e e [l #( #( eq ~# ]c X$ ~# ~# 0 q +C cq #( #( @C #C n s> n t 4* O' -3 $C v6 p Z$ p g4 %C #( #( ][ &C *C ^# >= D w 2; z +( =C -C ;C I I z K@ z q! M z |# I M c' T |# J `j #( #( wk 7l T L J J T J >C ,C 8m #( #( #( `| 'C 58 O= 58 7s r9 7s )C !C #( #( .: ~C bl r5 cf $i R{ {C ]C g_ ^C /C (C _C :C A0 - ]) i! >- l' .) +! 7+ 7+ 7+ G* i, i, 0+ e= %$ 0+ 0+ e+ %$ 0+ K& 0+ 0+ K& u% G* )w l+ *$ h+ y- -$ h+ ({ q+ h+ h+ *$ q+ m+ h+ !- q+ m+ bz !- ({ 8> 8> Xi 8> tC Fl 8> Yi 9> &r Fl G+ Yi Yr Yr Yr F+ W2 G+ F+ 4c G+ W2 W2 4c $q _i _i $g P9 uC L| _{ ,; L| L| L| L| ~w p; _{ nf p; '; '; <~ <~ p' '; nf <~ ~w <~ <~ >@ %@ *@ %@ +@ <~ _$ @@ Z+ R+ vC wC xC %c yC zC (w AC BC CC *B au *B *B bu Os Os Os Os Os Os Os bu *B *B DC EC FC %y nz nz PB &y &y &y %y nz GC HC *y PB PB PB &y &y &y PB PB Ry (x HC qd nu IC IC IC vv JC Nh pi {s `y pi KC ik LC Lh Pf MC kc Xd NC ;@ X% m$ -& {* {* ;& o@ :. a6 !. d# v{ >. *. 5# 5# &. 5# 5# V n) $> F@ T T 4# O @% O J@ P@ I P@ K@ I ", +"# . + # = = > . > Q$ $ ]& = > 0' + & & Q$ > > $ = $ ] & ; ] . # ; ^ S$ ; > & Q$ U@ Q$ ; ; - o! | N$ | . , ; |* /& ~ & S$ ) ] - - *# X@ > N$ N$ ~ ~ { V~ [ 6 2 [ ( 2 { ^ } } N$ ~ OC I1 #( $( PC ## 1 b d => Y> 6 ~# a QC #( #( H[ RC a 0 L= h i SC #( #( Pt ~# |& ~# b 8 ~# A~ n TC 7_ #( #( UC VC WC XC YC ZC 51 _o _o m< `$ p r `$ *3 `C #( #( 7_ D .D +D @D #D $D R[ S[ m( 5[ s6 N B z G O@ I z N M P@ >z E$ J M L dj #( #( %D &D k} *D =D -D ;D >D ,D 7_ #( #( #( M_ 'D n5 O= 58 6B ia 58 7s H9 )D 4: #( #( 7_ !D ~D {D fp ]D ^D /D (D W_ .: _D =. _C |h :D #( D3 b ~9 jy 3C 4h #( (5 Fk 5D 2h hs Iw 6D 7D +_ #( 7_ 8D 9D *A 13 Oq *A 0D Mq #( #( aD bD cD dD eD fD =u Qq NA gD hD #( #( En iD jD kD lD tB P: #( #( mD nD 5z 5z Qw zn Mm Uw w( #( oD Yp w( pD qD rD sD tD uD #( #( Sr vD >8 'k 'k Zf wD 3v Jx Zf =w o8 Ye %r Nx qo Ye qo Vi qo q q Bl q Bl qo x .g Vr kt Vr Vr |u xD yD n Fy j9 gd El gd gd !k 34 34 f !k 34 .f .f ~k .f V5 Mn ]k ]k zD AD C_ J^ 7< Z{ C_ J^ 7< e3 J^ C_ zo 1c }_ }_ j/ W5 }_ `^ j/ 1c W5 f3 W4 r8 r8 E_ !/ ~) y^ @{ y^ @{ ^k ~) @{ y^ @{ t: ~) :/ y^ @{ Z: A) q{ S( b] `' k' _~ k' k' k' _~ ] ] k' _~ b= d= k' k' A* ^{ k' B* +! g, i! .) >- w- .) t% 7+ l' l' 7+ l' K> b+ G* %$ %$ e= d+ %$ h, 0+ *$ G* %$ u% 0+ d+ Wx -$ h+ h+ n+ m+ h+ n+ n+ h+ h+ h+ m+ m+ q+ q+ m+ ({ m+ p+ q+ BD Xi Xi Xi CD 9> Xi 8> Yi 9> Yr D+ Yr 9> Yi Yr D+ G+ D+ G+ G+ W2 G+ W2 4c 4c 4c _i $g On _i $g f) f) L| _{ [A nf nf _{ nf p; p; p; L| <~ m, '; <~ <~ <~ p; p; %@ &@ +@ %@ %@ p; +@ _$ &@ Y+ T+ ]w DD Mb ED Is FD GD HD ID NB *B *B au *B NB *B bu bu bu bu NB bu bu *B *B JD EC mz 9A nz PB PB &y &y &y &y PB vz KD cA nz PB *y &y PB PB *y PB LD >B PB MD wv ]y sv ]y gk &t hk pu ND OD PD QD ;o RD :x SD Ac TD +a UD <~ VD Y% p@ x$ ^* :. q@ :. >& ^. =. $% V> 5# A@ (* 4& z@ 6# H@ }; M@ C$ P P 7# H K@ S H$ Q@ M@ Y Q@ A ", +"> Z, $ 1* T@ . Q$ > * $ + ]& ]& + $ $ $ . = Q$ $ > . Q$ Z, - & - Z, + $ | =' & 1) ] ; ; ' & . > ; o! ; N$ U@ X@ ] ] ; ^ ; ] U@ ~ 2 Y@ 2 ;# *# [ Z! | [ ~ /& | , [ ## ] Y@ } { 2 4 | WD XD #( #( YD ZD } Y@ , } x0 i j ( a `D j< #( #( E _7 /& ,# ~# $# [l #( #( .E ~# ~# L= 0 0 p e m +E @E #( #( #( #( #( #( #( #( #( #( v2 #E m Y$ ^# h p WC or #( #( #( #( #( #( #( #( #( #( #( ][ $E O@ E; A 8* j4 I G A |# O@ z o^ z Q@ d{ +i #( #( #( #( #( #( #( #( #( #( #( #( #( #( %E &E 58 58 4# O= O= ia 58 O= n) X *E !z #( #( #( #( #( #( #( #( #( #( #( .: _D A0 _C A0 :D #( #( #( #( #( #( #( #( #( #( #( =E -E jy ~9 ~9 ;E >E *k #( (5 Ni ff ;1 x4 ^5 =2 ,E 'E #( #( (5 )E on F3 on Se !E ~E #( #( #( #( #( #( #( {E ;v =i Wv ]E ^E /E #( #( #( #( #( #( #( #( #( N( (E _E :E 5z a+ c+ 7+ a+ G* G* ^i %$ K> 0+ %$ %$ %$ i+ u% G* f+ f+ d+ d+ l+ h+ *$ n+ m+ n+ m+ N& h+ l+ 5E ({ m+ ({ q+ q+ ({ h+ =; ({ ({ BD 8> 8> Fl 9> 9> 8> Fl Yr Yi Pn Yr Yr Yr cz G+ W2 W2 W2 On W2 _i On _i On _i 4c f) ,; Xx _i L| _{ _{ L| f) nf '; _{ _{ p; '; '; _{ 6E _{ p; '; ~w %g wg '; p; &@ *@ %@ #@ %@ p; _$ +@ Y+ U+ O+ 7E a 8E Is .y 9E HD NB 0E au *B au *B *B *B *B *B *B au *B *B *B *B *B bu DC aE Oy %y &y PB &y PB PB PB Yy >B MC *y *y *y PB PB PB PB *y PB nz PB Qy bE cE dE ]n gk IC ^n Wo ^y Kj eE Wg fE gE &l . > + = . S$ & T@ $ ]& V@ - # $ ; k) $ # $ V@ Q$ U@ & ] U@ ~ Z! & ] ] . & ; | { ~ Z! | ~ 4 ## { 1 ! | N$ 1 ( ## ~ { { ^ { 4 7 d N$ < D, *# *# Y@ 2 kE $( #( ][ lE 4 D, ( | ) } 4 6 [ d ## mE #( #( b} nE a i ,# 8 uA #( #( eq 6- C; 0 n ]# oE e r r pE qE b} #( #( #( #( #( #( #( m( rE sE D m /# q m Y$ tE uE #( #( #( #( #( #( #( #( #( s< vE wE /# I H$ F= m) %> xE E; E$ P@ h] 3# E$ P@ 3& bp #( #( #( #( #( #( #( #( #( #( #( -4 yE zE AE G$ BE O= O= P' T 58 r9 58 O= C$ r4 CE 88 #( #( #( #( #( #( #( #( #( w} DE EE F^ FE |h GE q1 7_ #( #( #( #( #( #( #( #( HE IE jy 82 82 >b ef hl *k #( (5 JE 2h KE r/ 2h LE Se om S< #( #( 4h ME on on 8C ;u NE qy &: #( #( #( #( #( OE =i NA Qq Qq -u PE QE #( #( #( #( #( #( #( Mr An RE SA _E vy SE TE UE VE w( #( WE XE YE |v #( #( #( #( #( Wm ZE `E Zf Zf J0 qt Xi %F 8> 8> Fl Yi Yr Ao Yi &r cz Yi &r W2 W2 W2 4c 4c W2 4c 4c 5c $g _i F ,F au *B *B *B *B *B *B *B *B bu *B JD JD *B *B JD DC 8A Py 0A PB PB *y PB PB *y 'F eA bA cA cA *y *y PB PB &y &y &y 0A )F At !F sv ou ^y sv gk bw ou `y ~F {F yv ]F (j ^F dc /F A@ ). -. &. 3^ z$ T E@ B$ !> V Z O J C$ T H M x M@ H S ", +". ]& Z, + = X! $ . # ]& + - + . $ . ' $ L$ ; $ V@ ] M$ + * $= . $= & $ . > % + & > ; ; ] ; Q$ }* ' * . S$ S$ %= ## N$ | X@ ~ P$ ] ) ~ ] %= 2 { X@ ( ; U@ ^ X@ ) 2 Z3 ## ~ [ $# /& 2 _F :F c L= s> {# L= h ~# ,# 4F ^o 5F H1 $( {[ 5F 6F 7F 8F s> }& h k `$ ]# ~# t 9F 0F aF bF d< #( s< o< cF dF eF M= E; o^ I 3# /# +% ^# F= z F= 3; P@ G n! z M fF gF hF iF iF iF hF jF kF lF mF nF oF L@ r! pF Y P' 58 7s 7s qF O= r9 58 58 O= q9 ja rF sF vw tF N_ #( M_ Aq uF vF wF |h _C ja ,. dy /3 xF ^D yF zF yr W_ +_ &2 AF BF CF eB ~9 b: 82 >b ~9 DF EF FF GF HF hs Qe << 2h hs Jc IF JF KF xm LF MF NF on 8t on *A OF PF QF ~E RF SF SF TF Qq NA OA Wv UF UF VF WF ;A XF w( YF ZF `F G .G ~i `v VA Qw +G WA vy @G w( #( WE #G $G %G &G *G +_ =G -G ;G >G [v 'k !w h+ h+ )$ 8> !w 8> 8> 8> Fl Yr 8> Fl Yi Yi 9> (i ~- Xr #x #x W2 F+ ~- W2 4c W2 W2 4c 4c On On '; _$ ^G ;@ #@ #@ p; Z+ T+ /G (G _G :G Is yC KB #n + Z, = . + $ M$ ; ]& # $ L$ . # = $ $ U@ . Dv & . > . > > # > . > 05 S$ & & & = & U@ ' Q$ ] X@ | > | ~ | ] 2 1 ; ~ U@ | ] ;# ~ ; ~ ; & - ~ N$ ) : &# ~ [ 5 ( 8- Z! ] ;# d [ e ( D, J= a !# 7 ( ( 7 ># ,# 7 0 8 8 6 M' a a i 6! e a 6 z: [& X$ c a h L= a' p `$ 0 r i ~[ 6G 7G 8G ~[ m L= m Z$ L= Z$ ^# 1; m Y$ `$ D /# 9G 0G aG bG cG dG eG w b' I x I $] M w z A P@ E; A :* J O@ O@ 3& P@ M A E$ U^ J E$ J O J P@ O J I@ L@ L' 0* I@ O= 58 58 G$ O= T n) O= r4 ja r9 r9 r4 58 fG gG hG iG jG kG lG =. R' ,. |h mG /3 A0 /3 A0 /3 |h nG oG pG qG rG sG Yz tG Br gg >b uG jy >b jy >b vG vG ;1 hs 2h @A x4 2h Jc LE x4 LE Se Uv Se Se 8t 8t Oq ;u Re }e [e [e =i Wf 8t =u NA NA Wv [e NA wG Wv ;v xG yG zG AG BG CG rB ml ~i ;k Qw DG EG :E FG Hx w( #( GG HG IG JG KG LG MG NG OG [v Jx PG 'k [v [v QG Nx - 7+ g, 5+ t% l' g, 7+ t% K> K> .) 7+ G* %$ %$ K> %$ i, G* G* 0+ 0+ K& *$ G* d+ 0+ d+ 0+ k+ h+ k+ -$ h+ n+ h+ m+ h+ ({ m+ m+ q+ q+ q+ !w BD m+ )$ )$ !w !- )$ Xi )$ Yi Xi Fl qt cz Yi (G #x &r m9 cz m9 G+ W2 4c _i 4c 4c _i 4c W2 _i L| uC P9 On ez nf _{ L| nf _{ f) F% L| nf ~w p; m, <~ '; m, '; <~ m, '; <~ '; '; ~w o= D- %@ +@ _$ _$ T+ Q& XG @B Da zC yC MC YG * ~* u@ -& ^. >& v@ '. x@ A@ -. z@ &. A@ +. @. ,= P D$ V P ` P@ I L@ 4, P@ +% A N@ |# Y ", +"= # $ Q$ > @ !, & $= & > L$ . + $ ]& + X! L$ = ]& V@ ] - l) > # Z, . ' % + & . & ; Q$ $ ] . Z@ ( W@ P$ Q$ Q$ =' . & f] | X@ > & | ^ S$ /& > ] ~ ^ { X@ } | &= 4 4 == } *# ## { 5 < ( ^ V~ ,# ## Y@ { d ## Y@ J] } 0 => U- [ ,# 6 7 b V$ 7 6 a e i ~# c k c a 0 a h c h 0 0 n n k h h |& q Y$ -) n p r h y % p Y$ Y$ w /# ^# ,> ^# 1; t t w ^# K /# ^# h t Q@ P@ F= M D z A G |# E$ P@ F= P@ a7 A J C, 3# Q@ M L L T P@ I T A: 3d r! tw 3d L U E^ E^ O= 7s 0* G$ V 58 r9 r9 r4 O= @. @. ja ja wr G; %H &H 0B %i $i Vz F^ F^ /3 /3 Ji A0 |h |h |h `z A0 dy *H Yz dy dy Br ~9 ~9 ~9 >b ~9 jy ~9 vG ~9 KE hs 2h KE =H Qe 2h Se hs ;u on ;u =v Oq 8t ms -H ms 13 bC 6h Qq -H Ik NA =u =u =i Wf ;v UF ;H >H ,H 'H )H !H ~H {H ]H ~H ^H /H (H FG _H :H %$ a+ G* G* f+ 0+ 0+ j+ d+ d+ f+ e+ d+ g+ k+ I* k+ m+ h+ m+ n+ k+ m+ -$ m+ h+ m+ m+ !w q+ =; !- Xi ({ !w Fl Fl Xi Yi Yi v+ Fl v+ Yi Xr n; Yr &r dz Yi W2 4c 4c _i _i W2 4c 4c 4c 4c P9 ^7 $g 5H 6H uC L| f) L| _{ _{ nf p; nf nf ~w '; _$ '; '; <~ <~ <~ p; m, <~ <~ +@ #@ :- &@ %@ '; Y+ L+ 7H 8H 9H 0H aH bH cH dH Rs [w =B }G eH au *B *B *B JD *B *B *B *B *B *B *B JD *B *B *B JD JD EC 8A Oy 9A nz PB *y *y fH `G `G `G PB PB nz %y 9A mz aE OB Ps Qs ]e bw sv |j ^n vv vv ^y gH wv hH 8w ri .z [j iH jH kH ui lH mH R> }@ =* nH j@ m@ 0& m ^# ,> s> L= ^# p /# 2; 2; I /# /# [& /# E I w A }# I I Q@ E$ K a- I O@ M J J H$ d- L M@ :* U L t> |# d- J |# |# 3& J T H I@ K) 0* qH O= O= O= 7s 4# H9 O= q9 @. rH q9 &H bf @. Ou sH $i cs W- |h L) ,. =. A0 F^ Xz /3 =. A0 Yz A0 Yz Zz Yz :C dy eB >b >b ~9 >b 82 jy tH ~9 tH vG x4 x4 2h uH 2h 2h LE IF LE vH 9C wH Se ;u 8t on on ms -H xH ;u =u yH zH =u [e =u AH BH OA OA fo CH DH EH 'A FH GH ~H HH CG IH RA !i .G Pd VA :E JH w( #( WE KH Zq XA zB JG zn zB XA - i! i! 7+ e~ 5+ t% 3+ 5+ K> 7+ 7+ %$ K> l' K> G* a+ %$ u% G* %$ f+ u% 0+ K& K& d+ Wx LH m+ i+ I* m+ m+ h+ m+ 5E 5E ({ q+ ({ m+ !w q+ q+ m+ !w ({ Fl 8> Xi Fl Fl Yi Yr MH Yi cz Yr @f NH Yr cz Yr &r G+ _i W2 _i 3c 4c _i 4c _i _i 4c _i $g ot P9 $g Dz _{ f) nf nf ~w ~w %g ~w <~ <~ '; nf ~w _$ m, S> <~ '; <~ #@ %@ [$ #@ #@ _$ V+ ta E% OH PH =e %x .y QH RH SH TH Ps UH VH *B *B *B *B *B *B *B *B JD *B JD *B *B *B *B *B *B JD JD |G 8A mz FC 9A 0A nz PB &y &y nz 0A 0A 9A FC WH XH DC Os Os Os su cw YH |j vv ZH tv `H 2G 2G xv I me .I _j Ih +I @I #I $I %I +@ V% 7@ >* p@ h# ^* _. :. v@ x$ E~ v@ .= ). x@ ). A@ 4) e- 5# G@ X J S +% ` P@ S J T Y E$ N Q@ ", +"$ ;b ]& R@ M$ ]& $ $ ]& $ & + ; V@ = > . > 0' = > = $= . k) > - Q$ Z, ; > Q$ Q$ > > + $= R$ N$ & Z, H= 2 N$ P$ S$ ^ ~ | ) ] ; & ] - | T$ ^ S$ |* # ) { ] ) X@ { ) ; { ) { [ Y@ [ X@ [ 4 4 7- 5 ( ## } 9 e $# d +# a 1 $# 3* $# 6 9 a e ># i ~# 6! ># c L= V) e a e &I ~# n Y$ h C; j h |& r `$ c s> !# ~# `$ ~# p p y C; ^# b' L= p m s> c I ,> Y$ D E N N w G w G E 5* I z I c- |# |# w F= P@ P@ z M A P@ ` m) H$ *I T H T M .~ r! r! Q J d{ V 0* tw =I E^ qH 58 58 58 58 ia -I 58 7s q9 rH 0* q9 ja Ou {z EA Wz Ou ;I A0 F^ >I ;' A0 |h ,I dy |h |h Yz |h dy dy *H Yz Yz 'I >b uH ~9 >b ~9 ~9 jy jy vG vG hs 2h y4 )I Qe hs hs ;1 !I ~I wH wH Uv 8t Oq Oq ms wG {I ]I ^I =u -H =u Ik NA OA /I NA /I Wv (I UF 'H )H rB _I :I - i! .) l' .) %$ b+ 7+ @$ 0+ K> b+ 0+ %$ %$ 0+ %$ %$ u% *$ %$ %$ f+ 0+ 0+ @q h+ h+ q+ h+ q+ m+ q+ m+ ({ ({ ({ ({ q+ ({ ({ q+ q+ ({ !w Xi 8> 8> Xi 8> cz Yr Yr Xi Yi cz Yi n; cz dz 4c 4I G+ W2 4c W2 4c _i _i _i _i P9 P9 On f) _i 5I nf 6I _{ L| 7I [A L| _{ nf nf <~ <~ '; <~ wg p; <~ m, <~ m, m, p; '; #@ +@ +@ Y+ Y+ P+ 8I 9I 0I mc ;r Is aI 7A bI cI #y bu CC CC *B *B *B *B *B *B *B JD JD *B au au *B *B *B *B JD JD JD |G XH aE mz Oy FC FC FC 9A 9A Oy Oy WH 8A EC DC JD bu Qs Qs )r dI Uo ^y bw cw ^y ]n cw 2G pu {F eI eI :q fI +m y 0b gI hI @@ N% X, U* >* -& w$ s@ <. /* /* {. '. &. $% *. A@ .= E@ #. B$ Y J #. M@ ` L@ J J J I Y H@ P@ #= ", +"0' ;b L$ L$ . = + # L$ ]& |* $ L$ ]& $ = V@ = 0' > & > ] - # o! & ' . ; - . . - > # 8- > V@ > > $ o! ; Q$ ~ 2 | N$ ; ~ N$ ^ ] ; N$ 1 ) , . - 2 2 Q$ U@ { -> *# V~ / | d 4 } 5 [ X@ X@ 5 4 1 ,# [ 7 1 b ( 6 e ,# $# d e 1 7 a k &# 7 0 0 ~# &# $# g ,# a e 7 D, ~# L= 0 ~# L= ~# p L= 0 r i [{ c [& n A~ n n^ -= p ,> m Y$ n D m Z$ y s> ^# N /# /# z G ^# G G A w E$ O@ c- H$ N I F= P@ J O@ F= 3& I 3# A E$ J iI E$ H U jI r! d- U Q H 0* H I@ tw tw tw 6B 58 E^ n) E^ q9 58 r9 rH 7s ja r9 1o Ou {z EA bf Wz kI lI =. _C mI Wz _C |h ,. dy A0 A0 dy |h A0 Zz nI dy dy oI pI jy 82 Y6 jy >b ~9 qI vG vG Ab 2h LE ;E wH x4 2h Li rI hs Re sI Uv *A on ms -H tI 8C -H 9C =u uI zH OA ;H UF Wv =u Wv =u vI wI ;v ;H ty >k VA 1z IH xI yI VA zI RA AI - g, 6+ 5+ l' 5+ i; t% t% b+ a+ @$ i; %$ 0+ 0+ 0+ G* a+ 0+ 0+ %$ e+ i+ f+ %$ f+ d+ d+ 5E m+ h+ -$ m+ m+ m+ m+ @x q+ ({ q+ q+ m+ q+ q+ !- q+ BD II Xi Xi Xi Fl Xi Xi Yr 9> Xi Fl Yr #q 3c m9 Yr @f &r 4c 4c _i 4c 4c On On On _i _$ L| _{ $g @/ On $g :- _{ _{ L| _{ _{ wg JI wg _$ '; p; p; ~w p; '; <~ S> '; <~ p; p; +@ Y3 +@ @@ Y+ xg o; KI LI MI (w bH NI Go OI PI QI -B RI VH *B JD JD JD JD *B *B *B JD *B JD JD *B *B *B *B JD *B JD JD JD DC EC EC XH 8A 8A 8A 8A aE XH EC DC JD *B *B bu Qs Qs Ny SI o@ <. C= >& 5# %% ^. ). z@ 4) 5# }; z$ D$ L@ F@ L@ Y P Y O H S S M I P@ A ", +"+ L$ L$ + = 0' # $ + > U@ $ & $= $= & > Y! + + X! $ & & ; ]& V@ # $= S$ = ; Q$ Q$ V@ U@ S$ H= V@ %= Q$ ) $= > 2 & N$ N$ | N$ > ^ & H= . ] | T- %# D, | - > | Q$ %= W@ ) N$ d d => ## W@ 1 } { } X@ <& 5 7- { X@ d $# b 6 ## 9 7 0 x0 8 d 6 $# 6 0 ( } 0 0 d e a : a e 0 a n [& a ~# L= i c h L= _# n ~# L= ~# |& h `$ q ^# Y$ L= r m h F ^# t 4* ^# @= z I 2; w w % 2; G N {& |# F= M F= A I I 1& a- m) G O@ F= a7 M h] J T L M J L H H T r! T U^ 3d E^ tw G$ I@ `I 0* `I 0* P' 58 58 58 7s r4 @. q9 q9 Ou J y0 cs .J +J G; ,. @J #J 5o Wz |h ,. cy dy dy Yz |h |C Yz Yz |h Zz Yz 9o $J eB ~9 ~9 ~9 jy @A jy tH @A ;1 =H r/ wH 2h IF wH Uv hs %J IF wH hs %J Se 8t Se {I ~I uI &J =i wG AH Wv Wv Qq OA /I wG OA OA ;H UF *J *J VA IH =J CG RA gC Qw FG VA :E -J JH w( #( ;J >J XA JG zB zB JG 1I 1I Ay CI qC ,J Ww ,G Nx Jx ,J -w qC -w 'J RG az Vi qo az q Ey qo q 3E Bl q x q qo q x )J x q HI ch x n ch n .q |u gd Fy !J gd gd kf n El 6v vo f 34 .f .f ~k ~k .f Mn Ux )2 Rk yo +x C_ C_ C_ C_ C_ C_ C_ C_ 7< 7< C_ C_ }_ }_ f3 W5 }_ W5 7< W5 f3 [_ [_ W5 F1 ~) ~) @{ W4 J| @{ t: y^ y^ ~) @{ :/ !/ B/ c~ M0 B/ A) y^ y^ [^ b] A) ] %, k' _~ _~ _~ ] k' l% k' _~ _~ ]{ 6+ u- w- 5+ i! t% g, g, l' 5+ 1+ 7+ 7+ a+ b+ 7+ 7+ b+ %$ e= 0+ 0+ G* e+ %$ %$ G* %$ *$ u% 0+ ~J 5E fh {J 5E m' I* m+ ]J m+ ({ ({ q+ q+ q+ q+ m+ ({ BD q+ ({ )$ )$ 8> Xi Fl Fl 8> 9> Fl Fl qt .B cz 3c II cz &r Yr W2 4c 4c 4c On W2 On _i On ot L| L| f) (B ~w 6I <~ <~ <~ <~ <~ m, %@ m, S> p; p; p; &@ +@ +@ _$ V+ vC ^J /J %a (J ;r _J 9E :J -B 6J ;* l@ *& q@ s@ x$ w$ !. d# -. ). e- . &. &. =. #. V B$ P X P P ` P P@ H K@ K@ P@ S E; ", +"# .( ]& . ]& 0' + = # ]& # S$ & ^ $ 0' R@ R@ * $ . & & . $= $ Q$ ] T- + = & $ ; [* V@ . H= ~ ~ | & & $ ! { R$ & S$ ; [* ^& $# ] ) %= S$ { : ) N$ R$ N$ ] ) ; /& 1 ( /& { ~ W@ /& ~ [ /& ( /& | ( { { ( b [ ## 6 5 6 Y> [ [ < 7 } 0 {# 5 } 0 i e o ,# X$ e 6 6 a F! e i e 6! ~# 0 A~ g i h n 0 a n ,> p `$ l t p h Y$ ,> 1; Z$ ^# /# t m h w m D G n D G E; {& z BD qt Fl Fl Yi dz Fl qt Yr Yi oJ pJ <~ <~ nf '; p; %@ m, S> S> '; m, '; #@ @@ V& Y+ vC qJ rJ sJ tJ uJ QH vJ Wn @s qb Aa $e wJ Ps CC *B *B *B *B *B *B JD JD DC DC JD JD JD JD JD *B JD JD JD JD JD JD *B JD JD *B JD *B *B *B *B *B *B *B *B *B NB Os yt xJ nu ]y IC nu yJ $t ou dw zJ 'l .I AJ BJ :x 3J =F Yb 0I CJ DJ *@ f$ 0@ t$ ;& x$ O- o@ w$ '& [, W> {. v{ 5# l> W~ . E@ #. R 2# 4# 2# $> ` Y ` M A G Q@ z Q@ ", +"# V@ M$ $ & ]& ]& + = p9 L$ > S$ + Q$ . V@ Q$ U@ - ' . `@ ]& ; %= - * T@ N$ # $ > & Q$ & & ; & # ; (& - . H= U$ U@ %= 8- H= N$ H= Q$ } J) { | U$ 1 d { ] ; | | H= N$ ~ ## $# ~ R$ | & ~ X@ Y@ 4 1 X@ ( } | 1 -> 7 6- ( Y> ,# 5 c D, { a 6 a 0 i 5 ( [& a 0 6 a 0 k ,# a c h 0 q> 6 L= {# 0 ~# ~# 0 e 0 1; c n r c{ w n^ `$ % L= f 0 Q{ ^# Y$ % m p 1; w m Y$ z w F= G F= E; N I F= 3# z Oz A O@ |# G A P@ E$ H$ T J E$ d{ +% T >) T J T 1# 3d G$ U^ tw 58 G$ 5, 4# I@ 3d `I 0* 7s 6B 7s 58 6B q9 r4 r9 rH @. Ou ja ja ja {z r9 cs F^ Ji Wz 5o |h :3 #J |h dy dy A0 EJ ]z Yz 9o :C tG Yz 8J jy 7d >b jy ~9 jy vG jy FJ ff GJ IF IF 5D Qe wH IF Iw hs IF wH HJ ~I ~I wG HJ tI zH zH tI &J IJ uI Qq Wv NA NA OA Wv JJ {H CG KJ Pw .G 1z =J Pw .G 1z LJ MJ :E }I =J (H @G w( #( NJ |I zn zB zn zn XA $w JG zB JG 0 |u |u j9 gd Fy Fy .x .x PJ f 34 V5 !k ~k .f 3H ~k ~k .f yo +g N9 AD yo ]k Z{ J^ 7< e3 C_ C_ C_ 7< W5 7< 7< T] 3{ `^ `^ W5 `^ `^ zo i( r8 [] X5 1c F] y^ @{ J| QJ W4 ~) @{ 8v @{ @{ h^ @{ V] @{ / 5| y^ 5> z[ r] k' b] A) _~ k' [^ _~ %, _~ %, d= d= %, _~ _~ g, k' ^{ 1+ 5+ 5+ 6+ @$ g, t% g, 6+ 7+ t% 0+ G* a+ c+ %$ e= b+ G* a+ t% 0+ 0+ 0+ 0+ d+ *$ F* 0+ RJ &$ 0+ m+ h+ m' m+ fh {J SJ q+ m+ q+ h+ ({ q+ q+ HB BD MH !w 8> 8> HB qt Xi Fl Yr Yi qt .B qt cz 9> .B TJ dz m9 NH W2 4c m9 4c _i _i 4c W2 On On 6I uC P9 _{ _i P9 On _{ _{ _{ nf ~w '; ~w nf m, m, '; <~ m, '; %@ <~ '; <~ '; '; %@ [$ Y3 F% T+ /- Gy UJ Ca VJ ti ~d YG WJ EC XJ YJ ZJ `J #y K *B au JD JD *B *B *B JD DC DC JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B *B *B *B *B *B JD *B au *B au au au bu yt .K ^n ]y nu ]n ^y tv ]n dw pu +K Zo @K #K $K %K ;r nc &K *K ^l > |@ e@ *& h@ l@ E7 d# d# w$ {. '. &. A@ -. 5# $% z$ .= G@ V .= |; H Y L@ L@ J N@ S +% S P@ K@ ", +";b ]& L$ 0' ]& ]& ]& = V@ L$ $ > + ]& = > $ & 5- > 0' ; ; Q$ . |* > $ ]& ] Q$ H= & H= $ Q$ Q$ > %= ; ~ ; T- O$ ; Z! ) Z! & ~ ; > X@ { X@ ^ 2 U@ O$ ~ ] N$ ; > . ^ | 8- , ## { ~ | [ { ) *# ## d I= } ~ /& 9 5 / U$ } 0 d d } ,# x0 } N' ># 9 ,# V) == e 6 L= j a' a c d ~# ~# A~ Q{ e a ~# c j [& c Q{ ~# 0 h L= % ]# ,! 2; Y$ o m 1; s> F n^ u p /# ^# G I t Z$ D z z B :# B I I M I N m) =K O@ M z M O@ M M E$ 3# P@ J h] S U E$ E$ >) t> E$ d- L@ G$ 3d 0* O T G$ T L ={ 58 C$ 58 6B 7s 58 qH q9 ja r4 ja Ou r9 ja Ou EA al &H -K _C lI #J Xz ;K Xz Wz Xz /3 |h .u A0 Yz Yz eB tG |C dy 7J Br 9J ~9 jy vG jy vG vG >K IF [z [z 4C ;E 9C ,K Iw vH 'K ~I 9C ]I yH *A *A {I 9C ]I Ik ^I NA BH )K OA Qq NA NA BH UF /I 'A !K ~K ~H JJ .G {K ]K bJ }I !u =J _H -J wB zy ^K /K 7z zB Lk 1I IG (K 1I Lk zB 1I 1I DI Jx qC _K EI qC qC qC QG qC qC Jx F QG wD :K -w x !G az Ey 'J q q x qo x 0+ a+ d+ 0+ %$ G* %$ 0+ d+ d+ j+ d+ d+ f+ -$ %$ '- f= i+ q+ q+ h+ HB m+ q+ $F k+ HB }K ({ q+ q+ HB ({ MH qt !w Fl Xi 8> |K |K Yr Yr cz 1K cz Yi 2K m9 4I _i 4c _i 4c 4c 4c $q On _i On On 3K _i _{ _{ ot On _i _{ nf _{ L| nf nf wg nf wg ~w '; '; '; '; '; %@ m, <~ Es p; <~ Z+ #@ V+ T+ a> 4K 5K [f aI hE 7f 7A [w 6K |G |G |G [w #y CC VH 7K *B *B JD *B JD JD JD JD DC JD DC JD *B JD JD JD *B JD *B JD JD JD *B *B *B *B *B *B *B *B JD JD *B *B *B au 8K 9K 0K ]n vv tv [x |j tv 2G pi ik ;o =t Ph 7w De aK _f a /a bK +^ 9$ o$ f@ cK o@ -& :. s@ {. {. !. &. C@ A@ +. 5# T R 2# A@ 4& T P O ` ` Q@ S J K@ P@ P@ M@ ", +"= ] + p9 .( R@ ]& * & $ ]& o! # V@ * . - %= = > = ] T- . > . . {c $ & ; *' ] # Ez | U$ ; S$ # o! > $ - ' H= & { H= & V@ V@ ; ~ ) 5- & | ; ] & N$ { 5- ; | & ; ( { { N$ 2] ~ 2 [ | / 7- ~ N$ 5 /& $# { 2 ) 5 } d d Y> 0 ,# 6 9 ,# } e k J] 7 +# 6 ~# L= a h a' 0 ~# 3] n e ~# 0 a L= ~# L= ~# e a n ]# `$ D ^# ^# _# n 4* :# % r Y$ L= p % ^# z w p r D }& F z w %> F= M A I A w M I A M P@ Q A: E$ ~& A: E$ T J L L :* L I@ L@ L =I G$ 3d O Q S G$ 0* I@ P G$ O= O= 58 58 6B 7s 6B &k q9 C$ q9 r4 ja r4 J r4 &H cf %i >I r5 dK 5o {C |h df :C dy |h A0 |h Bw Yz 9o eK dy fK |C Ck eB tH vG jy vG tH jy ~9 KE !I !I gK >K hK *A ~I iK 5D 'K wH ~I ms *A yH 9C ~I ]I jK kK NA Wv NA OA =u lK /I UF NA lK mK !K ,H EH nK ty ty !K oK }I .G pK 1z pK 1z 5z - d= %, ^{ 6+ s% 6+ g, 6+ ;- i; 6+ I& l' t% .) d+ t% $$ a+ d+ 0+ 0+ d+ d+ d+ 0+ d+ d+ K& f+ d+ d+ &$ e+ ~J bz m+ m+ m+ h+ q+ -$ h+ ]G ({ ({ ({ q+ h+ ({ ({ q+ !w Xi Fl qt Xi Fl 8> qt Yr Yi qt cz &r &r #x m9 &r uK @f W2 _i 4c _i 4c 3c _i _i NH ot On 7I f) On vK ot [A L| _{ _{ L| nf ~w _{ nf <~ <~ m, m, <~ ~w %@ '; p; p; _$ p; _$ p; Z+ V+ Q& wK PH xK 5A yK My l BK Yl [x pu wv 2j KC 'l QB >o %K yC rc CK DK EK FK U> 6@ X* X* -& F9 B= '& (. ^. x@ x@ )& !. &. 5# X G@ .= )& 7# @. C$ 2# Y Q@ H N@ K H@ #= I A ", +"p9 = V@ # 0' ]& ]& 0' # + = 0' = # V@ # V@ S$ . !, > # * k) o! $ . N$ @ Q$ . $ > S$ # $ ; # > Q$ & # N$ & - {c Q$ ~ $ N$ ] ; S$ ; | U@ | ^ `@ 2 N$ *# 2 2 T@ ~ 8- ~ S$ ~ < , } *# ) { Z@ { +# ( 1 7 } ( N$ 2 1 $# ( V$ 7 | J= &# 5 c ># -# 6 b 0 a k 0 ,# 7 a' X$ a Y> 7 ~# ]# V$ n L= ~# 0 h h l i c h 0 p `$ m h r Y$ `$ `$ ]# % ^# s> GK F= #| /# ^# 2; D I m F G w {& F= B A B E; ^# M O@ M I {& M M 8* M I 1& S S J O r! J G$ t> t> G$ G$ G$ J ` O tw qH 4# H O= @. O= 6B 7s 58 r9 58 ={ 58 @. ja rH Ou ja rH r9 cf .J HK 5o ,I IK dK ,. |h F^ cy |h dy %i Yz *H Yz Yz Zz Yz Yz Yz 8J JK jy ~9 uH tH uH tH jy KK hs LE uH 5D 0J wH hs LK 8C ~I IF ~I ~I 9C yH MK yH NK )K OK &J /I ;v PK =u OA UF OA OA ;H UF Pw ;H Pw QK Pw RK bJ 'A JJ IH 1z 1z IH 1z /H SK TK FG XA zB zB DI UK JG VK WK 1I XA JG Ww Ww 0 !J .q j9 gd Fy n T3 El Fy .x V5 V5 D9 !k V5 V5 V5 V5 ~k ZK Tc ~k +f +f !2 7< J^ 7< J^ 7< 7< 7< 7< e3 7< 7< C_ 1c W5 S] `K }_ K^ }_ }_ }_ i( W4 [} [} y^ y^ @{ 74 E_ @{ ~) y^ ~) !/ @{ ~) @{ y^ Z: y^ P! / u: Y/ D' [^ %, k' k' _~ j^ j^ |_ _~ %, b= %, _~ %, d= k' B* i! g, 6+ @$ g, i! .) 6+ 6+ i; t% 8+ d+ a+ t% c+ 0+ 0+ 0+ 0+ %$ %$ %$ G* d+ &$ m+ f+ 0+ f+ j; LH fh m+ ({ q+ h+ h+ ({ HB q+ q+ q+ ({ q+ h+ q+ q+ !w ({ Fl qt .B BD Xi Xi .B Yi dz qt Fl Yr Yr G+ L (i 1K &r _i W2 4c _i On _i G+ 4c ot ez 3K _{ P9 :- .L On P9 $g L| _{ ~w _{ v] wg nf ,; 6E '; <~ ~w ~w '; p; m, <~ <~ p; _$ (- Z+ S+ /- +L /e yK NI %c @L #L Ps Ps =B JD JD JD Os DC JD *B JD *B JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD *B *B JD *B *B *B *B *B *B *B JD *B *B *B *B $L %L 0K |j |j {n Ht &L [x *L Ro 1i xf =L ii |i -L .y ;L >L /b ,L `; U% 3@ ;* g@ -& q@ (. ,& q@ w$ )& =. z@ r4 &. z@ G@ .= P V P G@ L@ H P Q@ 8* A 1& J I I P@ ", +"0' = Y! + L$ # > .( R- > > ]& = # T@ Z, = + . $ > = $ = S$ U@ - & [* o! S$ > Q$ $ > # Ez $ P$ + ] ~ $ V@ H= & { | ; ' ' . & H= 2 P$ ~ ; { ) ] J) ~ N$ ~ | 4 ) { ~ ] 2 | ) T- ~ | 1 ,# | a ( /& 1 4 $# / ,# 6 6 6- $# e ( k !# D, j k ># ,# 0 !# 4 0 7 k a 7 c g i ,# n n g K= h 0 ~# L= ~# s Y$ Y$ h % n 2, 2, Z$ n /# 2; /# n^ /# Z$ m % C z w N t t y w C K }# Q@ w z z P@ O@ A z E$ M P@ P@ P@ :* |# M b- O@ L :* d- T E$ G$ T T 0* L@ T 3d 3d E^ BE 4# 0* G$ O= 7s 58 58 q9 58 7s q9 r9 Ou ja q9 ja Ou Ou Ou &H lI ;I Xz lI dK A0 |h A0 _C {C dB A0 Zz Zz |h :C Zz 9o fK fK GJ JK qI uH 'L jy vG tH )L qI )I 2h ;1 IF 5D wH ~I %J wH ]I {I ~I HJ !L zH 9C ~L {L {L zH zH ]L =u zH Wv Wv OA Wv /I UF OA !K !K ]K bJ ^L }I Pw !K /L IH -J LJ .G 1z pK (L _L :L Fl qt 9> cz 2L qt Fl W2 NH 3L 3c 4c NH 4c W2 4c On 4L 4c 4c _i On 4I 5H nf L| L| 5c On uC nf P9 wg m, wg nf _{ 5H _{ nf m, '; S> '; p; p; p; <~ o= _{ _$ Y+ G% S+ O+ 5L a 6L 7L 8L 9L ]r CC Os Ps =B JD *B bu Ps =B =B DC 0L DC DC *B JD JD JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B JD *B *B JD *B *B *B *B *B *B *B JD JD JD Qs aL ^y bL |j bw RB yz [x cL 2k dL :q I eL |i fL Is gL hL iL jL U+ .* 3@ .& l@ l@ -& v@ c# (. ^. {. A@ ). ,. 5# +. X .= Y P T 1# C$ H$ O@ J J P@ S +% G A M@ ", +"]& J$ * # + = !, $ # % > $ = S$ & = 0' $ T@ = $= = $ > S$ & ; S$ ^ Q$ . ] & Z, = ]& . T@ $ ; {c > $ ' - ] N$ Q$ ~ & * > Q$ H= 2 @# ~ [ ; | ~ - ~ ^ ] X@ & { | ( ~ ] ~ R$ [ { [ { { Y> ( } 2 *# a [ 2 | 4 { W@ $# W$ 6 6 *# c ,# 9 i 3] ,# a L= ># a ,# kL L= L= ~# 6 a 0 e 6 L= o r X$ [& e L= h V$ ,# p m `$ q Y$ s> s> `$ ^# C m m K 4* ^# z 4* Z$ F Z$ /# w z I N /# I I m) z {& N O@ S E$ a7 N O@ P@ n! A M P@ Q T 3; d- T T 0* d- L Vf I T I@ L 4# tw ia 0* 58 C$ 58 58 q9 r9 lL 6B r9 mL r4 Ou q9 r4 ja nL {z HK Wz Bk `z &H HK #J _C A0 _C Wz tG dy Yz Zz |h Zz oL ]z |C |C 9J 82 ~9 jy <3 GJ jy jy pL vG ef @A KE 8C tH qL wH ;u IF ~I IF hK MK rL 9C MK yH ~I ]I PK HJ &J wG ;v OA ;H sL UF /I /I tL ;H sL ,H JJ ]K uL -J ]u JJ bJ GH 5# ). *. F, e- $% 5# 4) I@ P 1# S L L@ ` E$ S A H$ K@ S S ", +"k3 + ]& V@ * M$ = V@ R@ ]& # # + . ; = $ & - = . + * = = Q$ + . S$ > & U@ $ # * > * = ] # > & & ; ; ~ H= V@ ; $ Q$ . - X@ N$ > ~ 5 ) ] 1 | N$ Q$ ] ) ; ^& > ~ ;# | ] ## | W@ ~ N$ ~ d | < ## X@ 6 Y@ / &# 7 a Y@ 6 c < $# } o ~# Y@ 8 3] 0 7 7 a i a 0 k c ,# n ~# L= h 3* ~# n p j ~# r -) -) ~# 0 n u q _# u `$ `$ q m Y$ ^# p m C ^# {& :# `$ w `$ ^# w W) I %> 2; z c- P@ A A %> O@ J |# OL I ` E$ M I I >z A |# O@ P@ A: L@ t> E$ J U Q L d- G$ 4# 0* tw O= O= 58 7s qH 4# 58 q9 rH O= ja q9 ja ja ja J J PL sH QL PL ;I Wz lI QL 5o `z Yz dK dy dy dy Zz dy Zz Zz :C RL 9J eB SL vG vG tH vG tH TL uH UL ;E KE KK uH KK qL IF %J ~I ,K VL ]I ~I HJ WL 9C wH ~I ;v XL ;v yH -u NA tL UF ;H ;H NA ;H ;H ;H /I UF YL nK JJ oK [I QK nK ZL IH 1z TE ^H vL /H -J 1z yI XA zB DI `L CI DI JG 1I JG DI 1I M QG sK Jx ,G qC QG 'G 'G .M 'G qC rC :K :K +M @M xL :K Bl ;w q q #M -w q x CB rC `w x x Tx Tx $M sC Vr T3 kf gd T3 n El El Fy El Fy .f ~k .f !k .f ~k ~k .f .f Ux yo ~k ]k qa Rk ]k Z{ )2 J^ C_ Z{ e3 7< 7< e3 C_ e3 e3 1c W5 O~ }_ }_ W5 [} [_ _1 [_ 1c #g ~) ~) (~ E_ @{ ~) y^ B/ @{ C' ~) y^ V] V] i^ :/ ~) u: S( z[ / b] b] A) k' _~ %, b= _~ %, b= %, k' %, %, %, b= d= 6+ k' f, 3+ 6+ g, 5+ i; g, 5+ 8+ t% c+ l' t% j; 0+ 0+ d+ 0+ d+ b+ d+ d+ d+ e+ K& f+ e+ 0+ I* e+ ]J h+ $F &$ q+ m+ h+ h+ q+ ({ 5E HB HB ({ q+ MH ({ 1L qt Fl Xi Xi .B .B .B Fl dz |K Xi .B NH On pJ 3c NH 4c 4c W2 4c 4c _i On On ot _i On On uC L| uC @/ 5H 6I s0 L| '; ~w nf ~w nf nf '; '; '; m, m, m, '; #@ m, <~ <~ p; Z+ T+ Q& 1A %M &M aH *M =M -M #y [w Xn Os Ps *B *B JD [w Ps UH ;M Wn JD JD JD JD JD JD JD JD JD JD JD JD JD DC DC DC JD JD JD JD JD JD *B *B *B *B *B *B au au au *B >M Ls ,M 'M tv vv ^n ]y |j 2G )M 2j ND ;o Zo me Ph |k !M mk ~M {M iL ]M ^M +^ |@ /M W* W* -& (M (. '. u@ v@ A@ !. )& !. -. &. +. G@ +. C$ O H Y S 2# P@ S H$ K@ 1& H$ A ", +"L$ . L$ # + = L$ > 1) = # > > Z, > # S$ & $ X! = > = + ]& > . 5- > . o! Q$ ; & Q$ ; & S$ ] ; . N$ & U@ Q$ - ; | & V@ ] & & N$ | & ; 7- ; ] 1 ; ) ; ^ 1 , Q$ Z! X@ 2 ~ < ## 2 / ^ , J) [{ ;# 7- | 2 4 | d J) D, $# } J] e 6 } Y@ { } k N' ,# c [& 0- 6 7 a b k h h c h h 7 h L= L= `$ s> 0 L= h ~# r L= e /# Y$ m v h % (# p E, z 4* s> G ^# 1; n^ `$ Y$ ^# G z x `$ w D o^ A I G I S Q@ I H$ n! M P@ A D J H$ A: P@ T T Q U G$ H Q E^ 2# 3d 3d U^ 0* 3d P tw 0* O= tw qH _M tw rH 7s 6B O= :M rH q9 ja Ou {z PL PL sH sH 5o HK Vz y@ k' |_ %, k' %, k' A) .! _~ Y# b= b= %, B* 6+ u- d= ;- s% 6+ @$ 8+ @$ 6+ t% 7+ ;- b+ c+ c+ 0+ 0+ d+ 0+ d+ d+ d+ d+ d+ 0+ &$ Bs 0+ 0+ i+ &$ d+ 5E h+ I* q+ m+ HB }K q+ ({ }K HB 1L ({ HB ({ MH qt bM BD bM BD Gl qt Fl Fl cz Yi Fl Fl dz 1K M jM wv bL bw $t [x eE ^y Mh kM ik uj `o _n _n ,r lM mM nM oM 5G pM +^ '~ ;* A= m@ q@ v@ :. O- ^. {. A@ A@ +. 5# (* ,= E@ 4& R F@ Z 3; 1# P@ J }; H M A P@ Q@ Q@ ", +"+ # ]& + $ ]& 5_ & + $ > + = ; - > Q$ $ $ $ L$ . }* $ %= & ; . > & = # > - > U$ ' 2) Q$ ; . & - U@ X@ Q$ Q$ N$ | U$ > . & Z! N$ Z! ~ / . ; R$ 2 R$ ] 2 P$ ~ ' & | 7- ; *# /& 8- X@ < V~ == ~ } 4 < ( ) N$ Y@ ~ { 4 [ J= [{ : 7 6 a a i b e ~# ,# 8 8 {# ,# 6 ># a ~# 7 e c a j 6! A~ n n c 0 `$ 0- ,> l Y$ h % s> Z$ p t m {& qM :# t 1; p p 2, m ^# /# p N G G D A w o^ G I .~ P@ O@ A j4 m) O@ :* M z z M O@ O@ P@ Q T Q T t> |# d- pF I@ r! A: L I@ jI 3d 5, I@ E^ 0* 7s O= 7s mL 58 mL 58 7s {z @. Ou 7s ja sH J bf Ou rM sM EA &H tM Wz dK Ji |h Wz A0 A0 Zz |h dy |C Yz Bw eK Zz eK 'I vG vG uH jy vG tH vG vG uM KK uM !I 2M IF ~I ]I wH wH vM hK wM xM yM yH )K HJ yH yH lK zM ]L lK AM /I lK OA /I /I OA ;H UF ,H EH BM *J HH KH .G .G 1z ^H .G pK 1z G S ", +"R@ # $ pH > |* $ 0' & M$ # T@ # Z, $ . ; $ * M$ X! Z, $ . Q$ T@ & Gc [* # . $ ; > > T@ $= & > ] | ; Q$ V@ ; N$ U@ | S$ - ~ ; ] H= o! 2 %= ) S$ %= N$ P$ ~ ~ ; R$ 2 & } Z! { *# ) ;# d 2 ) ( ) 1 6 6 ( Y> 4 d q> V~ +# 1 } b a $# '# ,# ># q> b d e a a ~# 0 [& d $# $# a o 0 0 ~# L= ~# 2* h ~# L= Q{ {# `$ c h s s> ~# ^# m q t Y$ m `$ Y$ p t 2, % v p 2; Y$ D F= m w w G ^# G G {& G I I G N %> M m) M P@ I I A H n! Q A: P@ E$ 1# L 3) r! d- U^ S J r! r! A: @N #N 0* 4# 7s BE 58 E^ 58 7s 7s $N 58 r4 q9 Ou rH Ou Ou kI Ou .J %N &N sH Wz 0B &H #J _C |h @J Ji |h *N dy Ji Yz Yz 9o eK Yz RL =N vG >b vG tH uH tH tH tH uH 2M 2M rL 2M KK IF -N 9C ;N !L ]I yH PK >N ~I {L HJ ]I ]I uI wG )K /I aJ OA Wv UF Wv ;H UF ;H bJ JJ mK bJ ]K -J ;k 1z -J 1z (H IH fJ pK (H FG ,N .! f, 1+ 6+ i! 7+ ;- 3+ $$ t% b+ 0+ 8+ 8+ d+ 9+ 0+ d+ d+ 0+ d+ %$ 0+ e+ m' &$ F* m' m' F* {J ({ q+ I* ({ ({ n+ ({ q+ ({ q+ HB HB 1L ({ BD Xi Xi ({ HB Xi Xi qt qt bM .B dz Yr qt 2L cz 4I 4c pJ oJ On On 4c 4c ot 5H On On ot On ot ot 5H nf _{ @/ ot 5H $g L| [A L| ~w ~w nf ~w ~w <~ <~ '; <- S> m, Z+ p; '; _{ f) xg ^N /N (N 8L MC _N :N . 0# z@ )& &. B$ Ld 4# L@ L@ O Q@ H Y A J E$ A K @% ", +"L$ M$ ]& ]& + # + $ . # + # $ $ T@ $ A; ]& * R- + . [* V@ # Q$ ' $ . > U$ %= & ^ ; $ $= ' & | ; 2) =' & & & - - . Z@ ; > . > %= ] > ~ | | U@ *# { 4 ~ T- J= 7- X@ N$ *# N$ N$ 2 { ^ $# Y@ J= $# ( ( 1 7 4 ( 6 } ,# ( } N' } 0 7 ,# ,# B; b V$ ># a 0 7 $# b a' 8 6 a' 7 ,# {# c p 0 ~# e ,# ~# V$ ~# {# ,> % r o ~# n 2, ~# n h /# b' m `$ p q p! v c{ Y$ C D w D )> F= D w 2; I P@ 7s r9 rH 7s q9 7s @. ja {z E@ ja ja %i {z bf PL sH Vz Vz _C ,I >I 5N #J Yz Zz Yz dy Yz Yz |C Yz 6N |C 7N 8N qI tH vG 9N tH jy tH uH KK gK hs KK KK 4C ~I vH qL yM ]I 8C zH tI rI yH yH wG ~L BH 0N BH /I aJ aN /I BH ;H UF UF bJ JJ oK BM BM bN BM vI 1z RA .G :E .G /H CM ^H vL cN dN 7M eN fN WK 1I 1I 7M VK gN hN `L WK EI ,G rK iN sK QG 'G OJ 'G 'G :K jN :K :K 'G :K 'G #M @M .F `w kN `w x RG CB x x rC .F CB kt TG YK Tx lN Vr n Fy EB gd gd !k !k !k Fy .x Fy V5 .f V5 !k !k 34 AL ~k V5 6v Sc Vx J^ Rk mN 9e AD e3 e3 e3 C_ 7< Z{ e3 C_ e3 C_ C_ W5 S] nN e3 [] }_ 3{ i( K^ H{ T] r8 F1 ~) h^ 74 @{ U] @{ @{ y^ @{ ~) :/ y^ V] B' E_ V] `' `' K{ b= c~ D' A) k' k' l% b= %, %, }+ u- B) %, f, |+ s% g, 6+ f, .! @$ I& 6+ 7+ t% s% t% $$ a+ b+ 0+ t% oN d+ d+ d+ d+ d+ e+ &$ K& e+ K& i+ m' F* 5E &$ pN qN ({ 5E |L HB q+ }K ]G q+ MH ({ JM HB HB BD Fl bM bM 1L qt Xi qt Fl |K .B Yr cz qt |K .B NH On 2K 3c 4I 4I On _i On On ot $q 5H ot ot rN 6I uC uC Hl On ot 6I 6I _{ _{ <~ nf wg D- wg %g <~ <~ S> m, '; '; <~ p; L| G% /7 Q& sN #a tN vJ uN -q Vn Io Xn Os Qs wJ #y =B au *B JD =B JD JD |J >M DC *B DC |G |G |G DC JD DC JD DC JD DC JD DC JD JD JD JD JD DC DC DC DC DC JD JD JD *B *B JD JD vN wN xN JC JC Gt /n /n yN 2J 2J *t Zo +K uj `o Jf 1N cH kb %a zN AN Y+ 6$ |@ +& -& h# x$ s@ :. ^. ^. p, ). )& 4- .= (* z@ E@ E@ G@ E@ L X R M@ 3; Q@ E$ P@ K@ M G ", +"+ L$ ]& BN $ . ]& L$ L$ . $ $ # # $ > $ U@ . # . * M$ # * = $ $ k3 & U@ S$ [* & S$ & # ^ ' ; & Z@ 2 N$ |* $ * Q$ & & W@ Q$ | X@ *' . Z@ /& ) H= > ) X@ ( ^ ~ O$ CN | 7- } 2 N$ { %= & { ( [ { d 2 7- $# ,# 6- ~ [ /& $# { d $# J= 6! J= 6 ,# Y> 7 < ,# a $# b e 0 e ~# n q> } k {# n A~ n ,# k e c g {# n c a c 0- n C; K/ Y$ l Y$ % `$ q % ^# D 1; C w F= % m m 2; w 4* C w N N w A O@ z 2; Q@ F= I E; F= q! N I O@ Q 3; T Y L' T G$ U^ H G$ qF L H d- E^ T `I E^ O= DN EN 6B @N @N 58 7s 6B 7s 6B q9 @. r9 {z {z Ou {z Ou EA FN Ou .J nL >I GN ,I bf HN dy Vz IN 9o dy dy A0 Zz |C eK oL dy |C FJ JK tH pI JK tH 2M uH vG tH [z [z 2M 2M qL [z vH %J yM 9C JN wH ~I VL 9C HJ HJ zM zM Cx kK ,H dJ KJ sL Qq bJ ;H ~K ;H bJ JJ ;H nK bJ nK SA 1z eJ [I fJ 1z 1z 1z -J vL KN gN LN MN NN NN ON DI CI PN QN !N qK RN SN sK rK SN _K :K QG }L :K QG :K QG :K 'G 'G OJ }L F #M .F qo F ;w x kN <~ _$ _$ p; p; f) S+ E+ XN b YN ZN >e `N O .O 'q Os Qs Qs Ps [w JD *B JD Ps Ps RI *B =B DC JD DC EC XH EC DC JD DC DC DC JD JD JD JD JD JD JD JD JD JD DC DC JD JD *B JD *B JD JD JD JD CC yt yv Yo Yo [x ou dw 2G 2J +O Yg @O #O ;o Az $d $O tt %O &O *O =O ($ 4$ o$ m$ -O r$ O- >& c# v{ {. ). +. +. %. (* =. A@ R X V z$ X G@ S P J n! S J J E$ J ", +"L$ R@ + $ . + Z, L$ ;b $ . > }* > > . 1) U@ > }* - > Q$ ^& $ $ ' ] $ & $= U@ ' T@ | 2 ; > Q$ * # . T- N$ ; S$ & ' > # Q$ . = | - & H= X@ ~ %= > | { { ## /& | ^ - & X@ 2 ] { ] ~ [ ## : W@ : [ ~ ## == d ( 6 : ( ## 1 ( ,# D, 2 6 i $# 6 a 6 2* ,# i d &# ,# a k i i ~# 0 c i i ~# L= c p c X$ h Y$ r 0- Y$ c Q{ 7 (# G @= ^# p m ]c % 0- V| F G #] w :# {& :# 6* m Q@ B A A F= G A A I G z 3# P@ m) ;O H$ n! P@ L 3; T a- M >O U d- J 3d r! G$ J 0* 3d T pF 0* T 58 tw O= 6B EN 7s 7s 7s 6B 6B r9 Ou FN r4 ja {z Ou {z J PL {z &H &N EA Wz ,O dK Wz A0 'O )O Yz dy 9o |C dy |C Yz oI 6N 6N !O eB KK jy jy tH uH KK jy uM uH uM gK KE KK ~O !I 8C {O uM yH ]O wH 9C ^O yH HJ aJ xM {L OK )K OK /O BH Wv ~K UF (O bJ /I bJ bJ JJ ;H bJ {H .G 1z _O =J 1z -J -J LJ :O x$ q@ ^. c# !. p) ;. x@ z@ #% z@ z@ }; . &' #% .= T L@ P L@ A K@ S A M@ Q@ ", +"# ]& ]& ]& = Z, ]& ]& + > = o! T@ . Z, ]& $ . > = > > . - * {c & P$ . + > S$ > ' U$ ' Q$ > U@ & P$ ; %= > ] ~ $ + - & > > + N$ P$ > ; ~ X@ ~ Q$ ~ ; { ) } V~ 2 | ; ; N$ ## | ; { | 6 6 / { 4 1 2 } *# ( { | d [ 6 [ ,# d $# e b 9 d V$ d 9 } 0 ( a e 6 $# c L= r {# 6! *= M' n L= C; ~# n L= 0- Z$ ~# h p 0 n ]# 1; p ^# {& % `$ Z$ Y$ }& 4* z ^# m F G ^# b' N w N M c- I I F= x |# c- O@ A |# A A o^ O N@ I :* H 3; | + k) S$ & S$ ' . & S$ & $ . ' & *' %= ] ; . R$ %= Ez R$ | > Q$ * & ; U@ $ o! ] ; | N$ ; | { > Q$ | ) ~ ] ; +# { 4 ; P$ %= 7- < / ; | | { / 7- [ ~ ~ &# ( /& { N$ X@ d 7 b [ 9 0 a ,# 7 ,# c ,# k 6! ~# L= 6 i 0 9 i 8 j o a 6 o {# 2* 0 6 a *= 1, p n h {# n % Y$ n 2, o Z$ {& w q r `$ m 1; ~& G D /# {& % m C `$ $] A B M G 8* F= I M O@ E M d{ 1& O@ Oz J M d{ A: Q L ` SO *I T J H L@ U^ G$ L@ G$ G$ #N U D$ qH 58 tw O= 58 @N 6B 7s 7s 58 6B 6B 6B TO {z J UO Ou -I {z Ou wr #J EA I A0 Yz A0 Zz eK Yz VO 7N 5N |C !O tH >b tH tH KK uH tH uM uH uH 2M qO 4C WO uM 9C *A iK HJ ]I =v XO xM 'K XL zM HJ yH NK ~K Wq UF AH /I ]K ,H JJ ;H ;H nK ;H OA UF vO nK ^H vL YL wO wO 1z LJ YO vL pK YO ZO `O !N P .P DI qK +P VK qK !N DI `L DI qK 5O iN CI 'G 'G QG 'G OJ 'G QG .F :K 'G @P #P OJ ;w :K Bl .F CO `w CB P >e -F sf Kt HL #y Qs Qs Os =B =B Ps Ps JD JD JD *B =B Ps RI 'q DC JD JD JD JD JD *B *B JD JD *B au *B JD au au JD JD JD au 7K 7K 7K LO @y au JD JD JD *B JD *B NB yt ,P ]n [x ^y ou ]n tv ^y `y 'P jk )P !P me qd mh ~P =M Ca {P ]P #f <~ 4@ ,* i@ -& m@ -& v@ w$ = A@ A@ ). =. 4# 5# 4) E@ L@ .= G@ H H J@ }; S J T 1# N Q@ C, ", +"+ V@ + + $ $ + + = ]& $ = . X! - . $ & ^& k) * # |* Q$ . T@ $ ; . + ; - + . $ U@ ] $ N$ & & ' S$ & . . S$ H= * > . S$ . %= ; N$ X@ | - ^ 2 P$ %= N$ 4 2] Y@ d 1 N$ =' 8- %= 2 2 ) [ ## < } W@ ## W@ x0 { -> ## Y@ ## 5 } b 9 ( b / d -> b D, b 7 ~# 6 6 a e ## 7 $# 7 ># n a a p h ~# 0 L= L= p o ]# 3] ~# L= h p n 0 Y$ p ~# @= :# Y$ _# ^# m 4* b' Z$ 1; B G }# u w z z F Q@ I G F= n^ I N O@ c- O@ I O@ A M M Q J :* M :* T E$ Oz h] O@ L L@ tw #N 3d ^P 0* P' U U^ 4# 4# BE E^ &k 58 qH 58 58 7s 6B 7s 6B 6B :M Ou 6B rH J Ou {z Ou .J &N .J Wz sM Wz nO IN A0 {C dy dy Zz Zz Zz Zz |C *H Zz fK oI pL uH ~9 uH KK KK 2M KK 9N KK sO uM /P /P /P (P rL *A _P 'K {L )K yH {L )K HJ {L VL 9C tL )K sL tL dJ ;H bJ aJ :P Vw ]K ;H

6+ J> s% 5+ u- 6+ 6+ .) ;- 1+ I& l' 7+ %$ b+ 8+ 8+ ~J %$ e+ e+ e+ F* e+ d+ 0+ e+ RJ Bs e+ m' F* 8P pN q+ HB ({ q+ ({ ({ 1L BD 1L HB 1L HB MH MH Fl BD bM HB MH |K qt .B .B qt aO dz |K |K 4I 4c &r $q _i On UN On _i _i ot ot 5H ot On ot 5H On uC _{ $g JI LM JI nf _{ 7I wg nf nf wg nf 7I '; <~ '; '; _$ '; V+ /$ C- 9P 0P _N aP ;L bP ]r Ps Qs Qs Os Os Os Ps Ps =B =B JD JD JD =B #y UH JD JD JD JD DC DC DC DC DC DC DC JD JD JD au *B JD JD *B *B *B au au kz iM 7K ,F JD JD *B *B DC *B yt +e ]n ]n ^y dw gH ou dw 9r Oh cP +O UI .e 4j Fe dP eP fP gP hP iP +^ X% '* :; m@ j@ x$ w$ {. A@ x@ ). &. )& . .= *. @. D$ J@ =. }; G@ P S J P@ K@ ` J z M ", +"M$ # ]& $ > + ;b ]& V@ jP 0' M$ . + ]& . L$ ]& > 1* * > # . L$ ]& }* H= ]& R- $ & - > Q$ ' ] . & = & %= > !, . & Q$ ] ; A; . ' | N$ S$ N$ Z! ] & %= & X@ T- | 5- 1 6 2 { X@ X@ - | X@ 2 | 2 W@ 2 b{ < : 7 < / ## /& ~ /& 6 <& 6 < 5 [{ 6 e < a [ 4 0 6 J] } 3* 7 c *= 0 e h h c o 0 t' 6! a o e q> ~# c ~# X$ _# r K= Z$ j % m q % m % }& _# h 4* ^# p :# {& (# w C G z N b' x I A A F= I Q@ I B c- H$ I o> I M h] M P@ 3# O@ E$ S c' L :* 3& G$ L@ G$ 3d G$ kP r! d{ I@ 0* qH lP E^ qH 7s EN 7s 7s 58 58 58 $N 6B q9 y@ r4 HK {z r9 bf Ou &H ,I {z dK PL mP dK @J /3 >I oO Zz Yz Yz Zz 9o nP Bw |C |C oI oP uH jy vG KK tH uH tH uH uM 2M /P qO 2M /P 4C pP &J qP rP >N yH MK OK XL HJ HJ {L XO sP KJ 'H UF BH NA ;H tP QK 3M uP dJ vO BM ]K bJ ZL =J {K .G -J LJ -J CM 1z ~. ,. z@ E@ @. E@ L@ J@ P ` D$ H L@ Y M@ S z J I A ", +"S- ]& + R@ > $= J$ L$ M$ # . Z, Gc # Q$ - + p9 # S$ Q$ + $ $ M$ $ . p9 $ X! (& . & & # S$ ^ & > > & & * ; H= $ %= ^ | N$ ) | N$ %= Z! | { S$ ; Q$ P$ ~ X@ ~ - { [ - [ | N$ & & Q$ | ^ | Y@ 1 [ 6- 2 } < ) { d 2 ~ 7 [ $# == 6- 6 &# 7 7 a $# d c ,# ,# [& ,# a c c 0 ~# ~# 2, e 0 z: W$ n ~# K/ k i L= c z: p h Y$ h 4* Y$ V| n V| ^# % Z$ `$ ^# t D ^# ^# C /# o/ ^# m 4* m w w W) ^# A j4 N I w x z I P@ #] J A |# Q q! o> 3# o> 3; S r! A: S U DN L@ K) #N U^ =I tw 3d G$ tw #N #N `I BE 7s 6B O= 6B 58 7s 58 mL E^ 7s ja E@ -I Ou J ja Ou {z QL MP lI NP FN dK Wz |h |h OP 'O Zz |C Zz 7N |M fK RL Zz |C PP vG vG 1M |M 9N KK QP uH uM uH uM KK /P uM uM /P NK WO qP 4C ]I ]I {L {L ]I XL )K 0N RP tP aN >H wG cJ dJ Wq aJ 3M uP ;H cJ cJ ZL YL nK 5M 5M SP pK LJ vL -J LJ 1z o Jf =Q bH -Q &K ;Q >Q X+ ,@ .& g@ -O k> x$ h# v@ (. A@ &. z@ &. -. z@ .. .= V ` S ` 2# J H E$ M H H$ S |; A ", +"+ - + ]& $ + R@ L$ + # + 0' > p9 + U@ $ 0' #^ . ; $ $ > * * - H= & + ' . . ] o! ,Q - ^& H= $ > . # . & k) & > ]& & ] T@ & | # ; | ; =' N$ & N$ H= | %= | [ ] { %# 2 N$ ~ { W@ X@ 2 7- { [ |, ^ , ] ^ $# 2 d ~ 7- 6 ,# d [{ 5 ,# $# < e d 0 6 7 0 a 3* ,# ~# [& 8 9 i ,# a e n !# r ~# s> `$ n {# *= 2, h s> ^# r m _# |& }& 4* r % w % F u Y$ B [# m _# ^# I b' }# % n^ D m ~& w W) I m I x {& M A 8* O E$ Oz E$ G O@ O P@ |# L D$ J i5 P@ A: d- T 3d 3d G$ G$ L@ U^ 'Q )Q 3d !Q tw O= 58 O= mL O= 58 6B 7s E^ 6B Ou ja J q9 {z J Ou Ou HK QL S; k/ D' b] k' <' %, %, %, %, b= Y# f, A* %, k' 1+ i! s% s% }+ %, 2u 6+ 1+ +$ I& s% 1+ 3+ 8+ t% e+ J& t% e+ e+ e+ e+ d+ F* CP e+ 0+ d+ F* I* CP &$ HB ]G 2Q Q 5E HB 1L 1L HB }K ({ ({ HB JM 1L HB 1L qt .B HB MH |K |K |K aO .B |K aO 1K 1K |K On _i $q $q o$ -O l@ l@ :. ^. ,& >. x@ 5# .= ;. +. E@ +. z@ 4# H H$ L@ P@ P@ P@ Y H O@ S Q@ Q@ ", +"]& V@ + = 0' ]& Z, Z, ]& + ]& !, + + ]& ] ; pH .( - V@ X! ; T@ Q$ X! $ Q$ 0' ]& - $ & ^ U@ = {c & 5- ] Q$ > | 2 N$ Z! > ^ Z! & > ' > & H= U@ | X@ Q$ 5 N$ Z! { { N$ ^ ) ~ N$ N$ & . Z@ W@ [ N$ 2 { ## ~ [ d ) d q> } /& d ( d d ) ## ( 6 ~# ,# a 7 0 [ 7 c ># ~# ,# {# a X$ q> 7 0 0 -# c n r n c _# {# [& c *= r n `$ ~# V$ h !# p p n ^# #] /# t h m B w n h -) (# m /# N F= F= b' w I I 8* G I N w P@ z H$ O@ M 1& ~& M h] |# M A: 3& O S P@ U |# U^ Q U^ U^ G$ L@ 3d pF DN G$ Vf tw tw E^ 7s 7s mL 7s 58 6B mL mL mL 7s ja {z r9 {z J ja FN cQ dQ / d~ :/ r{ D' k' %, b= b= k' b= Y# d= B) %, b= 1+ s% 5+ 1+ g, 1+ 2u ;- s% $$ 7+ 3+ 1+ I& t% 8+ 0+ d+ J& d+ d+ d+ e+ d+ e+ e+ e+ F* d+ F* RJ CP F* ({ .Q qQ rQ ]G ({ ({ HB 1L q+ ({ bM BD HB 1L MH bM qt |K Fl qt .B .B bO dz Fl qt dz UN 1K sQ pJ 4c 4I _i tQ On _i On On On ot ot ot ot ot LM LM 5H dM nf _{ _{ HO LM LM ~w Es S> nf nf nf ~w '; '; S> <~ p; _{ F% P+ NH uQ vQ wQ xQ iE yQ zQ AQ Ps Xn Qs Qs Xn Ps Ps Ps #y #y bu *B *B =B Ps $s UH |J JD JD DC JD JD JD *B *B *B *B JD *B *B *B *B JD *B 7K au *B JD BQ au 7K 7K au 7K 7K + + + > . %= & o! Q$ $ = ] ; . ^& Q$ [* . - ; S$ Q$ ; ; S$ . N$ | H= > = T@ > Q$ T@ H= | X@ | N$ X@ S$ ~ { { ; ~ { ~ => | | ~ ] Z! { d { | d ~ 6 [ W@ X@ 1 ( X@ /& V~ | } ( &# 7 *# 7 $# } k ( 1 g n ,# 8 ~# ~# e 7 ~# L= ~# k L= c Y$ ~# s> i 0 C; {# L= r c{ {# :# r 0 `$ n Y$ p n Y$ h D y2 ^# ,> y2 t b' ^# ^# m `$ b' % ^# z 2; G c- M G C O D$ U^ tw 4# `I G$ qF 3d 0* qH 58 !Q qH 6B 7s TO 6B 7s 6B 7s rH @N r9 r4 {z Ou Ou FN {z {z HQ HK sM lI Wz eQ .J Wz dQ :C &N 'O |C Yz Zz dy Yz fK dy |h nP EJ fQ uH uH pL IQ JQ uH KK KQ tH gK uM uM hQ uM hQ LQ 'K hQ hQ iQ &J ]I ~L )K yH )K zM zM XL MQ uO mK OA ;H 3M ,H NQ JJ bJ #w nK OQ YL {K PQ pK ^H SP -J CM ^H M JD au au *B *B R 5Q au *x Az .R ou `l ou /n |N xv /n +R @R ar 5g Az #R MD EQ MC kb $R %R &R T+ L% 3@ 0@ ~* -& s@ w$ 7; A@ ^. ;. &. =. &. &. G@ C$ E@ V D$ T I O P@ S J J Q@ M J I ", +"J$ = $ V@ + # [* + $ $ + $ # E! = + . > P$ ' - . . . = Gc ; . }* Q$ = }* & + & ]& - > S$ ' $ ; $ Q$ ] k) 05 . ; + ; H= ; N$ | H= N$ ; %= > ; ~ ; ; | X@ ~ ) ( { ; { | 4 & 2 J) ; ) ) } [ ~ [ } } 4 ) 6 d 1 4 6 e ,# 7 ,# V~ vk 6 Y> k ~# 7 } e ~# k 7 h a 0 0 6- 8 e 6 f {# ,> p s> s> h r L= n t k l s> s> 2; `$ 2; l Y$ ]# t ;) 2; `$ m Y$ Z$ n % w m s> ^# G b' Q@ z w I z |# 8* 2; 1& F= c- F= M E$ d{ J A O@ L c- J C, Q E$ L c- r! 0* >O 3d 3d G$ DN tw tw O= O= `I @N 6B 58 58 *R 58 7s &k -I 6B 7s -I {z {z J ja J {z J MP kI Ou dK Wz cQ HN =R IN cy -R Zz Zz *H 5N Zz nP |h nP fK fK PP 1M ~9 pI ;R tH tH KQ 2M KK uM KK /P /P uM _P /P rL >R hQ ,R ^I &J 'R {L {L )K XL )K /O RP aN (O ~K aJ OA /I nK JJ ;H nK nK NQ bJ

05 | . $ . ] S$ N$ ) & N$ & ; 8- S$ ; N$ P$ [ | ] ## X@ ' N$ {c U@ [* ; 4 6R ~ ) { N$ ) & 1 ) ^& 1 ## O$ | ## ) / } < $# < < } 5 { 3] ,# : V~ i 8 5 [ ,# 8 0 c Y> 0 b 6 {# 6 7 0 [& e V) } ~# s> Q{ Y> h n p ~# {# `$ h Y$ `$ e Y$ `$ s> `$ 4* 2; h Z$ D m p t m {& Y$ y ^# 4* F= D w w ^# % G I z w z M I A 7R O@ d{ E$ M M E$ J O@ M O 3; 3; |# o> t> qF #N 3; L 'Q 'Q G$ G$ 0* 3d L@ I@ E^ BE !Q @N 7s mL 6B 7s 6B 7s rH 58 6B mL ja J ja ja {z cQ {z kI EA sH =R dK sM lI mI [M `z 8R {Q |C dy |C |C Zz 9R |M 0R 6N =N pL GJ aR oP tH KK uH !L uM >R /P qP /P uM hQ /P rI hQ hQ bR {L tP )K HJ XL zM RP )K MQ 9C aN aN CH aJ nK ~K ]u :P JJ vO nK vO YL

> |* Q$ = # $ Q$ }* > $ . ; . Q$ > T@ . ; ; . o! . > 2 & 2 Z! S$ *# & 2 N$ P$ | ] T@ N$ N$ ; & | ^& 4 Y@ ] 1 / 05 { ) ; - ( /& ] | [ ) `@ $# ~ a 6 ## } 6 | D, 5 ( d ( b $# 6! ,# / 1 6 d D, 7 ~# ,# ~# ,# 6 M' a e 0 ]# 0- 0 c n !# 0 |& L= h ]# s> h c 0 h p q D p (# m m t u 4* b' `$ G /# B ^# m N E; ^# w N /# Q@ A m z 1& >z A Q@ AR I M M d{ O@ H$ P@ M M r! L E$ M@ J *I O r! 3; #N I@ 3d G$ 0* d- DN 0* qH `I _M tw 6B 7s 6B ia 58 q9 -I 6B q9 rH Ou Ou {z {z {z cQ IK EA bf &H MP mP HN {z dK mP Zz BR CR dy dy fK Yz Yz DR fK ^Q |C EJ IQ 1M IQ oP uH uH vG 2M KK uM rO qP WO KK rO uM _P WO _P iQ ER yH XL zM ER )K XL zM MQ XL FR Wq ~K GR RP Wq ]K dJ Wq HR ]u IR JJ nK

M DC JD *B JD DC [w =B |J 5Q DC JD JD *B JD au au *B *B *B *B *B *B JD JD JD JD JD JD au JD JD JD au LO 7K LO 7K *x `R wv `y pu S KL pv .z .I uj uj @K me qd ^j fI !M .S sf +S fr @S Fc ,; y] o$ r$ t$ -& t@ d# :. ^. D! +. 5# !. V ,. F@ E@ L@ H 5# 4# D$ A H$ S M +% I O@ z ", +"]& #S ]& k) T@ # $ L$ M$ .( L$ = + 0' ]& # ]& ]& . S$ * & U@ > Q$ # ' Z, - ; |* Q$ ; # | ; & %= =' ^& $ . S$ ; . Q$ . $= =' Q$ . & ; P$ ; =' N$ > | $= o! P$ N$ H= ] *# Q$ ] 2 +# [ 4 4 X@ [ ( , X@ ## | ~ ~ N$ ~ } { N$ ( ) ## 2 ( ( ~# { 1 q> Y> } ~# k c 6 6 ># 6 a W$ *= z: e ~# k ~# ,# i c ~# ># a r 0 7 s> 0 0 _# r n h ~# n ;) s> `$ p m p `$ w n^ p 4* b' `$ V| p Z$ r 1& m :# C I 2; `$ 8* I $S 7R z Q@ }# T^ c- 8* E$ E$ P@ E$ i5 |# m) E$ Q M L T >O U d- pF 3d r! =I 0* 0* K) 3d #N 3d E^ tw tw 7s 7s 58 tw 7s 58 7s 6B 6B J J sH J FN Ou {z sM {z J dK %S &S *S QL eQ 8R 'O 5N =S dy Zz Zz |h 0R 6N |C -S ;S 0R >S /Q 2M 2M 2M 2M KK uM uM 2M qP WO WO vG aR uM WO uM qP ,S 'R 'S {L MQ HJ zM {L MQ RP MQ )S RP BH (O 3M uO NQ JJ PQ uP Vw QK YL vO nK vO (H /L YL (Q 1z vL _Q KN KN KN $r !S :Q ~S [Q 1I {S ]S AO zO qK nQ CI `L hN TQ _K 5P qK 5P ^S :K fR @P 'G #P /S OJ :K OJ fR 7O FI 'G az )J (S `w #M FI CB q q `w `w F %Q JD JD JD JD JD *B JD *B JD JD *B au 7K *B JD JD JD au *B *B *B JD *B JD 3S LO 7K au Ms 4S jA /n )B 5S ;o 4j |i 5q =t @K (n 4q 5g Az 7w .p 6S Kt YI Jl 7S pM #@ 4@ 3@ h@ -& u@ b# /* ^. !. x@ =. &. &. e- B$ G@ _* G@ L@ Y L@ O P@ M S I A A P@ b- ", +"# 0' ]& V@ + = #^ .( # # 8S .( > .( L$ . + . - & . ]& > . = = & *' Q$ ! . $ - & ; N$ ; | $ Q$ }* ; 2 > Q$ =' A; U@ & S$ ; U@ 9S | N$ ; ; { | S$ N$ | | { ^ | ] ^ /& / 6- ~ ) X@ N$ 5 X@ 2 2 | W@ ;# N$ ~ ) W@ { W@ } b } *# ( d Y> { 6 } $# 0 i a 6 7 b ># 6 a V~ 6 6 ~# q> 0 [{ 0 7 ~# n |& q ~# ,# n h ~# ~# b' n n Y$ ~# u Y$ p n p c r Z$ p `$ Z$ G D p :# M= w G m m F= z F= m 1& I z A F= ~& N@ A O@ 0S 8* 3# E$ |# H$ I a- 3& r! 3; T O A: Q 3d pF 0* C, =I `I 3d pF G$ ^P 3d 0* qH 6B @N 7s 58 7s $N 58 7s 7s q9 {z ja J {z J Ou Ou aS PL bS J dK cS Wz Wz sM ~Q >I 6N dS 8R *H dy 7N Zz |C |C fK pI nP ^Q fQ tH vG eS tH qP vG 2M vG uM 2M uM uH WO >R 2M {O hQ hQ hQ >N yH yH XL zM {L HJ RP fS XL XL AM mK aJ uO FR ]u cJ Vw uP cJ nK JJ JJ

G iS KR qK !N NN qK !N WK DI _K VK VK TQ TQ XP TQ _K jS }L iN iN }L OJ :K 'G |Q OJ }L }L #P ZP 'G rC (S kN `w #M `w x CB d fr uS vS Z+ 4@ wS :; ;& h# u@ v@ (. %% =. !. 6# A@ >. z@ .= X H Z 4# 2# E$ E$ P@ O@ +% ` M O z ", +"]& p9 0' !, ]& . ]& + + BN + - $ ]& ]& + + & # # L$ L$ . > o! & N$ & - ] $ . ] $ ~ %= U@ ; Q$ > o! & - > *' H= ; Q$ =' > ] ' Q$ ] Q$ . ~ & Q$ & & X@ | N$ W@ 2 b{ J= ~ < ~ X@ ] X@ 6 [ | ) [ W@ { { d / [ { < ( 1 X@ => $# xS d 5 } d } 6 } 0 W$ W$ d o ~# 6 e ,# 6 a ,# i k e a ,# o {# h h {# L= 6! Y> r p Y$ n ;= ,> c s `$ _# Z$ h ^# p 2, p `$ D m F= t w F % G `$ ^# w b' E; M z G z M O@ %> I E A M h] J n! n! J A: O 3# P@ O@ T C, |# qF pF G$ G$ ^P #N L@ tw pF yS zS 4# qH 58 ^P 7s 7s 58 6B TO 7s AS HQ HQ rH HQ Ou ja Ou -I BS {z %i CS Wz cQ &N Wz DS ~Q GN IN IN ~Q Zz 5N EJ |C nP 6N eK pL nP 7N =N KK ~9 9N uH ~O uH uM (P sO ES 9N 2M hQ /P rO _P hQ _P _P 'K ]I XL aN )K jQ FS GS AM ]I bN RP uP GR HS dJ IR FR aJ HR IS nK vO vO JJ [I JS CM wO vL KN q NB JD JD JD JD *B JD JD *B JD JD DC *B au au au >q BJ YS xv gO cw 1i yv ZS $j !P {F {F `S 4g .z )n 2f T .T xK oM +T @T P+ O% 9@ g@ p@ m@ t@ /. q@ T' A@ !. l> 5# 5# &. 5# 4# L@ H@ X P A Y ` b- Q@ M S M @% ", +"J$ L$ p9 J$ I/ + = . + ]& + # . I/ ]& $ = > S- + . ' U$ ; $ & - Q$ ' ^ & Z, ] o! ; > - > . . . & & & Q$ {c . #T Q$ S$ ] ; > `@ . U@ R$ - . > ~ 2 ; N$ J= N$ W@ & | { W@ { => | O$ { | ) 6 ;# ] ## V~ ~ %# 7- } N' 5 4 &# ( ( 8- d ## a d 6 b 0 0 ,# d c 6- 7 ,# a a q> c ~# 6 ~# a 9 o K/ ~# p Y$ `$ ,> e 1; r p s> ,> 4* p Z$ p Y$ s> h ^# q C Vj p Z$ ^# ^# D w % t w I q2 G Z$ $T w K {& z z z G >z n! I M M J T^ m) d{ #= J J 3# 3& d- J 3& L T G$ #N #N #N #N ^P 3d 'Q 3d `I qH 3d _M qH 58 $N $N 7s 6B mL $N mL $N -I Ou ja -I :M J {z {z J PL %T FN Wz DS eQ dK @J |C @J Zz 6N |C |C |C |C |C /Q nP 6N 6N pI jy vM 1M LQ 2M KK JQ {O gQ KK qP &T WO _P hQ iQ hQ hQ 'K ]I FS aN VL zM zM XL AM ER cJ :P aN Wq uP NQ #w QK bJ nK QK Vw

T _S qQ 1L 1L 1L HB HB HB ({ HB JM 1L 1L !- 1L JM JM nS Fl Fl |K |K |K .B |K aO aO |K |K ,T UN uK aO dz vK On 'T ot LM uK On ot LM 5H On LM ot 5H LM LM HO LM ~w ~w wg LM ot wg wg ~w S> ~w ~w ~w _{ f) .^ S+ )T !T ~T vt YR aI 1N Ho Qs Qs Qs Qs Rs NB *B *B Os bu bu JD *B Os #y #y JD JD JD Ps JD |J 5Q JD JD *B JD *B *B bu =B Ps Os {T BQ *B JD JD JD *B JD *B 7K au au JD *B *B 7K uR yt mi 0r |N {F |x ]T 8w )B XM pi qu zz iH fO ^T .( . ; L$ ]& = # + > $= . ' > T@ + $ > S$ Q$ ! ; ; > . S$ U@ ; > & Q$ ^ . Q$ ' ; . > ; Q$ $ ; | Q$ > N$ Q$ ] ; > (& | ; ~ N$ ; X@ 2 ^ 4 W@ ) /& { 2 *# , N$ # 8- | < Y@ 8- [ W@ 1 ( 5 ( /& 9 D, xS } 6 6 7 6 } c ~# d i ( a [ ]# ,# a V~ $# e ~# ,# 6! ~# a [& ~# Y@ Z$ 2, 2, ]# L= n h Z$ Y$ -) @= ]c `$ r 0 (# h p p y /# p q ^# :# F= p /# V| w w N w 5* F= $] M A F= G M 2; 1& M ^# K z z d{ |# |# 3# ` d{ Q |# r! T O M 3d ^P #N 3d #N 3d 3d G$ pF r! #N tw E^ EN 3d qH 6B 7s 58 $N mL $N $N 6B ja &k J ja 6B {z J {z FN cQ mP FN sM &S lI dK :T Yz 8R CR *H fK Zz fK Zz 6N nP |C nP fK oI tH gK KK KK 2M uH !L x$ w$ :. gT F, W> A@ A@ A@ >. -. .= .. V X J H S A %> P@ Y P@ I Q@ ", +"0' ]& # L$ ]& ]& ]& ]& # . > + + $= + L$ . X! . L$ R@ $ L$ ]& ^& $ $ > ; o! - ! - & & ^ ; U@ ] ; Q$ > $ Z, . ~ ~ ] [ N$ | ' ; & & %# . & T@ ' ' | & & & h) ) ~ $# [ 7- U$ 4 | X@ | 2 [ Z! 4 ~ ( $# 2 T$ # == W@ 6 6 { d | [ { J] c6 6 *= d a ~# D, 0 d 0 6 e J] ~# ~# ,# a 0 ~# {# h 0 a j e Y$ p ~# `$ L= 0 n l h n^ r q s> ^# ~# ]# h Z$ :# `$ t Y$ D C m m % ^# w G :# G N ^# N F= O@ M 8* w z M M P@ M Oz x Oz E$ 3# o^ O@ S 3; O 3# P@ O@ P@ A: 3d d- U^ 3d #N G$ tw tw 0* U^ tw tw qH _M 3d @N 7s 6B 6B 6B 6B 7s 6B 7s q9 hT :M Ou rH rH J FN Ou J R mT KK uM WO hQ /P {O uM qP 0N nT hQ /P 4C tP XL RP ER XL )K zM RP XL oT aJ IR AM uP Ix Vw pT Ix uP ]u nK YL

T 4T 4T }K ({ ({ JM HB Bs ({ 1L lS lS lS xT 1L ({ JM lS bM |K |K qt |K aO .B aO aO sQ |K |K |K yT sQ TS ^R ot _i ot ot UN LM 5H 5H LM 5H 5H 5H LM zT LM ot 6I ~w s0 wg s0 LM _{ _{ ~w '; ~w nf _{ L| f) o2 E+ AT BT @I CT _J DT jM )e $Q Qs Os bu Qs =B JD *B Os Os Qs bu JD Ps =B Ps Ps JD *B *B JD JD *B *B JD JD JD *B au *B =B Qs ET NB 7K *B DC JD JD DC JD JD JD JD JD JD bu JD *B bu Wn FT cw /n kh GT HT IT JT 'l /y KT LT 1j ,B QB ,f 3g MT MC kb Sh NT OT S+ S> |@ e@ ~* u@ {* t@ w$ ). '. 0# v{ .= .= z@ R @. 7# .= G@ #% C, H M M N@ S M@ P@ H ", +"0' #S R@ $ = ]& . $ ]& ]& $ 0' * ; $= = $ V@ . . . $ . * . T@ ]& o! $ o! $ ^& . > ]& $ T@ S$ R$ ; . ' - = & U@ N$ ; %# $ ; > > T@ . . > H= o! U@ ' N$ ; ' { ; | N$ { [ 1 U@ { ] | & - | | { R$ 2 $# ( ) | 5 < { [ ## 1 X@ } ~ q> J] ( ,# 5 d d 7 j 6 $# d ~# 7 e ~# ,# 7 e a k n L= a' h j |& p h 0 A~ X$ n `$ r s> q _# s> u ]# :# u 4* {& D p o m ^# /# 4* /# ^# ^# p Y$ D G m D 8* m M G 8* N T^ 3# I Q@ PT A A Q QT =K M M@ L :* i5 3# E$ n> O r! H qF 3d #N 3d RT G$ d- L@ #N K) qH 7s `I tw O= 7s @N 7s mL 7s $N $N $N AS 6B ja ja q9 FN J J {z FN bf ST R WT WO qP uM /P qP ~L pP WO pP [T {L XL )K MQ aN tP RP :P AM KJ Wq Wq AM Vw AM JJ ]K uO cJ Ix PQ XT vO YL hJ }P YT ZT vL KN /+ b= k' Y# b= %, k' ] k' u- b= Y# |+ u- %, s% s% |+ I& 3+ 3+ ;- $$ 8+ |+ $$ $$ .$ e+ $$ $$ _S CP F* F* _S _S _S m' qQ QS 8P kS RJ SR 1L lS 1L 1L 1L HB 1L 1L lS JM JM JM bM lS lS xT cO .B |K $U |K qt |K %U 1K bO |K aO bO aO sQ uK &U _i tQ oS &U ot ot ot 5H ot 5H 5H ot LM 5H LM 6H Es nf nf ~w *U LM ~w S> [A _{ nf _{ 7I ^7 W2 k= =U Ga Tn +s .y md @H -U ,q %s Qs Os bu *B *B JD JD Os Ps =B Ps Ps Ps Ps JD DC |G DC |G .H OB ;U [w |G |G bu |J DC *B @y >U `Q #s JD JD JD JD JD DC DC DC JD |J kz WJ DC DC DC $L 2g Mh =L ,U QD KC 'U DQ {F ]T KT )U 'P )j !U 4f fI ,r ~U =M {U %R ]U P+ =@ 4@ m$ o@ -& {* 4_ '. ). 5& A@ &. =. .= 4& 5# ^U E@ S D@ P L@ L@ J H G b- A K@ x ", +"0' 0' ]& ]& ;b R@ L$ . 1* $ # + # ]& + <{ J$ T@ + + > $ > 0' L$ + & $ - - = . > R$ $ $ & . ] . Z, [* P$ 5- Q$ > N$ ; | & & H= N$ $ ; $ ) { %= ] { 7- | H= ## | Q$ N$ Q$ ) ) ) W@ 1 | 2 X@ N$ - { X@ *# ~ { | ) ( [ 4 W@ W@ ## } ( } 4 B; } V$ $# 9 7 d Y@ 7 q> 3] c ~# 6 a Y> ,# 0 n ,# 3* a a a n {# L= h [& r |& ,> h W$ m p L= L= g r m m /# C W$ Y$ ^# 0- Z$ `$ ^# /U Y$ Y$ C t z m D w 8* w 1& G I ^# O@ z N 8* Oz T^ 8* 3# 8* c- O@ 8* SO c- *I J O T O *I O L 3d 0* T (U L@ G$ #N 3d 0* 3d qH qH _M qH mL 6B 7s $N mL 7s 6B -I 58 7s Ou {z Ou HQ FN FN J _U J cS DS HN GN %T HN 'O ^Q dS |C Yz Yz dy |C 6N fK /Q sO nP >S tH vG ~O TL uH ~O 9N X, 0@ j- u@ o@ >& >& !. d# *. -. (* A@ .= C$ J R H L@ Z ` P@ P@ 1# H A z N@ b- ", +"# 0' L$ R@ p9 L$ [* # * # $ + # L$ 0' $ $ = . ]& . Z, T@ + M$ Q$ T@ $ # + Q$ . S$ = L$ - > Z, ] & & ~ > N$ & ; ]& Q$ > ; & Z! | . Z, & | . | H= ; H= 05 X@ | ! | H= ~ ~ 4 ) ) 1 W@ V~ ] X@ Z! Z! ( 8- & 1 } / [ [ ( } 6 /& $# ,# ## 6 6 } &# 7 Y@ 7 c M' : ~# a 0 0- o W$ D, i c 6 L= W$ a 0 c {# 0 h c 2, {# n s> n p n c r ~# 4* m L= Z$ Y$ c L= Y$ 2, B ^# y2 2; r ^# z w w Z$ z b' z O@ z M c- G I 1& T^ G c- c- H$ P@ m) O |# E$ O Q O O@ O T T L i5 U hU iU ^P 3d G$ pF 3d #N G$ @N _M qH @N @N mL mL jU mL $N 7s 7s kU mL 6B BS HK :M mL AS BS J cQ PL q #s au vN iM QU DC *B `Q LO BQ au LO RU *B au au au *B 7K SU Xk TU TU Nf z WM eE /n jA UU kk ;o VU ,l WU Hj Jh +H EQ XU YU Zx ZU `U +^ n, X* -O ~* {* (. H! ). ,& z@ 5# +. @. .= .= i~ G$ V P 1# L@ J P@ A I H$ I Q@ z ", +"- = ]& J$ J$ ]& [* R@ L$ I/ ]& $ + J$ . 0' + $ $= Q$ k) . V@ # . $ $ S$ = # - 0' > T@ Q$ = Q$ Q$ Q$ ; > Q$ & - R$ N$ ; > X@ ~ N$ > ; . $ $ | ; & Q$ ; ] ~ ; X@ ~ ~ ^ 2 { ; ~ ~ | X@ ( ^ N$ | d | /& /& ^ 5 ( ] V~ [ , 6- -# } ) } d D, V~ ( 7 0 ># 1 a 0 n s> k g d c o } d o ~# ,# 0 e ># e h k n o p h s> Y$ 4* ]# l n n n^ w 5* {# Y$ h n h `$ #] z )> F= G w G G w m w a7 1& T^ G F= z N w N 1& V M M |# #= d{ O@ 3# |# 3; M c- P@ SO |# T r! T |# E$ L@ #N 3d 3d U^ 3d 3d #N G$ #N ^P 3d @N .V ^P mL 7s mL 6B 6B $N UO mL mL $N J J Ou ja FN J J {z dK J iT #J +V =S dK |C 'O 8R |C 6N fK 6N Yz @V fK ^Q pO #V 0R $V %V >R 2M sO KK KK 2M ~O VT mT _P J IR >V [P KN }P ,V !R 'V )V 1T QQ UP UP YO UP UP UP ~S !V ~V VP `T sU _K yO yO wU {S PN _K XP xU {V jS ^S }L OJ :K :K }L rC }L fR OJ }L ]V }L }L RG FI HM CB x ;w `w `w x `w `w x Cl yD CB ^V yD yD .x yD +F Fy Fy El !k .x /V Fy V5 V5 ~k V5 V5 .f .f UG 34 .f wo +f )2 {k Sc /1 J^ C_ Z{ J^ 7< 7< J^ 3{ C_ C_ 7< 3{ W5 `^ `^ }_ C_ `^ 3{ `^ ;] j/ i( ~) C' G{ C' @{ ~) @{ C' @; *+ C' ~) ~) `{ @; Q) C' g! Y# <' r] r] Y# /+ b= b= `' %, b= %, %, s% |+ _+ /+ A* s% 1+ |+ 1+ s% 1+ z* p% $$ t% $$ `# 4+ oN 8+ c+ F* 8+ $$ d+ CP CP F* F* CP CP CP _S pN 1L |L QS .Q HB 1L JM 1L lS lS 1L lS xT lS MH |K JM xT aO aO |K |K bO |K .B .B (V bO FU CL aO 3U UN _V |K UN uK ot oS 5H 5H ot ot ot 5H LM LM HO 5H LM LM LM LM uC nf ~w s0 6I ~w nf <~ '; nf _{ L| O> UR :V xe o .e .z -y 8V 6S eP /e 9V 0V 1] ^@ w; >* ~* D= q@ ,& ). ). !. &. &. e- R .= #. 5# H J |# P Y L@ S S A P@ I Q@ ", +"V@ + + M$ R@ # ]& ]& + # = & ]& L$ = ]& . ]& ]& + $ = ^& $ [* $ = - * 1) & + . Q$ . * > & + & T- Q$ =' 2) U$ ' O$ $ & ; |* # > & * ~ > ; > . [ | ' & 2 X@ 7- 2] ) | | | ## N$ 2 ) U$ | & /& ; | <& X@ } Y> 1 : < { 9 b } /& ( 0 5 X@ < Y@ 1 6- $# ,# i 6 0 < 6 } k $# ~# 0 {# i i k 7 n ~# m Y$ h r ,# n p n m p c{ Y$ ,> ;= 4* u t V| m n r -) s> p D {& 2; G {& D D T^ /# q I z ^# G z P@ x N z 3# M P@ V 1& J M 0S 3# h] P@ E$ r! aV A: P@ E$ G$ H L@ G$ ^P #N G$ U^ U^ G$ G$ 3d #N `I ^P `I bV lP 7s 7s mL 7s mL $N cV mL 7s 7s {z FN J -I aS J FN J IK &N IK #J MP %T dV IN A0 mP fK 6N nP fK fK 0R 0R fK nP 0R nP eV $V tH uH 2M fV vM /P /P >R gV hV iV uM ,S WO qP ER jV kV lV RP RP mV Vq aN RP GR RP GR Wq Wq uP HS uP Ix HR Vw Ix Vw KH [P nV #G

q@ O- :. v@ ,& {. e- )& z@ X 5# $% H@ 1# P H Y J n> K@ 2& A H G A ", +"+ M$ + p9 ]& 0' ;b L$ 0' ]& = $= = = + > $ $ . 1* 0' ]& o! * * . & ; + 5- V@ $ $ & Q$ ' |* - $ H= ~ ; S$ - . $ ; & %= N$ ] ] =' T@ Q$ ; ~ - - 2 %# 2) ' & | { ^ ] { X@ | | { ] ) N$ 2 { ] | Z! 1 *# [ ( Y> W@ 2 7- $# ## 5 } 7- B; } 5 { ,# ## d V~ ~# 5 ,# 2* 6- i 7 o ># L= ~# 7 a ,# [& n ~# 0 c 6! z: 0 Q{ o ,> 4* Y$ % L= c ^# :# /# p ;) % `$ a t :# 2; ^# w B w /# z 1; G N {& p }# B m 1& O@ x w A 8* N G M M n! A HV 3# 3# M E$ J M o^ L 3# d{ T K@ r! 3d L@ G$ 3d #N 3d ^P #N #N #N #N _M 3d _M tw @N 7s 58 6B 6B mL -I mL 7s 7s FN J :M AS aS {z ja _U kI eQ cQ GN HN iT dS dS Zz -R IV 6N 0R fK 6N pO fK jT 0R nP JV 9R QP KK TL KV pO LV R 2M hV >R kV &V _P MV ~L MQ RP NV XL XL MQ GR HS GR Wq OV pT =V Vw =V IS aN =V hJ HR YL PV pT YL QV RV KN SV ZT JR YO UP qT QQ !R QQ JR ~R ~S VP yO yO ~S +P +P ON zO +P VK TV OR yU jS qK iN :K OJ :K :K fR }L #P }L ]N OJ }L fR )J }L ]N qo kN CB q `w x W ,W -& h# = = /* &. {. &. E@ H@ @. 5# 9* T P V H@ T P@ S M #= H$ P@ A F= ", +"$ !, $ ]& ]& M$ ]& L$ 0' .( l) L$ $ [* + 0' - > ]& * . # . - Q$ $ + |* ! = > . Q$ = & Z, . $ # = & | & N$ ; U@ & %= (& N$ # Q$ | Q$ + ] ~ ; | 'W ~ ] Q$ ) N$ & Q$ N$ & ) %= > ] ~ ~ J= 4 S$ /& 4 | | 9 /& < [ d 2 } Y@ [ ~ $# ( } N' V~ Y@ %= d ,# ~# V~ e a 0 3* J] Y> L= c ~# 6 L= k c 6 h a 0 6! n c 0 ,# L= 7 Y$ h V| ]c ~# r `$ h /# 1; n p -) h ^# :# `$ n Y$ 4* {& :# G m ^# O@ ^# D {& % w f^ F= M I M P@ G I T^ 0S c- M O@ M U Q@ )W O Q E$ d{ E$ qF ` L |# qF Y d- G$ d- pF #N G$ ^P 3d #N lL G$ lP `I E^ @N mL EN 7s AS 6B mL O= $N BS rH ja hT HQ Ou FN FN BS !W cS sM dS sM dS =S 6N |C dS ~W |C |C nP jT fK #V pO lU JV {W IQ eS >S ]W ^W /W (W KK ~O _W mT 2M uM :W rP M |G RI 0L au *B yt Hj eE /n xv xv gW |N cU hW kh DQ +e 4f xf %l .e &n Ih nd Do _N ;a iW jW @@ 6$ o, kW x$ b& d# w$ :. !. A@ !. 0# +. 9* T X F@ R X C$ P P P@ J P@ H$ I H$ A ", +"= $ # L$ <{ V! ]& k) $ 0' T@ 0' M$ + = L$ !, V@ ]& 0' # $ ]& . ; > R@ ; > S$ > N$ o! = V@ ]& > . ; = N$ ] U@ . T@ ] * ] ; & [* ] ~ U$ > ; | Q$ ; | H= ] S$ X@ | 2 | N$ | U$ N$ R$ ) / & *# N' ) ] < 05 N$ 2 ( ## | [ /& 6 ) V~ } ## 9 d } a } { Y> b J] $# 7 0 n b 7 d 0 e ~# ~# n a c e n ,# 3* 0 h e 0 0 L= ~# L= Y$ p s> )# K= Y$ p `$ Z$ `$ Y$ |& u t 4* _# K/ -) 2, w 2; E `$ #] {& }# z m n^ G z D #] I G M I o^ o^ c- 3# T^ 3# 0S c- c- |# Oz 3# d{ J |# #N H c- G$ 'Q L@ C, G$ 3d tw pF U )Q _M #N pF #N 4# _M `I tw $N mL 6B mL 6B 6B TO mL $N 6B {z HQ mL J {z J _U cV DS DS CR CR _U Wz ~W fK dS mP |C Zz 0R nP fK nP pO lW pO 6N KV oP mW DR DR nW oW WT pP >R J *T (Q _Q qW nV 1T UP lQ _Q UP ~S 1T QQ lQ UP 2E yO yO 2U }U rW +U sW tW +U FM 5P PN jS xU yU yP }L :K yP @P OJ OJ }L yP }L OJ }L {N 7O .F 6O (S Y# b= b= %, Y# %, %, b= b= %, H& Z# A* %, |+ |+ |+ p% p% _+ .$ D* |+ 1+ D* #$ |+ J& CP F* F* CP *P _S CP _S CP CP CP e+ >T uW qJ SR JM XV pN JM HB JM 1L JM JM BU 1L JM 1L lS DU nS xT 7W :S aO |K qt .B aO aO aO aO bO 3U $q sQ ^R 3U bO bO uK 5H _i /R /R ot HO 5U HO 5H ot LM ot LM LM LM 5H s0 nf ~w nf @Q ot uC _{ f) _$ P9 k= vW Be Is wW WS yQ xW )r }V Os Xn Jo Yn ZJ YG yW YG 5V zW 4V AW 4V 5V -M BV 4V BW &x YG 4V #n 6f dW 4V 4V YG 4V 4V }R }R }R }R CW 4V 4V 4V 4V 4V #n YG BV jz W W Fo >M DC =B |J Ms dU /n jA /n jA WM JT 9T ju $W DW !P p :x ji #j $K EW FW GW XI `a %a HW g) IW 1@ e@ =& t@ :. (. ^. d# -. >. G! A@ 5# O= E@ H M J O 1# S M O H +% Q@ 8* 1& ", +"+ ]& + + <{ J$ + p9 + + R@ $ # S$ $ ]& > + . @ > . $ $= = . & . # $ > * $ * ] $ L$ ; ; ] N$ ~ > # $= & & N$ ; N$ . ; ; [* * ; N$ . $= P$ N$ U@ N$ X@ ; ; N$ 4 ] ~ ~ H= N$ { / [ 4 : { 7- *# 7- a V~ { ;# } 9 d Y@ Y@ } 6 /& } 2 *# X@ { 6 8 Y@ ,# $# g K/ ,# D, x0 e D, 9 e -# ~# c 6- {# L= k r o r L= ~# Y$ Y$ n 2, A~ c h L= 2, 4* ^# w _# |& ^# t C t h q q % w @= /# b' w 5* ~& {& x z JW B KW 8* #= O@ 8* 8* 8* A P@ 0S c- 8* 8* 8* 3# |# A 8* 3# LW *I E$ c- MW Vf G$ L@ 3d 3d 'Q d- r! G$ DN K) 3d NW #N $N 6B qH mL 6B 7s $N *R 58 mL hT 6B $N :M FN hT J J _U cQ J QL . 7# ,= 7# 5# 9* M@ L@ Z H H L@ P J@ I O@ H$ A N ", +"+ L$ ]& * ;b L$ M$ R@ L$ ]& + + + X! + . ;b $ > = J$ V@ * - ^& - ]& L$ . $ $ > # $ . ; ] S$ . . - . S$ $ *' ; | ' = ] N$ + ; ; Q$ *X . { | . ] o! $ ; & ] / H= 7- ] 2 *# ^ | | { | ~ X@ ~ 7- J) | { 2 X@ ~ ) 6 / d ,# ~ } ,# 9 { a } Y@ d $# 8 a a ~# D, ,# : 6 c ~# ,# +# c L= 8x ~# n ,# g h L= p n Q{ n ~# Y$ `$ tA K/ r u V| Y$ q Z$ 4* `$ ~# `$ q t 2, p t :# F t :# D /# N m p G A % G K #] z G G 8* n! O@ M M M n! =X 3# QT O@ 3& Q@ SO >z J |# P@ E$ E$ r! I@ G$ 3d tw U^ `I L@ pF `I G$ !Q #N qH _M E^ -X 7s $N $N $N tw $N mL 6B $N $N J $N $N {z J _U J cV MP lI mP &S iT ~Q CR Zz 'O IN fK |C fK fK 5N Zz ;X lU >X lW ^Q mU mU >S ,X DR /W rP ~O mU VT 'X )X ,S :W MV ER RP ,R zM XL Wq MQ XO GR zM Wq AM uP HS !X Vw nK uO RP Wq HR >J YL

J OQ OQ *T =T vL SP #G uL ~S QQ 1T 1T pV 1T ~S [U ~S qT UP +P `T MS {S +P NR +P @U +P +U ~X 5O iN xU XP ^S yP OJ {X }L OJ 'G }L :K fR :K OJ ]N OJ .F FI SG CB )J 7O FI x 0 n i9 xD Fy El `e .x El gd !k V5 .f .f !k .f ~k tg ~k V5 Mn Tc J^ /1 ^1 34 9) Z{ J^ 7< ^1 F{ Z{ Z{ 3{ 7< J^ 7< 7< `^ [] K^ ;] 3{ ]~ 3{ 3{ S] s~ O~ H{ ,^ z) C' C' C' @; @; @; @; C' @; 0= `{ Q) B' C' 4> ]X W# g! <' /+ b= Y# b= %, %, %, b= ) Z# c= ) |+ p% |+ `# p% |+ |+ .$ D* p% D* 3T .$ +$ CP CP CP d+ _S CP CP _S F* CP CP CP _S >T RJ CP }K ^X qJ IO JM HB CU 1L HB lS JM lS lS lS lS |K DU 7W 7W 7W |K bO aO aO bO bO 3U bO bO 4L /X aO ^R UN ,T _V &U vK /R /R 5H 4L LM /R vK tV tV HO HO LM 5H HO 5U s0 wg JI Es 5U oS $g L| ,; W3 Cs (X Yb _X 9U :X =. A@ z@ A@ &. B$ V Y P@ J H O H$ J H S F= M M@ ", +"]& ]& R@ = ]& ;b R@ L$ ;b + + # + L$ > + $ = # = $ + }* !, ]& $ Q$ ]& 0' V@ ; $ % # $ S$ > = $ & & $= | ; = . - U@ ; ; U@ Q$ . S$ $ ; ~ ; . > S$ Q$ H= W@ 2 | | H= | U@ N$ 4 ; 2 ^ N$ ~ Y@ { # 2 ] } 2 } 2 %= / 7- W@ d Y> $# } < ~ Y@ [{ d b B; < e !# 5 $# a ,# a 0 d ~# L= 0 ~# 0 L= *= 3] 0 E, q 0- n e tA c c ~# c 0 n u s p Y$ F Y$ p `$ ~# Z$ 8 Y$ c q 4* % m t w B I c- m #] w O@ n! w n! z w I n! O@ c- T^ M I O@ O@ V Oz U d{ >z A: c- A: E$ A: >O qF pF U^ G$ 3d ^P `I `I #N ^P 3d )Q )Q tw _M @N _M )Q E^ $N $N mL AS @N 9X 6B 0X 6B AS Ou J :M kI _U _U J J MP QL cQ ~Q iT HN dS 8R @V cy nP |C fK nP aX |C fK pO nP pO nP DR bX !O nW cX IQ /P 2M ~O PW gV ,S ,S hQ ,S ~L dX ER hV eX )S tP XL RP Ix HS AM GR oT HS :P Vw AM HR Ix Ix *T

Y# Y# q] ) /+ /+ b= k' Y# %, Y# b= ) 2+ p% <+ `# `# `# |+ `# `# `# `# RR `# RR D* RR `# .$ jX CP CP CP 4W *P CP CP QS _S CP _S QS _S QS .Q 1L XV kR BU kX 1L 1L 1L xT xT lS 1L lS JM :S bM lS CU xT aO |K |K bO |K aO aO |K 3U 3U FU 3U UN UN bO 3U lX LM 5H 5H 5H 5H LM LM LM 5H 5H 5H HO LM HO HO tV HO nf LM _{ s0 5H 6I _{ 94 G+ Yr mX _f nX XR oX xW eO $Q pX XR fW 2X +W BV YW fW jz -M -M dH BV @W fW jz 2X -M @W YG -M zW YG 5V zW 5V fW W 4V 4V cW 4V 5V 5V 4V }R 5V CW }R 4V 4V BV |X fW -M `W qX |X BV yW rX Ny sX /n jA xv eE pu )B jA Ro gW *t 2k 5g tX uX sz #d ke 7g vX -F Hd wX xX yX =@ 3@ 0@ :; l@ -& 4_ ~. ). -. ). e- z$ $% zX E@ .. 4# H@ O= >) D$ ` H P@ M@ P@ K@ Q@ ", +"]& + <{ # + ]& + ]& . # + V@ + M$ + > ]& # k) Q$ ]& - > ;b - > T@ 0' L$ ]& . - > . Q$ > # o! U@ P$ . & . * H= > & S$ $ S$ Q$ & N$ . & & ; 5- N$ ^& ^ Q$ ) { ) Q$ { ~ Z! ~ , X@ N$ W@ T- ; Y@ ; 2 < ] } Z! H= [ X@ } ;# { } W@ ,# a a /& X@ 7 ,# -# V$ 0 7 8 e a Y@ 1 a ~# ~# e e {# ,# i M' b k ~# b ~# ~# g C; 0 L= }{ c {# 0 ~# 1; `$ h h ;) y K/ w Y$ m `$ p `$ ^# u t t z #] z G #] I w w w 2; M O@ m N@ 8* JW n! A M N 8* 3# c- 3# O@ E$ 3# d{ d{ 3# L i5 aV Q A: AX *I BX G$ #N 3d #N MW #N #N ^P `I #N pF _M qH EN qH EN 6B 6B 6B jU 6B AS $N mL CX -I Ou {z HQ AS hT {z DX cS Wz ST EX dS dS EX [M |C mP ~W |C 6N nW nP fK @V DR 0R 0R pO oW mU mU DR >X FX WO ~O sO fV 'X qP hQ _P MV :W dX -V :W &V ~L dX {L GX Wq HS HS MQ GR oT =V HS HR HX IS pT IX IS =V IS pT

+ $ ]& ]& ]& > ]& R@ ]& Z, T@ $ # # V@ > * ^& # ]& = & o! $ . = . > > %= (& . = # ] Q$ & . $ ^ $ (& ~ ~ | ~ . & ) & { | N$ H= 1 *X X@ ~ / U$ ) Y@ [ 5 1 2 } } 2 V~ { 1 ,# d { / Y@ 7 ,# 6 4 $# 1 *# } ( 5 7 ## V~ a [ J] e L= a e 7 d i a' $# e L= 7 ~# t' ~# `$ X$ M' Y$ ~# p q g p r c q % t n `$ `$ p s> % /# G `$ 2; w /# 2; {& ~& /# /U z /# G t I /# 1& z G O@ G n! K a7 Q@ 3# |# |# 1& 0S J Q =X G A: Q SO 0S WX XX YX yS L@ r! #N tw E$ G$ )Q 3d pF 3d 0* ^P @N EN `I qH AS 6B mL $N kU hT mL :M HQ AS Ou BS CX UO ZX :M FN _U CR sM %T dS iT `X ~Q |C [M -R |C fK nP 0R 6N 6N 6N pO >X ^W cX LV LV IQ lU fV sO uM /P /W T VQ qJ JM SR 4T JM lS lS JM JM lS JM lS lS JM 7W .B aO lS xT aO aO 3U bO .B bO aO 3U -Y bO _V /X 3U ^R ^R ;Y ,T &U 5H &U 4L &U 5H vK 5H LM >Y 5H 5H HO LM HO LM ot 5H JI wg _{ dM uC _i ^7 ]7 ,Y 'Y 7f )Y ~P !Y 7T 7T ZQ ~Y cv +W {Y 2X +W ]Y jz fW jz fW +W ^Y fW fW W 2X {Y hM fW ZW -M ZW BV 2X -M zW 5V +y /Y +W -M zW AW YG #n dW 4V }R NU zW cW zW (Y 5V 2X fW FL fW -M W aI _Y GT JT jA $W Mh +K )B WM QD hO KC !P 5g $j :Y ^F 3g cr ]& = Q$ > . V@ + = > A; S$ = H= $ = & ! ~ $ . = . & > $ Q$ U@ ] ' N$ & ' | * ] & # U$ ) ' ~ Z! 'W W@ ; ; S$ N$ N$ 4 %= Y@ 2 D, W@ { 6- | 2 } Z@ Z! Z! ## & ) 2 { /& N$ 2 0 7 6 ## 5 $# ( e } } d j 6 [ 6- ,# e n n k ~# q> ,# c a d b c o !# 7 0 q `$ h L= ~# ~# r _# L= Y$ `$ r _# Z$ s> 1; u p 4* % 4* G `$ t p /# {& 1; {& F= G >= ^# G A m N 8* I a7 8* q! m) O@ M P@ 3# }Y /# c- T^ P@ O@ i5 d{ E$ M O@ d{ *I MW MW 3d L@ G$ .V #N U `I RT L@ G$ #N ^P qH -X -X `I 6B EN 7s mL $N TO mL $N AS J Ou ja aS AS CX aS AS HK |Y BR 1Y eQ dS CR 2Y HN =S |C dS kT fK fK DR nP nP pO nW FX lT pO nP sO fQ DR ^W DR 3Y 'X >R 'X gV mT _P hQ _P _P zM GS -V )K 4Y ^O GR XL GR Wq oT RP AM HS GR HS AM IS pT HR HR pT PV 5Y IS

J |T XT 6Y Y# Q~ /+ Y# /+ Y# /+ Y# (+ Y# Y# /+ G& p% _+ b= `# `# `# |+ aY p% `# oN p% aY bY D* |+ z* D* CP F* _S _S QS F* _S _S QS QS _S _S 6W NX CP cY GO dY TR JM 1L lS JM xT lS BU xT xT lS |K aO xT 7W bO aO |K aO bO aO ,T 3U ,T 3U ,T 4U bO 3U UN yT 3U ;Y On r0 'T /R 5H LM 5H LM HO >Y LM HO LM LM tV HO tV JI ~w wg Es 6H uC BL n2 8= eY VW fY gY hY ~e H= 2 ^ | 'W X@ 2 ~ 2 N$ ~ } [ V~ 4 X@ | *# { X@ 8- [ ( *# d ) a $# 6 < 6 $# 5 k q> { I= a $# ~# 2d $# ,# ,# e K/ Y> ~# e L= e ~# 6 c c L= 2, ~# ~# r Y$ {# _# n _# q n 2, u s> p /# B p u ^# n^ `$ :# B D :# t % z /# z G % x a7 z I D G I F= $T HV c- W) 8* 1& M |# JW |# c- >z M 3# S L Q@ U P@ i5 oY L #N G$ r! G$ DN #N U^ pF RT 3d ^P ^P #N ^P ^P @N 58 lL EN 7s $N TO 6B mL hT mL FN {z :M HQ FN AS CX FN cQ pY ST dK sM &S qY =S =R dS EJ oO BR nW nP 0R rY pO 0R 0R >X |M lW sY tY OW uY cX ^W vY wY (W cX 'X mT _P hQ xY MV yY zY GR dX nU {L AM {L .Y XL HS Wq OV HS MQ HX oT HR pT HR IS [W [W #G IS PQ >V [W nV [P F; -. 0# !. C$ @. G@ X T J P@ L@ Y 1# P@ z c- Q@ H x ", +"L$ . V@ $ L$ J$ R@ = = `Y $ ]& J$ $ ]& ]& # V@ $ X! . # L$ . . . X! > Z, X! o! > k) . $ > U@ & > & $ U@ . ; ; & ' $ & > ; > U@ N$ ; ^ S$ . ~ ) X@ ; ; I= & ~ H= ; & N$ ;# & ; N$ *# ] | 1 2 1 ) 4 ; ; 2 H= X@ 5 [ ## /& { 8 ( { /& b ( 7 ( d X@ 6 b V$ e a d 0 d d e 7 7 6 k ,# ~# ># r ~# L= ,# n L= {# n ]# Y$ h `$ r r h C; Z$ u 1; u :# ^# y m m ^# D 2; w w % #= z #] /# t :# F D z I w A #= Z c- w w M 7R I 8* x O@ M 8* M d{ QT 3& O SO SO E$ qF Q .Z D$ A: L@ ^P #N H 3d #N #N ^P +Z #N )Q BX EN C$ DN `I mL mL 6B 6B 6B $N rH {z ja cV mL BS BS AS FN kI |Y cQ J XT -Z [W =Z =T SW ;Z JX AY -Z qT pV >Z @; `) A! S# (+ b= {+ X# W# Y# b= Y# Y# (+ /+ ^+ c= _+ `# c= -- _+ p% s% `# o% #$ `# D* `# #$ D* D* p% 3T _S F* 5W _S 6W GY QS F* QS _S CP _S QS .Q _S pN JM lS kR BU 1L lS JM 7W xT !Z xT xT xT xT xT DU ~Z IY IY :S 3U bO |K aO aO 3U 3U UN 3U 3U JY ,T yT ,T ,T On {Z LM KY zT LM LM &U tV HO LM 5H tV LM LM &U 5H s0 wg wg ot Es On tQ Xr ]Z xa ^Z dc (w Vn CT @L aI 7L NI NI 7L Do 7L YR QY 1X 1X gY gY ^Y fW fW fW 1X yW +W 1X YR fW fW fW 2X fW fW -M -M -M |X fW YW BV 5V AW YW zW BV 5V YG #n 5V cW RH -M -M hM +W fW YR /Y /Z (Z _Z %W LT LT pu Ro 6V )B cU :Z ar ;o fE (j >f +H * u@ O- = {. '. '. -. 5# &. $> L@ }; C$ J@ L@ J L@ Z S L@ E$ M E$ H$ A ", +"L$ Z, V@ + L$ L$ R@ L$ L$ # # ]& ]& T@ + # > ; . L$ . V@ ]& = T@ T@ & U@ V@ + X! U@ . Q$ ]& $ $= $ ; ] Q$ ; [* - Q$ . . Q$ V@ ] ; o! ] P$ {c ^& . $ ~ N$ X@ & ] { X@ N$ ; S$ & [ 2 N$ | ) H= N$ U@ ) ~ [ 6- ( ; H= ~ { } 7- 2 W@ } } 2 ; 4 ( $# 9 b 7 Y> ( $# ( $# } 6- 5 Y> ,# d e ~# Y> ~# n k c ,# 0 ~# 8 k r Y$ K/ L= n |& c{ ,> h `$ 2, ~# t 4* 2, ,> q 1; p F= n^ $] q p G |Z 1Z ^# {& G E /# xE I G w I t O@ I F= n! z n! 2Z O@ I M 1& ~& |# 0S d{ n! S O@ Q d{ *I *I A: J BX 2# BX L r! qF H #N G$ 3d G$ 'Q ^P +Z ^P @N qH DN E^ AS mL 7s mL $N -I 6B $N mL hT AS FN BS CX AS _U 3Z cQ aS 4Z FN T QS 6W BU xT XV gZ JM lS lS lS 7W xT xT xT xT 7W IY bO nS xT 7W (V 3U bO |K ;Y bO bO 3U aO 3U 3U _V JY lX hZ 3U ^R lX 5H LM 4U LM HO r0 LM 5H LM HO tV 5H 5H HO 5H dM LM 6I nf nf $g sa L iZ jZ kZ lZ mZ [V PY nZ 6u @L NI NI /Y #Q NI gY 7L Do Kl 9L 7L Kl Kl YR fW yW 6A YR ^Y +W 1X {Y yW jz jz BV -M +W YW YW |X -M 2X -M -M -M @W dW BV -M #n cW cW CW BV 5V -M fW hM WS MC Bg Wg (j oZ %W KT /n /n LT |x 2J hO ar (Z :q ]j uX pZ qZ vX IU XI we za rZ d^ {; w; f@ m@ o@ d* {. 7; A@ [, A@ &. (* ^U F@ V E@ G@ 2# M@ M@ Y H P@ I I F= N@ ", +"]& L$ & . = k3 # ]& = E! + 0' = ]& # = . . > 0' # = $ 0' . > ; # # . L$ > . > $ . & . $= & > ] $ $ Q$ ] - k) & %= U@ + ^ ; & N$ ; ; N$ > ^ ~ H= . U@ & ; ## Q$ N$ H= N$ X@ N$ ; ; ~ ] { / 6- ~ ; X@ | { X@ 2 2 2 a ) ) / 6 ~ ) 6 5 <& /& /& ## ,# V$ a e 0 a ~# ,# ~# ~# Y> j o {# ~# e ~# h V$ a L= o n c g r o _# A~ _# p {# q -= h c vA 2, L= w ^# p :# B 4* 4* G /# w b' ^# w 4* G :# n! A a7 8* I ~& I M M 8* z A A c- H$ M O@ 3# E$ Q E$ }Y A: *I L A: J qF U^ G$ r! >O qF U^ #N 3d )Q G$ G$ )Q )Q RT 3d sZ EN qH EN EN 6B mL 6B mL *R mL $N hT CX 7s AS $N $N _U ST pY cQ ST cQ tZ HN |Y BR [M uZ vZ {Q |C fK 6N nP 6N nP DR nW ^W lT _W uY oW wZ nW _W vY pP &Z ^W xZ yZ hQ :W qP MV :U zZ 9Z *V 0N zM AM HS NV =V oT AM HX NV RP }T pT uP PV HR IS IS HX #G OQ PV AZ nV =Z XT gX qW nV $ $ R@ ]& + L$ 5_ $= V@ . S$ S$ ]& + L$ 0' . # U@ k) U@ U$ ]& L$ . . H= . |* Q$ S$ !, U@ ' & ; > . - ; H= Q$ T- . 2 2 H= . `@ %= > N$ [ ~ N$ - S$ ' . 2 ; N$ . %= & ) | H= & ~ /& | D, *# { ~ Z! X@ d { 6 [ : } d } ~ { 7 d 1 /& $# ( { } 5 Y@ d ~# 5 ,# a c a L= ,# a d 7 e 0 0 c c ~# h n a u 0 tA 2, 2, Q{ `$ ]# p ^# m Y$ ]# u `$ p -) 1; w {& p B /# p C ~& /# /# w w N O@ I T^ N z z A z ` Q A: L L L BX 3d pF oY 3d WX )Q #N #N )Q #N `I ^P 3d ^P mL E^ tw #N 7s $N mL mL $N rH AS $N AS AS AS .` AS hT hT FN +` FN aS mP _U ~Q ` OJ }L fR OJ fR :K OJ OJ :K RG fR 7O ;w x CB `w FI q +. E@ @. L@ L@ P S I I z %> Q@ B S ", +"# $ + # # L$ k) V@ > = L$ + M$ = $ & = * . > L$ . ]& ]& H= & # T@ - Q$ > $ - !, Q$ A; > 2) Q$ | H= & S$ ; Q$ - P$ N$ ' ~ ] & ; T@ H= ; ; > & =' ~ ; > ] | Q$ { X@ ] - N$ ] Z! ; 1 ; 2 T- 7- +# { V~ / %= ( &# 1 *# { $# 6 4 { [ ## [ [ 7 } } { &# V$ *# ( 7 6! ,# 6- a a V- 0 ,# 0- 7 {# c ~# {# K/ r ,> n n Y$ [{ c 5` ]# c r /# p ~# t p Y$ c `$ p r % Y$ p -) `$ w w t G p w /# F= m I ~& I D A %> I N b' T^ H$ A =K O@ A 8* V c- |# c- O c- 3& >z c- L L L 3; L T G$ 6` Q |# BX )Q 3d tw 3d ^P #N )Q )Q @N qH tw `I EN hT sZ $N mL 6B -I $N hT AS AS cV hT 7` cV -I CX cQ .` 8` tZ iT HN 2Y #Z 5Z @V @V =S nW nP pO jT nW pO 0R sO LV ^W oW ,X oW DR _W cX 9` ES FX 0` a` 8Z PW gV yZ eX &V :U :W b` FS c` OV d` e` HS =V }T oT AM HS HX PV IS HR pT HR [W PV |T nV nV XT pT f` gX aZ lQ (+ /+ /+ ~+ /+ =- (+ E* p% fZ #$ <+ C* `# p% i` `# :+ i` 3T z* :+ D* 3T i` jX CP CP F* 6W QS QS QS 6W _S _S _S QS j` j` dY NX BU CU k` CU qJ CU xT xT xT lS lS 7W 7W l` 3U m` 7W l` -Y |K aO ,T aO ,T bO hZ ,T ,T yT n` bO 3U yT 3U ,T MZ 5H 5H ^` o` HO LM 5H LM tV LM LM tV LM >Y LM tV HO nf L| L| W3 p` q` r` WU s` t` ,o [` u` |` aP aP 6u QH /Y aI aI @L NI NI (w (w PY 7L lM #Q NI NI 7L 7L NI #Q gY SY lM Kl 1X YR cv fW YR Kl 1X yW 2X -M zW 2X ZW YG -M YG -M BV ZW YW vt ZW fW -M +W OM v` ]j WY w` }j +R x` w` y` xv pu 2j *t lY !U dk gi 5q !l ZQ &x WS Kt Fa z` A` B` a@ t$ b. q@ (. (. 5& ). ;. ;. z@ z$ V 4# $> J P L@ T S S 3# K@ S G E; Q@ ", +"k) E! ]& + . ]& Gc = + . L$ # L$ = + # # + $ # + + + U@ $ = * T@ # ]& + & S$ - # + S$ $ $ > Z3 ] . > > U@ # ] U$ H= + R$ . & & H= =' > H= ; %= { ~ H= U@ & > ] ; =' U@ 4 X@ 2 | ^ ( { ; J) U$ U$ { ~ 2 ( ## 2 N$ } d d Y> V~ ) [ a 6 3] } ( *# N' <& 6 ,# -# k k e k ,# Y@ c } a' ~# z: ~# h s> n 0 c i o ,> ~# % ]# |& L= % K/ Y$ } Y$ :# o g _# `$ _# w 4* Y$ Z$ C` t p ^# :# C }# n! I W) m 8* G /# N 1& E; I $S n! C b' 3# JW 8* E$ E$ 1& M M E$ M HV L d{ M E$ A i5 L L@ 3d hU r! T BX RT `I G$ #N )Q 3d )Q 3d ^P )Q 7s `I _M $N EN mL $N mL 6B hT AS .` AS {z BS D` hT hT E` cQ +` _U mP |Y =S =S =S 5Z HN fK F` G` pO pO DR 0R pO pO pO pO oW nW DR H` cX oW ^W _W &Z gV 3Y &` 8Z gV 'X 0 +F EB .x El j9 El El El f f .f V5 gd f V5 .f V5 ~k ~k V5 V4 +{ +f <} C_ Z{ J^ Z{ Z{ Z{ J^ F{ J^ J^ Z{ J^ 3{ 3{ `^ ^~ ;] 3{ Y{ 3{ ]~ `^ H{ x^ }_ S] *+ @; C' @; @; *+ @; *+ *+ z) 3> *+ @; @; P~ *+ Q~ /+ /+ ~+ I> ~+ (+ Y# ~+ (+ X# (+ ~+ #$ :+ p% ~+ #$ `# p% p% :+ :+ :+ 3T jX `# z* oN FZ E* wT CP _S _S 6W QS j` j` QS QS j` j` S` k` QS VQ HZ lS qJ GZ BU xT xT 7W CU JZ 7W IY !Z 7W l` bO 7W IY IY ~` bO bO 3U bO 3U ,T ;Y 3U UN 3U 3U UN lX ;Y hZ ^R 5H 5H LZ o` tV LM ot LM LM LM ot LM LM LM 5H WN 5H nf L| f) ^- T` Cf U` V` W` * m@ b& C= >& gT -. A@ x@ (* z@ .= }; J P D$ S P O P@ E$ Q@ H Q@ x A ", +"]& 2^ ]& $ # + ]& $ = #^ k) # % + o! # - S$ . $ . * # V@ & = $ $ . $ > . > S$ > V@ $ # + 5_ & o! | $ & . & ] . S$ X! ! P$ * & H= $ ' ^ > Z! H= S$ ' { ; $ H= T- X@ Q$ | N$ ] ~ ~ 2 X@ { 2 1 ~ V~ | 2 2 X@ 4 { 7- 1 2 a ~ | 2 V~ *= Y> } &# } %m | d ,# ,# a ~# a k 0 0 h 0 0 c L= e r 6! a c n {# ~# V$ a c n k 0 p ~# ^# L= K/ u r p Y$ ^# b' ^# 2; Y$ 4* :# ^# w c{ 2; [# z F= z G p /U I n! w M I F= JW .JX aZ pV UP , .!V ~S ' .pV pV qT ) .! .cZ , .cZ cZ ) .cZ [U cZ MS XP {S {S 2U @U yU XP yU 5P XP }L yP :K #P fR fR OJ }L :K 6P }L rC ~ .fR 7P CO ;w `w HM #M x HM T ] .!Z xT IY 7W xT ^ .lS 7W IZ 7W 7W DU sV IY l` ~` aO bO 3U bO bO 3U ,T ;Y yT ,T ,T n` lX / .;Y JY LM LY HO LZ LM HO HO LM HO tV tV LM LM HO HO HO 5H f) L| F% F+ ( .xa Rh [V _ .: .< .tJ }` |` u` |` aP RZ nZ MC [ .QH aI (w NI (w (w (w NI (w @L NI 7L (w @L (w NI (w NI (w 7L 7L Kl Kl YR } .YR 1X YR 2X fW 2X fW fW -M -M fW YW vt 2X dH -M jz jz } .aI /Z _j &n .X ~B )n * `* E7 (. x@ -. x@ F, z@ E@ @. C$ T #% L' T P@ S 8* H H$ H$ 2& Q@ L@ I ", +"]& L$ L$ $ # . + <{ L$ ]& # L$ 5_ ]& 5_ V@ V@ + + # $ $ . ; $ $ U@ Gc > |* > $ + > S$ & . . & = > . = Q$ & . 5- > | & & > . 8- H= S$ ; ] ; %= & H= N$ Z! ^ ; ; ) N$ & ] H= N$ 2 | R$ 7- ## ~ 2 | 4 2 | /& { ( $# == <& } { R$ 1 6 Y@ ## 6 ,# N' &# 6 ( } ## b 7 ~# L= a a ,# W$ a tA e h ~# c a k ~# c n K/ 0- L= Y$ ~# h {# `$ n p L= n 0 h h #| % ,! h F p m u p N /# G 1; B `$ ^# G ^# $T 2; I b' G I x z I I Q@ E; c- A q! 8* I I O@ 5 .M SO 0S I E$ E$ Q P@ SO SO BX U^ *I qF 'Q DN ^P tw `I #N 3d 3d RT RT lP 7s -X tw #N $N mL 58 AS jU $N mL CX $N 0X hT :M $N CX aS BS 1Y 6 .7 .#Z sM #Z @Z dS CR jT nP 8 .nP 9 .0 .|C pO |M DR DR mW oW _W ,X nW a .^W oW bX J [P XT qW PV SW nV HG f .g .6Y h .1T 7Y i .qT qT ~V [U cZ cZ $Y ~V ~V $Y j .DZ sT sT OR sT EY jS jS jS 5P ^S @P }L :K @P yP }L :K }L fR @M RG CB xL FI }L 1Q q CB CB ;w q . > . ; S$ $ ] Z, $ S$ Q$ T@ > > ; ; P$ ] Q$ > ] $ ] =' & ^ & %= %= U@ ; > Q$ 2 2 & S$ ~ ~ ~ ] H= N$ 6 ) ] ) : .# /& X@ | ~ *# ## 6 ) ## 4 Y@ ## [{ / &# W@ 6 d 7- 2 1 } d $# $# 6 7 6 a c o k k 0- 0 L= a ,# j 7 0- 0 6- ~# q q Y$ a 6! }& n ~# n t Z$ /# 2, p ^# p q 4* ^# p Y$ D {& D Z$ z w z w {& z w .^# A I A z I $T z A o^ I A O@ 8* 3# M 1& x .y .=X 3# 3& z .3& A .L r! J qF 3# L pF #N DN =I 3d =I 3d 3d #N ^P RT )Q #N EN lP -X sZ AS $N AS $N mL AS hT AS 6B .` -I 3Z E` HQ _U J IK 4Z %T ST dQ ~Q =S $ .B .fK aX ~W 6N ;X pO 6N 6N _W C .pO ^W DR oW PW ^W ^W cX nW 3Y D .mT %Z E .hV 'X 8Z d .MV zY GR F .zY pW GR HS RP }T RP oT Ix }T G .}T }T HS L` [W [W JX JX [W pT nV nV nV nV -Z OQ AZ f` AY pV pV UP #Y UP !V pV qT 8Y [U cZ cZ cZ }U {S H .{S ,Z sT AO 2U +U jS 5P xU XP 5P yP 5O iN yP }L fR :K OJ fR OJ #P RG LX rC )J #M ;w CB #M x `w `w $ V@ $ + 1* + > ] Q$ 0' ]& 1) = ]& [* $ = * > |* $ ' Q$ = . > ' & }* z] & ~ W@ Q$ $ %= U$ . T@ & & & ] & Q$ | | & ^& ] & | ~ ; & | %= ' ; | > 2 +# | P$ | ^ Y@ D, ~ [ < < { /& &# : 9 d J= [ } { d d } } 1 == 5 3] e } 7 } N' ,# a 0 tA k g a ~# K/ h e c ,> 0 n 0- m h V) ]# ,> ~# 0 p :# m 4* % 2, w Y$ % y 2; :# q ^# B ;) Z$ N z {& I G z T^ c- z G q! O@ z F= M Q@ z .c- 3# 8* 8* c- >z L 3# r! 5 .J A: 3# 3d U^ G$ d- .V ^P bV #N ^P )Q ^P Z .)Q ^P @N 7s bV bV 6B $N mL $N 7s AS AS AS mL .` cV HQ CX {z ST :M #Z ` .MP ST sM ~Q .....5Z uZ pO CR aX jT nP pO fK +..@..DR DR nP wZ _W oW ^W oW nW #..PW RE xZ yZ & .yZ & .8Z )X -V $..4z 4z 4z oT oT %..&..AM PV HX AM HX HX }T HX }T IX IX JX pT PV JX PV qW nV qW *..gX gX AY oV f` pV qT !V BZ #Y qT ..(+ (+ =- /+ (+ Y# X# /+ |+ i` { .(+ C* p% `# :+ :+ p% p% i` k .:+ D* L .:+ QS CP _S VV QS QS ,..6W QS _S S` QS *Y 6W j` HZ GZ RS '` '..CU lS xT xT IY IY xT 7W IY )..l` (V (V !..l` IY aO 3U ,T 3U 3U 3U 3U 3U ,T ,T ;Y 3U n ./ .,T 4U 5H LM HO o` HO tV tV MZ tV tV LM LM ot LM LM ot ot Xx P9 )..~..ti ;r .S Bd {..$n ]..XI JP -r S .^..-r -r u` ;r aK -F -F -F MC nZ #B nZ aP nZ nZ nZ @L V .U .NI @L (w #Q NI NI 7L #Q 7L PY YR #Q YR 9E YR 1X 1X 1X 1X 1X +W Do 7u jz jz +W jz } .} .nZ /..(..3g 3g _..~B :..t ..X ]j ji w` kh !U dk [j Vl <..2 .[..} ._J }..#c bk |..1..V% 0@ s$ (. <. C= ). ). '. ,. =. *. . i~ V W |; X M@ H A S H$ A M A I ", +"]& L$ ;b + + ]& [* 0' + > = 0' + ]& = + . $ + . $ 0' V@ & $ = $ . . ; > Q$ & > . U@ & U$ $ & - ; = o! > 0' H= > > . > | & & U$ Q$ + | N$ & H= ; $ N$ ] > . U@ %= Q$ N$ 2 N$ | ~ | X@ | | ) ; ) { { ^ { [ 2 I= X@ } { 5 d { V~ W@ $# Y> } ## 6 4 /& ( J] q> a 6 7 6 ,# j e 0 a e 0 e n a ~# g a 0 6 h L= o h y2 n h n r #] p Z$ Z$ n^ w p m ^# w 4* :# /# B F= m /# )> z /# {& @= b' 7* I w 1& O@ I A j4 z G G n! 8* c- 3# 3# 3# M y .a7 |# Q 3& Q MW oY U YX r! qF G$ qF qF #N ^P ^P ^P ^P #N RT #N +Z #N .V EN @N !Q _M -X $N EN hT 6B AS $N $N $N hT $N $N hT $N aS 2..@Z 3..4..X ,X nW cX PW oW _W nW _W 6..7..8..0` 8Z yZ 8Z yZ -` -` 4z zY d` 4z -V ; .oT 9..HS oT 0..=V G .L` =V =V oT HX IS ;Z IS [W PV nV AZ qW qW qW f` > .|T lQ f` UP [U ~V BY [U [U !V a..BZ [U ~V ) .cZ rW }U U rW @U sW XP PN @U jS @U jS yU yU yP b..OJ +M 6P :K 'G xL }L OJ 'G )J Ey 'G rC RG `w q ;w `w CB CB CB qo q ..~+ ~+ /+ U# ^+ ^+ ~+ m% C* i` k .J .E* :+ p% ,` i` i` i` E* =Y :+ E* 3T bY k ._S 6W _S 6W S` jX QS 6W c..QS 6W 6W 6W '` 4u dY gZ JM qJ CU 7W !Z xT IY 7W xT IY !Z d..IY (V bO 3U !..l` ~` 3U ,T ,T 3U 3U 3U hZ 3U ,T e..JY ,T lX n .JY f..{Z HO o` o` HO LM &U tV LM LM HO HO 5H 5H LM On ez 94 g..h..FD SZ i..~P j..Ac k..zC lA S .JP S .S .-r u` -r l..m..Hs -F #B cH #B #B nZ nZ nZ 8g @L @L V .@X aI aI (w NI NI n..#Q PY (w YR 7L #Q Do } .cv cv +W 1X Kl cv TZ o..ZN p..Do p..q..r..#B s..^F &n )n & {. =. A@ ;. 4) E@ ,= 5# G@ T J@ S H H@ P@ O@ P@ +% K@ N ", +"]& 0' 0' + ]& ]& > $ + + }* - # # M$ Q$ > R@ V@ + + $ & . $ - # = 1* & $ Q$ > ]& > . ^& $ = ' & $ o! %= . N$ 0' > . & > k) > ~ P$ H= ] T@ & P$ | ; H= X@ U$ (& ; | 5- X@ | ; U@ X@ ( { X@ R$ *# J) { | ^ } ## ! | 1 4 1 ( X@ { < 6- /& 6 d 1 7 $# d $# == d d { Y> d 6 5 a Y> ~# d 0- c d e 0- 3] k ,# n 2* a' 0 n 0- `$ 0- q % L= `$ Y$ `$ ,> n y..Z$ Q{ s> Z$ V| `$ t /# Z$ ^# w b' z../# B B t w E G a7 I G A F= G A I 1& I c- O@ M >z |# c- S n! >z c- )W h] A..|# ` d{ B..L 3; *I G$ G$ ^P #N G$ ^P G$ ^P tw )Q ^P ^P #N .V 58 qH _M _M -X EN 6B AS 6B hT AS mL $N hT $N hT hT AS hT C..hT ` .4..&S pY D..dS #Z =S 5Z kT kT B .^Q pO aX +..0R jT nW pO FX nW tY ^W DR _W oW ^W cX & . @; @; *+ *+ *+ v& ~{ =+ 7= =+ D& *+ @; C' S# W# Y# <+ ~+ ~+ (+ (+ (+ (+ ~+ /+ H> z* :+ :+ J..J..:+ :+ :+ p% p% :+ { .jX { .,` 3T l .bY 4W _S 6W QS QS S` K..6W 6W QS j` 6W QS j` j` m .L..CU JZ HY M..!Z CU xT JM 7W IY 7W 7W xT IY ~` aO IY IY IY bO 3U ,T 3U ,T 3U ,T 3U ,T ]` ,T 3U ;Y n .lX lX HO LM LM 4U LM HO 5H HO HO tV LM HO ot 5H HO ot 4c @f N..O..Nj P..Q..R..Wk S..Kt ]..PM tJ p .[` p .S .S .}` }` }` 2x -F -F aP -F -q aP cH aP nZ @X @L NI @L tt @X PY NI q .NI NI U .PY #Q 7L 7L NI vJ SY 1` 7u 1X Do YR 7L ZN FL WS cv ZN ZN 7L aK T.. * + # * > . * + $ V@ ]& ]& Z, . R@ # Q$ . Z, k) $ . $ S$ > ; %= U@ %= N$ Q$ [* $= S$ ; ] . V@ }* & ; ] $ ; ; % ]& ' & . Q$ - O$ 2 { T- ] < | R$ 2 2 ~ Z! | N$ W@ =# / S$ U$ ) 2 ~ ( 8- 2 $# ## 6 ( : < ) ## a d X@ 5 D, 6- 0 i b e a e 6! d a k J] ~# h V) ,# n L= a c n 6 n 0- K/ vA p ~# ~# s> n ,> h :# `$ ,> % w y n D % % t ^# :# C B 1; N C Y..I n! z A ^# 2; I A M Q@ x O@ I O@ T^ 8* n! |# M c- PT 0S M z .Z..|# A: |# d{ 3; 3; L qF YX oY BX qF G$ 3d #N #N )Q ^P ^P #N ^P _M _M #N NW -X @N 6B hT 7s AS hT hT mL hT $N AS 0X CX hT BS :M 4Z pY ST #Z tM qY dS 5Z B .`..6N +.$Z 0R jT nP nP .+.DR ^W ^W nW lU _W cX cX oW nW ++.@+. .JX L` gX gX nV JX JX f` nV !V *..&+.f .6Y pV , .*+.[U [U ~V [U ~V cZ qT }U }U [U }U =+.+U +P dR 2U tT 5P 5P XP yU xU yP OJ @P jS @P 6P fR OJ fR }L #P .F {N }L x jJ SG ;w CB x q CB `w `w CB CB Tx ch TG CB Jn .q n n +F gd Fy El j9 j9 gd T3 `e V5 V5 U3 f .f 34 V5 .f V5 <} +g Rk Sc U4 F{ 9) Z{ 7< Z{ F{ F{ 7< F{ ;] Z{ 2{ Z{ ;] ]~ k9 `^ f; O! ;] f; ]~ s~ e! O! ,^ *+ 7= @; 7= @; *+ 7= *+ =+ =+ *+ @; _' 9= -+.7= a= (+ (+ k% ~+ (+ ~+ ~+ (+ ~+ ~+ (+ ^+ { .:+ :+ m% `# :+ i` i` ]R ,` z* jX FZ :+ p% jX { .{ .6W 6W VV QS 6W j` QS QS 6W QS j` j` j` j` qJ dY CU xT 4u L..xT xT xT 7W 7W IY 7W l` xT l` xT (V 7W l` l` %U ,T 3U ,T ;Y 3U ,T hZ ,T lX ,T ;Y hZ ^R yT e..&U LM HO o` KZ ot LM tV LM >Y HO tV LM zT 5H ot On ~- ;+.zf _J >+.~P @H /d Bz $n $n 7f 7f PM PM lA p .p .p .}` 2x }` -r ,+.u` '+.|` -F -q |` nZ nZ 6u NI tt 6u )+.NI @L nZ @L NI tt PY @X NI q .NI NI 7L 7L #Q #Q lM 7L 7L 7L WS TZ Do q..TZ 7L ;r iH )n !+.ji ji :Y dk :q hi .X ~+.~B {+._j !+.]+.Fe 2 .Gd ^+.%x Nj PM MI qb /+.(+.]; a@ xi m@ u@ v@ {. {. A@ ). )= G@ X B$ }; H T S T J +% |# H M G z #= ", +"]& L$ # + # $ ]& ]& . 0' + > V@ ]& + = + # Q$ - $ $ . ]& V@ + . 0' > [* ' > & = ]& V@ + . $ - ~ * ; V@ ' o! ]& Q$ > R$ | ]& Q$ > # & N$ > Q$ N$ ^ . H= > ~ N$ Q$ S$ & & U@ ; *# ~ | $ Z! P$ { Z! ] /& ~ [ & , [ X@ V~ { | { ~ ~ 5 1 [{ 3* J] $# 7 7 Y@ 6 ( d d ,# 6 7 ,# } a ,# 7 W$ ,# {# *= ,# a c 0 0 8 ~# 0 ~# ]# a `$ ]# Y$ #| c{ p n 4* Y$ p `$ p n^ `$ Y$ :# t m /# p u 4* N 2; B N #] G$ ^P )Q RT 3d ^P EN lP RT lP @N lP qH -X 7s CX 6B AS kU 9X $N $N AS CX CX .` AS 3Z HQ 3Z :+.pY dS cQ EX dS <+.5Z [+.6N kT }+.jT 6N 0R DR 0 .nP |+.pO nW DR _W C .^W ^W a .1+.2+.& .3+.4+.mT =` :U eX d .jV 9Z $..b` mV 0..J` }T 5+.6+.HX HX IX L` oT 7+.}T |T HX > .qW N` nV IX qW JX qW pT gX gX ;Z oV 8+.&+.9+.BZ , .lQ !R , .#Y ~V F> =+ ]+ /+ a= ]+ ~+ >..~+ (+ ^+ ^+ /+ ~+ a+.:+ :+ a+.(+ i` :+ p% b+.:+ :+ { .FZ bY i` c+.{ .d+.3T 6W =Y j` QS *Y j` j` _S 6W j` 4u j` k` j` m .e+.f+.g+.HZ CU 7W h+.IZ lS l` !Z l` 7W !Z IY DU DU IY IY (V (V ,T ;Y ;Y aO hZ ,T ;Y lX 3U JY i+.j+.yT hZ ]` >Y r0 HO 1..LM HO HO ot tV HO HO tV HO LM On On Xr k+.`c >+.l+.jY jY m+.n+.8E o+.,o 7f 7f 7f PM JP p+.[` JP }` q+.}` S .}` '+.|` Hs T .-q RZ nZ @L 6u aI aI @L aI nZ nZ nZ aI aI nZ aI tt @L NI @L PY PY aI 7L (w PY (w (w jY jY jY WS _ .tt >+.r+.&n &n )n s+._j &n :q dk [j hi .X t+.dk u+.Uy Lf .p Jt RH KB ]B zC tN Ff v+.w+.)@ 3@ X* ~* {= ~. {. !. A@ .. z$ G@ n) 4# T H }; E$ S 1# +% S H P@ Q@ x O@ ", +"+ R@ [* k) # L$ k) 0' V@ = ;b V@ # 0' 0' R@ L$ ]& # V@ > 5_ ]& # ]& $ > [* = . |* . Gc # > ; * V@ ' = * U@ Q$ P$ !, & =' $ - . # ^& Q$ 05 [* $ Q$ H= [* & > & !, ; 2 W@ N$ & & N$ > | ) P$ ; ~ ]& %= | | ] ^ 1 { 2 { D, J] { $# 2 ( ( 2 } $# /& J= W@ D, : ,# $# 5 } -# ,# } } {# 1 ~# 0 d d ~# a 0 ]c L= 6 a c L= L= 6 a 0 ,# ]# c k X$ a n ~# ~# r ^# t L= /# p m Y$ ,> p $S p F= % p w :# G 4* ^# B /# B z I I z @= w K z 1& O@ O@ A 8* 8* K 8* c- M }Y x+. V >z c- H$ QT E$ Q Q *I P@ y+.L G$ 3d qF tw pF pF ^P ^P 0* #N )Q _M r! +Z EN qH #N 9X 6B 6B $N AS 0X hT mL AS $N AS CX HQ AS BS .` 2..4Z z+.|Y 7 .4Z CR ...iT A+.kT fK `..;X pO nP nW jT 0R B+.OW nW nW C+.|+.oW _W ^W a .%Z gV 8Z D+.E+.& .8Z F+.0` E..=` zY 4z pU F+.K` e .G..F+.}T }T =V F..; .HX HR L` IX HS PV pT [W [W G+.nV PV nV f` f` H+.gX SV gX gX I+.h .UP !R [U ~V BY [U J+.qT cZ H..8Y H.. U 2U PN {S DZ K+.sT @U jS XP xU yP yU 5O yP XP #P #P fR }L ^S ^S fR 6P ZP 1Q )J 7O (S Ey `w #M `w rC `w `w CB `w `w q Tx kJ kJ to EB |u EB |u AP El El >0 T3 Fy j9 v[ V5 V5 f V5 v[ v[ 34 34 V5 44 V4 b^ <} <} Z{ Z{ J^ Z{ F{ Z{ F{ Z{ F{ F{ J^ Z{ Y{ f; [] s~ ;] f; f; ]~ D] P) N! N! ]~ y) C' 7= *+ b) *+ 7= =+ *+ 7= 7= *+ *+ {) 7= -+.S# d) ~+ g! ]+ ~+ ~+ ~+ L+.~+ ~+ ^+ ~+ ~+ z* :+ J..U# M+.:+ i` N+.i` :+ J..{ .3T i` d+.3T ,` S` _S 6W k` QS 6W 6W j` 6W k` O+.6W k` j` k` j` GZ IZ !Z L..e+.IY IY L..7W xT 7W 7W IY 7W l` 7W bO (V P+.!..~` ,T ,T ,T 3U ,T 3U ,T yT lX hZ hZ Q+.lX ^R n .tV lX HO KZ tV >Y MZ HO tV HO 5H HO tV HO ot 4c * t$ s@ d# '. B$ z@ +. 3^ r4 @. $> &' 1# H Z M@ J P@ M@ A P@ N@ N I ", +"+ # 1) ]& ]& J$ $ 0' ]& # = ]& # ]& 0' + + k3 $ T@ $ ; = . ]& * . # $ Q$ ^& $ Q$ . T@ ; + V@ A; [* # ; . P$ ] - & & . > > ^ R$ ] Q$ - # $ 5- ] ' S$ U$ & > & ^ | Z! *# ; ] ^ ; | { ; H= N$ ] Q$ ; ] { ] ^ ( { T- ## | { { } < $# ) / 1 6- Y> a ~ a 6 b e d } k 6 6 a 7 e ,# i 0 Vj 0 ~# ~# ~# 7 k 0 t' 0 0 o r X$ n Y$ 0 _# o ,> Z$ ^# s> Z$ p ;= ~# ^# |& m ^# n^ t t /# `$ F= Z$ Z$ ^# /# w I m 1& ^# n! }# C Z$ AR 8* I Q@ #] M 8* V I .@.=X V M M 3# AX z .oY SO A: A: d{ r! oY BX A: #N 3d 'Q `I 3d #N DN U^ E^ _M BX RT 9X EN 7s EN @N 6B AS mL $N AS $N cV $N $N hT hT hT +@.hT @@. J #@.$@.%@.|Y %T CR 7 .qY CR jT &@.$ .nP DR nW *N mU IQ pO DR ^W *@.^W ^W =@._W cX #..yZ 8Z -` E+.gV d .%+.& .%+.8Z -V oT e` -@.c` fS ;@.AM >@.}T HX HX oT IX }T IX IX HS pT IS ,@.[W PV JX nV qW AZ AZ *..gX gX AZ '@.gX AZ 7Y ~V , .[U 8Y ~S H..qT ~S H..cZ ~V 8Y H .iJ yO 2U sT yU P` @U XP {V yU 5P ^S yU #U fR fR fR OJ #P OJ }L OJ OJ )Z OJ }L FI CB x CB #M `w `w CB CB rC x x `w Vr XK i9 $P n El |u |u j9 El T3 gd Fy j9 f 34 V5 f `e 34 34 v[ V5 34 D9 <} 44 F{ U4 F{ )2 J^ 9) F{ F{ F{ J^ F{ Z{ Z{ F{ J^ 3{ `^ ;] ;] ;] ]~ ;] 3{ ^~ &~ N! ]~ 6= *+ ;+ h; j/ @; z) @; 7= =+ =+ 7= 7= _' {) x* 9= {+ (+ (+ ]+ ~+ (+ )@.(+ (+ ^+ ~+ (+ (+ !@.,` i` H> b+.i` _+ ,` i` i` :+ { .3T ,` :+ E* M .FZ QS QS QS QS j` j` 6W j` j` j` j` O+.j` k` j` NX L..gZ L..4u xT IZ e+.!Z xT 7W IY IY IY !Z !..,T (V l` P+.!..;Y e..;Y bO 3U ,T ,T ;Y hZ ;Y ;Y ;Y n .e..;Y ^` / .HO ^` LZ tV 5H LM LM HO tV LM LM LM 5H 4c ~@.{@.ti ]@.^@.tf tt ~U n+.Eo _N 8E Ac o+.7f 7f ]..PM PM PM tJ tJ tJ tJ S .}` ^..}` S .l..}` u` RZ nZ aP -F cH '+.aP aP nZ nZ nZ nZ 6u @X nZ nZ nZ aI @L nZ _ ._ .X+._ ./@._ .jY MC TZ _ .nZ (@.5w ii (j _j (j fE Wg w` dL Wg fE ]j Jh Lf &n iH lk Ee _@.Js tt dv iz 8E we :@.<@.r; f$ [@.X* x$ (. }@.x@ ,& ;. (* 4# V L@ H@ H H Z 3; E$ H J K@ I N H$ I ", +"R@ ]& L$ J$ + ]& I/ R@ R@ + .( ]& # = [* + R@ J$ . # . U@ + 1) + ]& M$ $ [* ]& > > $ & # = . . U@ N$ & ; . S$ o! ), o! = . N$ ^ > | ~ Q$ U@ & Q$ S$ ^ Q$ U@ . ] z] ~ ; N$ ; *# & N$ | { N$ ^ | .# N$ 2 ~ ~ X@ ~ } Y@ 7 5 [ 2 [ X@ 2 ~ Z! &# < } d [ 7 q> } [{ { N' ( 9 } ~# e a ~# k i c {# c n 0 n a L= 8 Y@ ~# L= ]# h 7 h {# c Z$ % n `$ h Z$ ,> p 1; r D c /# :# o `$ `$ u w w `$ w `$ F= w ~& F= z w I E; /# O@ D 1& AR n! AR JW N O@ >z O@ O@ c- c- c- AR c- >z QT 3# ` U A: qF L qF *I yS r! oY ^P ^P 3d 3d )Q )Q ^P BX `I )Q EN sZ sZ 58 |@.@N 7s mL mL 1@.2@.$N :M hT hT 3@.AS HQ CX CX _U kI tZ 4Z 4@.DS e@.,` i` i` i` :+ bY f@.fZ p% bY f@.i` =Y S` 6W 6W j` ,..6W 6W QS 6W 6W XV QS '` g@.HZ HZ L..sV h@.^ .7W g+.7W xT 7W BU !..!..IY !..l` bO l` l` i@.;Y ;Y ,T 3U ;Y ,T 3U ,T hZ n .hZ JY ,T n .;Y zT / .HO HO KY HO MZ HO HO HO HO HO LM ot _i W2 j@.k@.zC l@.0k m@.mk ZV ;c 8L tN _N _N _N n@.k..o+.]..PM 7f ,o lA tJ ,o XI JP S .JP bP V+.V+.u` u` RZ |` |` T .-F |` RZ #B aP aP nZ nZ nZ nZ nZ 6u #B MC 4G nZ 4G o@.4G _ .4G nZ .s _ ._ .#B p@.3g ]j &n _j hi q@.`` w` Wg Wg kY dk |k sz |i 5X ,r r@.s@.bb S..t@.LB 8E nc hL u@.%@ :@ A= j- w$ u@ x@ x@ )& A@ &. A$ @. O= M@ H@ 1# J S E= P@ Y S G Q@ I x ", +"], R@ <{ <{ J$ # 0' $ L$ > # L$ k) > [* + ;b $ 0' . U@ ' k) |* > = ' $= ;b L$ T@ $ X! > > > > > . }* ; T@ U$ - & R$ R$ > & & ; * ] ' Q$ # ; Q$ V@ . Z! > ] 2 2 & Z! N$ | U@ R$ { [ ~ N$ X@ 2 ] ~ [ <& /& < [ [ $# 4 J] [ ~ 2 ( | X@ ( ( 9 } : { 5 d ( d d : 6 5 6 Y> 6 Y> e d a a 0 L= K/ L= } ~# e j n a c n s> L= a 6! K= n s> t m u h 2, `$ t Z$ q D :# p <, t m t n `$ 1; B ^# t :# 1; D ^# G B 2; {& 1; a7 F= 1& a7 T^ I F= z O@ T^ .@.3# =X T^ v@.d{ d{ QT v@.y .i5 T J Q BX BX G$ qF BX ^P qF #N ^P ^P RT G$ )Q RT )Q .V sZ @N NW 1@.6B 6B 1@.hT w@.$N $N :M hT CX CX $N x@.$N CX y@.aS pY +` HN pY z@.CR D..qY @` DR BR ~W A@.6N pO oW nP B@.sY cX ^W nW oW %Z cX cX a .%Z &` & .C@.8Z 8Z D@.*Z d .* .8Z E@.d` -V E@.F@.M` zY HS K` }T =V }T IX }T }T HX Vw AM IX [W qW nV ,@.qW nV qW qW SW 9@.)V AZ @Y f .qW G@.! ., .H@.I@., .qT ) .~V BZ 2E {S cZ 8Y 2U ) .sW 2U rW +U 2U XP @P XP XP jS yU yP }L XP @P }L #P fR h` RG OJ }L )J fR )J 7P #M ;w CB Y tV LM 5H 5H ot #x N@.7a uJ YN O@._d X+.jY vV %c T+.P@.sf _N Q@.8E Kt 7f 7f 7f ,o PM PM lA lA ,o tJ [` S .[` S .S .R@.S@.-r }` l..-q u` RZ RZ 8g #B #B nZ nZ T@.6u MC nZ nZ nZ nZ nZ #B #B nZ MC KB MC #B ;r aK U@.3g ii ii (j Wg ii `` w` fE /y kh (j Ih &n 5X Lf MT V@.W@.X@.Bz aH }..MI mc Ma Y@.Z& 6$ .& {* [y 3. ^. {. z@ A@ B$ B$ .= V V Z@.V P H H A K@ P@ A Q@ b- H$ ", +"+ J$ ]& J$ R@ ]& = ]& # + ]& jP . ]& # + + $ 0' + . # = > # + $ $= L$ J$ + Q$ Q$ - ; > . + > > = U$ U$ ' ; b{ Q$ + ^ . ; & %= N$ H= ^ %= ~ & H= 2 ; [* & H= 2 & ] ] U@ H= %= ) X@ Q$ [ N$ 2 X@ ] [ `@.1 2 d _ , `@.## ] X@ 5 *# /& 6 } 6 [ / D, 2d 6- 4 Y@ $# X@ } } < {# 0 9 Y> } 6 z: ,# ]# ]# |& 0 ~# 0 a {# n e c `$ 2, c X$ L= c L= % ;) V| p 4* Y$ 2, ^# w V| :# h G {& m p p s> 4* Z$ w m w /# F= b' ^# I I z JW A $T {& #.O@ 3# P@ n! 3# a7 2Z 0S 8* |# 0S 5 .T^ QT Z..i5 Z..A: ` Q MW BX G$ r! L 3d #N #N )Q ^P )Q #N #N )Q `I #N ^P E^ bV +@.EN 6B jU AS AS $N 6B AS CX CX mL E` HQ $N .` |Y pY cQ @@.GN pY 9 .5Z qY =S dS vZ Zz 5Z 6Z uZ nW wZ uZ .#..+.cX DR B+.#.._W %Z oW *` *` PW = .8Z d .* .d .E..+#.& .+#. Y NV ;V E..@#.qU G..HR ##.L` HS L` G .IX }T L` }T }T }T qW qW PV > .nV PV qW gX AZ AZ f` nV BZ f` f` 9@.BZ J+.#Y $#.!V QQ [U ~V cZ ~S 2U 8Y %#.$Y &#.sT wU TW hX 2U g` XP xU OR xU xU #P yP iN @P OJ #P RG *#.#P }L rC rC }L OJ )J LX qo x HM x `w x `w x `w x x Tx `w CB Vr n Fy yD n gd j9 El f 45 El `e 34 .f V5 v[ 34 6< V5 V5 v[ 34 44 Ln !2 ^1 ^1 /1 F{ J^ Z{ F{ ^' Z{ 9) F{ ;] F{ J^ ;] ;] Y{ F{ f; 3{ O~ 3{ ;] f; N! Y{ s~ v& *+ =+ *+ *+ 7= 7= 7= 3> ;+ *+ 7= D& ! `) `) D& %; ~+ d@.]+ ^+ ^+ ^+ (+ (+ ~+ U# ~+ J .:+ i` J..G& i` i` ,` ,` :+ i` 3T 4W FZ K .jX M .f@.M .=Y 6W 6W 6W j` 6W k` k` k` O+.O+.k` k` O+.=#.-#.l` ;#.>#.d..l` 7W IY IY 7W l` l` l` IY !Z ~` 3U i@.h+.P+.3U bO ,T e..3U ,T 3U ;Y lX ;Y ,#.;Y / ./ .zT KY HO HO HO LM HO tV r0 {Z 5H HO LM ot _i W2 '#.)#.bH !#.~#.l@.{#./@.0k gb #c sf MI P@._N _N 8E Kt iz Kt 7f ]..PM PM PM PM tJ JP [` S .bP JP S .R@.R@.l..-r -r -r u` R@.R@.-r Hs aP RZ u` |` 8g aP KB -q KB #B aK #B |` KB |` ;r |` ]#.l+.Ed #W _j .X Wg `` MO `` `` dL oZ _Z dk li 3g ^#.+H v` ,B cr 1x ^Y y @I U+.>e Fa /#.^G S% .& p@ :. '. b# ). -. -. E@ P G@ . E@ P }; L@ T Y ` M #= z N@ E$ M ", +"= = # . R@ ]& E! ]& + # - # R@ ]& + 0' $ $ ]& #S ]& ]& . ' + . L$ 0' . # X! $ . $ + * V@ ]& # V@ ^& = |* R$ $ ; ^ S$ # ; . $= = | z] S$ ; U@ | & U@ o! & # & 7- 'W ; ] N$ & ; ; & ~ X@ N$ | %= P$ { Y@ { ~ ^ { [ W@ 1 4 ## 7- X@ ( 2 -> } 6 ~ ( [ ~ [ 7- ( { /& ,# 3* } a L= 8 6 6 !# i a 0 0 {# 0 ~# 0 c o Y$ !# c 2, L= K/ p |& Y$ s> |& % r `$ r c{ p `$ Z$ b' `$ D b' p Y$ C; ;) $S 2; ^# F m w B z z a7 z #= z z A A {& 8* z I N@ 8* c- $T 1& c- c- }Y PT (#.>z iI Q Z..=K 3# E$ 0S _#.:#.yS 3d BX 3d BX ^P ^P #N RT +Z ^P ^P RT YX Z .@N sZ <#._M $N $N mL $N $N $N AS CX .` $N 4..-I 3Z CX aS |Y FN @@.#Z 2Y [#.CR z@.~Q nO B .0R }+.pO aX %` $Z }#.;X wZ _W DR oW %Z nW a .C .=@.cX a .8Z & .gV 8Z d .%+.%+.xZ +#.nU |#.6+. .G .G .Vw }T JX qW nV qW IX [W nV I+.JX JX AZ JX I@.AZ JX )V 8+.Y LM 5H HO LM ot Ib 7#.*d 8#.}i 9#.l@.S+.0#.tf )d %c a#.MI P@.P@.U+.P@.P@.8E 7f 4A $n ]..PM ]..]..7f PM PM [` JP _w Tn }` S .}` S .}` }` -r }` u` -r b#.-r u` |` u` c#.]#.-q _J -q |` ;r -F KB ;r 2x c#.(@.R@.2x Ed d#._j :q `` =L %W kh fE WY }j MO e#.f#.g#.^e |g Ug ,r h#.)e 7L GW iz _N !d 0H xX L N% l$ >* -& {= :. ). *. A@ l> x@ z$ X .= L@ P $> 1# Y K@ 4, b- H$ M I N ", +"R@ 0' R@ L$ L$ L$ J$ 0' #^ .( + R@ ]& ;b + + ]& $ $ R@ ]& # V@ # + $= # . > + Z, L$ > $ Q$ > # $ # = V@ V@ = > > o! . ~ ' = Z, # > N$ S$ Q$ . | . = o! & & 1) ^ }* & & }* Q$ ; ] N$ > ] N$ i#.2 H= Z, 2 | X@ | [ ; { &# 8- | } 5 <& d $# 6 a [ 9 4 [{ $# } [ 7 $# 2 a ,# 5 6 a c6 } J= {# e i g ]# c } ~# n k h Y> ~# c k ,# 0 s> 2, p ~# L= ,! r % Y$ L= |& 1; ^# D L= Z$ :# m #] ^# 4* z G :# w D ^# B ~& z I z 1& q2 z w I I I z 8* I 8* V V c- >z 3# Oz PT v@.>z aV T^ SO J SO c- i5 YX j#.BX E^ U^ k#.k#.#N ^P G$ ^P RT )Q ^P )Q ^P )Q bV sZ # .)Q 6B AS $N hT AS AS $N CX CX hT CX AS #@.hT aS 4..:M #@.ST G` ` .l#.m#.pY CR =S kT ;X 6Z pO DR pO %Z DR $ .n#.pO _W oW _W _W a .a ._W &` gV 8Z yZ yZ o#.%+.* .a` %+.0` I` |#.QW p#.0..q#.}T HS >@.G .L` AM }T r#.L` G .IS Ix [W [W gX nV qW =V gX gX 9+.9+.f` JX qW @Y f` gX &+.aZ ~S ~S pV [U cZ }U }U cZ qT `T 8Y }U sU U 'Z eR CZ vU =..jS PN @U tW XP yP ^S :K :K OJ 'G OJ :K }L OJ RG xL FI #M OJ q RG q ;w 6O a= 7= C& e, S# x* ^+ $; ~+ ^+ ^+ ^+ ^+ U# ~+ ^+ ~+ L+.J .N+.M+.U# b+.f@.i` ,` ,` i` i` s#.QS K .jX M .N+.S` 6W j` 6W QS l .j` j` j` 6W XV k` c..6W k` k` HZ xT t#.HY IY 7W )..] .!..^ .P+.l` ^ .7W l` 3U ,T IY !..!..,T ,T ,T -Y ,T e..,T ,T hZ {Z KY hZ hZ u#.hZ 6#.v#.tV tV KY tV n .{Z LM LM 5H LM sa _i w#.Yb 8#.:b ^@.x#.x#.m@.y#.>e !d z#.ED ED sf P@.P@.U+.P@._N Kt 8E Kt 7f ]..7f ]..lA PM PM ]..PM zC tJ lA }` }` S .S .A#.}` }` }` }` S .-r 2x (@.l+.(@.u` GW 8#.S+.}` u` (@.p@.2x Is 2x 2x hz B#.tS _j fE +R LT WM cU LT GT C#.=L dk [j Mf Vg mi [j VZ .d D#.cv yC ,o ]..rc 1b E#.F#.1$ 7@ >* u@ 5& '& ). A@ .. .= =. C$ }; K@ 4# 4# M@ H H H$ Q@ ~& P@ J I I ", +"]& L$ = ]& L$ ;b $ # R@ = ]& $ + ;b > # L$ ]& . $ 0' + [* + # 0' ]& + $ + + $ . * !, & + & $ 0' Y! & [* & ^ S$ 0' `@ S$ k) $ = . . ' $ . ^ ; ' 2) > . . U$ ] { N$ > $ > W@ - & | X@ | ; N$ ^ | ~ [ d | 2 ) ~ - ~ X@ 1 { I= d 6 } : &# 6 } 6 3* J= ,# $# D, 7 6 ,# 3* Y> k e Y> ~# ~# &# n n 6 c a g h _# 0 n r n L= ># p n n Z$ ~# 4* `$ Y$ ;) `$ s> q n y p `$ G#.1; ,> % 2; {& `$ z D @= t G I E C D 1& 8* z /U z w z G A n! c- c- c- M P@ O@ :#.H#.d{ Q AR Q y .>z SO Q T _#.I#.qF 3d 3d BX (U #N 3d RT #N )Q )Q ^P ^P ^P 3d Z .)Q qH _M lP $N hT hT AS $N AS hT $N CX AS AS aS AS .` J#.FN K#.:+.ST tM ` .B ....D..=S @` pO L#.jT M#. +.vZ L#.N#.3Y nP _W ^W wZ oW *` *@.H` &` gV * .yZ & .d .%+.d .E..E..%+.E@.zY qU |#.-@.F .-V GR O#.HX HX }T HX IX }T }T IX P#.G .Q#.> .gX L` nV JX gX f` JX JX AZ JX f` R#.nV f` f .UP lQ qT qT [U S#.~V H..[U ~V U ,Z {S sT tW 2O ,Z T#.2W PN jS @P 5O 5P :K U#.@P @P #U :K fR 'G }L }L OJ 'G FI OJ fR .F ;w q CB i` M+.L+.V#.K .,` :+ :+ i` ,` 3T jX i` M .l .,` K..j` j` j` QS _S j` j` O+.6W 6W j` j` j` O+.h@.L..IZ !Z =#.W#.X#.l` Y#.l` l` l` l` IY 7W IY ~` bO Z#.l` Z#.~` bO ,T `#.;Y hZ ,T hZ hZ n .KZ hZ / .n ./ .;Y KZ LM tV KZ ^` n .tV HO LM 5H 5H _i uK $.&e ]B .$.+$.@$.U@.S+.Js !d rc zd [R [R 8L #$.Eo _N sf sf _N P@.Kt Kt $n 7f Kt ,o 7f PM PM ]..]..JP PM Tn S .[` XI S .hz S .S .}` S .2x Is 2x 2x 2x 2x S .S .A#.l+.2x 2x tu }` hz 2x *f ~#.$$..X dk `` 8w |N jA xv QD gW DQ `` ~+.ji . X! # }* . ]& T@ . Z, > T@ Q$ # ; U@ > {c > [* 0' U$ U$ > ]& & $ > /& | > & ^ ~ & ] ; ## H= ] R$ & ] ~ N$ ~ ) N$ ~ ~ o! o! X@ 2 ~ P$ ^ [ 2 : [ ) [ { ~ < [ ) -> < /& } { 6- Y> : ~# a 6 ># a ,# ( a i 7 V~ 3* 7 a 2d i ,# ;= n n c ~# ~# ~# ># a L= o _# 0 i k tA c{ Y$ o/ ^# h m s> n L= }& D q h 1; #] :# /U F= w p ^# /U G /# B {& G w G a7 G F= 8* O@ F= $.`I +Z _M EN <#.!Q AS $N mL AS $N CX hT hT +@.CX CX aS E` CX ,$.'$.DX BR 3Z CR ` .)$.EX #@.qY =S DR 0R B .$ .!$.M#.;X 0 .sY DR a .^W cX %Z a .yZ _W *` ~$.%+.gV ~$.& .* .{$.d .8Z E..F+.RE ; .pU zY qU J` }T }T ]$.r#.G .=V F..oT HX JX G .^$./$.> .G .JX gX PV nV JX PV AZ &+.f` gX gX JX bZ f .!V , .@Y 7Y 7= *+ O~ f% *+ =+ =+ g% e, (' $- =+ {+ 8= G> 7= D& j% ^+ Q# ~+ ^+ ^+ ~+ )@.^+ L+.~+ U# e@.i` ,` d@.!@.,` N+.d+.N+._$.:+ f@.l .:$.,` d+.L .<$.*Y j` =Y dY k` ,..j` O+.k` j` 4u =#.j` '` h@.-#.L..xT ^ .[$.IY IY Y#.l` l` l` l` l` !..l` !..~` -Y P+.!..i@.;Y 3U hZ ;Y ,T hZ hZ ;Y / .]` hZ j+.n .}$.;Y KZ HO tV ^` w../ .MZ LM LM HO ot @f |$.1$.yK 2$.3$.zc < .4$.m@.Pf ;c ze gb %c 5j a#.a#.#$.ED sf P@.P@._N sf Kt $n o+.Kt Kt ]..]..,o 7f ]..zC PM ,o [` [` PM _w lA [` [` Tn *f hz S .lA bP S .tu l@.=F hz 2x *f *f hz 2x Tn Tn Tn Ed _d .X :q kh DQ xv eE pu pu QD |N ni hW 5$.(j gi Wg ew ii Uy 6$.~Y KB zC 8E gb qb rb 7$.#@ g$ >* -& v@ '& F, ). !. &. )& V V U X H T J P O@ S M a- G A I ", +"5_ = 1) J$ k) + # k) + L$ + # ]& = & ]& k) # R@ L$ <{ # . $ # # Z, $ |* . = ' S$ X! # U$ $ Q$ ' |* # = & N$ ' > > T@ + $ ; ] Q$ 2 & > > & & ] U$ ] U@ | N$ N$ Z! & %= & ) X@ X@ ) & H= *# | N$ U@ & ) 4 { { { } $# ( } { 4 ## ## } d 2 *# 3* 7 ,# ,# 9 } } ( 4 d 5 2 4 0 6 6! 6! i i W$ c K/ tA 6! h n k a {# 0 ,> L= i e (# s> ^# Y$ L= Z$ 4* Z$ 4* 4* L= h h ~# s> 2; m t /U ^# Y$ :# n! G Y$ F= N a7 /U t /# 1& N= N ;O 8$.$T 8* I 8* T^ O@ T^ 3# 1& z JW Z..z v@.>z }Y Z..P@ |# iI aV Z..(U oY *I BX 3d ;$.pF #N #N #N Z .^P ^P ^P RT #N )Q 9$.EN -X 0$.RT mL AS 3@.$N AS CX $N D` 3@..` CX 3Z .` J#.+` aS pY @@.y@.cS a$.=S )$.#Z 0 .5Z DR ;X +.b$.0R nW aX c$.aX cX 0R *` #..C .xZ *@.d$.e$.d .8Z =` *Z d .E..%+.p#.C@.f$.* .6+.g$.b` mV h$.HX RW i$.i$.HX HS L` 5+.7@.Q#.HX > .> .L` f` gX JX > .AZ AZ ;Z j$.JX AZ k$.AZ f` f` nV , .w H| :^ F{ Z{ Z{ Z{ J^ F{ F{ Z{ Z^ ^' 3/ ;] ;] (! O~ ]~ Y{ M, Z{ Y{ Z{ S] Y{ M, N! ;+ ;+ $- 7= 7= ;+ =+ $- -+ g; ;+ D& !+ =+ r- {+ d) O, V# E& ^+ ~+ ~+ ^+ (+ ^+ ^+ U# U# b+.k .{ .M .b+.,` L .N+.,` l$.k .jX ,` i` c+.m$.,` K..O+.k` 6W k` n$.K..QS j` n$.k` HY j` 6W o$.L..] .IZ !Z O+.p$.l` IY l` IY P+.l` P+.P+.!..!..!..3U 5#.l` -Y -Y ,T hZ ,T ;Y hZ e..e..e..n .lX hZ M@.6#./ .e..yT >Y f..LM HO {Z HO LM WN /R c ~#.r$.s$.t$. - X! U$ . p9 L$ # * > . V@ ; = * . [* . & . $ > ' Q$ * T@ > ; | ; 2] N$ Z3 Q$ R$ ] & Q$ ^ > & N$ ; U$ X@ ) { R$ N$ T@ ' /& %m Z! 05 X@ T- 2 { { D, ( { [ U$ .# X@ 1 2 /& 1 ( 1 6- 5 7 7 9 { 6 a ## { *# 3* $# N' [ k c6 ># b ,# c a j L= c ,# !# ,# h [& o g {# i ~# y2 Y$ % n `$ ^# r u n ~# `$ o p m % ^# :# {& /# L= ^# F= w ^# G F A$.#] I ^# N a7 A n! $T I A 1& n! AR 2Z M o^ O@ T^ c- d{ d{ >z >z >z M 0S H$ }Y Q *I :#.B$.oY A: >$.r! (U .Z #N #N )Q )Q RT )Q RT )Q `I ^P EN -X 9X RT -X $N D` AS $N AS AS AS hT E` hT 3@.0X E` aS +` pY |Y y@.l#.C$.%T 5Z qY B .D..pO kT 0 .z@.uZ nW %` N#.6Z oW +..a .a .uY D$.E$.a .a .8Z 8Z d .& .d .-@.* .* .%+.%+.E..F$.-V f$.G$.F$.|#.H$.I$.G..HX > .Q#.HX =V HX L` G .L` qW gX [W gX gX J$.nV gX IS pT qW &+.9+.9+.f` f` qW [U h .! .K$.! .#Y 8Y [U =+ j% ^+ ^+ ]+ ~+ U# ^+ ~+ /+ U# L+.U# L+.e@.:+ i` L .M$.i` ]R ,` ,` ,` V#.jX V#.M .l .c+.:$.:$.6W k` j` 6W j` O+.O+.k` j` O+.j` O+.k` n$.h@.m .d..l` n$.p$.IZ IY IY ^ .h+.!..!..l` l` l` !..{` 3U P+.P+.-Y ,T 3U ,T ,T ,T e..e..e..lX e..hZ ^` 6#.n .hZ n .HO lX tV >Y tV tV tV LM On Hy N$.O$.(y >c 3$.>c P$.Q$.0#.R$.S$.Yb xe >e T$.~d %c a#.a#.T+.Eo sf MI MI sf P@._N 8E (J (J $n $n 4A 7f $n 7f 7f ]..PM ,o ]..VJ lA PM lA PM ,o < .,o lA lA l@.lA zC U$.lA *f lA ,o ,o ,o < .< .$n 4$.`` w` C#.DQ QD pu pu eE /n jA xv DQ GT fE `` dL w` `` 3g -L vX QH Hs ,o uN YI V$.ZI m, b$ -* N- x$ }@.). x@ &. . A$ G@ F@ D$ ` P |; |; S N@ M@ A Q@ A N O@ ", +"R@ R@ = = G= V@ L$ = = * ]& ]& + G= $ # = . R@ # + # # . ]& > . # = o! 5_ Z, 0' + - . 0' ; & * = ^ S$ $ & > Q$ | ^ S$ $ = $ ; & ; - *' { > N$ - U@ N$ & ] N$ P$ ] ] X@ ~ | | X@ O$ > .# & | H= U$ H= > I= | { ## Y@ 1 2 { 2 | .# d ## { ~ == ( } ) 5 $# a ,# 7 8 } 1 a ># Y@ g 7 7 V$ W$ a a ,# n ~# ~# a a ]# k e ,# L= K/ c 2, L= ]# Y$ 1; ,> 4* u Y$ L= Y$ D `$ b' t w 2; :# {& /# /# m m m 6* /# w 1Z @= m G N 1& n! T^ M 1& c- O@ n! n! I I O@ V =X z ..@._+.O@ Z..Oz y .O 3& O iI i5 iU aV A: )Q 3d *I BX W$.)Q )Q ^P RT Z ..V Z .^P #N EN EN 1@.9$.EN 9X Z .AS AS $N CX $N AS .` hT E` y@.aS aS pY ` .|Y '$.cS X$.D..Y$.[#.Z$.CR vZ aX $ .L#.pO nW sY +.`$.nW _W 1+.#..nW *` %.% .#..C@.xZ * .8Z 8Z d .d ..%.%+.E..-@.-@.qU f$.+%.G$.pU 7+.G..NV e .H$.Q#.=V }T IX L` G .> .G .Q#.L` qW Q#.[W f` qW QV PV pT JX 9+., .h .f` f ., .8Y f .@%.~V cZ [U cZ ~V $Y `T ~V #Y qT #Y OR %Y %Y xU ON _K XP 5P XP XP ^S yP OJ OJ }L }L :K :K OJ #P OJ }L CB }L OJ x SG x `w x rC x x q qo $%.D& %%.~+ j% ~+ ^+ ^+ %%.^+ ^+ ^+ ^+ U# ^+ e@.N+.M .b+.i` ,` i` i` i` ,` M .l .:$.i` :$.s#._$.K..O+.j` )T j` k` &%.j` n$.O+.OX j` k` O+.*%.=#.p$.l` !Z =%.[$.l` ^ .IY l` l` !..W#.P+.P+.l` i@.3U !..-%.i@.hZ ;Y ,T i@.hZ hZ e..u#./ .e../ .;%.>%.n .u#.e../ .6#.tV HO LM HO HO LM ot 3c ,%.'%.$B ]B )%.!%.~%.l@.{%.]%.^%.Zs mc #H -d $c %c %c %c #c /%.tN (%.ED 6L P@.P@.P@.U+.=M 8E XY Kt 4A (J iz $n k..PM ]..]..$n ]..,o ,o ,o ,o < .~#.lA < .,o ,o lA < .7f VJ < .~#.~#.< .< .7f Ac 4$.WY fE UY DQ )B pu jA xv )B WM JT _%.:q (j ii (j w$.ew :..]e :%.WS uJ @I ED TD rb <%.(B ~@ m$ -& m@ s@ ). ). %. +. z@ L@ P Z J J E$ K@ 8* 4, I Q@ S K Q@ x ", +"L$ % L$ L$ + ]& L$ L$ ]& + ]& + # V@ $ = + . . ]& V@ . $ . > # - + + # = > S$ ]& U@ $ # ]& . Q$ . o! - S$ & . . k) . Q$ [* & & $= | - ^ & $ > - S$ Q$ ; Q$ . U$ * . Q$ ] | Z! ) ) X@ | ] ~ | | { ~ 1 [ 7- { [ 4 [ Y@ ( ( [ Z! | { { ( $# ( < $# { { 2 d } &# ) b 0 2* ,# ># ~# 0 d j ,# ~# !# e ~# W$ a ,# i !# k ~# p c a L= p Vj h s> L= h ,> n^ Z$ q 4* ^# q t m 2; ^# <, t p Z$ :# w w w w N a7 n^ {& z QT y .SO Q A: iI *I Q oY *I *I BX `I U^ k#.[%.@N )Q )Q #N +Z ^P RT RT ^P -X sZ 1@.bV 0$.AS $N 0$.hT $N hT AS hT hT hT E` cV 3Z E` C.._U ` .7 .}%.#@.4Z Y$.Y$.EX CR G` nW jT 5Z |%.N#.sY sY <+.|+.^W *@.1%.cX #..*` E .2%.E$.E .d .d .& .8Z * .d .* .* .]$.-@.RE )X 3%.F$.5+.0..}T -V 4%.7+.^$.G .> .L` }T [W > .G .> .L` PV gX 5%.JX qW nV AZ J$.SV OQ g .6%.AY 1T 1T 7%.pV 8%.)V qT [U ~V 8Y `T }U cZ ) .sU $Y P` P` 2U +U %Y PN 9%.^S @P 5P yP OJ Q` OJ +M fR :K :K :K :K }L #P #M ;w OJ rC RG GI `w Px qo x Tx kt x TG kt kt Tx yD x kf ch j9 |u Vr n El gd gd j9 j9 gd U3 45 u^ 6< `e V5 34 V5 34 34 v[ I| )2 +{ I| Sc F{ F{ F{ 9) 9) ^' Z{ F{ Z{ 9) F{ q- -] f; 0) ]~ ]~ ;] F{ ]~ O~ e! &~ s~ =+ 7= =+ 7= =+ ;+ ;+ 6= 7= 7= =+ =+ 9= S# ;+ r- 9= !+ 3#.E& y* y* 0%.%%.(+ ~+ L+.s- ^+ L+.L+.b+.N+.d@.a%.,` ,` _$.N+.N+.L .bY { .N+.f@.l .M .b%.f@.c%.k` k` ,..c+.S` j` k` O+.j` O+.O+.*%.O+.L..IZ IY d%.h@.IY l` !Z !Z l` h+.l` l` !..!..e%.i@.5#.P+.-Y 5#.hZ i@.hZ ,T hZ `#.hZ lX u#.]` f..>%./ .u#.e..f%.6#.tV HO g%.MZ {Z HO 5H $g h%.(f fv i%.,c zc ,c _d j%.k%.l%.m%.vd rc gb !d ~d ~T !d z#.kb a#.a#.#$.MI 6L Bz MI sf 6L =M sf U+.8E 8E 8E 8E Kt $n ]..7f 8E R .7f 7f Kt < .< .< .n%.7f 7f 7f ,o o%.iz iz n%.7f < .$n iz Ac hE p%.`` fE %W KT WM WM KT QD q%.%W UY kY r%.Wg (j dk WM Yg rd lk [N ZN yC @I yK 0H Fa s%.7I V% m$ :; w$ w$ {. x@ !. *. X L@ @. G@ H S Q@ S 1# H$ Q@ N S Q@ G /# ", +"]& J$ # ]& ]& + ]& + 5_ 1) + + $ $ # L$ 1) . $ = # + L$ = # V@ V@ $ & . = ^& $= + o! $ # + $ U@ S$ A; + L$ . L$ V@ V@ = Q$ . $ . & ; T@ P$ > & Q$ ^ & H= | ; ' U@ ; [ . | | ( N$ { 4 ; 4 7- ~ | 2 ] /& ## } *# 4 <& ) ) 2 { Y@ | *# P$ | *# *# *# [ 7 [ 6 1 a b e D, 6 6 M' i i Y> ,# V) ,# ,# L= q> L= n 0 0 !# tA o Y$ L= n r ,> K/ t' 2, h p e n n ~# c |& 1; :# ^# 2; t {& 4* ^# D % t G ^# w $S G w K z D B 2; C G w z E; M A Q@ V Z T^ >z H$ c- 3# 8* >z V 5 .t%.A: H u%.t%.oY SO *I iU (U *I yS 3d k#.BX #N RT #N ^P )Q bV ^P ^P RT +Z -X -X $N bV -X $N D` CX 1@.AS AS .` hT E` E` HQ y@..` .` aS $@.pY ` .D..4Z ` .5Z #Z qY z@. +.jT z@.z@.v%.F` vZ $ .w%.x%.uY *` a .oW #..a .a .#..{$.{$.I` * .yZ d .+#.* .%+.+#.%+.p#.+#.F .G$.y%.f$.7+.1#.F@.HX =V > .G .IX L` H$.G+.IX > .IX nV pT qW AZ AZ JX f` 9+.8%.SW JX AY f` aZ f` BZ H..I@.G@.!V 8Y ~V ~V ~{ &+ =+ &+ =+ ;+ =+ =+ D& &- $%.&+ ,+ %%.%%.T# U# U# U# ~+ z%.U# L+.U# L+.L+.b+.N+.N+.U# i` ,` i` N+.N+.,` jX E* N+.N+.c+.c+.N+.A%.c%.k` j` K..&%.O+.O+.O+.k` O+.O+.k` O+.n$.] .B%.IY e+.OX )..C%.Y#.^ .h+.l` !..l` !..l` !..!..hZ l` P+.-%.hZ e..,T e..e..,T ;Y hZ e..n .hZ e..u#.|~ n .u#./ .MZ HO w..D%.HO ot On 4I E%.Yb F%.mk :b Ac tb G%.H%.I%.J%.K%.Tb nc nc rc -d L%.jb %c %c a#.%c tc T+.M%.#c tN P@.U+.MI sf sf _N _N P@._N o+._N _N o+.8E R .7f Ac Ac k..$n 7f iz 7f 7f $n < .>c 7f R .$n iz $n $n $n Ac sf p%.fE _%.UY y` %W y` UY y` UY ._%.MO `` (j ]j _j /y TI nv cr 1N 7L Tn LB N%.YI `b O%.nA [~ 0q m@ s@ B= c# ). +. 5# A@ #. 4# P V T Y H K@ +% I z P@ 1& #= F ", +"]& # # J$ L$ ]& R@ + = = ]& # = ]& + + L$ + ]& # V@ Z, k) + > . # & . . ]& # . X! = > Q$ > & > T@ + = T@ . Q$ U$ & ; & $= H= S$ | 5- S$ !, P$ 2 N$ ; N$ & `@ | & ; ~ H= 05 > X@ & ~ { & ^ N$ N$ ] 2 X@ 2 X@ 2 4 1 6 X@ / J= 2 } } ## 2 X@ ( { 2 V~ 4 d d 6 } *# ,# a 6 a ,# k 0 z: a a a 9 [& ,# n j L= k e a' z: c{ |& L= h h {# 0- q p 5* -) Y$ _# ,> r s> ^# V| Z$ t t Z$ h p 4* {& F= t 6* {& 2; 1; #] z Y ^` tV tV HO ot c o+.Ac Ac 7f hE _N 8E 8E $n $n YN YN _N S..n+.*&.:q _%.C#._Z C#._Z UY UY C#.%W C#.9T w` WY (j hi GT uj ,f IP md WS aH S .=&.Yb ~d -&.;&.>&.o$ u@ -& v@ d# ^. A@ E@ G@ G@ V }; I@ L@ 1# M@ +% S P@ A Q@ +% I F ", +"]& L$ L$ $ ]& R@ + ]& L$ + $ 2) L$ + . p9 # > I/ ]& + + . > }, # & > $ . + L$ |* > Z, V@ - P$ - . > . # # o! $ ~ > ; $ > & > 2 > { ; ; & =' & S$ > & ] . ' ; | ; U@ ) & 8- ^ & - ) P$ N$ { H= P$ 7- 2 7- d [ 2 4 J= 6 d } X@ 2 /& { 2 <& : 7 5 6 b } 4 0 q> } D, ## d 6! 6! [& W$ a ,# i ~# n o 7 a' c k L= g ~# L= o c n 2, h c `$ n {# K= ;= n `$ m p % Y$ $] V| ^# n :# w F= 1; m K D b' #] 4* z #] /# G z M= M I I Z z z 2Z ,&.F= M q! $T V '&.z . V V .@.c- Oz d{ z .*I A: *I A: A: B..k#.#N XX )&.oY )Q ^P #N yS )Q )Q ^P RT RT _M )Q `I !&.9$.0$.AS hT ~&.{&.0X AS 4...` E` hT 4..BS 4..AS E` ]&.|Y ]&.D..[#.^&.dS ^&.F` 5Z ;X aX z@.0 .0 .6Z /&.N#.w%._W _W a .cX #..%Z #.._W %Z 6@.{$.d .d .xZ {$.d .E..%+.RE (&.p#.@#.3%.]$.;V y%.r#.sP c` _&.G..L` IX IX L` HX > .IX > .IX qW f` gX gX gX f` &+.AZ JX gX 9+.aZ aZ aZ )V I@.) .[U Y HO 5H [&.}&.]B ZV |&.uJ !%.fw 1&.W@.s .)f 2&.;s /w nc nb nc rc -d #H ze ~d %c %c a#.a#.a#.M%.ED #$.ED #c 3&.6L _N sf sf sf S..YN tN sf =M YN }i sf Ac Ac Ac 8E Ac o+.Ac Ac _N YN _N =M sf S..sf sf }i vV 4&.^j `` +R UY 5&._%.6&._Z y` JT %W C#.r%.`` (j ii KT kM fE dU 3R ZM Is ,o Kt iE ~d zf 7&.O% 1@ j- :. O- 5& '. b# )= R V T O= $> Y H S H$ b- I I Q@ x I A ", +"L$ J$ J$ G= J$ = + k) ]& . ]& = ]& V@ # 0' p9 # . $ ]& ' $ ' - S$ . $ + L$ ;b ]& 1* $ . Q$ . S$ - > ] > > ; R$ S$ U@ > H= ; H= # Gc > | N$ ^ # $ # { Q$ & { P$ ~ ) Q$ S$ Z! | Z, X@ ~ U@ H= { ) N$ 2 %= ] Z! | %= 7- 1 [ 4 ) { 2 *# 2 X@ } { 2 d J= ) 6 { / a $# ( -> 5 1 ( 6 *# a' 0 7 Y> K/ ,# 0 a' c ,# 0 ~# b Y> n s> h n 2, 0 n^ c ~# h W$ p ~# 4* -) ,> /# ,> Y$ @= G ,! w p W$ ^# E t m w B Z$ w /U a7 A$.2; G A /# JW z F= 1& a7 a7 T^ Z a7 A T^ T^ V 1& V V O@ z ..@.|# A: 5 .iI A: 3; J 8&.aV SO BX .Z (U qF #N ^P )Q ^P +Z ^P 3d +Z +Z )Q EN 9X {&.<#.0$.6B $N 9&.0&.1@.~&.1@.CX CX .` a&.$N 4..hT y@.y@.pY |Y b&....4Z 5Z D..5Z 5Z c&.0 .$ .z@.}+.M#.=@.M#.w%._W ^W #..a .++._W 6@.*` #..a .{$.8Z d .%+.* .d&.* .* .%+.e&.- .-@.g$.+#.c` pU f&.r#.0..I$.IX HS > .H$.Q#.> .L` G .}T G .G .PV JX f` 9+.5%.9+.AZ JX AZ I+.lQ AZ 9+.'@.)V !V !V 7%.g&.~V [U qT cZ UP ~V qT cZ ~V H .dR ,Z ,Z tW yO dR hX @P TQ yU OJ }L fR :K :K 'G :K 'G OJ }L fR :K q #M 3I `w Px qo `w Bl q CB x q x qo x GI .g h&.Cl kt Vr j9 n j9 >0 j9 `e 6< j9 kf gd 45 V5 v[ v[ 34 34 v[ v[ 34 v[ !8 D9 b^ 9) :_ )2 F{ F{ F{ ^' +{ 9) F{ 9) ]~ ^' ^' 9) f; ]~ s~ ]~ 0) f; q- q- f; Y{ .; f% +; 7= ;+ =+ ;+ 7= =+ =+ =+ ;+ =+ &+ !+ D& ;+ r- Y' i&.U# T# U# ^+ ~+ U# ^+ y* j&.^+ ^+ ^+ L .Y%.N+.a%.N+.k&.l .N+.N+.,` _$.N+.,` K .Y%.l .M .l&.k` j` k` O+.O+.k` k` m&.k` OX OX n$.&%.O+.p$.p$.n&.IY OX [$.IY l` l` !..l` !..!..!..P+.!..`%.;Y :&.o&.-%.hZ e..u#.;Y e..hZ ;Y e..hZ e..e..u#.e..6#.u#.u#.>%.>Y D%.D%.>Y 5H UN p&.q&.VW yQ r&.4G !%.@$.|&.s&.t&.u&.v&.w&.Sb ve mc nb nc rc -d gb >e #H %c %c %c %c ED M%.#c ED %c T+.sf P@.MI MI S..MI tN T+.S..=M S..x&.3&.8E _N .T _N S.._N _N Ac YN sf sf S..~%.S..Bz y&.ti vV z&.ii :q kY }j A&.B&.C&.1 .kY JT %W C#.r%.D&.E&._j cU eE w` ^F $O ZV KB n%.eP 2N Oj V$.F&.(@ 9@ {* w$ v@ ). -. X +. E@ 7# J@ E@ Y P H Z +% Q@ P@ K@ G z M A ", +"% ]& R@ G= .( = + <{ J$ + ]& ]& . & V@ M$ + + . + L$ # . . > + + + . - > #^ . ^& + 0' - > %= |* . Q$ $ U@ . - $ ~ ] & . ; X@ . | =' Q$ T- U$ N$ V@ ] S$ Q$ R$ Q$ N$ ] [ { Z! 2 Q$ 5- } *# ; Z! ) U@ ~ X@ ;# ~ ~ ~ 7- 1 { W@ ~ ## ; V~ ( /& } [ ## 4 6 ) X@ D, _ V) 7 9 e 6 6 5 d a ( ,# ,# ( [& a ,# ~# q> e a' {# h 0 L= r ,> [& 2, n h ;= r n r ,> 0 ,> `$ Y$ ,> 1; V| p F ^# p u n^ ^# B m t B {& G E C` N 2; z I G /# 8* E z 1& 8* I T^ JW n! 8* M c- KW Z c- .@.O@ o^ t%.0S Q 5 .3# L SO B$.B$.B$.:#.k#.#N r! WX ^P ^P `I RT Z .Z ..V G&.RT ^P +Z H&.9X H&.+Z 9X w@.7` hT AS CX $N E` CX CX CX AS CX CX .` z+.|Y pY 4Z ..l#.B .B .l#.B .<+.F` jT <+. +.^&.I&.J&.K&.b$.a .a .uY L&.#..%Z xZ a .#..E$.gV & .* ..%.%+.o#.E..+#.]$.]$.+#.D@.c` - .NV 4%.M&.L` K` 9..}T IX M&.L` HX G .G .HS 7+.L` qW nV qW Q#.f` gX gX AZ N&.O&.nV lQ AZ gX HG !R 1T H+.)V P&.cZ qT cZ qT [U sU $Y cZ sT NR g` 2U 2W ON zO 5P 5P K+.XP TQ ^S fR 'G OJ OJ fR OJ OJ fR OJ :K rC #M :K qo #M RG qo qo q q x `w )J q `w x Tx ch q q Vr >0 T3 .g T3 gd gd `e gd T3 j9 T3 V5 6< 34 `e v[ v[ 34 v[ V5 v[ R( 06 F{ +[ 06 F{ 9) 9) ^' F{ 9) F{ ^' ;] Z{ ^' F{ f; q- f; ]~ f; (! q- ^' 9) f% u& +- .; 7= =+ ;+ *+ 7= ;+ ;+ ;+ =+ =+ ;+ 9= =+ ;+ r- &+ A& ^+ ^+ J@.^+ (+ ^+ U# ~+ U# U# L+.L+.e@.M+.,` a%.M+.N+._$.,` N+.,` _$.k&.i` Y%.K..:$.f@.f@.O+.O+.&%.O+.n$.O+.k` 6W k` O+.m&.O+.Q&.O+.[$.] .R&.Y#.[$.-#.!..!..l` l` !..l` P+.!..!..!..i@.e..i@.Z#.S&.i@.hZ hZ hZ hZ hZ hZ hZ u#.e..>%.u#.>%.u#./ .e..e..6#.HO HO /R 5H uK T&.U&.x$.V&.e Hd Aa =*..* 2@ l@ -& ~. ). x@ R A@ C$ &. V C$ }; 2# H M N@ +% H$ A P@ I M /# ", +"R@ + ]& 5_ + + $ ]& ]& ]& + + . + $ V@ # + + # # R@ # = R- % > > $ V@ > $ 5_ - > .( Z, . & # V@ > > Q$ * ] > $ |* = > > $ . . > $ . & ; Z, $ ^& | ; > & ; ; ; . | ~ . { [ Z! . ] *' Z! | N$ ; & N$ | N$ [ ~ [ 4 : { ] ( [ [ 2 /& d D, [{ ,# < } a e 6 < j } $# b $# ,# 0 :& ~# vk 7 ,# W$ ~# h ~# 0- ~# ,# o o 0 p q h K/ L= r % ]# p r c{ Y$ h 2, 1; n Y$ Z$ Y$ `$ /# Y$ D /# /# {& :# z F= 1& {& G z {& G z 1& 1& 4* w z B A 1& n! c- I =X K c- O@ 3# c- PT A..5 .y .-*.c- L ` ;*.-*.>*.iU I#.qF #N ;$.BX pF 'Q ^P ,*.,*.3d ^P >$.#N bV Z .sZ mL 0$.1@.0&.'*.D` +@.'*.CX CX AS hT )*.AS aS .` E` a$.pY #@.]&.7 .@Z tM B .l#.!$.F` !*.lU ~*.L#.aX A@.x%.{*.0 .%Z _W ++.U%.=@.a ..%.U%.#..6@.d&.yZ ~$.xZ ]$.F$.]*.+#.-@.E..E..@#.4Y p#.]$.^*.;@.G .y%.0..> .IX L` }T =V IX IX IX G .Q#.5%.PV pT [W 9+.JX f` &+./*.AZ AZ pV qW AZ AZ SW pV K$.7Y , .~V 8Y ~V 8Y [U 2U 2U 2U }Q {S @U sT NR jS +P (*.5P _K _K TQ yP fR iN OJ fR #P :K 'G OJ QG OJ .F q _*.QG q F 6O q qo #M q Tx x x qo q q kt ch HI YK kf j9 .q >0 gd j9 Kn uo T3 j9 `e U3 v[ 34 :*.U3 v[ v[ 6< 6< 34 +[ 34 b^ +{ +{ b^ 9) d; 9) d; 9) d; 9) ;] 9) 9) F{ 9) q- z& d% f; M, ;] q- t* u& /' +- M, $- ;+ =+ ;+ ;+ &+ &+ =+ 7= -+ -+ y& !+ !+ <*.'+ &+ L+.L+.J@.U# ^+ ~+ L+.L+.L+.L+.L+.L+.j&.[*._$.b+.}*.N+.|*.N+._$._$._$.1*.N+.s#.2*.M .c+.5T K..6W ,..k` n$.c%.O+.O+.O+.O+.n$.O+.n$.|$.|$.] .p$.)..^ .p$.h+.!..IY f+.!..l` P+.!..P+.!..-Y 5#.,T P+.3*.e..;Y ;Y e..u#.u#.e..n .;Y >%.>%.hZ e..e..6#.f..4*.<&.HO tV o` 5H UN 5*.;j o..6*.7*.Vk 8*.,g j%.s&.9*. *.0*.a*.b*.ye vd +c nb nc nc rc =d -d sc xK -d !d %c jZ tc a#.#c a#.a#.a#.a#.c*.c*.c*.n+.n+.ED S..d*.5j T+.T+.Ac sf sf Bz tN S..MI S..S..ti kH vV yK a#.e*.e*.f*.g*.hi Wg WY w` +R h*.i*.j*.8w JT JT 8w HP kh }j dL k*.tv cE l*.Ks /T p..dv 7f y$.1b La ML %@ X% i@ {* (. ). z@ +. (* G@ T P Y M@ O Y M P@ M S S m) @% I w ", +"# =[ I/ =[ # L$ + = + . ]& + [* + ]& ]& S$ . $ 0' !, ]& k) # # = + # . $ k) . V@ * # S$ $ Z, |* & Q$ > U@ S$ Q$ Q$ ] ] Q$ - = . - . ; $ ~ & - S$ $ Q$ > V@ > o! X@ 2 { { > H= | U$ ; ; ^ ] ] ~ ~ N$ X@ Q$ 2 Z! W@ | X@ } { 2 } / ~ ~ } ## | 8- [ 6 ( ( Y> ## ~# q> 6 ## < d 6 ( d b a K/ e e 0 ,# a m*.9 c ~# a' c z: e e ,# r v r n n h 0- `$ % L= `$ ^# m L= #] n^ q F 4* `$ w Y$ t }& 0- /# /# /# :# F= w {& $S ^# E G /# 1& N a7 8* ~& z..n*.T^ %.hZ >%.hZ e..e..i+.e..u#.6#.i+.;%.v#.>Y HO tV vK r0 D*.Df Q..bc E*.1&.S+.y#.R$.Y&.F*.G*.H*.I*.J*.Vb [f >d te +c +c mc nc rc )d rc -d >e gb gb %c %c tc %c %c #c [R 5j $c [R a#.[R [R kH ti [R 8L n+.YN S..tN Bz ED ti kH ti n+.[R [R [R [R a#.[R [R :f K*.]j :q fE w` L*.M*.N*.Qo O*.KT ni (Z +R }j dL +R P*.Q*.wv gE Kf 'r *n Is zC MI 1b Wa R*.6E c$ S*.(. d# &. -. A@ }; H@ Z D$ L@ P }; D$ H$ P@ P@ K@ G I @% Q@ G ", +"# K$ + + % # = 5_ R@ + L$ + ]& ]& ]& $ + 0' 0' + + 5_ ]& J$ L$ ]& # + T@ . $ |* [* L$ U@ $ T*.= = + $= & > 0' = & $ $ ; . Q$ U$ ] & & *# & P$ U@ ] Z! | ] > . |* & H= ; & ) %= ^& [ & & ^ & N$ ) | N$ ~ 1 2 7- ( [ /& ) | 2 ] ) } Y@ /& X@ ( ~ 5 6 3* q> ( a 6 $# -> { Y@ a j 9 ( $# Y> 0 8 ~# a M' K/ b V~ a 0 c{ 0- s> h n 0- W$ c ~# ,> s> L= 2, h s> ;= 1; c{ #| _# Y$ `$ :# @= 1; m :# 4* :# b' U*.F= {& B z w [# G a7 /# n! 1& z A I O@ O@ I T^ M T^ 1& #= T^ V AR V c- 3# V V (#.y .L |# L oY qF *I A: (U oY #N BX oY #N 'Q +Z RT )Q DN )Q G&.RT )Q RT +Z EN 9X 9$.bV 3@.hT D` 6B E` CX AS AS 4..hT CX :M 9&.a&.y@.pY pY |Y `X !*....$ .0 .5Z B .z@.N#.$ .s*.<+.V*.C ..#.W*./&.oW #..U%._W ++.*` ++.*` ++.d .]*.X*.C@.E..-@.x*.%+.%+.F$.+#.+#.Y*.D@.F$.Z*.e .;@.G$.[W 7+.HX H$.7+.L` Q#.L` nV > .> .X%.gX 8@.G+.AZ f` f` AZ f` &+.AZ AZ 9+.HG )V `*.S#.qT =.~V 8Y ! .) .~V cZ ~V O` sU U NR wU 2U NR VK +U TQ Q` 5O TQ 5P ^S yU jN OJ OJ }L }L }L }L :K OJ ;w FI ;w qo q F CB q x qo x `w q x q x qo .g I .DB Vr .g .q .g ch AP d3 45 T3 S3 T3 T3 u^ 6< 6< v[ =^ 34 v[ V5 !8 u^ 54 /1 9) A/ 54 F{ ^' 9) F{ d; F{ ^' d; 9) F{ 9) F{ 9) f; M, q- q- ]~ t* t* q- q- 0) @- R# ;+ &+ g% v& =+ &+ &+ &+ -+ &+ =+ =+ Y' Y' h; '+ h% E& a+.y* L+.L+.j&.L+.j&.j&.U# L+.L+.L+.M$._$.L .U# ,` i` N+.i` N+.k&.i` l .,` f@.c+.c+.k&.4#.O+.k` O+.n$.k` O+.OX OX n$.n$.k` OX n$.j@..=.L..P+.[$.Q&.] .!..!..!..7W !..P+.Z#.-%.P+.Z#.Z#.;Y S&.+=.Z#.hZ hZ hZ e..e..hZ hZ u#.e..u#.e..u#.e..@=.u#.#=.g%.tV tV KY zT $=.yh %=.&=.*=.==.,g -=.s&.;=.>=.G*.G*.,=.'=.)=.vd vd Ad vd +c {d mc nc nc rc rc gb rc #H ~d %c ~d $c %c [R %c 8L T$.T$.%c [R [R [R !=.5j [R [R n+.T+.[R [R n+.$c [R [R [R [R $c $c $c yh yh ~=.{=.]=..X ]j WY fE `` !n ^=.w` x` y` dL _Z kh w` `` MO dw [x eE QD xf MT Jt aI Is 8E YI 3b /=.f) }- e@ u@ D= ). ). !. 5# G@ Z 1# T H L@ Q@ 1# K@ Q@ M@ A M O@ S I ", +"0' # # J$ ], K$ ]& L$ + % ]& <{ J$ J$ + # [* = =$.# E! k) + . # . # V@ . + ]& V@ ; = > . $ = . $ ]& U$ ; ]& & & > - . U@ Q$ $ ^& $ o! & ; ; > ] & & ' - ; ; ; . . & ) & N$ 2 | | ) | o! [ { | ) { | X@ [ 2 ( Z! 4 `@.{ /& 6 d 4 2 } X@ { [ $# &# [ D, D, 7 $# 1 7 d 5 a } ( 6 Y> &# 6 N' g 0 Y> ~# e 0- ~# c e i ~# c !# c tA ~# Y$ 1; h _# ,> m ^# % % t Y$ t t t 2; 1; `$ /# /# 2; ^# F= :# D #] F= t {& E z G w 1& 8* O@ E; T^ I KW 1& .@.O@ 8* 1& 1& T^ V c- |# c- .@.5 .y .>z :#.L J SO iU oY aV SO 3d j#.k#.(=.#N )Q RT +Z _M #N _=.RT Z .RT Z .+Z AS +@.sZ CX sZ hT $N .` hT CX .` E` .` 4..AS :=.9&.4..3..tZ pY Y$.Y$.<=....B .B .<+.z@.$ .z@.[=..#.c$.sY V*.}=.|=.a .a .1+.a .cX ++.* .e$.#..++.& .E..d .* .G$.]$.d .* .F$.-@.+#.-@.]$.G$.1=.2=.G..(&.K` e .M&.H$.e .IX L` PV > .> .> .5%.I+.f` JX AZ AZ I+.9+.9+.JX f` 9+.AY &+.aZ )V UP , .K$.[U ~V ) .BY cZ ~V 8Y sU [U BY 1U 3=.P` MR 9%.DZ qK {V TQ jS ;T @P yP 'G :K 'G :K QG fR OJ OJ :K }L }L F #M az F q x ;w qo Bl `w q Cl q x x Td CB so Vr .g .g .g ch T3 4=.x/ __ d3 gd gd u^ v[ v[ v[ v[ V5 V5 54 !8 6< Sc d; /1 w^ +[ b^ ^' 9) F{ ^' 9) F{ d; ^' ^' ^' 9) 9) f; f; z& f; q- t* q- (! 0) d% u& v* ;+ =+ $- y& =+ ;+ -+ ;+ z& ;+ &+ g% =+ Q# =+ 5=.-+ 6=.U# E& T# L+.L+.U# L+.j&.j&.^+ L+.j&._$.k&.7=.L+.a%.1*._$.,` ,` _$.,` 8=.m$.V#.m$.4#.9=.m$.,..O+.k` )T O+.0=.n$.OX n$.O+.n$.n$.OX o$.o$.a=.P+.Y#.OX R&.Z%.Z#.l` P+.P+.P+.-%.Z#.Z#.S&.Z#.i@.5#.-%.:&.5#.,T e..,T u#.u#.>%.hZ >%.n .MZ |~ u#.@=./ .IW NL >Y MZ LM NZ b=.c=.d=.s .e=.Ag f=.g=.h=.i=.j=.j=.G*.>=.k=.Sa `b [f vd vd vd Ad l=.l=.wd nc rc =d >e gb >e ~d ~d gb %c yh %c vV jZ [R [R [R [R [R [R [R [R [R e*.e*.[R [R [R [R [R [R yh $c $c yh yh yh zh -d $e m=.dk dk fE `` !n MO kY r%.C#.C#.kh +R fE :q `` `` 2G /n 2G jA n=.:..YZ +y MC LB Yb Da o=.]- a{ >* ;& v@ ~. ;. 5# E@ X L@ H P S P@ J E$ M 7* P@ M I I G G ", +"J$ + # J$ )~ =[ 5_ 0' L$ R@ ]& L$ L$ 0' # = ]& $= # ]& = $ . ]& V@ ]& ' . . . + $ Q$ - + #^ P$ Q$ M$ $= - [* - ^ = & > . . + ; S$ S$ ] ; & 5! ] ; ; ! ; = & # ^& $ ^ > & ; ) & Z! 4 R$ | 2 N$ & N$ > P$ X@ %# H= { | ~ *# ; { ~ | | 1 W@ *# ~ Z@ ~ } 2 D, 4 { [ / ( 6 a { -# 9 9 ## 6 e a ~# 6 0 ,# 7 c c ,# e i o !# a ~# L= Y$ e 0 e z: p s> `$ u c{ _# p |& q L= % Z$ ;) `$ /# p #] q /# @= D {& B ^# {& 2; {& {& T^ F= @ .#= I A z G T^ 1& T^ '&. Z JW 8* AR c- V V 0S =X p=.d{ c- A: 8* 3& Oz 0S AX (U A: A: qF ^P B$.I#.I#.)Q RT )Q p*.YX q=.RT ^P Z .sZ H&.sZ 1@.bV 9X $N hT AS hT AS CX .` E` E` q*.AS |Y 9&.E` z+.|Y z+.pY ...r=....CR ` .<+.<+.8 .$ .$ .c$.v*.vZ %Z s=.t=.u*.1+.u=.*` *` *` E$.d&.6@.*` 6@.d .v=.E..%+.w=.C@.p#.-@.]$.+#.]$.%+.p#.;@.W%.r#.HS y%.7+.> .HX G..M&.}T L` Q#.> .X%.> .JX J$.JX X%.&+.x=.f` 9+.JX JX f` !V f` aZ AZ 7Y #Y y=.[U !V ~V cZ cZ qT cZ sT sT [U #Y {S 2U sW VK ,Z TV OR iJ 5O TQ _K #U :K iN 'G fR QG }L OJ 'G 'G |Q :K #M FI pC `w SG qo q F `w Bl x q q `w Tx `f x `f qo .g Vr j9 j9 .g j9 d3 T3 j9 T3 2H j9 45 v[ 6< v[ 34 34 6< 6< =^ 34 H| 06 <] z=.a^ 9) Z{ 9) ^' d; 9) ^' 1> 9) ^' F{ F{ q- q- s& F{ f; +- f; q- f; f; #+ .; @- R# &+ ;+ ;+ ;+ (' =+ &+ &+ ;+ &+ P# ,+ =+ <*.>+ J@.d@.U# z%.i&.~+ i&.L+.j&.j&.j&.L+.L+.A*.M$.N+.i` A=._$.N+.N+._$.k&.M$._$.k&.B=.b%.m$.8=.s#.C=.&%.O+.n$.O+.0=.Q&.n$.D=.n$.[&.n$.OX E=.>#.p$.R&.^ .^ .g+.R&.l` l` P+.Z#.P+.P+.P+.Z#.F=.Z#.;Y ;Y P+.:&.Z#.hZ ;Y hZ hZ e..hZ e..u#.>%.6#.6#.6#./ .@=./ .e..@=.v#.zT G=.PX _X s&.H=.I=.J=.K=.L=.;=.M=.j=.N=.O=.P=.Q=.|b R=.[f gc ,d S=.Ad Ad +c ;d nb T=.nc &&.rc rc gb )d jZ ~=.-d yh yh [R yh %c jZ yh %c [R [R e*.[R yh [R [R [R [R [R $c e*.yh yh jZ +l >e -d -d =d $e U=._j dk :q `` WY fE _Z y` y` .fE V=.&*.WY &W :q 1G W=.ou /n ew ov X=.=Q jz Is /w Y=.Z=.`=.W9 d@ s@ O- &. . A@ =. G@ X C$ Y J S H$ S P@ #= z I z z w G ", +"L$ =[ + + L$ K$ =[ 0' L$ L$ ]& ]& + # > # ]& V@ + ;b = $ $ = + + . k) $= # ]& $ . $= # . $ > T@ $ > ]& . > # . Q$ ; U@ S$ & & ; ; -.; Q$ ] ; S$ . ] 2 N$ ~ b{ $ | N$ Q$ N$ . | ~ [ R$ { X@ > W@ ; ~ N$ { { [ 2 7- { | J) [ 2 1 2 $# 2 [ ( *# ( 6 4 D, / &# => { D, $# $# { 6- b } } d 6 Y> k d Y@ b !# n ;= g i 0 6! e ># o ~# z: 9 0 ~# s> Y$ p L= h Y$ 0- r Y$ `$ q Y$ D :# C 2, Y$ t ;= D /# b' u #] w z F= b' G z I a7 z 1& #= .-.F= JW #= T^ ~& $T M AR AR 8* V c- .@.1& v@.HV 0S A: 0S ` v@.5 .AX A: *I *I BX +-.I#.+-.yS .Z ^P 3d )Q yS )Q +Z )Q R%.G&.@-._M !&.+@.RT -X 1@.CX .` # .hT .` 4..E` E` hT aS a&..` a&.E` ` .pY 4Z Y$. ..5Z D..M#.0 .$ .t*.#-.0 .#-.OW #...#.$-.t=.#..%Z %-.#..*` *` xZ a .E$.&-.d .E..%+.d .o#.E..p#.*-.]$.%+.+#.J` 1=.=-.F$.;@.oT 5+.}T IX HX IX G .HX G .--.Q#.G .[W qW AZ f` qW f` f` &+.f` 9+.9+.9+.f .8+.AZ AY lQ ~V ) .I@.a..#Y 8Y 8Y ~S ~S , .sT U .U +P +P sT 2U OR 2U AO yU iN @P TQ @P 'G 'G OJ fR QG OJ RG fR :K OJ :K RG |Q %r q 3I 3v Bl )J q x q qo q q q q kt kt `f ch Vr El j9 ch d3 j9 gd 4=.T3 gd j9 U3 v[ v[ 34 v[ 34 6< v[ 6< 6< H| D9 X/ A/ w[ ^' <] ^' 9) d; ^' F{ d; ^1 d; 9) ^' 9) ^' q- q- ]~ d; f; f; q- q- (! /' e; $- ;+ ;+ ;+ &+ &+ -+ -+ =+ &+ -+ -+ Y' >+ %- ;-.6=.A& L+.j&.>-.,-.U# ^+ L+.U# ^+ L+.j&.j&.b+.k&.,` a%.|*._$.N+.N+.'-.K@.N+._$._$.5T m$.4#.)-.V#.n$.n$.n$.0=.OX n$.O+.n$.O+.Q&.n$.n$.n$.n$.R&.p$.C%.!-.Y#.R&.!Z P+.~-.l` Z#.-%.P+.Z#.Z#.-%.e..e..:&.{-.Z#.hZ e..e..u#.e..e..u#.@=.e..6#.6#./ .6#.6#.u#.>%.@=.MZ &U ]-.^-./-.(-._-.:-.<-.[-.,y }-.|-.1-.2-.3-.4-.5-.6-.Be Sb ye S=.S=.Ad =e +c +c nb lc nc rc rc nc =d -d ub jZ -d +l $c yh yh T$.#H :f [R yh e*.e*.[R [R $c $c e*.%c $c $c #H yh #H #H =d =d rc nc wd Bf 7-.Wg :q `` .+R +R C#.C#.+R =L dL w` 8-.C&.fE dL $W 9-.ou zJ DQ _j Lf Gd dW (w >e 0-.|b a-.NL e@ s@ x@ o) x@ &. . B$ T L@ M@ S J N@ 1# A I A B P@ A G w ", +"R@ L$ !, K$ 5_ + K$ ]& <{ R@ R@ ]& 0' ]& V@ 1) + ]& # ]& $ + + ]& Q$ + & $ + V@ > $ . # Q$ Q$ - + $ ^& . . | S$ . = & T- - . # =' ; | ^ o! & $ | ] . ] S$ ' ; Q$ (& ~ . $ Q$ | { Z! { ~ S$ - { ; | R$ N$ S$ ~ { X@ &= H= 2 U@ ) *# 4 @# Y@ 7- *# | X@ [ ( 2 6- [ } { ,# 6 6- b ,# 6 a b Y@ 6 d d 0 b 3* !# 6 s> 3* a k L= 0 i L= ]# [& ~# ~# ~# K/ c h k q K= s> m o :# m p m m Z$ 4* % ^# % G F= /# 1; w G F z m /U a7 n! z C a7 K T^ z z 1& c- KW AR .@.8* O@ T^ V M .@.n! d{ c- Z..:#.b-.:#.o*.*I *I qF A: p*.I#.I#.BX c-.(=.YX ^P #N ^P RT )Q ^P Z .@-.G&.pF @-.d-.e-.-X sZ AS hT CX {&.E` 4..4..hT E` 4..E` f-..` E` 9&.4Z $@.pY Y$.!*.qY ...^&.B .g-.#-.$ .S%.$ .0 .aX [=.h-.i-.1+.=@.1%.*@.%Z xZ ^} E .j-.{$.o#.+#.%+.p#.k-.o#.* .-@.p#.X*.E..-@.eX F$.l-.6+.L` _&.h$.L` }T HX HX H$.Q#.Q#.X%.X%.}T 5%.[W [W > .5%.gX 9+.9+.AZ I+.I+.AZ +Y 9+.AZ 6%.H@.! .qT #Y cZ [U `T sU ~S qT {S [U cZ 1O $Y MR 2U jS hN yO XP sK jS XP rK 'G OJ yP :K rC }L }L fR :K OJ -w .F jJ Px q GI RG -w q ;w q Bl x `w q Cl qo .g Vr >0 d3 ch kf j9 Vr j9 j9 U3 n u^ j9 T3 u^ u^ v[ v[ 45 u^ 6< 6< 6< u^ +[ :_ u^ b^ 0] !{ 1> ^' d; ^' ^' ^' 9) ^' ^' ^' ^' ^' 9) t* q- F{ f; +- q- t* +- t* #+ .; g% (' =+ 7= =+ (' &+ ;+ ;+ &+ P# -+ B& A& g; m-.n-.A& d@.L+.y* L+.L+.j&.L+.o-.3#.L+.U# j&.|*.N+.k&.j&.a%.N+.,` k&.)-.k&.k&.k&.)-.N@.m$.4#.p-.9=.&%.&%.O+.O+.n$.0=.OX n$.n$.n$.n$.OX OX q-.OX ] .e%.P+.r-.s-.f+.l` P+.Z#.P+.P+.Z#.Z#.P+.P+.e..e..:&.-%.+=.hZ >%.e..e..e..e..>%.u#.u#./ .>%.>%./ .@=./ .e../ .f..^` t-.j*.u-.4-.v-.w-.x-.;=.|-.9*.y-. *.z-.A-.k%.B-.C-.Va D-.E-.Yb ob S=.ob pc pc +c yd nc nc nc nc nc =d rc =d =d -d jZ #H yh -d jZ -d e*.#H jZ yh $c $c #H #H $c [R ~=.-d jZ yh ub rc -d nc =d *e ve $e F-.:q fE kh kY _Z _Z _%._Z .w` Wg *l +R !n w` 8w aw tv |j Nh QD ne Ih cr 1N ZM 8L G-.Ma H-.6$ m$ m@ d# x@ &. .= E@ z$ T |; ` K@ H C, H J P@ Q@ x N z M w ", +"J$ #S + R@ L$ + jP 0' J$ L$ 1) = # L$ . + > # # L$ # ]& $ ]& + [* L$ + . ; . ' S$ $ . $= + > $ . k) > U$ & . . ; ; ; . ; o! & 2 ) N$ - S$ |* & ) ] Q$ ; & ' { ; & H= R$ ; ~ 4 | [ & [ & N$ | ~ N$ | 7- %= X@ | [ | $# 2 ( ## $# 6 $# 2] { R$ $# V~ /& { / B; 1 ~ 5 7 { ># 6 &# { 7 7 0 ~# 3* ,# 6! 3* ~# d ~# c{ L= e n h n Q{ L= g c h C; {# n h t' n `$ p |& q ^# `$ /# /# D s> 4* ,> /# G {& 4* w B G z G .[W JX X%.gX I+.f` X%.f` f` AZ BZ JX 9+.6%.7Y 7Y lQ 7%.[U ~V ~S [U ~V S#.2E sT }U 2O {S NR {S P` 3O NN 5P iJ :K 5P TQ 'G @P yU :K }L 'G :K OJ :K QG OJ #M F jJ 'G `w !G RG Vi RG RG Bl q Cl q qo q so 35 Cl so fd kf T3 to to d3 d3 Kn U3 j9 i9 kf `e 6< u^ gd U3 v[ 45 6< /! 6< R( /! D7 a^ <_ 2{ a^ ^' 9) ^' 9) F{ ^' ^' 9) 9) 9) f; t* f; +- f; f; t* t* s& q- q- 0) s& $- g% d% f% -+ &+ ;+ &+ )+ &+ -+ -+ Y' -+ -+ T-.U-.V-.U# V-.$; j&.j&.j&.j&.j&.y* A*.^+ j&.M$.N+.M$.A*.M$.k&.k&.)-.k&.1*.)-.m$.:$._$.8=.8=._$.W-.8=.O+.n$.n$.OX D=.OX OX OX n$.O+.n$.Q&.|$.Q&.n&.h+.!..F=.e%.P+.f+.!..P+.Z#.Z#.S&.!..P+.-%.-%.5#.-%.X-.-%.:&.e..>%.u#.e..hZ u#.>%.6#./ .6#.@=.e..6#.>%./ .MZ r0 Y-.Z-.`-. ;..;.+;.@;.#;.xJ $;.%;.&;.*;.=;.P=.-;.;;.>;.,;.Vb Ff [f ,d ,d ve =e ve nb nc mc mc wd =d =d -d =d +l -d -d yh #H -d +l #H +l +l yh $c #H T$.#H #H #H yh jZ $c #H ub =d rc =d =d nc nc Og wc li :q `` dL .w` w` w` dL kh `` ';.hi WY fE WY x` ^y |j ]n 3q XM );.4f )g De * . = > + Q$ = - k) $ & U@ Q$ $ # $ ; . - & N$ U@ ; H= Q$ > ] > > > $ ] ! & Q$ ] ; ] ; ~ ) Z! R$ ; S$ ; ^ U@ ; | & [ X@ ~ U@ ~ { ) 4 [ /& 6 [ W@ { | { Y@ { ~ { ( [ 3* d &# N' Y> } ,# k *# ~;.5 i } {;.q> 3* 0 a ~# a D, c n K/ o h {# >> {# 9 c s> n Q{ _# s> c{ Y$ L= 1; q p u s> t y..,> $] F % w y ,> % F= w G a7 C` F= B I w N G 4* x I F= z I V 5* JW /U HV ;O n! c- P@ $T 0S 3# M x .5 .oY aV *I Q :#.-*.SO iU iU ];.3d 3d BX .V +Z )Q )Q Z ._M ^P RT RT G&.RT bV _M ^;.RT AS $N $N 0X /;.CX a&.hT AS a&.AS .` 4..a&.4..K#.7 .pY #@.iT #@.<+.B .<+.F` c&.$ .6Z N#..#.0 .(;._;..#.H` D$.#..#..*` L&.++.& .*` {$..%.w=.%+.* .xZ %+.E..:;.E..+#.d .E..6+.+#.p#.+#.6+.1#.]$.9..}T HX IX }T =V > .}T L` L` 5%.G+.<;.gX JX AZ f` gX qW JX [;.AZ I+.9+.I+.gX @Y 8Y #Y };.[U [U [U rU qT 0 i9 S3 gd U3 T3 T3 T3 v[ v[ 6< =^ u^ 6< v[ u^ u^ 6< u^ o] 06 9) :_ X/ ^' 9) ^' d; ^' F{ ^' ^' ^' 9) 9) 9) q- q- c% f; t* t* t* f; t* t* .; #+ O# %- u& e; ;+ =+ ;+ -+ ;+ -+ -+ -+ &+ &+ -+ n-.<*.&+ A*.L+.1;.A*.L+.A*.U# L+.j&.B*.j&.L+.a%._$._$.B*.'-.b%.k&.)-.N+.k&.k&.m$.:$.2;.8=.C=.m$.k&.8=.&%.n$.k` n$.n$.Q&.O+.n$.Q&.n$.OX n$.|$.OX [$.n&.P+.)...=.!-.f+.h+.!..Z#.-%.Z#.S&.+=.-%.Z#.5#.5#.Z#.+=.:&.e..e..u#.>%.3;.>%.e..@=.6#.@=.u#.3;.6#.4;.v#.i+.lX 5;.6;.7;.8;.9;.0;.a;.b;.c;.d;.N=.G*.G*.e;.f;.*;. *.g;.Wb db Vb h;.i;.E-.ob =e pc te {l nc nc rc nc nc =d nc rc -d =d -d -d #H -d -d +l jZ #H $c zh #H -d ~=.#H +l #H ub -d =d =d nc *e we nc _f fe ue tS (j fE dL .kh fE WY :q w` _j X .ru (j Wg dk C&.j;.PD dw /n k;.KL (j fI MT JU #B xe 0H l;.]; & s@ v@ -. F@ 5# +. .= 2# 2# U E$ H +% N@ P@ Q@ Q@ %> w ^# D D ", +"`Y I/ I/ $ I/ $ L$ R@ + 0' L$ }, ]& L$ ]& .( # ]& # T@ o! ;b > + $ ' !, ]& $ V@ ' & Q$ ]& !, . . - %= ' & # & N$ > . !, - > A; $ ! & & M$ ; R$ o! > U$ & ; ^ ; & . X@ 2 | | S$ . ^ ( ;# ~ S$ ' ; | 2 P$ ~ | 4 / } ~ ) N$ ~ 2 ~ < d 1 1 ( ) N$ [ 2 ) 4 ( ## / 5 $# 0 ,# 2 ,# tA [ &# 3* b 0 ~ ,# W$ 0 tA d {# |& ~# 0 {# n !# n 0 n a K= h p c m ^# m s> ;= n Y$ K/ `$ p ^# 1; q Z$ D p F= :# t 1; {& m t w m z {& M= F= a7 /U z W) z w .Q#.Q#.PV f` gX qW JX 9+.gX f` f` AZ &+.AZ f` aZ #Y 0 x so .g .g S3 kf .g T3 j9 __ __ d3 j9 T4 6< 6< tg v[ u^ 6< 6< 6< 6< 6< o] B_ +{ :_ a^ b^ 1> d; d; ^' ^' ^' d; d; ^' !{ (! d; t* f; d% q- t* t* t* t* q- f% /' u& e; g% d% ;+ ;+ ;+ &+ &+ -+ &+ P# ;+ -+ Y' -+ T-.-+ x;.,-.y;.1;.U# j&.U# U# L+.L+.A*.A*.a%.,` 5T b+.z;.)-.)-.N+._$.)-.s#.W-.p-.W-.C=.C=.4#.m$.8=.l&.OX OX OX n$.D=.n$.n$.OX Q&.OX n$.Q&.Q&.Y#.p$.h+.~-.a=.f+.-%.P+.-%.-%.P+.-%.Z#.!..-%.A;.:&.hZ +=.+=.:&.u#.e..e..>%.>%.u#.u#.u#.@=.u#.i+.>%.3;.R* i+.e..o&.B;.C;.D;.E;.F;.G;.H;.I;.J;.K;.H=.xJ j=.D;.j=. *.L;.M;.N;.:g Vb Vb E-.Ub ob [f vd pc vd we ,e {d nc =d rc rc =d =d rc =d =d #H rc #H -d -d -d ub #H =d -d #H -d wh O;.=d =d nc =d =d Q$ ; - & Q$ > > U$ - U@ ; ' & ; | o! . > N$ Q$ ^ & Q$ [* ; & =' ^ . {c ] ~ & } ~ > | [ | ; | 1 ( X@ Z! 2 8- ) ~ 2 { Z! $# d : I= 7- 4 d ( N$ < 1 a a 1 ,# : < 5 6 [ Y> d ,# 0 b 6 ,# !# a L= 7 ~# !# i L= h a e L= n r ~# n n ^# k ~# o 1; o h k q Y$ s> r `$ m t m {& q :# % z b' 2, G :# :# F z F= z )> w a7 n! I x I O@ T^ .@.F= M c- #= H$ .@.O@ V Z V 3# .@.c- c- d{ SO y .i5 A: A: oY 0S U;.Q yS )Q y+.,*.(U +Z yS #N Z .^P )Q )Q _=.+Z 9$.1@.1@.<#.H&.9X V;.6B W;.<#.X;..` hT 4..E` E` 4..E` 9&.+` 4Z l#.` .f-.z@.4Z S%.Y$.s*.z@.Y;.F` M-.Z;.0 .K&.I&.I&.A@._;.@..1%.s;.L&.*` 6@.d .xZ E$.&-.o#.`;. >.E..+#.%+.G$.]$.]$..>.;V -V oU S-.y%.W%./$.l-.+>.H$.e .L` }T HX }T --.G .5%.pT G .[W f` @>.qW f` I+.9+.gX f` AZ AZ g .gX AZ &+.[U #>.BZ ) .[U qT ._K PN %Y TQ ]S iJ jS 5O yU XP :K OJ }L 'G 'G OJ 'G :K :K #P qC 3I Ey ;w |Q Bl 3I Px Bl Ey 3I qo `f q qo -w x >0 ch TG Jn i9 .g j9 kf .g kf S3 45 6< 45 d3 =^ x/ u^ u^ 45 v[ =^ v[ 6< 6< 6< +[ :_ <] +{ +[ a^ w^ d; d; F{ ^' 9) 9) ^' 9) d; z' 9) s& q- $+ 1> t* q- t* q- t* H# u& .; .; ;+ x& =+ ;+ -+ ;+ -+ $- g% P# %>.-+ !+ >+ &>.-+ *>.U# >-.1;.A*.A*.A*.B*.j&.j&.A*.=>.=>.[*.k&._$.[*.'-.k&._$._$.k&._$._$._$.b%.:$.->.8=.A%.m$.&%.n$.=#.n$.n$.D=.n$.n$.n$.n$.Y#.OX Q&.n$.OX p$.)..h+.F=.;>.e%.P+.P+.S&.P+.-%.Z#.>>.P+.-%.+=.hZ 5#.-%.+=.o&.e..>%.u#.u#.e..u#.|~ @=.6#.NL >%.u#.e..MZ ]` ,>.'>.Y&.G;.)>.!>.~>.{>.]>.^>.$b />.(>.G*._>.*;.*;.v&.Rg :>.<>.zf |b Vb Vb `b Yb gc Ad ve [f {l yd nc =d nc nc =d nc =d =d =d =d -d +l jZ -d -d #H jZ =d =d -d ub %e xe &e nc nc =d nc mc ue ue kc kc Tl :j :q dL dL +R _Z _Z %W UY UY kh +R !n Wg Wg WY GT ou [>.k*.J=.}>.ji =t .e :..|>.[X LB 1>.2>.3>.7@ ^* ^. A@ )& F@ X J P Y ` L@ A P@ b- 8* M C z {& A ~& z ", +"R@ K$ L$ 0' ]& ]& + ]& . J$ ]& @ ]& L$ . ]& Q$ ]& # ]& = . # = # ]& . . V@ $= > # - |* Q$ U@ - M$ L$ > - $ . E! = V@ U@ & ; | U$ - $ ' S$ . > ; ] U@ S$ . . H= ^ ] & { U$ (& R$ | Q$ | | ) P$ X@ ~ ; 2 { 2 [ { 2 2 { / ~ 8- } 5 Y> +# 1 2 1 } Y@ ## 2 } 5 V$ b ,# 6 a < 6 3* 5 ,# 2* 2d d ## 8x ,# q> b ,# ,# ~# ~# s> h Y> c c a r 0 ,# o n 0 ,# ~# n^ ,> Z$ c{ Y$ u s> _# q /# 4* Y$ q Y$ :# 2; w B /# @= w 4* {& w G {& z F= /U z F= I M w Z 1& I O@ A A O@ T^ c- c- c- V 5 .4>. V =X z .i5 B..>z ` hU oY *I (U *I #N )Q qF yS I#.iU +-..Z +Z @-.+Z RT q=.Z .RT 1@.9X hT bV G&.0&.UO 7` 3@.hT .` $N CX 5>.9&..` 0$.6>.E` ]&.a$.pY #@.^&. ..7>.5Z #@.B .8>.c$.!$.9>.0 ..#.0>.B+.P-.0>.|+.U%.a>.#..a .*` %+..%.&-.C@.C@.]$.`;.* .E..%+.E..-@.E..1=..>.G$.b>.R-.F .6+.N` 6+.+>.M&.7+.L` HX 7+.oT /$.Q#.5%.c>./$.JX f` JX qW JX gX f` AZ AZ --.nV oV h .HG 9+.' .cZ [U ~V qT [U cZ ~S UP UP {S $Y [U 8Y [O xU sT DI PN VK TQ 5P 5P _K sK }L :K 'G QG :K 8M :K 'G :K qC 3I q jJ wD qo 3E jJ qo RG q qo qo Vi q q Cl Cl .g Vr Cl T3 .g Vr T3 kf n S3 T3 T3 T3 3| __ __ u^ 6< v[ 34 6< 6< =^ 34 u^ +[ 44 <] 2{ /! +[ a^ d; d; d; d; ^' 1> ^' %~ 9) ^' ^' ^' s& t* f; q- c% t* ^' t* t* .; u& #+ R# &+ &+ -+ &+ P# P# P# P# -+ -+ -+ U-.Y' d>.e>.Y' z%.U# z%.j&.j&.A*.j&.A*.j&.j&.j&.j&.B*._$.)-.'-.|*.->.k&.K@.k&.N+._$.k&.f>.2;.2;.g>.C=.m$.h>.OX n$.OX OX OX Q&.[&.Q&.OX .=.Q&.O+.OX [&.a=.s-.h+.d..s-.i>.P+.!..l` Z#.-%.Z#.+=.-%.+=.-%.hZ hZ X-.j>.o&.hZ hZ u#.u#.e..hZ >%.3;.>%.,@ ,@ >%.6#./ .>%.k>.l>.m>.n>.o>.p>.q>.r>.s>.t>.u>.v>.w>.j=._>.j=.j=.*;.i=.x>.Sa pb Vb Vb Vb Ub gc gc [f Ad ve {l {l nc nc =d =d nc nc nc =d -d =d -d -d -d -d =d nc =d =d =d rc =d &e y>.y>.xe nc lc *e .|j [x zJ }x A>.jk eL >o B>._@.Is /%.C>.D>.a@ 0& F, -. +. >. C$ E@ V J@ }; ` J I S w I N 7* x 2; G F= ", +"+ # I/ 0' 5_ 1) + J$ ]& + + ]& R@ R@ ]& k) + [* BN R@ $ $ 0' # . ]& L$ ]& L$ > + + ]& . . # $ Q$ [* > $ = S$ = > - # $= ' !, . ; %= & & ; $ Q$ Q$ & . T@ S$ ; . | | ] . Z! ~ P$ N$ ~ ) | 5 | .# ; 2 X@ Z! ) | | 2 { ## ~ [ } /& d ( $# 6 [ 2 6 4 V~ 1 ( /& Y> 7 2* 5 1 9 Y> 6 $# d d } ## ,# 9 0 ~# 7 d 2* b k ~# ~# ]# d a n c n ~# i e ,> h p ~# v q ;) ~# 4* p Y$ `$ t V| [# `$ `$ p t w F= G b' #| t `$ 2; '&.B G E '&.1& 1& z F= z n! E JW c- G KW T^ O@ Q@ T^ 8* V c- V 0S .@..@.>z Z..aV z .b-.y .oY B$.I#.p*.aV E>.^P *I F>.iU RT zS RT RT 9$.RT RT #N ^P Z .H&.sZ H&.!&.w@.CX E` 0&.2@.$N AS .` E` 9&.,$.G>.9&.E` E` H>.4Z #@.|Y <+.z+.z@. ..~*.$ .$ .0 ..#.$ .v%.<+.pO I>.W*.D$.C+.6@.#..*` 6@.E .++.E$.j-.J>.X*.K>.d .L>.E..* .G$.E..D@.M>.N>.G$.F$.%+.b>.}T 1#.+>.H$.HX HX IX G..IX > .IX Q#.> .Q#.O>.f` X%.f` X%.AZ 9+.AZ f` JX nV AY +Y g .AY )V [U , .7Y BZ ) .UP qT qT [U ~V .ON ON XP 2U TQ _K TQ iN 5P iN /S ,J 'G :K }L 'G QG :K 3I 3I Ey ;w jJ 3v Bl x q qo 3I Bl qo qo qo n8 Bl q 8e Vr M9 i9 `f ch d3 ch i9 T3 T3 T3 45 j9 d3 =^ 34 6< 34 6< u^ u^ 6< =^ 6< u^ W/ w^ ^' _^ o] _^ ^' ^' d; ^' ^' 1> d; ^' ^' 1> 9) 9) d; q- t* t* d% c% q- s& $+ +- @- +- R# ;+ -+ &+ B& -+ -+ -+ ;+ 4= &+ &+ P# Q>.-+ 9= &+ 6=.U# z%.T# j&.j&.A*.B*.B*.j&.B*.B*.B*._$._$.'-.B*.'-._$.k&.->.k&.k&.)-.)-.)-.R>.)-.S>.T>.8=.n$.OX n$.n$.k` Q&.OX Q&.Q&.Q&.OX Q&.[&.Q&.n&.R&.C*.f+.;>.;>.Z#.-%.P+.-%.+=.+=.+=.Z#.Z#.U>.:&.u#.u#.U>.j>.>%.>%.{; >%.V>.e..3;.@=.3;.R* 9$ >t <&.n .v#.W>.X>.Y>.Z>.`>.q>. ,.q>..,.8;.+,.@,.4-.*;.e;.*;._>.#,.$,.%,.Sa fc |b Vb db Vb i;.[f [f ob +c Ad ve we mc nc nc nc nc rc =d =d -d =d -d -d =d rc ub =d =d =d =d nc nc nc &e xe nc mc :f ,.,,.',.h$ 3. w$ ). ). A@ E@ 2# P Y ` E$ K@ Q@ M A H$ +% I K G w B ", +"+ + 5_ J$ ;b + + ]& L$ # % J$ L$ R@ ]& ]& L$ + k) # 0' . . $ M$ # = ]& + + k) $ - . $= $= > - o! > U@ k) Q$ U@ & > & $ & o! $ # N$ & ; %= N$ > N$ > . ; - & ' N$ & H= 4 ) N$ 2 { ; N$ %= Z@ I= X@ N$ %= `@ [ X@ 4 / 2 ) } ( { N$ ) ~ 2 ## $# ## | 2 3* $# X@ 2 { 7 Y> V~ 7 0 /& : 1 ## ) 6 5 5 V$ 0 a ~# ~# k 6 6 ,# 6! 0 ~# s> 0- 0 n e {# t' n ~# L= b' 1; L= Y$ `$ 4* _# V| `$ n Y$ /# ^# 4* #] w F= % G F= {& w ),.:# Y$ G z w G ^# B a7 a7 n! w a7 z Z 8* T^ a7 =X !,.o^ O@ T^ |# 8* o^ V I-.x .t%.~,..@.SO Q y .|# aV I#.I#.iU B$.YX {,.j#.(U YX )Q #N )Q ],.`I ^P )Q RT )Q +Z q*._M +@.+@.bV AS J#.3@.1@.+@.CX AS CX 9&.E` :=.E` E` ^,.4..]&.4Z 3../,.s*.N-.~W z+.N#.z@.0 .M#.(,.T%.O-.mW _;.}#.@..Q-.1%.*` #..*` *` d&.L&.E$.E$.o#.w=.* ._,.* .p#.p#.+#.+#.- .RE F$.@#.1=.c` HX ^$.i$.J` RW r#.HX H$.7+.X%.M&.IX > .G+.HX L` qW AZ 9+.AZ :,.9+.AZ x=.-Z <,.9+.:,.[,.JR 7Y lQ +Y +Y pV ~V [U ~S ~V cZ VP $Y {S VP DY AO !N xU ON hN iJ SN fR TQ _K }L :K OJ 'G 'G 'G :K :K 'G PR 'G rC 3I 3I Bl 3I F q qo Bl qo qo },.Sd Vi q ch so Sx .g |,.Rc T3 T3 >0 T3 T3 T3 u^ d3 A_ 45 __ `e 6< 6< =^ u^ =^ 6< 34 v[ <_ /! X/ X/ v^ a^ 1> d; ^' ^' 9) .- d; F{ ^' b% ^' +- d; t* t* q- t* N# t* t* #- s& (! c% g; g% -+ O# x& &+ &+ &+ 4= u* P# h% P# >+ 1,.e>.<*.2,.L+.j&.3,.A=.U# L+.B*.A*.^+ j&.j&.j&.'-.k&.,` 4,.j&._$.k&.k&._$.k&.)-.k&.)-.b%.S>.8=.g>.S>.D=.5,.Q&.n$.n$.5,.n$.Q&.Q&.Q&./` .=.OX Q&.6,.R&.7,.-%.S&.;>.`%.Z#.+=.Z#.+=.-%.+=.Z#.Z#.-%.+=.o&.hZ -%.:&.:&.u#.>%.e..u#.u#.V>.u#.>%.u#.<&.8,.>%.6#.>%.9,.0,.a,.~>.o>.p>.b,.c,.d,.)>.e,.f,.N=.>=.j=.&;.=;..K xJ g,.h,.i,.pb |b Vb Vb E-.Yb [f ob Ad pc {=.Zs {l wd =d =d &e oc =d rc =d =d -d -d =d =d =d zh -d =d nc =d xe nc nc + <{ G= . $ 5_ Q$ + . + . - V@ # Gc $ %= & $ Q$ - [* # > U@ ; . + . . - ; ' . ^& + Q$ N$ U@ & P$ > =' & ~ ! N$ U@ ~ & X@ ( 2 H= %= Q$ ; Z! +# 2 8- ~ | X@ ( ; X@ X@ { [ 2 | $# $# $# ## <& } 7- *# Z! < } I= d V$ 6 4 } a a d 6- d 7 ,# 4 [{ e 9 7 W$ ,# N' b ,# e 0 0 c c h c c 0 0- `$ ,> m ,> p ,> n p -) Y$ `$ n^ #| % /# m q s> :# /# 2; G ]# 2; {& F= F= C` F= {& B z F= 1& z P%.z $T a7 1& I .@.M c- O@ H$ =X c- =X |# 5 .y ..@.m,.c- SO iU :#.}Y >*.iU SO AX B$.iU BX .Z qF yS .Z 9$.)Q G&.RT RT ^P ^P )Q )Q ^;.Z .$N H&.EN hT -X D` '*.n,.CX E` CX 4...` 9&.3Z a&.4..9&.4Z ` .z+.`X s*.)$.F` !*.z+.0 .z@.N#.o,.!$.7>..#.|+.n#..#.1+.2%.s;.U%.++.++..%.U2 %.&-.E..p#.+#. >.x*.p,.-@.E..+#.-@.]$.S-.F .3%.c` > .M&.G..c` G..c>.G .L` > .H$./$.> .X%.5%.Q#.IX nV gX f` AZ AZ 8%.AZ q,.gX k$.&+.9+.JX lQ g .UP r,.7Y pV ~V ~V YO [U ~V ~S s,.sU qT +P TQ VK ,Z dR +U FM DI rK XP _K 'G OJ 'G QG qC :K 'G QG }L 'G |Q :K az Bl q qo qo Bl Ye Bl qo qo `f o8 x q `f Cl },..g M9 i9 .g S3 i9 .g d3 S3 45 45 45 x/ U3 U3 u^ v[ 6< 6< =^ 6< v[ u^ v[ /! /! -^ @+ /! ^' ^' 9) ^' ^' F{ ^' d; ^' t* d; 1> q- t* t* t* +- t* t* b% s& t* +- #+ s& $- x& @- B& ;+ &+ &+ ;+ -+ ;+ -+ -+ -+ >+ &+ m-.P# z%.A*.z%.t,.A*.L+.z%.j&.A*.L+.B*.j&.A*.9=.k&.u,.v,.->.N+.)-.A%.->.)-._$.S>.S>.C=.S>.g>.)-.8=.Q&.n$.n$.OX OX OX n$.5,.n$.Q&.Q&.Q&.OX Y#.F=.w,.-%.Z#.r-.6,.!..Z#.+=.Z#.Z#.-%.-%.Z#.x,.Z#.+=.>%.Z#.x,.X-.u#./ .4;.3;.@=.4;.@=.>%.3;.@=.>%.>%.3;.f..y,.z,.A,.B,.C,.D,.E,.F,.G,.H,.I,.*;.d;.`&.v&.P=.-;.P=.J,.t&.K,.7U L,.:g |b Vb Vb {g Ub ob gc gc Ad vd +c wd nc nc =d nc rc nc =d nc -d -d =d =d -d =d -d =d nc nc nc &e nc mc *e _f _f fe vd ^f Yb zf M,.N,.`` _%.UY C#.UY UY KT WM DQ y` UY 9T 1k dL GT [x nu .P,.aV *I aV &{ iU oY L SO :#.p*.oY +Z yS oY Q,.G&.)Q ^P )Q RT RT RT RT RT R,.S,.sZ 0X bV sZ hT 0&.w@.0&..` E` CX CX .` 4..E` :=..` 4..a&.4Z M-.f-.<=.#@.8 .Y$.T,.N#.$ .!$.#-.c$.U,.v*.K&.V*.A@.w%.++.U%.s;.*@.++.6@.d .6@. %..%. %.o#.-@.C@.X*.+#.E..* .E..G$.p#.RE V,.mV W,.G .<;.I$.F$.IX IX IX 7+.L` c>.X,.Q#.5%.X%.G .qW JX X%.8@.aN JJ nV x=.0@.f` f` AY JX f .+Y YO pV 1T [U #Y 1T oC ~V cZ ~S +P {S VP yO EY qK ,Z VK PN hN DI rK iN _K 5O }L QG ,G :K qC :K :K OJ 'G 3I RG Zf Bl -w q Bl qo Bl Bl qo Vi Rc Bl 3I q .g `f Cl Vr 8e h9 Cl S3 T3 Vr d3 d3 T3 6< =^ u^ u^ U3 v[ u^ 6< =^ 6< u^ V5 6< 6< 6< :_ _^ d; o] -^ .- F{ 9) ^' ^' d; ^' ^' 1> 1> 1> 1> q- s& c% b% s& |> s& d; s& c% e; c% d% O# R# -+ &+ =+ %>.P# P# h% -+ -+ -+ P# -+ B& <*.*>.j&.j&.t,.A*.A*.j&.A*.v,.j&.B*.B*.v,.B*.A%.k&.A*.Y,.k&.->.)-.->.k&.->.)-.g>.m$.)-.Z,.T>.W-.D=.0=.n$.OX Q&.m&.Q&.OX n$.OX m&.[&.[&.Q&.[&.p$.Z%.-%.f+.`,.n&.-%.P+.-%.-%.P+.Z#.-%.-%.-%.+=.e..-%.+=.+=.X-.>%.>%.>%.@=.P* 9$ 3;.u#.|~ / .>%.3;.%p '.N=.F;..'.+'.@'.#'.$'.%'.&'.Dt *'.=;.`&. *.G*.>=.='.$l -'.;'.qh i,.b*.|b db Vb E-.ye [f Bf Ub gc $e {=.nc ue :f nc nc nc nc =d =d =d =d =d nc =d =d =d =d =d nc '.Wg w` kY UY %W y` DQ WM KT KT JT %W C#.kh =L $W To ,'.6r |q bw ]n ou oi eE @O k,.|i !M aI YN ''.=* k> '& l> E@ $% }; H@ D$ d- E$ S H 7* x P@ I M I F= N D 1; ", +"I/ I/ # % *) J$ 5_ ]& X! 0' # 1) ]& $ R@ + # k) = . + L$ # # $ = - . . > > $ . > # T@ $= S$ # = ]& . & Q$ ; & = $ * & . ]& . & = & > N$ N$ $= . o! & - Q$ P$ | ; =' N$ ^& > | ; ; N$ ; | Q$ ; U$ ~ X@ U@ & Z! ) ] 2 ( I= 1 ~ ~ ! | /& { <& [ 7 4 $# ) { ( 4 { 2 ( ,# 2d } 3* 6 6 a U- ,# 8 } e ~# 6! d e $# c e e 0- e h j c 0 L= c{ n h ~# r n h 0- ># Y$ 4* % ,> r Y$ `$ 1; /# % `$ :# b' [# `$ /# :# $S F= `$ z..G z z m $S z F= G 1& C G 1& G 1& c- Z 8* V O@ Z o^ z ..@.m;.(#.5 . V H#.0S H#.aV Z..o*.B$.*I p*.aV oY iU y+.yS oY *I .Z )Q )Q RT ^P RT +Z _M G&.#N R%.bV 6B 3@.sZ $N 0&.hT {&.n,..` E` E` E` 4..E` y@.J#.a&.9&.9&.z+.a$.L-.<=....z@.)'.[#.!$.T%.F` !'.7>.Y;.A@.sY A@.[=.~'.#..#..%-.*` L&.%+.{'.E$.d&.d&.X*.E..p#.* .- .%+.E..+#.p#.-@.p#.+>.-@.-@.NV IX G..F@.HX > .> .> .M&.G+./$.J$.G+.G .5%.f` f` gX I+.]'.;H bJ ;Z O&.[;.k$.f .AZ h .6Y 1T !V lQ 1T pV qT [U cZ qT ~S +P +P sU zO .U qK {S +P _K hN M rK QG qK rK :K :K 'G :K qC rK 'G :K :K NS Ey az q q QG az qo Vi Bl q q Cl `f q qo 8e fd kt kt `f Ze 8e .g T3 kf >0 d3 d3 __ R3 Q] ^'.45 u^ u^ Q] 34 u^ =^ 45 !8 6< =^ )/ _^ !{ w^ X/ d; d; 1> 1> ^' 9) 9) ^' d; d; d; d; ^' s& +- +- b% t* s& t* s& c% u& u& .; .; 4= &+ P# &+ -+ h% &+ &+ P# %>.P# /'.('.P# _'.*>.j&.B*.t,.x;.A*.j&.A*.L+.L+.v,.A*.B*.A*.=>.)-.Y,.B*.->.k&.k&.k&.)-.:'.->.W-.T>.f>.T>.C=.m$.T>.5,.n$.OX 5,.0=.5,.OX Q&.<'.<'.Q&.[&.j@.OX Q&.r-.f+.E=.R&.;>.['.!..+=.-%.+=.+=.+=.-%.}'.+=.:&.u#.3;.|'.X-.o&.3;.6#.6#.1'.4;.2'.3'.6#.6#.3;.6#.4'.5'.6'.7'.o>.8'.9'..,.0'.a'.b'.0;.c'.2&.L;.*;.d'.e'._>.f'.-;.g'.h,.4b fc pb Vb Vb Vb `b `b [f ob [f vd $e ve ve $e = > > $ # V@ - N$ |* $ > S$ 0' A; - $ $ - ; $ > & ; > > ] > . ; > . & & N$ ; U@ & ; ; S$ S$ > > $ $ k) S$ Q$ | & . 05 S$ Q$ X@ ] S$ N$ ] > N$ 2 < I= 2 ~ | N$ 9 2 4 k $# Y> 1 6 ( d D, J] d } -# Y@ ,# 7 6 4 q> 0 ># d ( ~# 5 q> a 7 ,# ,# 0 0 K/ a !# a } ;= o V| }& ;= p n ,> X$ 2, 0 Y$ ^# q 2, Z$ t Z$ q m t D m t D Z$ 1; a7 b' F= {& D F {& {& 4* z '&.F= ~& I z AR n! 2; Z 1& n! z T^ O@ M Q@ =X Z V 4>. V x .t%.(#. V i5 B..(#.v@.A: (U *I oY o'.SO p'.(=.yS [%.)Q >$.+Z RT )Q +Z G&.)Q +Z H&.bV EN '*.R%.G&.w@.AS 2@.{&.q'.CX .` .` .` E` E` ]&.a&.4Z .` pY <=.4Z $ .#@.Y$.)'.9D $ .S%.T,.r'.s'.t'.8>.u'.v'.M#.w'.x'.a .#..%-.++.#..x'._,. %.x'.-@.y'.p#.* .]$.z'.E..* .]$.+#.+#.+#.F$.e&.F$.mV P#..>.I$./$.X,.--.G+.G .IX X,.5%.L` A'.G .5%.AZ Q#.qW Ix YL nK f` ,@.9+.6%.1T 9+.rU +Y f .!V ~S QQ UP @Y qT ^' B_ w^ d; ^' 1> ^' ^' 1> 1> d; d; d; d; t* s& s& q- s& K# b% t* b% t* u& M# $+ -+ -+ -+ -+ P# -+ -+ B& P# h% P# B'.Q>.P# C'.-+ Q>.j&.z%.Q>.t,.A*.B*.A*.A*.B*.j&.j&.A*.u,.->.->.B*.k&.)-.V#.->.)-.->.)-.:'.2;.N@.p-.8=.T>.->.5,.n$.Q&.[&.D=.D=.[&.[&.[&.[&.Y#.D'.D'.E'.[&.n&.6,.Z#.r-.`,.C*.-%.+=.Z#.Z#.Z#.-%.-%.+=.Z#.Z#.o&.:&.F'.G'.o&.>%.6#.3;.@=.u#.6#.3;.>%.>%.|~ @=.H'.I'.J'.K'.p>.E,.L'.M'.N'.O'.P'.Q'.R'.H*. *.e;.8;.S'.D;.`&.=;.T'.U'.Ga fc pb =. 3^ 2# ` P J D$ H J D$ E$ 8* +% S 7* M Q@ w G B ", +"BN 0' = + # = L$ # K$ + J$ R@ }, $ = ]& + ]& L$ + [* # ]& > V@ . k) Q$ $ ]& $= + = # . |* & S$ $ . $ V@ = . . |* $= S$ - * . $ ] ; $ ] H= Z, $ . Q$ 2) . k) ; > ; S$ Z! ] U$ 5- . ~ 8- | ; [ Z! 2 ~ N$ ; ^& ; S$ { { [ $# ~ & Q$ ) ~ I= ~ } 4 2 6- `'.d | 7 < 2 { 4 } &# J] &# 9 ( 6- V~ D, 6 6 b b e { 6 3* } ># a L= c g ]# c W$ 0- p `! ,# Y$ c c n^ ~# n L= % ^# ;= m Z$ r y ^# /# h ^# {& 4* 2, #] :# m b' @= 4* :# t E F= a7 '&.F= ).I O@ a7 A T^ AR $T n! T^ $T n! HV Z o^ T^ V .@.c- 5 . Z .).(#.SO -*.:#.(U A: oY *I (U Q k#.^P +).(U XX 3d )Q )Q )Q +Z RT +Z )Q )Q @-.+Z sZ 1@.H&.R%.@).#).3@.$).%)..` 4..E` ^,.E` .` 3Z 4..9&.]&.a&.` .<=.4Z !*.#@.B ....&).b&.7>.!$.$ .U,.Y;..#.=@.#-.*).=).w*.1%.L&.++.a .1%.&-.-).;).{$.p#.+#.&-.X*.]$.p#.* .p#.E..E..p#.6+.-@.F$.-@.;@.IX ]$.7+.H$.c>.5%.M&.G .X,.5%.L` H$.^$.G+.gX G .G .,@.}T aJ x=.9+.x=.AY (Q ;Z qW >).@Y #Y 1> F{ v^ ^' d; ^' d; d; d; d; 1> d; s& 1> d; t* t* t* (! t* M# b% |> s& K# u& /' + )+ -+ -+ u* 4= &+ h% -+ h% -+ h% &+ P# ,)._'.P# P# L+.B*.').}*.A*.A*.v,.A*.A*.B*.A*.)).4,.k&.)-.Y,.!).)-.)-._$.)-.)-.->.->.:'.)-.->.8=.A%.~).5,.Q&.OX OX Q&.Q&.Q&.[&.Q&.OX [&.E'.[&.E'.[&.[&.['.-%.6,.;>.C*.+=.-%.-%.+=.+=.x,.+=.+=.x,.-%.o&.o&.X-.+=.u#.>%.u#.@=.|~ u#.>%.{; 3;.3;.|~ @=.{).]).^)..'./).()._).:).<).[).}).H,.*;.-;. *.e;.8;.8;.8;.|).G*.H*.1).`c Be pb zf Vb Vb Vb `b c Yb Zb ^f $e te {=.;d mc nc nc nc =d nc nc =d nc =d =d =d nc nc nc nc nc T=.kc ^f vd vd vd vd ^f Zb Yb #e 2r +e QB dL kY _%.UY 2).2k +K KL Zo Mj uj =t dL ^n To To Q$ - & Q$ - N$ Z! X@ ; | %= ; & & ; |* Gc N$ { N$ Z! ) [ ~ H= | ) N$ { | . < ; X@ { 2 ; ~ $= { ( 1 { [ 2 { [ 3* 2 D, ## Y@ N$ -# 6 } 6- 4 $# } /& &# ,# V) ,# ># 0 e <& L= q> b ># ,# E, a L= j n 3* a K/ -) n p n *= n n n n m (# b' p _# m C t 1; p F t |& p ^# % E F= t :# ^# ^# 1Z z /# I F= z 1& 1& {& I 1& z N JW c- 8* 8* JW P%.>z AR V (#. V T^ V (#.o*.aV ` (U BX *I aV A: oY 3& (U yS [%.(U k#.K-.R%.^P )Q 6).Z .RT Z .RT RT >$.0$.9X H&.Z .7).$).CX 8)./;.CX .` AS 4..0$.4..'$.:=.9&.y@.L-.:=.#@. ..B .:=.F` 8 .9).s*.)'.N#.v*.t'.T%.0>.|+.`$.K&.u*.w*.*@.s;.*` ++.^} %+. %.j-.* .C@.8Z * .%+.+#.%+.+#.+#.E..+#.p#.c` F$.+>.0).1#.G .F$.(&.c>.HX a).^$.X%.M&.> .--.Q#.X%.gX f` x=.JX 9+.:,.pT AZ AZ I+.gX >V 6Y I+.*+. ^' 1> .- H# d; d; .- ^' d; ^' q- t* s& +- s& d; s& s& s& $+ +- `. #+ P# -+ &+ B'.b).P# c).P# b).h% h% d).P# *>.P# m-.h% ').A*.=>.>-.B*.A*.B*.A*.v,.A*.v,.B*.[*.)-.->.)-.B*.e).->.:'.)-.)-.)-.:'.->.:'.->.W-.h>.p-.p-.Q&.OX f).Q&.[&.Q&.[&.Q&.Q&.[&.a=.[&.[&.[&.j@.-%.-%.i>.;>.7,.Z#.x,.+=.-%.+=.x,.X-.g).X-.+=.+=.a{ 4;.X-.>%.u#.{; 3'.3;.>%.3;.3;.@=.3;.6#.>%.h).i).j).b,.k).M'.l).m).m).n).o).p).q).r).j=.S'.G;.8;.8;.s).|).t).F*.u).Xb pb zf Tb db Vb Vb Zb `b Zb gc :f mc Og vd ve *e nc =d nc =d nc y>.y>.xe nc lc . ]& L$ # $ = ]& . $ . . - # $ $ . = > M$ . $ > $= P$ - | U@ $ | > | > > - N$ & { & . U@ | ~ T- ] ] H= . & N$ T- & $ ^ X@ `@ & | U$ /& 2 ~ ] 2 %# H= 8- ~ 2 *# N$ $# ( 6- X@ { ,# Y@ 2 Y@ { < } } 6 Y> $# { J] Y> 6- ,# ,# } ,# k ,# } a z: d 6 6 e $# e e ,# k c ~# n s> Y$ K/ s> n {# ~# q 1; 1; h h r q ]c Y$ ,> n^ `$ @= 4* 2; f^ /# 4* `$ ,> B <, n^ w w 2; F= a7 z z z z a7 z 1& 1& JW z G O@ c- JW 8* T^ Z T^ 1& 2Z 4>. Z V 3# B).C).>z M I-.oY A: oY *I *I oY aV U;.YX D).(U U;.c-.#N ^P RT )Q +Z Z .3d Z .+Z Z .-X H&.G&.+@.{&.3@.w@./;.^,.D` CX .` 4...` 4..` .E` 9&.f-.z+.z+.f-.E).4Z 6Z N#.#@.!$.N#.$ .7>.F).t'.U,.A@.v%.t*.A@.u=.a .1%.*` #..e$.e$.6@.j-.G).d .* .p#.& .* .p#.* .p#.+#.-@.+#.]$.Y*.-@.V,.V%.L` I$.1=.> .}T G .^$.HX L` 7+.X%.R#./$.L` gX JX qW 9+.JX AZ AZ f` [;.f` AZ ZT JX 6%.[W 0@.~S ~S qT QQ QQ LJ H).:Q KS I).+P VK MR DZ +U J).OR +U SN DI TQ qC rK SN QG 8M :K qC OJ az ,G QG Jx fR 3I qo Vi 3v Ey qo Vi Ye Vi Ey Vi qo Td Td qo Td M9 h9 8e 8e M} .g i9 j9 8e h9 S3 d3 __ Dl S3 =^ S3 6< =^ u^ =] u^ u^ u^ u^ =^ W/ /! =^ d; d; 1> d; 1> 1> d; 1> 1> .- 1> 1> d; H# q- t* q- c% s& t* s& s& w& t* t* +- c% K).4= d% @- #+ -+ h% -+ -+ h% P# c).P# h% ('.L).d>.c).M).A*.t,.x;.N).B*.j&.B*.A*.B*.v,.v,.O).=>.->.|*.)).:'.)-.k&.->.->.)-.)-.g>.W-.:'.g>.h>.->.C=.5,.[&..=.D=.D'.Q&.OX [&.Q&.[&.[&.[&.P).['.;>.Q).-%.P+.-%.-%.X-.S&.+=.X-.-%.-%.-%.+=.+=.A;.|~ }$.R).S).F'.3;.6#.@=.|~ 3;.{; 3;.>%.T).i+.U-.U).V).+'.W).X).Y).Z).`). !..!.+!.@!.s).#!.$!.%!.&!.*!.=!.w>.-!. *.>j ;!.}b b*.|b |b Vb db c `b Zb E-.^f vd ue _f ac :f nc nc &e y>.nc y>.y>.nc iE _f _f nc *e $e _f !.^F :q w` =L kh dL =L (Z 7V (Z ,!.'!.=t .I fE 8w gk ~n - . * $ ] . > ' ] .# ^ Q$ > ] & %= H= ] . S$ U@ Q$ X@ | ] U$ o! ^ - + | 2 Z! P$ T- 2 ; ; ; N$ =' ) ~ Z! [ | 8- ) { (& 7- { ~ 5 2 /& Y> } $# d D, == } < { [ 2 $# ,# 0 $# 0 } 6 1 ,# b ( 9 3] 7 d m*.6! a {# K/ a a a b 0 c h z: i Y$ 6! 0 0 ,> h n c y2 ,! Y$ Y$ p r m b' ,> b' `$ #] :# `$ w #] G /# F= E $S {& F= a7 z w '&..*` e$.(!.~'. %.&-.E$.%+.p#.* .* .p#.E..u;.E..-@.p#.+#.y%.+%.]$.G$.> .IX Y*.Z*.H$.H$.c>.G..> .H$.^$.X%.Q#.Q#.G+.f` f` JX gX JX 9+.f` JX k$.PV 6Y AZ qW AY +Y I@.JR QQ UP YO $r |P SK _!.cR +P w;.J).FM WK |O ON _K (u QG _K 5O rK DI sK 'G :K ,G QG Zf 'G QG qC }L Ey !G F _A GI Bl qo Bl qo Bl Ye Bl q qo az Vi 8e >0 8e .g 35 i9 >0 d3 >0 d3 S3 d3 __ Q] x/ __ x/ u^ =^ 6< 6< u^ =^ u^ =^ 6< Q] W/ ^! <] 1> 1> !{ d; d; 1> d; d; 1> 1> .- d; d; d; d; s& c% d% s& ++ s& .- H# s& M# `. s& O# z& `. +- &+ )+ P# d).h% P# P# c).P# ,).P# _'.c).:!.B*..)).e).->.)-.->.->.->.->.|!.h>.->.W-.g>.9=.W-.1!.[&.[&.[&.D'.Q&.[&.[&.[&.<'.Q&.E'.2!.{-./` ;>.-%.+=.g).7,.-%.['.3!.Z#.X-.+=.X-.-%.X-.x,.3;.>%.|'.X-.|'.A;.>%.@=.3'.|~ {; @=.>%.i+.3;.4!.5!.6!.7!.9'.l).X).8!.6{ 9!.0!.a!.b!.G;.$!.e,.w>.c!.d!.e!.f!. ;.g!.,y `c i,.}b |b TD Vb Vb c {g Zb Zb {g vd ^f ^f ue . 0' R@ + > ;b # S$ ; ' ' o! ;b > V@ * o! |* ] . . X@ > $ T@ & - $ & Q$ & V@ ; H= Q$ $ ! N$ Q$ ' ^ Z! $ O$ Q$ ) X@ 2) P$ R$ | > ; 2 | < /& 05 l!.N$ ^ P$ ~ N$ X@ 2 ] ~ *# { 4 I= [ { J] [ } { X@ { ( ,# $# 5 I= k 1 4 $# vk x0 6- ,# d b a L= a a ,# a c k ,# g c i h K/ L= t' 0 6! Y$ m h 2, h r ,> b' Y$ c{ r Z$ t p `$ `$ :# :# w F= % #] b' 1; w t G F= z z F= a7 z 8$.a7 C` A$.O@ n! 1& M T^ c- T^ O@ JW KW V c- V c- 5 .4>.v@.z .iI y .aV :#.*I *I (U p*.U;.(U I#.+-.F>.(=.3d RT RT )Q +Z RT Z .^P Z .G&.>$.Z .G&.'*.G&.7).{&.2@./;.$).4...` E` .` E` J#.]&.4..o;.a&.L-.:=.4Z a$.$ .^&.z@.$ .z+.o,.A@.#@.Y;.T,.m!.n!.n#.I&.W*.t=.Q-.*` a>.L&.++.++.;).o!.%-.yZ p#.p#.%+.d .d .p!.* .]$.-@.%+.+#.f$.3%.+#.l-.G$.r#.i$.F$.M&.e .Q#./$.G+.G .^$.AZ ^$.Q#.--.JX gX PV <;.AZ ;Z AZ > .gX nV f .gX O&.RV @Y }W !R UP !R UP !R wP [O 5z uU )N zO yO VK iJ hN }Q UK CI nQ QG rK QG DI iN :K qC qC QG az pC pC Nx -w Ye 3I -w 2#.wD Bl Vi qo Ye Bl Bl Bl Vi Cl Td Ye Bl 8e i9 ch 8e S3 8e M} j9 S3 3| T3 =] =^ =^ 3| 45 u^ =^ u^ u^ u^ Q] u^ =^ N~ u^ =^ :] 1> d; .- d! .- H# 1> _^ 1> d; 1> .- d; .- ^' d; f; b% #- 1> s& q- s& t* t* d% u& N# @- 4= q!.c% -+ -+ -+ &+ P# h% P# %>.P# r!.h% L).n-.Q>.A*.B*.s!.A*.A*.v,.A*.A*.v,.x;.B*.B*.z;.->._$.B*.u,.->.k&.:'.->.)-.->.A%.g>.)-.)-.W-.:'.t!.u!.D'.n$.Q&.D'.1!.[&.Q&.[&.[&.6,.[&.E'.P).E'.['.-%.+=.+=.g).-%.S&.+=.X-.|'.+=.x,.+=.X-.X-.v!.j>.3;.!@ 2'.2'.^@ 3;.|~ ^@ <@ |~ 3'.3;.o&.w!.x!.y!.r>.#'.P'.z!.A!.B!.C!.D!.E!.F!.G!..;.H!.I!.J!.K!.L!.w>.M!.e'.N!.!f Sa }b pb |b db Vb c Zb Zb Zb vd vd ^f kc H O A S I I @% G z N 7* G M= ", +";b ]& #S I/ 5_ # K$ + ]& 5_ 1) J$ 5_ R@ L$ 0' ]& $ + = * + ]& . $= . = $= > $ + R@ ]& . & $= U@ ; - . Z, Gc ; > $ S$ H= $ + ; ' P$ o! ] U@ $ & N$ H= S$ U@ & + & X@ ; U@ U@ & & > > X@ | | ] N$ ) 2 ; ] ) { & ) | 05 / H= 05 ] X@ | { R$ 2 <& < 6 ~ 1 1 6- T- { ( < 5! { 4 ,# ,# 1 i / 6 ~ Y@ J] 4 /& x0 a e k d a n i ~# K/ ~# n n ~# Y$ p L= ~# c k h Y$ |& ~# n a ;= _# % m ^# #] 2; 4* v p {& 6* 4* % 1Z {& G w /# :# F= E a7 /U z E a7 A$.a7 z I O@ 1& 1& O@ A $T $T AR JW U!.x+.=X >z V (#..@..@.PT 4>..@.iU B$.y .A: I#.-*.V!.W!.SO +-.p'.U;.+).X!.Z .6).RT )Q )Q +Z RT +Z )Q |@.Z .bV w@.G&.R%.1@..` +@.1@.Y!.4..E` a&.4..a&.9&.9&.L-.y@.y@.s*.#@.<+.)'.4Z !$.`X ~*.i-.M-.Z!.Y;.7>.Y;.n!.n!.`!.N#.}#.U%.r;.~'.-).++.6@.x'.&-. ~.C@.*Z K>.%+.d .d .C@.E..p#..~.-@.]$.Y*.]$.-@.3%.e .7+.i$.1#.G..F..> .> .L` H$.HX }T G+.> .G+.qW nV JX gX qW #G SV AZ AZ gX 7Y AY aZ f .&+.pV pV UP 1T _Q QQ oC eN QQ CI DM yO FM NR PN EY +~.qK VK +U qK ,G ,G _K QG :K ,G rK :K -w az QG 'G QG pC Ey _A !G )G Bl RG Bl qo Vi Vi Vi `f Rc Ye Cl M9 i9 >0 M9 Td h9 Rc >0 .[ 3| d3 d3 __ u^ x/ .[ d3 =^ @~.u^ a] =] u^ u^ u^ z/ )/ :] .- !{ H# x) R] 1> .- 1> 1> 1> 1> 1> 1> -] d; 1> 1> b% ++ s& M# s& M# s& s& 1> #+ c% 4= P# &+ d).-+ d).h% #~.h% h% c).P# h% ('.*>.$~.m-.h% ').B*.%~.N$.A*.B*.B*.A*.B*.B*.v,.B*.B*.e).->.k&.e).:'.->.->.)-.~).->.->.T>.&~.m&.g>.Z,.->.T>.OX [&.D'.Q&.*~.[&.Q&.Q&.[&.[&.Y#.[&.D'.=~.-%.>>.7,.-%.+=.X-.Z#.-%.+=.+=.X-.X-.x,.+=.X-.-~.;~.>%.a{ f%.f%.!@ 3;.3'.6#.|~ {; V>.>~.,~.'~.)~.!~.~~.L'.P'.{~.]~.^~./~.(~._~.:~.<~.<~.G;.[~.}~.|~.1~.2~.3~. ;._>.4~.3i 0c pb zf |b Vb .jA QD Ro @R VU ~j fL a~.W> ^. B$ Y E$ ` L@ Q@ O S O A A I m B G C G C 2; G ", +"R@ #S I/ =[ #S 5_ K$ K$ L$ 0' 1) + ]& ]& ]& # 0' 5_ % + ]& ;b Q$ $ + 1) $= # = . $= > $ = . . # . V@ $ . . > U@ U@ Q$ ]& * $ Q$ . U@ ; P$ U@ > - S$ N$ ; & T@ $ N$ R$ 2 & ] & & ; X@ ] H= Q$ - | N$ { | T@ U@ *# 2 H= ; ; H= .# { | ~ 2 Z! 7- 7- ] 2 7 : Y@ /& J= 5 6 /& 2 ( ( ( ( a d D, } 6- a : 1 Y@ Y> ( q> e a a 5 j g a' 6 0- z: ~# 0 z: L= }& L= h h h a c b~.~# c p L= r m #| q p :# t Z$ m t t t ^# F= {& q /# 4* Y$ w F= /U F= E z a7 n! a7 z $T 8* O@ 8$.'&.A z m;.KW n! H$ H$ c- V c- c- 5 . V 4>.4>.0S i5 W!..@.:#.-*.aV iU iU iU yS c~.I#.BX [%.9$.+Z G&.+Z #N RT RT Z .Z .+Z G&.lP 1@.G&.+@.{&.hT +@.<#.d~.hT 9&.E` .` a&.CX ]&.9&.H>.:=.<=.z+.#@.Y$.#@.<+.!*.e~.0 .)'.Y;.Y;.U,.U,.i-.`$.f~.n#.W*.L&.g~.et U%.++. %.J>.6@.6@.xZ & .d .d .%+.& .* .E..* .+#.E..-@.+%.h~.p#.3%.G$.7+.4z b>./$.e .L` Q#.M&.IX Q#.G .HX IX L` PV IS Q#.G .gX [W JX [W qW G+.6%.oV JX f` f .!R pV YO UP BZ QQ UP vL qT eN [Q }Q +P TW P` |O NN DI CI zO qK SN iN qK QG iN ,G 'G 'G 'G Jx ,G wD 'G Zf 3v Ey 3v Bl qo qo o8 Vi Vi Vi Vi qo c3 Sd Bl Cl 8e h9 8e `m h9 M9 Rc 3| d3 h9 3| d3 =^ .[ x/ __ u^ =^ Q] =] 34 =^ =^ =] =^ =^ W/ =^ <] ^' 0] a] .- .- 9) 1> 1> .- H# 1> d; .- 1> d; t* b% b% M# t* M# b% T. s& #- #+ u* -+ P# P# -+ c).P# P# P# -+ P# c).$~.h% i~.h% j~.h% k~.x;.A*.N$.A*.A*.B*.A*.B*.B*.B*.A*.B*.S>.->.:'.e).k&.)-.:'.:'.->.:'.e).)-.:'.|!.T>.g>.u!.->.*~.Q&.OX Q&.Q&.Q&.Q&.D'.D'.D'.[&.E'.[&.P).-%.6,.i>.-%.+=.X-.Z#.+=.-%.+=.G'.X-.X-.+=.x,.+=.x,.{; f%.X-.X-.2'.9$ |~ ^@ {; 9$ 9$ 6#.l~.m~.n~.@'.()._).o~.p~.q~.r~.r~.C!.s~.t~.u~.Z>.<~.v~.w~.x~.=;.S'.y~.8;.e;.z~.6b Be pb pb Ob se #e {g Yb Zb ^f vd vd :f xe yh +l rc nc nc nc ^# ^# ", +"G= p9 G= 0' 0' = + # = 0' + K$ + ;b R@ # 0' 0' ]& + # 0' ' $ ]& 0' + + 0' L$ $= . ]& + # $ $ + ]& # + > |* & $ - S$ . $ # # . - $ 2 ; T@ U$ | U@ ' 0' + V@ o! & - Q$ ; & ] ' Q$ ^ ~ $ > N$ 05 S$ ) * | ## : 8- ~ 2 { H= d ) | } N$ X@ X@ X@ | d ( 6 ( } ~ ( ( d 2 { 2 $# 2d j } 5 q> ,# J= &# 7 3] ,# 3] V) ,# 9 5 9 &# L= e b e n ~# W$ 0 {# c L= r 2, 2, s c L= a' ,> 4* L= r Y$ u ]# Y$ m 4* F= ^# G ^# {& ;) :# 4* {& z b' w 1Z F= $S F= '&.z z a7 a7 #.T^ c- T^ a7 H$ n! O@ 2Z n! 1& Z .@.M V >z v@.4>..@.I~.5 .Z..W!.I-.p=.aV A: oY A: A: *I y+.J~.(U u%.+Z Z .bV R%.)Q )Q +Z lP RT RT '*.G&.sZ e-.Z .n;.1@.hT {&.#).E` .` 6>.L-.9&.9&.4Z o;.a&.K~.f-.4Z s*.~W [#.!*.8 .s'.0 .z@.s*.U,.7>.U,.U,.Q-.P-.{*.K&.L~.a>.a>.L&. %.++.U%.{$.*` d&.d .M~.]*.E..* .p#.+#.p#.]$.I` @#.G$.+%.+#.-@.V%.|#.}T q#.c>.M&.IX N~.H$.HX M&.Q#.IX IX PV nV [W > .G .gX qW qW gX gX qW f` RV qW aZ oV ZT 1T 1T 0 .g h9 A_ h9 h9 A_ __ u^ Q] Q] __ 45 u^ Q] =^ u^ Q] 6< =^ =^ u^ 6< )/ w^ .- 0] 0] .- .- 1> .- .- .- d; .- F# t* 1> .- s& d! s& M# b% b% T. s& L# s& M# P# g; -+ &+ P# 4= #+ h% h% P# P# h% c).P# P~.Q~.R~.B& 3,.x;.B*.t,.j&.)).v,.B*.)).)).v,.A*.v,.e).!).:'.S~.u,.:'.~).->.->.:'.:'.:'.W-.p-.->.Z,.8=.:'.T~.[&.n$.Q&.[&.Q&.Q&.[&.[&.D'.OX D'.E'.[&.2!.U~.s-.-%.X-.X-.-%.+=.Z#.+=.+=.+=.2'.X-.X-.X-.X-.f%.{; f%.2'.H] 3'.{; 3;.{; 9$ H] V9 V~.W~.X~.@'.#'._).F,.p~.m).Y~.Z~.A!.[).`~. {.~>.<~._-.P=..{.+{.@{.#{.E;.D;.&;.${.Sa zf |b ^& . . - - . . > + . . - & N$ Q$ ; N$ | | & {c T@ + Q$ ; S$ & X@ N$ ] N$ 2 `@ ; 2 T- ] H= { > ~ 2 X@ 1 8- ) ) Q$ ^ ~ { ( | N$ | 2 W@ ( < ( } } : V~ $# d } $# ( 6 6 6 6 <& 3* 7 ,# 0 q> 6 a a Y> Y> i {# ,# c5 ,# d k 7 a n 0 K/ ~# c n L= Y$ % v r ),.p r q 1; ,> b' 1; h p r $S w q {& :# /U {& ;{.u w G 2; D ^# /# a7 #.G '&.z F= E $S '&.1& $T z K N V 1& AR n! 8* O@ c- 0S z . Z o*. V (#..@.P,._#.aV }Y L aV >{.*I E>.I#.oY {,.I#.k#.J-.G&.RT Z ..V RT #N RT R%.G&.9$.R%.lP +@.G&.+@.w@.3@.0&.$)..` .` 8).4..9&.d~.y@.:=.a&.4..,{.` .K#.r*.<+.^&.!$.S%.!$.N#.<+.v*.<+.t'.7>.U,.P-.|=.W*.|=.*@.U%.'{.*` U%.6@.u;.6@.~$.){.8Z d .b` =` d .+#.E..+#.b` ]$.]$.G$.+#.l-.]$.h$.'@.h$.+>.c>.M&.X,.^$.X%.G .,@.G .> .> .IX > .9+.AZ JX JX JX gX Q#.gX 9+.f .oV oV BZ rU @Y !R !R [U KN UP QQ oC lQ `T TV zO yO {S VK WK CI VK `L FM sK QG 'G Jx qC OJ Jx :K ,G 'k qC !{.Zf qC 3v 3v Zf Vi 3v }u Ye Bl o8 o8 )k Bl qo Rc Ye Vi 2#.Tx M9 .g i9 >0 8e x/ S3 Rc d3 x/ __ u^ =] Q] =^ Q] u^ =^ u^ =^ 6< =] b~ c! =^ /! -^ _^ x) a] _^ d; d; d; 1> 1> 1> .- d; 1> 1> 1> b% ++ ++ M# b% b% b% ++ b% .- .- #- E> 4= P# c).t& u* d).$~.h% P# P# h% P# P# h% c).~{.{{.,)..u,.S~.^{./{.~).Z,.:'.:'.T>.|!.:'.Z,.g>.:'.u!.*~.1!.Q&.E'.E'.D'.[&.[&.E'.D'.[&./` E'.2!.`,.s-.g).+=.({.-%.+=.+=.+=.x,.X-.X-.2'.F'.2'._{.3;.3;.a{ x,.4;.:{.{; T).{; |~ 3'.V9 <{.[{.}{.k).8'.|{.1{.2{.3{.Y).p~.4{.5{.[).6{.7{.8{.9{.0;._>.0{.3~.y~.$!.0;.I*.a{.7U Ig 0c zf Mg {g > = . . # - > $ V@ + $ * V@ * Q$ ; & Q$ $ & Q$ . *X > U@ [* > ; ' & ^& }* . S$ S$ & }* | H= P$ N$ N$ Q$ ; H= ; 2) - ] S$ X@ ~ ) H= ) [ J) { g{.X@ ) 2 1 / 4 +# | , [ 3* [ Y@ 1 &# /& ( 8- 4 6- < &# q> d ## i 0 a *# 6 ># i Y> ,# 3* a a 6 d ,# a 8x n ]# n 0 L= c y2 0 2, 0- c n^ h _# c{ ;= p m s> h `$ h w t 4* :# q w q :# {& z G /# ^# 2; F= F= t w ).z B a7 @ .a7 I 8* AR I E; p=.AR 8* z 8* .@..x ..@..@.4>.0S >z Z..I#.A: A: oY *I oY I#.oY ,*.y+.k#.+).RT ^P )Q #N RT )Q ^P +Z RT Z .Z .9X 7).H&.|@.{&.1@./!.{&.CX .` o;.4...` o;.a&.y@.4..E` 3..4Z ` .f-.h{.8 .` .0 .!$.)'.z@.v*.c&.7>.i{.m!.}#.n!.n#.j{.(!.++.-).*@.1+.*@.p!.8Z xZ K>.d .-@.* .8Z * .E..E..-@.* .E..* .G$.+#.k{.F$.1=.r#.^$.1#./$.M&.7+.r#.X,.> .L` 7+.> .G .L` Q#.AZ AZ PV 9+.nV JX PV qW JX PV ZT lQ +Y QQ lQ UP [U UP UP YO b! 1> H# F# 1> 1> %~ d; d; ++ t* b% K# N# ++ b% ++ b% ++ ++ + `. l{.h% h% -+ -+ P# h% h% h% h% h% -+ -+ P# ('._'.-+ ,).=>..S~.Y,./{.:'.~).Z,.~).:'.->.m{.Z,.:'.m{.n{.~).Z,.*~.[&.[&.Q&.D'.D'.D'.D'.D'.[&.o{.E'.p{.ha q{.3!.-%.X-.7,.r{.X-.U>.X-.x,.X-.X-.|'.A;.({.2'.a{ 3'.s{.<@ ;~.3;.9$ t{.u{.<@ !@ #; ^).v{.w{.8'.x{.o~.y{.z{.8'.A{.8!.B{.a'.(: C{.D{.0;.+{.e,..;.8;.G;.G;.0;.D;.E{.Nb Ig *d zf Ob xa # = # Q$ . $ # ]& $ $ V@ > # $ + = $ $= ; > $ $ $ > > %= ; & > . S$ S$ - U$ %= & ^& ' & Q$ U@ Z! b{ N$ Q$ N$ T- | N$ ^ . ; ~ N$ J) ( 2 2 Z! `@ | X@ ) { J) { N$ ( Z! 1 { | &# ) Y@ } &# *# *# X@ { $# /& } ( $# 6 } d } } 6! $# } a' a 6 6 : a {# 6! ~# j { i 0 0 0- k k ~# c _# o 2, 2* % s> Y$ ,> H{.2, `$ % h p ]# t m p 4* /# G Y$ {& $S |Z C ^# w F= '&.z F= /U B 1& z z z w 1& JW n! a7 #= n! c- I{.T^ Z .@.JW JW 1& .@.v@.Z..JW J{.5 .x .5 .iU B$.oY A: oY B$.W!.iU +-.BX K{.k#.^P ^P ^P G&.^P )Q +Z RT +Z G&.+Z Z .1@.w@.H&.0&.e-..` 0&.7` .` .` 4..9&.E` a&.+` :=.4..4..` .<=.#@.L-.E).<=.$ .r*.L{.z+.Z!.M{.U,.U,.N{.0>.t=.Y;.O{.L~.%Z #..Q-.L&.#..#..E .a .{$.M~.d .%+.8Z .%.+>.]$.X*.G$.F$.%+.p#.+#.4Y F$.h$.P#.=V r#.NV HX IX HX H$.L` HX ^$.L` H$.IX nV qW nV qW JX qW nV PV JX f` HG , .!R QV PV @Y UP YO ~S QQ YO 0 8e 35 35 35 S3 3| d3 T3 .[ S3 45 9~ u^ =^ u^ u^ u^ Q] =^ u^ Q] _/ /! 2{ s& 0] R] 1> .- d; .- 1> 1> y' ^' H# .- .- s& T. t* + b% ++ b% b% ++ b% `. I# O# h% h% P# -+ P# B'.-+ P# u* h% h% T&.P# *>.h% L).d>.').B*.M)..v,.S~.:'.~).Z,.:'.->.:'.S>.u!.:'.h>.g>.~).~).1!.[&.[&.[&.D'.D'.[&.E'.D'.E=.o{.2!.T~.=~.Q).3!.X-.X-.6,.Q).+=.+=.X-.-%.x,.x,.2'.ha }'.x,.X-.f%.f%.P{ Q{.f%.{; a{ x,.R* 3'.R{.S{.T{.().().M'.z!.z!.U{.P'.V{.`~.W{.X{.|! Y{.Z{.F;.0;.`{.G;.b!.9;..;.e,.2~. ]..].9b Lg zf /g Zb Zb Zb Zb ^f *e _f ue nc nc _f nc nc rc nc ub xe =d =d =d =d nc nc nc nc &&.nc {l lc # L$ > > . > + L$ + . ]& . 1* $ = > > . # T@ & > ] U) > ' . $ . # $ ; . = H= ; ~ > > X@ R$ ; & ] | U@ H= N$ } *# ~ N$ | | ~ /& Z! +# { 7- Z! X@ , | [ ## d $# } { Y@ 2 4 2 X@ ( } ,# 2 < $# 6 Y> 8 V~ V~ 6 7 ~# 6 ,# 0 8 V~ {# a j s> a $# 0 L= 0 e &].n n h ]# ,> Y$ r p p! s> p 2, ;= 4* ;= q `$ m G D `$ C ;) p Y$ E /U F= D @= C F= $S '&.*].z /U z {& /U .Y;.Y;.;].Y;.t*.>].,].{*.sY #..1+.*` L&.6@.a .*` L>.e$.& .d .& .d&.R-.E..p#.-@.-@.* .]$.-@.S-.G$.J` HS X%.F..9..M&.wl /$.H$.L` HS > .HX G .G .G .nV nV nV G .JX [W gX PV JX nV 1T H# H# H# .- .- 1> .- .- .- b% b% ++ s& ++ b% .- T. ++ L# M# N# E> 4= u* 4= l{.l{.P# c).h% h% c).c).h% ('.,).)].d>.,).v,..)-.!).!].->.->.A%.:'.~).->.:'.m{.Z,.|!.~].m{.u!.[&.D'.Q&.D'.p{.D'.D'.E'.{].=~.g).2!.E'.{].>>.Q).]].+=.-%.X-.X-.]].x,.-~.X-.R* G'.U9 a{ f%.A;.s{.^]./].(].|'.a{ 0$ ]; _].}- :].V).T{.<].9'.#'.[].}].|].1].1].h= 1].2].y% o+ 3].<~.<~.4].<~.D{.b!.n>..;.y~.J;.5]. l *d zf /g c Zb Zb ^f ue _f ^# G w ^# ", +"R@ I/ L$ I/ G= I/ I/ 5_ + K$ I/ L$ R@ 1) # ]& ]& = ]& k) % J$ = L$ + [* =' . $= }, + ]& > k) k) 5_ I/ . $= + > $= - $= S$ - . U$ - $ = > = Q$ ] & S$ * * & ' ] & P$ & ; ) ; U@ ~ & & & - X@ ] | P$ P$ | N$ { |* ; X@ | Q$ ' 2 +# $# [ [ ## < / |, X@ 2 d : /& X@ 1 { 6- `@ 6- D, *# ( 1 1 { [ $# 7 3* 3] d ,# 8 8 } ,# a 6 ,# a 5` 5 9 a k c k {# 0- c ]# c r L= r c L= Y$ ]# _# Y$ 2, p n `$ h ;= c s> y /# 1; t Z$ 4* 1; w *].G w t /# {& t 8$.z 4>..@.4>.B$.z .P,.5 .B$.:#.I-.y .c- _#.-*.0].BX oY (U )Q oY Q%.#N #N )Q )Q RT Z .+Z +Z RT Z .R%.G&.H&.G&.q*.|@.!&.D` R%.^,.4..4..9&.d~.o;.a&.9&.o;.9&.:=.pY a$.z+.<=.Y$.#@.!*.9).<=.S%.T,.<=.m!.Y;.i{.t*.B@.a].A@.Q-.#..*` _W %.#..#..%Z 6@.e$.b].d .8Z +#.p#.+#.p#.-@.]$.E..%+..~.p#.-@.]$.9..M&.V%.g$.G .G..c].=V L` G .L` pT L` /$.G+.PV nV gX AZ PV nV SW IS qW qW JX aZ JR pV JR vL YO JR .C'.('..t!.~).Z,.h>.~).Z,.m{.|!.D'.*~.[&.D'.D'.[&.D'.p{.2!.P).e].;>.E'.f].e].E'.x,.x,.}'.X-.X-.X-.x,.X-.-%.|'.2'.t{.a{ f%.f%.x,.}- a{ F'.R* g].9$ @=.P* %p h].i].+'.j].|{.k].l].m].n].V{.o].X{.7| h= p].E) q].r].s].t].<~.n>.<~.u].I!.H!.v].w].ic zf zf #e xa (f vd kc iE _f nc nc nc nc xe ub nc zh =d zh ub =d *e ub %e %e *e nc =d nc nc !.Qo 8w Gj x].DQ LT hW k;.'l &l y].TU 5g me me Az z].#t }q }q &o &o $].gk ]n `l OD A].}x B].KT JT kY ]j Dg C].{. R X P @% H S Q@ |; N@ @% S 8* G z N G ^# F= 1; 1; ", +"I/ BN I/ 0' I/ BN ]& ]& K$ # L$ L$ J$ # + ]& ]& + L$ = + # [* # p9 = + ]& k) + = ;b = > .( $ ]& = > > & ; . . [* U@ ' & |* . P$ - U@ N$ o! ] $= - * & . Q$ R$ U@ N$ $ R$ R$ S$ ; . S$ %= T- S$ U@ ; U$ S$ | =' ] ' X@ ~ & %= | %= ) { J) H= ~ W@ | } H= 2 $# { N' ( &# D, 5 +# 7 Y@ ## 2 } 3* [ 7- Y@ } ,# } d ,# ,# 9 0 a } 6 $# a k a 0 0 ~# !# 0 0 L= p h k K/ L= !# C; a' 0 *= h p 1; Y$ n t h {# 1; 4* p % -= b' r ^# /U ^# :# 2; 2; F= #] {& B z $] a7 a7 z ..@. V V (#..@.v@.t%.x .QT B$.y .z .D].oY E].-*.oY oY #N (=.*I #N #N RT RT ^P +Z RT +Z +Z G&.G&.G&.Z .R%.G&.Z .F].!&.!&.$)./!.4..4..E` 9&.E` 9&.4..4..a&.:+.#@.#@.z+.^&.^&.$ .s'.~*.N#.s*.T,.Y;.7>.G].v%.}#.g~.A@.K&.H].*` #..++.#..6@.#..++.++.*` * .d .d .~$.E..]$.p#.-@.+#.+#.]$.;@.f$.-@.V,.i$.7+.W,.HX IX G .L` L` HX HX IS Ix > .HX HX IX qW N` nV IS *T [P pT f` PV |I H# s& 1> ^' .- .- ++ ++ b% K# .- b% b% T. s& Y. K# %+ .+ .+ N# l{.5= l{.c).K].c).h% c).h% c).c).('.c).)].('.%~.)).B*.L].B*.v,.B*.A*.B*.B*.)).v,.v,.d].:'.:'.M].S~.->.->.->.~).~).)-.N].u!.:'.:'.g>.5,.D'.D'.Q&.D'.E'.E'.D'.E'.E'.E'.2!./` q{.2!.O].E'.X-.+=.g).x,.U9 x,.x,.x,.|'.x,.U9 2'.x,.v!.+=.V>.^@ !@ H] ;~.2'.A;.4;.H] P].Q].j].R].S].T]._).U].z!.V].4{.W].0!.5{.w+ i= `] P^ X].Y].Z].<~.7'.`].u]. ^..^.y~.+^.-j *d se .%e xe =d nc nc nc =d nc =d nc *e nc kc @^.ju #^.$^.Nf /y WM cE %^.Dt &^.Mj *^.;o UI UI =^.bL 5r 6r 5r 6r &o =o ~n ^n aw ou -^.;;.cU Jj y` dL _j ;^.>^.x$ F@ X L@ G@ J L@ S J A K@ O@ K Q@ 7* F G 1& /# t 4* ", +"jP ], ], <{ #S <{ J$ I/ ]& K$ 1) J$ jP ]& ]& + 0' R@ ]& ]& ]& J$ ]& = $ ]& V@ ]& $ V@ V@ = = V@ # $ R@ + + $= # V@ V@ E! S$ S$ $ = - U@ > !, > > X@ ] U@ ; $ * R$ *' ^& U$ H= . ^ Q$ Q$ > ^ > > U@ *' & ; U@ H= ; ; X@ ; { N$ | N$ ; X@ | ## g{.X@ ~ ## 2 Y@ X@ ~ /& ( $# O$ / 4 4 $# $# } < 8- ( /& 2 [ 5 e D, d ( a L= < d ,# ( < d ,# 7 a 0 8 n {# V- n 0- h r n r h r 0- ;= z: ]# q ,> 0- ^# -) h ^# W$ n t % ,^.p /# ^# t {& m F w w w q 2; F= w F= /U z z z AR ).F= AR F= Z 8$.n! JW z n! JW _+.>z V KW .@. V (#.5 .x ..@.z .'^.)^.:#.aV QT j#.MW ;*.B$.I#.(U .Z !^.(U _#.^P _M ^P )Q )Q ^P RT Z .G&.Z .7).+Z 3@.R%.G&.G&._=.+@.0&.^,.q*.E` 9&.9&..` 9&.y@.9&.E` ]&.b&.` .a$.r=.z+.<=.#@.<=.)'.#-.N#.#-.T,.t'.~^.K&.r;.}#..#.m!.%Z #..#..%Z 1+.++.6@.++.L&.d&.%+.K>.%+.* .E..* .w=.l-.p#.]$.]$.mV mV -@.3%.G .wl mV =V AM L` G .> .Q#.> .Q#.HX G .f` nV qW JX JX nV X%.>J |T PV SV _Q {^.}P }P |I _Q lQ ^ .- H# .- .- 1> K# s& s& K# R; T. T. b% T. M# b% `. `. + b).u* ^^.b).P# -+ h% c).w* $~.#~.c).('.h% /^.R~.k~.]{.B*.').B*.(^.)).v,.)).d].)).d].v,.v,.e).->.|*.!).:'.:'.t!.t!.~).->._^.:^.:^.u!.1!.m{.T~.Q&.n{.E'.D'.E'.2!.p{.E'.=~.E'.Q).ha E'.O].ha +=.}'.+=.]].<^.g).2'.X-.2'.X-.g).F'.2'.F'.e$ F'.F'.^@ :@ <@ b$ e$ a{ ]; [^.}^.|^.1^.2^.3^._).M'.X).U{.4^.[).5^.6^.B!.h= u+ 0!.7^.8^.9^.<~.Y].0^.u].a^.I!.G;.0;.b^.Ig {g Vb E-.Zb kc vd $e nc mc nc nc wd =d -d =d ub ub -d #H ub ub rc #H ub %e >e =d nc ub =d xe rc nc *e mc A~.c^.d^.=L e^.f^.$W i'.g^.h^.i^.j^.KL +O 'l +K +K AK lu k^.=o &o 6r To ]y nu ]n ^y dE l^.%&.xv kM UY kY _j vf m^.{. %. B$ D$ M@ Y T J H N@ z I N w w ^# P@ x t C t ", +"L$ =[ ], ]& 5_ ], #S 0' = X! * 5_ I/ ]& = * L$ 0' 5_ ]& 0' L$ ]& + ]& ]& ]& + + V@ . #^ L$ > H= o! % # ' V@ > & > . S$ ; ]& > . . z] & ' ] . > S$ U$ - . H= = U$ & . ~ - $ H= & . & ; > X@ ; ; Q$ X@ 2 ; ; X@ X@ %= U@ ; { | ~ - N$ | 2 [ ] & 8- H= Y@ : ( 1 $# Y> ( &# ## 6 [ 2 ## 9 ( <& 6 == d } &# ,# 6- 7- 0 q> 7 8 !# i # ,# 6 a L= 6 i ~# n W$ |& k C; z: n c{ n c{ `$ ^# c q Y$ p r L= n ,> -= 4* m V| 2, :# )> #] Y$ t $S w F= |Z /U #] z F= w G z a7 a7 a7 AR z I T^ n! O@ M M z .c- |# .@..@. V c- c- c- 5 ..@.4>.y .4>.*I aV SO oY B$.-*.B$.;*.:#.(U #N (U *I ^P 'Q ^P )Q RT )Q RT RT _=.+Z R%.e-.9X '*.H&.1@.{&.q*.7` 0&.4..9&.3@.4..CX 9&.9&.d~..` :=.a&.:=.` .o;. ..s*.T%.9 .U,.n^.T,.v*.N-.m!.G].0>..#.|=.t*.~^.%Z #..U%.++.*` % .{'.++.o^.E .%+.%+.* .8Z * .+#.E..v=.+#.F$.p#.p#.g$.p#.h$.HS M` 0..}T IX }T =V H$.--.> .e .L` IX nV IX gX [W !X OQ nV *T =Z [W *T ,V =Z HG AY #G KN QQ YO UP 0 Q] =^ d3 /] Q] =] =^ =^ Q] =] 9~ R] =^ =^ u^ u^ c! H# x) >^ H# .- F# H# 1> H# .- F# H# b% T. T. .- b% ++ + s& }> b% s* ++ t* K# K# s^.s* N# $~.h% h% c).P# c).h% h% $~.t& P# $~.T&.d>.t^.('.]{.u^.k~.v,.v^.v,.)).v,.)).v,.v,.)).e).~).w^.!].!).~).~).:'.~).~].n{.n{.1!.OX D'.1!.u!.T~.1!.D'.D'.E'.2!.x^.E'.P).R).+=.x,.D'.p{.{].2'.({./].X-.X-.y^.R* 2'.2'.x,.X-.x,.x,.;~.;~.H] b$ <@ 2'.<@ W% R* a{ !@ m$.z^.A^.<].().B^.|{.X).l].a'.C^.D^.l).y{.2].|! s+ 9!.E^.F^.G^.)>.8^.Z>.H^.I^.G*.J^.K^.L^.0c Bf E-.`b Zb iE iE ue $= # J$ V@ = $ $ > = # $ S$ $= . > > = - 1* $= = = ' N$ & - - i#.& ; N$ $ ^& ] T@ ; - ' > (& $ & R$ ; | S$ ] ; U@ H= P$ | { b{ | N$ }* ; | | ) 2] H= { ~ 2 R$ X@ Z! } ## [ | 6 d { $# < *# 4 { | 7- { N$ <& :& $# ,# 2* 3* Y> a 6 6 } V~ d } 6 ># tA *= 8 6- L= s> h ,# K/ k h n n^ h s> ]# _# n h c Y$ m `$ `$ 1; ^# b' 2; 1; ^# Y$ :# 2; /U p F m /U #] % w .4>..@.P^.p=.Q^.aV AX y .>*.p*.aV -*.B$.iU BX ^P oY k#.3d bV )Q RT +Z ^P +Z G&.R%.Z .Z .Z .hT H&.e-.{&.+@.hT 0&.3@.E` 9&.E` /!.E` 9&.4..o;.L-.a&.]&.z+.<=.!*.s'.S%.$ .s*.n^.7>.N-.#-.t=.U,.8>.W*.R^.K&.W*.1%.#.._W *` ++.xZ 8Z C@. %.d .* .8Z ~$.d .* .-@.p#.G$.8Z ]$.+#.F$.+#.p#.f$.K` 7+.nV F..}T Ix G .}T HX =V HS IX IX P#.JX 8@.IS HR KH pT >J >V ,V qW *+.AY YO JX {^.qT YO QQ ++ ++ b% b% ++ ++ s* K# b% T. .+ s& Y. Y. `. R; L# s* c).c).h% h% h% c).l{.c).c).c).c).c).h% h% t^.S^.v,.v,.T^.T^.)).d].v,.v,.)).v,.)).v,.M].t!.:'.:'.U^.~).:'.:'.~).~).m{.~].u!.E'.D'.Q&.5,.u!.n{.2!.E'.E'.2!.[&.2!.E'.V^.e].]].W^.2!.{].X-.X^.Q).+=.x,.s{.2'.X-.|'.@* X-.2'.R* 2'.R* R* R* f%.f%.<@ 3' 3' a{ f%.X# Y^.Z^.F!.`^.P'._).P'.y{.[). /.z% ./.'$ x+ !$ !$ y% '$ B^.`>.+/.@/.#/.7'.)>.e,..^.e,.$/.zf {g Yb {f %/./.~. +. i~ S M@ J M H$ I A G G z G N b' D :# M= m ", +"L$ ;b *) BN J$ 5_ .( I/ #S [n 1) K$ 0' J$ L$ 5_ K$ L$ J$ # = L$ J$ V@ V@ + ]& $ [* = # |* . L$ = . = # 1* > . # > |* & # > > o! & > Z, . . ]& ; S$ + Q$ . N$ ^& V@ - N$ ; P$ > - & $ $ S$ 2 2 > Ez ^ -.| | ) ; Z! { 1 N$ N$ ] ; 4 / ) N$ 4 [ X@ ; > { } *# 1 N' ~ ## ( ,# $# 2 d 6 ## *# a Z! 6 ( } ( ># 0 7 6- b ( a $# 6! ,# a q> !# g a 0 e |& n d ~# L= n 2, n^ Y$ h n^ h Z> 2, h ]# }& V| b' Y$ Y$ [# @= Y$ /# p /# #] 1Z '> G F= W) D m /# /U z $S w a7 ).z a7 z z a7 a7 8* T^ ,/.I 2Z 8$. Z O@ n! 8* .@. V .@.M 4>..)..@.(#.JW H#._#.aV _+.B$.-*.aV B$.-*.I#.yS '/.aV k#.oY )Q )Q +Z RT +Z )Q +Z R%.G&.+Z H&.9X w@.R%.<#.0&.hT 4..E` E` D` .` 4..E` o;.4..a&.a&.4Z :=.s*.#@.!*.~*.<=.z@.r*.#@.Y;.7>.7>.7>.8>.T,.#-.P-.u*.)/.x%.C .PW _W ++.#..*` {$. %.d .M~.d .b].%+.p!.E..d .E..]*.E..-@.p#.+#.mV ]$.Y*.(&.}T K` K` }T N~.IX HX =V }T IX IS HS IX IS pT PV N` wl PV =Z XT nV SV gX JR HG #G QQ ..'.1/.1/.0^.2/.2/.`].9;.3/.4/._b A~.Yb $e _f nc _f nc =d nc %e ub -d -d #H #H yh yh yh 'c )%.yh )%.yh )%.)%.)%.yh &/.#H jZ =d wh ub =d ^f 5/.ew 8w ni 7V 6/.Ro qu gO eE 7/.'B 1i ND [q #= N z 2; t ", +"R@ L$ <{ =[ G= ]& 0' I/ J$ <{ = # + I/ p9 + # + J$ # $ ;b + + ]& [* + [* . ]& $= V@ . + - $ + V@ $ ]& # . ; ; $ $ . = Q$ [* Q$ = L$ . 2) %= & * . & ] }* | | ; H= U@ R$ | . %= & ; ^ Q$ ; N$ ] ^ *' U$ %= ~ 2 2 2 %= & ~ N$ Z! ) ~ /& ) V~ ~ 2 ) ## Y@ ## ## 4 } *# [ &# ># B; ( } { 6 /& Y@ } a ,# d $# 6 6 7 6 3* ( 7 i e z: L= e n a k s> 0 n n !# s> c c n v n ;= `$ Y$ n m p Y$ `$ % 4* :# /# `$ m t F 4* D @= p 1; w ^# C z F= :# G G F= z z K 1& E E z '&.1& 8$.8* T^ Z V c- M V V c- Z V .@.4>..).t%.x .z .E>.aV L >*.B$.oY *I iU I#.(U yS J-.YX K-.a/.)Q RT RT Z .RT 'Q #N b/.+Z 9X sZ Z .R%.H&.{&.q*.^,./!.d~.CX CX hT .` 4..J#.3Z 9&.E` 4Z #@.z+.c/.h{.!'.#@.N#.9).s*.n^.U,.~*.t'.7>.T,..#._;.t=.i-.wZ a .C .E$. %.*` h2 K>.{$.* .%+.%+.E..* .& .d .%+.p#.-@.+#.b` |#. Y 1=.RW d/.IX HX oT 8@.2=.L` [W IX }T }T }T =V [W L` gX qW nV PV pT nV O&.nV qW PV PV oV }P ~S |I lQ 1T G UP LR 3P cN 1O 1I 1I CI 1I XA UK XA ,G JG Jx .- v) H# H# F# F# .- F# F# F# .- T. F# ++ Y. b% R; s* b% L# Y. ++ L# Q. K# .+ ^^.^^.R; .+ 5= c).#~.$~.$~.c).c).c).R~.Q~.f/.R~.R~.R~.v,.)).g/.^/.d].d].)).)).)).U^.d].v,.//.f>.~).h/.i/.t!.n{.~).t!.t!.j/.t!.n{.m{.1!.2!.D'.<'.E'.D'.k/.E'.E'.p{.E'.2!.2!.l/.x,.m/.p{.n/.R* s{.x,.X^./].2'.]].X-.x,.2'.R* R* x,.R* !@ @* <@ <@ !@ J- !@ 3'.4@ o/.p/.q/.p).r/.s/.x{.z!.t/.|! |! l+ 9> Fl Fl dz _i F+ F+ )$ u/.v/..'.w/.#/.<~.H^.0^.7'.G;.x/.}b ^f vd _f *e nc &e *e rc xe ub ub -d -d $c *e yh +l e*.)%.)%.)%.y/.'c ~=..$.e*.~=.yh ~=.=d ub #H ub =d {g z/.A/.w$.B/.#].7].7/.wv eE `y k;.C/.D/.2q E/.F/.#t #t #t To &o =o IC G/.0K aw RB eE eE |N |N JT 9T WY (j 3g NY H/.~. G@ ` S 1# S P@ +% z K@ M I C A G D t ~& D C ", +"V! <{ I/.s' 2^ 0' 0' I/ L$ R@ I/ 5_ =[ 5_ 0' ]& * + L$ 5_ + ]& #^ L$ R@ # + }, # ]& ]& . & & $ ; > # V@ J/.+ = S$ Q$ # # . $= . = - }* ' $ $ Q$ & - . * > - ; $ Z! V@ > $ ] %= > T- | & # T- R$ Q$ ~ |, & $ ] P$ H= ] [ ~ 2 ; H= N$ ~ 2 ## | | Z! /& 2 { Z! ( ## { } { } &# ,# D, d a ( } d 6 } ( 6 Y> d a a a /& 6! k j 7 -> } k L= c a 0 s> L= {# e K/ Vj e }& 0 r Y$ % K/ `$ K/.Vj h m `$ q q 4* D `$ m t w m `$ [# m s> w w :# $S E F= :# z a7 w z '&. #.$S 1& 1& 1& 1& L/.$T T^ m;.O@ n! V c- c- O@ JW c- .@..@.(#..@.4>.5 .iU aV A: ` :#.:#.oY *I oY (U yS K-.BX +-.+-.#N RT )Q _=.)Q +Z RT +Z Z .Z .-X R%.G&.+@.3@.3@.3@.0&.,$..` 4...` 9&.E` 9&.:=.E` 9&.y@.pY ` .b&.M/.M/. ..5Z Y;.......8 .N/.v%.S%.)'.0 .N-.N-.N#.M#.^W %Z 6@.*@.a .E .a .++.yZ d .'X gV * .E .% .d .]$.d&.& .O/.zY dX -V P/.d/.HX }T HS IS M` G..L` HX HX oT }T G .=V =V Ix HR pT pT nV PV 5Y pT qW ;Z nV HG XT Q/.#G !R .K'.)>.`].H^.H^.H^.+(.@(.]f Zb ^f ue (.,(.v@ G@ 9* Y T S M@ P@ B P@ I I I I D `$ G C 4* 4* ", +"BN <{ p9 ], =[ + I/ I/ ]& I/ 0' + K$ 5_ 0' ]& # # 5_ L$ 5_ L$ L$ = ]& R@ [* # > = $ S$ S$ $ . # # ]& V@ Q$ [* # > > = U@ # & ] . 2) U@ S$ Q$ * U$ Q$ ; %= ^ > ] > ^ X@ N$ S$ { |* =' U$ $ # ; Q$ ; N$ `@ | = N$ ' P$ ~ ~ ) *# , 2 R$ { ^ xS 7- < X@ H= ( 5 *# } } ( 4 1 ~ d $# 6 k 6 ( ( a 3* Y> 6 &# a 6 == 6 0 b ,# k ~# a ,# 3* 2* k a *= s> s> 6! !# 9 e Q{ n p r c Y$ s> 2, K/ ,> A~ h p n q m #| ^# Y$ |& t @= #| _# ^# /# ^# /# w C D /# u B F G /U w a7 G @= z w I I KW a7 8* =X .@.1& .@.1& V V 2Z V c- .).4>.v@.v@.AX 5 .J AX I-.aV MW *I '(.WX oY oY k#..V WX yS )Q )Q RT +Z RT +Z )Q Z .+Z G&.EN sZ w@.lP 9X hT hT +@./;.CX 0$.AS E` 9&.4..,$.3Z Y!.W;.` .:=.)(.M/.M/.s*.S%.<=.s'.N/.v%.c&.0 .0 .$ .c&.K&.@..#-.t*.I&.1+.U%.r;.*` ++.#.. %.d&.%+.K>.d .d .d .+#.* .+#.E..-@.]$.|#.; .3%.G$.e .5+.G..}T K` }T P#.=V G..IX HX > .HX Q#.PV Vw IS PV IS wl PV 5Y nV qW OQ PV HG UP }@ R* H] b$ !@ :@ :(.<(.[(.}(.|(.1(.2(.P'.z!.3(.y% s+ o+ dz 9> Fl 4(.On _i 3c L Xi 5(.n~..'.`>.w/.6(.`].0^.7(.x-.8(.^f P;.(g nc &e %e ~=.ub ~=.&/.yh yh yh )%.9(..$.$(..$.$(.:b :b :b 0(.e*.[R a(.:b .$.!=.)%.@^.3$.$c -d td H*.7V Jj b(.c(.~F wv eE 2G 2G `y ~F 2G d(.e(.f(.f(.l h(.WM KT JT QD %W }j `` dk ii ^F i(.j(.z@ ,= C$ P@ P@ U H$ I |{ N B N m `$ /# `$ t Z$ ^# t ", +"]^ #S jP J$ G= BN p9 I/ 0' I/ + R@ BN 1) 0' 0' # Z, K$ 0' + ]& ;b = ]& + # 5_ . > Q$ Q$ ' $= ]& L$ # * . V@ + Q$ . - S$ Y! ]& $ . k) & U$ - ,Q . ; = & & . P$ H= | X@ & | ] & + - ; ' ; N$ Ev U@ ^ | S$ ; ] Q$ ; U@ 2 ) T- ~ N$ X@ [ 2] ; # 2 P$ 1 [ | 4 => ( 7- ~ f] /& d 1 d $# 6- V~ d } 6 D, V~ [ 5 ( 3* 3] } $# 0 7 6 $# 9 q> 6 6 q> d ,# e 0 k 6! K/ 0 ~# ~# L= ,> W$ ~# n h n^ ,> `$ ~# n ,> ,! m /# p 1; n b' ,! /# m /# w $] xE w 2; 2; B C` $S z B '&.F= w w @ .F= z z A$. #.$T F= 8* V L/. Z 1& O@ M .@..@.4>._+.4>.5 .:#..@.3# Z..Q SO p*.MW iU aV k#.SO oY b-.,*.3d ;$.(U RT RT +Z )Q RT +Z RT Z .+Z G&.G&.Z .|@.<#.0$.+@.1@./!.w@.3@.CX /!.9&.L-.E` a&.a&.4..o;.f-.:=.9).=].c/.k(.l(.c/.k(.9).v%.M#.!$.7>.N-.s*.P-.x%..#.K&.L~.m(.%-.s;.n(.*` {$.d .o(.E$.E$.%+..%.L>.E..* .* .E..* .%+.p#.+#.g$.3%.c` F .G..e .y%.HX IS IX 7+.HX HX G .G .qW IX IS nV [W qW JX gX nV PV #G

J 5M -J 5M |I 8 o8 n8 Ye Vi Q5 o8 Ye a3 o8 o8 4v |c Td ]: Sd Td ]1 M} O~.R4 ,/ ,/ ,/ /] ,/ 9~ ,/ 3| /] =] r~ 9~ =^ Q] Q] =] =] Q] Q] D> D> =] Q] ]' .- H# y' H# v) H# F# 1> S. F# F# H# Y. T. F# F# .- ++ Y. L# ++ Y. Y. U. s^.Y. .+ T. Y. R; c).~/.$~.c).$~.$~.~/.l{.$~.#~.c).c).s(.c).t(.]/.L].d].T^.%~.v,.)).d].)).)).d].d].)).d].M].t!.n{.u!.u(.:^._^.n{._^._^.n{._^.v(.n{.E'.2!.E'.D'.p{.n/.2!.E'.p{.p{.2!.p{.P).t{.]]._/.p{.w(.y^.V/.R* 2'.ha ]; x,.J- v!.x(.H] v!.H] g> J- ]; R* s; s; b$ y(.z(.}(.A(.|(.B(.C(.o~.V].3(.D(.A- '$ 9> dz Fl bO .F(.6(.6(.2/.0^.)>.b!.h^.Zb vh 0' + > + # . > $ > . > + - & =' |* + $ o! | . > U$ N$ ; X@ %= U$ S$ S$ > %= o! & T- H= Q$ S$ | ; ) S$ ; $ ^ ] ~ 8- ~ N$ U@ 2 R$ 7- { [ xS [ W@ | ( ~ { 1 U@ 05 *# | ; /& Y@ $# 7 1 a' V~ 4 8 $# Y@ D, $# N' ,# 6 a 8- 0 ># q> 7 a Y> } a 7 ,# a q> 2* c z: ~# ~# 0- 0 ~# c &].n L= |& 2, Y$ A~ c i ,# ,> r n q Q(.Y$ Z$ b' s> /# 4* 4* q $S 4* 2; G /# t E /U F= G C` E t *].z C` z AR a7 1& x 8* a7 AR 2Z c- Z 2Z .@..@..@.t%. V .@..@.x . V =X p=.y .(U I-.H#.*I *I oY iU oY I#.k#.RT iU (U a/.)Q +Z )Q Z .+Z RT RT G&.+Z +Z 3@.Z .|@.R%.e-.{&./!.3@.{&.AS hT .` 5>.L-.4..,$.a&.o;.L-.:=.<+.r*.,{.k(.M-.T,.U,.R(.8>.i-.G].m!.U,.t'.>].w'.U,.}#.*` 1%.x'.S(.L&.++.{$.++.#.._W %+.C@.]$.E...%.E..8Z E..E..+#.* .p#.I` F .E..F .;V e .qU >@.HS ,@.=V =V L` G .HS HX r#.HX pT nV nV qW pT IS KH

H# ++ U. b% T. Y. F# T. Y. .+ .+ Y. + #~.T&.U(.c).$~.#~.#~.#~.U(.#~.#~.Q~.('.$~.V(.W(.i~.X(.}!.g/.v,.d].X(.d].d].)).U^.d].U^.//.:'.N].m{.Y(.t!.n{._^.Z(.n{._^.`(. _.E'.2!.2!.2!.2!.V^.O].E'.E'._/.2!.2!.V^.p{.t{.]].p{.2!.O].+=.R* 2'.2'./].V/.R* 2'.R* J- R* J- ((.R* J- :@ R* ]; !@ @* P# ._.r>.q/.+_.@_.#_.z!.$_.%_.s>.5^.s+ Xi Yr Yr UN ^R ot On 2K On v+ &_.*_.p>.F(.`>.`>.w/.K'.Z].=_.lv ub xe %e %e &/.xh yh )%.e*..$..$.:b 9(.:b x&.9(.H(.x&.9(.;c ,c H(.:b ~%.x&.H(.:b .$.)%..$.e*.@^.+l -_.;_.>_.,_.'_.)_.!_.~_.^y [x ou dw ou {_.]_.^_.9w 9w #t |* . S$ - > $ ^& S$ = N$ . S$ . | $ . . ^ T- ; > & Q$ X@ ] R$ ; ] & & ~ ^ N$ H= ; U) 2 ~ - 2 P$ ~ | 2 N$ U$ | ; U@ X@ N$ ] | *# [ [ | { ) ) D, 1 6 5 } } ># ( : d :_.## $# Y> $# :& ( ( ,# ,# b a ,# } ~# i 7 7 V) z: c 0 k k ~# 0- r !# 0 ~# ~# z: s> E, s> c h n `$ s> `$ Y$ q p `$ b' % `$ q s> p w u #] E /# % /# E 2; /U (# '&.F= a7 /U z a7 a7 z n! 1& JW z AR .@. Z O@ 1& V c- c- .@. V 4>..@..@.x .v@.v@.5 .*I Z..I#.i5 *I *I -*.*I <_.(U +-.[_.(=.,*.^P RT )Q RT RT ^P RT +Z Z .RT |@.G&.H&.'*.+Z e-.q'.CX $).AS /!..` CX 0$.9&.J#.a&.9&.X;.a$.r*.Y$.X;.}_.|_.r=.)'.9).Y;.t'.Y;.I>.1_.I>.2_.g~.m!.{*.U%.3_.L~.L&.*@.6@.++.%Z oW nW &` xZ %+.& .%+.* .E..-@.d .%+.E..-@.o#.jV pU b` 4z 0Z HR K` =V HR }T HS 0..}T }T =V M` =V !X PV nV IS pT [W HR =Z >V

V #G YO QQ LJ QQ S. S. F# H# F# F# F# O. H# Y. Q. F# H# T. W. R; Q. ++ F# Y. ~/.5_..+ R; U. $~.T&.$~.$~.K].$~.#~.$~.#~.$~.~/.#~.c).]/.6_.7_.8_.]{.U^.M).}!.)).)).)).v,.d].d].d].U^.M].9_.9_.t!.Y(.0_.a_.t!.t!.N]._^.`(.x^.2!.2!.E'.D'.2!.e].b_.c_.2!.2!.p{._/.V^.W/.n/.e].3!.e].t{.R* 2'.X-.R* H] R* x,.x,.2'.2'.@* 3' d_./; [/ 0$ n, R* 2'.4' :/ e_.7!.f_.g_.h_.x{.y{.i_.j_.k_.>$ 8> '$ qt cz .B bO $q ot 5H tQ On l_.m_.*_.F(.n_.o_.`>.7'.`].p_.,n ub %e ub ~=.'c yh .$.e*..$.:b :b :b ;c H(.,c }i _N Ac YN YN Ac tb }i ~%.x&.}i ,c :b !=.0(.e*.e*.q_.r_.s_.t_.R!.`y ]n u_.^y tv ^y [x ou vv v_.]_.w_.O(.O(.x_. - ^& = . - . $ ; > - & & ^ . > | Q$ . - N$ $ o! & # ; }* ] ; N$ ; - ~ | & Z! *# ~ Z! [ [ [ ; [ 8- X@ Z! [ N$ | { X@ ( } < } [ $# Y@ Y@ Y@ 3* [{ ( 6 1 } d $# 6 b d 6 9 < 6 6 k } e J= 6 k 7 3] c a 0 L= k h h n L= Q{ h Q{ n Y$ 0- n % s |& `$ c{ c q Y$ n^ u ,> v r ;) C {& ^# /# G D @= G F= t F= F= z F= #] a7 z a7 1& z I Z I KW ). V Z T^ a7 JW T^ JW c- t%.4>.4>.4>.0S v@.>z (#.B..aV iU *I d{ iI iU (U aV aV ^P .Z E>.yS ^P )Q )Q )Q +Z +Z +Z )Q G&.+Z 1@.G&.+Z 7)._=.R%.$).0X 3@.bV o;.CX .` d~.E` E` E` ]&.o;.f-.E_.#@.)(.X;.F_.X;.)$.i-.9D N{.!$.v*.m!.I>.1_.G_.u=.H_.j{.I_.et L&.L&.#..xZ _W _W DR *` 6@.8Z * .o#..%.%+.p#.%+.E..+#.E..mV -V pU Y J` oT M` NV 0..HS IS > .=V L` L` [W [W }T HX PQ KH pT }T IS PV JX *T

Y. T. W. L# Q. T. U. Y. Y. Y. Q. ~(.5_.J# .+ J# M_.$~.M_.s* l{.$~.$~.#~.$~.#~.~/.#~.t^.8_.V(.{/.T^.g/.)).)).N_.)).v,.d].d].d].U^.d].d].X(.t!.j/.~).N].~).O_.0_.(/.N].9_.`(.P_.x^.2!.1!.D'. _.1!.f].Q_.{]._/.{].p{.l/.n/.p{.n/./].@* ^].2'.@* :@ x,.2'.t{.2'.<@ e$ R* W% R* <@ W% W% W% }- P* g> n, R_.S_.T_.p).U_.V_.X).{~.$_.@) l; V; )$ 8> m9 pj cz .B 4I 4c On zT $q 8> T{..(.p>.`>.p>.o_.`>.F;.W_.X_.zh xh yh )%.!=..$.!=.Y_.:b :b x&.~%.~%.Z_.he Ac zc !%.$n >c $n >c !%.tb tb zc hE x&.`_. :.Y_.a(.3$..:.A/.6/.+:.@:.u_.^y #:.cw ^y AK tv fk $:.%:.&:.*:.=:.-:.`y bw ~n ;:.:.,:.'. +. X +% +% O@ I D G G D G /# C ,! m w 2; ,> ", +"L$ R@ R@ J$ L$ BN G= I/ I/ I/ G= 0' I/ I/ * =[ 5_ = 1) 1) ]& ]& V@ ]& L$ $ V@ ]& + * $ . . R@ |* 1* > $ V@ . ' V@ . ' ]& # = $ $ $= ' S$ > > + $ $= . $ }* U@ & > . # > Q$ ] ; P$ T@ ~ ^ o! | + U$ ) 1 U$ S$ . . =' & | ; ^ | ] & 2 2 [ R$ %# X@ H= | N$ { X@ ( 1 ## / < d 7 ( 1 -.( d { 6 ( { ( ,# <& 6 6! 6 &# 6 a b ,# 6 6 6! 3] Y> a 0 L= 8 0 n 7 L= 0 c ~# 0 e ~# ;= n 0 a o _# n 2, L= V| u ^# s> `$ q t s> D /# $S z C 2; E w G b' 1Z F= a7 G z /U F= z '&.'&.t K T^ a7 2Z a7 2Z a7 V T^ JW a7 JW .@.4>.J{.v@.2Z 4>. V M 4>.(#.4>.t%.x .5 .oY *I k#.*I (U *I XX y+.(U a/.)Q RT #N RT +Z RT ^P Z .RT Z .!&.G&.RT F].G&.':.+@.CX '*.E` hT CX 4...` E` .` +` o;.:=.#@.<=.)$.3..^&.M-.<=.):.<=.!$.B .t*.<=.t'.m!.2_.H_.f~.!:.t=.r;.*@.a .#..#..*@.nW DR _W {'.d .O/.%+.{$.X*.* .* .8Z p#.I` P/.RE 4Y I` @#.oT 7+.;V >@.HX ;@.HS HX }T }T }T =V }T M` HR HR AM HR PQ IR |T *T

.u].3:.td ;g [R .$.a(.;c $(.~%.H(.4:.!%.k..lA !%.!%.!%.>c >c Q$.@$.~#.< .o%.o%.Ac tb !%.Ac YN 5:.!#.:b 6:.7:.gE R!.xN 8:.u_.JC ]n ^y tv tv vv 9:.0:.a:.b:.`H c:.Fa _` )g 3j tv ^n uv vv [x ou eE pu |N KT $W .kh =t WY ~j +m _*.{. E@ E@ |; P@ S E= I C t N G C D t `$ /# m w ", +"*) G= BN 9| jP jP ]^ I/ 0' I/ I/ I/ 0' 0' + # ], ]& + # 5_ J$ # .( $ + 1) . . + . k) $ }, & . ' $= + + 0' V@ Q$ $ U@ . > $ # > . $ - * = Q$ # $ (& - U$ [* Q$ $= U@ > S$ ; N$ & W@ H= . ; ; ' | 4 %# > ~ { 2 N$ ~ | Q$ ; ^& { 2 | } ; ~ 2 H= X@ ; & ## { : ## I= *# d 6- / { 6 < d d 7 ## } } 7 } 7 7 7 $# 7 6 [{ b c6 7 n 5 6 a 0 0 b ~# L= L= 6! j L= k {# c 2, ,> ,> t' 0- n ~# p s> Y$ m Q(.`$ ;= s> % w 2, % 1Z C w C #] :# F= G :# E #] E .4>..@..@.e:.QT x .5 .AX iI oY iU I#.A: aV A: BX X!.I#.oY +-.G&.RT )Q )Q )Q )Q RT G&.Z .Z .G&.Z .R%.Z .e-.0&.hT 0&./!.q*.4..W;..` 4..a&.4...` 4..` .4Z `X ` .7 .B .#@.`X ~*.!*.N#.8 .S%.T,.T,.m!.f:.s;.g:.a].a>.a .*` *` *` _W cX +..cX #..{$.%+.p#.& .%+.* .K>.%+.* .p#.E..@#.-V p#.E..mV oT G .3%.i$.HX 0..AM AM HS HS GR Vw =V HR pT nV [W |T vO HR YL FR JJ

8 Q5 Ye n8 n8 n8 n8 Ye o8 n8 Q5 n8 n8 Sd R4 o8 Rd c3 |c M9 R4 M} K0 ]: 9~ ]! ]! y/ =] 9~ 9~ =] Z) 9~ 9~ ]! =] 0~ 9~ 0~ y' S. D> 9~ `= F# F# S. S. F# S. F# O. F# F# O. S. F# L# S. S. U. Y. Y. Y. Y. Y. T. h:.Y. J# r& p- 5_.~/.c).R/.t& #~.#~.R/.U(.#~.U(.#~.$~.i:.f/.j:.k:.]/.]{.U^.U^.u^.U^.d].U^.d].U^.X(.U^.(:.O_.9_.:^.Y(.l:.(/.a_.`(.:^.~).`(.n{.P_.x^.2!.p{.k/.p{.p{.E'.O].2!._/.2!._/.e].W/.m:.4'._].t{.t{.t{.x,.x,.t{.J- R* |- b$ H] !@ J- X% |@ !@ W% a{ @* H] &* n:.o:.T{.v{.7^.1(.X).z!. (.@) ;$ n+ y% y% z- qt UN hZ p:.-P j_.*_. ,.p>.*_.*_.F(.6(.q:.r:.L%..$..$..$.;c H(.x&.Ac Ac Ac o%.>c fw +$.s:.o%.~#.^@.l@.^@.l@.@$.@$.< .t:.>c o%.$n tb ~%.~%.!#.I(.u:.v:.7].w:.x:.y:.^y ]n |j ^y u_.i!.$:.z:.A:.N(.B:.C:.;c 4:.A/.AK cw |N gH |q nu 1q ^y AK .R S {F KT (Z KL dL ju D:.E:.A@ V C$ P E$ K@ Q@ A Q@ z #= /# 4* {& G m Z$ p % ", +"L$ J$ jP 9| I/ #S I/ R@ L$ ]& 5_ I/ I/ L$ 0' = + ]& ]& R@ + ]& @ # T@ L$ L$ Z, + $ $ $ = ]& - + ]& $ V@ $ Q$ & ' H= H= $ - . . & E! = > > > =' - & * + S$ }* + > - U@ N$ . $ o! J) ^ $= & N$ Q$ o! ) Q$ ' Z! ) ; ] | . Q$ 4 Z@ 2 4 | { ~ [ *# ; g{.{ Z! [ < /& F:.) : 7- 1 2 I= 6 +# d Y@ 1 8- X@ d ( ## 6 *# d /& $# 3] q> 7 a Y> 0 ,# a e 0 k 3* 0 |& ~# a n L= h |& 0n ,> h 0- 0 Y$ h q p 1; r Y$ 0 q m s> /# t p Y$ m /# w ;{.w /# /U :# G /# /U #] /U /U F= E '&.1& '&.a7 z I {& 1& 8* AR V 1& c- 8* T^ I 1& V O@ m;.4>. V c- .).v@.-*.SO A: SO iI y .G:.>*.SO p*.H:.I#.[_.zS (=.+-.^P R,.RT )Q )Q )Q )Q +Z Z .Z .G&.Z .+@.'*.3@.{&.+@.AS $).4..D` q*.E` .` 9&.}%.]&.+` ]&.z+.z+.` .9&.I:.<=.!*.9 . ..B .!$.S%.7>.T,.Y;.J:.>].w'.K:.a]._;.%Z a>.*` a .nW nW a .E .& .u;.8Z L:..%.E..8Z %+.d .E..c` p#.|#.p#.p#.mV L` L` -V |#.HX e .IX =V }T L` =V }T L` pT IX IX ]u HR IS HR IS YL cJ *T QV GH 1z _Q LJ YO .G :L }P !/.-J vL wL LR 8 'k n8 o8 Q5 n8 a3 n8 Q5 n8 o8 n8 Sd o8 S4 J_.o8 R4 Q4 A_ ,/ M} ,/ M} 9] ]! 9~ 9] ,/ =] 9~ =] M~ 9~ 9~ =] 9~ =] ]! 9~ (^ a~ H# D> H# F# D> F# S. F# a! H# Y. O. O. J. Q. R. - Q. S. W. Y. T. Z. L# Q. Q. Q. ~(.M:.X. + R/.R/.c).~/.K].N:.h% #~.U(.#~.M_.$~.s(.t^.s(.](.O:.]:.T^.d].P:.N_.U^.X(.U^.d].)).d].U^.Y(.Q:.a_.t!.9_.O_.0_.a_.~]._^.(/._^.n{._^.`(.2!.2!.E'.x^.k/.Q_.R:.2!.p{.l/.l/.e].g).W/.n/.n/.t{.U/.m:.::.W% t{.R* 2'.W% e$ H] R* !@ x= R* |@ J' d$ 4' e$ S:.T:.U:.A(.V:.k].W:.l).p~.t/.|^ t/.-$ =; >$ /: |K 3U aO X:.$q ot &r u+ )$ Xi Y:.C,.~>.*_.*_.D,.F(.Z:.`:..$.$(.Bz }i ,c tb zc zc !%.>c Q$.Q$.~#.~#.fw 9#.l@.l@.U@.p@.A#.0k U@.l@.~#.< .< .o%.+$.tb P$.~%.Y_. <.6].hW 8:.!_..<.tv ]n B:.dw kh +<.@<.#<.@<.$<.%<.&<.*<.=<.-<.;<.hA |j mu 6r mu ~n ^n Wo 3q eE DV )B /y 7V kh `` ><.,<.!. R D$ Z M@ M 4, Q@ N N M t `$ N N C Y$ D m ", +"R@ ]^ I/ BN #S #S I/ R@ R@ L$ I/ 0' 0' 5_ ]& * # 5_ p9 ]& # + + # + ]& ;b # # ]& ]& + + + # Q$ + = & & S$ ' S$ o! #^ . |* > > U@ U@ = + |* |* $ > - $ T@ U$ & > > R$ ; N$ U@ U$ (& H= Z3 - = & & U@ ] f] T@ | 2 | ' | %= Z! | N$ 2 ## 8- { | Q$ Y@ Z! N$ - | | N$ N$ ~ 2 ) [ X@ / $# } ( D, D, [ / d ( d 7 ( /& ~ D, V~ [& 7 ~# ,# ~# k V$ 5 0 ~# <& 0 g 0 !# i s> n n j k s> K= n n n V| c{ h 1; p q s> n y h 1; ;) `$ t p ^# 4* ;{.G `$ *].w @= F= z F= D F= /U :# F= F= ).a7 N 1& '&.1& N@ I V c- V $T 8$.c- V 2Z '&..@.t%.o^ T^ x .t%.z .AX B$.iU i5 4>.'<.B$.iU iU aV iU A: +-.k#.+-.,*.@-.+Z #N )Q )Q +Z Z .Z .RT R%.R%.R%.1@.G&.0&.0&.3@.'*./!.CX E` hT a&..` 9&.9&.4..9&.` .f-.#@.z+.)<....!*.B .$ ....z@.S%.)'.!$.)'.!<.t*.'{.m!.W*.@..a .C+.1%.++.nW _W a . %.d&.++.8Z d .& .%+.d .%+.%+.8Z * .p#.E..f$.f$.RE RP AM IS -V d/.=V oT IX > .=V HR HR [W HX ]u Ix Vw IS PV HR IS *T SV

c$ /<.(<._<.:<.U:.`^.W:.B{./~.<<.`/ E^.l; MH Fl 8> .B |K UN dz /X uK Yr 9> m9 On |^ m_.F(.D,.[<..(.*_.o_.}<.-_.zc Ac !%.!%.!%.Q$.< .< .@$.@$.U@.^@.U@.S+.U@.S+.S+.l+.aK >+.2x U@.p@.0k 8*.lA ~#.fw >c zc tb }i |<.B].1<.2<.3<.4<.]n |j ]n ~F 5<.6<.7<.8<.#<.$<.9<.0<.9w 0w a<.b<.!s #t * }* + Q$ # # Q$ = ]& $ & *' - > ' . > > o! Q$ ^ Q$ = U@ > Z, - . N$ $ > ; ' & U@ & H= > + . X@ ] & Q$ ] ] & ;# N$ & o! R$ U@ ; Z! | W@ N$ ) W@ X@ : - N$ 5! 2 | | N$ /& d X@ 4 { *# $# } 2d b 6- J] , 1 { 5 6 } -# 6 b Y> } 7 d ,# a k 9 b g q> 3* z: q> k {# 3* Y$ n a ~# k ~# h z: d<.,> e<.h l r h 1; 2, s> s `$ 1; y ^# /# m D 4* D y }& *].2; /U a7 G /# #] F= C` z G a7 '&.'&.a7 $T a7 a7 T^ c- T^ V H$ a7 Z V c- 4>..@.v@.(#.4>..@.t%..).x+.t%.(#.B..A: z .x .-*.I#.WX oY (U oY #N yS oY ^P ^P ^P ^P ^P ^P )Q +Z +Z Z .G&.+Z R%.'*.Z .!&.0&..` 1@.8).AS .` hT /!.o;.4..9&.4..E` a&.` .pY ` .f<.Y$.#@.......Y$.z@.z@.$ .g<.c&.1_.1_.T%.T%..#.w%.%Z a .%Z ++._W *` #..6@.++.% .& .8Z * .%+.* .8Z 8Z 8Z * .%+.* .p#.eX zY AM AM HS }T }T IX }T G .e .oT GR Ix pT }T Ix IS }T HR HR Ix IS XT [P OQ *T

8 J0 oj Pk J0 J0 Q5 n8 Z< Q5 n8 n8 Z< J].Q5 Q5 L9 a3 S4 R5 Q5 {b 0! 0! ,/ A_ 0! 0! <> 0~ 9~ q~ 9~ 9~ q~ =] ]! ]! {~ { 9~ {~ z! 9~ ]' F# F# H# D> S. .- O. O. F# S. J. F# F# O. S. T. F# S. Q. F# Q. Y. Q. R. Q. T. Z. W. R; h<.i<.^^.U(.#~.#~.~/.U(.j<.M_.#~.$~.#~.j<.k<.9,.i:.8_.](.l<.k:.X(.X(.)).m<.U^.U^.d].u^.d].U^.X(.n<.o<.:^.9_.~].n{.t!.0_._^.]<.p<.v(.`(._^. _.E'.p{.2!.E'.p{.l/._/._/._/._/.t{.U/.U/.:@ /].R* @* t{.R* q<.R* W/.e$ R* }@ J- b$ 3' W% :@ P* U9 d$ R* ^].c= r<.T{.s<.Z/.t<._).l).V].3(.3(.u<.=, y% BD Xi qt aO dz UN bO |K qt NH F+ @f v+ `^.k).k).q>.D,.C,.v<.w<.x<.!%.Q$.< .< .Q$.l@.0k U@.U@.U@.0k p@.m@.(@.y<.l+.m@.l+.aK 0#.y<.l+.l+.l+.$$.l@.@$.l@.< .t:.n%.tb z<.A<.}x 2G B<.C<.B:.vv .<.D<.E<.F<.8<.G<.H<.#<.I<.^_.ku J<.K<.rv # + $ > + $ . ]& = * P$ & V@ T@ . ' > ]& N$ > $ > > $ ; U@ & S$ ; ] ] . H= X@ | $= > Q$ ~;.' & N$ ~ > - ' | ^ | ~ N$ ; ~ ; 2 2 Z! | | 8- | { O<.X@ 2 X@ X@ { X@ 2 : { | $# $# ~ } 7 6 ( V~ d N' 9 3* ,# a 6 < 7 6! Y> 6 ~# 6! ,# 6 6- ,# 8 ~# ~# c a e e 0 ~# e h 0 L= c{ n^ `$ s> 2, t' K/ ]# b' b' 4* `$ /# 4* Q{ G#.~# u % 4* w :# :# w D D w G $S F= F= '&.'&.w C` P<.A$.'&.a7 1& AR JW N AR Z V $T T^ .@.O@ T^ 2Z 4>.4>.(#.4>.4>. V 4>.~,..@.C).*I B$.o*.-*.<_.:#.U;.B$.iU XX _#.I#.+-.+Z ^P RT RT RT ^P +Z G&.R%.+Z |@.G&.H&.+@.!&.0&.^,.CX 0&.0&.CX .` mL )*.J#.4..:=.+` 4..)(.]&.a$.f<.Y$.l#....5Z <+.z@.z@.^&.t*.^&.U,.Q<.t*.^W 0 .n#.*` 1%.%Z n(.a .++.& .% .++.C@.%+.%+.d .& .d .* .E..{$.8Z * .E..P/.J` E..; .5+.=V oT =V HS HS HS oT }T uP HS AM uP HR nV pT HR Vw Ix pT QV

J [P vL }P / &^ J0 >8 Q5 n8 Q5 Q5 n8 a3 Ye a3 a3 o8 L9 b3 ]: B9 d9 ,/ :} m{ 0! c3 m{ ,/ <> /] ]! 0~ 9~ 0~ 0~ 0~ ]! ]! z! ^! e/.9~ ]! ]! D> O. O. D> O. E# O. H# S. S. F# O. O. Y. S. ]' i' S. Y. T. S. R; W. .+ X. - Y. U. i<./<.R/.W. J# R/.U(.#~.#~.j<.M_.R<.#~.U(.U(.S<.U(.N:.T<.S^.U<.V<.(:.(:.^/.d].n<.X(.U^.U^.X(.X(.Y(.X(.Y(.Y(.a_.9_.a_.(/.9_.0_.(/.`(.`(. _.W<.X<.Y<.x^.x^.E'.p{.x^.p{.p{.p{.l/.n/.|- _]._{.n/.p{.l/.@* _].b$ b$ ]; !@ @* |- W% P{ |- d$ b$ 4@ P{ f$ Z<.e$ `<. [.3^.Z/..[.t<.[]._).y{.+[.;$ @) y- t+ h+ h+ o+ M& )$ bO UN ^R qt Xi Yi NH n; oJ Y{.k).s>.D,.D,.@[.#[.$[.%[.< .l@.l@.$$.S+.U@.S+.S+.>+.m@.(@.aK ]#.0#.]#.tf ]#.0#.4G &[.]#.#B aK m@.p@.$$.U@.l@.l@.fw < .>c *[.7].eE cw tv C<.yz ]n 0K =[.-[.;[.>[.A:.H<.0:.$:.,[.'[.)[.![.8~. V@ k) $ }* S$ *' # o! ;b [* & . Q$ $= > . $ H= N$ N$ Q$ ] N$ | . Z, P$ $ ; & ; Q$ 1* N$ o! Z3 > & ; V@ S$ 4 ~ ~ Z! | ~ | 05 U@ & Ez & [ 2 H= ] r2 S$ [ } 2] ~ ( 'W Z! 2 X@ | ( } /& /& : ## / < } d d d 2 } ## 6 x0 ( V~ 3* ,# 6 d b a M' } 7 k e 6 d *= 6 0 0 a n K/ c ~# 0- L= L= h r Y$ ,> 1; ;= % #| m 0- t ,> o/ q L= p q ;= t :# G w t :# 2; E 1Z #| '&./U /U a7 /U a7 z '&.T^ '&.P%.KW #= T^ ,/. Z !,.O@ c- .@.M n*.m;. V .@..@.{[.3# )^..@.PT v@. ` I-.(#.;*.-*.B$.(U -*.iI 5 .][.(U (=.^[.Z .+Z ^P )Q )Q RT +Z G&.Z .e-.Z .0$.+Z R%.R%./[.q*.^,.$).7` CX hT 4..5>.D` ]&.+` 4..o;.9&.` .z+.#@....` .Y$.B .z+.z@.S%.)'.6Z U,.t'.[=.vZ $ .N#.K&.w*.%Z s;.#..++.gV xZ #..*` %.8Z %+.%+.8Z & .%+.* .]*.%+.f$.qU 0..F .RE =V =V =V d` HS IS ; .oT IX HS HS Ix Vw HS }T [W HR HR [W Vw Ix vO YL uP SP ]! 9~ 8~ 0~ |= 9~ z! { =] ^! (^ y' a! S. M! { S. J. H# S. J. J. O. S. S. F# O. S. F# F# Y. - S. W. T. - R; Y. R. X. ~<.W. 5_._[.R/.U. I# .+ $~.R/.R<.R/.U(.T<.:[.U(.U(.S<.T<.f/.](.<[.[[.6_.X(.n<.X(.d].d].d].}[.X(.X(.Q:.Q:.n<.Y(.G=.0_._^.`(.`(._^.P_.^<.P_.P_.W<.P_.p{.p{.2!._/.2!._/.e].l/._].e$ t{.Y<.t{.L- ^].@* d$ P{ R* R* @* !@ <@ 4@ W% @* R* d$ }- }@ W% 2@ y] |@ |[.1[.E,.T{.2[.`^.|(.V].|^ n+ J* !w =; bz l; V; o+ qt Xi Yi UN aO .B Xi 4I -P $q bz E,.s>.[<.b,.3[.4[.e,.5[.l@.]@.6[.>+.>+.(@.c#.;r KB 4G r$.0#.r$._ .#B 7[._ .4G Vk _ .SZ _ .4G tf tf >+.(@.U@.0k U@./F zC j^.8[.=l [x |j 9[..<.bw |j 0[.a[.b[.b[.0:.#<.#<.0:.#<.$<.c[.d[.#t f f[.Oc 5# }; H@ H$ O@ M G z N= I F= G p z m ^# G `$ ", +"*) 2^ BN BN L$ I/ R@ I/ I/ J$ J$ ]& I/ I/ 0' #S R@ + ]& I/ = M$ + ]& $ + ]& $ = ]& + ]& L$ $ $ 0' ]& > # 1) . V@ = k) + + . 5_ # U@ - . + > . S$ ] ; ; > P$ $ & ] S$ %= > # Z3 # . S$ & ] ] . . > > o! ^ ; U@ H= ~ R$ S$ ~ U$ ; { 1 | & N$ { { X@ / X@ X@ 1 1 ;# ^ ( Z! 1 [ Y@ ( D, 1 Y> $# 7 Y> ( ( => i /& ( ( &# a k 1 0 Y> 7 9 b } 6 ~# V~ k tA ~# 0 n a 7 s> {# ~# ~# ,# g e h `$ {# n _# L= L= Y$ 4* q b' ^# s> ^# p -) `$ `$ t D y 1; m ;) /# F= G 2; {& B F= a7 .5 . Z .@.B).o*.(#.-*.0].aV B..p*.A: iU *I Z..J-..Z k#.BX Z .)Q 3d )Q +Z G&.Z .R%.Z .R%.-X sZ G&.G&.G&.R%._=.G&.'*.7` hT CX hT ~&..` G>.9&.CX 9&.y@.` .` .f<.l#....[#.z@.)$.z@.T%.U,.T,.T,.U,.t=.#-.M#.c&.K&.*@.#..1+.*@.6@.=@.E .1%.m(.++.& .%+.* .8Z 8Z %+.p#.d .E .E..|#.zY fS oT 4z oT oT 0..RP HS GR HS }T qU =V =V pT =V HS IS nV IS IS HR IR uP nK *T *T nK -J -J 1z -J 1z -J LJ }P LJ :L ^H BI BI _H fJ `L zn Lk JG XA XA Lk XA XA zB Ay oj ul [v 8 J0 >8 J0 Q5 Pk Q5 n8 a3 n8 n8 a3 a3 Q5 n8 n8 Q5 ): 25 ,/ I^ E1 g9 R4 ]: ,/ m{ ,/ 0! 9] 9~ 0~ ,/ 9] 0~ 0~ ]! 5% P] 9~ 0~ 9~ ]! C> (^ O. O. S. c, S. L. S. O. O. D> S. O. S. S. J. S. S. H# Q. Y. T. ~<.T. R. Q. Y. Y. W. i<.Y. i[.j[.r& J# ~<.#~.#~.#~./:.#~.R/.$~.#~.~/.j<.k[.:[.s(.^:.l[.k:.m[.U^.n<.n[.X(.X(.n<.X(.Y(.Q:.u(.o[.l:.~].P_.G=.p<._^.n{.P_.P_.W<.x^.^<.W<._^.2!.2!.p{.m:.2!._/.4'._/._/./].t{.n/.@* m:.m:.((./].n, @> ((.W% e$ R* J- @> d$ n, _].R* }@ W% ((.p[.p[.q[.r[.v{.<].s[.t[.u[.+[.3(.!- FO RS .B @) j_.r+ aO .B Xi 3U 1K Xi V; u+ x+ m9 Ib cz h_.m_.q>.v[.w[.w/.F;.Q=.l+.;r l+.(y o@.r$.4G 4G 4G 4G _ .X+.y#./@._ .=f /@.mk =f /@./@._ .mk SZ X+.l+.tf y<.6[.S+.p@.]@.x[.,_.y[..<.vv 9[.z[.z[.X'.A[.n0 B[.H<.7<.G<.C[.0:.8<.D[.,[.E[.F[.#t ", +";b *) 2! L$ I/ I/ ]^ 0' <{ J$ 2^ L$ R@ G= ]& J$ # $ + ]& 0' Z, # K$ ]& L$ ), + # # ]& k) * # $ ' > # & ]& = $= ]& L$ V@ > $ # > U@ > $ - - 2) > U@ =' ]& > = + $ ; & & ; ! > ; R$ > ] ~ ; X@ | > ; N$ ~ & o! > | U@ Z! N$ Z! 2 [ | ; | | { 2 | ) /& ~ N$ ) N$ 1 ) 'W { 2 5 6 U- J] 1 $# d 6- { d == 1 $# 5 j 6 4 6- 6 } e 7 q> ,# /& 6 a a k L= g h {# j 3] n h e 6 n Y$ c % }& s> h c n |& m p #| ^# p b' /# /# Y$ m 4* ^# ^# :# % ,> D /# <, #] /U G .I-.4>.t%.{[.4>.I-.B$.oY t%.K{.oY -*.BX SO (=.J[.(U oY ,*._M #N )Q yS Z .RT G&.G&.+Z Z .bV G&.7).e-.G&.q*.0$.0&.^,.4...` E` $N 4..9&.z+.a&.4..4..]&.Y$.:=.K[.EX 4Z 5Z c&.!$.!$.U,.U,.7>.m!.9).K&.x%.T%.#-.C .a .1%.L[.*@.++.M[.#..#..++.8Z b].& .& .%+.d .%+.* .* .8Z b` RE pW AM P/.GR AM N[.IS oT oT oT AM OV IX L` }T HR =V IS Vw Wq Vw JJ YL pT YL [P nK vO KH }P 8 Pk Z< Pk J0 &^ Z< Z< a3 Q5 Q5 Z< Q5 ed Rd d9 Sd m{ b3 E1 R5 R4 ,/ 0! A> m{ m{ 0~ 0~ /] (/ 0~ ]! ]! ]! /] 0~ ]! 0~ 8~ 0~ ]! M! ]' S. O. J. S. O. S. S. O. O. Z. O. Q. R. O. S. Q. Y. Q. O. 3= S. T. Y. X. p- P[.Q[.M:.R[.X. Z. ~<.U(.U(.j<.U(.S[.l<.j<.#~.h).h).j<.U(.](.U(.8_.](.k:.N_.u(.d].n<.n[.X(.X(.X(.0_.u(.T[.0_.9_.9_._^.P_.`(.`(.`(.`(.`(.`(._^.P_.X<.P_._/._/.2!.n/._/.p{.^<.l/.l/.U[.U/.m:._].%p n/.@* n, _(.v= W% ${ e$ e$ :@ ]; d$ e$ V[.n, [@ f$ 3' 2@ W[.X[.Y[.T{.Y^.Z[.`[. }.G,.t/.6> .}.+}.AU n+ m+ 8> bO UN bO ,T .B cz Nn w+ N> x+ o+ v+ t/.E!.@}.#}.$}.w[.%}.&}.&[.4G 4G o@.SZ _ .Vk _ .Q . d *}.=}.} .NO -}.=}. d W` W` kA W` X+.mk =f _ .4G 0#.4G &[.m@.c#.A#.;}.,_.>}.9[.bw ,}.uv ^n hA '}.)}.!}.iP ~}.!}.{}.H<.b[.8<.0:.0<.J<.lu [q #t 5r &o .wv xv QD LT Zo UI `o ^}./}.)& @. S S I A Q@ w #= G N N C Z$ ^# % p c{ ", +"(}.J$ *) BN #S BN BN BN #S J$ J$ I/ I/ 0' I/ 0' 0' + * I/ I/ = # T@ ]& k3 + + ]& + # + # # ' ' S$ ' ' . # + 2) > . #^ 2) S$ ; U@ > > > $ . ] [* $ . & & S$ }* N$ H= ; T- ~ P$ ; U@ H= | . S$ ; H= N$ ; { X@ ~ 05 > S$ ~ ^ ; ~ U@ R$ [ H= N$ ^ U@ ] 2 J) <& | S$ ~ [ ~ 2 [ Y@ } ( 7 5 2 Y@ N' Y> } 5 7 7 D, 2 3] [ 7- V~ 3* k !# &# d k 6 d ,# ,# 8 Y> ,# 0 L= e n n ]# r r L= 2, h ;= h % {# p o K/ Y$ b' 4* 4* 1; 4* ^# w 1; @= 6* ,> w u /# p :# w t a7 /U F= /# E '&./# /U /U a7 A$.a7 AR z _}.JW 1& '&.A$.O@ ;O M m;..@.T^ p=.:}._+.(#.4>.AX 4>.(#.4>.SO :#.C).x .-*.iU oY oY *I p*.BX p*.(=.)Q BX #N RT R%.RT RT Z .G&.Z .+Z +Z 9X '*.e-.1@.$).3@.#).{&.E` E` hT AS AS .` Y!.+` <}.4..4Z y@.z+.3..`X [#.G` c&.M/.7>.a$.2_.U,.7>.7>.U,.I&.t'.[=.}#.*@.a .#..a .*` a .d&.M[.++.8Z d&.& .%+.* .E..yZ C@.%+.8Z %+.RP zY b` fS J` &..; .=V jV HR AM }T IX =V =V HR :P HX =V HR Wq IS IS pT [W KH vO PQ YL OQ ^H LJ {K 5M {K LJ LJ pK .G 8 }c Pk >8 Fb n8 Q5 a3 &^ Z< n8 Z< a3 n8 a3 u[ ;0 z_ ): n8 e9 K0 O] 0! ]: 0! m{ ,/ m{ ]: ') O; ]! 9~ 9~ 0~ 0~ |= C> 0~ 0~ 0~ q~ ]! ]! 5% M! O. S. D> O. O. O. O. O. O. S. O. J. Q. S. i' Q. Q. R. Q. Y. Y. Z. O. Z. i<.P[.i<.~<.J# X. S. R[.U(.[}.U(.#~.j<.:[.:[.U(.j<.}}.S<.i[.j<.N_.s(.](.T<.(:.8_.X(.n<.|}.n<.X(.U^.l:.G=.n<.1}.0_.2}.a_.P_.P_.`(.`(.`(.P_.P_.W<._^.`(.Y<.W<.R:.p{.4'.l/._/.n/.m:._/.n/.e$ l/.l/.4'.t{.t{.%p x,.e$ |- @* :@ 1- 3}.1- e$ _].2@ e$ 4@ 6J <@ |@ m<.4}.5}.o:.z^.6}.7}.8}.$_. (.t<.9}.0}.j_.!w Xi a> n}.o}.;[.o}.0:.b[.!}.8<.E/.&<.p}.;l lu fk To 6r 6r q}.vX F%.r}.7Q ,l @O +O s}.. .s@.t}.A@ E@ P J z Q@ x /# w C b' m % Z$ ^# D ,> `$ ", +"<{ J$ ], J$ BN L$ L$ 2^ #S I/ 2^ BN #S p9 I/ 0' 0' 0' 1) # + = + = 1) + ]& Z, # = + . + 0' . + + [* $= V@ L$ + V@ [* S$ . ]& L$ + = . > > $= & . (& U$ U@ > 0' ; Q$ | ; ' *' $ U@ P$ H= Z! ; S$ . - { 05 Q$ ; N$ 5- ! [ N$ ~ |, N$ 5- W@ [ X@ R$ | H= ~ | { N$ ^ [ xS ) | 2 | 2 'W *# X@ / Z! ( [ d [ < 3* d $# ( ,# d < 7 8 } /& 6 7 a 0 i tA 7 [{ 3* 0 ,# a K/ 6 C; 0 c s> {# n h s> c Y$ ~# j `$ |& ,> n Y$ h `$ q b' p 2, s> ;) ,> t C 4* /# <, G 4* C F @= B F= F= m a7 {& E /U F= z z a7 C` F= Z 8* $T A$. Z c- c- c- =X .@. V V 2Z m;..@.8* 4>.4>..).4>.SO SO A: *I iU A: oY oY L (U (U ,*.k#.yS +-.^P RT Z .+Z +Z RT +Z Z .+Z Z .R%.G&.{&.R%.'*.3@.CX {&.7` E` hT AS hT E` a&.9&.L-.E` ` .pY @@.4Z l#.` .|Y $ .)'.!$.t'.7>.Y;.Y;.M-.n!.0 .t=.[=..#./&.a .*` #..%Z 6@.*` 1+.a .*` {$.* .yZ %+.& .d .d .8Z d .* ..Y O/.oT F+.b` AM }T RP NV u}.oT oT RW oT oT HS Wq uP uP uP HR pT Vw Ix Vw Ix nK vO bJ hJ GH 1z wO wO v}.LJ .G -J TE CM HH 8 Pk >/ Fb Ti >/ >8 a3 n8 a3 Fb Ti a3 dd O4 O4 n8 Q5 o8 Q4 ]: m{ A_ m{ 0! 0! 0! L} ,/ 0! 9] 0~ 0~ ]! 0~ q~ 9~ 9~ ]! 0~ O; z! 9~ C> O; E# O. F# D> J. O. O. F# O. J. P. J. S. O. J. Q. R. Y. R. Y. Q. w}.X. Y. Z. p- X. X. Q. i<.h<.Q. r& /<.[}.j<.#~.N:.#~.N:.U(.U(.S<.j:.N:.x}.y}.6_.O:.l<.^(.z}.m[.X(.X(.X(.U^.X(.n[.9_.n<.X(.0_.o[.G=.`(.`(.A}.P_.X<._^.`(._^.x^.`(._/.W<.^<._/.p{._/.4'.l/._/.n/.4'.4'.m:.e].m:._]._].m:.e$ J- d$ d$ 4@ d$ m:.B}.B}.[@ /; d$ b$ J- P{ P{ AL C}.D}.E}.F}.G}.H}.k_.3(.|^ l+ w% bz I}.q+ BD 3U ,T nt cM x+ Ao Ao K}.L}.q>.D,.[<.C,.M}.x).-}.R..f}.-U .S .S .S ^+.+z hY j..j..vX N}.vX RX kZ O}.RX {r ~P .S f}.dP d d /@.|&.Vk P}.tf Q}.R}.!_.S}.B:.|j ^n hA T}.~}.vC a> vC ^l ^l U}.H<.;[.;[.7<.V}.W}.d[.&o & H= U@ S$ P$ N$ N$ Q$ N$ ; Q$ %= ^& - ] P$ X@ X@ ; N$ R$ =' = ; N$ T- | ) P$ | [ - . ~ | ~ N$ H= ~ 7- N$ [ H= ] [ 2 Z! | 7- { ~ 4 N$ < ## / ( 6 d D, +# 6 d $# ## 4 ## 6 Y> 3] U- d ,# a a 7 e 0 0 Y> ,# 6! ~# c tA 7 j ~# 0 n 0- L= }& s> {# _# h s> h 0 ,> p K/ L= p p 4* p t ,> 4* @= w )> b' t ^# D 1; #] #] '> #] /U #] w 2; a7 '&.z F= F= H[.AR A$.'&. ).KW a7 H[.T^ JW .@.A T^ '&.2Z KW .@.I[..@..@.x .x .z .t%.iU '(.aV aV (U *I oY B$.I#.oY *I +-.y+.(U #N #N RT +Z R%.+Z +Z RT G&.+Z G&.0$.G&.w@.1@.3@.'*.4..2@./;.+@.E` hT hT hT o;.a&.f-.a&.E` z+.4Z |Y 4Z `X 4Z B .z@.<=.9).T,.7>.Y;.7>.c&.N#.I&.0>.A@.[=.C+._W r;._W %Z a .&` nW a .1+.8Z 8Z d .8Z 8Z yZ %+.d .8Z MV pU OV mV O/.N[.GR AM AM MQ AM AM AM oT AM uP Wq Vw HS GR Vw HR dJ Ix uP Vw

8 'k >8 t[ oj a3 >8 _u a3 &^ Z< a3 b3 Q5 J].u[ Q5 b3 z_ u[ A_ E1 u[ 0! ,/ m{ m{ 0! 0! m{ m{ <> ]! ]! 9] 0~ 8~ ]! 0~ 0~ 6% 6% M! 0~ 8~ E# O. J. p& O. J. O. S. O. O. J. L. J. i' R. L. #|.L. R. Y. Q. R. - Q[.i' - X. X. d, R. i[./<.P[.j[.i[.U(.U(.N:.j<.#~.#~.U(./<.U(.9,.$|.N:.O:.%|.V<.k:.m[.&|.n[.X(.n<.n<.n<.n<.0_.~].~].p<.p<.0_.9_.*|.0_.`(.P_.P_.`(.=|.(/.X<.-|.;|._/.2!._/.2!.l/.l/.p{.t{.4'.4'.4'.b$ W/.m:._].e$ _].x,.d$ 2@ 1- P{ ${ |@ b$ J- W% i$ R* S* f$ L- >|.,|.]).'|.Z/.)|.!|.E(.|^ l; C) M& (: E^.;$ qN :S e..(V FU ,T ~|.{|.L{ aO Nn 8> cz Ib 4c ]|.E,.k).m_.*_.p>.^|.==. 4* G ;) n `$ -= ", +"I/.jP J$ BN 9| BN BN R@ I/ 0' I/ ]& J$ J$ L$ L$ 0' ]& # 1) # + J$ ]& # # ]& * Z, #^ = + . [* $= Q$ * & > 0' Gc & + . ' $= ]& [* ; A; }, & > 05 ; N$ . # o! N$ 5- Q$ $ . $ ; (& - Q$ 5- 8- ] =' N$ U$ =' Q$ & ; - > S$ ~ N$ 7- ~ ; ] | ' & | ; X@ 8- 2 ; 2 } | ] ## | X@ 5 { D, 2 [ 6 5 $# &# D, j $# /& +# 7- { { ,# 6 ,# 6 7 ,# i 0 Y> a 0 3] 0 $# ,# L= ~# 3* k e c L= Y$ X$ ~# c L= ~# Y$ p 2, h n [& L= _# h h h b' Y$ t 1; #| /# w *].`$ b' b' y w s> )> w w z #] F= w F= A$.z /# z 6|.AR ).'&.z 1& 8* T^ 1& c- T^ Z 2Z n! P%. V .@.p=. V 4>..@.I-.4>.t%.7|.B).aV B..SO iU :#.B$.aV *I (U yS +).*I iU +-.+Z c-.^!.+Z Z .)Q d-.RT G&.R%.9X 9X |@.R%.7).3@.1@.#).'*.4..CX hT hT .` o;.@@.H>.9&.|Y z+.pY ` .`X [#.z+.5Z r=.Z!.v%.z@.8>.8|.t=.N#..#.v%.t=.A@.9|.%Z %Z 1+.%Z #..&` ^W _W 6@.d&.E@.& .yZ 8Z 8Z d .*Z )X * .F+.FS )S 4z 0|.OV OV RP GR NV :P AM MQ MQ :P Wq Ix uP uP Vw Ix Wq Ix HR PQ uP QK NQ nK ]u wO a|.gJ ZL 2P IH -J -J ^H eC (H / Pk >8 >8 >8 Q5 a3 Q5 a3 Z< a3 a3 Z< a3 P3 u[ Q4 J_.b3 E1 0! m{ ,/ ') ') 0! 0! <> q~ 0~ K~ ]! ]! 0~ ]! 0~ 8~ O; `= D> O; n& b~ b|.F# O. a! F# x' S. O. O. O. J. J. R. J. S. Q. Q. Q. Y. R. Y. ~<.Q. U. X. U. T. ~<.M:.9,.i<.c|.l[.#~.j<.~/.j<.j<.j<.[}.d|.j<.9,.d|.j<.e|.f|.<[.g|.X(.e|.n<.d].X(.<[.X(.o[.0_.9_.G=.h|.Y(.=|.p<.]<.0_.=|.p<.G=.P_.X<.`(.W<.P].P_.Y<.p{.^<.4'.l/.%p ^<.i|.e$ 4'._].|- n/.%p 2'.@* v!._].n, [@ 2@ f$ }@ 6@ 1- ((.W% |@ /; X, |@ L- j|.k|.l|.m|.:<.#'.n|.|^ o|.l; n+ h+ l; G,.s{ g+ f= p|.q|.r|.h0 s|.7-.t|.u|.v|.w|.Xi NH [).#q x|.@'.8'.y|.p>.z|.A|.: ./|.j%.V&.: .N}.N}.Rh (|.(|.Rh (|.N}.Rh Rh (|.B|.C|.D|.Sn XW N}.RX +z Wk f}.-}.@H /@./@.P}.E|.xN D<.C<.|j vv hA F|.G|./- O+ a> vC ^l n}.iP {}.#f !}.H|.#<.^_.ku rv F/.I|.d[.}q J|.I|.lu V}.iA dw HT ND JL SB ;o 5q i).!> 2# }; L A I z S z ^# B b' /# w ^# h r h ", +"]& jP L$ G= 9| ]^ 0' R@ G= 0' I/ BN R@ BN jP R@ ]& = + + K$ + I/ ]& # + L$ $ + $ = R@ ]& k) # + # + > # . + = + # + & > $ ' U@ U@ S$ . . A; . U@ > . .# ' | Q$ . - . - Q$ & U@ | H= ; %= N$ ] | ; Q$ ~ U@ H= ; | ~ | ] H= | { X@ | ) { ) X@ { ; ~ /& ) 05 { { { { 8- *# 2 < $# / 4 } { Y@ &# } Y> < J= ( ,# 0 a' ,# 6 6 k a ,# ,# ,# a d => 9 {# 0 6 0 2* h 0 L= ~# q> n h h |& r r ]# o {# 0- ]# c{ ~# Z$ 1; 1; q r s> h :# F= q /# @= :# $] p t C m [# G E {& z F= E B 2; z C).4>.B$.B$.I-.7|.iU -*.iU A: A: (U y+.+-.aV yS +Z )Q Z .RT RT )Q R%.)Q Z .+Z G&.sZ '*.+Z !&.G&.D` +@.0&.E` E` .` .` $N H>.:=.a&.a&.o;.4Z f<.` .` .D..<=.z@.6Z K|.N#.N#.M#.7>.n!.#-.#-.!$.t=.#-.|+.1%.a .1+.a .%Z a .oW _W E .& . %.xZ d .%+.%+.d .E..& .yZ 8Z .Y RP MQ |#.$..GR AM AM GR RP AM HS AM uP Wq HS Vw HS Vw IS Wq uP :P vO 0Z

/ >8 rg >/ >8 &^ a3 >/ >8 a3 Z< Q5 Z< Z< a3 Fb a3 Q5 Q5 S5 Q4 R4 R5 Q( 0! m{ m{ ') L} ') L} (/ )) ]! <> 0~ ]! k2 q~ q~ 0~ O; {~ |= H. 6% |= e/.a! J. S. 2= O. p& S. L. O. q& J. J. S. J. O. R. Y. - Y. R. X. ; R. L|.J# ~<.J# P[.N:.M:.M|.i[.U(.#~.U(.:[.N|.j:.N:.k<.x}.O|.i[.j<.P|.n[.e|.](.n<.n<.n<.n<.n[.n<.n<.Q|.J}.n<.*|.}[.P_.p<.p<.A}.S:._^._^.X<.X<.X<.X<.X<.P_.P_.`(._/._/._/._/.p{.Y<.l/.P{ 4'.%p ${ m:.n, W% /; 4' _].}@ d$ [@ 4@ _@ 2@ 2@ d$ |@ R|.<: X, :@ GV S|.T|.U|._<.V|.W|.y{.@) l; l+ m+ m+ l; t/.|^ 3(.X|.Y|.Z|.`|. 1..1.6!.H}.p_.;;.+1.Yi 4I Xr ^J @1.T{.k).y|.n_.7'.R$.K=.(|.t` K=.K=.Rh Rh +I +I +I #1.#1.+I +I #1.#1.+I $1.%1.B|.(|.N}.vX kZ RX 6f .S d /@.e}.X+.&1.*1.3<.C<.Y'.^n l}.T}..N Q& `U P+ a> a> vC o}.iP #f iP o}.b[.b[.=1.rv ku E[.-1.9w E/.;1.~s ;:.>1.tv BK It 2j ik Zo ke ,1.'1.I@ J S {& z K I N G D :# C G t _# Z$ r ", +"J$ jP p9 jP G= J$ L$ I/ L$ #S <{ BN I/ 5_ 5_ I/ G= J$ L$ 5_ =[ % 5_ I/ 5_ 1) 5_ ]& + = = + # . . % . X! V@ > = 0' V@ + > S$ . $ . > > V@ [* V@ ]& .( > & H= [* . $ & > H= Q$ . V@ ^ Q$ ; . =' & & & ; ; ] U@ N$ ~ ; Q$ ] | ~ X@ W@ Q$ X@ Z@ 2 ; 7- 2 4 [ { ~;.; | ( . X@ Y@ [ /& [ | ( < [ Y> q> a 3* 6 d d /& 7 6 { ## ># )1.a k q> 7 d 6! 7 6 0 e b !# M' g a 6! a ># L= ]# n L= h n ~# e {# 0 n c ]# p V| ,> ,> m 2, n^ q #] 4* % :# 4* t #] 4* F m $S F /U G /U {& F= G B z a7 z '&.a7 1& T^ 8* n! c- $T #= a7 ,/.c- V !1.c- V c- .@.(#.0S z .J{.I-..).-*.AX 4>.aV -*.I#.A: I#.-*.BX oY (U yS Z .)Q Z .+Z +Z +Z Z .RT +Z +Z !&.H&.CX +@.G&./!.#)..` 0&.n,.CX AS CX 0X AS o;.3..a&.a&.4..:+.D..7 .I:.!*.)$.0 .!*.S%.N#.S%.T%.#-.0 ..#.N#.t*..#.W*.%-._W #..a .1+./&.^W ^W #..d&.d .8Z * .8Z %+.%+.gV d .-` & .:W -` RP E@.AM oT AM AM RP RP RP AM AM AM GR RP AM MQ aN uP Wq HR IS PQ IR IR #w uP NQ

/ >/ Fb >/ >8 a3 &^ Q5 Q5 &^ a3 Z< Z< Q5 a3 h( I^ Q4 5< h( m{ ') ') 0! I^ ') ,/ (/ q~ q~ ~1.K~ q~ #, q~ 0~ ]! |= H. )) 5% G. M. z! c, c, O. S. J. J. S. J. L. O. L. O. Q. L. O. Q[.R. - P[.{1.P[.i<.X. - i<.X. i<.X. j[.j<.X. ~<.j<.i[.j<.]1.:[.^1.c|.j<.]1.y}.^1.^:.l[.}}.n[./1.1}.n<.V<.n[.n<.<[.n<.n<.<[.X(.u(.(1.h|.=|.=|.X<.X<.G=.`(.p[.X<.X<.P_.W<.4'.Y<.P].W<.2!.4'.P{ l/._1.2@ 4'._/.'~ v= e$ J- J- t{.b$ J- /].4@ l$ 9@ 2@ 4@ _].d$ ((.d$ |- :1.!@ $z <1.[1._<.}1.V|.M'.U{.;$ q+ m+ HB n+ n+ `/ z- h+ |1.11.21.31.41.51.61.h+ E(.=, X:.#x NH uK CL 71.81.k).1^.n_.H^.&=.+I K=.91.01.{B a1.TB #1.b1.01.bc #1.c1.c1.Pf d1.TB +I %1./s (|.(|.N}.[V u .u .RX .S R.. d xc e1.1<.!_.y:.C<.^n %t f1.O+ Q& n}./- P+ E% vC g1.^l {}.h1.iP ;[.;[.8<.D[.D[.D[.,[.=1.-1.0w i1.1|.y_.ou Yo Kj KC SB qi j1.WI x! B$ K@ H$ N 1& w N w N G F= ^# w t n^ _# ^# ", +"2^ <{ l) R@ L$ BN G= I/ I/ ]^ *) #S I/ I/ L$ BN I/ L$ L$ I/ ]& + + 0' = V@ % ]& ]& # L$ ;b ]& . + + $ + Z, ]& + |* + L$ ]& # = = & > . + V@ . o! $ $= > $ - > 2) k) $= + ; . . ; & > R$ Q$ & > Q$ & ~ P$ o! ' ] | ~ ) ] N$ ; > | 2 | N$ N$ ; ~ | X@ | | | N$ ) N$ ; N$ ## 2 ~ ; 2 } { { [ [ /& $# &# q> D, 5 d J] 6 6 5 d [{ 6 N' } ,# a d Y> 3* ,# d ,# g ~# 0 W$ b ~# 0- Y$ r L= p o Y$ h c e h 0 Y$ n Q(.Y$ Y$ Y$ L= q ,> n^ ;) #] Y$ q 4* V| p :# % #] {& w G /# 1; :# E z /# /U /U 2; a7 L/.1& 1& AR JW 8$.2Z z $T JW Z P%. V k1.4>.x+. V V .).QT J{..@.4>.J{.B$.I-.I-.>*.B$.aV E>.aV aV l1.MW p*.+-.RT RT lP )Q R,.)Q +Z )Q +Z )Q G&.+Z 9X {&.G&.7).'*.CX /!.{&.CX hT hT hT mL CX 9&.]&.E` E` ]&.`X 7 .K[.`X <=.S%.S%.[#.m1.S%.v*.0 .N#.N#.N#.I&.n!.b$.|=.d$.a .1+.C+.%Z %Z oW #..xZ E .yZ & .{$.)X n1.8Z 8Z -` d .9Z .Y 4z RP RE oT GR oT AM AM RP AM GR MQ GR RP AM oT :P Vw uP pT pT Wq nK Wq ;H UF YL

/ >8 J0 }c }c >8 t[ Z< >8 >8 a3 Z< Q5 Z< Q5 Z< a3 n8 ): Z< Z< ]1 R5 Q4 h( E1 7~ L} ,/ m{ 7~ ') m{ <> K~ ]! a, <> K~ ]! q~ C> q~ 8~ n& c, M. H. {' a! J. S. L. O. L. J. P. J. J. L. S. ; ; J. d, p1.Z. X. ~<.i<.X. i<.Z. d, r& q1./<.M|.j<.~<.L|.j[.i[.i[.j:.i[.]1.l<.l[.l<./:.]1.l[.O:.%|.X(.n[.<[.n[.V<.<[.n[.n[.n[.l:.n[.Y(.0_.G=.p<.=|.{).P_.X<.r1.*|.X<.P_.P].P_.^<.l/.l/.W<.Y<.l/.l/.l/._/.^<.s1.m:.m:.%p ::.J- @* %p W% }@ b$ |- J- |- b$ t{.S* 2@ X% `% B}.2@ 9@ x= t1.u1.v1.w1.x1.h_.l).t/.;$ q+ 1L ({ h+ m+ A- t+ bM bM bM %$ -%.~` .y1.z1.H;.s&.01.01.}k 01.Pf A1.B1.}k C1.D1.E1.E1.F1.G1.E1.H1.D1.A1.H1.I1.+I Yd Rh B|.[V J1.+y +z } .@H mk K1.8[.!_.j}.Y'.^n L1.M1.Kb /- vC vC a> vC ^l o}.Kb Kd $) Zi /- ^l !}.;[.G<.8<.$<.$<.^_.E/.ku F/.;l N1.Xl #:.]s *t kk `S bU O1.!. L@ H Q@ {& A A )> /# t D m m `$ q m t ", +"2^ 2^ J$ R@ R@ R@ BN 0' I/ G= BN I/ ]& ]& 0' L$ I/ I/ 0' I/ [n # * 0' 0' # # + J$ =[ 5_ ]& # R@ + ]& = + = . 0' V@ V@ ]& ]& > $ + > S$ ' ' - & ' $= - S$ |* & %= |* S$ U@ & S$ . U@ %= ; Q$ & ] Q$ %= & | ; - & Z! | > Q$ R$ { P$ Q$ & X@ 8- & W@ X@ ; [ W@ Z! { | > ~ { 2 J) [ 2 4 6 X@ [ { < { ( : $# V~ < d J] ( ( ( 7 1 6 6 c5 &# a &# 2* ># : ,# {# 5 0 ~# 6 c5 ,# a W$ L= ,# c 0- ~# _# Y$ L= r [& ;= o ~# n^ ]# ,! L= 2, d<.|& ,> q Y$ v /# /# 4* D w t G /# :# 1Z F= C` E .4>.o*.AX AX :#.(U -*.iU iU A: A: yS 3d (U (=.+-.)Q Z .RT Z .Z .Z .^P Z .RT RT Z .9X +@.3@.Z .w@.+@.hT 0&.E` q*.CX AS hT CX E` o;.4..4..4Z pY |Y y@.!*.<=.r*.$ .<+.z@.$ .N#.0 .0 .0 .N#.#-.@..V*.b$._W #..#..w'._W %Z oW _W a .*` E .yZ @+.& .8Z * .& .d .]*.-` fS zY )S D@.XL AM RP RP :P uP oT RP zM AM GR HR HR :P GR IS uP uP QK nK Ix NQ uO QK JJ JJ GH eC Pw 1z 1z RA -J 1z IH IH .G .G 1z / Z< Z< Pk >/ &^ Ti Z< a3 a3 Z< Z< Q( Z< Z< t^ a3 O~.L} S5 p~ ') ') ') 0! 0! 0! 0! K~ <> 0~ q~ q~ 0~ C> P; C> 0~ G. O; 6% 6% c, J. J. O. F# J. L. J. J. J. J. J. L. L. R. L. L. ; Q. Y. i<.q1.X. P[.Q1.3= i<.i<./<.Q1.M:.9,.Q[.^1.O|.j<.j<.U(.l<.:[.x}.7_.l<.]1.R1.e|.n<.X(.n<.n<.n<.X(.<[.X(.n<.n[.S1.n<.(1.9_.Y(.A}.*|.*|.A}.P_.S:.3>.P].T1.P_.X<.W<.l/.-|.P_.U1.Y<._/._/._/.l/.l/._].t{./].U/.|- _{.V1.'~ P{ i|.d$ e$ n, 2@ |@ X% b$ |@ 2@ X% d$ j$ d$ -+ W1.X1.w1.x{.Y1.z!.3(.q+ BD 1L ]G q+ m+ l+ X:.Z1.xT `1. 2..2.+2.n` |K bO bO ^R sQ DU ^R _i tQ @2.6{.#2.$2.%2.&2.*2.G1.F1.F1.F1.F1.F1.=2.F1.F1.-2.-2.;2.>2.=2.G1.,2.D1.G1.'2.)2.!2.#1.Rh (|.[V ~2.vX ^+.f}.{2. d ]2.b(.D<.4<.Y'.hA -[.^2.g1./- P+ P+ n}.iP H<.8<./2.P+ Fc Zi h1.n}.<|.pM !}.$:.%:.^_.O(.J|.E[.I|.p}.*o (2.W}.Ht KC _2.^T :2.<2.=. G@ I A I z N@ ^# ,> w ^# N ^# :# w ^# ^# ", +"J$ 2^ J$ <{ R@ ]& BN R@ ]& L$ BN I/ <{ p9 0' I/ I/ I/ BN I/ 0' + + # 0' 5_ # [n ]& ]& }, # ]& J$ V@ S$ ' V@ $ & [* $ V@ # # ]& # ]& . # . & [* > . . # # 2) ; U@ > & U@ X@ & %= U@ H= - . U@ ] H= 2] > |* ; [* & | & ; . U$ R$ ^ $ H= b{ X@ ; ] X@ N$ { ) | X@ { ; X@ ## ~ | [ ~ 2 2 ) 2 ( 1 Y@ | [ 1 ,# ( ( 3* 6 V$ d 6 *# : 5 < D, 6 b i d 3* 6! a } 6 a 6 a !# 0 !# K/ !# e K/ 0- c h n {# ,# _# ,# ]# Vj p K/ L= ,> q r p ^# b' 1; w /# `$ m :# Z$ 1Z D :# $S z /# E a7 $S $S ).1; a7 E C` A$.a7 W) E 1& [2.KW c- KW '&.$T T^ V T^ T^ c- 4>..@.c- _+. V V .@.(#.x .AX QT QT (=.I#.-*.iU iU aV oY A: YX }2.F>.^P )Q Z .RT +Z G&.RT )Q +Z G&.+Z 0$.1@.1@.|@.':.$).hT 8).3@..` .` .` CX hT AS 9&.H>.9&.y@.pY 4Z !*.<=.)$.!*.5Z !$.S%.0 .$ .0 .0 .$ .|2.0 .sY )'.#-.v*.%Z *` %Z /&.#.._W cX a .#..% .% .8Z %+.gV 8Z hQ ;` d .8Z -` zY -` &V RP AM RP RP RP pW AM MQ GR AM =V Wq Wq RP AM NQ ;H JJ {K :P bJ bJ bJ JJ YL JJ oK .G IH LJ 1z ]K 1z .G eC IH 1z eC IH /H [H {i Mm Lk Mm zn Lk Lk zn Lk Qd zB Mm }c }c ul >/ }c d/ >/ rg Pk >8 Z< >8 d/ >/ Q5 `~ &^ a3 Z< Q5 J].2| a3 [ a3 a3 ') Q3 O] 0! 0! A> ') A> ') m- K~ q~ q~ <> )) ]! C> C> 8~ q~ G. O; O; 8~ G. 2= 12.J. J. L. L. J. J. O. J. p& q& p1.R. ; J. ; R. Q. ~<.22.i<.i<. - i<.P[.P[.q1.!) P[./<.32.j<.j<.j<.j<.c|.i[.i[.42.y}.]1.l<.y}.n[.e|.n<.X(.n<.n<.n[.n<.n[.n<.n<.52.n[.J}.S1.o[.O_.=|.~].3>.P_.X<.U1.P_.X<.P_.X<.P_.W<._/.Y<.r1.W<._/.p{.62.l/.4'.P{ b$ |- 4'._].d$ b$ V1.<: K- b$ 72.e$ 1- 4@ f$ L- 9@ 8@ X% 1@ 9@ i$ 82.92.o:.02.u[.H}.a2.n+ 1L nS xT 1L }K q+ n+ DU }$.cY b2.]..c2.d2.|K |K aO ,T yT qt aO r0 oS ot L E^.e2.f2.g2.h2.i2.F1.=2.j2.=2.=2.j2.j2.k2.F1.;2.;2.l2.j2.=2.,2.;2.-2.,2.D1.m2.)2.n2.+I Rh Sn o2.vR p2.f}.-}.{2.q2.B/.r2.9[.s2.hA f1.~}.{- S+ /- ^l pM ^l ^l b[.A:.a> Fc #f h1.H<.t2.u2.;[.b[.H<.7<.D[.$<.9w ku I|.v2.A[.W}.2q ]s Lj @K 2` w2.+. J M@ S I N )> I w D p y n^ 1; /# t Y$ ", +"BN BN BN <{ J$ R@ G= BN #S R@ ], jP #S I/ L$ I/ 0' I/ G= I/ I/ 5_ 5_ $ = 0' }, # 0' p9 `Y $ 0' ]& V@ $= V@ . > . (& = + + = $ $= ]& 0' # . . 5_ . V@ |* H= - S$ H= > - Q$ & $= %= > > & S$ ; N$ ; U@ N$ N$ %= & ] | .# S$ ; . > | O$ P$ H= b{ T- %= & ] N$ ;# ~ { N$ U@ S$ N$ /& 2 2 R$ ~ X@ { &# ## d 6 => /& $# *# Y@ 1 [ $# ( ( D, ># 6 6 { J] ) < d N' 7 k 6 ,# a 6 a d Y> 0 6! e n 0 6! a 0 6! !# tA {# c Y$ L= }& n p r ,> ]# ,> ,> V| D Z$ ,> t t p ^# /# q /# w m $S |Z w z F= F= F= '&.F= E z '&./# z z G a7 F= a7 $T ,/.m;.AR Z Z V c- V V .@.c- 4>..@.4>.4>.(#.B..B$.SO :#.B..aV B$.B$.iU ;*.p*.iU BX _#.l1.^P )Q +Z +Z +Z G&.+Z +Z RT +Z RT D` 1@.{&.G&.1@.'*.1@.3@.3@.E` CX .` E` CX .` AS +` E` 9&._U z+. ..z+.#@.^&.l#.z@.<+.M#.p;.$ .}+.M#.):.!$.L#.T%.S%.!$._W %Z C .cX %Z %Z U%.*` a .d$.a .% .%+.& .E@.0` -` F+.%+.O/.O/.b` QW fS oT GR FS AM RP uP GR AM N[.zY uP N[.RP XL dJ bJ nK 'H BH sL BM JJ JJ BM JJ EH *J RA KN IH *J IH RA 1z 1z )H fJ MJ _H :E ]A Qd Qd Mm Mm Lk Mm Lk {i zn zn zn rg ul 03 We ul rg t[ >8 }c >8 Z< Z< t[ t[ &^ &^ `~ Z< &^ &^ Z< o~ a3 a3 Z< b3 (] O] h( ') A> A> ') m- ') m- a, q~ q~ ]! y! q~ n& 5% C> )) 5% 6% 0~ e/.O; n& S. 8% J. O. J. J. J. L. N. p& d, 3= Z. R. L. J. {1. ; - Z. 22.P[.d, {1.i<.3= q1.Q[.<{.i[.i[.x2.p&.i[.9,.^1.j<.x2.c|.y2.]1.R1.]1.y}.2}.n<.n<.X(.z2.Q|.n<.n<.U^.n[.z2.X(.J}.n[.0_.2}.A}.A2.*|.P_.X<.B2.X<.X<.X<.X<.X<.P].X<.s1.P].Y<.4'.l/.P{ 4'.4'.4'.%p 3}.n, d$ d$ 3}.P{ d$ C2.[@ e$ b$ b$ 8@ 8@ |@ f$ 8@ l$ 2@ L- X% D2.E2.p/.F2.k_.<<.j_.q+ JM nS GO q+ .Q ]G k+ ,T Q+.-Y +$ G2.H2.I2.|K 2.R2.S2.T2.R2.D1.U2.'2.V2.6*.B|.o2.FW u .W2.i.. d 'e B/.X2.Y2.z[.Z2.`2.{- o}.S+ S+ R+ Q& E% a> vC /- P+ a> Fc Zi .N I<..N !}.b[.h1.b[.@<.D[.^_. 3.Et }q .3.W}.hk .m *t ;o +3.@3.@. H@ Y I z G ,> I y D Y$ n^ `$ G w p g ", +"L$ R@ L$ p9 <{ J$ jP *) jP ;b BN 9| I/ I/ I/ G= L$ I/ I/ I/ I/ ]& X! % X! I/ + Z, 0' 0' # 1) $ + # # . . # . . Q$ V@ $= = $= . 0' # # L$ + + U@ ; $= $= ; H= $ ; h) H= o! & V@ . . $ > & A; ! $ | | . N$ U$ S$ . > ] ^& H= ] ^ X@ R$ ) ~ N$ ^ ; X@ { ) ] N$ N$ 7- N$ 2 1 X@ [ ## D, } ( ( } ## { 7- } 6 <& [ $# { d *# } 6 7 } ,# < -> k ,# 6 6! ~# a 8 6 ( ~# q> L= J] L= t' a 0- a K= W$ n E, n c{ _# 2, Y$ ,> s> h q p n ,> 2, 6* /# h '> m t :# t D ,> F= :# 2; $S ^# b' F= @= 1Z #] z a7 z '&.P<.n! a7 a7 8$.AR O@ KW Z '&.T^ Z .@.c- HV c- 4>..@.c- .@.v@. Z I-.t%.z .<_. V B$.I-.iI oY *I L iU ;*.A: yS y+.K{.I#.)Q RT +Z +Z Z .RT RT +Z Z .^P +Z R%.G&.G&.G&.7).0$..` '*./!.4..CX E` .` .` AS ZX CX CX ST pY 2Y <=.K[.[#.E_.qY ...)$.8 .T,.6Z 0 .!$.S%.v%.N#.`$.#-.|+._W cX 1%.|+.%Z %Z %Z _W %Z a .cX gV xY 8Z gV 8Z d .& .& .& .$...Y -` O/.GR FS jQ RP AM RP XL Wq MQ AM tP Wq (O dJ ;H ,H uO PQ bJ bJ #w {K }I bJ }I 1z .G IH rB *J RA :H 1z GH RA }I :E vy :E WA WA Mm XA Qd Lk {i {i Mk Lk Lk }c rg rg }c Qr >8 rg >/ >8 }c >/ d/ Z< d/ >8 a3 &^ Z< &^ Z< a3 Z< [ 8] `~ `~ [ #3.I^ g/ A> A> 0! A> ') 0! A> 0! q~ q~ K~ q~ #, <> )) C> )) q~ O; n& 9% G. G. L. J. N. J. N. L. 8% J. N. J. J. L. J. Z. p1.N. R. R. Z. P[. ; i<.i<.R. q1.3= !) $3.i[.i[.j<.[}.42.O|.9,.j[.O|.i[.42.]1.l<.}}.V<.e|.n<.l<.}}.<[.n[.z2.n[.z2.n<.n[.n<.Q|.<[.<[.%3.=|.A}.A}.G=.S:.`(.X<.P].P].P].P].X<.P].Y<.W<.X<.62.4'.l/.m:.l/.e].Y<.62.62.4' U/.%p b$ 4@ [@ &3.*3.L- X% P{ v; 4' 9@ f$ 9@ l$ b$ X% (; =3.-3.;3.:~.>3.k_./) HB lS ~` hZ l` !..n+ k+ 3U lX / .u#.p{ ,3.N+.FU cz qt |K Y{.qN .B .B l].().e_.'3.yf k2.k2.k2.)3.k2.)3.O2.)3.O2.!3.P2.~3.~3.k2.k2.;2.S2.{3.S2.R2.H1.-2.]3.^3.Rh C|./3.kZ +z ~U kA W` y~.(3.3<.9[._3.:3.u2./- U+ T+ V+ P+ pM vC vC ^l vC /- Fc of #f o}.;[.;[.B[.<3.N(.,[.D[.9w 3..3.[3.;1.[|.;(.&t It 'l Kf }3.8# C$ Q@ Q@ A I N {& G Y$ p ,! }& p r `$ h ", +";b R@ R@ L$ <{ R@ ]^ *) R@ J$ J$ 2^ BN I/ I/ BN J$ I/ I/ I/ I/ L$ + + + 0' ]& 5_ 5_ ]& J$ ]& #^ ]& # + V@ + # = # . |* # ;b V@ S$ o! P$ > + $ + & & V@ & [* + $ > - H= =' & V@ o! ] = & 2) > $ > > ] & & ) ; %= N$ | ; | R$ | P$ S$ ! & ~;.S$ & (& ~ U$ X@ I= %= | N$ { U@ X@ N$ /& ( < Y@ /& 2 1 W@ { 9 } d 1 $# d k Y@ 2 } ( J] 1 $# # $# 0 6 k ,# N' i k J] 6 k ~# !# z: W$ c ]c L= n n n -) y2 6! _# Y$ A~ o ~# h z: 1; Y$ b' `$ % q cj h ,> n^ /# F [# Y$ 1Z )> :# 4* D b' z w '> [# .!$.$ .0 .S%.s*.}+.$` N#.A@.oW oW _W #..%Z %Z _W _W 7Z %Z PW & .[T *Z & ./ rg >8 d/ t[ d/ Pk &^ a3 Z< Z< Z< Z< a3 {1 ): t^ Z< h( 5< G| G| Q3 ') A> N) ') A> A> ') )) )) <> 0~ 0~ 5% )) )) H. q~ 4% H. G. 6% D. I. J. L. L. L. L. L. N. L. N. L. N. J. ; d, 53.q& N. ; i<.q1.22.q1.q1.q1.53.P[.q1.i[.i[.<{.[}.P[.j<.i[.63.j<.O|.i[.j<.l<.n[.n[.V<.V<.n<.n[.<[.n[.z2.n[.<[.n[.n[.<[.n[.z2.<[.S:.73.G=.X<.S:.X<.]<.P].83.P].P].P].X<.P_.62.X<.62.P].P{ 4'.W<.[@ i|.l/.62.<: b$ }@ n, 93.x= /; /; X, |@ W% 03.4@ X% |@ 9@ ^; 4@ 2@ P{ -* a3.b3.%_.c3.|^ t/.f= 1L lS 7W -Y C%.CU IZ I}.hZ lX }$.hZ d3.e3.i! SS Yi aO aO VN bO UN aO /X 5H LM _i 71.()..(.f3.g3.k2.O2.O2.)3.)3.)3.h3.)3.)3.)3.~3.~3.~3.k2.k2.i3.;2.S2.S2.R2.-2.m2.j3.n2.91.D|.C|./3.^+.f}.{%.Vk D;.k3.Y2.B:.l3..N n0 E% /- T+ R+ E% DL Q& u2.o}.pM 6c m3.A:.<|.n3.o3.!}.o}.p3.@<.8<.G<.D[.w_.^_.9w -(.q3.r3.s3.It 1j mi t3.A0 O S K@ ~& z 2; w w ^# m ^# ^# ^# 4* Z$ p ", +"8S L$ J$ 9| <{ <{ 2^ 9| R@ R@ I/ 2^ G= L$ ]& BN L$ 0' J$ R@ I/ J$ R@ L$ K$ 0' 0' 0' K$ 1) Z, M$ = = = + = & ]& . # . $ # 1* ]& 0' - & ]& # V@ =' P$ [* S$ & Q$ & # & S$ U@ & $ > ; ; H= ^& . ; > ^& ; o! . $= . > U$ Q$ N$ N$ & ; S$ U@ S$ ] ^ ; [ | H= 7- /& ~ ~ & ~ N$ 4 ) | X@ 1 2 I= 2 8- 2 X@ } ) 1 [ < 1 5 /& [ 5 6- ( } 6 a } j $# $# 0 a 6 a 7 ,# ,# ,# 6 a 5 Y> 0 0 7 a Y> 0 ~# 0- Y$ L= 0- t' 0- 0 ]# 2, ]# c{ xE 2, xE m 2, t 4* b~.p ,> /# ;{.4* 4* `$ ^# :# w 2; F= E C F= $S a7 '&.'&.{& a7 A$.a7 a7 '&.'&.a7 a7 8* AR AR c- Z Z HV $T T^ (#..@.c- o^ c- (#. Z PT n! B.. ` SO SO I#.;*.oY aV B$.:#.-*.XX l1.(=.u3.+-.Z .Z .Z .RT +Z Z .9$.RT +Z Z .^!.|@.3@.Z .'*.D` n,.w@.E` hT a&.E` 4...` 9&.3Z CX 4..]&.:=.l#.z+.......#@.~W r*.4Z ~*.6Z 0 .6Z N-.T,.M#.nW 6Z v3.^W H` D$._W _W %Z #..a .w3.*` 3Y &Z &Z 6..% .hV / >/ >/ t[ >/ t[ t[ t[ a3 Z< G~ a3 `~ &^ a3 Q( f( a3 h( k{ A> 0! 7] m- A> ') m- ') A> m- <> q~ q~ q~ ]! 4% q~ P; D. )) 4% G. 2= 12.D. G. L. L. J. L. 8% y3.N. L. J. L. N. N. L. d, r& !) - z3.22.i<.22.i<.P[.X. _[.P[.P[.$3.j[.A3.i[.B3.M|.i[.O|.P|.p&.C3.U(.D3.R1.]1.]1.E3.<[.<[.<[.z2.<[.n[.<[.<[.z2.z2.z2.<[.F3.z2.]<.G=.]<.P_.P].*|.T1.P].U1.P].P_.X<.P].T1.G3.l/.P{ P{ l/.l/.62.l/.W<.V1.^; m:.|@ n, 4@ d$ 2@ |@ |- 6J d$ X% 8@ X% H3.9@ 6@ [@ 6@ d$ I3.J3.K3.L3.M3.j_.j_.*$ 1L 7W N3.O3.1L xT (V 7W 5#.hZ hZ P3.,T Z%.i@.bO ^R 3U 7<.lu Et X3.0:.,[.b[.iP <|.h1.Y3.H<.!}.#<.^_.9w 9w Z3.`3.s3.KC It 4..4.(4 E@ P@ P@ Q@ z I 4* {& ^# ^# p -) ^# h p Y$ ", +"<{ <{ *) ]^ J$ <{ <{ ], BN 9| I/ 2^ BN L$ #S jP G= I/ I/ I/ L$ ]& = 5_ K$ K$ I/ #S % + # * # + L$ $ 1* . .( ]& .( + ]& [* # = + . Q$ $= +4.. H= T@ N$ S$ H= - & ; H= $= . - + . ; . N$ & + & R$ U@ U@ . ] Q$ $ ~ ~ N$ %= ] %= S$ ^ Q$ Q$ H= { ~ U$ ^ Z! X@ ^ N$ ) ; 2 ~ Z! ) Y@ ( 2 Q$ N$ [ [ Y@ { [ / $# : [ 7 } &# 4 6 } ~ } k ,# ~# d } ,# k 3* ># k $# 6! [{ ( ~# L= ,# ,# 0 a 0- Y> L= |& h h ,> |& 7 n L= ]# r ;= s> `$ m 1; 4* t b' ,> s> m t 4* D Q(.`$ D C {& #] D Z$ 2; w G F #.F= /U z z '&.'&.'&.a7 '&.A$..t%..@.t%.I-.AX i5 |# H#.0].W!.U;.oY *I -*.oY yS y+.+-.oY .V +Z +Z RT +Z +Z RT +Z G&.Z .D` +Z {&.R%.3@.{&./!.+@.$).+@.CX o;.E` .` E` 4..3Z 4..9&.L-.K#.<=.o;.~W #@.S%.z@.#@.~*.9 .$ .!$.!$.S%.N#.tY [=.#-.oW oW _W oW cX %Z _W a .cX a .$+./ t[ d/ t[ t[ >8 t[ d/ >/ `~ G~ I~ C{ a3 `~ `~ 8] `~ f( 8] b3 L} :} E{ ') 0! A> ') A> 0! m- a, )) )) #, K~ #, 5% G. 6% q~ G. D. )) 6% G. L. N. L. L. 2= 2= {1.12.2= N. L. L. L. {1.d, p1.$4.q1.d, i<.P[.L|.q1.q1.53.Q1.!) P[.q1.q1.%4.M:.q1.9,.c|.]1.R1.p&.l[.E3.R1.n[.R1.E3.&4.z2.<[.n[.z2.<[.<[.<[.z2.n[.*4.<[.z2.z2.k>.*|.*|.U1.3>.]<.X<.P].3>.S:.T1.P].P]._/.<: 62.4'.4'.4'.P{ 4'.4'.b$ c$ f$ ,~.|@ @* @* b$ d$ i$ ** /; 3@ l$ 4@ 1@ |@ X% o, `% R|.f$ P. =4.-4.2[.;4. (.j_.>4.k+ xT IY lS qN JM l` ,4.'4.u#.n .,T 3U ;Y 3U 1K yT ^R bO 3U 3L |K dz /.U H J F= z I w Z$ m 6* `$ h Z$ ,> Y$ n ", +"J$ <{ <{ 2^ 2^ <{ L$ <{ *) ]^ I/ I/ L$ L$ jP BN BN I/ I/ I/ J$ I/ I/ I/ K$ 1) I/ ;b $ + # # K$ + 0' = # ]& 0' $ ]& 1) L$ > - Q$ = V@ T@ > $= $= $ = ' |* $ . . . ' Q$ ; Q$ Q$ - S$ $ > & S$ ; & R$ Q$ Q$ . ] Z! 2 H= N$ . ' ~ | > U@ %= P$ ^ ^ P$ %= 2 X@ H= ; R$ N$ *# } 4 ~ : 7- { ) | 5 2 2 { ~ ; } 5 ( $# d / } $# 6 } ( 6 2 Y@ a 6- 3* 1 Y> V$ 6- e 6! tA $# ,# !# a !# K] n 7 {# 8x s> -) {# r r s> 2, n L= r V| 2, r % xE V| V| 4* p vA 4* t C #] /# % }4.[# w w F $S t 2; G 2; /U /U C` a7 z z E '&.AR '&.a7 a7 $T HV AR AR T^ 4>.T^ HV V c- (#.1& p=.4>..@.t%.e:.k1.|4.AX ` 3# Z..iI B$.-*.:#.A: oY (U qF XX (U ];.^P )Q ^P RT RT +Z +Z +Z +Z +Z Z .sZ +@.e-.G&.{&.3@.CX {&.CX hT a&.4..9&.E` .` y@.E` 4..9&.:=.#@.` .4Z ...!$.B .` .)$.Y$.<+.z@.$ .N#.0 ..+.#-.#-.N#.7Z _W cX cX a .C .%Z oW cX _W 3Y 'X @+.E .d .%+.&V nU gV &V Vq GS GR nU RP )K XL GR 4z Wq KJ KJ HR RP MQ Wq dJ cJ pW GR OV uP Wq bJ bJ UF )H EH EH *J eJ *J ]K RA eJ >k vy :I IH HH ~i Qd 14.vy _E Lk {i Mm Mm Lk A9 Qd A9 Lk Lk 24.Qc Xe Mk 0h ]i t[ t[ >/ >8 C{ t[ Z< t[ d/ `~ Q5 Z< ;8 {1 &^ `~ Y^ *^ `~ ~! i2 5< A> H~ A> 0! ') m- m- m- A> a, )) 0~ #, X' #, n] P; G. q~ G. G. 6% G. D. 9% N. L. 12.O. J. N. L. N. J. J. N. L. h:.N. 8% q& !) 22.q1.P[.d, i<.Q1.3= q1.Q1.Q1.$4.32.i[.O|.34.44.P|.l[.c|.i[.[}.x}.D3.T[.E3.R1.R1.&4.54.}}.<[.z2.<[.n[.64.z2.74.<[.z2.<[.z2.G=.*|.3>.3>.G=.X<.P].84.P].T1.P].T1.W<.T1.P{ p[.T1.X<._/.P{ 4'.4@ |@ P{ i$ e$ H3.c$ H3._{.^; _].b$ 2@ 8@ |@ 8@ 9@ 94.X% l$ 2@ 04.a4.]).b4.c4.d4.e4.f4.k! HB lS xT JZ 1L (V IY ,4.g4.3*.UN UN bO |K 3U 3U bO bO ,T 3U q0 |K UN dz aO UN uK .B u/.b,.h4.K!.h3.h3.~4.~4.i4.i4.~4.~4.~4.i4.~4.S3.j4.~3.!3.O2.j2.P2.l2.;2.k4.D1.)2.j3.A1.(|.Sn /3./3.RX W2.R..5[.l4.E<.>Q m4.n}.~}.n}.E% T+ V+ T+ P+ P+ Q& ^l n}./- pM vC #f n4.H<.D[.D[.I<.-1.o4.$<.8<.$<.-1.^_.f(.E/.p4.W}.#:.#:.ne q4.s[ #% 8* A 2; x G G :# D `$ 4* c `$ ,> u `$ ", +"<{ *) <{ 2^ J$ r4.*) <{ ], 2! J$ I/ ], L$ 2^ 0' I/ G= G= 5_ L$ ]& I/ 0' K$ # % <{ ]& # K$ I/ # # p9 1) + . $ # # + # $ S$ > . . > > # + ; & . $= U@ N$ > H= P$ o! X! > - Q$ . + . S$ ; . - [* ] ] > M$ & N$ N$ ~ 2 ; U@ o! $ ; ) ~ N$ N$ ) & /& ] ~ ; 2 ) X@ 2 | <& X@ | ~ 8- 1 , ## ## d d { ) ## ## 4 { 3* / ,# V) [{ } 6 7 } 7 J] 0 7 k /& d {# i b k i ,# 0 k a 0 L= t' ~# z: ,# [& L= !# Y$ K] {# L= 0 2, ,> n^ L= g % ,> h p b' C n^ L= /# `$ ^# 4* m t :# w F= P<.{& F= G F #] /U F= '&.a7 '&.E a7 a7 AR a7 8$.AR $T T^ '&.A T^ .@. V c- c- V T^ V .@. V V s4.4>.|4..@.y .Z..)^.A: SO iU B$.aV *I *I qF XX I#.oY yS >$.RT )Q )Q +Z RT )Q Z .Z .R%.G&.Z .1@.G&.+@./;.3@.n,.^,..` E` E` L-.4..q*.9&.]&.9&.` .:=.` .4Z f-.Y$.^&.qY S%.)$.!$.$ ....s'.M#.$ .$ .sY `$.N#.#-.^W wZ oW cX cX cX nW cX _W 9` gQ t4.vY 2+.hV eX yZ 8Z xY MV &V QW Q( @, O] I^ [= A> ') A> a, P; J~ 5% n& ') C> )) #, q~ #, G. G. 4% F. D. {1.v4.K. N. N. K. N. L. 8% w4.N. x4.22.Q. 22.x4.!) y4.q1.P[.{1.Q1.P[.q1.!) Q1.q1.Q1.Q1.t1.O|.A3.z4.x}.i[.i[.i[.x2.x}.l[.y(.y}.&4.R1.54.E3.R1.z2.n<.<[.n[.<[.z2.74.n[.z2.n<.z2.z2.3>.84.A4.3>.P_.P_.P].P].T1.T1.T1.P{ 62.|@ f$ Y<.L- W<._{._].<: x= 4@ v; d$ x= |@ _].d$ <: b$ 1@ f$ x= f$ X, 3@ 8@ l$ 3@ h$ `% B4.C4.D4.E4.F4.+[.V].)- lS xT JM xT HB nS xT IZ G4.H4.3U 3U ,T bO aO bO .B 3U bO 3U . . $ . # Q$ S$ ; . $ ]& M$ = Q$ . > & Q$ U@ # + > . . . & & & $ > > . S$ U$ & ; & U$ R$ | U$ H= & > ; ; & > N$ | X@ R$ > S$ Z3 N$ H= U@ & N$ { Y@ ; (& X@ ) | 2 %# 7- | { 4 X@ W@ } [ { *# /& 2 *# 6 } Y@ k V~ ( 6 a' 2 D, 2 1 7 b d $# } $# a 6! 3* d k Y> a ~# 6! 6! 6 n k a 0 ~# r a L= Y$ }& [& c n s> ~# ~# `$ 4* ,> 4* 4* @= y2 ^# m 2; '> 2; 2; /# E :# @= F= #] w F /U G w W) a7 I K '&.z '&.F= '&.'&.$T 8* $T c- c- V I{.N@ >z M m;. V m;.$T c- I-.4>.~,.v@.c- E$ I#.}Y L p*.B$.B$.iU iU p*.)Q 3d yS W4.RT lP +Z Z .Z .+Z RT ],.Z .Z .!&.Z .!&.Z .G&.CX 0$..` $).3@.E` D` a&.9&..` E` ]&.9&.+` ` .:=.`X z+.Y$.` .2Y z@.^&.S%.$ .0 .!$.N#.0 .)'.X4.3Y M#.N#.C+.oW ^W _W oW %Z oW oW _W cX DR >R VT mT yZ 'X 0` / rg t[ }c d/ X: d/ t[ t[ &^ `~ >/ `~ Q5 G~ {1 [ ~! {1 t^ Z4.Z4.6~ k{ [= `4.m- ') A> m- 0! )) ') A> )) 7~ 4% )) q~ )) K~ n- $, H. G. D. D. N. 8% L. 8% N. 22.J. 5.N. J. L. !) 22.{1.8% 3= 53.3= !) P[.p1.q1.P[.$4.Q1.P[.q1.q1.Q1.<{.D3..5.+5.i[.x2.D3.42.c|.l<.+5.P|.64.&4.E3.R1.@5.z2.n[.64.z2.<[.z2.z2.F3.n[.n[.S:.52.3>.#5.3>.P].U1.X<.P].T1.P].p[.p[.T1.Y<.P{ <: 62.4@ Y<.T1.62.3}.b$ _].<: |@ [@ 2@ _{.b$ p[.3@ R9 4' 8@ $5.2@ 2@ $* 3@ f$ 9@ w; %5.&5.*5.=5.-5.;5.>5.,5.*5.{2 xT JM 1L nS aO IY (V IY aO ,T .B %U hZ ,T bO bO bO ;Y 3U .B dz Yi Yr Fl 9> s+ '5.)5.!5.'j ~5.{5.i4.i4.i4.i4.i4.i4.i4.~4.~4.{4.j4.M4.~3.!3.O2.i3.;2.SD D:.B1.b1.m2.m2.]5.Rh Sn u .RX .S dP ^5./5.(5._5.Q4.n}.vC /- E% O+ /$ L+ V+ :5.<5.u2./- a> L+ X+ of {}.!}.8<.[5.tN }5.z:.|5.,[.$<.o4.-1.-1.9w E/.d[.0w E/.R}.3g 15.T K@ P@ D {& G G :# G c{ Y$ m D h c 1, ", +"9| J$ <{ <{ 2^ ]^ .( I/.|1 ]^ 9| 2^ I/ R@ <{ J$ p9 I/ R@ ]& ]& G= 0' I/ 0' % K$ ]& I/ # # # $ Q$ ]& + # V@ + Z, # $ # . 2) S$ 2) Q$ & Q$ ]& L$ V@ . V@ H= - > = |* S$ ' Q$ U@ > = ; ] > & ; S$ N$ . $= ; ; U@ ~ %= $ ; ; Gc - ; 2 S$ & P$ %= S$ > X@ ~ | & N$ / ^ S$ | ~ | 4 [ { N$ ;# X@ Z! ~ { 2 & <& } ( *# $# ## 2 1 6 J] $# d 6 a 4 6 6- ,# tA a ,# a < 6 V~ 6! a a q> 0 a k g j n c Q{ &].h c !# 0- _# K/ c s> Y$ c{ p s> p Y$ m b' ^# 1; 4* ^# |Z 1; w {& /# 4* :# /# F= u /U w /U G a7 '&.a7 z :# w A A$.a7 $T $T #] U!.I O@ .@. V V c- V =X K Z JW m;. V .@..@.4>.(#..@.d{ p*.aV *I aV :#.-*.-*.:#.p*.#N 3d +-.F>.RT ^P RT Z .)Q +Z RT Z .Z .+Z G&.R%.0$.RT +Z 7)..` /!.$).'*.d~..` E` o;.J#..` .` y@..` b&.]&.f-.#@.r*.<+.)$.B .25.<+.B .z@.z@.$ .$ .N-.N#..+.<=.M#.x%.pO cX cX oW oW oW oW cX cX oW FX VT 'X wY yZ hV gV k vy 9h {i vy 2I zn Lk Lk Mm 0h cd Lk {i Mm 0h 6e rg 03 Si We >/ F~ c9 c9 C{ C{ t[ `~ V{ &^ &^ X: &^ Z< &^ &^ b3 H~ Z< i2 O] G| `4.O] p~ m- z. [= A> m- 35.y! y! y! a, c; m- a, q~ )) G. G. H. G. 5% 6% G. K. N. N. L. L. N. 8% N. 8% N. L. y4.L. {1.y3.!) 53.53.q1.q1.45.B3.q1.34.Q1.Q1.Q1.34.B3.A3.A3.D3.55.65.x2.D3.p&.C3.O|.y}.P|.z2.64.@5.@5.75.64.z2.64.64.<[.85.<[.n[.64.85.64.<[.95.A2.P].05.]<.#5.{).p[.P].P].P].p[.P].4'.P{ P{ 4'.s1.62.T1._1.P{ <: b$ L- 9@ 2@ f$ L- 8@ |@ y= 8@ 9@ j$ |@ i$ a@ 8@ X, X% -* a5.b5.c5.d5.e5.f5.g5.h5.T:.i5.|L xT HB h+ :S lS xT l` IY -Y 3U hZ e..aO nS bO |K 1K aO )$ Xi v+ 8> '$ s+ g= j5.k5.l5.i4.i4.~4.K!.K!.K!.K!.i4.i4.~4.i4.~4.~4.E|.M4.S3.!3.O2.T3.l2.l2.S2.,2.U3.m2.]5.n2.Rh N}.Dd +y Wk .S m5.n5.yb o5.() p5.o}.vC L+ Q+ S+ T+ R+ S+ g1.{- Q& vC o}./- /- of U}.;[.q5.r5.s5.t5.@<.,[.,[.8<.^_.O(.e(.e(.e(.-1.O(.Wo k,.u5.H$ J Q@ G D w @= ^# D (# o (# `$ n c _# ", +"9| J$ ;b jP <{ R@ .( ;b I/ R@ R@ ]^ 0' G= 9| #S #S I/ J$ jP I/ BN G= ]& 0' 5_ # # 5_ 0' K$ # + + # # = = }, . % L$ > V@ # * . # > ' > # # . R- # 2) - > > P$ & . + N$ A; ] & ] $ = > = > 2) . ; %= H= X@ %= = ! | | | %= I= | S$ U$ S$ & ^& ~ N$ X@ X@ ~ ~ U@ ; 8- 5 ~ X@ { : ~ ~ [ Y@ 2 ## 6 Z! $# *# { 1 { d d : ,# V) } /& 7 3] Y> <& d : v5.w5.,# /& $# d k 6! K/ a k e 6 ,# a 3* e c L= c W$ j k L= o Y$ c g L= 0- ,> ;= e h p! x5.[# /# y2 /# t n^ ^# Y$ 2; F= F 2, |Z w $S G w ).F= z a7 z b' a7 [2.a7 z n! '&.C` U!.JW 8$. Z >z c- c- V c- :}..@.2Z 2Z z .4>.5 .x .H#.p=.Q aV MW 0S iI :#.-*.B$.-*.iU *I #N +-.(U I#.^P RT G&.G&.Z .Z .Z .+Z +Z lP bV D` w@.R%.e-.0&.0$.#).$).n,.CX .` 4..9&.E` E` pY J#.a&.3..o;.#Z z+.~W <+.[#.5Z #@....z@.z@.#-.z@.$ .B .0 .B@.N#.T%.C+.^W oW oW ^W ^W _W _W _W ^W ^W WT &Z gV 0` :W gV n1. 6~ m- m- m- #, y! a, X' t) )) #, J~ C. D. F. F. G. D. F. u) 8% w4.w4.N. 8% N. w4.N. L. 8% w4.!) p1.d, !) !) C5.P[.53.L|.B3.P[.Q1.Q1.q1.Q1.D5.$3.!) <{.x}.E5.O|.O|.D3.E3.F5.j[.G5.p&.H5.<[.54.E3.@5.54.<[.85.<[.n[.z2.z2.S1.S1.I5.k>.z2.J5.*|.A2.p[.{).*|.{).p[.P].A4.p[.T1.p[.4'.P{ 62.l/.X, <: P{ |@ ^; 2@ X, |@ 8@ `<.n, }@ l$ u; 2@ 4@ 6@ X% 1@ T* ** 5@ X% `<.K5.L5.M5.N5.L3.O5.P5.Q5.^) }.R5.-$ q+ q+ m+ n+ h+ m+ l` ^ .:S 3U ,T ,T bO Xi qt Xi 9> .B Fl p+ u+ N> y% |! 6{ Y).S5.T5.U5.~4.i4.K!.K!.U5.i4.~4.K!.i4.i4.h3.~4.E|.~3.P2.~3.k2.j2.;2.-2.T2.G1.b1.j3.)2.(|.Rh N}.vX RX ~U Bd V5.S}.W5.<5.X5.() t2.a> /- {- S+ V+ P+ R+ Q+ E% a> vC ~}.u2.n}.b[.h1.Zi 7<.)] o}.Y5.B[.7<.]_.$<.D[.#<.o4.9w E[.=1.O(.d[.0K Z5.1# 3# A x G }# w :# Z$ /# ^# Z$ r h h C; ", +"J$ 9| J$ <{ <{ J$ ]^ 9| <{ 9| 2^ BN I/ R@ ]^ 2^ #S I/ ]^ J$ I/ I/ L$ + L$ ]& K$ # 5_ + # # Z, Z, + L$ = # > V@ + + + # + # . $ = $= S$ + + > ]& k) V@ . # $ Q$ |* $ ; ; & Gc = > o! U@ & = > ; U$ > $ | | $ Q$ ~ ] & ; Z! | . N$ ~ H= ; ^ & ; ) N$ | ) H= Z@ ; { 2 X@ +# 2 05 2 7- 7- 7- ( d J) $# Y@ d } 6 7- d b k 4 2 d k 6 6 Y> +# 6 J] ~# q> e Y@ 5 k L= g ,# a ,# e L= ~# a L= n j ,# c a Q{ W$ r K/ c ~# Y$ ]# L= ,> Y$ E, Y$ ^# ^# G#.^# ^# t u `$ ^# /# D :# 1; D t |Z F z ^# K a7 a7 /U z )./U A$.{& A$.$T AR c- 8$.,/.:}.F= Z M #= T^ .@.4>. V t%..)..@..@.(#.`5.y .t%.B..:#.*I aV iI iU I#.*I qF BX #N k#.BX ^P .V RT +Z +Z RT G&.Z .RT G&.9$.H&.H&.0&.Z .{&.3@.9X F]..` CX .` E` 4..E` 4..3Z y@.4..@@.9&.2Y 4Z [#.<+.<=.5Z )$.Y$.p;. 6.nP 8 .$ .$ .N#.wZ N-.S%..#.cX oW nW cX oW _W _W C ._W ^W fV yZ %Z &` hV A> A> K~ y! 7~ A> y! P; #, #, n- 4% )) H. H. G. D. K. N. +6.5% D. D. 8% 8% O. 8% L. N. y3.8% z3.q& 53.$4.Q1.q1.q1.L|.34.q1.3= Q1.q1.Q1.32.A3.M|.D3.$3.@6.42.C3.x}.+5.%4.R1.R1.R1.64.54.R1.#6.@5.64.<[.85.85.64.64.$6.$6.k>.%6.64.z2.3>.r1.3>.C2.84.84.{).Y<.|@ p[.T1.p[.62.^; L- -|.1@ <: &6.|@ <: 3}.8@ u; 9@ 2@ 9@ 1@ 8@ 2@ i$ j$ 3@ X% 9@ 3@ 1@ 1@ 5@ l$ *6.=6.-6.L3.;6.>6.6| S) |' ({ .Q ({ q+ ({ q+ HB n+ l+ ({ TR HB 3U ,T .B |K cO BD MH ({ Xi '$ t+ i= M& y% |! 71.6{.f2.,6.'6.i4.i4.K!.i4.i4.K!.K!.K!.i4.i4.~4.h3.)6.O2.~3.S3.P2.i3.>2.R2.G1.b1.c1.n2.%1.!6.(|.vX vX :w .S dP ~6.{6.]6.^6./6.^N B[.{- vC E% Q& vC pM L+ a> n}.S+ E% g1.S+ /- a> $) vC 7<.n}.iP ;[.#<.D[.D[.#<.o4.,[.,[.$<.O(.(6.^_._6.:6.<6.Q@ K@ A p G /# /# G w % ^# h p c ~# r ", +"<{ J$ J$ 9| 9| J$ R@ |1 8S <{ BN R@ G= I/ G= V! G= I/ G= R@ L$ 0' I/ I/ 5_ L$ ]& K$ + 0' ]& K$ # ]& ;b % # ]& # # . 0' J$ ]& V@ > . $= . #^ . H= $ + 1* ,Q 9S Q$ ; & N$ > S$ > H= H= - . 0' ] > . %= ; Q$ $= $ = Q$ Q$ [* & = N$ ~ z] ; & ] ] U@ U@ = X@ / > ; ~ 2 Z! { | ) | X@ | N$ | | | 7- 1 7- ~ W@ ( ## Y@ $# 5 } / Y> Y> < 7 5 } ## Y@ X@ 7- j /& &# q> 0 Q{ {# ~# $# $# V) 6 ( e e ,# a ># !# K/ L= o a K/ {# {# b h ,> ~# 0 L= 0- n r }& 0- r % `$ $] % ,> ,> m u 4* ^# w w m t w 2; F= {& F= G z C` #] z AR ..@..@.c- .).v@.(#.:#.aV AX A: *I A: iU oY oY *I yS G$ oY (U #N )Q )Q RT Z .RT ^P Z .RT +Z 1@.Z .Z .<#.Z .+@.+@.0$.D` D` .` E` .` 9&.4..E` E` 4..E` a&.o;.` .` .4Z Y$.<=.qY S%.#@.B .5Z uZ ;X }6.$ .N-.B+.)'.0 .M#.^W ^W ^W ^W oW cX %Z cX cX oW FX gV &` 9` a` xY yZ gV gV hQ ^O ER _P bR jQ )K KJ zM )K zM )K XL GR BH XL tP ,H tP dJ UF /I /I bJ UF Wv ^L RA bJ CG Pw CG |6.rB :I dt 16.~i )u >k !i 9h {i WA {i Pc ^v A9 {i Mm Qd A9 Qd ad I0 6e O3 rg ul Ok W: c9 t[ C{ C{ d/ C{ C{ t[ d/ &^ Z< `~ t^ `~ `~ Z< &^ &^ a3 f( t^ 26.[= H~ E{ A> A> A> A> [= z. y! O) m- [= #, 4% )) #, 4% D. #, F. C. F. F. 9% N. G. v4.8% N. w4.w4.12.N. L. 8% N. 8% z3.z3.y4.22.55.z3.q1.34.p1.q1.q1.Q1.Q1.53.Q1.A3.36.46.+5.56.66.76.86.E3.C3.+5.R1.]1.&4.54.E3.E3.E3.z2.96.z2.64.n[.z2.64.96.F3.{).*4.*4.S1.3>.r1.3>.{).#5.84.P].62.p[.P].[@ <: G3.^; /; |@ 2@ T1.X% /; d$ 1- c$ 4@ x= 06.f$ x= b$ $5.8@ 9@ X% 8@ a@ 1@ U~ `% H3.a6.m|.8}.L3.b6.>~ c6.>~ g+ HB JM JM ]G 1L JM ({ q+ -$ Bs lS l` i@.;Y qt Xi !- m+ !- ({ 8> )$ |! t+ l; G/ 1].E^.z{.1^.d6.~4.i4.~4.i4.i4.K!.K!.K!.i4.~4.~4.h3.h3./Z )3.~3.l2.l2.i3.>2.R2.G1.b1.)!.n2.e6.C|.%1.f6.kZ +z .S -U |&.g6.h6.i6.i6.j6.~}.B[.u2.pM u2.k6.l6.n0 ~}./- L+ O+ a> P+ T+ T+ Fc ]w ]w T+ ^l iP ;[.H<.H<.;[.v_.0:.#<.#<.^_.m6.=1.n6.o6.]}.3d S Q@ C I F {& D t q Y$ p r c _# ]# ", +"<{ J$ ]^ 9| <{ I/.R@ 9| <{ ;b BN R@ ]^ G= G= I/ I/ BN I/ k3 I/ I/ 0' L$ |1 #S o! # # = 0' I/ * + 0' % + J$ 0' 1) $= . ]& [* . # ]& $ + + #^ S$ & . $= R@ 2) [* > S$ P$ . > ' ]& Q$ > P$ + V@ U@ > . | S$ & . ; ] Z! X@ S$ H= J) { U@ ' U$ X@ R$ ; S$ T@ . W@ ) H= X@ 7- { X@ 2 [ | 2 [ | | { | 8- 1 [ ~ { ## /& 4 D, } ( ## } } [ ( 6 <& 4 8- 2 } &# } $# ,# 0 a L= v5.i q> 6- 6! k 7 K/ K/ 0 0 a {# 0 K/ c !# }& c {# h r {# ~# 2, h }& 4* 2, K/ p G#.4* v s> 2, t w t m ^# b' ,> 2; p G t F= $S z G w /U C` F= p6.G a7 [2.n! P<.T^ 8$.O@ JW H[.O@ Z c- T^ T^ V c- .@..@. V .@.c- 4>..@.4>.B$.SO iU SO A: (U iU A: *I :#.(U qF K-.k#.iU 6).^P RT )Q Z .9$.)Q )Q RT RT |@.Z .'*.1@.Z .7).0$.D` 3@.CX 9&.hT 9&.CX E` E` 3Z 4..4..o;.4Z #@.` .2Y ...Y$.qY r*.Y$.Z$.kT jT L#.5Z !$.pO 6Z 0 .$ .^W ^W nW cX _W cX %Z C+.cX oW cX oW wY 7Z 3Y [T &Z &Z 'X *Z :W zM ,S &V GS .Y XL {L {L zM )K Wq RP zM 0N 0N 3M OA aJ /I bJ /I ;H UF UF OA !K UF !K Pw eJ RA Kk eJ vI *J CG CG >k jf 9h 9h 9h >k ~i ]A A9 {i {i Mm A9 {i A9 cd =0 rg vl >/ 03 rg c9 W: d/ d/ O3 C{ C{ G~ d/ C{ G~ d/ 7] &^ W{ {1 &^ `~ `~ Z< t^ 96 `4.E{ *^ 6~ A> z. `4.A> N; [= y! A# m- y! A> y! C. H. D. #, q6.G. D. C. F. C. 5.L. w4.8% r6.8% 8% 8% 7% N. N. 8% y4.p1.y3.N. 45.y4.34.s6.q1.P[.34.$4.t6.34.s6.Q1.36.u6.+5.s6.v6.i[.86.+5.O|.86.D3.E3.R1.E3.@5.@5.@5.85.<[.z2.z2.z2.z2.<[.*4.64.S:.85.74.64.%6.3>.#5.w6.r1.x6.x= p[.v; X<.y6.|@ <: X% f$ V1.C2.^; 2@ 9@ }@ 9@ 03.1@ z6.d$ f$ *3.<: l~.9@ `<.7@ 3@ o$ 3@ 3@ 2@ a@ A6.B6.8}.c6.C6.6| c6.D6.-$ xT !Z l` xT 1L 7W HB ({ nS IZ lS xT qN bM ({ !w ({ m+ n+ n+ N& 1].t+ y% =, `/ 1].G,.z{.f2.E6.i4.i4.i4.F6.i4.i4.i4.K!.i4.h3.~4.h3.)3.h3.O2.~3.l2.;2.i3.=2.F1.G1.b1.c1.{B G6.$1.Sn N}.Wk .S H6.I6._ .J6.K6.L6.M6.^6.N6.O6.u2.n}.~}.g1.`U n0 ~}.{- vC {- /- S+ R+ S+ be &g ta P6.Q6.iP b[.!}.H<.8<.8<.$<.O(.=1.9w o4.,[.R6.S6.RB (4 2& A x D t D :# w w u % ^# p ~# e ", +"9| J$ <{ *) *) <{ R@ *) jP <{ jP BN R@ BN I/ G= ]& L$ #S R@ I/ 0' ]& G= L$ L$ ]& + # + 0' L$ # # $ ]& # J$ 0' $ k) o! $ . ' # + > + 0' + > $ S$ . . > ' & . V@ > U@ E! o! - ' $ > S$ Q$ = U@ & & > ] }, U@ =' U@ X@ | ~ ) ; 2 ; ~ ; R$ > > *# | H= & ) 2 ~ ~ 2 | 2 2 [ Z! ) | X@ U$ [ 4 ## [ X@ J) ~ / } 1 ## Y@ } W@ ># ,# 6 7- *# $# $# 1 ( b 0 Y> 0 L= 0 ~# k z: {# q> 0 e L= Y> 8 z: {# ~# n ~# 6! r h 0- Y$ L= 0- 2, n^ h p r n b' % m b' 1; 4* ^# t t [# /# 1Z w w 4* {& G /U C $S F= w F= P<.G a7 z ..@.>z c- c- 5 ..@.4>.t%.SO r! aV y .v@.I#.oY iU I#.aV (U XX +).k#.RT )Q +Z +Z RT +Z RT RT +Z ^P +Z 9$.Z .{&.+Z e-.D` 0$.$).7` 4..CX E` 9&.E` .` 9&.3Z .` 9&.` .7 .4Z z+.Y$.#@.Y$.z@.4Z z@.$ .DR pO (,.<+.OW aX )'..#./&.^W _W ^W ^W cX oW _W oW oW cX oW 'X ES &T A> N; z. [= A. M; m- m- N; D# F. D. n- n- G. D. +6.C. C. y3.w4.N. 8% U6.w4.w4.8% 8% w4.8% y4.$4.y4.22.y3.$4.y4.Q1.$4.V6.q1.q1.q1.t6.s6.34.34.W6.y4.X6.$3.t6.C3.76.75.@5.86.@5.@5.@5.54.#6.75.E3.64.64.z2.64.z2.z2.z2.85.85.]<.%6.z2.85.64.3>.{).A4.84.#5.Y6.T1.^; p[.^; T1.<: 84.p[.4@ X% 9@ 2@ X% X, <: 2@ 9@ 1@ [@ T* (; v; 2@ H3.y] 7@ 1@ 9@ a@ l$ 6J nH Z6.`6.%_. 7.+) D6.;4.2[.}K 7W 7W !..!..!..({ HB 1L bM lS lS HB }K m+ q+ =; h+ ({ h+ ;$ M& @) u<..7.u<.3(.+7.V].z!.j].@7.~4.i4.K!.F6.i4.K!.i4.K!.K!.~4.i4.)3.)3.)3.O2.T3.i3.l2.k4.F1.F1.#7.$7.+I Rh f6.vX aW ^+.+z dP -}.Q .%7.D;.&7.*7.=7.-7.;7.>7.i6.B[.u2.B[.g1.^l {- g1.o}.,7.P+ /- g1.;[.'7./- )7.!7.~7.B[.{7.]7.!}.b[.!}.D[.$:.E/.-(.o4.f(.^7./7.Nh s[ I N= /# {& w D M= D u D 4* /# r [& o ", +"9| <{ 2^ ]^ <{ |1 J$ J$ 9| <{ <{ #S ]^ G= I/ I/ R@ 0' I/ I/ I/ I/ I/ I/ G= ]& 5_ = # K$ 0' 0' + 5_ ]& ]& V@ + $ k) R@ ]& L$ + T@ . # ]& > !, ]& = > Q$ $= U@ & . > $ + - ; U@ ' N$ ' A; * = > Q$ U@ U@ - P$ S$ > ^& A; $ V@ U$ H= Q$ > . ; %= N$ %= ~ ; | N$ ) ] ; ] 2 =' X@ O$ 2 P$ { *# 2 ~ | I= I= ^ I= | / 7- ~ { [ 7 => *# d x0 7 } d $# *# { /& [{ 9 V) 4 V~ k ,# $# 6 $# 0 3] ~# a a a 8 a a e K/ e t' ;= z: c n L= p 2, p p {# Q{ u q 0- % 1; 1; 4* Q(.t d<.p m % 4* b' 2; t t #] /# 2; F= a7 F= z B '&.G F= *].a7 a7 z /U AR AR (7.a7 1& AR H$ M .@. Z 8$.c- (#..). V .@. V 0S 0S v@..@.AX aV AX I-.I-.aV A: B$. ` J *I _#.J-.k#.)Q +Z +Z RT Z .+Z RT +Z Z .Z .+Z +Z Z .R%.H&.Z .R%.R%.3@.'*..` E` .` 4..4...` 4..y@.d~.E` ]&.:=.4Z 4Z EX E_....B .Y$.~W B .DR DR L#.L#.L#.nW N#.0 .X4.aX oW uY ^W nW oW nW oW cX cX oW &Z 'X bX {O gV _P ,S nU _P :W hV ,S hQ XL {L &J )K )K )K XL zM )K {L {L KJ aN 3M aN /I Wv OA OA bJ ;H ^L IH /I EH DH rB rB CG )H sy !i >k >k !i ~i ~i Ri {i )v A9 {i {i {i {i Qd Qd ad -8 cd V: u4.I0 c9 rg W: O3 }c V{ t[ V{ V{ G~ d/ F~ C{ `~ `~ W{ `~ d/ `~ W{ l- *^ &^ l- H~ X= L} ~! A> m- m- A> z. m- [= [= m- [= N; m- M; F. D. D# }= D. B. y3.+6.F. q6.8% 8% v4.q6.w4.r6.N. 8% w4.w4.y4.$4.w4._7.53.$4.y4.53.34.55.Q1.q1.Q1.34.34.34.Q1.Q1.Q1.t6.%4.t1.:7.C3.D5.@5.<7.75.@5.[7.}7.E3.<[.E3.#6.z2.85.85.|7.|7.85.85.85.F3.64.74.64.z2.r1.I5.p[.^; r1.p[.G3.p[.p[.^; 9@ ,~.p[.<: _{.x= <: x= &* 3}.P{ _{.`<.9@ 17.i$ f$ X% %* 6@ 7@ Y, 7@ g$ 7@ i$ 6@ e@ 27.37.C6.47.,- ^) k! q+ lS JM q+ q+ .Q 1L HB xT xT 1L 1L 1L HB m+ h+ q+ M& ({ )- |^ @) r+ u] (.X{.[).+[.G,.{~.P'.j].57.~4.~4.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.O2.k2.O2.j2.=2.>2.,2.F1.G1.b1.]3.Rh (|.N}.RX RX .S ~P -}.@H 0#.67.77.87.97.07.a7.b7./6.c7.d7.t2.LP o}.iP ^l g1.~}.n}.n}.vC a> Zi p5.e7.Zi pM Kd f7.g7.h7.i7.j7.h1.k7.!}.9w x_.^_.rv E[.AK ]s vo b- N N }& r `$ G ^# N O' `$ e h h 4* ", +"<{ <{ (}.9| <{ <{ R@ 2^ 9| ;b <{ <{ J$ ]^ G= #S 2^ I/ 0' I/ ]& I/ I/ 0' R@ ]& 0' 0' + # + 0' + 5_ + ]& # K$ 0' = 1) }, $ + V@ # Z, ' > . Dv > U@ . k) - + . S$ M$ # S$ . $= . $ U$ S$ Q$ $ |* & * > ; > > | ] H= & U$ ; %= ~ ; {c Q$ S$ . > N$ ~ . *# ~ ; & U$ Q$ ] R$ 2 { 5 d < N$ [ 2 ## ## | ) 1 $# 4 ] X@ 2 5 1 $# J] d 7 d ( d 6 ## d ## 3* a $# J] ,# q> } ~# 7 {# 0 !# [{ d 0 0 ,# 5 c L= 0 ~# c t' n L= h 0 L= p r {# r p n #| 2, Y$ % t 1; V| Z$ m t C C :# w F F= F= #] /U /U F= F= F= |Z 1Z z a7 n! '&._}..)Q +Z RT )Q Z .+Z )Q Z .RT RT R%.Z .9X AS 1@.R%.R%.3@.0&.#).d~.E` CX CX 4..E` +` E` .` 3Z 4..4Z z+.pY 25.#@.z@.5Z [#.m7.z@.pO +.jT OW z@.^W aX +.%` ^W ^W oW cX nW nW ^W ^W _W oW 9` gV ES ,X $ . > . [* # + $ S$ + V@ %= & 1* > = # + . J$ . = $ ; S$ & > V@ ; N$ & . - & N$ %= o! ' ; ; { | ) & N$ ] & Z! ^ ] ; = | ~ X@ [ / J) [ ) I= *# +# 2 ~ [ 6 d *# X@ ( d $# $# d e 6 / [{ 7 6 6 q> a 0 6 k {# k d 3* 7 K] 5` q> &# a 7 6 c a 0- ~# !# 3] k n W$ {# s> (# h n Y$ h h q n ;= p q 1; d<.4* &].m `$ t /# ^# 2; {& {& F w $S {& /U F= z..E $S p6.a7 z z @ .'&.a7 '&.1& 1& _}.z '&.8* c- a7 V 1& HV V V M c- T^ .@.5 ..@. V .@.(#.O B$.iU r! aV -*.iU SO I#.(U M7._#.I#.+-.+Z RT #N >$.Z .+Z )Q RT G&.RT +Z sZ 9X 1@.0$.R%.E` +@.+@.#)..` 0$.E` CX .` +` 9&.9&.9&.:=.y@.2Y DX Y$.)$.D.....2Y S%.!$.nW L#.0 .aX `$.pO pO OW 8 ._W cX cX uY cX oW ^W ^W cX cX bX gV &Z $+.@+.,S [T qP rP ,S pP = .GX hQ kV )K )K XL )K XL XO )K BH XL GX BH aJ BH KJ tL ;H ;H /I UF OA /I (I sL /I 'A |6.rs Kk rB Ow VA !i !i jf ~i ]A ]A }5 >k 9h A9 Mm Qd A9 Ri B7 A7 ^] -8 A7 H, M4 ,k 0h V: 0^ d/ C{ W: C{ C{ G~ G~ C{ F~ s[ d/ W{ G~ 8) I~ Y^ 7] *^ l] p* l- N) N) 8] X= [= N) z. z. z. m- z. z# z. A. M; #, F. D# D. n- m& }= I. F. N7.D. F. D. U6.o- O7.w4.N. 8% $4.w4.y4.y3.y3.y4.U6.C5.C5.$4.P7.34.Q1.Q1.C5.55.s6.Q1.34.E5.Q7.E3.R7.E5.t1.S7.S7.E3.T7.75.@5.75.U7.#6.54.@5.V7.75.85.64.85.85.85.z2.64.A4.y6.W7.85.X7.#5.f$ {).L- #5.{).&3.^; <: [@ [@ T1.2- X% p[.X% 3@ 9@ 0@ X% 3@ f$ l$ f$ l$ a@ ** y= 6J 6@ 3@ 6@ a@ 6@ 7@ %* F3.Y7.x7.R! >6.f+ ./ QS BU G4.l` IY !` lS TN lS xT 1L q+ m+ q+ m+ ({ ({ k+ G/ ;$ =; h+ n+ =; l+ u<.71.9!.G,.U{.y{.U].=O K!.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.h3.O2.k2.k2.j2.N2.s$.F1.b1.c1.a1.Rh (|.vX vX RH ^+.kA d _ .&[.{#.]@.,y Z7.`7.W5. 8.^6.B7./6.-7.:3.^6.A:.B[.t2..N g1.~}.n}.n}.a> ^l a> S& O6.of iP {}.;[.u2.~}..8.b[.{}.+8.H<.G<.x_.d[.!s . 0' = V@ [* o! $ # . . + R- S$ S$ |* A; [* V@ |* > . Q$ S$ V@ & # o! . Q$ ] > H= U$ U@ + R$ T- & R$ { N$ U@ ] T- Z! X@ ~ ] H= ~ .# X@ g{.Y@ ~ ~ /& < [ ( ( { I= } 2 <& X@ | 2 N$ [ [ 5 6 } 6 d } ( 7 $# ## 9 5 k a d q> 7 [{ D, a &# a 0 V) d b 9 $# ~# 0 a !# |& !# n |& c 0- |& h ]# 2, 1; h h % V| 1; ),._# % `$ p! h p :# :# :# t {& t D G s> F= {& z {& {& b' D F= /U '&.z z B z F= '&.a7 1& $T 1& T^ 2Z $T Z :}.JW V c- V V z _+..@.4>..@.4>.4>.4>.aV B$.iU AX :#.*I QT *I k#.oY k#.oY y+.RT RT ^P +Z +Z +Z RT ^P RT G&.1@.sZ +@.e-.Z .w@.#).hT 4..$).CX CX hT .` .` .` CX E` 9&.:=.a&.4Z 4Z `X ..` ./,.2Y Y$.B .rY 0R B .z@..+.pO nW aX 0 .%` DR uY %8.cX oW ^W nW ^W oW _W (W 'X bX ES a` rP hQ rP _P pP ^O zM kV kV KJ )K tP 'R {L ^O XL 'R )K jK XL lK OA BH bN OA ;v /I OA OA UF ^L )H /I 'A CG Kk Kk Jk Kk dt !i >k !i !i >k }5 Ri >k Ri A9 A9 A9 Ri {i A9 A9 Qd nj A9 w/ l8 C{ &8.0^ O3 W: C{ C{ C{ V{ t[ V{ V{ r) W{ G~ W{ `~ '{ s) `~ I~ m] *^ *^ W= {! `- W= j& z. z. *8.35.m- s. m- Z= A# z. X= z# D# C. C. F. C. m& m& F. m& F. F. 7% w4.8% =8.8% 8% 8% $4.-8.w4.U6.$4.C5.53.C5.$4.;8.;8.$4.C5.;8.Q1.34.;8.s6.y4.34.s6.>8.%4.,8.t6.F5.'8.75.@5.75.@5.)8.!8.)8.~8.)8.75.{8.]8.z2.64.64.64.64.&3.u7.W7.y6.85.64.3>.#5.L- ^; A4.3>.p[.2@ y= x= 6@ X% L- <: 9@ 2@ K- z6.8@ c$ 7@ 3@ 6@ f$ `% 5@ h$ a@ f$ 7@ ** GV `<.g$ 6@ g$ !{ ^8./8. }.^) +) *P k` L..xT xT TR ]G HB I* q+ I* j+ h+ l+ m+ h+ m+ ({ h+ (.@) r+ n+ n+ ;$ |^ (8.u<.9!.4^.z!.z!.(~._8.U5.~4.~4.~4.i4.:8.:8.h3.h3.h3.)3.)3.O2.k2.j2.=2.K1.s$.G1.b1.91.Rh Rh N}.RX *n Wk kA d Q .0#.<8.]#._d iu I%.[8.}8.4N |8.c7.c7.j6.-7.7<.18.7<.B[.~}.vC g1.^l 28.38.B[.48.^l H<.<|.o}.<|.o}.;[.iP G<.G<.iP <3.7<.58.68..3.78.9w d{.4S 88.1# S I C w F /# `$ % `$ ,! 9- p Y$ K= ", +"R@ R@ J$ 98.<{ <{ jP 8S ]^ G= #S <{ <{ R@ BN R@ #S L$ R@ #S |1 I/ I/ I/ G= 5_ I/ 0' 0' =[ # # ]& 5_ $ =[ L$ 0' V@ L$ 0' $ + + k) + # M$ 1) Q$ V@ ]& M$ + # [* $= V@ $ Q$ . . > S$ & A; > ]& $ - ' = U@ P$ = > ! Q$ o! > N$ . Q$ ^& !, o! ^ U@ U@ & ; > > ; R$ | | ; R$ | ~ Z! Z! ~ X@ ## ~ | X@ Z! [ ~ 7- ) , ) [ ## X@ *# 7- %# 6 *# ) 4 / $# 5 b $# < d 7 ># d ,# 7 0 b a i 6 b {# {# W$ a a a L= A~ L= 3* c z: {# W$ a' g k &].p n n c p 1; h b' p ,> ,> 1; t 2, L= 2, 1; `$ m n^ :# :# :# u F G {& C` z z..P<.z a7 a7 '&.'&.z '&.z '&.8$.a7 KW K F= n! c- AR 2Z V V V V .@.AR c- V 5 .4>.{[.v@.x .A: iU B$.:#.B$.(U *I oY *I oY yS YX oY .Z +Z ^P _M Z .Z .)Q ^P +Z R%.RT lP 1@.|@.0$.$N hT hT .` 0&.+@.CX CX E` 9&.E` CX 3Z .` f-.]&.:=.b&.4Z ~W l#.qY D..l#.5Z @` DR z@.B .;X rY DR vZ %` nW oW nW ^W oW _W cX ^W ^W mW 7Z WO t4.bX bX k !i a9 ~i Ri jf ]A a9 {i Qd a9 Qd nj Qd A9 Qd !1 We 0h C1 M4 w/ W: C{ r) V{ d/ d/ F~ G~ F~ C{ d/ l] '{ `~ '{ `~ f( m] l- ,{ l- W= 35.z> W= z. z. s. z. [= [= [= [= [= m- M; A# 3% n- F. C. o- F. C. D. F. F. C. N. r6.w4.7% q6.r6.8% V6.-8.r6.y3.;8.;8.C5.C5.;8.a8.;8.53.P7.;8.Q1.34.;8.34._7.Q1.b8.c8.S7.p7.34.d8.'8.E3.)8.75.e8.<7.<7.{8.|7.#6.{8.{8.)8.|7.<[.|7.|7.<[.*4.u7.85.|7.|7.&3.{).r1.L- A4.L- r1.y6.2@ p[.9@ x= C2.<: L- g$ T* x= 9@ U~ X% X, 03.3@ X% %* 8@ 5@ a@ 6@ 8@ $5.3@ 7@ a@ ** g$ f8.g8.h8.6| D6.G* I* qJ [$.~Z lS xT lS q+ h+ &$ h+ l+ |' l+ /) |^ l+ @) l+ I}.l; =, l; ;$ @) `/ (.u<.o].+[.y{.P'.L'.i8..4.h3.~4.~4.i4.~4.~4.h3.h3.O2.)3.O2.O2.k2.=2.=2.K1.F1.b1.]3.+I Rh (|.N}.RX ^+.dP R..Q .=f _ .]#.2x Cj j8.k8.l8.m8.h6.n8.o8.B7./6.B7.:3.p8.q8.7<.B[.u2.B[.n}.A:.m0 ^2.r8.^l n}.pM !}.{}.Y3.!}.H<.s8.8<.!}.m8.t8.#<.W}.;1.V}.u8.J<.+O v8.` @% x D t m w 4* ,! m t' ~# n r c ", +"R@ J$ J$ <{ ^, <{ 8S <{ <{ ]^ BN 9| 9| J$ jP V! <{ 0' G= V! <{ #S #S R@ J$ L$ <{ ]& J$ L$ # # ]& 0' X! # ]& L$ # # ]& J$ # . # + # o! > k) . > ]& & > (& $ . [* ; S$ > > $= & ' $ =' . | [* ' Q$ - ; . ; U) Q$ & | R$ ; R$ | .# | `@ - . ^ $ Q$ N$ | & & > ^& | Z! 2 | ~ ) - Z! ( | 8- 2 U$ 2 Z! ) *# < O$ { $# 2 , < x0 J= / 2 / / 6 6 *# 5 6 q> ,# / } 2 5 ,# e 0 6 6 7 ~# a a ,# e !# 0 8 6! K] ~# L= 0 K= K/ n p! ]# 2, h c % L= r E, 2, 1; 2, Y$ D % s> b' m b' t {& w8.G {& F= #] 2; z a7 /# C` A$.A$.z K z a7 a7 z z 1& a7 $T E AR AR a7 1& T^ .@.KW c- 4>.4>.4>. V =X 5 .5 ..@..@.x8.oY iU aV iU -*.-*.aV <_.*I *I qF c~._#.J~.^P ^P RT ^P Z .)Q )Q +Z +Z +Z bV -X {&.R%.+@.H&.+@.CX 0&.$).E` hT .` 9&.E` E` y@.4..G>.+` 4..:=.pY tM EX !*.B .7 ....z@.jT aX z@.%` L#.DR DR lU DR DR nW +..nW oW DR ^W oW %` sO KQ fV UT ,X PW &Z _P xY qP qP qP _P qP yM zM XL tP zM )K zM XL jK {L XL zM aN kK OA DH OA OA /I OA =u Wv ^L Pw ]E ]L rB Kk !v Kk CG if dt )v jf Ow *0 *0 Ri a9 Pd >k a9 a9 A9 Qd Qd -8 -8 }5 ad z7 V: P5 C1 w/ O3 O3 V{ d/ F~ F~ C1 V{ W' F~ F~ d/ 8) W= I~ G~ G~ I~ h' W= '{ l- H~ [= `- H~ N) z. z. N) z. [= m- z. _> m- [= y8.O) z8.F. F. A8.O) C. C. C. C. F. =8.w4.w4.U6.m& m& w4.w4.C5.r6.B8._7.P7.C5._7.C8.V6.$4.D8.;8.P7.34.s6.s6.,8.34.a8.56.$3.t1.T7.E8.p7.C3.G5.75.T7.'8.T7.'8.75.~8.75.75.{8.~8.64.|7.85.|7.|7.|7.85.|7.|7.|7.|7.|7.#5.#5.r1.v; A4.8@ C2.p[.j$ ,~.l$ l$ |@ 1@ C2.}Z f$ 2@ :1.9@ *3.7@ `% F8.3@ 04 ** 0q a@ Y% h$ ** h$ a@ b@ G8.H8.I8.J8.K8.b6.L8.)` VV }K lS /) 6> g+ k; >~ l+ l+ *, f= ;$ l; ;$ @) @) j_.;$ =, `/ @) 3(.i_.`/ t/.4^.V].z{.P'.W|.M8.Q3.TY ^q ~4.~4.~4.~4.h3.)3.)3.)3.O2.k2.=2.=2.=2.G1.01.N8.Yd (|.(|.N}.vX Wk -}.-}.e}.Vk tf y<.l+.< .O8.P8.Q8.R8.S8.^6.G|.|8.B7./6.-7./6.T8./6.s8.7<.B[.u2.n}.u2.pM n}.o}.n}.n}.H<.8<.H<.h1.o}.;[.H<.iP h1.;[.X3.Y3.%<.U8.V8.-1.v2.A[.W8.4# S z u :# w ]# p % C; h r o c *= ", +"<{ 2^ J$ <{ 9| J$ <{ 9| J$ R@ R@ L$ <{ J$ ]^ ]^ 9| #S R@ J$ BN I/ I/ I/ L$ 0' I/ 0' ]& 0' 0' # 0' + # + J$ # + = * # # [* # $ # ' $ + - $ . $ =' . # V@ & > . . V@ . H= > ; ' > > . o! U@ & . %= Q$ S$ %= - > S$ | 8- %= . . . P$ ~ - ; O$ ; ] %= & - & H= ] | X@ { { ; ] | | | U$ X@ ( < 2 | /& X@ 2 2 J= } } 6 : d 6 < 6- 3* d -# /& ( 6 5 /& ## 6 a 3] ,# 7 q> Y> 0 0 7 i 6! a L= 8 ,# z: a n n Y$ h c s> h ;= 2, h ,> Y$ ,> m ,> 4* p |& q p q /# b' 2; $S #] #] {& w {& w t z a7 E b' F= a7 W) t F= '&.z w .x .AX oY I#.5 .B$.B$.oY iU oY (U (U )Q yS qF ^P )Q )Q ^P Z .+Z +Z +Z Z .+Z Z .-X +Z |@.G&.|@.{&.d~.'*.$)..` .` E` E` .` .` +` ]&.4..E` pY y@.|Y a&.2Y 4Z z@.9 .2Y z@. +.TT 9 .jT jT vZ DR $ .jT pO nW DR ^W nW ^W nW oW ^W DR nW gQ UT H4 Z8.UT >R /P qP _P hQ _P pP _P [T {L {L )K )K )K zM {L HJ lK )K 'R Ik OA MQ OA sL NA wG =i OA OA UF Jk ]L 08.Jk ol CG Dm rs Kk `8.!v ml !i *0 Qd a9 9.A9 9h A9 b/ A9 Qd a9 Qd Qd nj }5 !1 F~ M4 O3 C{ C{ w/ O3 r) 0^ w/ V{ C{ C{ F~ V{ W{ W{ W{ V{ h' W' h' l- *^ l- m] j& z. l- l- s. s. s. z. z. [= z. s. y. ~~ [= X= F. C. C. }= O) F. F. }= D. m& .9.F. +9.r6.o- m& w4.w4.r6.o7.r6.w4.;8._7._7.P7.;8.s6.a8.34.s6.s6.s6.a8.s6.s6.s6.s6.34.@9.t7.#9.s6.S7.'8.X6.S7.'8.{8.E3.)8.75.)8.{8.75.)8.)8.$9.85.u7.&3.|7.|7.64.|7.85.85.$6.u7.#5.^; X% X% 9@ 8@ 2@ 8@ X% 8@ %9.|@ 3@ 62.8@ i$ h> X% l$ 3@ c$ 6@ GV GV l$ &9.r' f$ 6@ U* 94.8@ .& *9.21.=9.-9.;9.>9.b6.&$ *$ ,- ^) k; 6> s{ ,9.|^ 6| j_. (.n+ j+ ({ f= #F ;$ /) n+ j+ k! @) }} '9.)9.3(.l_.!9.~9.z!.l).x{. !.{9.:8.~4.~4.~4.~4.h3.h3.)3.O2.O2.]9.j2.F1.F1.G1.]3.n2.+I (|.(|.vX RX +z dP d /@._ .aK ]#.S+.hz ~%.^9./9.Q8.&;.(9.4N ^6.G|.B7.B7.j6.c7.c7.B7.:3.^2.B[.g1.g1.pM -7.:4.b[.b[.n}.a> ;[.U}.<|.h1._9.:9.g1.D[.<9.8<.z:.w_.So =1.o4.-1.d[.Z2.1( H A D z D Y$ p t n m (# ~# Z$ n ", +"98.9| J$ <{ 9| J$ <{ <{ *) R@ R@ jP #S J$ R@ R@ BN L$ I/ I/ L$ I/ 0' R@ R@ 5_ #S + + I/ 0' # % 0' p9 5_ K$ # + + # X! $ # * + $ . . # 1* L$ = = . > L$ > V@ =' & . . $ . # & S$ & ; ' Q$ ; > S$ H= ; . > > T@ R$ P$ U$ }* . > & ] & ] N$ | %= N$ W@ U@ ] A; 5- - ; ~ X@ N$ N$ X@ U$ ~ 2] T- W@ 4 *# { | => 2 2 ( => $# 5 `@.[ i 3* $# 7 ,# 6 -# $# ( a 6 J] 6 7 3] 6 $# 2* 6! ~# ,# tA 3* 0 0- B; ]c 0 0 0 0 h h s> K= h |& ,> h ]# ~# 0 L= t' 1; % h 0- 2, 4* q p 4* /# b' % w 1Z b' t t {& G G G C F= /U b' /# K . V .@. V 4>..).(#..@.v@.*I iU >*.(#.;*.*I (U I#.iU iU J[.[%.(U +-.RT RT +Z )Q RT )Q RT +Z +Z +Z 9X -X 9$.e-.H&.n;.0&.~&.0&.3@.AS hT CX E` .` .` aS 9&.hT 3Z y@.4Z ST tM #Z EX B .......z@.uZ pO z@.nP 0R DR aX pO 0R 5@.nW DR DR ^W oW ^W nW [9.FX >R 2M {O /W UT {O qP WO WO _P hQ iQ }9.hQ ^O HJ zM zM {L zM )K XL ER {L tL BH aN DH Wv NA =u Wv OA Wv Wv OA 'A Kk OA )H Kk eJ eJ rB 'A rs rs :I >k qs Ow Ri >k *0 }5 A9 A9 A9 a9 A9 Qd Qd B1 Qd ~1 |5 -8 C1 b9 r) w/ C{ C{ F~ r) V{ F~ F~ K! V{ F~ F~ W' 8) W{ X: G~ D{ L! s) p* W= s. j& H~ z> v. [= z. [= s. z. z. s. |9.s. B# A. }= J~ N7.m& }= C. }= F. 19.C. B8.=8..9..9.C. -8.8% 29.39.29.39.C5._7.s6.C5.;8.a8.s6.s6.34.s6.34.34.34.56.56.34.;8.P7.A3.t1.49.59.'8.59.R7.@5.R7.)8.75.~8.~8.69.79.{8.89.]8.|7.85.85.54.|7.&3.|7.85.%9.99.,~.i$ X% `% `% ,~.09.%9.9@ y= 2@ a9.2@ C2.z6.&3.j$ 3@ 3@ 2@ X, f$ 6@ 7@ l$ H3.Y% 8@ 1@ n$ h$ j$ y= a@ b9.c9.31.d9.e9. }.;6.e= >3. 7.l^ ;6.f9.g9.Q5.3(.k; 6> k! n+ HB HB HB HB h+ f= ;$ 3(. (.|^ l; /) Y{.3(.t/.0!.+[.z!.x{.x{.h9.m=.m=.~4.h3.h3.h3.h3.h3.O2.k2.F1.i9.=2.s$.B1.A1.j9.j%.(|.(|.XW ^+..S ~P q../@.&[.&[.m@.l+.S+.8*.:b k9.lh l9.m9.n9.i6.^6.n8.n8.B7./6.-7./6.18.Q4.t2.^2.^2.7<.s8.j6.o9..N ~}.p9.iP o}.s8.H<.0:.q9.r9.s9.k6.t9.8<.0:.u9.58.G<.C[.X3.v9.VY B1 S z I C {& D `$ 4* % r r ]# o r ", +"9| w9.], 9| <{ <{ <{ <{ I/.<{ ], 9| <{ L$ J$ 2^ 9| jP I/ G= 2^ I/ 0' ]& I/ I/ L$ L$ 0' 0' 0' # # ]& I/ 1) + 1) # # # = # # $ . $ * & Q$ + V@ # + 0' V@ > ]& > # . + # [* > V@ . ] S$ ; $= - o! > & > & > . > U$ ; S$ R$ U$ X@ 9S p9 ! > Q$ X@ ) S$ | R$ ^ Q$ ; ] *X Q$ W@ | 7- Q$ | [ X@ *# { 2 : [ ~ 2 N$ Z! N$ /& ~ 4 ( D, Z! 4 ,# Y> 6 [{ a ( *# } ( } } a a N' V) 7 a [{ 6! q> 6! 0 d 7 {# } tA 0 6! 0 ~# c s> 0- x9.c c{ n r p c Y$ ;= p 4* 4* h ~# q ,> _# Y$ b' Z$ 1Z % m ^# /# {& :# #] G w F= z F= /U F= G I a7 '&./U C a7 z '&.~& a7 H$ Q@ $T M G JW V Z 1& k1.U!.c- .@..@..@.z .4>. V .@. ` A: iU .).B..L oY B$.:#.p*..Z #N oY (U ^P _M +Z RT ^P `I +Z )Q +Z RT +Z sZ H&.'*.-X '*.0&.CX $).0&..` CX CX CX E` .` cQ 9&.4..a&.9&.pY 4Z !*.5Z l#.=S ...Y$.qY B .pO G` jT pO L#.DR ^W DR #V DR nW nW DR nW DR ]W $` ^W $` KQ !L IQ fV rO _P _P [T _P 2+.qP >N hQ hQ 'K {L y9.{L )K )K zM )K )K )K ;v KJ =u HJ >H NA Wv OA Wv Wv Wv z9.Kk UF Wv sy !v rB Jk ma Kk nl {H %0 if if 9h a9 a9 a9 a9 a9 }5 A9 Qd }5 A9 B7 l8 B7 V: V{ r) F~ w/ V{ w/ V{ O3 V{ V{ V{ W' l* F~ H, F~ h' b; H, W' A9.W' p* `~ l] (% B9.s. $~ (% [= s. z. z# <% s. z. s. |9.z. s. k& C9.D9.C9.C. A8.C. F. C. m& m& w4.r6.C. r6.m& o7.y4.w4.r6.E9.r6.C5._7.V6.D8.P7.;8.P7.C5.s6.Q1.s6.34.a8.Q7.Q7.F9.F9.c8.t1.S7.a8.W[.S7.S7.75.75.r7.75.75.G9.~8.~8.75.{8.)8.89.85.|7.H9.99.&3.|7.|7.&3.|7.I9.H3.&3.^; p[.^; x= 9@ 6@ H3.l$ X% 5@ a@ &* 04 8@ Y, (; l$ y] X% 8@ 2- 5@ `% h$ a@ .& GV #* e@ o$ w; 0@ J9.K9.L9.M9.N9.C6.O9.C6.P9.>6.Q9.D6.y7.R9.S9.T9.6| >~ I* g+ i_.l; l+ @) n+ g+ l+ |' 3(.3(.`/ a!.U9.$_.G,.$_. {.P'.V9.#'.W9.X9.F6.~4.~4.~4.)3.)3.h3.O2.k2.=2.Y9.F1.R$.TB #1.Z9.K=.{..N}.RX `9.kA e}./@.r$.]#.m@.l+.S+.^@. 0.fw lh Q8.l9.NY .0.+0.4N n8.|8.G|.-7.j6.-7.@0.Q4.^2.B[.B[.$:.#0.-7.$0.B[.n}.B[.u2.o9.iP !}.vS %0.:w &0.*0.=0.t8.-0.;0.:4.U}.<|.#<.a[.jA M4 K@ D G Z$ Y$ r }& t % r Z$ h o h ", +"<{ 9| 2^ 9| <{ I/.<{ l) .( J$ L$ *) 2^ ;b L$ 2^ jP R@ BN I/ J$ jP p9 I/ I/ I/ #S J$ R@ = I/ 0' 1) #S L$ ]& # + * + + + ]& $ # = . = # S$ [* Q$ > $= ]& # ^& $ ' V@ $ $ Q$ + ; P$ + > . Z, # . ; Q$ ; |* + > ; > *' > ] %= P$ R$ - . %= ] $= & ] ~ | 2 { N$ H= | W@ N$ 2 N$ | | | 2 N$ ) 2 xS | & Z! | 1 ## X@ { ( } 6- } 4 [ < ,# d } 7 ># 9 7 V~ *# d /& ## $# b ># 7 Y@ J] } a 3* ~# c ~# 6 ~# ~# L= n n 5` i s> r n n L= p n -) `$ n Y$ % 4* 2, n^ % % /# ,! `$ q t 4* 4* #] /# C )> w w F= 1Z F /U {& )> G F= C` F= F= 0.(=.'Q (U (U [_.[%.)Q {,.+Z RT +Z RT +Z +Z Z .bV 9X {&.|@._=.~&.'*.+@.w@.#)..` CX CX E` E` hT aS CX +` a&.|Y pY ` .CR a$.l#.5Z is 5Z CR DR +.{Q nP uZ DR nW ;X 0R pO DR DR >X oW nW /W ^W ^W cX vY &Z !L ~O qP ,0.pP &Z ES WO bR kV _P hQ qP 0N &J {L ^O yH HJ {L tP HJ uI tP lK AH tP OA NA 3M NA OA Wv =u /I sy sy Jk Kk '0.Jk Jk Jk dt jf jf %0 *0 *0 Qd }5 a9 }5 tl }5 a9 }5 A9 B7 }5 }5 14 A9 14 P5 F~ -0 B] F~ w/ F~ K! V{ r) F~ F~ C{ F~ V{ d/ W{ W' p* )' W' l- l* I~ ,) l- `- k& p* v. v. t. z. s. w. v. v. J~ m- X= v. O) z8.)0.19.C9.C. C. N7.m& C. !0.w4.O7.29.=8.C. O7.C8.r6.r6.29.29.r6..9.;8.P7.P7.s6.@9.34.a8.a8.s6.;8.s6.a8.a8.a8.a8.P7.c8.q7.b8.}7.}7.R7.)8.S7.S7.75.{8.75.~0.{8.)8.{8.{8.]8.&3.99.`% |7.99.$6.99.`% y6.C2.{0.,~.T1.X7.9@ L- ,~.9@ x= 9@ X% $5.7@ 6@ Y, 2@ X% 6@ ]0.`% a@ 04 `% h$ j$ 79.^0.6@ 0@ .& 5@ -* a@ /0.(0._0.:0.<0.[0.L3.}0.c6.{2 u] >~ G* >~ >~ c6.|0.10.k; |L t/.j( /) ;$ '] .] |' |^ t/.$_.3(.M3.20.(8.G,.+[.&_.|{.81._).30.x[.:8.~4.40.50.)3.O2.O2.k2.k2.=2.=2.s$.TB TB Rh (|.j%.V&.V&.RX f}.*}.=f o@.G%.]#.S+.l@.~#.!%.x&.60.70.80.90.zv 00.a0.K6.n8.G|.o8.^6.j6..N /6.Q4.Q4.Q4.v9.7<.b[.b[.b0.B[.B[.H<.s5.c0.g1.U}.]w d0.e0.f0.u2.a> g0.B[.g1.h0.Kb Oe 8<.i0.7Q j0.P@ D G m m ^# _# `$ (# _# h ,> n n ", +"9| *) 2^ <{ <{ <{ <{ <{ L$ <{ <{ 2^ G= ;b <{ J$ jP BN 9| #S R@ I/ 0' I/ ]^ ]^ L$ 0' I/ 0' I/ 0' # ]& I/ 0' + X! * # ]& + . = ]& + + [* [* . . . V@ . $ L$ # $ = # . & o! [* ; S$ > $ Q$ + 0' . ; $ S$ U$ | . S$ %= ; =' | ] H= | Q$ H= & W@ ] - Q$ ; ] N$ ] N$ N$ ] R$ %= N$ ! | N$ { { Z@ | N$ 4 N$ T- { X@ } { { ~ X@ 2 I= X@ Y@ { d 6 9 } 6 Y> m*.( X@ 1 d ,# k ( e $# 6 6! 3] ,# a 5 ,# 3] 3* a 0 a' |& a ;= L= 9- h h k0.x9.]# r -) p h r Y$ n^ p Y$ L= n^ 1; m t m t q ^# t w F= {& F )> 1; /# m b' D $S 1; z ^# F= z '&.#] A$.a7 z '&.n! T^ Z '&.a7 H$ c- M V Z 2Z )^. V T^ I[.c- JW Z..4>.P,..@.B..oY B$.Z..-*.B$.-*.B$.-*.iU oY +-.(U zS M7.)Q K-.+Z RT ^P 9$.)Q +Z RT bV lP H&.<#.G&.hT ~&.D` +@.2@.CX E` E` 4...` E` E` aS x@.E` 4Z |Y ` .4Z tM pY EX ^&.qY 5Z +.DR B .;X 0R pO DR 0R 0R DR ^W pO 0R 0R cX nW nW DR oW fV VT VT ~O eS /P {O {O hQ uM qP qP hQ qP WO HJ {L l0.xM tP {L kK kK HJ OK lK kK wG HJ wG NA =u OA NA BH Wv NA Jk m0.Kk sy Jk ,A rB ma jf qs qg %0 %0 a9 oa }5 a9 *0 A9 }5 A9 }5 Qd A9 }5 b/ 14 z7 |5 l8 V{ F~ F~ V{ F~ V{ r) r) r) F~ W' F~ l* W' H, ,) W' W{ D{ W' (% W= '{ )' p* `- `- W= `- z. z. s. s. B# s. s. |9.s. z. k& }= n0.o0.19.p0.C. F. m& C. C. C# o7.r6.29.r6.-8.+9.8% r6.8% V~.29.29.q0.-8.P7.P7.D8.@9.s6.@9.P7.;8.34.a8.a8.s6.@9.@9.r0.s0.75.56.X6.t0.'8.75.75.'8.u0.)8.u0.v0.)8.89.{8.$5.$5.8@ &3.&3.|7.85.&3.y6.,~.9@ H3.]8.8@ x= ^; 8@ ^; x= 3@ 1@ T* 2@ 6@ 8@ #* ** 7@ o, a@ 1@ H3.6@ h$ ** ** ,~.#* 5@ 2- w0.$* ,* m$ =* x0.y0.z0.g8.A0.B0.C0.c6.C6.{2 c6.S9.D0.E0.G* @! F0.F0.G0.|^ {2 H0.(8.|^ Y{.H0.s{ 3(.3(.10.t/.+[.M3.I0.J0.z{.o~._).#'._).K0.L0.6~.~4.h3.TY M0.)3.O2.O2.j2.=2.F1.TB 2S H%.(|.N}.j..c zc Y_.N0.O0.P0.Q0.1N 6!.R0.h6.i6.4N K6.^6./6.m4.-7.S0.T0.-7.$:.t2.H<.#<.p9.B[.B[.;[.'7.U0.vC n}.!}.:e u2.g1.u2.Q& iP .N V0.k7.#f k7.$<.W0.Ro .}.O x |{ Z$ G ^# `$ Z$ r C; 9- D n g ", +"<{ <{ <{ ]^ J$ <{ <{ <{ J$ <{ 8S <{ BN <{ R@ <{ jP L$ <{ jP G= I/ 0' 0' I/ R@ =[ 5_ 0' 0' I/ [n # K$ $ X! = # # 0' 5_ + V@ 0' $ }, + $= 1) ]& # * . $= `Y $ = & 0' . # U@ *' P$ & & ] . P$ S$ $ > U@ $ = . P$ > $ ; Z, . S$ R$ U@ N$ ^ Q$ & ] ~ | ~ T- X@ R$ U$ | Z! | $= ; 2 ] U@ ; N$ H= 2] X@ X@ X@ 8- ~ 1 H= 5 $# *# { { ~ } [ | == Y@ V~ ( } e q> 1 ## } 5 d d X0.a a Y> 5 q> e ~# } 3* 6! a d 0 W$ {# L= L= n n Y0.0- e r }& A~ L= c n^ L= Y$ s> 1; q q n^ L= p `$ ,> t /# p p m C D /# w :# )> 2; {& F= D F F= /U 2; B a7 P<./U a7 a7 z '&.T^ @= A$.8* AR JW c- M c- 1& ;O P%.5 .z :}.3# c- 3# V (#.t%.4>.*I B$.AX E].:#.;*.-*.U;.;*.iU yS (U k#.M7.)Q )Q RT +Z G&.+Z lP +@.RT +Z H&.sZ {&.sZ sZ hT AS $N {&./!.9X hT E` E` E` 4..+` 4..3Z 9&..` pY <=.qY ` .Y$.5Z 4Z N/.$ .IQ ;X jT pO pO jT 0R 0R pO fV pO pO >X pO nW vZ /W nW gK sO >R aR oW fV ES hQ uM /P !L hQ ]I qP hQ ER 'K &J kK jK yH &J {L &J yH NK )K Wv HJ =u =u =u BH NA NA Wv =u rB Dm Kk rB Kk sy CG Jk jf jf dt mj jf b/ o[ a9 a9 jf *0 tl a9 A9 a9 a9 b/ b/ O5 I0 !1 }| r) C{ ;/ r) F~ C{ C{ F~ F~ F~ H, W{ r) r) l* b; H, H, ,) h' W= n* D{ D{ K; Z0.v. (% (% X= v. s. z. X= X= z. y8.z. z. w. E. C# m& C. C# m& 19.19.F. C. 19.19.O7.r6.29.r6.!0.C8.29.r6.-8.C8.29.;8.w4.;8.;8.;8.@9.a8.34.`0.P7.34.s6.s6.a8.s6.56. a..a.'8.75. a.q7.59.'8.)8.e8.r7.69.R7.+a.&3.75.)8.~8.89.]8.|7.&3.|7.&3.04 I9.]8.7@ 79.`% #* ** 8@ Y, 6@ f$ X% 9@ 7@ ]0.Y% `% 5@ w; 6@ 3@ 8@ `<.l$ 2- }Z a@ @a.a@ .& =* o$ $* 7@ ** o$ 0@ #a.$a.%a.g8.&a.A0.*a.{2 C6.6| 6| b6.S9.c6.c6.^) ]/ =a.}0.u] -a.;a.s{ `/ >a.,a.I}.l; 3(.'a.=a.V].z{.)a.l_.o~.o~.#'.#'.k].!a.~a.6~.~4.h3.^q {a.O2.j2.k2.=2.R$.A1.TB K=.j9.(|.vX RX Bd W` R../@.4G m@.]a.U@.0k ~#.>c !%.~%.3$.^a./a.(a._a.:a. n}.]7.{}.h1.<|.U}.3a.O(.x:.4a.` I w I 2; ,> W$ `$ h m 0 h c c ", +"w9.<{ <{ 9| 2^ 9| jP <{ <{ <{ ;b <{ jP L$ <{ <{ ;b L$ R@ BN G= G= L$ 0' 0' G= 5_ 0' L$ R@ jP I/ ]& V@ K$ X! p9 I/ # # 0' + $ pH 5a.# > . V@ # > . # > [* + $ S$ > $ $ > X! ' ; > . $ ' Z, & ; - ; . Q$ |* - > - - > N$ - ; . > ; ' . ; (& ; H= S$ 7- Z! Q$ ] N$ ; | 2 ; ; N$ P$ { ^ I= { N$ 2 4 { > => { X@ ( ~ | 7- X@ X@ } N$ : ( /& Y@ 7 d ,# } 7 V~ 9 k k a' a 6 6 5 v5.3* 7 3] a e D, 0 a k k e a [& n a' Y$ c -) n p }& 0- h r h e 1; b' 1; 1; 1; 1; 4* 1; t p 4* D /# @= /# $S $S |Z 2; F= w z /U F= 2, 1Z /U '&./U a7 a7 z z $T 1& P%.1& O@ Z M c- V Z T^ T^ c- c- V z . V .@.5 .4>.I~.)^.iU YX B..`5.B$.-*.B$.iU W!.;*.k#.#N BX +).+-.^P )Q +Z a/.+Z RT H&.+Z RT Z .sZ 0$.sZ Z .{&.+@.0$.jU $).D` 9&.CX 3@.hT hT +` y@.E` .` ]&.ST 4Z 6a.2Y [#.A+.l#.B .qY kT 6N 9 .L#.L#.0R 0R DR DR LV pO nW $Z OW mU eS KQ ~O 7a.IQ >R {O IQ FX uM qP uM qP qP /P HJ /P hQ ^O )K &J yH 9C ^I xM HJ yH {L HJ kK 8a.Wv Cx Wv Wv OA Qq NA OA Wv Kw Wv Jk ty )i ol ,A Jk ma ma `8.Od !i ,2 K9 a9 b/ a9 }5 A9 A9 }5 }5 a9 a9 Qd z7 !1 !1 P5 ,k 0^ h. B] C1 r) r) r) F~ 0^ H, W' r) F~ W' V{ b; W' ,{ p* K; )' (% W' (> (% t. z> 5~ w. [= s. t. v. _> s. |9.s. s. _> y. }% 19.C. 9a.o0.z8.m& C. m& 9a.m& !0.w4.29.29.)0.!0.0a.29.;8.29.29.29.29.V6.;8.D8.a8.a8.C5.aa._7.C5.a8.s6.Q7.ba.b8.ca.d8.d8.75.da..a.59.59.@5.)8.{8.)8.R7.K5.|7.{8.69.l~.89.{8.&3.99.&3.]8.99.u0.`% ** `% X% ** 8@ 1@ i$ h$ v; *3.`% 5@ (; 5@ 5@ X% `% 6@ 3@ $* w; 6@ o$ Z% r' %* a@ a@ 9@ >* 0@ 6@ .& =* ea.fa.ga.ha.ia.37.ja.ka.la.D0. }.;6.;6.;6.C6.R9.ma.}0.na.10.>4.oa.f= k+ @! H}.Q5.j( I}. (.I}.pa.G,.y{.I0.qa.EK W:.G}.#'.q/.ra.6~.X9.:8.~4.sa.e{.h'.j2.j2.ta.ua.va.:` [i : .: .dr Wk -U R..=f Vk tf y<.^@.l@.~#.o%.!%.tb Y_.+l 3|.wa.xa._a.:a.ya.+0.[a.K6.G|.B7.18./6.q8.G|.S0.za./2.Aa.ou tv ^y Y'.,}.Ba.s8..N iP vC vC ;[.;[.k7.LP Ca.+8.7<.-1.Y3.V0.U}.U}.Da.=1.l}.Ea.LW P@ N :# 4* p f f h r Z$ n e r ", +"*) 9| ;b <{ J$ 9| 9| <{ ], 2^ 9| <{ 9| ]^ ]^ <{ L$ BN R@ jP J$ I/ ]& I/ L$ 9| I/ I/ I/ BN L$ 0' 0' Z, # $ 0' I/ # # # # + # $ + + = + = . > * > > # 0' . + . $ V@ > [* S$ S$ T@ + S$ U@ > $ # ^& > N$ & Q$ * > ; * Q$ . U@ ; & ; [* N$ ; > ; ; T- R$ ~ N$ ) | 8- ~ ) | U$ N$ ~ 2 N$ ) J) R$ 2 ~ ## 2 | 5 : } 2 [ 7- 4 { 5 } 7- 7 Y> M' i ># 7 } < [ Y> ,# k 0 V$ k ,# a 8x z: ,# 6! k ,# ( 0 j A~ 0 n !# |& e 6! ;= ~# }& ~# L= p p ;= -) Y$ L= ,> ,> n h G#.4* t m @= D 4* 1; C /# b' *].y b' m u 4* w $S F= m /# /U #.'&.F= a7 z .4>.{[.(#..@.o*.;*.-*.I-.;*.B$.>*.-*.-*.-*.(=.#N #N (=.)Q RT )Q )Q RT )Q )Q +Z +Z )Q +Z G&.G&.1@.RT e-.+@.q*.AS hT CX J#..` .` CX .` .` y@.E` /!.+` ST pY 2Y tM %@.CR qY l#.Y$.&@.nP G` z@.jT 0R 0R 0R pO pO nW nW nW nP DR DR FX nW fV UT rO UT >R /W /P WO mT qP WO WO rI !L }9.}9.iQ )K kK &J {L {L )K )K yH HJ HJ kK Wv Cx Wv NA Wv Wv NA OA =u NA NA (I 'A ma lj ll rB Jk ma ma qs if nl Kk oa }5 A9 }5 }5 }5 a9 A9 a9 }5 a9 B1 O5 O5 r) r) V{ ^> O3 F~ r) r) r) F~ r) r) r) r) V{ B] F~ U= W' W' h' K; ,{ (% H, ,) W= [% z. (% (% s. s. v. v. v. s. v. v. y8.y8.v. B# p0.m& N7.C. 19.19.}= m& C. C. C. +9.29.C8.m& q0.q0.w4.V~.P7.29.V~.C8.29.V~.V~.P7.@9.D8.@9.@9.P7.s6.b8. a.Fa.b8.b8.a8.Fa.89.G9.@9.59.'8.{8.)8.89.89.)8.Ga.89.89.{8.#6.I9.H9.~8.|7.85.Ha.`% `% |7.&3.8@ 9@ 04 6@ T* y6.C2.8@ 9@ 8@ T* 8@ y] l$ 7@ a@ 94.a9.-* a@ a@ Ia.$* y= 0@ h$ .& ** ** l~.o$ ;* .& Ja.Ka.La.Ma.*a.Na.e9.P5.;4.}0. }.L3.R9.37.Oa.,5.Pa.Qa.Ra.Ra.6| M{ @) @) Sa./) Q5.Ta.U; 3(.Y{.20.e4.z!.z!.2(.b'.s/.Ua.#'.Va.Wa.X9.5[.Xa.~4.^q O2.O2.j2.=2.ta.va.E*.Zg [i {..j..(d dP R..=f _ ..s ]a.l@.~#.@$.>c !%.Ke :b $(.=d Ya.(a.Za.Za.:a.`a. b.a0.[a.i6.^6.G|./6./2.-7.j6..N :3.Y'.ou ^y ]n .<.C<..<..b.^2.b[.b[.!}.!}.H<.H<.+b.@b.7<.$<.^_.0:.,[.Da.8<.0:.^_.n6.w` #b.z N ^# /# Z$ vA ^# `$ ,> e $b.,# n ", +"9| ^, |1 jP <{ 2^ <{ <{ J$ J$ l) J$ <{ ], J$ 2^ L$ 2^ <{ J$ L$ I/ ]& L$ I/ ;b I/ I/ 0' 0' I/ 0' 0' Dv # # I/ #S + # # # % # p9 = K$ # & $ + * . $ $= # p9 0' & $= ' > - # # > $ # P$ P$ ; |* T@ O$ ; S$ H= %= U$ & > ; > $ ^& - H= U@ |* & ' ^ ~ N$ ~ ; * %= & & 7- { 2 N$ ) ^ N$ Q$ | [ J) X@ 2 X@ X@ W@ *# => 2 2 { +# 7- 5 2 $# / <& ,# 6 M' 6 9 Y> 3* [ 6 ,# $# d d k } ,# 3* 6 ,# d Y> d [{ ~# e 6 ~# ~# L= a c i d L= 0 ~# n h h Y$ -) ]# Y$ Y$ r n^ % % m ,> #| `$ p /# D t t )> t 2; {& t b' E z F= C /U F= ^# /# *].P<.F= /U z a7 A$.1& $T 1& M 1& '&.AR V T^ 2Z V M c- V 4>..@. V c- QT HV >z x .B$.aV (#.:#.B$.B$.-*.B$.-*.k#.yS G$ k#.BX ^P )Q )Q RT ,*.+Z +Z RT )Q Z .RT G&.+@.H&.sZ e-.7` ~&.CX E` AS CX CX hT .` J#.|Y y@.E` +` y@.4Z |Y D..EX D..5Z ` .#Z CR &@.6N B .$Z nP DR 0R 0R pO 0R >X FX pO ^W nW nW nW nW FX /W 2M UT /W WO 2M /P uM /P /P !L WO rL uM qP jK VL &J >N yH ]I HJ yH yH NK yH =u =i OA Qq NA /I Qq uI Qq Wv OA (I Wv (I Jk rB Kk Kk ll J9 &0 nl ;k rs %0 }5 }5 }5 A9 o[ a9 A9 a9 a9 a9 B1 !1 O5 V: B] K! B] F~ 0^ r) r) h. K! V{ F~ H, F~ V{ H, F~ s) W' W{ `~ b; H, (> p* b; (% (% l& <% (% [% v. t. z. s. v. v. v. y. v. x# s. |9.%b.%b.9a.C. )0.19.m& m& 19.m& m& q0.r6.m& 39.29.29.C8.-8.39.V~.&b.39.C8.*b.39.D8.b8.a8.b8.D8.34.a8.=b.a8.b8.@9.b8.-b.;b.v0.@9.s0.{8.u0.89.)8.79.75.89.{8.]8.{8.89.$5.89.75.&3.{8.8@ I9.&3.H9.&3.04 9@ 7@ a@ H3.v; ,~.04 9@ 2@ 8@ 6@ 04 &* a@ o$ l$ m$ w; y= 7@ o$ '* ;* 0@ >b.#* -* a@ n$ h$ X% h$ ,b.'b.)b.d9.e9.!b.x7.~b.{b.b6.b6.c6.;6.{b.]b.O9.^b.L3./b.|0.6| 7.m+ l+ /b.>4.R9.(b.U; l+ j_.'9.>a.y{.X)._b.:b.81.:b.)4.+.p@.@$.4$.7f !%.Ac :b !=.1b._g 2b.Za.3b.4b.5b.X>.6b.7b.[a.i6.i6.n8.B7./2.8b.9b.:3.6b.y:.^y ^y ^y [x vj y:.`H `2.$:.]7.!}.G<.#<.G<.z:.|5.s8.$:.0:.D[.o4.D[.8<.^2.,[.0b.Q!.ab.S {& D m ,> r 1; :# h a a' ~# V$ ", +"z~ *) <{ $8.9| 2^ <{ J$ <{ 9| <{ J$ <{ J$ L$ R@ ;b 2^ 2^ 2^ BN L$ I/ I/ I/ 0' ]& I/ 0' L$ I/ 0' 0' 0' + # 5_ p9 L$ $ + ]& + # p9 0' L$ ]& $ $ + $ ' > # & > ]& ' & $= $= 1* $ [* %= - U@ P$ ; [* . $ N$ > S$ $ ^& $ %= O$ N$ ; o! Z3 & ; > | N$ N$ ~ U$ *' +|.] N$ | { ~ Z! ; 2 N$ N$ | /& N$ R$ U$ N$ *# / Y@ X@ ~ U@ 7- ~ { | 1 { ~ 5 a [ <& 6 < d d &# d 3* 2 D, ( [{ q> V~ $# 7 ,# 3] a k e W$ J] 3] !# K/ 0 2* 0 tA ~# ]# !# a L= L= -) p n {# h L= h p 2, ,> ,> b' `! Y$ m t t m '> bb.,! q D b' t {& {& m E G F= E /U $S w z z a7 '&.a7 '&./U 8$.cb.a7 A A n! ,/.AR c- Z M V .@.c- .@. V .@..@. V y .0S _+.x .B$.MW -*.aV *I iU iU -*.B$.(U BX zS l1.yS #N RT RT K-.a/.+Z RT +Z +Z +Z sZ H&.lP 1@.R%.|@.AS hT #).1@.CX hT .` .` hT 4..3Z 9&..` +` 3Z |Y ST ^&.@Z 2Y ~W ~W [#.CR @` pO L#.L#.0R eV pO DR DR pO LV DR DR DR 0R DR pO oP eS IQ rO db.LV >S sO 2M 2M /P /P uM rI yH WO WO yM HJ ^I >N 'K PK )K ~I ]I ]I -H ;v Cx NA wG NA =u NA NA NA uI ;v NA Wv =A ml Kk qs hf hf ma &0 qs ol jf mj *0 o[ }5 b/ b/ a9 }5 b/ b/ }5 B7 }| O5 z7 O3 0^ 0^ 0^ w/ r) h. K! F~ F~ K! F~ r) F~ g& F~ || W' H, H, V= V= V= o. H, p* (% eb.s. t. <% 35.z. s. s. t. 1% 1% y. w. s. w. _> fb.)0.o0.9a.C9.p0.9a.gb.19.m& 19.O7.0a.q0.29.O7.0a.0a.C8.39.29.V6.-8.V6.V6.hb.;8.@9.@9.a8.@9.P7._7.D8.@9.s6.b8.b8.b8.-b.59.ib.-b.jb.kb.v0.69.59.69.{8.da.lb.]8.79.89.89.{8.Ia.Ia.99.89.8@ `% `% Y, 9@ `% Ia.6@ 9@ ^; ,~.X% y= 04 5@ h$ o$ I9.H3.Ia.C2.a@ 1@ o$ ** `% Q9 8@ g@ =* 0@ w; m$ m$ Ia.h$ 34 mb.H8.nb.B0.Qa.;6.ob.~b.6| c6.pb.qb.l^ rb.na.b6.6| pb.b6.6| g+ ;$ `/ (8.Ra.}} f= ra sb.`/ M3.V_.I0.o~.u[.-4.Y:.V9.u/.tb.ub.K!.X9.5[.^q )3.vb.}b.|~.G1.wb.xb.U` t` YQ dr ZM -}.mk P}.,g >+.l+.0k o%.o%.,c Ac ~%.yb.!=.zb.ac Ab.xa.xW Bb.Cb.Db.Eb.*7.a0.4N h6.i6.m8.$m Fb.Gb.Hb.z[.x:.vj 2G vj wv wv vj vj S8.B[.;[..N o}.;[.;[.Ib.28.^2./2.A:.,[.=1.Jb.Kb.#<.Lb.Mb.Nl XP A G w :# p Z$ h p s> g c K= c ", +"*) z~ 9| 9| 9| 2^ <{ L$ <{ <{ <{ jP ;b R@ ]^ <{ (}.J$ R@ I/ I/ 0' 0' L$ I/ 0' L$ BN L$ R@ 0' ]& I/ I/ = # + 0' 0' * # + = # + = ]& # + [* * * $= # Q$ S$ S$ = =' > > . }* T@ . . $= 1* V@ + Q$ & $ - |* & Q$ |* > . U@ - P$ U@ & Q$ . N$ T- & = - %= H= Q$ X@ ~ %= | { 4 X@ ] N$ 2 | 2 { | 2 { *# d / 2 2 ~ %= X@ [ [ 2 | X@ *# Y@ d 6 <& ~ d i Y@ a Y> 9 d 9 } d a ># 7 a m*.8 0 k a 8x tA q> L= 2* ~# L= |& 6! K/ !# L= 0- h n ;= n {# }& Y$ 1; r 2, ),.`$ 1; h l _# b' G#.b' % ^# D w q Y$ % F= E )> w {& F= D /U t :# B F= z a7 F= z a7 '&.P<.8$.,/.JW O@ AR Z m;. V c- V V V .@.4>. Z .@.c- .@.5 ..@..).:#.A: -*.iU *I *I aV oY I#.oY (U yS XX F>.^P #N Z .RT RT RT RT ^P )Q ^P Z .G&.9X 1@.+@.H&.2@.2@.CX 0&.+@.CX hT hT CX hT 4..]&.E` +` ]&.|Y |Y ` .2Y [#.z+.CR [#.qY Nb.uZ jT `..0R DR 6N 0R pO pO nW DR pO %` LV pO DR DR ^W /W FX UT UT IQ fV /P /P WO uM >R /P 'K 'K WO }9.9C ^I ]I >N yH kK NK yH xM wG PK =u =u -u =u Qq =u NA =i wG OA =u zH /I z9.Dm mj Jk hf hf %0 qg 'i %0 ,2 na }5 }5 b/ }5 }5 b/ b/ a9 na ~1 4~ }| }5 B1 0^ 0^ 0^ w/ w/ r) K! K! l* r) 0^ F~ l* W' V: C{ F~ g& H, s) 8) l* K; p* n* p* (% v. v. [% u. l& v. v. s. u. t. y# v. t. v. }% }% n0.C9.p0.19.19.m& p0.19.19.19.B8.Ob.29.39.O7.q0.0a.0a.29.29.D8.P7.$4.D8.Pb.`0.@9.D8.@9.b8.D8.&b.P7.@9.Q7.=b.b8.=b.=b.49.49.Qb.;b.R7.W[.kb.j$ 59.{8.94.h$ 89.5@ 79.99.`% ^0.&3.l~.Rb.~0.Y, a@ i$ l$ 04 6@ 9@ Sb.U~ j$ I9.** 99.$5.6@ ;* Rb.** h$ X* X* l$ /M o$ a@ h$ 0@ .& ** o$ ;* -* .& X* 0@ As Tb.`6.*a.ja.Ub.{b.oa.Vb.>~ C6.Wb.b6.6| >~ C6.D6.6| c6.S9. }.(8.>6.@) Xb.Yb.20.3(.Sa.Zb.J0.H}.L3.C(.z!.W|.A(.`b.(<. c.c}..c.U5.K!.F6.F6.)3.vb.Q2.+c.@c.#c.]2.[i : .dr i..{2.Y+.SZ .s l+.:d ]@.^@.o%.Ac Ke :b a(. :.'c xh td $c.(a.%c.3b.5b.W@.&c.*c.=c.-c.h6.a0.4N ;c.>c.,c.'c.)c.8:.xN 2<.7/.2G eE x:.!c.b0.~}.]_.H<.8<..N iP ~c.{c.48.]c.p3.=1.O(.rv f(.w_.0:.^c.kM /c.I C m Z$ p ^# Y$ C; }& *= h c g ", +"<{ 2! 9| 9| <{ 9| ], J$ I/.<{ <{ I/.(c.l) ]^ 2^ ]& J$ 9| J$ 2^ 2^ I/ G= L$ 0' 0' BN R@ 0' 0' G= I/ 0' 0' + # X! 0' V@ K$ # + # * L$ + ]& + [* ' # . $ o! ' S$ ]& ]& ]& # . $ - + $ . S$ & # . & > T@ - }* . Q$ ; Z, Q$ U@ . - %= > & Q$ $ > o! & Z3 ~ ^ ~ | ] N$ ~ /& | | %# /& ~ | X@ Z! X@ 2 P$ { & ~ X@ } ) Z! [ } 2 [ 2 2 *# [ } <& => Y@ d $# V~ Y> ,# 7 3* 6 a 8 b 7 a k q> 6! 0 6 d {# 0 0 0 _c.6! L= {# W$ 0 E, c ]# s> 2, h {# t' c{ L= p p s> Y$ q ,> n^ p #| b' G#.@= @= D 4* 1; D 1Z ^# C C w w E $S f^ F= /# 2; F= F= a7 F= z '&.C` '&.'&.AR AR H$ $T $T !,.c- c- M V c- V .@.=X V V V x . V v@.4>.Z..SO AX (U oY aV A: oY *I aV k#.RT k#.+-.BX lP RT +Z Z .+Z RT RT RT RT bV 9X D` 0&.G&.e-.7` hT '*.7` AS hT CX .` hT .` 3Z 3Z 4..+` y@.]&.ST `X CR pY qY qY ~W 5Z +.0R &@.0R 0R 0R DR pO pO 0R nW nW nP :c.nP pO FX nW oW nW mU &Z mU vY VT WO /P /P WO qP aR >N /P }9.tI HJ HJ LQ ]I &J ]I Ik yH {I zH 8a.NA uI =u =u =u =u =u NA NA 8a.Wv NA ]E Kk lj Jk ma ma %0 qs ml if &0 ,2 o[ o[ b/ }5 b/ b/ }5 H^ b/ b/ k] 0^ B] /} B] c ,c Z_..$.0(.fc.xh gc.td hc.2b.ic.Bb.TH jc.kc.87.lc.mc.a0.*7.nc.[a.B7.}8.j}.9[.x:.xN (3.i}.eE ~F 8:.oc.pc.`] H|.8<.0:.H<.^_.qc.W5.z:.]_.0:.=1.-1. Q$ + k) ; V@ = ]& |* . $ # V@ Q$ + 1* > |* = & ' ; |* > & Q$ > . Q$ & U@ . > o! 5- ~ . ^ Z! & U@ & Q$ X@ ; N$ # ] N$ ) N$ 4 ] J) [ 2 4 } ~ /& 2 ] { | 1 [ xS *# J= ( ## { } $# /& ( 4 [ [ Y@ 6 ~ Y> 2d 6 6 6 } } ,# ,# 6 ,# k 3* D, 6 N' ,# k 6! e |& {# {# z: ~# c ~# a ~# L= n e 0- A~ h s> n -) y2 `$ `$ `$ #| Y$ ,> 4* V| q s> $] 5* @= :# |Z t G :# w /U $S $S q a7 w a7 z F= a7 $.+Z 9$.<#.Z .H&.|@.H&.AS hT +@.'*.AS .` E` AS .` .` aS aS E` +` +` 4..|Y %@.qY pY #Z 5Z tM D..&@.0R uZ 0R kT pO uZ 0R #V 0R pO pO pO pO OW LV IQ mU pO FX mU sO KQ nW WT WO WO /P >R /P /P rI WO WO !L 9C yH 4C ]I HJ ]I NK wG {L NK wG ;v -H -H Qq =i NA =i =u =u =u (I NA sc.hf Yf J9 ma ll Ve %0 J9 3e %0 &0 a9 o[ H^ b/ na b/ b/ o[ }5 }5 -8 k] |4 z9 }| h. h. x! B{ K! r) B] h. r) r) K! l* l* K! H, g& l* W' x! s) l* tc.i& n* uc.(% n* (% r. y> y> v. v. t. t. y# v. v. v. q* u. |% fb.vc.x. fb.wc.gb.19.gb.19.19.9a.xc.C8.0a.0a.}c.xc.0a.39.xc.C8.yc.P7.zc.`0.V~._7.a8.P7.b8.&b.D8.b8.@9.b8.b8.b8.=b.Qb.Fa.e8.Ac.Bc.Cc.I3.e8.89.69.69.u0.$5.89.]8.Ga.99.79.99.h$ 6@ 6@ 06.lb.$5.8@ &3.y= 5@ ** 79.a@ `% `% a@ l$ $5.y] o$ Z% ** Rb.$* 6@ Y% a@ o$ .& =* n$ o$ e@ .& o$ )* Y% =* A= Dc.Ec.Fc.!b.6| Gc.Hc.}0.>~ e= 6| 6| ]/ R5.D6.>~ C6.C6.C6.g9.C6.Q, Ic.Jc.10.,9.10.g9.Kc.^b.q].u[.[].|/.'5.'5.b'.Z^.5(.tb.ac.Lc.X9.i4.:8.j^.j^.Mc.Nc.Oc.E*.Zg M0.YQ (d Q..{2.4G $$.VW x#.^@.~#.fw Pc.tb ~%.:b !=.zb.Qc.Rc.vh kH Sc.Tc.Uc.7T cI ^Z q>.Vc.Wc.}a.R0.Xc.Yc.>[.o5.Zc.h6.`c.8:.xN +:.R!.P*.P*.2G }a.51. d..d..N ^2.G<.!}.o}.b[.3a.%:.+d.o0 '[.@d. 3.9w o4.#d.+K $d.K@ G F= % t `$ Y$ p n 2* 2* g c ", +"], ^, 9| 9| <{ <{ *) 2^ <{ 8S <{ 9| <{ =$.jP 2^ R@ <{ I/.jP J$ 9| G= [n ]& R@ p9 I/ ]& I/ 0' L$ I/ I/ 0' 0' # # I/ I/ + 1) # [* ]& + * k) V@ ]& }, 0' # ]& V@ $ {c > + p9 # ; $ = - $ 2) ]& > P$ S$ > H= S$ > + ; > . ; N$ Q$ > & $= H= ] N$ U@ S$ N$ o! . & R$ & | ; S$ 2 { X@ ## N$ *# ; 8- ) Q$ 7- } /& ] /& +# 2 2 W@ < 8- < 6 ( } 4 /& 6- } ( ( ( ( ,# ( ,# tA Y> } 7 2 J] 5 a a /& k &# 0 0 b 6! 0 K] 6 a e c 6! 0 c L= 0 z: L= L= h A~ s> h r n p p! s> %d.p 1; 2, ,> 4* m ^# $] G#.m b' ^# {& 2; :# /# G /# )> {& /# B 2; F= a7 F= C a7 E /U [2.z a7 a7 A$.n*.A $T z KW V ;O T^ .@.M A m;.c- (#.4>..@.(#.4>.4>.o*.aV oY aV *I I#.-*.aV *I L aV oY M7.(U .Z #N )Q )Q )Q +Z +Z RT RT lP RT sZ 0$.|@.H&.9X AS /!.3@.1@.3@.CX AS hT CX 9&.CX FN CX CX +` E` |Y ST EX pY &S CR CR tM 5Z lT &d.jT ~W pO 6N nP fK 0R 0R DR DR nW pO pO pO IQ eS 9N /W >R rO uM gK rO uM uM WO /P /P >N }9./P qP yH PK 9C ]I yH 9C 9C wG HJ zH {I HJ ms ^I wG NA =u =u zH Qq 8a.Kk ls *d.08.hf ma qg ma Jk L4 ol ol %0 &0 y9 b/ b/ }5 a9 b/ }5 }5 o[ a9 O5 // ^] N] U/ K! h. K! h. h. K! K! K! h. h. K! f. x> '{ H, l* l* f. =d.g& /% 8) n* w# /% -d.(% (> v. r. z> v. t. t. t. := q* x# }% u. ;d.x. y. 19.19.fb.o0.%b.9a.9a.19.>d.9a.q0.r6.C8.0a.0a.zc.0a.0a.V~.0a.C8.&b.D8.&b.Ob.V~.b8.D8.=b.Pb.aa.Pb.=b.b8.@9.b8.Pb.Qb.=b.Fa.,d..a.;b.{8.W[.)8.I3.I3.{8.)8.u0.89.89.W[.j$ 6@ $5.H3.`% 5@ 89.99.Y, 6@ 3@ Ia.9@ H3.6@ w; T9 k$ o$ &9.8@ e@ Y% 6@ 5@ .& .& e@ ^0.0@ n$ Y% o$ ;* ;* 0@ o$ =* 0@ m$ 'd.)d.B0.!d.~d.6| <:.~b.l^ G* C6.l^ l^ D6.>~ L{ G* l^ C6.6| b6.c6.Z] Q5.{d.I}.G,.=a.Pa.]d.Z^.^d.V9.u[.Pa./d.(d._d._d.]d.:d. # S$ > U@ > . k3 - $= . o! > U@ %= & %= > . R$ U@ %= U@ |* S$ =' T- | . U$ R$ T- & ; f] | X@ { %= %= U$ J) /& { | 2 { 2 ) I= ( { <& { } d 2 } $# V~ *# : 5 d _ 9 k 7 ,# k ( 7 G9 ,# } d a } $# Y> 7 vk [& a {# 0 ~# d d *= ,# k L= e a 0- n -) n n s> |& p r n % n^ 1; /# 4* 2, ;= #| Y$ D b' b' D 4* Y$ `$ % 4* w w /# {& F= F= {& G F= a7 F= E '&.a7 A$.a7 a7 '&.a7 '&.'&..-.JW 1& HV Z c- T^ KW Z .@..@.c- V V V 4>..@. V 0S AX A: *I oY A: B$.I#.iU *I A: oY XX y+.yS )Q )Q RT RT RT RT RT ^P RT +Z +Z Z .G&.w@.+@.AS 1@.+@.1@.'*.CX hT CX .` CX hT CX 3Z CX CX y@.DX y@.tZ qY 2Y EX qY dS ed.`..uZ 6N 5Z 0R 6N fK DR VO DR DR nP pO pO DR IQ 2M KK sO pO lU uM 9N 2M KK 2M /P /P /P /P yM 4C uM WO 9C ]I )K ]I rI ~I ]I ]I HJ xH ]I ^I NA zH -u Qq =u =u =u NA NA *d.(I ls =u hf Dm 3e Dm (I qg Od fd.%0 %0 &0 na o[ b/ }5 b/ b/ a9 o[ b/ X~ -/ B1 14 A1 4~ r) K! r) h. K! Z- F~ K! K! F~ l* H, H, l* l* l* H, l* l* v# J; gd.n* <= j. K; )' t. <= w# t. t. v. t. x# x# t. x. hd.u. |% hd.gb.m& m& 9a.o0.9a.9a.gb.m& >d.q0.C8.0a.0a.29.id.C8.Ob.`0.D8.C8.&b.&b.jd.Pb.`0.&b.b8.=b.D8.&b.D8.b8.b8.b8.=b.=b.D8.Pb.=b.ca.Ac.kd.Cc.79.75.89.69.94.89.89.89.** 99.{8.{8.79.&* {8.j$ $5.5@ ]0.&3.6@ `% &* Ia.$* y= %* &* k$ 6@ h$ a@ ;* m$ Y% 5@ %* X* o$ h$ g@ z= 5@ =* y; h$ X* >* t$ e@ }= B0.+! a+ 7+ u~ Qa.)d.l^ F* d+ F* i, l^ ^) rb.O9.e= D6.D6.c6.ld.)- Q, }' g+ 3(.ma.md.^d.T:.&'.x1.`^.%_.nd.od.pd.C{.GQ qd.rd.t3.sd.i4.)3.td.Mc.ud.}d.dc.==.t` YQ vd.wd.Y+.SZ .s l+.U@.~#.< .!%.tb S.. :. :.'c yh yh yh %e xe Y_.X=.xd.yd.Bb.xW HL zd.Ad.Bd. b.R0.R0.&7.[a.c7./6./6.X5.Cd.;7.Dd.Ed.]n 1a.s8.;[.pM Fd.O+ pM ^l n}.;[.n}.U}.;[.H<.`] Gd.Hd.Id.Jd.[q ku d(.Kd.Ld.H G `$ `$ `$ `$ 8 Y$ v *= e e K= ", +"^, *) *) 9| <{ 9| <{ J$ J$ <{ <{ J$ J$ L$ I/.J$ R@ R@ ;b J$ J$ J$ ]^ I/ I/ ]& ]& 0' 0' 0' I/ I/ L$ L$ I/ K$ I/ 5_ 1) = 0' $ # L$ + ]& $ ]& = + . # + + > > = > . o! # $= . Q$ . . o! L$ + ; A; P$ > - > N$ ] 5! N$ + |* & ; ~ > S$ & N$ %= S$ U@ > U@ & ] & | H= > ; Z! ) W@ Z! ; ] Z! N$ { ~ X@ X@ { 2 4 1 2 2 / { { < < D, ;# 4 1 2 9 ~ => 7 7 a 7 a c6 &# ( $# 6 } $# 6- [ Y@ 4 6 a k $# ~# 6 ,# 9 d 6 e 0 3] i 0 ~# L= s> n h ~# y2 E, E, c s> % 1; ,> q 2, p #| Y$ t ^# Y$ Md.D m m 1; /# @= F {& 2; :# E {& E /U /U a7 G F= a7 P<.F= F= '&.[2.A$.a7 a7 KW $T 1& T^ 0S A I T^ Z T^ M V c- .@.z .0S v@.~,.I-.Nd.3& -*.iU B$.:#.I#.*I (U A: )Q .Z k#.+-.)Q RT +Z ^P )Q )Q )Q Z .+Z RT bV 9X 0X w@.-X hT w@.2@.hT AS AS hT AS CX .` CX BS .` .` 3Z aS pY DX #Z @Z tM CR 2Y EX qY qY nP `..5N 0R 0R nP nP lW pO $Z lT 0R %` lU ;E LV FX sO 2M uM vM KK uH 2M /P uM 2M rO !L rI yM gQ yH >N yH hK tI *A Od.tI ]I ]I NK ^I -u Ik xH =i =i =i =u NA =u -u Kw fo =i (I ma ~b lj Pd.ll %0 Qd.&0 &0 L4 ,2 o[ b/ b/ na }5 H^ }5 b/ U/ 14 |4 z{ A1 V: K! K! K! B] r) B{ K! r) r) F~ K! i. l* g& K! x! x> i& gd.T= n* =d.w# K; 8) l. w# t. q* o. x# t. l& := t. t. t. s. w. x# u. hd.}% 9a.o0.9a.Rd.>d.gb.9a.9a.gb.9a.Sd.9a.id.0a.0a.29.0a.C8.D8.zc.`0.&b.&b.=b.D8.D8.b8.ib.&b.&b.Td.b8.@9.b8.b8.b8.Td.Td.@9.06.,d. a.Ud.{8.Cc.{8.&* 94.u0.u0.89.$5.79.** #* h$ ** 8@ 6@ $5.8@ `% l$ a@ 6@ o$ a@ ;* y= h$ 3@ 5@ l$ Z% h$ .& o$ >* .& 0@ ]0.,* 6@ z= e@ 0@ e@ )* =* >* =* e@ g@ c! Vd.e+ R! 7+ J& K> b+ K..m&.4u _S 6W VV d+ ^) c6.j; e= l^ 6| j+ .Q *, n+ &, k! f9.c5.Z^.T:.^d.F!.2:.[].Wd.9c.2(.Xd.Yd.Zd.`d.,|.sd.h3.O2.td.ud. e..e.+e.M0.@e.YQ vd.R../@.SZ tf p@.l@.o%.o%.!%.~%.#e.$e. :.xh yh #H #H #H &e ti Q0.'q Bb.%e.cI TM w/.&e.Bd.*e.7b.=e.R0.h6.:3.Q4.-7./6.X5.>7.-e./6.q8.m4.~}.pM b[.d7.p9.)}.^2.o}.o}.n}.U}.G<.,[.^l p5.f(.'[.E[.x_.;e.V0.O(.v_.V Z$ r b' % `$ g e 0 e c W$ o ", +"9| 9| <{ 9| *) 2! jP J$ J$ 9| 9| 9| ]^ <{ (}.<{ J$ 2^ BN J$ .( R@ G= ], BN R@ J$ BN ]& ]& G= I/ ]& ]& L$ I/ 0' + # $ 5_ + # # ]& ]& V@ * Z, }, #^ $ $= # & [* =' + > [* . + $= S$ Q$ $= N$ $ > > S$ U@ > S$ > ,Q U$ . S$ = & U@ Q$ > ; > = U@ X@ > $= | S$ Z! ~ ; S$ # f] { | [ /& 7- & `@ S$ & ] [ H= R$ U$ ) } ~ ( Z! T- { X@ ( ~ ## /& { Y> $# $# 4 d M' 6 / c6 &# ,# 3* d | 6- } } d ,# 7 Y> 0 c6 L= Y> !# {# k 6 ,# 0 e ,# Q{ ~# o L= c >e.n &].n K] Vj Y$ p Y$ % 1; n r n ,> ,> 4* 4* D ),.#| G#.1Z t t Q(.#] E G t {& w {& {& F= /# a7 F= z a7 '&.'&.'&.z AR 8$.AR z 8* M (e.bY _e.:e.k^ @$ #.5E F* CP d+ RJ BU BU JM q+ G0.}0.+1.}e.|e.[(.Ua.Pa.q].w|.G}.2(.1e.2e.3e.4e.5e.6e.7e.j^.Mc.Mc.oR va.8e.==.9e.wQ ~U d =f SZ VW c#.U@.fw < .Ac Ac 0e.0e.$e.1b.yh yh #H wh ub xe !#.ae.Za.rR %e.cI be.)>.ce.de.ee.{6.fe.[a.i6./2.c7.F<.ge.c7.j6.;c./6.he.:3.ie.je.;[.ke.!}.s8.!}.#<.!}.;[.!}.,[.e(.G<..N |5.rv 8~.e[.le.+8.=1.~}.;. m D G Z$ p o p g Y$ h e e ", +"9| 9| 9| <{ 9| q, jP J$ 2^ 9| 9| <{ J$ <{ 8S <{ <{ 2^ L$ l) .( BN G= <{ <{ I/ 9| 9| BN I/ BN L$ 0' L$ 0' 0' p9 ]& # * 5_ 0' # K$ # R@ # * ]& #^ # [* + . 2) # # . S$ . k) $ S$ ' $ . Q$ $ S$ # ; S$ P$ S$ $ T@ . U$ S$ = . ] & . U$ ' L$ 05 R$ X@ U@ R$ U@ > %= ; ! N$ ] ~ Q$ ] Q$ 'W & R$ | ; 2 # N$ 2 { 4 /& } 2 ~ ~ %# /& { 2 : < { ) ## < == 1 ># $# Y> D, Y@ 4 3* [ %m *# 6 5 6 Y> 7 1 ,# &# q> 0 7 6! 3] 6! 0 !# c b 0 !# e e ,# n 6! L= p r ;= }& % % o `$ c _# o h ~# q m ^# 1Z $] G#./# t Md.4* b' t w ^# {& w /# /U z w F= E z z '&.z a7 a7 $T a7 E z 8* Q@ T^ O@ V M >z c- Z Z c- V V V KW c- 5 ..@.z .z .L *I iU i5 A: *I A: *I -*.:#.y+.yS (U A: #N RT RT #N RT Z .)Q R%.RT Z .lP sZ <#.9$.@N hT AS hT {&.3@.hT hT .` hT hT hT +` .` .` 3Z _U pY |Y %T %@.pY dS ST #Z qY 'O 0R ~W fK pO VO fK fK nP nP ^Q 0R pO 0R pO >X lU KK KK 2M WO 2M 2M uM 2M /P LQ >R WO /P rI LQ /P 9C ~I {L ]I 9C 9C ~I tI yH ]I -H 9C ;u Wf 8t Cx Qq Qq Qq Qq Qq =i Qq Qq Qq =u H0 H0 hf hf H0 %0 qg M3 &0 %0 b/ b/ o[ b/ b/ o[ H^ j{ b/ b/ -/ B] X~ c/ 4~ K! K! K! K! h. h. r) K! K! K! f. l* l* g& h. g& l* g& x> j. l. u# n. n. x> o. o. <= x# q. t. x# x# x# x# t. t. !e.x# t. s. := me.ne.o0.hd.~e.19.9a.19.gb.gb.gb.>d.0a.id.0a.0a.id.29.0a.Pb.id.0a.Pb.yc.`0.&b.D8.Pb.&b.Pb.Pb.D8.D8.b8.b8.oe.&b.aa.-b.=b.b8.69.Td.Bc.89.]0.$5.79.j$ pe.qe.** Y% lb.89.** ]0.** 8@ h$ Y% 5@ 7@ &9.h$ a@ Rb.Ia.6@ -* .& Y% 06.3@ & k$ ** o$ ** =* W* h$ h$ e@ g@ o$ k@ ,* +& +& h@ .& :; [.re.9=.se.te.ue.ve.we.xe.ye.ze.F=.1!.T* %6.p{.E=.^ .h+.!Z S&.[$.h@..Q ({ @F P5.i5.Ae.Be.Ua.md.)a.|1.Y{.(8.Ce.De.Ee.Fe.Ge.5e.Y}.He.z-.Ie.}d.Je.dc.8e.Ke.%0.Q..~U q.._ .m@.S+.tu @$.o%.!%.~%.~%.yb.yb.0(.0(.~T #H #H wh %e ub 5j P0.4b.3b.TH cI +z J6.2a.Le. b.Wc.7b.[a.4N Q4.q8./2.Me.B% u2.u2.t2./2.Ne.Oe.Pe.'7.H|.!}.^2.7<.b[.G<.G<.H<.#<.^_.D[.iP s8.n3.&<.*7.Qe.nc.G<.Re.a. I % m ^# `$ % c o p g c a ", +"9| <{ 9| <{ 9| <{ <{ J$ J$ 9| <{ jP J$ J$ I/.<{ J$ 2^ jP <{ J$ BN I/ I/ L$ 0' R@ I/ I/ I/ G= L$ L$ J$ R@ ]& BN L$ + * 5_ I/ $ # # # R@ # #^ L$ ]& + . ]& o! # # + [* V@ & = 2) S$ + Q$ > > . > U@ ' . - > . = & ] $ ]& - ' H= > - . P$ U@ > . S$ - Q$ | ) R$ ; ~ ; ] N$ ; R$ S$ & | ) ; { | 2 | ( | I= | | R$ W@ <& | ( d : d | 7- V~ 4 } Y> /& { d J= d Y@ { { ( ( 1 6 k ,# 6 5 a b a 0 ,# 6! k 2* !# !# ~# e ,# t' e a 0 a 0 n r h h h p! Y$ ]# i p h _# |& L= ^# /# 1Z 4* 4* p b' ^# ^# w D w w m w C z F= E 2; C z z a7 w F= a7 1& /U .}Y (#.5 .SO x .v@.B..SO oY aV (U aV (U 3d ,*.k#.^P )Q RT #N )Q )Q ^P +Z ^P Z .<#.-X bV '*.1@.CX .` hT 0X 0&.AS CX .` CX hT CX BS 3Z E` +` HQ |Y |Y 4@.BR pY =S pY tM CR @V }M |C IV TT nP 0R nP 6N 0R pO lU nP nP eS 2M 0R sO uM pO eS uM uH 2M KK KQ rP uM uM 2M >N WO uM 9C 9C HJ yH 9C 9C ~I 9C =v ]I -H zH [e ms ms Qq Qq =u Qq Wf =v Wf ,e.=u Qq Se.Kw 2e H0 H0 ng &0 lj Yf &0 M3 K9 o[ Te.H^ ,2 }5 b/ H^ }5 na -/ ^] 4~ A1 ]] r) h. Z- 0^ r) r) K! h. r) h. h. l* l* Ue.K! g& f. U= /% J; n* v# x# q. V= (% o. i& t. i& Ve.t. y# t. x# x. Ve.t. hd.h& We.!e.x# x. 9a.Xe.n0.ne.9a.Ye.9a.Ze.>d.9a.id.id.id.Xe.Sd.`e.29.&b.]e.C8.&b.id.hb.aa.D8.Pb.Pb.Pb.&b.&b.&b.@9.=b.Fa.Td.Pb.-b.=b.Td.u0. f.Fa.$5.j$ Td.h$ 94.lb.Ga.&* lb.** &* Y% .& p$ 06.`% Y% o$ 6@ 6@ ** _; 5@ h$ a@ .& %* ** h$ e@ Y% m$ h$ 0q .& d@ e@ o$ +& e@ m$ k@ m$ k@ y; .f.g@ =* W* +f.5/ ,..@f.#f.~d.u- $f.X/.%f.&f.*f.=f.-f.;f.>f./].84.t{.&* 9@ l~.T1.e].S&.CU ~Z 8P rb.,f.'f.M3.j( Q, &, l; 10.)f.!f.~f.{f.]f.^f.z-.z-.Nc.Je./f.dc.(f._f.G%.=}.{2.jY 4G m@.p@.U@.< .k..Ac YN :.$e.1b.$c e*.'c #H yh ub ub y>.#H :f.4b.3b.3b.,q ^l ;[.;[.@<.t2./- a> o4.'[.nc.A[.mu !}.G<.2f.w `$ D `$ C; h V$ Y$ r '# n 0 ", +"*) <{ 9| <{ 9| 9| <{ |1 J$ 2^ 2^ <{ 9| J$ <{ <{ <{ J$ R@ R@ ;b ;b L$ R@ I/ I/ I/ ;b I/ #S #S BN I/ I/ 0' 0' = = ]& # # 0' $ # # + ]& # + = 0' V@ 2) # . $ # . ' $= $= 0' = & ' = 1* $ + = - U@ > & U@ . = . A; Q$ Q$ ' S$ P$ > $ $ {c Z! - T- X@ ; { | R$ U$ %= U@ ~ U@ U$ ; ; | H= ~ %= Q$ ] %= R$ | /& | X@ X@ # /& { } 8- .# ## < Y@ 2 $# 6 $# / 6 d J= d } 7 5 d } 7 Y> { 6- 6 5 ,# z: 3* j ,# 6! 3] 0 0 0 a d ,# 8 ~# ~# e L= 0 {# n c ]# ~# 0 n L= ]# 2, ;= 0- o ,> C; 2, m 1; b' 1; b' :# 2; s> /# 1; 2; ;{.;{.M= 2; :# /U F= w #| z E z L/.F= /U /U '&.C` E G AR 1& H$ T^ 1& O@ $T V c- T^ $T V z .c- =X c- .@.0S v@.(#.x .A: oY I-.o*.iU *I aV -*.-*.oY XX .Z (U k#.)Q +-.^P RT RT )Q RT ^P )Q +Z 9X EN 0X w@.1@.+@.3@.AS CX CX hT E` hT hT hT CX +` E` .` aS E` ST 3Z 4@.@Z pY =S EX EX CR kT jT CR 6N nP nP nP nP nP pO lU 0R pO %` >S sO FX fQ gK KK /P KK 2M KK uM uM 2M uM 2M WO rL WO uM /P 9C xH ~I ~I Ik ]I 8C xH 9C *A ~I =i Wf [e Wf 8t 8t ms =u =i Qq =u Pd.Qq Yf ma 'i 'i hf ~b 8^ K9 L4 &0 L4 b/ o[ H^ b/ o[ ,2 }5 b/ b/ ~1 A1 j{ X~ N] 8! K! Z- r) K! {% r) h. r) x! ^> r) g& /% l* l* l* T= /% g& v# v# V= l. w# o. n* w# t. <= n. t. t. x# x# x# |% t. x. hd.q* u. 3f.4f.me.ne.gb.gb.9a.gb.9a.9a.gb.9a.}c.C8.id.yc.gb.5f.id.xc.Pb.C8.id.Pb.&b.D8.&b.&b.aa.b8.=b.Td.=b.b8.b8.=b.^0.Td.-b.Td.l~.k$ Ac.Bc.Bc.06.6f.W[.7f.e8.l~.89.&* $* 89.lb.$5.l~.** a@ _; nH _; l$ h$ ** h$ o$ h$ #* 8f.#* .f.n$ o$ w; ** h$ X* 0@ 0@ z= e@ p@ m$ *& d@ & kW *& ;* 0@ 9f.27.N^ S` 0f.D/ ve.w- af.bf.cf.df.ef.ff.gf.hf.if.jf.kf.o$ m$ o$ =* d@ o$ 3@ A4.CU !Z g+.h@.TR HB 5E @! '] /) lf./b.mf.H=.{f.nf.z-.Mc.Ie.Ie.Je.dc.M0.of.pf.i..{2.q..SZ VW U@.^@.^@.>c !%.#e.hE yb.5j vV #H #H #H #H ub &/.#H =d ub qf.4b.4b.3b.%e.rf.t>.*7.R0.+0.i6.^6.G|.p5..N Q4..N iP {- u2.X5.~}.n}.Q& a> R+ Y+ L+ T+ O+ iP ^l n}.a> 7<.n4.;[.h1.of f) _5.&:.0b.1|.W5.{}.sf.!)./# /# ,> `$ n r o (# _# c f f ", +"*) *) 9| 9| 9| 9| 9| *) <{ ], 9| 9| <{ <{ <{ <{ <{ 9| 2^ ]^ L$ <{ 9| 9| I/ BN BN 9| jP 9| L$ I/ I/ 0' 0' I/ 0' 0' 0' 5_ # ]& [n = # # + # # 0' ]& + # !, * k) V@ # V@ > ; . Z, > & * Q$ ; > = }* S$ H= S$ H= |* $= & U$ | S$ & > > & > |* U@ S$ # ^ | & - S$ S$ ] & o! . . R$ | 2 J) 05 ; ~ X@ { 2 | | { | ( <& U@ ~ 8- / <& 2 ) 4 ( 2 $# 6 8- } 7 i $# b } =# } D, Y> 6- d ( $# ,# e 6 q> 3] ~# a 3] e ~# {# 0 ,# ,# g b {# {# L= s> {# n n 0- h h 0- n^ C; 2, m r [& ~# p Y$ p `$ n^ p Z$ 4* 2; b' Y$ t /# /# )> )> )> D {& F= w F $S C` z z /U $T /U /U a7 P<.'&.'&.'&.AR U!.O@ AR $T 2Z V M .@. V .@..@. V V V c- I-..@.(#.5 .aV A: B$.:#.I#.(U A: *I aV iU yS XX (U (U #N RT )Q RT )Q +Z RT RT RT )Q sZ sZ $N H&.H&.H&.AS 2..H&.w@.hT AS hT hT AS .` CX .` CX E` .` |Y ST |Y dQ pY =S %T =S ~Q -R fK qY @V 6N nP 6N 0R nP pO nP 0R pO 0R OW (P WT ~O 2M uH KK 2M uH 2M KK KK 2M 2M 2M uM tI %J tf.~O ~I Od.%J %J hK wH LE 8t ]I ]I *A Qq 8t =i Wf Wf [e =i Wf Qq =i =u Ue Qq og 2e H0 'i hf H0 L4 &0 M3 %0 &0 j{ a9 H^ o[ o[ H^ H^ o[ j{ H^ o[ }5 N3 A1 U/ K! K! K! h. h. h. K! Z- B{ h. h. K! l* l* f. l* H, g& l* x> n* g& x# _% (% uf.:= u. t. w# vf.t. q* t. t. x# t. t. hd.x# t. wf.~e.gb.xf.>d.gb.>d.gb.>d.9a.>d.gb.Sd.id.Xe.id.5f.yf.zf.C8.Pb.zc.hb.Pb.aa.&b.aa.aa.aa.=b.=b.b8.b8.=b.b8.=b.=b.06.Af.Af.Td.Bc.** -b.lb.lb.^0.Ud.$5.79.h$ 94.6@ ** 5@ ^0.Y% ^0.$5.m$ h$ h$ ** h$ n$ h$ g@ Y% o$ .& p$ j$ w; o$ .& o$ h$ Y% e@ 6@ o$ X* k@ )* e@ o$ a@ e@ j- e@ w; '* Z0.Bf.f, *P Cf.Df.Ef.Ff.Gf.s/ Hf.If.Jf.h/.f).`: E* Kf.Lf.z3.f@ >* ** Y% Mf.Z% l$ 93._{.!..t#.g).s{.5#.DU sV TR 5E Nf.Of.Pf.Qf.Rf.Ie.Ie.Nc.}d.Je.ec.M0.Sf.mZ W` =f _ .4G GW U@.@$.< .o%.tb T$.yb.1b.'c $c #H wh wh $c ub >e xe *e =d Tf.3b.3b.TH 4d.Uf.Vf.:|.:|.K6.4N c7.N6.g1.S& g1.vC P+ O6.pc.{- /- /- G% R+ P+ V+ R+ R+ /- P+ #) S+ /- pM {- H<.G<.<|.Wf.Xd.9w 's ;(.O(.h1.b[.e|.M Y$ r ,> h h p p h n o e ", +"<{ 9| <{ 9| 9| Xf.*) <{ 9| ^, <{ 9| <{ <{ *) J$ J$ *) 9| BN BN <{ I/.L$ R@ R@ 5_ ], jP I/ p9 BN I/ 0' + I/ L$ 0' 0' 0' # + 0' 0' * # # 0' + $ * + Q$ }, # & ' > k) S$ S$ = # . + & # . Q$ * - U@ U@ $ |* . Q$ > A; $ . - Q$ > $ U@ - S$ U@ & U@ o! ~ Z! ; ; & Q$ Q$ ] ] | R$ ] ) N$ W@ X@ | | %= X@ [ P$ ] /& ~ %= X@ /& / 1 2 ( 1 $# { d 7 5 $# 2 d &# 6 ,# &# 6 Y> 4 $# b 6 3 6 ,# $# d ,# ,# 0 a 9 ~# ]c ~# 6 L= 7 g k ~# n !# e ~# s> 2, h 2, Y$ n s> Y$ e {# h p Y$ s> p ^# p w b' xE 4* D t :# /# /# M= w o/ #] 2; {& F= 2; }4.F= n! /# C` /U /U w a7 a7 '&.AR AR JW KW n*.w c- V c- c- M $T V V .@.4>..@.x ..@.4>.v@.Q *I iU AX E].aV oY A: (U SO yS ^P _#.k#.3d ^P )Q )Q RT ^P RT ^P RT )Q +Z lP EN ~&.1@.0$.hT CX AS hT AS hT hT AS 0$.CX AS CX CX aS x@.|Y |Y '$.%T 2Y #Z [+.EX =S =S fK @V @` |C |C nP nP fK pO nP lT ;S LV pO JQ tH lU KK uH 2M uH KK uM KK uM uM /P 2M KK LE Yf.8C uM rL hK 9C 9C ~I ~I 8t *A ]I ]I {I [e Wf Cx Wf Wf [e Wf Qq Qq =i =i J9 =i Pd.H0 Dm Yf Dm hf M3 if Od &0 &0 L4 H^ y{ H^ ,2 H^ y{ o[ y{ H^ H^ j{ w> N] A{ ^] h. K! h. Z- h. h. h. h. K! K! h. g& f. h. x> g& g& w# l* o. U= o* o* v# Zf.x# [% x# q. w# x# x# x# x# x# hd.x# )e.:= t. !e.~e.wf.19.9a.gb.gb.9a.gb.]e.Ob.gb.gb.Xe.`f.Ob.gb.gb.5f.D8.id.zc.id.hb.aa.aa.Af.aa.aa.aa.06.=b.=b.b8.=b.Td.Td. g..g.Af.-b.^0.u0.Bc.Bc.l~.Ac.94.59.#* ** ^0.** ** ]0.h$ .& 5@ .& 5@ 6@ o$ ** g@ ;* l$ .& n$ h$ 0@ =* e@ w; w; m$ =* 8f.h@ e@ o$ nH m$ ,* kW h@ -O :; )* ,* h@ +& .& 94.&g.g; a. ,W 8@ %* p[.Y% =* 3@ F3.;|._/.2'.x,.*g.M).sV SS 9=.=g.;~ [~.-g.Qf.;g.}d.Nc.Je.#c.dc.M0.1d.3).i..wd.=f 4G KB p@.l@.o%.!%.Ac Ac x&.0(.0(.>g.$c ~d %e O;.#H ub #H -d wd wd IL Za.3b.4b.Ho ,g.'g.87.*7.K6.B7.() B% E% E% L+ Q+ O+ {- M+ G% )g.W2 ^N N+ a> L+ R+ a> g1.T+ R+ S+ /- a> u2.H<.,[.:4.!g.~g.t8.{g.]g.,[.Zi ,[.e+.m N 4* r >> h c r 7 j X$ c ", +"e^ *) 9| 9| w9.w9.98.9| 9| *) *) ^, <{ <{ 9| 9| J$ <{ J$ <{ *) <{ <{ ;b J$ *) BN #S BN BN I/ I/ R@ L$ + ]& G= k3 0' 0' # K$ X! 0' = # # + L$ * V@ = + $ V@ Q$ [* $= . [* |* - k) p9 V@ ' # . % $ $ + T@ S$ =' & |* - & > V@ . & U$ & & T- S$ . . | X@ H= N$ R$ ; N$ T- ] ; ; & ; X@ - U$ $ { W@ X@ U@ ~ | 05 ) | [ Z! 2 2 ## ~ 5 X@ Y@ 1 | ~ [ Z! 4 ## { d ( &# *# [{ 5 } x0 : ,# } $# d ,# } 6- Y> $# 7 6 a k 0 6 e 3] a ~# ~# E, 3* n ~# 6! n r -) L= s> h h V| Y$ !# p (# 2, p 1; m 1; ^# ^# xE Q(.[# @= 2; b' % #] /# w #] G F= F= G F= a7 B w z a7 a7 I F= B '&.'&.'&.$T .@.A$.a7 M O@ Z Z c- 2Z 2Z V c- V c- V 4>.4>.>z 4>.Z..:#.d{ y .oY A: A: A: *I oY _#.J-.(U yS +).^P )Q ^P ^P RT )Q RT RT RT bV sZ -X 1@.9X 1@.mL hT $N $N AS AS AS .` AS AS BS aS CX BS 4..pY ^g.|Y %T 4Z CR tM EX =S 5N 6N /g.@V 6N 0R 0R DR nP 6N fK |C nP |M 9N uH $V KK 9N uM KK 2M 2M sO uM 2M uH 2M uM /P rI wH LK ~I 8C yH 9C rL 9C 9C ~I ~I 9C *A [e Wf =i [e [e =i =i Wf [e =i =i Kw ls =u fo 2e ng Oc >2 ~b L4 S: 'i &0 [c 'i S: y{ o[ j{ H^ b/ j{ H^ H^ X~ 8! w> // /} h. k] Z- h. Z- h. {% f. Z- h. Z- (g._g.f. f. g& f. T= l* g& :% J; o* q. q* <= o. q* q* q. x# q* q* x# x# t. )e.t. hd.t. 4f.ne.4f.o0.o0.9a.>d.>d.>d.]e.Sd.gb.gb.>d.gb.`f.gb.9a.:g.0a.id.]e.hb.Ob.aa.Pb.aa.aa.aa.&b.Af.&b.06.=b.Td.Td.Td.Td.-b.=b.06.=b.^0.5@ Y% lb.h$ h$ $* 79.5@ Rb.}Z w; &* h$ Y% 5@ h$ ** Y% o$ b@ h$ Y% -* e@ e@ .& h$ _; 7@ X* 0@ o$ g@ +& && j@ d@ '* ,* f@ g@ 6@ n$ m$ ,* )* j@ )* X* * v) 2g.64.l$ g$ w; 3g.4g.ha ;Y _S 5g.G* 6g.$/.7g.8g.9g.0g.#c.ag.ec.bg.cg.{%.-U @H SZ VW 2x l@.@$.o%.tb hE !#.$(.e*.yh yh $c wh O;.ub %e #H -d zh =d *e lZ _a.3b.4b.dg.eg.fg.gg.=e.`2.N6.() N6.hg.ig.Q+ V+ L+ ^l L+ Y+ Ca.jg._$ V+ P+ /- a> ]w ^l ~@.]- Q& X2 E% #<.D[.8<.U}._9.R4.e(.kg.lg.o4.t2.mg.Xr K G ~# :# c *= o n ~# j a a ", +"98.<{ 9| <{ 9| 9| 9| 9| <{ <{ *) *) 9| 9| <{ 2^ 9| I/.;b <{ J$ l) <{ <{ <{ z~ *) I/ BN I/ I/ 0' G= R@ = 0' 0' 0' 0' I/ ]& # K$ p9 = # # ]& ]& # + 0' # K$ . ' # # . o! S$ & . = - . ' P$ V@ & . . $ - - $ ; & * ; A; }* > A; . > $ > U@ S$ U@ U$ & & T- N$ Z! ] N$ Q$ ' ] | N$ ^& { N$ X@ U$ R$ U@ ] Q$ H= { { ~ N$ ^ [ | ; [ I= *# $# [ 2 R$ X@ } *# ( ( ( < Y> 6 7 $# 6 e 7 d &# 5 d d 8 Y> Y> a d 6! 7 6! v5.a ~# W$ a z: A~ E, z: ~# ~# !# }& }& `! b~.`! p n L= p r p! c % s> K/.h m p ^# 1; m t t m t b' C F F= w F= F= B F= /U /U {& z '&.z /U z a7 '&.a7 AR '&.8* M AR $T JW M c- T^ n! 8$. Z c- c- V c- V .@..@. V Z..A: y .SO A: A: A: *I *I aV iU #N r! oY y+.)Q ^P )Q )Q ^P RT RT RT +Z +Z EN -X '*.Z .-X AS $N $N hT hT AS hT hT hT CX :M $N hT hT aS ST ST ST %T |Y #Z @Z tM CR &@.nP kT @V 6N 0R nP 6N nP nP 6N 0R pO 0R lW KK 1M uH ~O ~O KK uM KK eS uM uH KK uM uM qP vM wH 4C ~I wH 9C vH *A wH 8C wH 8t ~I wH Ik Wf Wf zH NA Wf Wf Qq Wf =i Wf =i Pd.Qq z9.Pd.H0 Oc H0 hf 9d &0 Ve =/ x1 M3 S: j{ H^ b/ o[ H^ H^ o[ b/ A1 B] B{ q) m~ #~ r) Z- c. Z- c. h. Z- h. K! Z- i. i. g& g& f. l* f. g& g& l. s# n. Ve.ng.i& w# q* x# x# x# t. x# x# q* x# q* x# og.x. t. pg.ne.!e.!e.Xe.gb.gb.>d.Xe.>d.>d.qg.qg.>d.{e.rg.>d.5f.0a.id. f.`e.Ob.aa.Af..g.aa.Pb.Af.Af.Pb.Td.Td.&b.=b.=b.=b.l~.Td. f.m$ 06.l~.^0.94.Bc.#* Rb.79.Rb.** h$ l~.^0.d@ h$ Y% h$ 5@ 94.Y% m$ ^0.a@ e@ m$ h$ .& h$ h$ ;* o$ r' 94.sg.h@ 8f.x; 0@ >* q$ e@ h@ )* ;* h$ )* =* =* =* >* tg.ug.p% -~ $$ -~ )T t{.vg.3@ X* +& c@ `% wg.B2.a@ l$ |@ 9@ #* p$ b$ 7@ c@ p$ U] w^.2@ o$ 6@ P_.xg.q] `%.>%.t#..Q u~ yg.zg.Ag.Bg..e.Cg.Dg.Eg.Fg.pf.QZ -}.q..Y+._ .m@.U@.0k < .k..tb Gg.!#.!=.e*.[R yh O;.ub y>.%e y>.ub ub xe xe we U` (a.3b.4b.Cd Hg.Rg Ig.=e.B7.X5.hg.B+ A+ U& T+ L| F% S+ S+ @/ Ds k6.G% G% Q+ #) {- #f DL Jg.Kg.Q& Q+ r8.pM b[.$<.8<.]w Kb G<.0<.Lg.rv #<.0:.Q4.S m h `$ Y$ o l r o g d a ", +"<{ <{ w9.*) 9| *) 9| 9| <{ <{ <{ ]^ <{ <{ <{ <{ 9| I/.;b l) R@ L$ <{ I/.R@ L$ 9| #S I/ k3 L$ L$ J$ *) L$ [n 0' 0' 0' 0' [n # `Y # = # # = 0' # 0' # K$ V@ # ]& & + # ' ; . $ [* V@ # $ V@ + 0' [* > . > . & . > = A; S$ ] > # . . ^& = ' %= %= ; = %= N$ ; X@ ~ . Z, Q$ P$ Z! 2 ) 2 05 2 %= 2 R$ ; ( { R$ ## { N$ | 2 | ( ( H= 5 X@ } ## ( Y> /& &# $# N' $# i ># ,# i ,# a 6 7 B; 6 } D, 7 ,# 0 a' L= 3* &# V) |& 0 e 6! a 6! L= {# >> L= K/ 0- r -) p Y$ A~ Y$ r ,> l n 0- ]# Q{ n^ 1; 0- ,> % 1; % 1; ;) 1; Z$ t ,> t F F F= w F= w F= {& F= :# #] a7 z F= z 1& '&.z a7 a7 8$.KW 2Z AR c- c- c- z :}.a7 V >z V V c- V 4>.4>.4>.0S J A: x .<_.aV oY *I *I (U aV (U 3d k#.*I ^P ^P )Q )Q 3d )Q )Q )Q RT RT sZ -X 0X H&.+Z AS $N mL $N AS AS hT hT hT AS AS HQ .` hT aS aS q) B{ h. Z- h. Z- h. h. h. K! K! h. {% {% g& K! f. i. i. f. l* /% l. n. x# Ve.Zf.<= m. Ve.q* v. q* q* x# q* Ng.'e.q* x# := )e.4f.We.x# ne.me.me.Og.gb.>d.qg.>d.qg.qg.gb.Ob.v7.>d.Pg.aa.0a.id.aa.id.hb.aa.aa.Af.&b.Pb.Pb.Af.aa.Td.aa.06.06.hb.Y% Qg.06.Y% Bc.l~.x; 0@ lb.Y% ** $5.=* .& ** 94.Z% m$ Y% 8f.]0.a@ p$ &9.+] h$ k$ _; Y% #* m$ 94.#* k$ .f..& #* n$ nH k$ =* =* U* =* p$ X* m$ *& =* )* p$ =* l@ b. Rg.]{ RR 3+ C=.J& ^<.{].n<.Sg.A= -& 9& j@ a9.&6.i$ Tg.[@ 9@ Y% 6@ X% Ug.`% a@ Vg.7,.dY Ac.=Y [@ 7@ _].:&.hZ DU qN oa.Wg.Xg.Yg.Zg.#c.#c.Eg.`g. h.QZ NO R..@H SZ (y p@.l@.@$.o%.!%..h.~%.!#.vV [R #H yh #H %e %e y>.xe y>.y>.T=.nc we Bt P0.Za.4b.Cd TH +h.@h.Eb.n9.j6.w~ A+ E+ ta E% C- ^ t{ /- p; wg X; L+ g1.S, /- T! O+ {- #h.$h.Cs n}.vC n}.^l iP |5./- V& U}.<3.%h.0:.w_.D[.Q4.#. n h h o !# e 9- j ~# *= ## ", +"2! *) )~ *) 9| |1 9| 9| <{ 9| )~ 2^ V! J$ I/.<{ 2^ *) I/.J$ .( R@ L$ <{ R@ BN <{ BN L$ ]& J$ BN p9 R@ L$ I/ 0' I/ I/ 0' ]& = + }, I/ ]& K$ # = # ]& 0' J$ + = k) . . !, . E! 1* . $ # > . ]& 1* . # # S$ & > $ U@ ; Q$ ; ; N$ Q$ S$ Q$ > ] & $= Q$ ; N$ ] | & > *' T- N$ o! > U@ ; Q$ T- %= X@ X@ ^ ] 2 X@ | 2 ~ | | J) 2 } ~ : 4 ~ } &# } } 2 d 5 $# Y@ 6 ,# i V~ a' $# x0 6- a $# a ,# a' ,# 0 V$ ,# k 0 0 ~# a {# a' } 7 0 ,# a K/ i ~# 0 L= Y$ K/ y2 ;= `! h e ~# o % 2, ,> t m 1; m L= 4* ^# Q(.xE ^# G#.4* 2; m t G F B t /U w w F= B z d.>d.>d.qg.;h.gb.>d.Pg.>d.qg.Sd.Pg.rg.id.>d.>h.39.Ob.]e.Af.,h.Af.aa.aa.Af.aa.aa.Pb.aa.Pb.Af.aa.aa.=b.Td.#* f.'h.Y% /M w; h$ kd.Y% )h.h$ 79.#* h$ 79.lb.n$ #* e@ o$ Y% b@ ^0.0@ >* =* a@ =* h$ j$ m$ m$ p$ r' 6@ =* a@ w; q$ f@ e@ 0@ >* p$ >* g@ >* t$ p@ o$ 0@ A= a& !h.d+.wT bY 2!.'` w6.62.#* && s@ {* h# q@ s@ j@ 0@ 8@ ~h.6@ .& ,* e@ {h.]h.o$ ** E=.^h.c^ W<.e$ f$ J- 2'./h.(V 1L (h.e0._h.:h.3|.==.ag.Fg.`g. - $ S$ ; # Q$ > > $ > $= Q$ T@ S$ ; |* U@ }, S$ > M$ > #^ ^& U@ ] > Q$ H= & ] N$ ^& N$ P$ X@ ^ S$ & ^& | U) ] { *# X@ ] ~ X@ 2 ; { 2 1 } H= [ ] 2 | [ ) *# ## ( d 1 Y@ *# 1 { $# V~ $# 6 k &# d q> D, [ b d ,# V) a V$ a k ~# a' 0 7 a' a ,# ,# j 0 7 K/ ]# c {# L= n !# K] W$ ;= h W$ Y$ 0 h n V| ,> r 2, Y$ 1; |& Z$ D V| ),.D t /# t t t /U $S `$ /# $S G {& F= w F= a7 F= a7 /U F= AR n! z z I 8* #= O@ c- c- I V 8* c- 1& H$ O@ 8$.M M V .@.c- v@.AX AX SO :#.aV AX L aV *I *I *I c~.BX (U )Q RT RT ^P )Q _M #N ^P )Q ^P +Z sZ sZ bV 9$.sZ $N $N AS $N AS hT AS AS AS AS AS CX BS aS CX BS |Y y@.EX pY %T =S BR ~Q =S EJ @V =S 5N 6N 6N nP nP 6N nP PP |M -S 6N tH tH uH tH KK uH WT 9N KK uH 2M LE hs !I hs ]I ]I 9C hs Uv 8t ~I 9C 6h Uv ~I 8t ;u ~I {I xH =i Oq Wf [e Wf Wf Wf Wf Wf =u =i G0 bh.~b E0 Oc Yf ~b 9d 8^ d.>d.>d.qg.>d.9a.gb.v7.5f.>d.Pg.rg.yf.5f.Sd.`e.,h.Ob.v7.hb.0a.Pb.Af.&b.Pb.aa.aa.b8.Td.=b.Td.Af.Af.aa.Af.Af. f.n$ Af./M 8f.h$ 06.^0.#* n$ /M ** x; k$ Y% o$ ^0.o$ wS k$ h$ Y% e@ #* p$ p$ 0@ Y% >* .& +& ** >* .& w; X* & 0@ h@ h@ r$ l@ =* p$ g@ f@ X* p@ g@ :; l@ >% eh.J .d+.{ .b%.wT 42.d@ N- o$ fh.>* m@ >% [y j@ X* a@ h$ ,* k@ p@ gh.hh.ih.0q 6@ X^.J> qQ g+.ha n, H] x,.P+.lS ({ jh.kh.lh.Xg.'e ag.Fg.`g. h..nc nc nc nc nc nc #H :f mh.-f 4d.Za.Ho xW ~r nh.oh.ph.n8.-7.B+ C+ P> T+ V+ N+ G% S~ /$ X; N6.qh.{- O+ V+ R+ T+ X+ be B% rh.O+ P+ /- S+ T+ S+ S+ iP h1.O(.p3.~}.iP sh.th.uh.D t c r L= g e n ~# V$ 6 ", +"vh.$8.*) e^ e^ z~ *) jP 9| <{ 9| I/.*) w9.<{ $8.|1 J$ <{ <{ <{ 2^ 9| jP 0' ], 2^ R@ L$ I/ G= I/ L$ ;b 0' I/ 0' 0' R@ 0' 0' I/ ]& # Z, = + # = 0' # # = = R@ ]& # #^ o! }, Q$ H= > > ' & V@ . $ - > $ . . $ V@ + & > & Q$ + > [* . * $ ; O$ & | *' ; | Q$ > %= P$ Z! *# U$ ; Q$ & ~ z] | U@ X@ [ R$ 7- F:.wh./& X@ [ ( X@ X@ ] 2 P$ ] 2 /& d ) 4 1 <& | d 1 $# 2 &# / Y> 6 7 k 7 6- == 5 c5 ,# 0 a' 0 ,# a 8 3] ~# ~# a ># a a tA 6 j n e 0 z: L= !# ]# h 0 s> h r s> r r ),.`$ Y$ 1; L= 1; p h r m % t m w /# t {& w {& xE F= {& w :# G 1; :# /U F= a7 a7 /# $S a7 z '&.O@ 1& X8. Z AR c- $T $T n*. Z n! c- V V V c- c- V V H#.I#.-*.A: aV aV aV L oY iU iU B$.#N zS oY BX ^P RT RT RT #N ^P #N )Q ^P +Z RT -X bV NW sZ 1@.$N CX AS $N mL CX hT hT hT AS aS AS CX aS aS _U ST IK IK iT =S CR %T ~Q -R fK &@.kT nP nP nP nP EJ 6N |M pO pO oP TL 2M KK KK uH KK KK sO KK uH 2M %J IF qL hs hs wH ~I 8C 5D on 9C wH Oq 9C !I on %J ~I 8C hK =i }e Wf [e =i }e 8t =i Qq [e Wf E0 og =i Pd.$0 K4 >2 Oc L5 K4 Nd L4 L4 y{ H^ y{ L4 S: H^ j{ o[ H^ H^ i] !! ^] q) ]> Z- h. Z- h. {% {% Z- i. {% i. {% f. q# h. Z- i. q# j. J; i. l. v# m. h& o. _% q* q* q* Ve.:= Ve.q* x# Ng.Ve.q* Rd.qg.`f.!e.>d.>d.gb.qg.qg.qg.>d.>d.x; ]e.qg.Sd.}c.rg.`f.Ob.id.5f.m$ id.`e.yc. f.o$ Af.Pb.&b.Af.Pb.Td.06.Td.Pb.Pb.Pb.,h.06.6f.06.6f.k$ ,h.pe.o$ Y% lb.p$ Y% .& .& o$ lb.-* m$ $& d@ e@ Y% =* wS m$ h$ =* r' m$ o$ p$ nH p$ m$ 0@ =* n$ :; )* :; h@ -& A= =* =* l@ f@ :; y; X* *& j@ Y~ xh.p% k&..) u- yh.zh.p$ )* g|.l<.p@ ,& h# h# -& l@ <7.'h.e# >* =* 8@ +a.e@ k@ p[._{.ha :&.62.]].@* 2'.g).!..CU IZ Ah.Bh.Ch.~g Ke.Dh.Fg.`g. h.Eh.wd.mk Y+.KB GW l@.l@.< .!%.Ac tb 0e.kH vV $c $c ub nc y>.nc (g *e =d nc nc nc jZ :f Fh.X=.Gd 4b.Ho xW ic.Gh.Hh.97.n8.-7.B% E+ ^$ 9{ g1.S+ o2 Ih.K+ 6h._5.m4.O+ S+ p; Y+ [$ %@ Q+ ($ G% a> /- P+ Y+ T+ S+ n}.#f #f <|.U}.^l B[.Jh.Kh.=8.^# 4* L= o o e 6 c 7 e 6 ", +"98.vh.|1 )~ 2! q, ^, ^, 2^ 9| *) *) <{ 2^ <{ <{ <{ <{ <{ <{ I/.J$ N<.2^ J$ J$ R@ R@ L$ L$ ], ]^ L$ BN X! I/ ]& 0' I/ 0' 0' 0' = # + I/ I/ # + + p9 # Z, 5_ J$ R@ # > . ' ' ' * - V@ [* S$ S$ o! $ # . o! $ ; > T@ & . H= $ - ^& Q$ S$ > Z, & > S$ ; 05 ; - X@ > ; U@ S$ S$ ] ; ; . | ; ) 2 | N$ { 2 X@ /& 2 N$ I= 1 { 2 ~ X@ ; f] [ <& 2 [ 7- } 9 6 4 } 6 } d W@ 6 4 8 d 4 ># ## 3* 7 ( d ,# [{ ># d e a d 7 a ,# a 0 A~ ~# L= ,# K/ 6 L= 0 Vj n c ~# y2 8x Y$ -) ]# ]# 2, n^ r 4* s> r q ,> `$ `$ m h ^# w 1Z t w m :# ^# cb.w @= )> w /U {& F= z B C` F= F= A$.'&.a7 z z _}.8* n! O@ 8* $T O@ HV V M M V .@. V .@.c- c- |# iI SO *I :#.:#.aV *I oY *I aV B$.oY zS YX BX #N #N ^P )Q )Q ^P ^P ^P +Z +Z +Z bV sZ bV bV -X mL mL AS hT mL $N AS AS CX CX HQ HQ CX BS HQ aS :+.BS )O ST EX =S tM dS 5..RL 5N dS kT fK 0R 6N |M 6N 0R 6N 6N lU lU 9N gK uH 2M uH uH tH KK KK tH (P qL KK (P LE IF ~I 4C qL Oq yH =v on ~I ~I Oq 6h Oq ;u Uv [e 13 =i ms =i Qq s9 Qq Qq Wf Wf g& t# v# =h.h& V= s# x# q* Ve.q. _% x# x# x# pg.Ve.)e.Ng.pg.Lh.!e.qg.gb.>d.qg.>d.Lh.qg.gb.Mh.Sd.5f.5f.rg.v7.id.Ob.Pg.`f.aa.Ob.Nh.Oh.x; id.Af.Af.aa.Af.aa.Af.Td.Td.06.Af.aa. f.m$ p$ f.x; l~.#* ,h.n$ Ph.94.x; a@ k$ a@ h$ a@ m$ .& 5@ k$ Y% o$ 8f.h$ .& =* h$ o$ >* Z% 7@ .& 0@ >* a@ -* 0@ kW )* k@ p@ b& k@ ]* u$ ,* h@ r$ i> e@ sg.u$ Qh.Rh.FZ :'.s#.p-.e~ Sh.$5.*& b& {* {. 4_ ,& {. v@ ;& e@ :. i@ =* 0@ y= &3.e@ -* |@ ,~.,~.s{.t{.x,.4@ U9 Th.1L @) qQ Uh.Vh.Wh.Xh.Ke.3|.Fg. h.Eh.Yh.@H q..o@.o@.Nj $$.^@.!%.tb Ac x&.S..!=.$c +l #H %e xe &e nc P+ {- ^l of Oe {}.o}.~}.H<..i.^/.C `$ h ~# e c o ~# o a g ", +"*) 2! )~ |1 *) 2! 9| w9.9| 9| 9| 9| <{ 9| 9| 9| <{ <{ J$ <{ I/.R@ R@ 2^ <{ J$ J$ ]^ R@ BN jP BN G= 0' 0' ], L$ 0' p9 0' 0' 0' 0' + K$ R@ p9 + K$ =[ jP # + #S L$ + # > + [* [* [* $ }, > CN Q$ S$ S$ Q$ # 1* S$ 2) > |* ; k) k) # + Z, T@ > ' & |* |* ' +i.. 2) o! Z! ] | ] | H= . T- & ' U@ - | S$ 2] ] 8- `@ ## 7- [ ~ 2 U@ U$ ; - [ [ 5 { R$ ( J) ## ~ I= D, 1 D, d 1 ( 1 6 B; Y> 3* a k 7 d } 2d ,# N' D, a 0 3] ># a' ,# ( Y> 0 0 6 0- 0 0 a L= c L= K/ 6! 6! L= h s> s> ]# h n a }& e<._# Vj m r ,> 1; b' m h Q(.Z$ :# G 4* 1Z :# $S :# w w F= /# G {& G /U /U /# C` {& F= a7 a7 a7 a7 K I 8* $T 1& c- c- V V V V c- V Z .@.4>.4>.4>. V z .0S i5 oY B$.*I A: oY L *I I#.A: MW XX (U +-..Z ^P `I ^P )Q #N 3d +Z RT RT )Q -X -X bV -X mL $N AS AS mL mL $N hT $N .` hT HK CX .` HQ BS cQ _U cQ ST |Y =R #Z iT ed.[M Zz =S nP 6N Zz 6N fK 6N nP |M fK ;S 6N 7J 1M uH tH tH JQ KK uH /P vG 2M qL IF hs KK LE wH ;N LE Iw Se 8C 6h on 8C 8t Oq Se 8t F3 =i Wf [e [e Wf [e [e =i [e [e [e u9 }e [e x1 8h K4 E0 ~b ~b 6^ M3 K4 =/ $0 =/ j{ v' y{ H^ j{ j{ H^ H^ H^ i] w> V' q) B{ {% Z- {% {% Z- h. Z- {% {% {% _g.i. i. f. Z- f. m* f. q# S= l. S= @i.o. K; Ve.Ve.q* q* Ve.q* x# q* 4f.4f.h& og.pg.>d.pg.me.qg.Lh.>d.qg.>d.qg.qg.>d.id.`e.#i.rg.Ob.v7.v7.rg.id.v7.Ob.v7. f. f.]e.Af.,h.x; k$ k$ f.aa.Af..g.`e.,h.k$ e@ -* Af. f.06.k$ h$ m$ m$ l~.#* Y% Y% 8f.Y% Y% h$ Y% h$ a@ Rb.nH .& ~h.d@ )* >* o$ 0q o$ =* e@ 0@ .& k$ m$ o$ k@ p$ X* l@ p@ $i.X* -& *& *& -& !* >* {* t$ #i.%i.*Y 1!.x^.P_.`# M+.i@ t$ {* O- ~. a. u@ t@ l@ l@ 0q -& E9 o@ 7@ 4@ n$ d@ )* l$ h$ ** L- G'.R* J- g).Z#.IY |' '..&i.~a.Wh.*i. h.Eg.=i.-i.Yh.;i.R..[ ._ .~#.U@.^@.@$.o%.!%.x&.Ke ti c*.[R jZ ub %e %e =d *e i.7T ,i.'i.87.)i.b7.!i./6.B- A+ B- M+ L* ^ b0.R4.V+ S+ E% {- g1.S+ R+ Y+ X; s8.Q+ R+ N+ ta R+ P+ X+ ta Q+ a> ^l C[.b[.n4.+8.t8.~i.^1.Q@ `$ c n 9- W$ e V$ c a j ", +"*) ^, ah.9| 9| 9| w9.9| 9| 9| 98.w9.<{ 9| 9| 9| <{ <{ <{ 9| <{ L$ R@ 2^ 2^ <{ J$ ]^ J$ 2^ 0' l) G= I/ 0' ], BN 0' p9 0' 0' 0' 0' + K$ + 0' 0' Z, K$ ]& 1) # = 0' p9 % [* # Q$ o! (& & # P$ ' ]& ]& V@ > . V@ o! ; L$ $= U@ > > S$ $= > T@ ] $ * - . $ > (& & H= ] > U@ S$ ) Z! N$ W@ ^ ; & & | N$ ] N$ 8- N$ ~ ) 2 W@ ) %= N$ b{ ~ 2 [ ( | ~ ) | } | B; < 1 5 Y@ ## *# { V~ 7 5 ,# 6 )1.J] [{ } 6 <& } d a d 4 0 a q> 6 !# q> 0 b ># L= c 6 e !# 0 K/ ~# h |& |& c Y$ 0- r |& ~# r 1; Y$ p Y$ n `$ @= b' b' p 2, ^# /# w u t :# D /# /# ,! ^# G /U G {& '&.w {& F= z a7 a7 a7 1& K a7 1& $T a7 '&.m;.c- c- c- c- c- .@. V O@ c- V V V c- v@.M }Y 3& B$.oY *I aV *I oY U;.*I WX 3d oY y+.BX )Q )Q RT #N )Q ^P ^P ^P lP +Z @N qH bV bV -X hT AS $N $N mL CX AS hT CX hT AS CX AS hT aS ST FN _U tZ |Y #Z qY tM dS CR 6N kT @V fK fK nP 6N |C {i.-S fK 6N JV }M qI tH KK uH uH tH 2M uH vG uH !I hs hs KK !I IF !I hs 8C Re Oq 8C LE Jc Iw on on ;u Oq Oq [e [e }e =i =i }e Wf Wf }e }e 9t Te G0 Mc og 1e E0 ~b J4 t/ 'i M3 =/ =/ M3 S: j{ H^ H^ j{ H^ j{ H^ j{ i] X~ #~ m~ c/ k] Z- Z- Z- Z- Z- h. Z- Z- {% Z- Z- Z- f. i. q# ]i.g& g& J; l. l. t# l. ]i.l. 2f.Ve.2f.Ve.q* q* h& q* Og.dh.:= Ng.pg.>d.qg.>d.>d.Lh.>d.>d.>d.qg.>d.Lh.]e.Nh.>d.>d.`e.v7.n$ Ob.Ob.x; Ob.`e.,h.v7. f.x; n$ Af.k$ k$ x; k$ aa.Af.Af.^0..& w; ~h.Af.Af.Y% Y% e@ k$ m$ Y% Bc.#* m$ o$ k$ m$ $5.w; 0@ =* 6@ d@ 0@ >* h@ =* ,W ,* h$ *& ,* ^i.,* p$ e@ kW e@ X* d@ m$ ,* u$ /i.)* X* f@ g@ l@ k@ <. l@ (i. ] C=.1!.h>.n{._i.&; `% 9& ^. x$ j- -& (. ). o@ c@ 09.p@ u$ i@ ** :i..& m$ e@ r' 7@ #* j$ 3}.|'.6J /].-%.xT f= c zc S..}i S..[R e*.jZ #H #H &e nc nc nc nc nc *e _f nc nc mc y$.3i.Jt 3R 4i.Ho {r 1^.Vc.h6.B7.-7.X5.)] B- B- B% P> {- O+ 6h.T+ P+ 5i.)] Q& R+ 6i.R+ V+ n}.T+ $) L* Fs ]w ($ U+ U+ R+ Q& of U}.#<.7<.iP 7i.0h.8i.D ^# h m r o ]# g g V$ e ", +"e^ *) 2! $8.9i.*) <{ 9| 9| 2^ 9| *) *) <{ <{ 2^ <{ jP 9| 9| <{ L$ L$ *) R@ J$ <{ BN G= BN k3 T*.R@ p9 0' J$ 0' L$ 0' p9 L$ 0' 0' ]& # V@ X! 0' # # # $ ]& $ $ = K$ + [* k) }, & > . & > ]& $ # $ . . > Q$ . . +|.$ ]& > & Q$ $ |* T@ o! H= [* $ - [* Q$ N$ . - > Q$ ] & ' $= |* ' $ . U@ > ; > ~ I= O$ U@ | 2 ^ | ~ [ W@ ( { ( 2 ~ / ) ( < [ } [ I= $# 1 W@ $# Ev 4 $# d ( d ,# d ( 6 5 } 6 ,# 7 d k e ~# 0i.7 a 0 ~# a i 3] c tA 3] t' n z: L= ,# n )# ]# ]# ,> ~# ,> p! `! !# 2, p % Y$ q 4* xE 2; `$ xE /# ^# t t /# w F= {& $] D F= {& G a7 /U {& C z W) B F= a7 a7 z 1& F= I JW V V c- c- c- c- c- c- c- M c- V =X c- x .)W >z V |# L <_.m,.y .Q oY y .*I I#.BX c~.(U oY #N )Q )Q ^P RT 'Q ^P ^P )Q )Q -X EN $N <#.EN 6B $N mL hT $N .` $N +@.hT $N hT aS CX CX aS MP DS aS %T _U iT CR @Z IV ~Q BR }M CR |C |C |C fK fK fK |C lT ;S 9R 6N 1M uH tH uH tH jy KK tH vG uH KE =H %J [z KE IF IF Uv LE 2h on ~I LE LE %J Oq ;u 6h 8t Se [e Wf }e =i [e }e .8 _4 ;u }e 9t ai.Pd.bi.=i E0 Nd ~b ~b K4 x1 8^ =/ 8^ M3 T/ 0d 4< j{ j{ y{ y{ i] j{ H^ m~ V' ci.N] m~ #~ Z- c. {% {% {% {% c. Z- Z- Z- f. f. /> q# m* /> q# _g.m* l. r# J, Ve.l. di.Ve.Ve.Ve.Ve.2f.2f.Ve.Ng.ei.:= di.pg.Mh.Xe.>d.qg.qg.qg.qg.Lh.>d.>d.Lh.5f.Xe.qg.rg.v7.v7.n$ -* v7.x; n$ Ob.m$ x; ,h.Af.x; Af.x; `e.x; 06.k$ 06.o$ Y% Td.;* o$ Bc.Af./M p$ =* 7@ o$ p$ h$ o$ m$ )h.h$ 5@ Y% o$ ;* a@ m$ >* A= *& g@ f@ i@ p@ r$ y; X* h@ f@ h@ 0@ o$ -& u$ b. *& h@ l@ -& -& f@ F9 p@ >* j@ fi./i.q* gi.u!.Y<.~].g>.:~ -~ hi.h# ii.c_.2@ j- {. B= k@ i@ d@ -& e@ X* o$ ,* {].d@ e@ /M 3@ p$ $5.84.:@ ${ m:.-%.xT qN ji.ki.li.mi.ni.Fg.`g.1i.Eh.NO W` Q .SZ tf GW U@.l@.oi.!%.k..YN .$.5j [R [R -d ~d #H ub rc nc *e nc nc nc nc nc nc nc we +I De ,q >i.'q :w pi.qi.b7.ri.si.m4.B[.B+ w~ B- )] g1.O+ /$ V+ /$ +/ C- _5.ti.6i.R+ Y+ L+ X; X2 O+ rN g1./- R+ @@ R+ /- o}.Oe ui..N iP vi.wi.yf.^# D ^# Y$ o g g o a j 2* ", +"*[ )~ 98.xi.98.*) *) z~ <{ *) 2! <{ <{ I/.)~ *) *) <{ <{ <{ R@ J$ =$.J$ ]^ l) <{ R@ I/ L$ R@ [n BN 9| 0' 0' I/ G= ]& k3 0' L$ L$ + X! V@ Dv + # # # = # # * . # ]& # Q$ > . . # . |* # o! . > $ . ; . ' H= ; > * > 9S ' Gc |* ^& Q$ S$ A; N$ & U@ S$ > $ > # > ; R$ U$ Q$ ^& N$ ; > . & & | %= J) ; h) ; | [ <& ~ [ Z! { } *# ~ Z! : : X@ ## } $# 5 *# 6 d ; { V~ ,# J= `@ ^ [ 3] } } ( } b } ,# 7 :& a x0 7 e 6! V$ 0 0 a 6 ,# k A~ k a e k e a e n }& ]# s> r 1; n ,> K/. % p D 1; cj ,> 4* 4* 4* yi.b' ^# C :# {& 1Z w C /# {& G b' )> z /U G :# B z F= /U n! a7 a7 '&.K B $T T^ n! T^ 1& .@..@.M c- c- M c- M c- M .@.c- V 8* E$ i5 :#.SO aV QT AX aV *I A: BX +-.U;.BX ^P )Q ^P ^P RT )Q ^P ^P +Z ^P RT EN sZ NW RT EN mL $N hT AS hT AS AS AS AS AS AS cV hT aS aS 3Z |Y `X dS |Y qY =S #Z ~Q {Q fK &@.G` 6N fK nP 6N fK |C Yz 9J |C 7N 9R jy jy uH tH vG tH vG jy KK =H Yf.IF uH uM vH hs hs IF wH *A wH LE Oq %J Uv %J %J %J zH }e =i on [e [e =v }e :4 [e la 13 [e ai.ai.Qq Yf J4 [| J4 [| [| x1 =/ K4 Oc >2 S: j{ y{ j{ j{ y{ y{ j{ y{ i] i{ ]] m~ !! ]] Z- Z- Z- {% c. e. {% {% {% {% Z- g. q# q# f. i. q# i. q# m. r# ]i.zi.l. t. Ai.q* Ve.Ve.Ai.q* 2f.Ve.q* )e.Bi.2f.Lh.qg.-h.qg.gb.Lh.>d.Lh.Lh.qg.Lh.qg.Pg.v7.Mh.Ze.v7.n$ v7.0@ 0@ e@ `e.0@ Nh.]e.Pb.hi.,h.Af.`e.Y% Y% x; -b.k$ x; Ph.o$ Q9 m$ hb.Af.o$ =* #* w; e@ m$ c@ ,h.d@ o$ =* n$ m$ d@ e@ p@ :; u$ ,W Y% ;* A= ,* 0@ m$ A= z= j@ >* >* 0@ +& cK W* f@ r$ p@ u$ D= ~* ~* b. x$ h@ o@ ~> q* Ci.:^.P].Di.s#.&%.1!.a@ k$ $5.P].0@ -& t@ q@ k@ e@ ^0.j$ -O 8& r@ %& l$ p@ t$ .& d@ p@ 6@ R* K' }@ %p !..RS AU Ei.Fi.Gi.lh. h.(f.`g.+.l+.]@.9#.Q$.!%.Ac #e.MI .$.e*.[R #H #H y>.y>.xe *e _f Hi.nc T=.nc rc =d uc Oj Ii.$O Cd Ho Ji.xt y1.gg.b7.^6./6./6.w~ B% w~ `] `U pM S& Q+ Y+ G% T+ L+ `2.Ig.`U vC V+ +/ 5i.Ki.Li.Mi.A` vC be P+ a> ^l iP {}.Kd Ni.]7.]7.Oi.-h.D p h p ~# g c n 7 9- 9- ", +")~ Pi.^, $8.2! 5' 2! *) 9| 9| 9| 9| 9| <{ <{ *) <{ <{ ;b J$ 9| <{ =$.*) 2^ BN 8S J$ R@ ]^ BN 0' G= ]^ I/ 0' 0' G= + [n R@ J$ ]& ]& # # ]& Dv # # $ 0' + !, # k) # $ # # + & & = |* S$ Q$ = T@ > [* # > & . $ & ' S$ > ] S$ k) U@ - ' U$ U$ . & A; * [* U@ = S$ X@ R$ U@ & 2) ) N$ =' ~ U@ .# 2 2 2 N$ 7- J) H= ~ X@ X@ X@ ) ( 8- 2 { ) 8- Y@ 5 N$ +# /& } U$ ~ 1 2 : } 5 $# [ 5 Y@ 7 1 3* 7 9 5 ( N' ,# 8 q> Y> d 4 ,# 8 ~# 6! k 6 b a' c z: L= ~# |& 0 c ~# ~# }& p z: _# 2, 2, Y$ s> ~# h h p Y$ h `$ G#./# @= ^# _# 1Z G#.:# :# ,> C G F= F= F= F= C E F= a7 a7 a7 a7 F= C` A$.'&.$S O@ $T 8* _}.'&.8* M o^ .@. V .@.c- H$ c- c- V V 0S Qi.Ri.>z SO Ri.QT AX iU A: 3; L *I oY oY oY BX qF #N _M ^P #N #N ^P `I )Q RT #N )Q -X -X 9$.lP bV -X AS AS $N $N hT mL AS AS $N AS AS hT hT cQ ST cQ _U &S ST dS ~Q #Z dS =S 7N 5N =S fK fK fK nP 0R |C Zz lT nP fK oL tH tH tH vG uH tH tH vG KK 5D 5D LE LE Qe KE wH IF IF 2h wH Iw Uv 9C qL 6h 6h wH 9C wH Oq ms [e }e [e [e }e [e Wf }e 13 13 Te E0 Wf u9 >2 8^ 8^ 8^ 8^ 8^ 6^ 8^ 8^ M3 v/ y{ y{ %^ H^ H^ y{ j{ j{ y{ y{ A{ m~ !! m~ {% c. {% c. c. Z- h. {% c. e. {% i. i. Z- g& i. q# /> f. m. k. f. [c.x# Si.[c.Ve.A= Ve.2f.Ve.Ve.2f.2f.2f.di.di.Ti.Lh.;h.Mh.qg.Lh.qg.qg.qg.Mh.Lh.Ui.Pg.n$ qg.qg.Vi.Ob.v7.v7.v7.,h.06.x; Mh.(i.Sg.x; k$ ,h.p$ k$ =* #* ,h.Af. f.06.Af.q$ h@ o$ #* .& =* '* h$ Y% 0@ q$ x; #* &9.p$ k$ >* 0@ o$ o$ =* k@ >* ,* g@ p@ m$ u$ X* a@ e@ p@ p@ :; >* X* cK :; i@ )* h@ j@ t$ t$ j- l@ k@ l@ r$ )* q. Wi.Xi.-|.R:.*~.N+.R:.,h.A= -|.-& E9 {* -& x@ 55.F9 8@ 93.e@ v0 j@ m$ '* kW p@ j@ h$ .& .& 7@ P* J- 2'.^ .N} Yi.Zi.kh.`i. j.mZ `g.c !%.Ac YN tN e*.$c [R $c -d ub O;.%e =d [* ]& ]& T@ V@ + Q$ $ S$ & + + + + = > S$ & + }* $ = ; > N$ H= | & & | & S$ U@ Z@ R$ ; ] X@ Q$ & 2 U$ U@ ; ~ N$ ; ~ N$ Z! N$ { ] U@ W@ ~ 4 < /& ~ 4 | U@ g{.4 d N$ ^ $# <& ~ 8- < V~ } J= 6 ,# 4 6 D, 6- 1 } a d 5 [ $# 3* 7 7 ,# $# 0 k 7 7 a {# a ~# s> e {# {# 6! {# ]c 0 ~# 0 n r n s> h `! -) s> 0- m m m 2, $] l n^ t b' $] G#./# b' D w 2; G /U /# :# /# F= <, a7 F= z z z a7 /U w /U a7 a7 a7 a7 '&.JW JW HV a7 c- c- c- c- c- JW V c- KW V 0S 0S V )W 5 .i5 iI iU A: A: L J A: 3; I#.*I 3d yS BX #N ^P #N )Q )Q #N #N ^P ^P ^P RT EN -X <#.+Z mL $N mL $N AS hT AS AS hT AS hT ZX aS .` 3Z cQ FN %S sM DS sM HN dS dS dS {Q |C CR |C :C |C fK fK 6N 6N 6N -S 6N -S FJ tH tH tH tH uH tH tH uM tH qL 5D 2h IF LE hs hs Qe LE wH %J IF ~I IF Se *A wH on ~I ms on [e 13 Wf }e }e 13 [e [e kj 13 Xf ]} [e *j.=/ T2 _| t/ K4 [c 8^ 8^ =/ M3 [c 1{ 1{ s^ j{ y{ H^ j{ H^ j{ i] !! w> q) z{ {% {% c. c. {% {% {% Z- ]> Z- c. Z- q# Z- i. i. Z- r# r# r# ]i.f. =j.2f._% @i.q* 2f.2f.2f.Ve.-j.Ve.dh.;j.di.di.!e.qg.=* Sg.Lh.qg.qg.qg.Lh.qg.Lh.Mh.#i.Ob.Lh.Ze.v7.=* v7.v7.n$ f.#i.m$ k$ `e.Nh. f.`e.aa.Af..& x; -* o$ ,h.m$ k$ k$ m$ .& m$ x; =* =* ,* h$ =* o$ 8f.g@ .& ** d@ o$ ^0.'* kW o$ j@ p@ :; c@ >* && e@ =* X* >* p$ W* f@ X* =* >* r$ >* >j.X* p@ l@ b. {* o@ i@ ,j.r$ t$ f@ 8! 'j.N].R:.^<.Y,.)j.g>.B2.>* !j.r@ Ug.x$ ~. s@ zi.(. Pg.X<.b@ ]0.~* ~* g@ >j.A= p@ 0@ o$ a@ j$ H3.P+.l` Q&.~j.{j.]j.^j./j.(j.mZ h.c ,c ~%.~%.kH [R $c $c $c -d nc nc =d =d P+ a> V& U& Q+ 6i./- o}.!}.s8.s8.<|.k7.G<.V0.iP 39.^# t 1, o ~# r c X$ o a } ", +"$8.9| e^ |1 |1 9| <{ 9| 9| 9| <{ 9| 9| <{ 9| <{ 2^ <{ <{ |j.9| <{ $8.jP R@ ]^ R@ J$ l) R@ ]^ .( I/ I/ ]& I/ 0' I/ R@ L$ I/ 0' L$ I/ 0' + K$ # 0' 0' # # 1) p9 + . $ 0' % k) # $ . = + V@ - [* o! & ' . + > Q$ Q$ - ; > $ 2) - = S$ S$ > = ; N$ P$ U$ R$ N$ o! ; - . * %= > ; U$ U$ X@ N$ ~ xS Q$ ] | X@ =' > - Q$ [ X@ ; X@ ~ { 4 { | 2 < ( X@ X@ [ 7- 1 < 5 /& ## 7 a J] < j $# 8 D, B; a' ,# d 6 <& 7 ,# 8 0 k 0 3] Y> } 9 e q> ,# ~# 6! {# 0 j c Vj {# h 0 0- ]# L= z: p h h p n^ 4* % b' n p q 0- ]# b' b' D `$ p 4* t `$ `$ )> 2; /# E #] z /U z F= z {& z /U z z a7 /U a7 B '&.1& 1& AR /U 1& M V c- M KW 1& c- c- M V c- .@.>z M V 1& :#.SO oY Q B$.*I *I *I *I #N 3d (U ^P ^P ^P ^P ^P ^P #N #N #N ^P RT _M EN jU H&.6B mL mL $N AS $N -I AS hT hT AS $N BS AS AS CX BS FN cQ &S FN DS ed.tZ dK nO 'O IN dS Zz fK Zz Zz |C fK 6N EJ |C |C }M QP $J uH KK 1M tH ;E 5D tH [z 2h [z hs (P wH 2h hs Re !I qL Oq IF Oq Re Oq LE %J Jc on Oq Wf Wf Oq }e }e }e 13 13 }e [e 9t :c d.Lh.Lh.Lh.Pg.qg.5f.`e.v7.;h.Lh.n$ Ob.v7.n$ x; e@ o$ `e.6j.x; hi.x; Af.,h.k$ wS -* .& Y% o$ =* o$ d@ ,h.k$ #* q$ m$ ,* o$ m$ Y% -* X* h$ o$ Y% d@ k$ )* && ,* e@ d@ >* >* d@ 0@ *& j@ ~* l@ && =* ^* t$ f@ h@ 7j.r$ :; :; 8j.u@ o@ p@ <. u$ ,j.-& u@ -& 9j.0j.(/.^<.^<.n{.&%.Q_.[@ +] j$ && -O y= -& -& u$ ~* +& $* %& +& ~* A= l$ ,~.:; e@ j@ y; 7@ 62.w6.X-.]G qN aj.bj.cj.dj.ej.fj.mZ _X c Ac ~%.~%.c*..$.e*.$c yh #H rc nc y>.rc _f T=.*e nc nc ue vV T=.kc y$.gj.su Ho Ho hj.B,.ij. i.B7.c7.j6.X5.jj.4h.X5.-7.T! Q+ O+ G% G% G% B[.O6./$ o}.#) g1.Q+ R+ L+ Q& U+ a> vC pM S+ vC vC {- G<.of U}.{}.b[.o}.{e.5* 1; 1, h a h 9- $# j a 6 ", +"98.98.^, z~ |1 *) 9| w9.9| w9.9| 9| 9| <{ 9| <{ J$ w9.<{ I/.9| J$ <{ <{ 9| ]^ BN <{ *) J$ R@ R@ I/ 0' I/ I/ I/ I/ I/ I/ 0' 0' ]& ]& I/ ]& # # # [n = # =[ #S + * $ = # $ [* =' k) # + # $ V@ * $ T@ . $ # $= # . > # S$ Q$ # & - $ |* > Q$ > U$ $ [* R$ X@ > & - ; Q$ ~ X@ N$ | ) ; ~;.%= { %= ; | X@ N$ & N$ R$ U$ ; [ ## [ d } 5 [ } F:.{ H= 2 4 } d J= } [ } / : d $# 9 d q> } 5 d 6 7 0 5 /& k b q> 3* 6 a 0 {# 0 {# {# 0 e 9 b ,# e e Y0.L= }& |& ;= n ~# s> Y$ r s> Y$ s> k0.v ,> n^ s> ^# L= ,> b' m p! D `$ u t p t #] G F= t F= w :# {& W) G z 1; z z '&.'&.a7 z kj.w n! #= P%.T^ c- c- c- c- ;O V 8* c- c- c- c- JW AX V c- 5 .d{ z .aV oY *I B$.B$.B$.*I *I qF G$ A: yS #N #N #N )Q #N #N #N #N 3d )Q RT lP H&.lP bV $N $N mL $N hT mL mL AS AS AS CX hT ~&.CX hT cQ 1Y cQ _U iT ST =S BR dQ CR -R |C ~Q 5N fK Zz Yz |C Zz Zz 6N |M |C fK >X 7a.vG uH tH KK uH uH vG tH TL IF sI hs hs hs 2h Li wH 2h Se %J wH Oq Re +: Se }e Se Se 13 F3 13 F3 13 }e }e }e }e }e 8d :9 og [e bi.D4 [| E0 E0 t/ 6^ 6^ s^ M3 =/ s^ y{ j{ y{ 1{ v/ j{ j{ H^ j{ m~ c. k] !! V' B{ Z- c. {% c. d. d. c. Z- Z- {% q# q# i. i. i. q# i. g. lj.]i.t# Ve.2f._% di.Ai.dh.Ve.uh.2f.2f.mj.)e.Ng.dh.nj.zf.>d.(i.zf.Lh.Lh.Mh.Lh.qg.Lh.qg.>d.Ze.e@ oj.qg.v7.v7.n$ n$ k$ p$ m$ v7.b@ hi.v7.x; m$ o$ 6j.b@ 06.k$ 06.06.,h.#i.m$ =* o$ ^0.Y% q$ 0@ =* ,h..& =* ,W A= h@ i@ k@ ,* p@ =* A= l@ )* ,W j@ l@ =* p@ -& A= a. =* j@ p@ m@ r$ F9 @& i@ k@ pj.t$ r$ j@ h@ p@ p@ xi t$ u@ -& S= qj.T>.(/.R:.4#.4#.-|.,~.L- ** h@ %9.y= i@ c@ i@ r' ** _].8@ >* h$ `% p[.,~.9@ +] h$ 0@ y= Y% R:.`,.-Y ]J ^i rj.1h.Vh.Gi.;n ;i.sj.;i.@H jY o@.o@.GW 2x $$.tj.o%.>c k..!%.x&.~%.5j [R [R $c yh #H nc nc #H rc nc =d nc *e nc :f Zs mc ,e we uj.vj.N}.Ho wj.xj.yj.zj.b7.Zc.Aj.Bj.Cj.Dj.ge.b7.3h.S& Ej.k= F% S+ Q& u2.DL O+ Q+ L+ /- /- S+ P+ R+ /- o}.!}.n}./- S+ vC n}.a> iP <|.Y3.!}.,).^# q Y$ *= j c o )# e V- g ", +"9| xi.e^ 2! xi.9| |1 w9.9| 9| 9| <{ 9| <{ <{ <{ <{ <{ J$ <{ <{ <{ l) ;b <{ <{ 2^ <{ ;b <{ ]^ R@ G= I/ I/ I/ BN #S I/ ]^ L$ 0' ]& G= I/ 0' + # # 0' ]& # + ]& 0' K$ + k) . V@ 2) k) = + ]& + $ # V@ 0' 0' $= ]& 0' |* # = S$ + Q$ & . 5! > Q$ ; - N$ X! ; > > R$ P$ & X! > R$ > ; R$ ] 05 ~ U$ | ~;.U@ ; | ] { 2 N$ `@ | N$ 4 xS ~ 2 ) 1 <& { 2 /& ~ W@ 2 N$ [ 2 /& } | 2 4 7 6 <& 4 1 Y> 7 k x0 ( ># q> 6 /& ,# 6 e ~# ,# i ># 6! 2* 3] ,# ( a k 6 i !# ~# o Vj E, E, a n _# h -) }& s> 0- ]# z: h 4* G#. % 4* 1; % p ^# p Z$ m % Z$ s> b' t 4* #] t G w :# E |Z /U z z G z a7 I K 1& z a7 n! A 1& Fj. Z c- V V V =X c- AR O@ =X V z Z.. V B).4>.0S i5 Z..B$.:#.:#.B$.SO A: A: oY 3d BX (U y+.^P )Q ^P )Q #N #N #N ^P ^P RT !Q EN '*.bV $N $N mL mL AS $N mL AS AS $N AS hT aS .` hT _U DX &S BS =S cQ sM GN DS [M IV fK oO ~Q Zz Yz Yz fK eK Zz Zz Gj.fK fK nP Hj.jy vG vG jy vG vG jy jy KK KE KE IF Qe y4 IF wH Uv 0J on B0 LE on Re Oq LE Oq Se on 13 [e /c Cb 13 F3 13 [e 13 13 }e v9 .8 13 F0 1e ~b >2 E0 t/ 6^ 8^ %^ 8^ M3 %^ j{ {> 1{ y{ y{ @~ y{ j{ H^ y{ V' e. M) !! #~ {% c. c. c. e. {% e. e. d. _g.i. q# d& q# q# i. q# q# /> ]i.]i.2f.Ai.Ij.Jj.Ai.2f.Ve.-j.2f.Ai.di.2f.Ng.Qh.zi.nH Sg.>d.(i.zf.Lh.Mh.Lh.Lh.Sg.Lh.#& Lh.Ob.Mh.#i.v7.v7.Ob.v7.x; e@ p$ v7.o$ =* =* Y% aa.`e.=* Af.x; k$ o$ m$ o$ x; 6j.o$ m$ =* && X* A= :; =* Y% ,W i@ e@ =* nH =* >* h$ h@ d@ j- ii.j@ u$ W* *& ,* m@ j- j@ m@ -O f@ r$ A= r$ u$ F9 l@ kW ~* k@ 7j.b. t$ E7 p@ F9 q@ ~* w' Kj.Lj.Mj.n{.}*. < _.Nj.&6.n{.n$ 94.[@ h@ o@ t@ q$ 0q <: >* +& )* k@ sg.6@ y= X* ,W &* 2@ A4.93.p{.C%.xT Oj.Pj.Qj.Rj.Gi.Sj.sj.W` W` [ .SZ m@.>+.Nj p@.^@.< .>c $n tb ~%.H(.S...$.$c $c $c yh #H rc nc rc *e nc we {l we nc :f we Tj.lc c Uj.yd.wt Cd &x Vj.j].Wj.Xj.K6.ge.Aj.h3 I7.ge.Yj.Ao C+ `U E% Q+ G% R+ ^l /$ Q+ G% T+ T+ T+ P+ a> S+ S+ a> vC a> N+ /- g1.n}.a> h1.<|.h1.o}.xc.D -) n e g r c f o a 2* ", +"q, ah.|1 e^ *) 9| |1 |1 9| 9| 9| <{ *) 9| 9| 9| <{ ], ]^ <{ <{ 9| J$ I/.L$ R@ 2^ 2^ I/.L$ ]^ R@ ], I/ #S I/ L$ #S #S G= 0' 0' 5_ I/ 0' 0' 0' Z, # + p9 Z, # ]& Z, + # = Q$ > # # $ $ ' . = . Q$ =' $ > Q$ Z, V@ |* = . # Q$ N$ $= > $ = > U$ A; X! > - $ & U$ ; P$ & Z3 | > | > > & ~ & N$ ] Z! ] { 2 2 Z! | X@ & ~ { ~ 2 2 ~ ) 2 ~ ~ S$ [ { 7- { { /& 4 [ ~ ## 2 : 7- 6- k 6- => ,# ## 1 ## 1 } 7 7 a 0 a 9 7 6! 6! a 7 d a 9 ~# ,# 6! ~# {# 7 n Q{ 0- Q{ [& o -) |& n ~# ;= r h 0n 2, Y$ Y$ 1; 4* 4* 2, D^ xE /# V| :# ^# 4* 4* F= 2; w w C #] G #.1; :# w B z F= '&.I 1& F= a7 a7 I z JW T^ T^ c- HV HV c- V c- Z V =X V 8* 0S v@.o^ z .I{.Z..SO x .QT aV SO A: L A: aV BX yS (U zS ^P ^P ^P )Q ^P ^P )Q )Q ^P #N ^P qH lP <#.lP mL 6B mL AS $N :M HQ rH AS $N hT AS Zj.HQ cQ :M _U FN -I QL sM dK lI dK ~Q IN Yz HN [M Zz dy |C fK -S 7N eK `j.0R |C oL vG jy uH vG uH vG tH tH ;E @A 2h 2h KE vG hs 2h Qe hs IF on Yf. k.Se Se on on on on Se }e /c [e [e 13 [e }e 13 }e 13 F3 _c .k.9t +0 Eb s/ 6^ :5 =/ 8^ 8^ S{ 8^ 6^ U' ^= {> 1{ {> {> i{ y{ 1{ j{ q) e. ]> !! !! #~ {% c. Z- c. c. e. c. c. c. c. e. q# f. c. g& f. lj.3j.g. t# i. [c.[c.r# *h.=j.2f.Ve.=j.Ai.Ve.q* Ai.Ve.Bi.mj.mj.Mh.(i.Mh.Mh.Ti.Mh.Nh.5j.b@ Ti.Pg.v7.Nh.#i.hi.A= b@ x; v7.#i.k$ m$ =* =* m$ n$ Af.x; k$ x; d@ 0@ 06.,* =* p@ =* ,* #* =* o$ d@ m$ #& Af.m$ +k.A= p@ g@ sg.A= p@ ,* Y% 0@ f@ -O :; t$ ~> Y* :; W* u$ u$ t$ p@ ,j.l@ k@ i@ h@ -& k@ t$ F9 l@ /i.~> t$ D= j- !* t$ j- uh.@k.E* 8=.vg.z* `: :+ P).#k.85.6@ H3.w6.j@ -O =* h$ o$ -|.2@ $& r' w; j@ =* e@ }Z wS ^0.9@ b$ g).e= g+.$k.CP %k.&k.*k.=k.-k.@H d @H [ ..s >+.tu tu /F 9#.o%.o%.!%.Ac ~%.YN _N 3&.MI $c e*.yh #H ub nc =d nc *e Zs ve nc mc nc nc {d rc ye ;k.>k.3R ,q &x ,k.'k.)k.!k.si.j6.~k.{k.Yj.N6.]k.^k./k.bK /$ P> A:./- V+ Q+ G% G% R+ /$ P+ T+ V+ T+ Fc S+ R+ T+ R+ P+ (k.iP Zi iP {}.X3._k.`f.C p % e h [& o Y$ 7 X$ a ", +"q, 2! xi.e^ e^ 98.xi.z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ R@ 2^ <{ <{ J$ <{ ;b <{ <{ *) J$ <{ J$ R@ R@ R@ R@ R@ L$ 0' 0' L$ BN I/ 5_ L$ 0' 0' 0' 0' Z, # 0' ]& Dv + ]& + # I/ + }, % $ {c o! # # $ + S$ |* . > V@ # . > S$ . > & > V@ ]& > Q$ . |* > Q$ Gc U@ %= N$ N$ . | P$ ] - > P$ ; %= & T- & . 2 | ] =' & ) R$ P$ ~ ] P$ [ J) ( H= X@ ~ { 2 { { 1 { N$ ^ 2 [ 6 } { $# 1 ( 6 d d , 6 a [ k ( -# ( d 6 7 3* =# 5 == 6 {# < k 0 6! } 0 6! 7 ~# ~# !# 0- 0 c n L= t' h -) -) h n^ L= Y$ V| n^ }& p 1; cj 1; xE -) ,! 1; y t @= @= 4* p /U w $S 2; F= F= {& B #] w G z B a7 a7 1& $T a7 '&. Z A$.8* 8* AR T^ JW c- c- c- .@.M M M c- c- c- 0S 3# =K V 0S Q iU *I L A: A: *I *I aV iU zS p*.qF 3d ^P ^P ^P #N _M ^P #N )Q )Q ^P )Q bV !Q _M $N mL 6B mL AS AS $N HK AS mL :M FN J J HQ BS FN _U HK d.Mh.Mh.Lh.#i.Lh.Lh.Mh.Lh.v7.n$ 5j.`f. & A= hi.n$ 0@ ,h.)* e@ Af.p$ ,h.=* p$ 0@ =* x; z= * >* sg.e@ e@ i@ >* h@ p@ n$ >* p@ i@ e@ ;* && =* m$ +& t$ j@ j@ ,j.j@ Z* kW u$ ,W a. m@ t$ m@ $i.u$ -& E9 l@ n@ ~* l@ ;& ~* o@ ]* ~> ;& {* [k.}k.h/.3T &P V# #$ #$ wg.<: Ga.6@ 62.u,.=* 0@ ** 5@ t$ 5@ l$ 5@ P{ 2@ /M q$ i$ V1.l$ Z<.b$ ,~.n, Z#.^ ..Q dY |k.1k.2k.3k.X+.@H q..=f o@._J l+.U@.$$.^@.4$.!%.Ac tb YN _N _N YN .$.$(.[R 3$.#H #H #H =d wd lc *e we nc :f *e lc 7<.~}.n}.;[.Oe g0.U}.D8.^# p p `$ ~# r p X$ o o &# ", +"*[ 2! 98.*) e^ &[ q, 2! <{ *) 9| *) *) 9| 9| 9| <{ <{ 2^ <{ I/.I/.J$ 2^ <{ <{ <{ <{ J$ jP l) R@ V! 2^ L$ BN R@ ]& 0' I/ R@ L$ ;b 0' I/ 0' I/ # # 5_ 0' = ]& ]& 5_ $ # = # 1* V@ & $ > 2) }, $ S$ |* = $ - . ' R- ' $ . > U@ > + . . $= $ # $= X! > |* |* $ - H= U@ | ] U$ ; & 2 'W J) { ] | ; - 2 %= X@ J) S$ { 2 ~ | ~ /& X@ Z! | { [ 1 ( ( } g{.N$ $# } 5 d ~ -> 4 } ~ B; { 2 ,# &# /& a /& b d ## 3* &# < 7 a d J] ]c ~# 0 e tA i ~# ># a 0 k z: t' ~# [& K/ |& |& ,> h s> r ]# r r h Vj h ,! V| 2, 1; #| % ^# #| p ^# /# t /# p! 2; $] {& /# /U G /U #.F= {& {& z {& z #] z z a7 z a7 z 1& U!.~& z V O@ Z M V c- >z c- Z c- M V 0S AR >z 5 .QT Q Q Oz d{ SO Z..aV SO aV y+..Z (U XX )Q #N ^P RT +Z ^P ^P )Q ^P )Q +Z @N tw )Q EN mL mL 6B $N mL AS :M mL hT AS HQ FN BS AS _U ST cQ FN GN ST #Z HN iT HN ~Q 'O |h &N Zz fK |C Zz |C 6N Yz EJ IN *N RL !O uH jy jy vG ~9 jy )I vG vG hs 2h 2h JK 2h IF 2h Iw 2h 2h Se Yf.(9 Re Se F3 Se on on +: 13 [e F3 }e }e [e }e [e [e [e v9 6^ J4 )b w9 8^ t/ G0 1e >2 8^ 6^ =/ 6^ L4 s^ @~ 1{ a; v' 1{ y{ 1{ !! y{ i] 1{ ak.6. i* c. c. c. e. {% e. e. Z- c. e. c. q# q# d. '' g. 3j.t# r# lj.&h.m. t# uh.bk.ck.dk.Ai.Ai.-j.-j.-j.Ai.2f.-j.Ai.mj.(i.wS zf.Mh.Lh.Mh.d@ wS Lh.hi.Lh.Lh.b@ >* k@ d@ e@ n$ n$ m$ m$ >* ,h.v7.p$ ,h.hi.:; d@ e@ sg.u$ h@ 0@ m$ m$ h@ ,* m$ U* %& m$ ,* :; %& e@ z= i@ wS =* :; p@ p$ :; d@ &p X* j@ j@ ek.l@ m@ %& j@ j@ t$ h@ cK m@ ~* s@ t$ t$ o@ ~> p@ !* ~* :. -& ~* t@ cK ~> 0& o@ fk.gk.A%.m$.u,.$; M .A%._/._].1!._/.Di.A%.hk.[@ o$ j@ e@ 99.H3.[@ W/.-|.,~.:i.94.S9 2'.d$ |@ #5.^].h+.IY 8P ik.jk.kk.lk.mk._ .Y+.jY 4G ]#.l+.p@.$$.~#.~#.< .o%.Ac k.._N _N sf S..;c [R R;.+l $c -d jZ =d f*.oc . (& = & [* . $= S$ Z, > & # > & ' - > S$ > - . Q$ U$ Q$ H= U$ S$ Q$ X@ 2 | & H= Z@ H= Z! | 2 | R$ N$ R$ ] 2 ~ | ~ ~ 2 | *# 2 | | < 7- 2 ( ( ( B; 5 4 | 2 ~ $# 6 $# 2 7 : x0 V~ / d 5 i 3* ,# 6 $# < 2 } J] 6! e 0 6! k 0 q> 7 uk.X0.a ~# ~# 0 k z: K/ 3] ~# L= |& n c c |& s> Y$ -) r h |& 2, r `$ ,> 4* 4* #| b' m 1; ,! #] 2; m 2; 2; w F= #] $S N 2; G F= 2; z E z a7 z O 3d qF (U BX ^P ^P #N )Q )Q )Q #N )Q ^P )Q @N `I _M +Z -X $N $N 6B $N $N :M 6B AS hT AS {z $N jU :M cQ FN cQ MP iT sM &S GN iT =S mP Zz 8R ~Q dy Yz Yz Zz Yz dy Yz RL Yz *H 'I jy ~9 vG vG 1M ~9 >K vG tH qO ;1 hs KE x4 2h 2h Qe %J IF Re Jc << Re +: on Se F3 13 F3 13 13 13 13 F3 13 [e [e 13 ka 13 S{ R: S{ @0 _c +8 D4 I4 u/ 6^ 8^ h{ I! I! s^ 1{ y{ @~ ^= 1{ m~ a; a; @~ a; {> 1{ )! A{ 8! c. e. e. e. c. c. e. c. 8! e. vk.g. '' o# i. w' e& wk.w' :k.bk.xk.2f.Ij.m. Ai.2f.-j.Ai.2f.2f.2f.Ai.2f.Ai.A= ;j.Mh.d@ yk.hi.qg.d@ Lh.wS wS #i.Lh.p$ ,* p$ i@ V* =* e@ =* >* ~h.=* >* b@ #i.Nh.=* d@ .& h@ =* i@ m$ o$ sg.c@ +& 0@ .& b. u$ >* ,W &p u$ t$ t$ A= p$ o@ n@ j@ X* -& '* m$ o@ m@ F9 u$ b. a. p@ r$ ~> >* l@ {* ~* >j.h@ F9 ~* o@ zk.m@ ~* -& -& s@ o@ v$ {* l@ q@ 1. UV d+.|!.:^.7= H> Ak.x^.3}.99.Bk.1!.<: 6@ l/.Q9 ~* &9.e$ {).e].I9.i$ 4'.B2.2@ |@ W% K- 2'.m:.{].^ .7W QS Ck.Dk.Ek.Fk.Gk.Vk SZ P}.;r l+.2x /F /F @$.~#.Q$.>c !%.8E _N _N _N YN ;c [R 5j T$.yh -d -d -d :f oc nc *e nc ve $e :f we >d /w ve TD Hk.4d.7T [..Ik.Le.N'.Jk.Kk.3h.B7.c7.j6.() `U B% D+ F) p9.K+ E% G% Y+ vC E% V+ O+ a> P+ S+ Q+ L+ ($ T+ R+ Q+ P+ !i.Lk.;,.Mk.o}.^l #f ,[.v* p C; X$ X$ h j Q{ r d d } ", +"*[ z~ xi.xi.9i.*) w9.9| [) z~ z~ *) *) 9| *) 2! 9| <{ <{ <{ 9| <{ 9| J$ <{ <{ <{ R@ 2^ J$ <{ I/.G= J$ <{ G= I/ R@ ]& I/ I/ I/ I/ I/ L$ BN 0' = 0' # K$ p9 p9 5_ * Z, J$ # = = Q$ [* ]& # R@ $ > # + # S$ $ k) $= & . + + + ' $= # - ' U@ . = & U@ S$ U@ Q$ ' Q$ P$ ~ X@ %= | ] U@ N$ ] ] N$ S$ X@ N$ | ; & | 7- S$ X@ Z! ) ] .# | I= ] ~ [ 2 & 4 d { /& : { 7- ( /& ## 9 Z@ { < ## ># Y> 6 d ,# b ># )1.6 -# 6 d 7 d ,# 9 6! tA q> 0 x0 i k 3] 6! ,# ,# 0 a 0 0 L= ~# ~# ]# Y$ n^ r [& s> -) }& % `$ ,> ]# r ^# 1; #| b' 4* b' 4* @= b' #] t /# 1Z F= /# {& m m ^# ^# :# B /# F= G F= z /U C` a7 a7 /U a7 a7 ).@ .P%.a7 O@ 8* O@ >z V c- M c- V V c- V V 5 ..@.(#.y .L AX Z..A: U iU iU A: *I r! ^P BX (U oY )Q ^P #N ^P )Q ^P #N #N ^P )Q )Q EN mL ^P 7s $N $N $N mL $N AS $N hT AS $N J AS AS AS aS _U %S 3Z .J J cQ ~Q sM HN HN Yz 'O ~Q cy Zz Zz eK 6N 5N Yz oL Zz Yz eK ~9 >b uH tH jy ~9 pL tH jy jy ;1 ;1 ;1 hs ;1 hs 2h Li KE Li Se +: F3 B0 +: W^ +: 13 F3 }e +: 13 +: F3 F3 13 F3 .8 F0 }e S{ 6^ t/ v9 [| S{ 6^ I! 6^ 8^ , f' 8^ 6^ I! y{ 7) 1{ g' n# ^= a; ^= ^= a; ^= 7) i* !! i* e. e. c. e. w' e. c. {% c. c. c. g. g. q# '' g. g. :k./> k. ]i.Nk.Ai.2f.uh.Ok.Ai.-j.Ai.Ve.Ai.-j.Qh.Ai.+k.mj.$z Sg.Lh.nH wS Sg.+k.Mh.Mh.wS p$ wS Pk.m$ e@ Pk.b@ p$ nH #& h@ x; d@ m$ e@ Sg.h@ p$ =* =* p@ ,h.o$ 0@ c@ ,* >* p@ =* m$ d@ i@ +& z= >* u$ $i.j@ i@ =* F9 l@ j@ f@ f@ -& -& p@ j@ W* F9 m@ o@ t$ -& m@ -& F9 t$ s$ m@ x$ -& t$ s$ W* ^* l@ ~> o@ -& ~> O- m@ s@ Y* t@ 4,.Qk.N].`(.=>.e@.{<.p{.1- U[.R:.F3.[7.>* 3@ 1@ .& Rk.(; GY FZ 8@ L- _{.8@ 4@ 2@ 9@ y] 3}.84.)..IY pN ]/ Sk.Tk.Ek.Uk.Vk.MC X+.4G l+._d p@.=F /F 4$.< .t:.7f $n k..8E _N YN sf tN n+.[R $c yh Wk.~=.-d wd :f =d nc nc $e Zs _f ve gc Bf vd 0b Xk.(a.4b.Yk.Zk.Ad.Bd.`k. l.}8.-7.c7.N6.hg.-7.N6.`] i3 94 G% /$ O+ E% pM n}.O+ S+ a> vC S+ R+ Y+ F% Z+ P+ E% vC $:..0..l.0<.n}.~}.n}.v_./] ^# o c h 0 e a c e $# o ", +"z~ z~ |1 $8.*) e^ )~ 9| |1 <{ 9| <{ 9| *) 9| 9| <{ *) <{ 9| 9| <{ <{ <{ 2^ <{ I/.J$ 2^ 2^ jP 8S 9| 9| ;b I/ I/ R@ 2^ 0' 0' I/ G= #S 0' J$ I/ 0' K$ 1) + + Z, 5_ # # + # # . k) + ]& . + + . $ # $= # . # $= $ !, % $= S$ [* V@ > U@ . . & U@ U@ S$ (& > S$ ]& & P$ ; & N$ N$ ; - N$ U@ N$ S$ , 4 .# R$ | 2 Z! U$ X@ J) ~ ; ~ ; W@ P$ ; ~ { ; { d [ ## { 2 7- { %# 2 9 ( { /& $# J= Y> d d 3* J= 0 Y> d 3* a 6 D, i ,# 6 3] 3* ,# 0 k g } 0 K/ e D, ~# !# 6! 6! z: n z: n ~# s> n Y$ Y0.-) l 2, p 2, n n m b' 4* ),.b' b' 4* b' +l.m `$ b' /# {& 1Z #] {& t ^# D 2; z E /U B F= F= F= /U '&.'&.a7 a7 '&.a7 N X8.a7 O@ A G 8* JW A V JW c- V c- c- .@. V >z .@.QT Q L QT 3; d{ SO *I L *I Q BX ^P oY *I XX #N )Q ^P 3d ^P )Q )Q ^P ^P ^P @N @N 7s tw 6B mL $N $N mL $N $N $N AS UO HQ :M hT $N hT aS ST sM MP %T sM K @A x4 2h hs x4 IF B0 LE ;1 Re Re }e B0 Re F3 +: 13 +: F3 13 }e }e 13 13 13 13 D4 .8 C0 :4 =/ S{ -k :9 8^ 6^ I! 8^ 6^ 6^ 9; t/ 6^ =/ 7) ^= f' 7) 6. ^= a; !! ^= a; ^= U' V' h* d. 2j.d. d. d. e. e. d. d. e. c. '' '' q# q# d. e. q# e& 3j.r# ck.xk.p@ -j.xk.ck.Ai.-j.Ai.+k.2f.Ai.zi.Ai.Ai.sg.mj.Sg.wS nH Sg.Pk.qg.Lh.Mh.Mh.Lh.Mh.Sg.#i.b@ i@ m$ v7.m$ =* d@ ,W :; ,* X* '* d@ p@ i@ sg.Y% #i.e@ b@ d@ i@ '* g@ e@ X* y; '* p$ i@ j@ l@ -& t$ f@ b. A= )* && *& t$ t$ j@ W* f@ W* t$ && j- l@ t$ E9 ~* F9 j- t$ t$ o@ <. <. -& t$ y; -& -& E7 u@ 3. F9 q@ 8j.(. t@ P:.m{. _.X<.9= W# B2.@l.2!.i$ :1.wg.5,.$5.99.i|.B2.#l.$l.a@ 0@ =* o$ l$ ** 9@ &6.2@ 4'.+=.C*.g+.kR SR %l.&l.1k.*l.=l.-l.SZ SZ .s l+.:d *f l@./F < .o%.>c >c k..o+.Ac _N S..YN ED .$..$.$c 3$.-d zh -d =d =d =d *e nc Zs pc ue l.k).,l.}f._~.*0.j6.Cd.w~ >7.w~ h3 A% C+ ]7 a> Q+ /$ {- {- {- P+ L+ T+ T+ /- /- S+ P+ T+ Q+ vC vC .N 7<.O+ 7<.pM .N ,7.9h.l* D _# c [& tA ~# 6 b V$ b c ", +"|1 *[ 9i.*) xi.9i.z~ ah.2! |1 )~ 2! 2! w9.9| 9| 9| *) <{ 9| J$ 9| J$ ;b J$ J$ l) ;b R@ 2^ 9| <{ ;b 9| 2^ L$ p9 BN <{ 0' I/ ]& L$ .( I/ I/ I/ ]& 0' I/ + Z, L$ 5_ + $ * L$ 1) . + # o! . . . ' S$ + > V@ ]& + V@ = $ V@ $ [* . ]& - $= & V@ + = - ] Q$ Q$ |* T@ . & | U@ U$ | U$ > Q$ | 2 P$ | b{ H= H= ) { xS 2 `@ U$ H= | - Q$ | { Z! /& ( { X@ [ 4 4 ( [ *# | ~ $# 2 { J) 4 } ( 7 ( 9 ,# 5 &# ## V) J] 8- 5 ,# ( 7 3] 6 7 7 6 0 a 6 ,# q> W$ ,# 6! K/ 6! ,# 6 a 0- 0 ~# K/ 0- ~# S^ 2, r s> ,> n r % m '> #| r yi.b' q ^# r m w 4* /# 2; /# w C 2; G )> w F= z F= F= z B a7 /# z a7 F= z '&.z I $T 8* n! 1& 1& c- c- JW $T /U V >z V V T^ 0S z ..@.d{ 0S B..aV 3& E$ aV L &{ oY A: qF 3d qF (U c~.#N 3d #N pF #N ^P #N ^P ^P #N ^P )Q # .lP @N mL EN $N 6B $N :M :M mL $N AS -I aS cV :M HQ J lI 2..eQ DS DS HN iT dK =S kT -R {Q RL Yz Zz Yz Yz |C Zz 'I 7J tG oL >b ~9 >b 1M qI jy >b vG jy jy >K ;1 x4 r/ Qe 2h 2h Se 2h Iw y4 y4 Re Re F3 +: +: W^ 13 F3 F3 F3 +: F3 F3 A} _| .8 Mc D4 .0 'l.:4 t/ '! I! 6^ I! '! , )l.t/ l~ M5 9; ]= g' 1{ a; ^= ^= 6. ^= ]= {> !l.i* 9. g' Y~ 2j.e. d. e. d. e. e. d. e. ~l.,' ,' d& '' e. g. m* g. {l.ck.&h.]l.-j.Ij.@i.2f.=j.Ai.+k.2f.-j.A= -j.;j.dk.dk.Qh.wS Qh.Ti.Pk.+k.^l.Mh.Sg.d@ =* Mh.,* sg.>* m$ m$ =* d@ e@ d@ e@ d@ 0@ >* e@ ,* p$ wS f@ A= #& /l.i@ m$ d@ e@ =* '* sg.t$ j- t$ -& ,W A= F9 o@ ~* &p l@ ~* F9 h@ '* f@ l@ o@ h# a. ~* -& -& ~> m@ ~* F9 r$ r$ ~> o@ s@ {* u@ l@ p2 l@ b& `* v0 o@ s@ h# =& 2. (. (l._^.C2.^; _l.:l. $ $ . > - . ; . $= U@ - - $= Q$ U$ > S$ U$ U@ & 2 ! R$ o! R$ ] 2 2 ) ~ Z! 1 ( N$ $ ~ { ~ ~ 1 Z! 5 W@ { X@ $# { { 6 6 => 9 5 4 == } $# `@.d } d 6- q> x0 J] 7 7 k ( } tA a ,# c6 0 ,# i tA 7 {# L= e b 6! {# K/ 0 !# tA 0 c |& -) ~# s> o/ Y$ }& n^ Y$ c L= 0- ,> 2, 1; m b' `$ ^# 1; 4* /# p! 4* q p G u {& xE w8.z F= F B :# G z a7 #] F= F= z F= z z n! F= N@ AR a7 JW 8* T^ c- KW 8$.JW c- c- 3# AR _+.O :}.PT V .@.d{ iU L aV *I aV SO *I oY 3d G$ *I qF #N 3d #N _M ^P `I #N ^P ^P ^P lP RT -X ^P @N 6B mL $N $N $N -I mL 6B UO BS {z {z HQ :M HQ FN J FN aS dS _U ~Q &S ~Q ~Q 8R dy dK [M dy oL |C Zz dy |C ]Q 9o Zz dy ]z jy jy vG jy >b ~9 jy jy jy Ab 2h 2h ;1 =H k.x4 ;1 2h ;1 B0 2h Iw Re 13 F3 F3 13 Uv on }e 13 13 13 A} 2~ (9 (9 C0 2~ s/ 6^ u/ .k.I! S{ '! I! '! I! , 0, g# I! l~ f' g' f' U' a; a; g' g' 1{ 1{ a; 0. V' !! Y~ d. d. 9. d. o# d. d. d. d. e. e. e. {l.bk.d. '' g. ,' '' m* e& g. dk.A= =j.{l.bl.A= ,W Ai.Ai.sg.A= Ai.=j.cl.+k.Sg.dl.Mh.;j.+k.%& Mh.d@ wS '* j@ wS p$ x; b@ ,W `e.=* && p$ 0@ && A= g@ d@ =* p$ =* :; l@ f@ >* d@ j@ sg.,* d@ ek.>* j@ l@ xi l@ ~* =* f@ >* j@ A= $i.~* j@ p@ *& r$ && l@ m@ a. l@ o@ `* N- l@ ^* u@ R= s@ -& m@ =& l@ o@ F9 F9 E7 -& -& -& u@ ~. ;& x$ t@ h# 32.`(.C2.C2.el.fl.gl.hl.a@ 89.l~.x= #k.&* 83.m$ )* 79.$z :; +& )* 6@ 9@ 7@ K- il.<2.jl.r-.['.!.._S UQ kl.2k.4l.1k.ll. y o@.P}.KB ;r tu p@.lA ~#.~#.< .k..k..Ac Ac _N _N _N _N Bz n+.[R [R [R $c #H -d -d =d yd {l nc *e we =e =e vd [f Ff |b wd dc 4b.3b.vt h4.ml.*c.nl.@h.ol.^6.Bj.pl.hg.`U B- A+ A+ D+ Q+ O+ Ej.~}.~}.o}.R+ L+ Q& O+ Q& 7H Q& L+ Kb a> P+ L+ n}.K6.!c.0<.b[.^l (i O@ n h _# 2, h 0 e 8 a } c ", +"vh.ql.z~ *[ vh.xi.rl.)~ $8.sl.9| 9| 9| 9| 9| *) w9.<{ 9| <{ J$ <{ R@ <{ <{ <{ 9| <{ .( R@ BN J$ I/.l) BN ]^ 2^ I/.;b 2^ L$ 0' G= ]^ I/ 0' [n R@ 0' 5_ 0' 5_ 0' 0' + # # + L$ % + + + # # # Q$ V@ # ]& + [* > = # 1) ' = - $= + $ |* & N$ [* |* U@ > & R$ . ' N$ $= P$ %= ] & S$ > . > ; - | *X %= T- | X@ U$ | /& ~ 2 N$ X@ ^& ~ N$ N$ ) ;# ## [ 2 I= <& 5 ~ / /& N' <& $# 5 } d /& $# 7- 2 X@ 5 [ Y> d $# Y@ ,# ># 6 3] $# e ,# ,# /& 0 D, a 6 a 6 0 q> 6! !# [& {# a 0 0 0- L= ~# |& h K/ Y$ |& r r n^ ,> r 2, r p tl.xE % r p q m ]c b' t w /# 4* t C :# Z$ 1; {& F= B a7 % D a7 a7 a7 z a7 '&.a7 K a7 a7 z I 1& AR c- M JW V M O@ c- M V V V KW AX z .p=. V .@.L :#.QT E$ L SO Q L A: BX 3d qF (U yS 3d RT ^P )Q )Q ^P ^P ^P ^P lP lP @N lP lP $N 6B $N mL mL $N 7s mL mL :M J Ou HQ mL CX _U J FN cQ iT .J dK HN QL ~Q Wz dy Yz 8R |C dy Yz dy Zz |h dy Yz |C Bw nI tH vG jy ~9 jy vG tH vG ul.>K x4 hs ;1 Ab x4 r/ ;1 Li ;1 6h Jc k.Se W^ +: B0 +: F3 +: +: W^ +: F3 F3 F3 F3 S{ b* _4 _| S/ F0 (c 6^ D4 J4 I! I! I! I! 0, f' h{ I! 0, f' {> k# a; 6. g' 1{ 1{ a; a; 0. d. a; ^= Y~ d. e. d. d. e. 9. e. d. d. 2j.k* m# g. g. d. g. q# vl.bk.wl.{l.wk.=j.Ok.'' bl.zi.-j.-j.-j.,W -j.mj.A= Qh.#& >* Mh.Sg.Sg.+k.^l.Mh.wS Sg.+k.'* i@ %& e@ #& xl.=* r$ i@ ,* >* =* l@ y; &p d@ d@ b. h@ h@ A= A= A= g@ i@ =* d@ u$ F9 j@ j@ n@ $i.m@ &p && n@ m@ j@ t$ l@ p@ '* o@ u@ Y* -& {* u$ N- ~* l@ s@ a& t$ o@ u$ u$ o@ F9 f* ^* j@ ~* s@ s@ m@ 2. a. v@ ,% ~* =& q@ {= 39.d+.94.H3.il.Gf.{).`% 3}.2@ l$ 6@ P].wg.#* c@ 7@ *& S1.k$ &6.z= 9@ i$ |- v!.]].9@ 4@ `,.r-.[$.5W yl.zl.2k.5l.Al.Bl.IU o@.KB .s ]#.p@.p@.lA @$.< .,o ,o !%.Ac >c YN hE YN S..S..;c n+.e*.yh yh $c -d =d =d =d :f & > . $ & ; ] }* k) U@ & =' | ) ~ | ~ ] ~ N$ | *# I= R$ ~ N$ U@ ( ~ ( { 2 { /& { *# J) } { { ( 6 ( } { 1 } d 6- J] &# a' 6- D, 7 i M' 1 } } Y> 3* k a ~# k e ~# ># ~# k a !# 0 ~# {# 6! 0 {# K/ L= ~# n n Y$ 2, c ;= n^ x9.s> c{ r Y$ Y$ p n^ 2, x9.t b' D n^ 4* D m /# 5* ^# t F= w s> F= 2; {& F= G ^# a7 z a7 G /U z K 1& ).'&.#] K JW AR O@ O@ a7 Z .@.M c- Q@ H$ Z c- 1& V d{ z .c- y .Q QT 0S L A: *I A: L Q oY .Z Vf iU p*.yS )Q #N ^P #N ^P #N ^P ^P ^P _M EN lP bV lP 6B mL mL mL $N TO mL $N :M :M Ou Ou -I $N FN FN Jl.:M BS EA QL Wz sM ~Q Wz :C Yz =R RL dy Zz Zz dy Yz Yz |C Yz Zz /Q 'I jy jy ~9 ~9 jy ~9 KE tH >K =H hs |3 Qe Ab r/ 2h B0 ;1 x4 B0 hs Se B0 Se Re F3 13 +: F3 F3 A} F3 +: mg 13 S{ Kl..8 g{ +0 'l.I! , I! 8^ '! , P= '! 0, g# 0, I! 6^ s^ ^= ;% a; 6. ]= 1{ {> a; 8. ^= Y- @~ a; {> 9. 9. e. c. 9. e. e. e. e. c. Ll.m# Ml.~l.Nl.q# g. e& k* k. k. e& Ok.-j.Ok.Ol.=j.mj.Ai.Ok.&& A= 9f.Ti.&& dk.&& Ti.i@ dh.sg.wS d@ wS i@ Pl.hi.h@ p$ hi.wS #i. & p$ i@ A= d@ p$ && h@ sg.sg.=* j@ i@ h@ X* d@ j@ xi X* i@ i@ d@ ~> ~* )* i@ u$ l@ A= m@ ~* u$ t$ R= :; l@ m@ t$ t$ l@ $i.l@ o@ m@ u$ 8j.~* t$ j- <. r$ d* p@ o@ o@ o@ F9 ~> s@ ~> {* Ql.o@ h# o@ 1. h# (. {= ]l.E* hb.w; Ze.Rl.Cc.Q9 5@ -* 0@ ,* ** 9@ G3._; i@ 0q #* 8@ 6@ e@ f@ Nj.n/./].e]./]._].`,.p$.XV 4T Sl.Tl.Ul.Vl.*l.Wl.tf ;r o@.tf m@.l+.]@.^@.~#.lA ,o Ed Ac k..Ac _N _N _N YN sf Bz n+.[R $c e*.yh -d =d =d =d *e nc *e mc ve {l Ad ,d c Hd mc Xl.Za.4b.&x Z{.D!.Eb.)i.El._~.*0.G|.j6.() X5.~}.B% {k.C+ D+ S& Q& Q& B[.^l O+ n}.C- Yl.Q& L* Zl.`l.cM n}..N ]7.4<.t_.gE 6b.{}.g0. m.r q h r c g ,# [& 7 6 c ,# ", +"9i.vh.9i.z~ |1 xi.|1 e^ ^, xi.*) <{ <{ *) 9| 9| *) 9| w9.9| jP 2^ 2^ J$ 9| <{ 2^ <{ J$ r4.J$ I/ .( <{ .( L$ 2^ BN I/ I/ ], BN p9 L$ G= 0' 0' L$ 0' 0' 0' $ # Z, 0' 0' # # + L$ + = + + % V@ ' # # V@ & . $= V@ . S$ > [* > + = = $ U@ U@ . > S$ > > T@ A; = $ & - o! > ] ' S$ U@ %= X@ %= ~ Z! H= Z3 Z! X@ ~ ~ ) [ ; { F:.X@ ~ P$ ] W@ N$ ) ) { ~ ) ( W@ X@ $# $# /& 8- b ( } ,# ( X@ { / J] 6 $# /& 5 a ,# ,# 6- a -> 6- k d 7 a k tA 7 ># M' 7 0 a a 0 z: 0 a k ~# K/ 0- C; a K/ 2, r |& n p h a' }& ;= 2, n m .m.V| m 1; 2, 4* s> 4* p s> p t 4* w {& n^ $S /# U*.F= F= #] t F= F F= '> '&.A z F= z a7 a7 1& $T w M c- M c- n! Z 8* JW c- c- V c- c- V M .@.O@ 3& L L d{ SO A: 3; A: iU qF 3d r! oY oY pF ^P )Q #N ^P #N )Q 3d #N #N qH @N .V qH 6B mL mL 7s 58 $N 6B $N mL $N {z Ou FN :M J J J cQ FN sM cQ b jy jy ky x4 x4 ;1 x4 ;1 2h y4 Re hs Re ;1 F3 Re B0 +: +: W^ w{ W^ +: F3 +: W^ F3 13 66 k~ F3 Lc =_ S{ I! '! _9 I! I! 6^ '! )l.6^ 0, 9; I! , 9; 6. n# f# ^= f# ^= ^= ^= ]= ^= a; ak.h* @~ d. 9. e. d. e. e. e. 9. d. d. m# +m.d. o# k* ,' ,' '' '' d& :k.]i.9f.-j.Ai.=j.Ai.A= ;j.+k.,W ,W +k.d@ Ai.,W Qh.Qh.sg.d@ d@ '* @m.>* =* d@ A= =* h@ A= p@ && i@ && t$ x; d@ d@ i@ A= e@ d@ && t$ u@ j@ f@ >* u$ e@ l@ b. ~* ~* k@ u$ u$ F9 /l.xi j@ ~* ek.i@ m@ _s l@ ~* s@ u$ l@ &p h@ u@ s@ -& a. j- m@ h# u@ [y ~* a. k> l@ q@ s@ M- l@ t$ s@ 3. 1. h# :. s@ h# 2. = x$ a& L+.3@ m$ m$ #m.v6.h@ &9.o$ l@ j@ &p 69.i$ $m.05.Y, i$ 8@ &6.k@ a@ 9@ 9@ @* 4'.X-.R:.Q&.Q&.TR CP Df.%m.&m.*m.=m..j.8#.>+.o@..s l+.$$.U@.lA lA lA lA >c o+.k..Ac Ac _N _N YN YN S..kH e*.[R e*.+l -d |r ub rc Zs :f _f mc kc pc ob Yb c `b Tb -m.su Cd {r W9.@j.Jk. i.;m.Z).C!.c7.N6.B% hg.P& bK B- C+ A+ `U E% pM pM pM ^l |f.]k.>m.K* N+ ,m.'m.)m.pM ;[.7<.C<.!m.*1.}|.o}.&g [c.`$ h g >> e 7 &# M' b 6 &# X$ ", +"9i.vh.ah.*[ 2! xi.&[ e^ *[ *) 9| |1 <{ 9| 9| 9| 9| 9| *) *) 9| $8.V! I/.<{ I/.<{ <{ R@ ;b J$ G= R@ <{ R@ 9| 9| ]^ R@ I/ L$ G= p9 jP G= 0' 0' L$ I/ 0' 0' 0' + + I/ 5_ + # + $ V@ # = = # 1) 2) ' > !, [* =' > = ' H= o! ' $= Q$ . Q$ & |* > $= S$ > S$ Q$ 05 & * ; . ; R$ %= P$ H= X@ %= ; ~ N$ N$ & . ) . & ~ ] U@ T@ U$ /& Z! 2 |, N$ U$ | { | %= 2 | | ## 2 { $# { 4 $# 2 2 } { ( | | 2 /& [{ 6 i $# Y> c6 6 ,# $# ># 7 V) 3] 6 :& c6 V$ 0 k i ~# 0 ,# a ~# 6! [& n ,# ~# n n Y$ 6! 0 h W$ 0 `$ h ~# p n Y$ p `$ ,> K/.4* ;= m /# 4* t b' 4* /# 4* 4* w F #] % w /# ^# F= F= /U F= F= a7 p F= /U a7 w a7 z z z A AR 8$.M c- V c- c- 8$.1& 8* V c- c- .@. V c- z .3# A: SO AX V SO A: A: A: SO aV #N 3d oY WX ^P ^P #N ^P ^P )Q 3d #N ^P #N #N @N _M `I @N mL 6B 6B mL mL 6B $N AS 6B J J {z HQ J FN sH FN J Wz FN &N Wz ~Q nO HN oO Yz dK *H Yz Yz Yz Yz dy Yz 9o eK 7J eK |M eB ~9 ~9 jy vG jy jy jy `9 A5 r/ x4 ;1 2h 2h x4 Jc Ab =2 B0 Re +: B0 W^ +: F3 +: +: +: W^ W^ w{ +: +: 2~ _| 5^ I! A] =_ 6^ , '! I! I! '! I! 6^ I! l~ g# h{ 0, f' f# n# n# g' k# ^= ^= 6. 6. a; ^= 0; i* ^= p# d. e. d. d. 9. c. 9. 9. k* m# 9. ,' ~l.{l.,' g. '' g. w' ]i.:k.=j.-j.Ai.Ml.dk.xi && -j.zi.fk.+k.xi ;j.Ok.~* f@ Pk.wS Sg.nj.#& h@ =* =* ~m.p@ Pk.-& b@ xi && A= l@ j@ A= j@ )* +k.t$ -O && A= h@ e@ :; h@ ~* ~* :; f@ u$ W* N- >* && $i.>* ~* t$ ~* j@ t$ m@ o@ j@ l@ t$ j@ u$ i@ u$ u@ -& h# <. -& ~> k> h# >& u@ o@ h# x$ t@ 9& {* d* u@ 3. 1. u@ s@ |. t@ u@ *% s@ q@ q@ b) 86.i@ i@ {m.]m.h@ '. -& x$ E9 :. p@ X% -|.C2.** ^; l$ _{.^m._].9@ |@ a@ 3@ Q&.[&.'` VV i; VV /m.3l.(m._m.:m.P..VW tf KB VW m@.(@.p@.]@.lA lA ~#.< .>c k..k..k.._N _N YN S..S..ED [R e*.[R yh +l nc =d =d wd te $e {l /w kc vd [f gc `b 5b 'e su o F! W$ o 7 ,# k }{ o g ", +"z~ ah.ah.z~ *[ 2! vh.*) *) <{ 9| xi.<{ 9| 9| 9| <{ <{ 9| 2! ^, 2! J$ ], ]^ <{ <{ J$ J$ jP <{ 2^ J$ J$ R@ J$ L$ G= R@ 0' I/ L$ I/ 0' I/ I/ 0' 0' L$ [n K$ 0' = # # = 0' # # $ M$ # J$ Z, k) T@ Ez 2) . * [* & . $= . 0' . - . $ ^& $ $ # - %= U@ & . - Q$ ; U$ & Q$ > R$ H= N$ N$ . Q$ ; ; U@ %= P$ U@ & | ^ ' %= ] N$ 2 { ) N$ { [ ] U@ U$ ( 2 { [ 7- 7- ( d *# 5 } 2 ( Y@ } /& ## 6 J) $# ~ 2 d m*.d 3* $# 4 Y> a 6 6 ,# a 8m.a a a 9 ,# {# 0 a tA } a' a tA ~# ,# ,# 8 c n ~# 0 ~# s> !# {# h r a n V| 2, ,> p `$ 2, p V| 4* 4* 1; 4* y 2; t :# ;) w F w /# ^# ^# 4* :# 2; F= {& z c- c- c- M V .@.5 .A: SO :#.Q A: *I A: *I d{ Q G$ Vf j#.oY |3.3d #N 3d ^P 3d #N )Q #N ^P DN @N @N lL #N mL mL mL mL mL mL $N AS 6B {z J J J J J Ou FN J ,I .J J @J dK DS Wz cy Yz dK [M Yz Yz Yz Zz |h Zz *H Zz $J eK &i Br 82 ~9 >b jy ~9 vG vG jy ~9 ff x4 x4 2h ;1 ;1 L] ^5 x4 =2 r/ =2 B0 =2 W^ w{ W^ W^ +: F3 W^ +: F3 +: F3 5^ 9m.Md _9 S{ I! g{ S{ , I! , I! '! I! I! ., f' l~ 6) h{ @~ g' {> U' 8. 7. ~= 7. k# 6. 0; Y~ 0m.p# d. m# 9. 9. m# 9. 9. d. am.d. o# ,' d& Ml.'' g. '' fk.*9.ck.ck.]l.A= Ok.d. -j.bm.A= i@ ,W ,W Ok.&& A= sg.sg.Qh.sg.&& #& Pk.Sg.&& '* i@ sg.d@ d@ ,W hi.k@ sg.&& X* && )* u$ p@ sg.f@ A= '* u$ u$ i@ ,W +& )* j- -& l@ xi u$ u$ :; p$ A= -& ~* j@ F9 -& F9 r$ u@ b. s$ ~* j@ ~* ,j.l@ t@ Z* ~* -& m@ :. m@ s@ ~* q@ (. 9& q@ q@ m@ s@ (. o@ o@ s@ ;& 3. h# q@ 5& *% h# >& ^. o8 R[.'* Mf.cm.dm.'* :. 8f.)* i@ {* ~> H3.a@ a@ &* 62.Z% em.:' P).V^.<: |@ :(.p[.w(.E'.m&.)j.FZ fm.Ul.(m.gm.=l.=F m@.>+.SZ hm.>+.$$.$$.Tn hz lA < .< .,o Ed k..Ac Ac Ac _N _N S..kH [R [R $c yh #H oc oc =d =d X@.ue mc ,e we >d Ff Yb Ff {M im.SX 4b.`W jm.km.lm.`k.n8._~.0!.mm./6.j6.B+ A+ w~ C- A+ G+ tk.Ej.O+ g1.{- Q& nm.Q4.Q& vC 6i..N om.B[.mg.pm.qm.qv Ro w$.rm./- cO N 2, 1, p 8 a g 7 b 7 7 o [{ ", +"z~ 9i.Il.&[ *[ z~ xi.*) z~ *) 98.xi.9| <{ *) *) 9| 9| w9.9| 9| <{ <{ 2^ R@ l) <{ 9| J$ I/.I/.l) R@ R@ <{ R@ R@ BN BN ;b I/ 0' R@ 0' L$ I/ I/ L$ J$ 1) + 0' 0' # ]& 0' 0' # `Y = L$ R@ * * . {c [* > . 2) k) $ 5_ > - + . S$ T@ [* > > Q$ . S$ > |* ' > ; U@ . S$ P$ $ S$ R$ Z! %= ' ; Q$ & | $= %= U$ ' X@ | | R$ X@ ] H= & 2 2 ; Z! U@ N$ Z! ) ( 2 ~ ~ 2 5 < 5 2 5 1 /& 1 $# } < ## I= 4 ,# ~ 4 D, ,# -> 7 / <& ,# 6 *# -# ,# 5 } /& ( 7 ,# 7 0 {# 6 {# 6 9 9 5 ,# i 6 !# W$ !# E, Q{ n y2 0- K/ s> -) ]# K/ 2, 2, 2, 0- ,> 1; K/ p h r 4* 4* 4* ^# 4* @= :# w F= /U C 4* t w w :# D C w a7 /# AR z '&.1& z z '&.F= $T Z sm.T^ c- V c- M >z H$ V c- 8$. V V V c- 0S QT Q L Q -$.A: SO A: SO A: t> MW #N MW (U yS #N ^P 3d ^P #N ^P ^P ^P #N 'Q 'Q qH bV !Q @N 7s 7s 6B 6B 6B $N hT 6B mL mL HQ J $N $N HK FN FN lI eQ b ~9 vG ky `9 r/ r/ ;1 KE ff |3 r/ f[ ^5 x4 =2 ;1 Se ~] w{ W^ =2 +: +: w{ W^ +: ^^ W^ *_ q^ I9 66 t9 :5 u/ %] M] '! , P= e# , X^ I! R: ;% 0, I! 6^ ;% g' f' k# k# 9; 6. 6. 6. ^= 7. i- )% 6. p# 9. m# m# d. 9. 9. m# am.k* d. d. '' Pl.~l.,' bm.,' wl.g. bm.wk.bm.=j.:k.+k.A= ck.-j.,j.Ok.Ok.sg.i@ A= d@ /l.2f.A= '* u$ j@ && d@ A= sg.Qh.d@ wS %& wm.A= i@ X* ek.f@ ~* %& a. u$ i@ i@ ,W i@ l@ -& X* u$ #& {* h@ i@ u$ l@ :; $i.j@ l@ >* && N- -& 0& u$ t$ o@ ~* -& n@ o@ j@ /i.o@ s@ s@ m@ ~* ~> h# _. s@ {* {* u@ t@ x$ ~* -& Q- s@ <. :. 5& _. |. o@ h# u@ {. >& q@ j- xm. & ym.zm.Am.y6.,d.`f.5@ /e.)* A= C2.a@ $6.Bm.Cm.Y<.,).:'.Q&.O+.:+ a@ y6.]<.S<.Dm.=Y K..J> Em.4l.Fm.Gm.Hm.$$.aK y<.VW (y p@.p@.Tn dv /F lA Im.,o < .7f Ac k..Ac _N _N S..S..ti [R [R $c $c yh kH Bz >e =d mc Zs we lc + V@ # S$ $ & $ U@ | . ' S$ U@ P$ & - Z! Q$ %= U$ ~ U@ R$ ; X@ R$ ] ; ~ 4 { b{ 2 H= N$ %= ~ X@ | ( ## N$ / | { 1 x0 *# 2 Y@ { I= 1 ( { [ X@ X@ V~ &# ( d 4 ( J] 6- 3* a 6 b N' ,# V) ,# B; [{ $# 0 &# a k 6 d a' 7 e q> 0 e !# k 7 L= h n h |& h ~# ~# &].p |& |& }& ~# Y$ p! 1; n^ 2, `$ #| D #| 1; /# oE w t t t F= :# $S $S F= b' G D F= G a7 F= F= G z a7 z ~& z z H$ T^ T^ V c- 3# V .@..@.O SO V y .Oz Q J 3& SO r! o^ jI D$ BX (U ^P ^P #N #N #N #N 3d ^P 3d #N ^P -X _M _M E^ 6B 6B 6B mL 7s AS $N $N $N 6B Ou {z {z {z J PL {z {z PL dK lI NP #J eQ *S dK |h {C Xz A0 Yz A0 dy dy Zz *H dy Yz :C ]Q ~5 ef ~9 vG vG >b >b Y6 >b =H x4 x4 ^5 A5 << r/ x4 ;1 x4 f[ hs w{ ~] =2 W^ w{ ]4 +: F3 F3 Md ]4 W^ 3~ w{ 5^ I9 *_ , '! I! 6^ '! '! '! j# I! , '! e# 0, l~ Tm.6^ 4. 7. f' f' f' 7) 7. ^= 6. 7. ^= Um.F9 a; i- 9. 9. 9. e. 9. d. 9. Ll.p# d. d. '' $i.Vm.,' bm.bm.bk.wl.Pl.c& Ol.Ol.ck.Ol.-j.Pl.A= +k.&& A= Qh.j@ j@ i@ u$ ,W p@ +k.u$ n@ j@ && Sg.d@ F9 j@ i@ && u$ h@ ~* $i.b. -& p@ :; i@ o@ l@ r$ F9 j@ l@ o@ && k@ :; F9 ,j.i@ :; xi l@ l@ ~* W* l@ :; t$ ~> && u$ :; t$ t$ {* l@ (. ^* k> E7 s$ {* q@ k> u@ -& q@ d* <. w$ *% d* (. :. {= <. q@ /* ~> s@ h# =% h# t@ ^. t@ s@ {. {. Wm.E3.(' Xm.Ym.7% i! }^ g>. ) V# 05.m$ (; 2@ ** X(.f].p{.[&.u!.m&.:'.4'.W7.^i d+.Zm.5c.`m. n..n.+n.@n.@n.#n.tu >+.>+..s %x c#.p@./F =F Tn l@.4$.>c < .7f Ac o+.Ac Ac _N YN sf Bz 8L [R %c yh yh -d )d nc =d *e ve +c lc = . E! $ $ . $ V@ . P$ U@ > ' ; ] . ' %= ' Q$ P$ Q$ & 05 | S$ X@ %= R$ > & ; - > 2 %= ] ~ ~ ~ ~ N$ [ { | ) *# 2 ~ { ~ d 2 ( ## 2 1 X@ [ [ Y@ N$ W@ ~ 2 Y@ 1 5 /& ## 6 ,# } >n.( ,# d } ,# [{ a 6 $# i ,# 8 ~# e ,# ,# ># i 2* L= d [& 3] a' E, c |& L= ~# n Y$ n L= o 0- K] c{ h V| v % L= _# p Y$ ^# 1; o/ 1Z t t 1Z 4* :# ^# ^# t 2; F= F= ^# B 2; {& F= W) a7 a7 2; F= A$.a7 a7 z /U $T 8* n! O@ z T^ 8* 8* c- V c- c- T^ V c- M 8* M V d{ 0S y .AX A: 3# E$ 0S r! MW qF BX BX (U 3d ^P #N 3d #N #N 3d )Q ^P #N #N qH 3d pF `I 6B 58 7s 6B 6B 6B mL 6B 6B 6B rH {z FN J {z {z J FN sM dK sM dK QL HK NP dK |h Yz dK *H Yz |h A0 |h dy |h :C Yz Bw Yz 7J gg >b ~9 ~9 1h `9 82 >b ^5 J: J: J: ky f[ r/ r/ ^5 J: f[ f[ f[ B0 Re Re +: +: +: W^ +: +: W^ w{ W^ Re (9 'b Q< E4 , '! '! , I! P= 0, '! '! P= e# I! '! '! I! a& 8. n# f' f' k# 6. ^= a; 6. ^= 4. R= >% l# 9. 9. m# d. m# c& d. m# d. 9. d. d. c& $i.,n.'n.Pl.Ml.bm.&p &p wk.,W && Ol./l.bm.,W u$ i> ,W @m.t$ xi >* /l.+k.#& ,W ,W sg.&p ,W :; j@ xi zk.h@ =* '* )* l@ $i.l@ :; /l.j@ t$ t$ i> )n.$i.+k.u$ l@ ek.&& u$ ~* :; m@ ~* ~* j- Y* i> o@ t$ ~* t$ j@ ~* b& -& l@ m@ u@ q@ ^* -& [y h# o@ m@ {* u@ 3. ~* s@ {* {* m@ q@ {= v@ t@ h# t@ p2 ~> o@ h# ~> :. v@ v@ w$ {* ;& k> ^. !n.~n.83.S1.{n.]n.P_.}7.*4.]/.^n.T1./n.,h._+ 94.S` _.a=.k` FZ #{ J@.(n.p% h@.rQ ./ Hc._n.:n.Fm.gm. . ]& . S$ Q$ $ }* > ' . . = . . > S$ > U@ $ & & > U$ $ ; |* & Q$ Q$ H= P$ *' | & S$ > . . ~ U$ S$ Z! ~ | N$ 2 ] ~ | | N$ N$ | 2 Z! 2 | ( 4 X@ ~ { 2 } *# 2 ( N' ) d ( 1 V~ $# &# *# ) 6 fn.[ ># ,# d 7 6 Y> ,# ,# 3] e 6 a 0 ~# ]c a ># k a 0 L= 6! 6 !# {# o L= gn.n h y2 h p n n W$ L= p r Y$ ,> e<.2, p 1; V| Y$ b' K/. % u 4* $] ;) 2; w m t :# w {& {& E #] #] w z W) z z z a7 G z '&.I z 1& n! z 1& JW 8* I I O@ c- .@.c- c- |# I{. V c- 3# 3# 3; a- Q E$ 3# Q L *I *I r! #N _#.oY G$ ^P 'Q 3d tw U^ #N 3d #N #N 3d DN E^ 7s _M @N 6B 7s @N 7s 7s 6B 7s 6B mL mL J cQ J :M J J J J PL #J FN eQ lI QL HN @J |h >I FE A0 |h dy Bw ]z |h RL dy Zz dy RL ~9 >b SL eB ~9 {9 >b vG ef x4 1( x4 r/ 0/ f[ ;1 ^5 0/ r/ f[ Jc Jc B0 =2 +: 13 w{ 5] w{ w{ w{ B0 +: 13 +: Eb k~ Q< ~= ~= '! P= 5) , '! P= P= I! 0, l~ j# 0, I! g# 8. f# 9; ^= 7. 6. 8. ^= 6. 6. ^= )% d. 8. ~% 9. ~% -& m# 9. b. e. Ll._s 9. 9. c& m@ bm.~m.hn.$i./l.u$ ~l.u$ Pl.Ol.>% j- >% Ok.&p -& in.,W Ok.u$ ,W Ai.,W a. ~* j@ h@ && +k.in.Sg.>* i@ t$ >* p@ *& u$ Y* ,j.~* l@ -& u$ j@ u$ m@ !* l@ u@ o@ F9 i@ l@ b. s$ Y* j@ ~* j- h@ ~* ~* l@ {* ~* j- ~* h# o@ ~* b. k> -& q@ s@ -& s@ o@ h# m@ ~> s@ =& t@ q@ o@ u@ q@ s@ t@ w$ h# u@ u@ {= u@ ~. h# :. d# t@ v@ t@ {. ^. B@ >% jn.o$ (:.kn.ln.|!.u(. f.54.l@ i@ k@ $& il.m$ ]8._{.x,./].OX e~ mn.nn.on.O+.Zb.pn.o% qn.rn.3l.sn.tn.un.=F vn.p@.l+.l+.P..tu $$.S .hz /F Tn wn.fw ~#.Ed k..k..$n $n YN he }i Q@.Bz [R 5j 3$.$c ~=.-d =d wd wd wd nb wd ve ,e /w Bf >d Hd Q Fn.Sm.|_ :^ Gn.y4 Hn.%# L$ L$ = 7 !# j ~# V$ ~# j &# &# 7 < -# &# ", +"*[ *[ *[ ah.vh.*[ *[ 9i.ah.9| e^ )~ 9| $8.9| 9| *) 9| 9| 9| <{ <{ 9| <{ 9| R@ J$ <{ <{ J$ .( R@ <{ J$ R@ R@ J$ I/.G= I/ R@ p9 I/ ]^ ]& 0' 0' R@ 0' 0' 0' I/ 0' 0' Z, # = 0' + K$ K$ = # # # k) [* # $ . . $ T@ . $ S$ =' ]& . # . ]& $ ]& [* V@ - !, > & $ > $ $ U@ > o! U@ N$ U@ ; & P$ N$ H= ; ] N$ & ; Z! ; J) | Z! { T- | ] U@ & R$ ) ~ 2 { | ( ## In.7- ## ~ { 7- Y@ { X@ ( [ X@ [ ## ## ( } 2 d ># &# 6 ( ># V) Y> a ,# ,# j 6 } d a 6! ,# 3* 6! i a _c.># Y> ,# 0 A~ a 3] c c |& {# L= K] s> s> h 2, h L= 0- }& |& n p n^ 0- b' @= ,! p ^# n^ /# D ;{.D t n^ ^# m F= F= w :# D {& /U /U z z a7 F= z z a7 z '&.I AR #= c- n! K #= Z 8* $T O@ M M M M c- c- c- P@ Ri.>z 0S 3# 3& 1& 3& d{ L@ E$ d{ c- qF Vf qF 3d G$ #N `I ^P ^P ^P #N 3d 3d ^P !Q 0* ^P DN `I EN 6B `I @N @N 7s $N $N $N HQ {z Ou {z :M J Ou FN ]C bS 5o PL %i Xz cQ Wz @J Yz FE >I dy dy |h |h Yz Yz |h A0 A0 |h nI SL 82 Y6 >b 82 82 1h >b ~9 A5 J: x4 x4 r/ r/ r/ L] a: J: L] ^5 << =2 =2 +: +: &% 3~ W^ W^ 3~ w{ w{ W^ w{ 5^ k~ 7! ~= )l. , '! -% , P= '! , '! P= , g# 9; e# g# k# 7. k# ;% 8. 7. 8. 8. ^= 7. 7. i- b. ~% 8. b. 9. m# m# b. b. m# in.8j.m# c& ~* b. ~l.bm.@m.i> $i.Pl.bm.ck.bm.j@ ,W u$ in.$i.u$ u$ u$ && /l.$i.l@ m@ && /l.W* l@ && {* j@ && xi sg.f@ R= h@ ,j.,n.k@ ,W ,j.i> $i.:; f@ p@ in.:; r$ l@ && u$ $i.~* s$ l@ {* -& p@ j- -& l@ -& a. =& u@ m@ ~* m@ -& u@ ~* ~* ~* 3. [y v@ ~* {* j> u@ u@ 3. <. s@ w$ :. O- h# O- 0& 9& v@ O- t@ {* :. s@ a6 v@ d* :. ). (. '. ,& 5& := Jn.Kn.Ln.i&.`) Mn.Nn. ] o<.hk.%& (. W* b. ~* g@ |7.T1.8@ l$ _{.x^.l&.W^.<'.6W Oj.On.Pn.Qn.Rn.Rn.Sn.Tn.Un.]B ]@.]@.:d :d tu =F S .hz Tn $$.Tn Vn.lA lA < .,o >c iz $n YN YN YN ti ti [R 6:.+l T$.#H yh -d =d rc *e wd {l kc # ,# J] d 3 , 3* 7 q> tA 0 0 z: q> 0 3* J] a a ~# e ,# E, g A~ E, h z: h ]# K/ n r s> ]c }& x9.r o p r % 4* 4* t _# p! 2, b' 4* :# y 2, D /# {& F= ;{.{& 2; C {& F= z G z F= F= a7 z z C` I z JW 1& n! z 1& 1& c- a7 %> V V c- M c- M M z .=X M 8* |# A: >z E$ A: L@ d{ Z..3# Q qF *I WX T #N 3d 3d 3d ^P ^P `I #N ^P tw BE qH 7s lL E^ 6B -X 6B qH 6B mL mL $N $N ja ja {z FN J {z J bS {z ,I eQ lI Wz lI QL >I dy dy Wz |h |h A0 Yz |h |h |h dy dy |h 9o ]z 82 ~9 >b 82 ~9 >b >b ~9 jy J: r/ X) r/ ;1 u! x4 =2 0/ L] ^^ << w{ ^^ ^^ 3~ 3~ &% w{ W^ W^ w{ W^ w{ 3~ e' 5^ 5^ 9, , e* , M] g{ , , , P= P= e# j# a& g# 4. f' '% ;% ;% 7. ^= 7. 7. 6. 6. 6. 6. b. ~% '% )% 9. m# m# b. b. b. b. @o.in.m# in.~* bm.#o.fk.@m.$i.@m.$o.bm.Pl.@m./l.~* @m.$i.u$ n@ p@ dk.u$ l@ #& u$ ~* /l.A= n@ W* ,j.:; t$ j@ -& t$ cl.cK j@ j@ j@ t$ ~* *& >* b& j@ j- t$ F9 W* m@ b. S*.o@ -& t$ {* ~* F9 -& [y -& s@ o@ o@ u$ m@ o@ s$ ~* {* -& v@ O- -& v@ m@ {* ~> s@ s@ s@ :. <. (. w$ q@ x$ '. :. w$ u@ s@ -& ;& 1. 1. 4_ o) /. ~. t@ v@ &. ). b# '. ;. eb.y^ %o.&o.*o.=o.-o.;o.d= >o.V#.p[.y6.** %9.aa.** q$ 04 a@ `% ha W<.[&.o{.n$.n$..$ b+ #{ ,o.'o.)o.!o.(m.~o.{o.]B $$.$$.p@.l@.Tn *f ]B < .VJ 7f Ac Ac Ac Ac Ac }i tN kH 5j a#.[R $c y$.oc mc Zs ^f Yb Tb 0H 1b Be Wb 4b rb 3i ]o.hL ^o./o.WR +b PM (o._o.:o. 2o.(g.A] L) F@ 3o.4o.^ X! g~ R@ ]& ;b *) ]& |1 q, `, %{ +' e^ 3_ 6' *) &[ $# [& n m c } 7 8 X$ 5 < 6 ># ( ", +"z~ *[ 5o.z~ Il.vh.9i.2! ah.*) vh.)~ 2! 98.9| |1 *) 9| <{ 9| <{ 9| <{ 9| <{ J$ J$ l) <{ <{ ], R@ J$ *) ], R@ J$ ;b <{ 9| BN p9 0' R@ 0' k3 0' I/ I/ [n L$ L$ I/ 0' I/ X! # + 0' R@ # . # # # # . V@ T@ V@ # . V@ #^ = 2) =' . Z, > ; $ + . Q$ $ + # Z@ l!.& S$ . = ; > . . ; .# U@ ; ; ; X@ 2 ; ] | & S$ .# T- ] ^ > 2 Z@ %= { H= ] 2 ~ 5 N$ G9 N$ 2 | [ ~ 5 } ) N$ d 1 ( } } | 4 } } Y> Y@ Y@ ( 6 b d 9 6 6o.J] 6 { ( 3* 7- } ,# } 0 q> e {# 6! a k a' ~# ~# 0 K] L= W$ ~# a n |& n n p Y$ K/ n }& p p q p ,> r ^# ;= 1; m m ,^.s> ,> ^# q 1Z 2, % _# 6* F F= :# `$ w ^# ^# w a7 w z 5 .>z 3& o> L Q SO A: SO A: SO G$ H MW r! #N #N #N `I `I )Q G$ ^P #N #N #N `I 7s _M `I qH 7s 58 7s 58 7s BE mL mL rH ja ja Ou ja {z Ou ja PL sH Wz cs #J dK QL Wz @J |h cy @J dy 9o dy x5 |C |h A0 t( |h |h =N 82 >b ~9 82 <3 82 82 82 {9 B5 0/ 0/ J: A5 J: 1( Ab a: r/ ~] ^^ W^ ^^ ~] w{ 3~ 3~ w{ W^ W^ w{ +: w{ w{ w{ e{ 7! 7o.u' k~ '! '! u/ '! g{ P= j# h# j# , g# a& 4. k# }. }. 9; f# 9; U' k# ^= 6. 7. ;% R= ~% 5. F9 >% 9. fk.m# b. m# a. in.i- b. _s Pl.in.ck.-& in.$i.~l.$o.fk.Pl.~* @m.@m.-& u$ ,W Ok.A= bl.j@ ~* i@ Ok.A= j@ l@ ~* u$ $i.~* ~* $i.~* t$ l@ j@ j@ ~* ]* l@ ~> u@ r$ l@ l@ b. t$ j- u@ a. o@ F9 j@ b. b& m@ s$ $i.-& R= o@ a. 8o.-& u$ {* (. o@ ~* :. ;& u@ m@ s@ 3. j> :. -& -& q@ u@ s@ (. s@ {= -& v@ q@ Q- t@ :. v@ t@ :. :. t@ t@ 3. ^. p, v@ ^. v@ =% ~. &. ^. z 5* 9o.B5 8d :E 0o.j0.x[ W(.N, ao.<[.<[.Y,.Xi.bo.^<.Th.co.^<.3!.j@.5,.,..rQ 6W t] {d.do.eo.fo.go.ho.io.&d Wb sb xa xa Zb *d |b Hd 9b Be #I Ma ya Ga Ka 5b rb ~f ya 5b Sa V$.jo.Aa 3A gw (r ko.lo.^B mo.no.oo.po.qo.ro.so.to.uo.vo.wo.xo.yo.zo.Ao.Bo.Co.Do.Eo.Fo.u! @. #= (# 0 $# O$ $ . R@ # ]& J$ ]& L$ R@ V! L$ |1 *) J$ `, J$ *) e^ 5' q, q, ^, <{ 5' *) R@ a r o n g h a i [& a d $# e ># ", +"z~ *[ 9i.9i.*[ ah.Il.z~ e^ 9| 98.*) )~ *) ah.ah.<{ 9| w9.*) <{ <{ <{ <{ <{ <{ J$ J$ <{ <{ <{ 9| <{ 9| @ .( J$ ;b ;b 9| *) G= ]& R@ ]^ L$ 0' ]& I/ I/ I/ L$ L$ 0' 0' 0' K$ # + 0' * Z, * $ * Z, = + }, - [* o! $ # . Gc S$ S$ = ]& > o! $ ; . . S$ $= U@ ] U@ ; . * %= ~ ; Q$ ^& ] U$ & - V@ Z! ; ; U@ | R$ & Q$ N$ ) ] 05 { X@ ] X@ 4 X@ N$ W@ W@ Q$ %= X@ N$ J) ~ ( { < ( %= Go.} <& ( : ~ ( | 2 ( <& < b ,# 6 ## ,# [ ~ V) 7 6 ># / 6- d 5 1 3] ,# q> v5.~# ,# 2* a a a 0 W$ L= !# n 0 L= Y$ n r n c !# E, r p K/ ]# Y$ V| q Z$ K/.n c Y$ ^# p % t r m `$ #| Z$ w 4* {& /U w 1; w B t $S z t z z a7 z N@ /# z I n! 1& I 1& I W) M A 1& c- M 8* c- a7 V 2Z c- O >z 0S 0S a- S QT M C, E$ L A: SO 3# T E$ A: 3d .Z #N 3d pF #N G$ #N 3d ^P #N `I @N qH tw @N EN 7s 6B 7s 6B 7s mL $N $N J Ou ja J J {z cQ &N {z #J GN FE A0 EA NP Wz dy /3 cy F^ A0 A0 A0 A0 |h |h 9o A0 A0 ~( >b >b eB ~9 <3 82 82 82 Y6 82 >b A5 << d[ ff L] r/ 1~ J: r/ 0/ f[ ~] w{ 3~ W^ w{ w{ W^ w{ +: W^ w{ 3~ W^ 0 q^ w{ Q< 7! '! '! ,% , u/ P= P= '! 0, e# g# a& ~> ;% a& f# ;% g# a& g# k# 7. 6. ]= g# Z* F9 5. ~% ~> 6. Y- m# b. b. b. fk.m# c& ~* ,n.~* $i.Vm.~* Pl.Pl./l.,' bm.u$ ~* Pl.)% ~l./l./l.,W j@ && i> xi u$ t$ s$ _s A= j- ~* >* l@ && F9 l@ p@ ~> l@ t$ i> b. ~* a. u@ l@ l@ l@ ~* j@ u$ {* ]* o@ -& -& l@ -& xi 2. {* [y k> l@ x$ f@ ~* l@ a. t@ b& ~* l@ b& s@ k> u$ h# h# {* 9& k> -& u@ t@ x$ E7 h# (. p@ v@ v@ [y 8& {= h# ^. 1. {= 5& (. d# -. {. H! {. {. {. v@ U ,# X@ ; *) V! [) &[ + Ho.Io.Jo.Ko.Lo.Z> <, Mo.No.Oo.4, Z 4& A0 r^ T2 L5 Po.Qo.gd.~1.Ro.So.To.Uo.Vo.Wo.Xo.Yo.Zo.`o. p..p.+p.@p.#p.$p.%p.&p.*p.=p.-p.;p.>p.,p.'p.)p.!p.~p.{p.]p.^p./p.(p._p.:p. + = * + + L$ V! J$ e^ *) L$ V! J$ ], z~ *) [) %{ 2! e^ z~ q, q, 6' 5' [) 5' V@ L= 0 g e c r 7 9 o a b 7 *= 5 ", +"*[ z~ 2! 2! z~ ah.vh.z~ z~ 98.&[ 2! Pi.5' ah.vh.|1 9| w9.9| 9| <{ 9| *) <{ <{ J$ <{ <{ I/.<{ <{ R@ ;b <{ J$ R@ R@ ;b R@ I/ BN <{ ]& ]^ G= 0' I/ ]^ I/ 0' 0' I/ 0' 0' 0' # * + # + # # 0' # * + = + T@ # V@ = + o! o! [* > = Gc & > & & - $= S$ - > A; ' H= T@ - ' ; ; & Z! U$ N$ ; U@ . . & > %= - | ] o! N$ { X@ Z! Z! H= |, { | N$ N$ /& | 2 I= ] P$ { ~ { ~ J) ~ ## ( [ ## 5 6 { { { { V~ 1 2 b < ( N' 3* 7 ( 3* 6- 6 q> 3* 4 6- B; d 0 0 6 6! {# a 3* 6 k /& ~# ~# c ~# |& 0 e |& 0 0- ~# L= p s> k0.h n o L= Y$ ,> `$ q s> % c{ p y xE 1; D^ Y$ m Q(.`$ #] /# :# $S w D |Z G t 2; z ~& G G z w n! x w I z a7 I A$.'&.z A c- c- 8* z M T^ 1& T^ M T^ 3# 8* V c- |# J V c- M H Q J J >z >O Q qF BX zS 'Q #N ^P #N 3d 3d 3d #N 3d #N @N EN lP @N 58 7s 58 6B 7s mL 6B 6B mL $N rH Ou J J J J QL FN .J #J EA &N QL eQ _C Xz A0 |h _C A0 A0 A0 A0 A0 A0 /3 |h Yz `z Ic Y6 gg ~9 82 82 >b {9 b: 82 Y6 r/ r/ q/ A5 J: r/ L] X) J: f[ f[ 1~ ~] ~] w{ w{ 3~ +: =2 ~] W^ w{ W^ W^ W^ b* 5& 3~ u' -% , P= '! , , {= j# '! '! j# a& g# '% 2. 4. '% g# g# g# f' 8. 8. 7. l# b. R= l# )% b. b. m# b. -& 9. ~* fk.9. ,n.-& )% c& j- in.~* o@ Pl.r@ in.$i.cl.,j.s$ -& t$ $i.$i.j@ $i.l@ r@ o@ /i.n@ l@ && ~* m@ ~* A= ~> @m.l@ l@ s$ :; F9 l@ s@ n@ j@ j- u$ :; m@ :; {* k@ F9 Y* o@ u@ s@ q@ ~* ~* l@ s@ o@ t$ = o@ 3. 8o.h# h# ~* :. 9& :. o@ u@ m@ <. :. q@ q@ q@ x$ :. w$ 5& :. 6; v@ _. {= t@ '& (. 5& ^. {. &% t@ /* Q= w$ (. d* ^. :. ~. ^. !. x@ 1. Q' 6 ] + M$ g~ ], *) 5' ], *) 5' v, 5' g] =) v, q, <{ 3_ ^, v, q, ^, g~ g~ @ M$ (& < X$ O' 5* N= 8* $] N= 7p.7p.U zX zX B$ . !> 8p.F@ G@ ;' 9p.E[ ;! b# 1. 3- N- '& p2 ^* -O p2 j- 0p.ap.kW *& nH f@ bp.*& X* d@ w; X* b. u@ N- N- >& >& $. d- Q@ D ~# b $# ^ # & - = + + p9 R@ R@ !, J$ L$ *) e^ L$ @ ], e^ e^ q, q, v, [) v, [) ^, ^, s, v, 5' @] O$ a' a a f 7 7 j V$ &# j a b 9 $# ", +"q, q, z~ z~ 2! ql.vh.9i.*[ ah.|1 9| )~ )~ $8.|1 ah.9| 9| 9| *) <{ <{ 9| <{ 9| J$ 2^ cp.], *) J$ <{ <{ <{ L$ R@ ], <{ .( L$ L$ L$ 0' ]& L$ ]& #S R@ ]& I/ 0' k3 L$ 0' I/ + $ dp.# L$ $ V@ # L$ + ]& = 0' # # ' $ # # & $ - # $ Q$ > > $ V@ $ $ Q$ + - . o! > > + > |* + = > Q$ & > ; ; & N$ | R$ ; U$ | ; T- ~ Q$ . ; ] { 2 ~ | X@ ) 5 { 2 Z! Z! *# ) X@ ; ~ ~ { # ] ( ( 1 1 } D, { 4 X@ ( ( 6 U- D, a < 6 )1.e d Z! } ,# 6 ,# Y@ j ,# 7 a J] a 6! b ,# z: a ,# 3] K/ n !# W$ ,# k |& ~# ~# s> s> 0- r a' r n^ 2, q 4* 2, ,> h m `$ p! p ;) 4* Y$ ^# 4* t 1; w ^# 2; /# U*.$S F= @= G G C` G {& F= F= F= I F= a7 z N I n! I A I O@ a7 M T^ V 8* 8* M n! 8* V 2Z >z QT J 3# o^ i5 J O O d{ A: aV Z r! >O hU #N 'Q G$ tw 3d r! ^P 3d L@ #N `I @N _M _M qH 7s _M @N 7s 58 7s 6B 7s &k -I Ou {z :M H9 {z bf 0B bf eQ PL QL &N bS |h {C FE Xz @J /3 A0 /3 |h |h =. A0 |h Bw x5 x5 Z9 82 82 c[ 82 b: 7, Y6 Y6 d[ u! Ab J: X) 0/ L] a: ^5 a: ^^ /. 3~ w{ D~ 3~ 3~ +: w{ W^ 3~ w{ &% w{ b* 3~ w{ 5^ w{ u' B} P= 8; P= P= -% 3. j# 9, e# a& ;% s@ f# e# s@ ep.5. b& 4. ;% l# 7. 6. l# ~% 4. f# i- }. >% ~* ~% b. >% @o.b. m# _s k* b& ~% in.R= ~* s$ i> )% /l.b& @m.@m.l@ /l.~* o@ $i.j@ Y* t$ l@ u$ u$ _s m@ u$ a. ^* l@ b. l@ ~* j@ j- Z* i@ u$ b. n@ u$ u@ -& F9 ~* && t$ a. o@ b& t@ j@ u$ t$ =& s@ {* u$ l@ >& k> t@ u@ ~> @& o@ :. u@ x$ t@ -& =& u@ v@ (. = =& :. :. {. u@ :. t@ :. ^. (. >& {. /* t@ (. ~> d# x@ h# h# ,& {. s@ =% v@ d* ~. -. '. A@ b# ^. %. l Q$ M$ `, q, `, 2! s, v, r, s, v, [) q, =) r, v, r, r, =) x, q, r, r, @] *) J$ $ ; { $# g f n p! `$ N= x I A I ` O@ |# J D$ 2# H G$ .= X I@ C$ V fp.y@ A@ E@ E@ 4) y@ L) $% A@ &. =. .= #. (* L) 4# E@ z$ 7# V J@ .= D$ P@ M /# s> X$ -# &# | & O$ $ # L$ ]& L$ #S BN e^ *) q, *) *) e^ *) ^, z~ e^ ^, q, g~ q, ^, q, 6' r, ^, 5' `, z~ *) / k L= }& h f 6 } 7 V- < 6 $# } b ", +"q, z~ z~ *[ z~ z~ |1 ah.*[ z~ 2! 9| *) e^ *) 9| |1 <{ <{ 9| <{ <{ *) 9| <{ <{ J$ 2^ <{ <{ I/.J$ 9| I/.;b ;b ]^ 2^ ;b .( l) L$ ]& L$ I/ BN R@ 0' L$ R@ 5_ 1) [n 0' [n [n 0' = # # [n 5_ # # ;b # # $ 0' # # $= $ ]& # ]& L$ # > . 0' $ ; > . - S$ H= R@ > S$ . S$ & (& $ A; $ 0' ; %= Z! (& | N$ > | X@ R$ H= T- & (& H= - $ * ; %= 2 X@ ; ] ;# | 2 (& | ~ X@ | | %= ; N$ / { X@ / 1 8- / X@ /& $# [ ( 7- } : Y@ d 5 } } 6 6- J] $# 1 a [{ ,# 0 $# [{ $# q> 6! ~# ~# 0 J= 6 J] a ~# 6 K/ L= E, n {# L= Y0.~# L= h n 2, K= % `$ ]# s> ]# r ,> 1; ,> e<.`$ y p 1; ^# t w 2; 1; F /# 1Z /# w 1; t F= F= {& z /U F= E z F= G {& /# a7 AR w z z G I I z A 8* o^ M M c- M HV V |# 8* >z 3# E$ L Q Nd.L T T L 3; T T L@ E$ A: D$ qF #N pF 'Q L@ T 4# G$ 3d @N qH 4# `I tw 7s 6B qH 6B 58 7s BE 7s r4 ja ja Ou -I Ou {z r4 bf ja sH EA Ou F^ =. |h |h :3 /3 6# =. /3 |h A0 A0 /3 dy Bw ~( dB dy Bw Y6 Y6 Ic b: 82 Y6 >b Y6 Y6 q/ J: J: J: B5 1~ J: r/ r/ /. ~] w{ w{ =2 ~] =2 W^ w{ w{ 3~ w{ W^ w{ w{ w{ 3~ q^ p^ u' 1. P= , '! , `> ,% 0& {= ~= e# {= 2. g# 0, g# h# '% b& f# '% 8. R= 7. 8. 5. R= b. b. f# l# 5. 2. ~% gp.)% ~l.$i.in._s 4. @o.fk.~* a. @o.R= $i.in.$i.xi $i.s$ o@ ~* Ol.u$ u$ p@ l@ F9 ~* j@ Y* &p && i> ~* l@ u$ ,j.p@ ,j.u$ l@ u$ l@ ]* b& s@ Ql.t$ :. u@ u@ d# {* h# u@ o@ m@ hp.s@ {* w$ q@ F9 x$ O- _s {* E7 ~* s@ >% o@ s@ q@ u@ {= -& 8& c# (. q@ {. :. :. s@ <. 5& (. v@ ;& :. d# ^. H! C@ b# !. %% W> t@ v@ %. {. ). /* -. 1. !. %% !. %% !. *. {. O `@ = R@ J$ 2! z~ 5' ^, 6' +' %{ }) x, s, u, 6' x, =) v, @] v, r, r, v, [) @] 5' R@ L$ + ] ] ;# < *# / W@ 1 X$ r ~# r -) Y$ e p 2, h ^# 6* :# `$ D G Q@ O@ G I I M= I z @% C J #= n! S Q@ S I N@ A I M= I A N Y$ c c 6 ( $# ;# > ]& = # Z, Z, R@ L$ ]& ]& R@ *) 5' *) J$ <{ <{ ]^ 2! 2! e^ q, 6' ^, q, 6' 5' v, 5' q, ^, 2! ]& 8 c ># h n K/ g $# 8 7 < ( 8 7 a ", +"z~ z~ z~ *[ z~ 9i.9i.|1 9i.*[ 9i.9| *) e^ e^ <{ <{ 9| *) w9.<{ <{ 9| *) <{ <{ 2^ w9.9| <{ <{ <{ 9| .( l) <{ 2^ G= 0' I/.J$ R@ L$ I/ I/ R@ 9| BN I/ G= I/ I/ 0' 0' 0' 0' I/ R@ K$ # 0' 0' $ # L$ X! # + 0' $ # # + = # ]& # # |* ' $ $ H= $ S$ $= # > ' |* S$ S$ > S$ > Q$ & O$ o! ; > ; }* & X@ =' S$ N$ N$ & U@ U$ ' S$ U$ N$ U@ H= | | %= , ] *' P$ ) 2 7- ; N$ N$ 2 ~ N$ ] { [ 7- 2 } } 1 W@ 2 X@ 2 ( 1 6 7 Y> ,# 6 J] $# 6 d N' 9 V~ ( 6 d $# 9 [{ 0 ~# 0 a 0 a Y> {# ,# a 0 a q> 7 ~# Q{ {# i L= h 0 ~# s> n p Y$ % ,> n n `$ m ip.p p t ,> % 4* C ;{.y..q h :# :# `$ 4* @= w 2; w G {& F= G D G a7 a7 A z I z o^ M M 8* z . V KW c- M 3& J Z..H SO O 8* 3# U J n> 3; Oz MW tw ^P 3d pF 3d 3d 'Q qH qH #N `I E^ 7s `I @N 6B 58 7s 7s 6B 7s 6B E@ Ou r5 r4 Ou {z Ou Ou {z J Ou QL .J -K =. mG _C :3 |h /3 A0 A0 |h R' |h /3 /3 |h Ic x5 A0 A0 Y6 Y6 82 ~9 >b 82 82 >b Y6 ~9 L] x4 J: '= %% jp.X) J: r/ '= '= L] 3~ ~] ^^ W^ w{ 3~ W^ 3~ 3~ 3~ $^ w{ 3~ >' >& *% -% {= , '! 1. , P= e# {= e# a& P= a& 8o.'% 5. g# f# a& 7. 8. '% 7. 7. 8. 4. g# -& o@ 2. f# >% R= >% >% )% {= m# >% ~* b. ~* F9 -& ~* R= $i.)% >% ~* ,n.$i.,n.m@ pj.u$ Y* i> F9 ~* /i.s@ xi u$ kp.l@ l@ ~* r$ -& b. -& b. j@ @& h@ {* ~* u$ ,j.o@ {* ~* $i.~* t$ j- m@ -& {* ~* {* {* 0& 3- o@ -& j- q@ o@ :. u@ s@ F9 u@ {* u@ q@ P- :. ~> c# q@ u@ O- >& <. u@ u@ C= /* o@ (. :. s@ '& !. t@ 9# ^. %% v@ {. (. o) A@ &. p) (. x@ ^. ^. ). ). x@ !. $. -. C$ 4 $= J$ ], e^ *) *) %{ g] s, x, H) x, H) =) [) H) 7' s, r, H) s, s, =) q, [) [) <{ J$ ], J$ R@ L$ . > U@ ; ( ## b ,# d e Y> } 7 0 V$ [& 7 '# V- e c r r h q p W$ o c Y$ h C; 4* m |& h `$ c n `$ u % h g h 0 6 ( / [ | & . = pH > ]& ]& ]^ L$ R@ J$ R@ R@ *) 6' ], R@ ], ], *) 6' e^ ^, v, x, [) q, q, v, v, [) 6' [: U) e r h 0 ,# c 7 } b [ 6 $# i _ 6 ", +"*[ z~ *[ z~ z~ 2! q, Il.vh.z~ e^ |1 9| e^ Pi.*) 9| $8.<{ ^, 2! 9| 9| <{ <{ <{ $8.<{ J$ 9| I/.<{ ], R@ J$ <{ <{ V! BN ;b <{ 9| 2^ R@ I/ I/ R@ G= 5_ 0' L$ 0' I/ 0' I/ J$ 0' 5_ + # 0' = * # # L$ . = 0' = . . ' . V@ [* . $ $= & $ = S$ > P$ S$ > & & & S$ S$ # $= > - . > ] S$ & R$ ] P$ R$ H= ' & ; ; . U$ S$ H= S$ ^ & | ~ R$ N$ ; 2 2] X@ U$ ; N$ R$ 2 X@ | %# { ( 2 5 [ X@ { G9 ## { 4 Y@ 8- ( ( 5 } ( } 5 d 3* k 3* V) d 5 4 V) 6 6 6 8 q> 6 7 k 3* ~# k {# 6! 0 0 ~# e ~# ,# e K/ {# a z: ~# c c {# 2, c ~# r Y$ 2, r ~# ,> ,> Y$ 4* `$ q t /# b' p ^# p t D q :# ^# ^# :# :# F t /# w w C a7 a7 a7 a7 B z w 1& I G I I I #= I z 8$.z H$ A V 8* n! c- 3# c- =X |# |# Q 0S O@ Q Q c- i5 d{ Q qF r! r! oY 3d K) G$ #N #N 3d `I tw #N 3d `I E^ `I lL qH E^ 58 7s 7s 6B 58 58 ja rH rH r4 {z J {z {z BS bS cs &H ,I Xz =. lp./3 /3 A0 :C >I A0 /3 Ji /3 |h /3 Yz Ic x5 |h |h Ic Y6 Y6 Y6 82 82 82 Y6 8N jy q/ X) J: ;} %% 1( %% 1~ /. '= D~ 1~ w{ ~] =2 W^ w{ &% 3~ 3~ w{ p^ mp.(| 6& e' e{ u' 7& , P= -% H; -% {= *% *% }. e# _. e# a& h# }. 2. s@ 8. g# f# '% >% b. 8. 8. ~% 2. ~% >% 5. b& o@ -& b. ~* 4. >% F9 o@ m@ q@ ]* {* l@ o@ in.Z* ~> &p ~* -& u$ `* o@ j@ &p F9 $i.u$ Y* ,j.&p -& ~* i@ s$ $i.l@ N- m@ a. -& o@ -& l@ F9 v> o@ {* h# l@ 3. b& ~> t@ q@ j@ q@ -& o@ u$ -& ~* x$ :. s@ F9 q@ E7 ~> o@ x$ x$ C= o@ t@ t@ >& v@ -& <. {. 1. s@ u@ u@ t@ (. = :. 1. w$ (. 8& t@ !. q@ ^. ,& b# 9# ). ). ). ). A@ x@ z@ ,& -. v@ ). ). p, ;. =. A@ (* ^# & R@ e^ *) z~ [) +' 5' v, s, s, v, A, s, s, =) s, x, v, H) v, v, r, q, 6' q, g~ ], <{ L$ L$ #S V@ = > . | ] ) U@ ] { ^ ~ 2 ~ H= 2 ( :& < } 6 e g $# e g c h e ~# ~# 7 e ~# X$ 0 7 6 7 ~# *= i ,# } b < ) | | | W@ ] . $ + = $ ], R@ V! g~ z~ ], ], @ 6' J$ *) *) e^ *) [) ^, 5' =) 6' H) 6' ^, 6' @] v, )~ *) , 8 ~# c ~# ~# J= a 8 ,# i 6 6 8 [ $# ", +"q, q, z~ z~ *[ q, z~ z~ Il.z~ 9i.Il.$8.|1 Pi.<{ 9| vh.vh.5' *) 2^ <{ <{ <{ 9| 9| <{ <{ 9| <{ <{ *) 9| L$ l) ], R@ ]^ <{ <{ J$ G= BN G= L$ R@ jP L$ 0' L$ I/ 0' 0' I/ np.0' 0' = * + [n * # `Y = . # z] o! $ # . & ' [* > + > [* $= & $= S$ - . # . S$ Q$ & ; & Q$ U@ U@ =' %= A; * P$ op.T@ ; |* R$ (& * ; %= U@ & %= S$ - 2 - .# %= ~ 2 g{.) &= %= ; ^ ; N$ 5 2 X@ { ## / 2 } } 1 N' B; 2 < T- 1 } d d [ W@ 6 5 ( Y@ 6- 6 / d ># pp.} 9 6 6 k 2* 8 d ,# 7 q> 3* q> z: 3] !# a a L= 6! a W$ n E, tA L= n s> ~# 0- Y$ h L= ;= t' {# n c r 2, Y$ ,> r 2, t 4* ^# b' ^# $] Z$ F :# Z$ t @= /U {& :# m n^ G G /# E 2; G a7 N n! a7 C {& B n! z z O@ O@ #= 8* G M I $T KW >z E$ 3# c- c- 5 .|# Q d{ 3& E$ J J T A: MW A: SO r! r! qF 3d G$ G$ G$ #N G$ 3d U^ 3d tw qH E^ DN pF qH 7s 6B 58 mL E^ 6B 6B mL rH ja wr {z {z Ou Ou ja cs r5 $i bf {C /3 ;' !& ;' A0 Xz oO A0 |h |h |h /3 A0 ~( Ji |h |h &i Y6 qp.Y6 >b Br 82 Y6 Y6 Y6 82 b: u! a: x4 J: X) a: D~ %% /. D~ 3~ ~] L] 3~ &% 3~ 3~ 3~ &% 3~ 5] 3~ (| (| >' 9& 6& Q= >& *% -% P= , 8; e# X- ~= 1. j# }. }. h# 2. E7 8. >% }. 8. u@ b. ~> o@ f# i- }. q@ _s >% -& b. 2. o@ 8j.o@ in.$i._s ~* 4. F9 x$ 8j.'% o@ l@ c& u$ ~* a& l@ u$ _s ~* ~* 8j.~* ~* F9 o@ m@ o@ Pl.p@ ]* l@ @& F9 l@ t$ 9& ~* j@ l@ ~> l@ k> O- u@ m@ u$ ~* ~* <. -& o@ s@ ~* F9 =& ~> h# d# t@ t@ d# ^. :. 8o.P- C= s@ 1. s@ o@ ;! <. 1. :. h# s@ x$ O- q@ 9& = w$ (. 5& = 9& N- t@ ~. ^. W> ~. >& v@ A@ &. -. -. A@ !. !. 5& z@ 0# ,& &. !. .= A@ z$ [, A ; R@ 2! *) z~ q, 6' 5' s, v, s, 8' =) H) v, s, s, 6' r, v, q, +' v, q, [) v, 2! 2! )~ s' *) <{ R@ 2^ R@ L$ = + * # # > & ; | [ | | ~ | ~ ( } %# @# ) ( 6 $# } } _ ( < 7 == -# 9 } } b 7 } Y@ < X@ ~ N$ ; > > ] - * 0' ]& l) 0' 0' <{ ;b *) e^ z~ )~ 5' e^ 5' 6' q, J$ z~ r, [) v, q, 8' 6' v, v, u, r, q, s, i) R@ [ c 8 b 6 b 8 W$ 9- 7 6 8 $# == ( $# ", +"z~ z~ z~ z~ z~ *[ *[ z~ rp.vh.ah.z~ |1 $8.*[ )~ 9| xi.$8.)~ 9| <{ *) <{ 9| 9| 9| 9| <{ *) 9| 9| <{ <{ <{ 9| <{ J$ R@ #S <{ J$ J$ ]^ ]^ L$ L$ 2! 2^ I/ L$ I/ 0' 0' 0' 0' 0' I/ 0' * * ]& 0' # K$ = = + $ k) 2) ), + $ k) # # . ]& =' & ' . + # + . [* > ' > S$ - . $= U@ o! & U@ . H= & . S$ P$ ^& & . | ; ; J) R$ ^ H= ; ] | %= A; | *# | ~ 2 o! ~ ~ %= X@ | 2 2 } 4 4 5 $# { ~ } 8- 2 ## 7- $# *# 5 B; d +# [ ,# ( d 5 } 8 3] 6 b 6 Y> 9 5 k 7 Y@ k 7 7 a' ,# 6! ,# c 0 k 6! a a i !# L= |& a 2, L= h s> Y$ r -) L= h L= 2, ,> n^ 2, `$ q h `$ d<.m 1; t w 4* /# :# ^# :# `$ w w G #] G b' 2; {& p F= G 2; z C G B w F= '&.M O@ O@ A M I A F= 8* H$ |# Z |# Q@ M S 3; A: d{ O@ Q L A: r! G$ M r! O qF #N d- G$ 3d 3d 3d `I G$ G$ O= qH 58 lL qH 6B 58 6B 7s 58 q9 7s 7s 7s rH H9 ja Ou Ou Ou Ou ja ja $i bf ,I =. ;' >I Bw |h A0 dy |h |h |h |h A0 /3 dy x5 |h dy c[ Y6 Y6 Y6 Y6 82 82 Y6 <3 82 Y6 9# X) J: J: %% %% r/ ^^ '= X) ~] =2 ^^ %% 1~ 3~ w{ &% 3~ 3~ &% &% w{ (| 3~ q^ B= w{ sp.R/ e* 5) , g{ 7& {= {= P= ,% /* e# g# 3. 2. ~> a& {= x$ 7. b& R= 4. '% >% R= F9 >% >% '% m# b. b. m@ {* t@ b& F9 ~> )% >% R= o@ >% F9 l@ $i.F9 F9 ~* o@ s@ m@ F9 u$ Z* -& F9 u@ l@ o@ -& ~> ~> ~* u$ 2. ^* o@ u@ u$ m@ ~* u@ j@ x$ r@ {* E7 -& -& = F9 {* Q- q@ ~* {* -& :. x$ x$ d* w@ :. /. ~. (. 9& :. u@ u@ w$ t@ :. 1. t@ = {. (. h# q@ ~. u@ o) '. :. <. d# (. ^. x@ (. {. w$ ). {. A@ $. ). ^. '& #> {. =% d# ,& 5& x@ -. (* &. !. ). x@ 6# !. ,= a J$ J$ z~ 6' q, [) s, s, v, H) v, x, 7' s, 8' v, s, x, s, s, x, t, 6' 6' q, 6' z~ q, ^, <{ ;b L$ <{ ]& L$ ;b G= + $ # + & > > ; ; > Q$ > ; N$ S$ | ; & ~ | , N$ 2 | H= ) ( H= ~ ~ { W@ , U@ ) | ] ^ & S$ . Q$ S$ $ M$ 0' L$ J$ ]& R@ ], R@ )~ q, 2! [) %{ ^, 5' [) ], ^, z~ ^, M| 6' e^ v, v, e^ [) v, s, [) 5' H) - 7 e &# j 6 a 7 e 6 6 $# W@ } d == } ", +"z~ z~ *[ z~ z~ *[ *[ z~ Il.ah.z~ *[ 9i.$8.z~ Pi.98.xi.9| *) 9| *) 9| 2! 9| 9| 9| <{ <{ <{ 9| *) <{ <{ <{ J$ L$ I/.R@ 2^ 9| J$ J$ J$ BN J$ 0' J$ R@ <{ 0' I/ I/ ]& I/ 0' 0' 0' 0' + # # 0' 0' # * $ # = o! + 5_ ]& #^ k) . 2) & = S$ . # = $ # $ L$ + $ + . $= U@ N$ . U@ . X! & U@ = Q$ U@ R$ H= ~ %= $= & %= N$ Q$ & - | & ~ | | N$ | Q$ ; ) X@ X@ 7- | { 2 tp.( | [ Y@ { I= ## P$ H= ~ ## 2 1 ( } 4 [ { {;.} D, Y@ d 6 *# 5 7 )1.># } 9 6 3* 5 D, a q> c6 3] ,# 3* 7 c } 6 d 8 n 0 L= k 7 a n n n h Y$ h s> |& Y$ n p r Y$ r p m `$ 2, r ;= ;) b' 2, Y$ 4* /# w :# D {& p `$ w C {& {& {& {& ^# 4* G F :# F= a7 F= #] a7 /U z 1& w A I M M M F= M &> N c- T^ T^ M P@ F= O@ >z >z Q J E$ L 3# :* T |# O J Q d{ G$ G$ pF 3d ^P #N 3d 3d G$ 3d 3d `I 58 E^ `I tw 7s 6B 7s 7s 6B 6B 58 7s EN EN q9 ja Ou r4 Ou J EA Ou &H up._C =. C@ EA /3 FE A0 :3 A0 =. |h `z /3 /3 |h `z |h A0 vp.9/ b: Y6 b: 82 Y6 Y6 a: b: >b 82 '& '& %% 7, %% J: q/ '= r/ ^^ ^^ =2 D~ ^^ D~ 3~ w{ w{ 3~ 3~ 3~ */ w{ w{ 6& |. p^ ,% ,% e* -% |. e' {= e* s@ *% t@ -% a& 4. i# e# f* g# a& s@ 2. e# o@ j# >% wp.s@ [y h# u@ R= b. b. R= b. q@ )% 5. F9 in.F9 i- @m.s@ m# ~* $i.$i.R= Y* ~* F9 ~> -& l@ u$ a. o@ 8j.s$ Y* -& r@ i> u@ {* p@ E7 F9 t$ q@ u@ a. -& 2. $i.~> u@ Q- m@ ~> = -& o@ ~> t$ {* [y u@ q@ u@ v@ w@ q@ >& {* 9& v@ s@ v@ 1. v@ u@ :. u@ a. ~> ~* s@ %% _. :. '. x@ ~. ^. ). v@ x@ d# ). ). {. v@ ~. {. x@ !. x@ !. )& &. ;. &. -. ~. {. %% ~. -. -. ). ). {. ). )& A@ +. W p & + ^, q, z~ q, =) v, x, H) v, w, v, s, s, x, s, =) }) v, s, +' @] 6' 5' r, 5' q, 2! J$ <{ e^ )~ *) `, R@ R@ L$ l) J$ = J$ + M$ + + + $ & . Q$ ] ] %= ; ; & U@ > | ; P$ U@ (& ; | N$ . > ; S$ S$ ; S$ |* - . Q$ L$ L$ $ $ > 0' L$ J$ J$ <{ *) ], )~ ], 2^ J$ *) J$ e^ g~ +' *) *) *) q, q, ^, g] 5' q, x, s, v, 8' +' 2! | ~# a 7 =# ,# {# k 7 g $# } < ( $# ## X@ ", +"z~ z~ z~ z~ z~ z~ *[ z~ 2! vh.ql.*[ z~ *) *) e^ e^ 9| 98.$8.<{ <{ 9| 9| <{ 9| 9| q, 9i.;b J$ ], R@ <{ <{ R@ L$ =$.J$ 9| <{ I/..( R@ R@ R@ I/ L$ *) *) =$.I/ ]& R@ I/ 0' 0' 0' 0' = # $ 0' 0' # # ]& I/ $ = L$ % # Q$ [* S$ Q$ [* ' $ ' 0' # - N$ . > & *' U@ |* . > & U@ |* . . | H= P$ |* ; ] H= ] # N$ R$ ; ; | & Q$ R$ | U$ *' ; 2 . & O$ X@ I= 5- `@ & X@ N' ~ [ { { N$ 05 2 [ ## X@ } } /& < /& I= { 2 /& 5 $# 5 6- { 6 Y> 7 5 ># 7 d d 3] q> 3] 6 a 0 k c5 q> k ( ,# ~# } $# J] ~# 0 k j f h c c L= 0 W$ |& L= }& {# p p L= % `$ c{ % `$ r Y$ Y$ q m t 4* @= #| ^# % :# B :# t w w 2; 2; t #] ^# t G {& D F= B D a7 N F= 1& w z I AR 1& 8* I A O@ 1& O@ 8* 8* A 3# I & u' &% (. P= |. 9, P= -% :. e* ~= (. :. v> ~> {= h# s@ a& ~> 4. f# l# a& u@ i# ~% 2. o@ -& -& _s ~* o@ u@ b. R= ~> b& h# u@ Z* ~> ~> u@ -& R= q@ ~> o@ >% a. ~> Y* l@ ~> h# m@ ~> m@ ^* s@ F9 R= s@ o@ s$ F9 s@ m@ u@ t$ t$ ;& s@ s@ -& m@ :. d# s@ ~. q@ {. o@ x$ (. x$ = u@ = |. {* = 8& q@ :. 1. :. s@ v@ u@ t@ C= :. :. x$ :. v@ a6 v@ h# d# {. c# t@ {. &. 1. q@ '. (. {. 1. b# ;' (. '. {. ). {. /. A@ ). ). b# !. ;. ;. A@ -. ). &. *. 5# .= &. A@ +. S | R@ 5' 5' *) q, z~ v, s, x, =) v, r, v, v, r, s, x, s, [) v, q, v, s, 6' v, @] 6' +' v, 5' q, ], g~ 5' z~ s' )~ ], J$ ]& L$ ]& L$ # # 0' + 2) & > . . > $ $= L$ . ; & ; & - . $ ; ; & & {c ' > $ Q$ + $ $ $ p9 p9 J$ = + <{ L$ *) ], J$ z~ q, z~ *) ]^ g~ e^ e^ *) @] z~ 6' q, q, q, +' q, 6' 5' ^, r, H) v, +' ], 1 a =# a :& -# b ># ,# $# e $# $# 7 d -> { ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ |1 Il.z~ z~ 2! $8.|1 e^ 9| 9| 9| 9| *) *) <{ <{ 9| 9| *) <{ <{ J$ <{ J$ I/.<{ 9| <{ <{ <{ R@ 2^ l) l) R@ R@ R@ I/ ]& R@ I/ I/ I/ I/ I/ I/ 0' 0' I/ 0' I/ $ L$ I/ #S # + ]& = $ + X! ]& V@ . S$ [* . Q$ [* # # Q$ + = $= & ' > V@ Q$ $ ' . # & S$ U@ N$ $ - Q$ =' ; U@ %= ' - N$ 2) (& ; - & %= H= & # | | Gc U$ U$ | H= ] ; 'W *# `@ /& { | | [ 2 | 05 2 ] | ~ ^ ~ 7- 6 ( /& 2 { /& /& { < 2d d :& c6 U- G9 { d } == 6 6 d } 7 a tA a 7 {# ># e [& 6 b ,# a' !# c L= !# Y$ L= b ~# 0- c Y$ &].s> r L= _# L= Y$ p 2, 1; Y$ `$ Z$ Z$ 0< v ;= ,> h p ;) 1; `$ /# {& @= w {& G {& F 2; G G F w {& :# G z n! F G z A F= F= W) E; O@ T^ 8* O@ n! M O@ I M c- P@ I c- |# >z }Y 3# |# A..J O@ aV *I T T L qF D$ T U^ E^ r! G$ 3d 3d L@ 3d #N 'Q 3d O= 58 4# 7s 6B 58 7s 6B 58 7s r9 7s q9 r4 H9 Ou qH xp.cf ja ja r5 r5 L) Xz C@ . =. =. =. =. /3 =. =. /3 A0 =. A0 R' t( dy df Ic b: b: b: Y6 Y6 9# b: Y6 82 q/ %% J: X) q/ X) X) %% 0/ %% a: 3~ 3~ D~ &% 3~ &% &% &% 3~ 3~ +~ >' W^ ^^ -{ &% >' '. |. e' d* t@ `> P= = v@ {= 7& ^. 0, >& h# a& a& s@ '% q@ 8. 2. o@ -& 8& h# s@ ~> -& x$ 2. o@ ~* o@ s@ b. F9 F9 -& Y* F9 o@ ~> ~> m@ {= {= ]* F9 s@ -& -& o@ -& ~> ~* o@ {* o@ o@ s@ F9 s@ a& b& {* ~> v! {* o@ s@ {* O- <. u@ a. ~* d* u@ ~* h# O- q@ ;& o@ o@ 8o.q@ (. q@ :. :. E~ ~. {. o@ >& w$ u@ 9& (. >& (. w$ <. (. v@ :. x@ !. A@ ^. :. 8& C= ~. B@ 5& ^. [, -. *. &. (. (. [, e- z@ ). ). v@ x@ &. 0# +. A@ x@ {. -. ). ). &. )& *. l> (* ]. A@ .= [ !, *) 3_ r, q, s, s, s, s, s, x, v, s, v, v, =) u, s, t, u, v, u, s, |) v, s, @] [) +' q, ^, [) q, q, ], ], *) *) J$ <{ J$ *) J$ J$ M$ S- J$ ]& = . 0' + 5_ # = . # . = V@ = . $ $ 5_ = $ V@ . X! & > . M$ 0' 0' I/ # 0' L$ 0' *) L$ <{ R@ ], ], ], 9i.g~ *) `, <{ e^ V! ^, z~ =) ^, z~ g] q, v, s, A, q, s, r, v, v, v, g~ }* k {# ~# J] V- a 0 0 0 ,# 6 *# ## $# d &# $# ", +"q, z~ z~ *[ z~ z~ z~ z~ 2! 2! |1 q, z~ 9i.vh.xi.*) *) 9| $8.98.98.9| 9| <{ 9| 9| <{ 9| <{ J$ J$ jP 2^ <{ <{ <{ ;b <{ 2^ R@ .( <{ <{ <{ J$ G= I/ I/ R@ ]& 0' X! k3 I/ 0' I/ 0' 0' p9 = + 0' 0' ]& # $ # # M$ = k) $ # > V@ $ > [* 2) = V@ + o! S$ |* [* + V@ - $= [* - 1* S$ H= H= - Q$ ; U$ & ' U@ . | > U@ > U@ U@ ~ ; {c R$ | Q$ & b{ U$ | | H= | ; R$ &= [ 2 %= | X@ | 2 < -> 2 Z! 5! ## 5 [ 1 2 d 5 5 5 { 5 ( 6 b ( d &# d a V$ d 3* 6 } $# I= ( d $# $# a 8x 0 3] a' 2* ,# 0 6 e ~# e 7 a 0 !# ~# i s> L= 0 -) 0- |& V| s> Y$ h c n ,> d<.K/.p ,> 2, vA q Y$ 4* y t Z$ t t p ^# /# t t ^# w B Y$ G B F= G /U C` G N E; z n! I m) a7 E$ 8* Ri.z .Z..3& Q c- 3# O A: aV Q E$ E$ J L@ L L@ d- L@ 3d 3d 3d Vf qF 3d #N ^P qH E^ tw E^ 58 58 O= 7s O= 6B 6B q9 BE tw 58 C$ wr 7s ja r5 wr r5 ja $i .u F^ F^ L) /3 A0 ;' A0 /3 A0 /3 ~( ;' A0 /3 A0 Z9 A0 vp.6d b: b: t( b: b: Y6 b# b# b: <3 %% J: %% X) /. '& %% /. X) ^^ '= u! J: 1~ 1~ &% &% &% +~ &% ,& >' w{ 3~ -{ mp./* H; |. /* t@ ~. H; {= ~. c# v@ e# 8& /* :. u@ a& s@ 8o.2. 8o.s@ }. R= b. >% '% r@ ~> s@ -& Y* F9 ~> [y ~* -& h# o@ o@ u@ ~> j- o@ ~> o@ h# o@ 8j.-& (. u@ u@ q@ {* {* F9 u@ Z* ~> Y* o@ u@ t@ {* ~> 1. s@ m@ s@ -& t@ q@ -& x$ 3. P- s@ w$ :. E7 h# ). q@ t@ 1. q@ P- >& q@ s@ t@ <. P- q@ w$ <. -& 1. C= v@ {. 9& w$ ^. =% O- x@ != {. ^. w$ u@ 9& c# ]. !. v@ '. &. !. v@ x@ !. ^. ). ). ). ). {. !. 4) H! =. x@ &. A@ z@ !. z@ 5# *{ )& &. &. ). .= E@ !. e- W$ ] g~ [) z~ 6' s, s, 8' s, v, v, x, u, s, v, x, x, x, ' s, v, z, r, 6' r, %{ 6' x, q, ^, q, z~ q, 2! e^ <{ <{ J$ `, L$ q, ], V! L$ <{ ], 0' J$ L$ k3 !, L$ + + X! p9 0' 0' * $ # # + # L$ J$ )~ L$ + . ]& $ ]& 0' ]& ]& L$ p9 ]& ]& J$ L$ <{ J$ <{ e^ <{ ], L$ e^ ], J$ q, <{ yp.@] 6' z~ z~ 6' ^, v, [) v, [) r, q, r, x, q, s' ; {# ~# 0 &# 7 7 a a ,# ## 6 j $# 9 { $# / ", +"*[ z~ z~ z~ z~ z~ *[ *[ z~ 2! Il.2! z~ z~ *) 9| 9i.e^ 98.2! 98.9| 9| <{ <{ 9| 9| <{ 9| 9| <{ <{ J$ J$ #S 9| *) r4.<{ ], R@ R@ 8S I/.J$ 2^ ]^ G= I/ G= 0' 0' L$ BN I/ 0' 0' 0' 0' 0' ]& # $ [n 0' + V@ + Gc # $ k) # 1) # $ . k) . V@ ' # V@ . Gc # S$ + # V@ $ $ > & S$ U@ > > S$ & ; & $ > S$ | %= - | o! # T- Z! Q$ | U@ | > ^& H= ; | R$ ~ ; ^ %= %= [ ( ) Z! ## ~ 2) ) ~ | | Y@ 2 X@ [ 7- ( 2 ~ /& 1 6 ( Y> } } <& } 3* 5 7 V) 3] 3* 5 } $# d ,# 0 $# a 3] 3* ~# k [{ a vk Y> 7 ,# !# } 7 n ~# s> k -) n -) h Y$ |& ~# h 2, ;= Y$ L= h ,> h p s> s> Y$ ;) 1; s> D ,> `$ q :# /# `$ ^# b' 4* q % G {& F= w w z F= . /3 =. =. A@ A@ ;. 9# 9# b: 9# Y6 b: H! !. c[ d[ $. q/ 7, X) q/ u! '. %% *. H! 1~ 5& ~] &% D~ ~. v@ 3~ &% ~. &% d* &% '. |. 9& e' g- *% 8& t@ (. `> 9& ,% >' t@ :. /* (. t@ s@ {= :. b& a. i# {= r@ o@ b& a& ~> u@ s@ {* o@ ~> {* s@ Q- >% F9 -& ]* Y* 3. o@ ~> {= s@ u@ -& m@ o@ ]* o@ Q- s@ s@ E7 l@ o@ <. h# 3. {* h# ,% o@ -& s@ u@ -& :. s@ a. q@ u@ w$ ,% ~> u@ = /* = o@ 1. {= o@ '& {* x$ w$ d# <. q@ (. C= O- u@ %% w$ 4_ <. x$ =% d# 1. (. v@ F9 '& gT {. w$ 9# v@ d# '. ^. ~. %% '. {. b# {. '. ^. !. 0# '. x@ +. 5# gT !. !. ;. ). 5# !. z@ z@ &. -. &. !. -. ;. x@ z@ .. z@ .= S ^ J$ <{ ], q, 5' s, v, 6' r, v, x, H) s, t, v, v, s, t, +' v, g] s, r, q, v, 6' +' 6' q, q, e^ e^ q, ^, e^ ^, e^ e^ e^ J$ *) e^ J$ I/.J$ J$ *) L$ <{ L$ ]& X! !, R@ R@ L$ ]& 0' > = = $ R@ J$ L$ ]& ]& L$ R@ L$ + L$ R@ R@ <{ J$ R@ ]& .( J$ L$ J$ q, ^, ], <{ e^ ], *) 2! q, ^, ], q, q, r, [) ^, [) z~ 6' v, =) [) s, s, 6' r, 2! g~ | 6 {# k e b -# 6 6 2 9 < 2 6 d ~ / } ", +"z~ z~ q, z~ q, z~ z~ q, z~ *[ ah.xi.z~ rl.*) 9| xi.9i.)~ vh.|1 9| <{ 9| *) 9| <{ <{ 9| 9| <{ <{ R@ R@ l) <{ J$ <{ <{ l) .( ]^ ;b <{ .( J$ R@ G= I/ G= I/ 0' ;b ], I/ 0' [n 0' 0' ]& =[ =[ K$ # 0' 0' * # $ + % $ = * 1* . $ Q$ $= + ' > V@ > = [* . + L$ # # . $ ] > > = > . = # - T@ $ ] & > U@ ^& & * ] ^ N$ N$ 2 2 ' ] - ; U@ | ; ] ) %= | Z! ## ~ { ~ H= > | ~ | Z! ~ ) X@ ~ } *# ;# | 2 Y> N' ## } d *# => } ,# 6 6 &# ,# 6 $# ,# B; a' < ,# 3* 7 ## 3] 2* ]c ,# a _c.0 V$ !# a a 3] L= 9- h s> L= K/ E, `! r ;= 0 c Y$ r r s> s> c 1; n s> Q(.zp.q q Y$ D m 4* ^# 2; /# `$ :# :# {& t ^# G w 4* /# G B a7 B G }# K #= {& {& w N= G U*.1& #= $T 8* n! w X8.M .@.O@ 1& F= z E$ o^ M c- 3# 3# 3& L 3; |# :* L :* U r! L U^ r! jI tw 0* T U^ G$ O pF t> 0* 58 O= pF _M 58 58 58 58 58 7s r9 r9 6B 6B ja ja ja {z Ou ja H9 bf bf R{ .u =. 5# %i a* F^ =. =. =. =. ,. ;. &. ]. =. &. ~( $. Z9 9# 9# t( 5; b: t( b: b# b# Y6 b: ;} 5; H! ;} 7, /. ). b# H! X) {. 5& D~ /. {. {. D~ ~] X) &% ~. d* 3~ 9& 5& ~. v@ 6& D~ e{ 1. ~= Q= Q= /* /* v@ 9& :. t@ e# t@ Q= 0& 0& s@ :. s@ t@ o@ o@ u@ q@ E7 b& 3. = 9& {= u@ 2. a& o@ q@ s@ [y ]* s@ o@ o@ o@ o@ -& o@ -& -& h# ]* -& 9& E7 m@ :. u@ u@ h# <. ]* m@ s@ u@ u@ l@ D= u@ q@ -& s@ ~* ;& u@ w@ O- O- q@ w$ u@ (. q@ N- :. >& w$ >& = (. w$ C= C= w@ O- (. (. !. ~. q@ v@ '. =% B= ^. o@ ^. ). v@ /* v@ ~. {. 5# !. {. ;! ). v@ '. x@ ;. (. )& &. v@ '. &. gT A@ $. 5# !. ;. x@ =. &. ). &. ;. b# v{ .= +. z@ A@ .= z@ )= z$ a $ R@ 2^ 6' s, r, r, v, v, v, v, s, s, y, v, u, u, s, s, x, s, s, s, s, s, v, v, 6' [) +' v, ' 6' ^, ^, e^ 5' %{ `, 5' *) q, e^ l) J$ i) J$ L$ ;b L$ <{ l) J$ ]& R@ R@ <{ J$ R@ <{ J$ J$ g~ s' p9 <{ )~ *) J$ ], )~ <{ L$ BN ], ;b *) J$ ], 9i.I/.e^ g~ J$ J$ z~ e^ z~ 2! 6' 5' q, ^, 5' q, q, g] @] z~ r, v, @] s, s, s, s, v, v, s, s' $# e n ># 6 6 a 3* &# Y> a &# { V$ b } ~# < ", +"z~ z~ z~ z~ q, z~ z~ *[ z~ *[ z~ vh.9i.*[ *) 2! vh.*[ Pi.|1 |1 98.|1 9| 9| 9| *) 9| 9| 9| <{ I/.R@ R@ J$ <{ J$ <{ <{ ;b L$ J$ J$ R@ I/.BN G= R@ #S L$ J$ jP ;b 0' G= 0' L$ 0' 0' ]& I/ L$ # K$ X! 0' Z, 5_ ]& L$ # k) # ), % + # . * . o! 1* ; . $ . # k) [* $= $ = . . > = |* > & # > > > V@ V@ > T@ S$ 2 %= N$ N$ |* Q$ - .# ; 2 | N$ *' ] . Q$ ; U@ 2 H= & [ 2 5- ] ] N$ %= X@ *# [ R$ } $# [ 2 2 / ~ 2 &# /& { D, 4 5 Y> Y@ 1 V~ 8 } x0 q> d *# k q> 6- [ ) 5 ( 6 a ># ~# ,# 0 q> ~# 6 [{ ~# 0 ~# j 0 i o n L= h L= L= a h c C; n^ s> vA _# h n^ 4* #| ^# 4* V| u :# p ,> % ^# :# 2; :# /# t F #] G w 2; B F= z B F= ^# /# B F= }# F= E }# ^# n! G E; O@ {& G 1& 8* n! O@ A V N K@ 1& #= 3# E$ Q J c- |# P@ 3; Q E$ H J 3# c' H r! L@ 3) 0* d- L J L@ T tw 4# G$ 0* `I E^ E^ I@ 58 6B O= r9 O= 7s 7s r4 ja ja ja r9 ja H9 PL ja Ap.-K L) =. al bf F^ /3 $% R' A@ /3 ,. 5; /3 /3 :3 x5 ,. ~( =. t( 9/ >. Ic ;. b: b: 5; Y6 5; ;' ;. 7, 9# H! u! X) D~ a: /. ). X) 5; ;} ~. %% /. &% {. &% 3~ +~ /. ~. b# D~ |. t@ Bp.8& *% Cp.<. |. v@ k~ 5& :. ~. d* '. h# s@ kp.Q- ~. 3. w$ h# {= 4. e# h# :. >% |. :. <. *% (. a& F9 {* Z* o@ = ~* 2. F9 2. 2. s@ h# u@ {* s@ u@ {* -& q@ h# l@ 8& s@ u@ 3. u@ x$ w$ >& u@ ,j.t$ s@ o@ o@ t@ s@ u@ B= (. q@ /* x$ -& t@ q@ :. ^. 4_ q@ v@ w$ d# (. ). E~ B= x@ = x@ &. o) ;. >. ^. :. {. t@ w$ ^. {. ^. &. '. d# w$ 5& !. /. !. &. '. !. =% !. A@ '. S' A@ 6, (. l> x@ !. =. ~. >. A@ ). 5# z@ &. '. (* !. +. 4& .= )= z@ z@ [, )= +. z@ _# & + S- 2! q, ^, 6' v, v, w, s, v, 8' y, s, z, s, 8' s, u, s, s, s, 8' @] v, s, =) Dp.s, s, s, 6' 6' q, 5' ^, e^ `, ^, <{ ], *) s' ;b L$ <{ J$ s' g~ J$ ;b s' )~ J$ e^ L$ R@ L$ L$ L$ p9 L$ ], ;b ;b g~ s' *) *) V! J$ L$ ]& L$ L$ ;b *) *) z~ e^ )~ <{ 5' @] q, g~ q, e^ 2! 5' q, z~ ^, e^ ], 6' q, v, [) v, =) r, v, s, v, v, s, +' z~ + j ~# n ,# a 7 3] o &# N' k 6 ## 2 } } [ : ", +"*[ z~ z~ z~ q, z~ q, *[ ql.9i.z~ 9i.|1 z~ z~ 2! xi.2! e^ 2! 98.*) *) <{ 9| 9| *) 9| 9| 9| <{ I/.J$ 2^ J$ I/.<{ J$ 9| ;b ;b 2^ BN J$ <{ R@ G= R@ BN ]& <{ <{ <{ I/ I/ I/ I/ I/ I/ L$ I/ I/ 0' * + 0' # + # ]& R@ # . o! $ ]& . $ # Q$ + . > > $ . . ]& + V@ > V@ ]& V@ + . . # . Q$ V@ - & . ; N$ ] - & - N$ ; ] | H= }* ; Q$ ! U@ N$ 'W ; Q$ ~ U$ ) Q$ Q$ [ P$ S$ | ) N$ | { 1 => ] ) | 9 ( H= { 1 I= 4 4 ~ } /& &# } 6 / 6- [{ 6 J] J] $# } d ># } } d 7 0 Y> 7 tA ~# a k ~# vk 6 } $# ,# J] ~# a ># n n ~# L= c |& q> )# Y$ 0- o ,> -) 2, 2, ;= ;= m % Ep.n^ `$ @= @= q m t p q ;) n^ n^ 4* m F F= D G 2; {& 2; F= W) G a7 /# G #] n! w A G G B w w I O@ O@ T^ M O@ I M |# |# |# M n! c- 3# |# H P@ L H E$ |# A: C, L@ Q ` E$ L' L@ U^ r! T L@ d- ^P U^ 4# L@ 0* G$ @N @N qH 58 58 ={ C$ 58 6B r9 n) q9 ja r4 r4 Ou bf r5 H9 F^ +. /3 ,. df =. /3 =. =. ;' A@ =. ~( ,. x5 :3 x5 ,. ;' $. $. Ki gg b: t( Z9 ;} <3 Y6 Y6 d[ '= !. 7, q/ [. /. x@ ;} ). b# ). x@ &% =% /. != '. ~. =% 6& 1~ b# /. 9& `> |. 9& != e' :. {= 8& >& r^ ~. v@ _. ~. _. 7; a& {. e# h# s@ '% x$ a& s@ u@ ^. h# s@ u@ ~> s@ q@ h# b& ~> F9 s@ k> F9 -& =& :. :. u@ u@ ~> -& u@ 1. w$ Y* v@ l@ h# h# :. t@ h# a. w$ r@ Z* s@ :. w$ m@ -& Q- [y ^. w$ u$ d# :. q@ :. o@ (. ^. :. (. (. (. w$ = u@ '& w$ !. C@ W> v@ '. /* w$ = 5& E[ 9# v@ q@ d# 5& ^. ). v@ :. ^. A@ !. x@ ). =. v@ {. B@ !. !. =. !. -. x@ &. &. B$ ). -. d# (* +. A@ z@ 5# A@ E@ D@ -. ;. G@ A@ )& ;! &. &. x@ .= #. F; &. .= Q@ - ]& e^ 6' ^, r, s, r, v, }) s, }) s, s, s, s, s, s, x, x, s, +' v, s, v, v, s, +' =) s, s, 8' =) 7' 6' 6' q, q, q, s' ], <{ <{ `, ], ^, ^, *) ], 5' <{ <{ J$ )~ <{ s' R@ <{ R@ <{ J$ J$ *) <{ <{ <{ s' ^, J$ )~ <{ J$ J$ L$ R@ ]& *) e^ z~ e^ ], J$ ], q, 6' z~ z~ 2! e^ q, ^, *) 2! r, [) 6' v, q, v, s, ' 6' v, r, y: 6' s, s, x, *) f] Y@ 7 vk /& a 6 == 7 V$ 6 k ># { 2 ## $# ## ) ", +"q, z~ z~ z~ z~ z~ q, z~ ql.q, ql.*[ vh.9i.z~ 9i.2! xi.*) Pi.|1 <{ vh.e^ *) <{ I/.<{ 9| 9| <{ <{ <{ 9| ]^ <{ <{ J$ <{ 9| <{ J$ 9| 9| <{ R@ R@ R@ ]& I/ *) <{ p9 ;b BN L$ 0' I/ ]& 0' 0' [n 0' # K$ 0' 0' 1) # $ + K$ # k) 0' $ . # k) * > S$ > V@ V@ = S$ $= $ # ]& S$ = & Q$ - . |* . %= U@ +i.> o! ;# - Q$ U@ R$ . U@ . |* ^& & U@ Q$ $ l!.~ R$ H= N$ ~ ] > N$ | & 2 { *' ) | N$ [ { { 2 ~ } ~ 4 / ~ ## < } [ 2 } ( 4 } ## k } ## ( &# D, 6 J= /& } d 6 7 } 8 6 a d L= 0 6 a a' 6! a ~# L= 2* ># 0 L= !# a c q> ~# r h 0 ~# -) ]# r h L= h 2, e n ,> s> Y$ (# s> xE 1; m w :# ,> t ;{.w p n^ % t t ;= (# {& {& F= {& 2; {& 2; B 2; z z x A I z O@ T^ a7 A F= z T^ a7 M c- O@ P@ :* |# Oz M V J >z 1& H$ 8* O J |# J C, L@ T H P@ T H >O U^ L@ O J G$ d- 0* 4# =I 3d 4# 58 O= 7s 58 O= 58 r9 7s 58 58 58 Ou q9 r9 r4 E^ 8# Vz cf cs ,. $% 5# L) =. $% =. =. =. =. $% Fp.,. $. ;. r5 Z9 dB gg b: ;. ~( b: t( Y6 b: b: b: 7, %% '= '= %% '. ). ). F, =. %% '. u! X) /. p) 9# w{ &% Gp.&% ^. &% =% {. =% '. 8& v@ {. 5& v@ *% ^. `> 6& 8o.Q= 9& h# 9& {= ^. {= {= (. 1. 9& t@ h# d* h# :. s@ o@ h# <. ~. t@ S' :. -& F9 o@ F9 -& ]* :. s@ -& {= :. s@ s@ o@ C= ~> :. u@ x$ s@ ~> s@ :. :. u@ h# ~. s@ <. (. u@ u@ v@ x$ {. s@ (. s@ C= # 6 ( { ## 2 { ", +"z~ z~ z~ z~ z~ z~ z~ 9i.2! [) ql.*[ vh.Il.z~ *[ z~ <{ *) e^ 2! ah.ah.9i.9| 9| 9| <{ <{ 9| 9| <{ <{ <{ R@ <{ <{ 9| 9| <{ <{ I/.V! J$ J$ l) R@ R@ R@ 0' ;b BN L$ jP 0' G= 0' 0' 0' 0' [n X! I/ ]& # $ 0' + # $ = $ * $ 0' # # ' $= = S$ [* [* ' |* > [* . $= $ Q$ + $= > o! > . U@ U@ > P$ S$ N$ U@ . ; |* > U$ ] & Z! S$ | ~ %= X@ R$ | N$ T- N$ ~ N$ &= 2 S$ O$ X@ Z! | 2 ) 2 ( 7- ~ `@ / N$ 2 { ) 8- $# { X@ < 1 } { 2 [ 2 } 6- 2 $# 7 { $# 7 ## 5 $# } 5 ## $# k 7 7 k a a j e ,# N' ,# 9 0 K/ a e a e 0 j 6! {# e 6! h {# 8 o h j n 2, r 1; 2, s> Z$ p L= y % 4* 1; ;= w :# /# @= :# w :# D ^# b' :# D m N F= z {& z z..z :# b' z z z N z B z N z A H$ n! M O@ c- I I I A A z P@ P@ 3; 8* J P@ O 3# Q Q H U r! T C, L@ r! D$ pF tw pF L Q Vf L@ U^ E^ #N U^ L@ tw `I O= 58 7s O= H9 @. 7s rH q9 r4 E@ 58 r4 {z 5d ja r5 $i Bk $% 5# L) =. L) =. =. A@ ;' +. 5# 5# $. A@ G; 6# 4- =. c[ ~( &. V^ ;' b: b: b: b: b: 9# q/ X) ). H! !. '= H! $. a: '. w{ %% !. ;. 5& '= &% &% /. p) 5& }@./. x@ x@ d# ~. ~. ~. ^. {= :. c* 7& (. |. (. t@ '& ~. '. v@ t@ 3. 8o.q@ v@ {= u@ b& s@ s@ 5& {* 9& >& q@ s@ q@ s@ s@ -& s@ v@ 2. q@ {* o@ -& {= 1. 8& v@ :. s@ v@ v@ {* s@ E7 -& -& 8& v@ :. s@ s@ q@ >& s@ q@ '. x$ u@ t@ -& w$ v@ c# q@ w$ w$ (. ^. :. /. d# v@ C= w@ '. !. c# q@ x$ E~ t@ B= 5& d# A@ '. ^. ^. 9& v@ /* )& ;. ^. !. ^. A@ b# (. x@ ,& ]. ^. !. A@ +. x@ !. ;. *. e- ). x@ F; x@ z@ ). ). %. &. b# A@ $% &. E@ z@ L) .= 4- $% F@ z@ E@ F@ z@ z@ &. V L@ _# & s' V! ^, =) x, +' q, z~ s, v, v, u, H) s, s, x, s, x, s, u, v, =) v, v, v, s, v, v, v, s, v, 6' q, ^, *) z~ 5' [) 3_ v, q, q, v, ^, *) J$ e^ <{ *) 2! e^ ], e^ *) *) 5' *) ;b L$ ], ^, ^, I/ <{ e^ <{ L$ J$ *) <{ *) z~ [) ], *) e^ *) V! e^ *) *) ^, q, *) *) ^, *) 5' [) q, q, %{ [) ^, q, q, =) v, =) [) v, v, s, A, s, q, *) R@ Y> j ,# ,# a D, $# a -# &# 6 d $# ,# } 2 / $# V$ ", +"q, z~ *[ z~ q, z~ z~ z~ 9i.ql.z~ z~ ql.vh.&[ z~ e^ *) 98.5' 2! 98.2! |1 <{ 9| 2^ 9| 9| 9| 9| <{ <{ <{ J$ 2^ 9| <{ <{ J$ 8S <{ BN *) |1 jP J$ R@ R@ 0' ;b I/ <{ BN [n 0' 0' 0' 0' 0' ]& 0' I/ I/ # * L$ = + Z, I/ ]& # T@ 0' =$.}, $ k) [* > 1* # + V@ ; = # S$ # o! $ . U@ + $ . . U$ & S$ $ S$ ^& > $ U@ $= Gc ; | %= $ ] ~ N$ N$ N$ | & ; ) 2 ~;.| 2 | 2 N$ X@ 2 / 1 | [ ## & | N$ & 2 W@ { X@ -> / N$ Z! : } | X@ N$ ( $# Y@ ) { } 1 5 6- a 6 6 1 $# /& 7 ,# ># $# 6! 3] b 0 k ># 0 k == 7 ~# L= ~# X0.c ~# 6! ~# ~# !# k 2, h s> r 0 K/ `! p o/ `$ 1; C; `$ h 0 u ,> V| ^# % m Z$ b' 2; t 2; t ,> p s> ,! {& w q D F {& G {& t GK /# I ^# z N m w z z N B G O@ A H$ I S c- K K@ O W) 3# c- c- I$ E$ M 3& c- J 3; J c- P@ T H H L Q fp.pF kP t> O Vf 0* T E^ tw C$ d- U I@ 4# O= 0* ia C$ @. @. y@ H9 E@ r4 7s ja r4 r9 r4 . cf G; L) .. . .= . /3 $% =. e- A@ ~( ;' =. )& ;. .. /3 A@ ;. b: b: $% ;} Y6 b# H! ;} 9# ~( 9# a: A@ '= H! '= X) '. H! .= ). '& {. +~ /. /. ~. 1~ '. h- &% 6& =% '& %. != ^. '. =% /* {. 9& {. g- e' 8& w$ {= _. v@ t@ ,% &. ~. j> 2. :. ~> 2. :. ~. [y h# 4. 1. v@ w$ {= ,% 0& d* 4. {* a& h# 1. h# t@ m@ v@ h# Q- =& d# ~> :. q@ s@ /* :. *% Z* h# c# x$ ~. p) q@ :. (. c# x$ v@ :. v@ h# D= >& t@ q@ ). ^. = x$ _. ^. E~ (. t@ d# ~. =% ^. d# O- w$ '& C= {. ^. w$ ~. (. ^. t@ ). !. +. ^. &. !. #> -. 5# '. [, -. 6# o) x@ '. !. ). &. !. A@ 5# &. -. %% ). z@ *. B$ 5# 0# #. -. A@ A@ z$ )& . 7# $% 5# +. V> E@ z@ 5# 5# F@ .= V N > # [) 5' [) s, 6' v, [) y: s, s, x, s, v, s, x, y, u, x, v, v, A, A, x, x, H) s, s, s, 8' H) v, *) q, v, s, @] +' v, q, q, |1 2! q, r, e^ 5' z~ z~ *) ], 5' 2! ], 2! 5' ], V! *) z~ <{ ], ], z~ l) ], <{ *) ^, ^, *) [) @] z~ ^, q, z~ q, 5' q, *) 2! v, 8' ^, 6' q, g~ r, [) v, s, [) 2! &[ q, s, x, }) v, q, v, r, s, v, H) ^, # a ,# 7 6 a $# a' Y> 6 ~# 8 ( } 5 $# $# { [ d ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ Il.vh.z~ 5' 2! 98.^, )~ ^, $8.xi.<{ z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ ]^ <{ <{ 2^ <{ 8S <{ .( ], ], <{ I/.R@ J$ ;b <{ 0' L$ J$ p9 I/ G= 0' 0' p9 J$ 0' 0' 0' ]& # X! 0' = * + 0' 1) # = $ * + 2) 2) $ $= > [* & > # L$ $= M$ ]& [* |* $ + . > |* U@ Z! - Q$ S$ ^& A; Q$ & $= $ %= U$ U@ S$ ; U$ | & X@ R$ T@ P$ | 7- | ' & U$ R$ U$ { H= N$ ) ) { 2 { { { [ ) 2 ) ## ; { => Z! N' 4 { 4 X@ ( /& *# 4 F:.d ,# k N' d d ,# 6 -> d Y> } 0 2* a k a' e Q{ a ~# k 6! ,# ,# !# g |& 0 c c |& i K/ {# ~# c s> L= c L= s> Y$ 0 h _# ,> 4* r s> t Z> Y$ s> v `$ `$ 4* m #] _# 4* % p p m m t p 1; /# D w 2; m w G F= W) m 1& 1& I O@ z G O@ A O@ & 8& {* :. h# o@ t@ -& x$ B= 2. q@ v> 1. (. ^. t@ t@ q@ o@ {. q@ 3. t@ x$ s@ 3. q@ w$ 0& E[ :. (. h# q@ u@ {. w$ u@ q@ d# A@ v@ ,& >& :. w$ ^. ^. t@ (. $. )& &. (* &. {. '. !. {. (. 9& a# #> (. &. ^. b# ;! ;. A@ {. *. A@ d# p, ). ;. C@ !. -. ,. .. *. 5# &. %% A@ -. ). A@ ;. l> 0# e- A@ &. )& $. =. A@ )& )= +. $> )= e- X I@ B$ !> E@ )= #. @. F$ ) ]& )~ e^ v, s, 6' v, 8' v, 7' u, s, v, 6' 8' s, y: s, s, s, x, x, x, s, u, x, s, s, s, s, s, x, 5' 6' s, v, q, s, r, z~ q, 2! e^ v, v, z~ e^ 6' q, *) g~ 2! ], *) e^ ^, 5' q, 5' ], )~ e^ 5' q, ^, *) L$ *) s' 5' z~ ^, e^ e^ q, q, [) g] ^, %{ [) v, r, v, [) r, [) 5' r, v, 5' v, s, 6' q, v, v, A, s, s, 6' +' +' =) x, +' J$ ) 7 i e b _ ( i b e &# $# X@ 7 / 2 *# 5 } < ", +"z~ q, *[ *[ z~ z~ z~ z~ z~ z~ z~ *[ z~ Ip.vh.9i.5' z~ 9| |1 9i.Pi.ah.vh.vh.)~ 9| <{ <{ 9| <{ <{ <{ 9| l) R@ <{ <{ 9| *) R@ <{ J$ L$ J$ *) <{ J$ J$ G= G= I/ I/ R@ #S L$ I/ L$ 5_ 0' R@ [n 0' 0' + 0' 0' Z, !, R@ R@ L$ # + + # # Q$ Ez !, . . ' S$ > $ 0' = $= . {c V@ # & H= > - > U@ ; ; =' P$ A; > {c U@ $ N$ | | (& ; 2 ; ; Q$ ; T- 2 ~ ) ] N$ ; ; { ] ] J) .# / ~ =' [ ; *# ( 2 { /& [ 2 4 ~ } H= { 1 [ x0 5 [ V~ d 6 /& { $# 6 [{ < a 6 6 < 6 V) ## d q> b k c6 } 6! a 5 6 ,# Y> 6 ~# 7 0 K] c n K/ 0 ~# k c Q{ `! 0 h h Y$ -) L= n c ,> _# 0- n ,> `$ o s> u h `$ /# m m u r @= w D m q {& w u ^# t w :# ^# /# B B G 1& z P@ J E$ d{ J P@ E$ H$ J H M@ J H 3d G$ T L@ D$ D$ #N 3d O= L' `I tw 7s O= @. O= C$ 58 @. 58 0* r9 7s r4 @. @. r9 8# E@ 8# H9 r9 r5 =. =. ;I @. a* =. .= =. $% 5# A@ 8# /3 A@ &. ;. ;. )& =. t( 9# b: $. A@ ;. ). $. )& 5; e- b# !. F, &. {. ). S' ). b# '= {. '. =% /. '& !. '= D~ D~ &. /. /. /. ~. v@ d* e' &% ~. ^. 9& {. B@ d# E~ ^. b# %% ~. (. 4_ {. t@ d# 8& w$ q@ 2. Q- h# q@ ~. 8, (. :. x$ t@ :. h# :. q@ s@ w$ :. w$ s@ 8, Z* o@ h# (. a& t@ s@ s@ 5& Q- (. ~. q@ u@ ~. -& :. (. 3. = ^. ^. (. C= '. nY q@ =% d# H! ^. ,& !. ,& w$ l> ). ^. ;! 8& {. B= t@ ). {. '. -. {. &. ). ). d# ). C@ -. x@ )& d# ). '. '. &. -. v@ ,& )& b# '. {. $% ;. &. !. =. +. &. 5# =. +. 0# A@ &. B$ &. ). A@ #. &. B$ &. m> =. 4& .= )= C$ .. 4- @. P V G@ T B$ V E@ X r . ;b 2! q, s, s, z, x, H) u, z, y, u, x, 8' s, q, v, =) =) x, s, s, x, u, u, s, 8' s, s, z, q, s, s, v, g] q, 5' A, q, 6' q, ^, z~ q, q, *) z~ *) e^ ^, ^, 2! *) ], q, ^, 2! q, Jp.*) e^ e^ [) q, e^ 3_ 5' )~ e^ 5' z~ q, q, q, q, *) ^, 6' q, q, [) [) @] [) q, r, [) r, x, 6' q, =) g] =) s, =) s, v, 6' x, x, z, v, @] H) e^ d 7 i ,# V$ 7 $# ( 9 == 6 j ( 1 } ( ;# d V~ } ", +"q, q, z~ z~ z~ z~ z~ *[ q, z~ z~ z~ z~ *[ ah.ah.e^ 9i.*) <{ 9| )~ |1 |1 |1 9| 2! 9| *) <{ 9| <{ <{ <{ 9| 2^ <{ I/.I/.<{ J$ jP 9| <{ <{ L$ J$ I/.2^ 2^ R@ 0' I/ J$ I/ I/ L$ ]^ I/ 0' L$ T*.[n 0' = R@ K$ X! 0' $ Z, ]& ]& # Z, ]& 0' + + Q$ o! $ 2) Q$ # # + $ = ' > $ > - > [* > - ; S$ > > . & U@ U@ k) S$ $ S$ %= R$ & & | %= X@ Q$ 5- ^ Z@ S$ ) (& & | &= { T- P$ 2 Z! ) | | { ] | X@ 2 ) | 2 { 2 | $# ( X@ $# } [ { G9 d [ Y@ X@ V~ 6 $# ( -# d 7 6 } d Y> ( $# k 6 a q> a M' a a a {# Y> ,# ~# 0 $# ~# V) c L= {# a k ,# h s> |& n s> {# c s> % p Y$ Y$ L= 2, 1; 4* p K/ q ^# ,> `$ 1; `$ b' w p q Z$ G m w @= D t F= D F= w /U I '&.z a7 I a7 I w ~& B z z A O@ F= Q@ I Q@ 8* M N N@ I I Q@ I z n! [# QT M 3# M P@ O@ 3; L iI C, d- Q U t> qF 3& L |# T 3d `I 58 O= 3d 4# tw O= C$ C$ O= r9 rH d- 58 58 Ou E@ O= q9 W r9 r4 y@ R{ EA G; )= +. .. ,. A0 A@ ,. 5# +. =. =. ;' =. A@ t( =. e- G; t( b: 9# ;. &. =. $. b# 7, !. -. 9# =. ~( '= v{ H! b# E@ !. b# %% ;. =% {. x@ T' '. {. '. /. `> =% ^. ;. v@ 8, {. &% d# /* t@ {. 9& x@ ^. v@ =% ). *. 9# &. -' {. {. {. &% v@ s@ {. w$ t@ u@ :. v@ Kp.:. (. 1. :. w$ 1. x$ ^. s@ {= u@ o@ q@ ^. :. x@ ,& ). (. /* d# q@ h# {. ;. E~ :. {= = s@ T' w$ (. s@ >& >& {. c# w$ /. 5& d# {. w$ b# -. x@ x@ x@ '. +. W> {. ^. ). '. d# /* (. ). )& ;! 5# !. = !. &. x@ ;. !. &. C@ '. &. A@ ;. ). !. ). !. ^. -. 5# x@ &. &. ,. A@ z@ ;. -. z@ {. +. &. {. z@ 4) 5# V R X 5# +. B$ C$ #. E@ z@ 4& 4# T z@ D$ L@ C$ 5# V P G ; R@ *) z~ s, w, y, x, s, u, y, x, x, u, z, u, x, -! z, x, u, y, x, x, v, s, x, s, u, s, s, v, s, q, r, q, ^, v, v, +' u, 6' 6' [) [) g] q, [) ^, *) 6' g] q, z~ 6' ^, ^, )~ q, [) r, r, 6' ^, [) q, z~ *) *) D[ z~ 5' q, q, q, q, ^, q, 8' q, 6' *) v, 6' [) q, q, g] ^, v, r, 6' 6' v, H) [) s, ' u, v, v, s, v, q, r, v, G= [ V$ a -# -# V$ ## 6 J] [ } } 9 ## { a Y@ d 1 < ", +"@] 5o.z~ q, q, z~ z~ *[ z~ z~ 6' z~ *[ *[ 9i.vh.z~ *[ z~ |1 $8.9i.*) 2! ah.<{ 9| 9| 9| 9| <{ 9| 9| <{ 9| J$ R@ 9| jP <{ J$ <{ <{ jP l) R@ J$ <{ L$ 2^ BN R@ I/ ]& I/ I/ L$ G= G= 0' 0' 0' I/ p9 [n Z, # = 0' Z, # # = # + $ $ L$ $ . + $ ' + ]& V@ > 0' + > Q$ $ # 0' L$ . |* & > . & !, 0' & > $ L$ k) ; > U@ U@ Q$ =' %= R$ N$ > ! ; ~ ! ] & Q$ R$ R$ ] U$ 8- /& ~ W@ 8- | U$ ] | } ~ { J) 5 } { [ } { { [ { ( d D, ) } / $# $# { 5 D, a 6 i 6 7 ( ## 7 Y> } # 4 6! ># i 6 N' ,# 6- a 7 L= a a ,# 0 0 0 n e d {# h L= 0 p h X$ Y$ s> h p _# Y$ Y$ ;) n ;) 2, p p }& 1; p 1; #] 4* :# % p /# /# z z m /# t ^# G % w z G w 2; w z }# z F= G G I B N A z |# z G A G P@ M h] O@ Q@ I 0S M L Q |# Q E$ H L P@ E$ E$ U r! T H J J P@ H >) G$ 0* Vf 4# d- E^ 4# 58 O= 58 O= E^ E^ r9 r9 C$ 58 r4 @. 58 r4 !> r4 r4 ja y0 5# !& .= r4 !& 8# z@ G; /3 e- ,. $. ,. )= =. +. . A@ $. $. !& A@ W- =. t( 9/ e- ;. A@ )& F, b# ). ;. &. H! 7, R' o) b# %. -. =. !. ;. ). '. o) .. '. &% {. ^. p) b# z@ T' A@ b# /* |. 9& A@ {. {. /* d* ;' &. !. 8, ~. 9# '. T' ~. v@ (. v@ t@ _. _. {= q@ d* (. :. %% >& w$ ~. 8, 9& 1. /* {= (. ). t@ t@ v@ (. s@ 8& :. :. (. 3. d# (. q@ :. t@ w$ '. v@ w$ q@ w$ >& u@ ,& &. x@ ). A@ W> W> ). x@ '. '. (. q@ ^. ^. d# -. ]. :. %. ). x@ {. !. !. !. ;. ,. ^. &. !. -. ). c# ,& A@ ). l> x@ -. ). &. *. b# -. z@ =. ). >. A@ '. &. v{ b# -. %. A@ -. x@ B$ -. B$ +. ,= 4# T 4# .= @. .= +. W G@ V 5# C$ (* +. X E@ I@ }; 2# L@ Z! ]& ^, r, z~ [) x, x, v, v, u, v, x, s, z, x, x, v, +' s, x, x, s, s, s, x, g] s, u, s, x, s, v, v, q, 6' s, e^ +' v, s, [) x, ^, s, s, q, v, 5' q, s, s' )~ r, H) q, r, q, q, [) z~ z~ 8' q, x, s, g~ i) q, [) ^, q, q, [) q, q, [: ^, v, q, v, r, s, [) e^ ^, q, 6' q, }) 6' v, 5' 2! Lp.r, v, v, 8' s, v, x, v, -! 8' e^ + a a 6 : 7 ~# ( 6 W@ } ~ { $# { / d < : *# `@ ", +"6' 5' rl.*[ q, z~ *[ z~ z~ z~ z~ *[ z~ z~ 2! vh.|1 *[ z~ *) vh.)~ )~ |1 vh.<{ )~ 9| 9| 9| 9| 9| 9| 9| *) <{ ]^ 2^ <{ <{ I/.<{ ;b <{ l) R@ <{ <{ L$ ]& G= R@ I/ R@ G= I/ L$ L$ R@ I/ 0' 0' 0' 0' T*.0' K$ # # Z, # # # # % # 0' J$ + = . # . }, = [* > $ 0' V@ ]& . . # =' - # > $= 2) > > . [* |* (& . ; | |* %= U@ . V@ P$ | U$ ; R$ ~ H= - & & Q$ ] N$ R$ 2 ## =' H= ) *# { Z! ^ 2 <& ~ X@ Z! 2 2 2 , [ { *# : } Y@ ## d $# { [ d %m } 6 V) Y> [ 1 6 7 N' a 6 $# Y@ 6- D, d 6 a a' ( ,# a Q{ a 6 N' 7 k ~# e a n !# 0 {# h o a' ~# p n p ~# n m `$ g h ]# h `$ ^# y2 q `$ m /# 4* n^ ;= :# w p! m t t 2; 2; ^# w ^# G D ^# @= G G N G 1& z #= {& K Q@ w F A #] O@ M W) I 8* I M I |# a- P@ M 3# q! M P@ 3# E$ 3; L L S H Oz Y r! T Y d- L@ D$ 3d T G$ U E$ H 58 G$ P tw 58 4# E^ I@ L@ 4# 0* 58 C$ @. O= O= @. r9 ja E@ r4 E@ 8# ,. .. 7# R{ R' =. &. 6# >. L) 6# ;. ,. =. z@ e- )& V^ $. 5# )& =. ,. (* t( &. '. ;. ;. ). b# ). ). &. z@ &. !. ;. *. !. '. S' . ). {. {. {. F, x@ {. B@ p, A@ V^ v@ 9& ^. != (. ^. v@ ^. &. ;. %% ^. ). -. !. v@ ^. 5& 9& ). 9& ^. d# 9& !. _. w$ (. 9& w$ (. {. h# 5& ^. ,% s@ (. 0& 8& ^. w$ 9& u@ 3. t@ (. s@ ^. x@ :. v@ {. {. ~> v@ q@ w$ v@ :. %% x@ O- E[ W> = E~ x@ ^. c# t@ {. l> x@ ,& t@ '. *. ^. ^. H! c# F, '& d# =. !. =. A@ &. {. t@ x@ (. A@ x@ )& %% v{ -. x@ z@ '. =. &. &. ). l> ). !. 4- 5# =. )& F, @. L) . . E@ A@ &. A@ 4& 5# A@ z@ z$ B$ X E@ C$ G@ . +. F, (* 5# 5# P C$ )= 9* z$ . +. C$ P 4# .= 7 ]& <{ 5' z~ +' =) s, s, z, =) v, x, z, z, x, s, s, s, u, u, s, u, x, u, u, x, x, v, r, v, v, s, s, 6' s, 6' ^, 6' @] +' y: v, s, s, s, +' q, z~ 8' g] q, q, 6' q, z~ q, q, q, z~ q, q, r, r, 6' 5' [) [) %{ z~ [) e^ *) [) *) ^, q, `, z~ ^, 5' [) q, 6' 6' ^, 6' q, s, @] s, v, H) [) =) x, s, t, s, v, [) =) H) v, v, ^, > 4 7 ,# V~ 6 6 V- ( V~ $# ## { < == ) Z! ~ ## ## N$ ", +"8' 5' z~ *[ z~ q, z~ z~ *[ *[ z~ z~ z~ z~ 9i.vh.vh.z~ z~ 9i.9| *) Pi.*) 9| 9| vh.<{ 9| <{ 9| <{ <{ <{ 9| 9| *) R@ <{ <{ I/.2^ J$ ;b J$ J$ 9| <{ k3 L$ ], R@ G= X! I/ L$ ]& L$ R@ 0' 0' I/ I/ 0' 0' [n ]& # + T*.+ # + J$ # + 0' L$ 0' 1) = Q$ + # }, . . ; Q$ = > T@ . . ] # . = U@ 05 $= N$ U@ . > N$ V@ + > . # . ; & N$ Z! %= X@ H= %= Z! . Q$ |* Q$ U@ .# ] | 2 ~ { J) N$ U@ ] o! ~ N$ N$ [ ~ & Z! 4 ~ 2 %# [ 8- 4 Y@ /& < X@ ~ ## Y@ } ( < ( 6 d 6- ,# a 8 } &# $# d 6 6 q> 3] q> ,# k q> $# ,# {# !# 6 Y> ,# i {# e L= L= 0 0 {# n !# |& 0 L= h ;= c L= ]# r h ]# ~# % Y$ g [& n Y$ 4* 2, `$ (# V| ^# ,> n D m m y m m ^# 4* B }# :# w D G t D G I x w 2; }# G F= I A O@ G z z G H$ E$ x M 3# c- n! P@ 3; 3; T^ S 3; J J L U L E$ J G$ ` D$ ` L d- T r! G$ 4# 4# r! 4# 0* @. r9 C$ @. n) C$ O= Q' @. O= ja E@ r4 r4 r9 %i #. a* r5 W- G; .= L) =. . =. A@ C@ ,. 4- %. >. ;. )= /3 A@ *. ;. *. 9# 6# &. !. 9# !. F, B@ ;. F, &. ). b# !. ). ). $. =. &. '. ). ~. !. -. !. ~. ^. {. !. '. '. 4_ ^. '. =% x@ 8, ). =% b# |. 9& {. 9# {. '. !. ^. =% '. x@ H! d# '. v@ v@ (. (. :. t@ }@.&. ,& %% 5& t@ p) :. ~. ). v@ >& t@ t@ v@ ~. v@ x$ ~. 0# s@ x@ ). ^. :. :. d# :. t@ w$ A@ c# !. c# ,& (. d# {. (. '& %% {. x@ d# !. ,& x@ x@ E~ !. x@ -. d# ). ;. )& +. '. z@ &. x@ !. !. ;. &. -. ;. ). !. 5# ). F, =. . ). z@ !. !. (* !. (* =. )& A@ !. z@ !. #. &. @. +. =% +. A@ #. +. !. {. (* ,. E@ E@ 5# A@ C$ L@ }; F@ 5# T }; B$ z@ }; L@ V r! I@ C$ O s Q$ R@ e^ q, 6' s, u, s, u, v, v, v, x, z, y, u, s, x, x, H) z, u, x, s, x, x, v, v, v, v, s, r, ' v, ^, 6' A, %{ r, v, v, 6' =) v, =) s, r, r, q, v, s, s, z~ z~ r, z~ s, s, q, [) z~ 5' q, z~ 2! [) q, 9i.e^ q, 5' *) =) *) 6' q, 6' 6' 6' %{ [) 5' 6' v, q, 6' v, s, q, s, q, +' s, s, s, s, s, s, x, s, z, u, x, s, ^, N$ 2 a X$ == ## ## $# $# a' 5 9 d V$ ) -# $# N' [ &# Y@ ", +"s, Mp.z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ ql.9i.*[ *[ rp.vh.9i.9i.vh.vh.e^ Pi.2! 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| 9| 9| *) <{ <{ <{ <{ <{ *) J$ ]^ 2^ J$ .( ]^ R@ G= [n ]& R@ 2^ I/ L$ L$ 0' 5_ I/ 0' 1) [n ]& K$ G= J$ 0' 5_ + R@ X! K$ + L$ + K$ . H= $ J$ # Q$ $ |* S$ $ $ U@ $ 0' # $= . Q$ > - . S$ S$ U@ Q$ > & $= S$ ] N$ Q$ | U@ | ; H= N$ ~ H= & U@ & %= ] ] Q$ ~ .# X@ U@ U@ N$ & b{ ~ 2 N$ X@ ~ X@ ~ 7- F:./& | ( 2 [ 2 1 ) Y@ X@ 4 J) 6 Y> 6 1 d } ># ( } D, d i $# ( } 5 d Y> d q> vk 7 tA 0 q> a 0 a a L= {# a 6! 6 c h vk a a n Y$ 0- Y$ ~# 0 2, c{ r ;= r m s> h ,> V| ,> Y$ V| q _# p q t h u t m `$ 2, p D D @= ^# ^# {& w t {& /# {& :# w I F= ~& D W) z I w N M c- 8* O@ c- E; G O@ c- |# O@ A P@ E; Q@ E$ E$ P@ A %> P@ H$ |# E$ J T T L' T r! L' 3& O P@ L@ P@ 3# t> H T 4# 4# E^ 7s 0* T n) 58 V @. J O= . r9 4d V E@ &H G; y@ 0* bf . 4) lp.G; ,. +. $% 5# $% =. +. #. /3 .= 4& z$ +. A@ $. %. ;. &. )& ;. &. !. z@ y@ &. ). H! .= x@ =. B@ -. >. F, ). b# x@ !. >. A@ b# [. =. p, ;. &% b# F, {. '. b# {. '. C~ ). o) 7; !. ;. {. ,& !. A@ ^. |. {. v@ '. !. b# '. '. ). {. ). v@ v@ E7 t@ ~. '. -. {. 9& ^. w$ {= (. ~. d* (. w$ ,& d# [y _. -. l> ). ^. q@ {. >& (. 5& 1. q@ ). v@ F, ^. #> d# :. ^. t! &. =. w$ ^. '. #> &. !. {. 5# ). ^. -. ). =. !. ). x@ x@ ,. r5 5# &. &. &. W> !. A@ A@ ). A@ -. ). )= =. x@ =. -. x@ {. !. *. A@ &. ;' ). z@ $% *. A@ 7# =. &. .= &. (* A@ +. -. G@ 7# ,= E@ D$ z$ 5# X +. U D$ 1# 3& P@ ` P E@ G@ H 2# T I@ L@ L@ I O$ J$ e^ 6' ^, v, 8' r, v, y, v, s, x, x, z, z, v, x, s, x, u, y, s, s, s, s, x, u, s, x, u, v, v, s, 6' s, z, @] s, s, v, q, q, v, [) s, s, s, q, v, =) =) s, s, 6' z~ [) q, [) q, q, z~ q, e^ 6' 6' s, q, r, ^, q, 6' 6' q, q, 5' ^, ^, r, q, s, r, q, s, r, s, s, s, 6' H) 6' v, z, v, v, s, v, r, y, z, x, s, 6' [) q, < 0 e a =# 9 ( 6 < 4 < Y@ ,# } 1 [ $# [ 2 1 < ", +"s, Np.*[ z~ z~ z~ *[ *[ z~ z~ z~ *[ 9i.9i.z~ *[ vh.ah.z~ *[ 9i.xi.*) Pi.9i.|1 |1 9| <{ <{ 9| <{ <{ 9| )~ *) <{ <{ <{ <{ I/.<{ 9| <{ ;b $8.J$ 9| <{ <{ I/ R@ J$ BN I/ ]& R@ 0' I/ L$ I/ 0' 0' 0' ]& 0' [n $ # = I/ J$ # # + ]& # k) # # > S$ > $ > . $ J$ ' $ = . # = . . Q$ = . > - & S$ V@ . & > N$ = Q$ U$ $ S$ A; & & o! |* U@ & R$ ~ U$ . ^ & & 2 X@ .# *' Z3 N$ . T- ; { ; ] N$ P$ [ ) 4 ( ] ] { %# ( $# 1 [ | 2 X@ 2 2 6 / $# ## d ,# $# i ( 9 $# 6 D, d 6 3* 8 6 8x 7 $# a a b q> ,# e {# 0 ~# L= a 7 d k C; ~# 0 h c L= ~# c ( K= n ~# e r h ]# c m r q s> |& p m t p c % Z$ ^# b' r t 4* Z$ % t y m #] m B m G /# m y 2; D `$ D t N G ~& A z #] H$ 1& T^ O@ I z T^ z z O@ z 8* N P@ 3# E$ P@ h] P@ :* E$ J P@ :* U d- U^ Q U^ 3; L@ T d- E$ I@ 3d r! 0* `I BE I@ Y G$ G$ T P G$ @. O= I@ r9 r4 H9 @. @. G; cf 58 y@ . y@ 4# O= #. =. . =. =. A0 6# ,. ,. . &. %. ;. $% )& )& z@ )& =. .= )= =. 4& . ;. -. ). z@ -. $% e- !. &. '. A@ !. x@ ). !. !. A@ -. '. ). D~ 5& ). 5# ). &. !. x@ 5; '. &. z@ ~. ). }@.{. d# '. ). x@ b# /. v@ ^. b# 9& %% b# T' '. F, t@ (. (. v@ ~. x@ ). &. 4) _. x@ !. w$ ;& v@ ). {. {. A@ (. {. x@ x@ T' {. ,& l> x@ ,& 5& '& d# {. !. w$ v@ {. d# ^. &. A@ !. ,. ^. ^. )& ,& A@ ,. -. p, p, p, ^. &. ,& !. &. '. -. &. &. !. !. 5; %. e- &. &. A@ ). '. &. x@ y@ !. )& A@ &. (* 7# 5# -. ;. &. ;. 5# =. )& .= y@ O= )= E@ A@ z@ B$ L@ =. .= #. +. 5# Z +. .. 4& E@ @. S I@ C$ V L@ P J .. F@ H@ T z$ .. V P E$ 7 ]& ^, q, v, s, s, v, 6' u, x, u, y, x, s, s, s, y, H) s, 8' 7' u, s, s, s, x, x, s, z, u, H) =) H) ^, +' s, v, s, s, s, s, +' s, s, 6' s, v, r, %{ v, v, g] 5' [) q, q, 6' v, q, ^, q, q, ^, ^, [) u, s, v, r, z~ 6' v, ^, q, +' r, 6' x, s, H) r, H) H) s, 6' s, x, x, [) q, r, s, ^, r, v, x, @] x, r, s, s, @] @] s' < 6 { _ -# _ 9 $# &# } { *# < ~ : 1 4 ## ~ / / ", +"X( Op.z~ *[ z~ z~ z~ z~ q, z~ q, *[ 2! ql.z~ *[ 2! |1 *[ *[ 9i.xi.9| e^ e^ xi.|1 9| 9| <{ 9| <{ <{ 9| 9| *) <{ jP <{ 9| <{ <{ <{ 9| |j.(}.R@ ]^ R@ J$ l) R@ ], J$ I/ L$ ]& L$ 2^ L$ I/ L$ I/ I/ 0' 0' 0' + # = 0' = + # $ = * Z, # * V@ k) # + ' ' . = . $= Gc $ $= . S$ > > *' $ - & & Q$ > + = - U) . $ A; %= ] - U@ & %= > S$ N$ *' ; H= Q$ ) | & 2 2 X@ 'W ) ( & 2 ] ] N$ ~ | Z! ; { { 2 1 2 { | { /& } { N$ 4 } J) X@ 4 [ 5 d $# k ,# 6 `@.d d 6- $# d &# [ N' { 0 a 7 a x0 V~ 0 0 6 b i e ,# z: 2* k a' 0 c h c 6! 6! 0- v ;= h t' ~# a ~# n p h q #| t 4* s> u p p h Y$ |& c{ r t 2; 2, Y$ u t 1; ^# ^# ^# m #] C N 2; m 1; F 2; G A N I M= I w A F= z A I 8* 8* I I M 8* M S |# H$ O@ |# 3; O@ d{ J J L H E$ |# S C, L |# U^ r! J L M M J 3# E$ P' Q L@ I@ O 0* L@ L@ C$ r9 r9 V O= I@ r9 G$ X X . @. Q' Pp.r5 a* L) G; E@ W +. z$ $% =. ,. 4- z@ Q' 5# z0 >. )& A@ 4- &. Qp.&. X ;. )& $% -. ,. !. *. e- x@ 6, (* -. x@ =. ;. *. !. &. >. 5# A@ z@ !. ). b# ;. '& z@ A@ {. F, !. O= !. $. b# ^. ). x@ 9# B@ x@ d# '& ~. =. )& &. 8& =. ^. =% {. A@ {= %% l> '. ^. (. !. ). ). '. 7; F, c* ). :. ). A@ {. v@ ;! v@ !. ). 5# l> x@ x@ l> d# x@ (. '. /* (. o) w$ [, x@ c# (. (. &. ,& {. x@ <. {. ). {. v{ !. x@ -. ). x@ ). F, ^. W~ &. ;. x@ ,. 5# ). A@ '& {. 5# x@ $. 5# A$ L) 5# A@ A@ .. 6# 7# =. C@ V 5# -. A@ F, =. [, E@ 4& +. G@ O= z@ . +. 4) G@ z$ C$ !> 5# ,= )& C$ 2# V V G@ U L 4# H J O J 9* +. F@ U P (* I@ E$ T v ]& ], ], z~ q, v, x, x, 8' y, x, #' z, x, s, s, y, v, v, x, z, u, s, x, s, s, x, s, H) s, r, r, v, 6' x, H) s, z, 7' s, x, q, v, s, 6' s, v, v, 6' [) [) v, 5' ^, ^, q, v, v, @] v, v, 6' @] 6' v, 8' s, *) *) ^, 6' +' q, q, 5' 3_ =) v, 6' s, v, v, v, s, 6' |) s, s, q, s, s, u, v, v, v, u, s, v, v, v, v, z, [) . $# &# b < { 7 e a +# ) 1 { V~ 2 ) ## X@ { ) 4 2 ", +"X( [: 6' [: z~ q, z~ z~ *[ z~ z~ *[ *[ 9i.z~ *[ z~ Il.Il.*[ z~ *) 9| )~ Ip.*) |1 <{ 9| <{ 9| <{ <{ 9| |1 *) 9| <{ <{ ], I/.8S I/.<{ |1 (}.L$ .( BN L$ l) ]^ ]^ R@ I/ L$ G= #S jP 0' 0' L$ 0' 0' [n 0' 0' = 1) Z, ]& ]& X! * $ + # 1) > 0' + $ k) $ $ . # ]& . S$ Q$ Q$ & . > P$ V@ > > ; - ] N$ S$ * $ S$ ; R$ & U@ - P$ S$ ; & %= T@ - | Q$ | ) H= Z! ^ Q$ Z! N$ N$ | N$ ] R$ X@ ^ ^ ; ; 2 2 ~ [ | %= N$ 1 ( X@ ) { 2 [ 2 I= } } 4 d 6 D, Y> Y@ => J] 6- 7 6- Y@ ( 1 } $# 2 d q> 7 ,# q> 3* 0 6 0 a k ( a a k ~# ~# t' 6! e a n ~# c 6 A~ 2, n ]# c !# n K= h n^ L= n Y$ e a |& n^ q n ~# s> b' n p t 1; ,> p s> B m q w Z$ D m 2; G D w p N /# O@ G /# w I %> N O@ n! O@ %> I z M O@ z M M O@ I I I P@ O@ P@ n! O@ I 8* P@ P@ A M M M L S A: L +% L@ E$ L E$ d- L H T T L@ 3d L T L@ 58 E^ E^ V I@ 4# y@ C$ P' @. 4d )= @. H9 4# . E@ Q' +. +. =. =. $% =. =. =. e- ,. +. A$ =. >. A@ $% B$ 5# 5# #. =. !. A@ A@ #. ,. ;. +. =. ;. 5# R (* +. ;. W~ b# l> 0# -. 9# ;. -. +. -. ). {. x@ =% )& ;. b# ). ;' =. &% v@ =. l> =% ;. ,& b# }@.[, b# b# !. {. ;. x@ x@ ~. -. H! v@ {. !. &. 5& {. ;! '. l> p) +. -. &. d# %% -. x@ ,& '. !. x@ ;. x@ ). &. !. x@ '. ~. :. {. -. w$ >& ). -. x@ {. ,& p) &. x@ ). {. #> !. ). A@ !. x@ x@ !. &. =. ). [, $. V> !. a* {. ). )& A@ V ,& ;. 5# =. =. 3^ A@ +. B$ +. ,. !. =. z$ P &. !. &. ). 5# 5# !. W~ @. G@ 7# E@ . 7# 4# .= +. (* C$ C$ +. .= 9* &. #. L@ G$ z@ G@ @. 3& L@ Y C$ 4# 2# S 2# ` Y I@ T L@ H Y `$ ]& g~ q, v, v, x, -! x, s, z, =) v, u, u, s, x, x, s, v, t, s, s, x, A, s, =) }) v, x, s, z, s, s, +' t, s, s, s, r, v, s, v, x, z, [) x, r, q, s, +' s, z~ *) q, q, @] 6' r, s, s, 6' r, q, +' s, r, =) =) v, @] s, 6' q, v, s, q, =) q, r, 6' s, s, q, s, x, s, =) v, 6' s, s, s, x, z, v, x, s, 8' s, x, u, 8' r, # b &# -# } ## 7 ## ( [ +# } ## { ) @# ( X@ ~ ) H= { ", +"s, [: Mp.q, *[ z~ z~ z~ *[ z~ z~ z~ q, z~ z~ z~ z~ ah.vh.z~ Rp.|1 9| *) Pi.e^ 9| <{ 9| <{ *) 9| ], 9| 2! I/.98.I/.<{ 2^ <{ <{ <{ 9| 9| <{ 9| R@ J$ <{ r4..( .( I/ BN 0' I/ ]& L$ 0' I/ I/ 0' 0' [n 0' I/ 0' I/ + + 0' 0' # + 0' 1) ), ;b $ $ V@ > & [* 5_ $ Q$ > ' $ Z, + > T@ ' V@ $ & ]& R- V@ # * . $= & > |* ' ' ^& > > ] | Q$ |* ] & ; S$ & P$ > ^& R$ ' . ~ ] R$ S$ T- N$ .# [ N$ N$ W@ X@ 2 *# 1 | ~ / 4 X@ [ ~ X@ F:.( 2 W@ V~ Z! Z! 5 /& => d $# 1 d &# => 4 &# 6 6 /& 7 Y> } ( k ,# 6 6 V~ $# a Y> a $# fn.!# !# ,# e ~# ~# ,# K/ h L= |& 0 ]c 7 K/ o C; 0 n Y$ _# Y$ a' ,> tA h ,> s> 0- L= a L= 1; 1; 4* u q Y$ ^# m :# t Y$ t m Y$ 2; t m t w p D u G N ^# n G W) 2; w z 2; A O@ T^ M z n! O 8* a- M A A 3# d{ 8* M T O L Q 4# L U T C$ 4# 0* I@ P' C$ t> D$ 58 E^ r4 @. C$ O= G; r5 @. E@ y@ E@ C$ .= +. $% .. z@ .. E@ a* ,. )& e- +. A@ +. 7# A@ ]. =. ;. ;. t( e- $% .. $% ]. >. 4- %. $. >. A@ &. 5# &. =. )& +. . &. ;. =. z@ H! !. *. '. +. .= =. +. x@ 5; =% -. 5# ;. ;. ). {. x@ !. {. ;! &. !. &. A@ A@ !. ;. B$ A@ -. &. A@ ). &. %% d# t@ %% x@ {. &. {. &. V> '. :. x@ gT !. >& ^. *. ,& ). ~. -. x@ ~. {. {. t@ ;& ~. .= x@ x@ &. z@ ~. {. #> !. 5& A@ &. 5# ). ). t@ ). Sp.A@ =. ;. &. !. x@ *. ). %. ,& &. =. x@ =. !. 0# =. !. #> +. A@ ). ;. &. 7# E@ #. E@ G@ L@ )= +. #. @. #. _* $% A@ A@ @. @. A@ &. +. 5# +. .= T E@ .= z$ z@ 7# E@ R z@ R 1# #. 4# 2# D$ K@ H 5# d- H O T R V O= H T L@ I@ P@ ^ J$ 2! =) r, v, 8' @] v, s, x, 8' s, s, t, y, u, z, u, y, t, r, A, A, y, u, s, s, x, z, x, v, 6' s, s, s, A, s, s, x, =) #' v, +' 5' q, q, 6' t, r, x, [) s, s, s, v, @] q, q, ^, 6' v, +' s, v, 6' s, =) s, x, [) s, u, u, s, v, 6' v, s, v, s, v, r, =) z, s, v, r, 6' x, s, s, 8' z, z, x, s, s, x, x, z, v, ], { d a /& } < 6 $# d { < $# < d *# d Z@ / ~ | 1 ># ", +"x, [: +' [: z~ q, q, *[ q, z~ z~ *[ z~ z~ z~ *[ *[ Il.Tp.|1 z~ |1 vh.ah.2! Pi.<{ <{ 9| e^ *) <{ |1 *) )~ )~ 98.<{ <{ J$ 9| <{ 9| <{ <{ I/.<{ J$ R@ J$ L$ I/.R@ 2^ 9| G= I/ R@ L$ J$ L$ I/ 5_ 0' I/ I/ I/ 0' 5_ # # X! [n # # [* k) K$ $ # # # = [* . # R@ R@ S$ > = 0' $= # + ]& 2) Up.& . S$ - & . [* S$ . U@ & & $ & . > | & - $ > ; . | 2 S$ & 2 R$ ; | ] %= U@ b{ & H= ] R$ X@ 2 ^ H= | { / ~ { { & [ [ ( F:.6 D, /& $# 5 *# => } < } /& } <& d V~ 3* V~ < d d i d $# ,# a V) 6 6 [& -> ,# D, $# $# 2d ,# a 7 ,# q> a L= ~# 3] d 0 ~# Y$ n ~# ,# !# 0- n ~# X$ 0 0 L= Y$ n p ,> y2 Y$ s> r t 4* ;) Z$ ^# s> u 2; :# :# n^ ),.G m W) {& :# b' B /# 2; }# #] C x z ^# G :# G G w z G I z M G A M@ 3# a- G O@ z A G A E$ :* z I 1& M H P@ M H L@ L@ C, t> ` K@ O D$ G$ tw Ld J L 3d O= O= E^ tw E^ P 58 I@ O= @. n) V C$ @. E@ @. a* @. r9 +. #. @. B$ W z$ .. ^3 +. L) A@ !& $% =. y@ (* 5# ;. B~ .. A@ =. >. @. !. >. (* =. ,. &. A@ 7# e- =. F, z@ ;. !. ]. %. %. '. %% ,. !. -. -. A@ A@ $. H! A@ R' z@ >. 5# ;. ). !. '. 7; >& =. .. '. x@ A@ &. &. b# b# A@ ;. H! z@ *. {. '. {. ~. !. x@ t@ H! ^. -. 4& {. ;. '. &. ). A@ d* &. =% ). ). {. '. ). -. ). v{ A@ ;! x@ o) ,& A@ !. 0# 6, ). ,& !. ). z@ . )& A@ (. A@ &. p, +. x@ (* ,& l> ,. x@ &. ). [, ;. =. X . l> &. 5# $% %. z@ >. 5# +. =. -. e- Q' &. &. $% =. P @. )= *. #. A@ &. .= +. V> . =. G@ X @. B$ 4- R }; U X 7# C$ H@ R z$ .= D$ D$ J J J L@ D$ L@ m> I@ 4# $> H @. P T G$ C, 3) d- D$ 6 = J$ q, s, v, s, x, s, s, y, u, x, x, y, x, x, u, y, y, y, s, s, v, z, x, s, x, x, }) x, ' @] v, s, u, v, u, z, 8' v, s, s, t, s, v, q, q, s, q, s, [) x, s, 6' q, v, v, 6' q, 6' 8' s, 6' r, v, s, g] =) s, s, s, s, |) s, z, s, s, v, 6' v, v, s, v, s, g] s, ' v, s, v, s, s, s, H) s, z, x, v, x, v, r, V! ## } ,# $# 1 W@ $# b &# 9 $# < *# $# ## 6 ) &# : 1 $# ( ", +"x, Vp.Mp.Mp.[: z~ z~ z~ z~ z~ z~ q, z~ z~ q, *[ z~ 9i.Il.|1 z~ *[ ah.xi.vh.)~ e^ |1 |1 ^, *) 9| <{ *) *) 2! *) 98.<{ J$ 2^ J$ J$ I/.<{ l) ;b <{ V! ], jP 8S L$ BN BN BN ;b ]& I/ L$ L$ I/ X! 5_ ]& I/ ]& ]& 0' + * # 0' = # # # I/ . ]& 0' + + ]& $ . E! # . > V@ $ np.$ V@ + $ Wp.. !, . [* > > Q$ & . . N$ | =' & N$ H= P$ U@ S$ . & ~ 2 > Q$ [* o! & `@ X@ N$ & | ; ] %= ; P$ 2 ) { 2] ^ 7- ## ] 2 ( X@ { ; X@ < 2 N$ ~ ) 2 [ d V~ } ( } ,# a 6- } 6 $# $# } $# ( $# ,# [{ Y> 5 e ,# Y> $# J] 7 J] a Y> ## d a 3* } [{ g 6 ~# 3* a a a ,# 0 s> 2, ~# vk c ]# 0 p ,> r ]# m 1; u h `$ `$ c{ n 2, s> m D p m D q `$ C 4* _# F u Z$ ^# 4* G F {& m :# ^# w K :# t G G m Q@ I '> I 8* 2; }# G I <# I O@ Q@ O@ A 8* =K J M E I :* :* L n> L' a- H$ T L G$ L t> L U Q r! U E$ Y L U H E^ 0* 4# Q d- C$ I@ ={ d- P' P 2# @. X @. . E@ W E@ C$ 7# C$ R C$ G; =. $% a* 8# +. 6# X a* @. E@ a* . =. !. A@ )& +. ;. &. G$ 5; )& z$ z$ -. &. A@ )& .. $% +. =. *. A@ z@ ,. R' A@ z@ {. .= +. ,. F, z@ %. 5# A@ &. A@ ;. !. )& &. {. ^. ;. )& -. A@ ). '. A@ 5; A@ (* *. ). ). >. ^. &. !. v@ ^. t@ ^. x@ '. ). &. &. ). p, &. 5# {. '. x@ ^. *. &. 5# ). -. (* {. b# (* (* C@ v@ %% A@ -. ). ). l> x@ . <; z@ p, !. +. -. ;. x@ 5# +. ,& &. ). A@ !. (* -. x@ D! 5# z@ . A@ A@ I@ +. (* A@ z@ &. !. =. A@ &. .. 5# E@ )& 5# z@ $. +. '. =. +. 5# 5# +. #. B$ }; 7# .= +. L@ 4# E@ X I@ P G@ V L@ J@ @. C$ L@ L@ X I@ T 3# H I@ }; T d- Y $> L H ` I@ P I@ E$ J 5* o! L$ 2! ^, x, v, x, s, s, u, u, z, u, z, s, s, s, z, x, u, x, x, s, u, s, s, v, x, x, v, s, s, v, s, y, s, r, s, s, s, =) s, u, x, v, 8' v, |) r, v, s, 6' v, s, s, s, s, v, +' v, r, x, ' v, s, s, s, z, x, v, v, s, s, v, s, s, s, s, x, v, v, x, s, 8' v, s, s, u, u, H) 7' x, u, s, x, y, x, s, x, H) `, ]& D, ## ## g 9 ## } $# 8 d $# $# &# 2 ( < { ( 9 &# *# *# ", +"s, Vp.+' 8' [: z~ z~ *[ z~ z~ z~ *[ *[ *[ z~ z~ z~ *[ Xp.ah.2! *[ *[ Il.rp.9| e^ 2! xi.$8.*) 9| <{ <{ 9| *) *) 98.9| <{ R@ R@ R@ <{ *) ], 8S ;b R@ ]^ R@ I/.l) ;b G= BN jP l) BN I/ I/ BN BN # [n I/ I/ 0' 0' 0' # K$ 0' Z, # # + L$ + ]& p9 L$ R@ # $= + $ . + > 1* |* o! = - + # # Q$ + o! [* $ $ . ; ; $ & ] . $ N$ $ - - %= > ; > %= U$ Q$ ~ | H= X@ 2 N$ P$ ) U@ ~ xS N$ ~ | X@ / J) ; ] | | N$ X@ 2 ) N$ ~ ~ [ 2 ~ { } } 4 X@ 2 2 W@ W@ ( ## { ,# 6- ( 6 7 b < F:.( d q> J] 6 ,# 7 e Y> q> d ,# ,# $# 9 i ,# !# a' c g ~# 3] ~# ,# o e ~# h a 0- h ># q> r h L= h n |& n m L= |& n n ,> s> q Y$ Z$ n h m `$ y ^# /# {& {& `$ (# ,> V| D 2; t /# }# {& (# C 2; N ^# w N N G A I z O@ Q@ |# M P@ M P@ P@ E$ P@ |# E$ A I 8* I M h] A M 3; A H O@ M@ 3& T O@ E$ d{ H Y o^ G$ L T L@ O= 2# 4# T C$ X O= 4# T L@ J V r9 O= 4d P $> y0 t> E@ . E@ G; . L@ +. E@ )= 5# H@ .. z@ . .. +. )= $% =. +. ,. e- &. >. A@ df e- &. >. ;. !. )& z@ ;. z@ 3^ (* ;. z@ #. 5# )& b# $% z@ !. >. p, 5# +. x@ o) >. !. 5# )& e- ;. ;. 4- 4- ;. ). x@ e- ). -. x@ !. &. !. &. !. ). &. -. F; +. !. *. {. &. &. ). &. !. 0# !. ). -. x@ ,& -. ~. ). =. &. -. {. x@ ). ^. l> G; -. x@ x@ A@ &. C@ A@ &. z$ D! +. =. -. x@ l> >. !. {. C@ 6# 5# $. !. )& x@ z@ !. !. >. (* !. . +. z@ L) &. . )= +. !. A@ 4- A@ !. . 4& B$ @. !. +. O= 5# +. G$ >. +. @. A@ z$ E@ A@ E@ 7# 0* .. 5# G$ I@ 2# S U T B$ P F@ T Y L' P $> $% 4# z$ J P@ H 2# V L@ C$ }; H 2# }; L@ C$ T 2# |# G ) + e^ q, v, =) z, s, x, v, s, s, u, u, y, u, s, s, x, y, u, y, x, x, s, y, s, s, s, v, A, x, t, s, x, s, x, 8' u, Yp.t, t, |) s, x, v, v, =) v, v, =) r, s, 6' v, s, s, x, s, @] u, s, u, y, A, 5' v, s, +' 5' v, 8' 8' s, s, s, s, =) +' v, s, 8' x, s, A, s, v, }) x, r, x, s, s, q, x, s, u, u, z, s, 6' Q$ } } : 7 -# } 7 :& $# : ## [ D, W@ ~ X@ 1 ## ~ *# ) < ", +"}) Vp.+' Mp.q, *[ z~ z~ z~ z~ *[ z~ *[ *[ *[ *[ *[ z~ z~ 2! vh.z~ z~ z~ xi.9| e^ <{ $8.vh.9| 9| <{ 9| 9| 9| 9| <{ 9| <{ R@ .( J$ <{ <{ *) <{ L$ I/.R@ R@ <{ ;b ;b 2^ 2^ J$ I/ I/ L$ BN 0' G= R@ 0' I/ BN I/ 0' 5_ + # 0' 0' $ # # 5_ # + + + # Q$ 0' 2) # ]& . . & +|.& [* ' S$ > > $ $ . $= . M$ > S$ U@ S$ ] S$ $ ' 1* $= P$ ~ & H= U@ | ~ . ; | R$ ; ] & ; P$ N$ & & ) 2 & ] T- { | ) Z! =' 5 { { 1 4 | Z! < 2 2 < ## 2 2 X@ Y@ 'W ) [ I= 2 2 3* J= a } } $# 6 V$ &# ( /& } ( 3] ( 7 6 q> 6 3] 5 K/ $# Y> 3* a L= $# 3* ~# e ~# z: n ,# [& 0 a h L= ~# L= 6! c6 0 n Y$ v L= (# Y$ Vj }& L= s> u @= 4* 2; q n /# `$ m y ^# p t m m @= h % ^# Z$ % G F= w K D 4* 4* M= m M= G #| O@ #| z I O@ I A z A M @% z A J I H$ z M G D P@ O@ E$ J E$ d- T H H J H 3# M O Oz A L@ T J G$ 3d T T T L@ P 0* O= T t> L@ C$ ={ y@ }; H V X . 4# a* )= .. W d- d- G$ R V .. _* . y@ 5# E@ $% $% >. )= 5# &. Q' )& .. A@ &. &. A@ z@ $% -. z$ .. $% )& #. 5# (* a# ;. )& ;. z@ $% z@ &. &. $. '. ). ;. p, 4) '. &. F, !. 5# ). =. &. ,. !. .= =. A@ A@ .= z@ &. x@ !. ;. -. '. &. b# &. ). .. &. x@ x@ =. !. %% A@ T' ). &. z@ &. %% -. l> ,& 6, l> ). x@ E~ l> (* e- &. l> ,& -. !. 4- x@ !. l> =. =. d# z@ 5# 7# A$ =. ). &. 0# C$ l> !. =. 5# &. ,. @. z@ z@ A@ .= ,. ). &. ;. C@ -. 5# A@ h~ 5# . $% B$ +. =. 5# =. .= R .= )& G@ C$ 5# }; #. 4# .. E@ @. C$ E@ y@ 5# @. X X 4# D$ V . E@ Z L@ L@ R #. 7# .= H H D$ U L@ T T H H P T T P H Z P@ S [ X! *) @] s, s, }) }) y, r, H) u, y, x, y, v, x, u, u, y, z, x, v, y, u, y, z, x, H) s, u, s, x, x, x, s, v, x, s, +' x, }) s, =) s, }) x, s, v, r, v, t, +' 6' v, s, s, s, v, H) r, s, s, x, 8' x, u, s, s, +' x, s, s, u, x, s, x, 8' y: t, =) s, 7' s, s, s, A, s, y, s, z, v, s, v, +' r, u, x, s, s, q, ~ [ 8 $# ) } { } ~ 2 ( $# J= ^ ;# 1 +# { 2 | 2 U@ N$ ", +"x, *[ Mp.Mp.Mp.[: 5o.q, z~ *[ *[ q, z~ *[ *[ *[ z~ *[ z~ *[ vh.|1 *[ *[ 98.9| e^ )~ 9| $8.|1 9| *) 9| *) I/.*) *) 9| <{ J$ J$ ], 8S 8S <{ J$ L$ l) R@ J$ <{ k3 ;b *) 2! 2^ J$ L$ BN BN #S I/ BN 0' 0' L$ L$ p9 L$ = # ]& 0' 0' # + # ]& V@ + 2) 2) # Z, $ # $ + [* - & =' . > $ p9 J$ $= S$ P$ > # $ . > . . O$ R$ ] ]& # # > U@ S$ Q$ S$ T- ; S$ & ; ; U$ ; ~ | U@ N$ 2] ~ ; ~ 2] Z! ) | N$ ~ X@ 05 ## X@ ~ 2 } ## ; 2 } Z! 2 ) ( 7- 8- } 4 } $# } { | d 1 6 W@ D, 6 5 } ,# ,# d d '# V~ e 6 a 6 d a <& 7 4 q> a a {# X$ c {# Y> ~# ~# 0- t' M' ~# 2* d a o L= ~# f c n ,> h K] _# r n c X$ K/ ,> ,> 1; :# D Y$ #] :# 1; t Y$ z: 0- /# b' {& 2; F= G D 4* ^# [# 2; K D #| m /# w N w w ^# `$ I A I 1& x w F= E; A M N G z E$ z P@ I w N P@ o> d{ J J E$ C, |# L A P@ A H$ T J Y T T H T E$ L L T H 4# T J T H L@ 4# L@ 4# O= X @. n) J R @. 4# #. Q' X E@ al y@ ,= X $% ,. 4# z$ >. A@ =. @. . >. =. . &. z$ &. .= . E@ 4# +. F, %. $% A@ &. !& -. =. =. z@ A@ (* ;. R z$ ,= !. $% V> &. V -. R' F, !. +. =. A@ ). x@ -. A@ )& ;. ). +. !. =. ;. x@ ). ;. ). !. 6, ). !. 5# !. p) x@ 8, &. '. &. ). !. '. A@ ^. -. ). '. ,& ,& =. 4- &. 5# &. +. ,. $% '. ;! &. x@ {. x@ ). z@ -. p, &. =. Zp.!. z$ &. 4- =. .= ). ,. 6# &. &. o) A@ ). L) $% F, z@ z@ .. +. v{ B@ A@ E@ A@ +. A@ +. 4- 4) 4& 5# I@ E@ .= V C$ +. W ,. .= I@ . . 9* 5# B$ E@ +. E@ 5# X 4# V 4# O T 2# 2# .= #. #. E@ H P L@ E$ H P O H X> H L@ J +% H H Y L 3; :* P@ S e = L$ q, v, v, s, s, s, =) s, x, y, x, y, x, u, u, v, x, v, x, s, x, s, u, y, y: s, r, x, t, =) H) A, u, x, s, s, s, x, s, s, s, v, t, v, x, x, u, y, x, s, x, s, x, s, x, r, =) s, %{ x, u, v, s, A, v, 5' s, v, @] v, v, s, r, v, v, s, s, v, x, x, x, x, s, v, v, s, u, u, s, u, u, s, =) u, v, s, s, *) ## $# ,# e } 8 : $# ) ## ) ( X@ X@ < { X@ Z@ - *# *# ~ ~ ", +"x, *[ Mp.+' +' 8' 6' q, q, z~ *[ *[ *[ z~ *[ *[ z~ *[ z~ z~ ql.vh.z~ z~ *) 9| ^, e^ *) *) xi.<{ *) <{ 9| <{ 9| 9| 9| <{ *) 9| ^, <{ <{ J$ J$ I/.<{ R@ 2^ L$ ;b L$ L$ jP I/ G= L$ ]^ R@ ]& 0' L$ L$ 0' 0' ]& 1) = 0' # + 5_ 0' + K$ # + # % . $ % V@ Z, = ]& Q$ V@ [* > $ $ 5_ > T@ 0' ]& [* ' $= S$ U@ S$ # . - > & U$ U@ H= U@ ] $ > - %= . | ~ ~ U@ U@ ^ & H= %= & Q$ Z! H= ; ] ~ %= ; U@ 7- ~ | ] ; N$ | ~ ) 2 Z! ~ N$ *# ^ %= W@ } 2 T- < 7- ) ## ~ 5 } d ( Y@ &# 3* k 7- : 8 6 ( k 2* Y@ d D, Y@ a' 6 e k a *# 6 0 ,# ,# L= e c k 7 0 L= L= L= z: L= h 0- e K/ L= g `$ L= h ~# {# ,> q s> L= c c{ q ,> m t p c Y$ q `$ t F m Q{ q ]# 2; w G {& N C 2; 2; % Y$ :# :# )> z '. A@ *. 5# W> v@ 5# -. '. -. #> A@ ). -. ). A@ z@ &. >. z@ !. 5# &. z@ z@ !. 5# &. 5# )= z@ -. -. ). z@ ,& v{ z@ &. z@ @. &. E@ L) l> $% A@ -. E@ =. &. 5# 7# -. 4) V E@ . l> z@ E@ )= s! O= z@ !> V V +. G@ 7# O= E@ #. G@ 1# 4# .= @. O= G$ Y 2# +. E$ P V 2# z$ X H V D$ 2# E$ J 2# Q P@ O @. C$ J O S H T J P@ |# S _# $ ;b q, %{ v, s, s, s, A, u, s, y, y, z, y, y, y, y, y, x, v, s, s, u, x, y, y, u, u, v, z, s, u, x, s, u, x, 7' g] s, s, v, s, 6' x, s, x, s, x, s, s, s, s, 6' r, s, 7' v, u, u, =) s, v, 6' x, s, x, q, s, s, s, x, x, s, x, H) =) v, x, x, H) x, s, s, s, s, 8' s, s, y, x, u, x, x, t, x, x, u, s, ~, { { /& { ## ( 8- $# { ) &# d d [ *# 2 ## ) %= 2 ~ ) X@ ", +"w, z~ Vp.Mp.Mp.Mp.Op.*[ z~ q, q, z~ q, z~ z~ z~ *[ z~ z~ *[ 2! `p.*[ *[ )~ 9| *) e^ <{ |1 $8.2! *) *) 9| <{ 9| <{ 9| <{ <{ 9| 2^ <{ <{ (c.<{ <{ <{ J$ <{ L$ ;b l) p9 I/ I/ R@ 0' R@ L$ 0' 0' 0' R@ I/ I/ <{ + G= 0' Z, # 5_ [n = # V@ + + # * # * # [* ' $ . # Z, ]& V@ $= ' $ $= $ $ }, $= 5_ ' $ ; & & . $= & A; - ; *' %= N$ S$ U@ g{.U$ ; ; & U@ S$ T- U@ Q$ ! ^ ~ 2 ; ] | ~ X@ ; Z! 4 X@ I= 2 | { 4 [ ) Z! 2 2 P$ N$ | | { ( { 7- I= } 1 | { d 6 : b 3* 6 ,# V) ># $# Y@ 6 ( $# a Y@ 7 k a 3] 3* q> vk d 7 / {# 6! 8 ># W$ 6! d 9 6! {# 6 } ~# L= 0- Q{ 0 h ,> e h 3* ;= n K/ L= v s L= `$ Y$ p r Y$ % ^# `$ ,! n c ,> w `$ % 1, 4* G F :# :# Y$ {& ^# ^# u 4* F 1; p w w w G w {& B W) {& {& q! I G G 1& %> M G D z M I A Q@ I A t> O O@ 3& H M :* E$ M K O@ I J Y L' L O@ L L@ L T X L@ |# C$ L@ H d- J L@ E$ C$ L T C$ d- R H T )= X U )= l1 .. .. 7# 4; @. 0* #. X y@ C$ i~ L@ $% E@ .. E@ z@ 7# G@ #. 6# B$ ). !. G@ .= #. V A@ 5# +. z@ >. &. &. $% (* C$ E@ E@ z@ A@ E@ ,. 5# .= &. >. )& $% 5# )& *. )& %. )= z@ 0# ~. b# $% 5# '. >. =. ;. -. '. ;. !. ,. !. A@ (* -. (* %% =. !. ;. .= z@ 5# z$ &. &. A@ ,= -. {. ;! &. C@ z@ ). !. &. &. z$ e- -. +. x@ A@ .. ). A@ ;. *. z@ +. 5# z@ L) &. &. z@ A@ 5# *. E@ &. &. =. -. &. E@ )& !. 5# ;. *. 5# .. 7# +. z@ 5# +. 7# C$ E@ 5# .= (* (* E@ .= ;. +. z@ z$ #. C$ G@ L@ V L@ @. T 2# X L@ U G@ I@ L@ 2# X J T T L@ X> P V 7# G@ H E$ T H H Y h] L' L@ H 8* O@ U H A H E$ @% K@ G . *) ^, q, s, s, x, x, s, u, u, y, y, t, y, y, x, x, s, x, x, x, u, y, x, u, y, x, u, u, u, r, A, u, x, v, s, z, t, s, x, q, +' s, r, s, v, v, x, |) x, s, s, +' x, x, s, x, u, r, s, [) x, v, s, s, s, v, z, x, y, u, s, x, x, s, s, v, s, x, x, s, s, s, s, s, s, s, s, y, t, -! }) x, x, u, x, [) =) $ &# } 6 ~ [ d < -> : ## -# $# $# { } ( 2 { ) { ~ U@ ~ ", +"u, [: z~ Mp.+' Mp.[: [) *[ z~ z~ q, z~ z~ z~ *[ *[ *[ z~ z~ ql.vh.z~ *[ e^ *) 98.)~ )~ |1 9| 98.e^ 2! <{ 9| <{ <{ <{ 9| 9| 9| ]^ J$ jP <{ <{ ], J$ J$ <{ ]& L$ k3 J$ R@ I/ G= L$ L$ R@ L$ p9 I/ ]^ I/ 0' L$ ]& 0' 0' + # + L$ T*.* V@ % + * # # $ + > [* [* + # $= [* > $= S$ = $= S$ =' . [* $ $ . |* - $ S$ ; [* S$ ^& - U@ H= N$ ; U$ $= U@ > H= - ^ $ R$ ; P$ ' ; N$ *' ^ . ] & { $ H= { W@ ; X@ 2 Z@ H= W@ { 7- { ^ | *# { *# 4 / } } X@ 4 X@ } $# 6 G9 ) 6 ,# } ( D, Y@ 8- ( Y> 6 4 d a 7 6! 6- 6 ,# a k Y> a 9 ># 6 6 ~# a } 3] a n !# 0 6 e ># W$ $# c e 6! 7 e a ;= 0 -) r n Z$ 0- s> `$ L= n c 7 r |& ,> Y$ p r 2, :# D ~# s> h Z$ Z$ m V| :# t D :# G ^# C Y$ B Z$ 4* w ^# /# w w D G z z I I I ^# N I N A F= x A P@ H$ z z P@ S z O@ M T 3# L' E$ H o> O E$ M |# P@ J U^ M P@ O 3) U Q P d- W @. L L@ D$ 3# J L@ P I@ d- U @. E@ )= @. I@ d- Y 3) I@ I@ L@ y@ X U G$ L@ L@ @. P +. . E@ 4# Q G@ z@ W Z@.$% y@ +. @. W H@ $% &. H@ )& 5# +. +. z@ z@ y@ =. $% A@ z@ -. z$ {. 5# >. z$ L@ z@ &. z$ @. =. b# 8# ). &. =. -. )& =. G@ &. !. ). &. ;. &. [, ). z@ A@ -. (* -. -. 7# ). B$ ,= z@ =. D@ A@ A@ &. z@ B$ A@ &. &. +. z@ =. -. $% b# ;. e- !. ,& x@ -. &. ,& +. A@ d# l> .. -. &. z@ &. z@ . A@ A$ z@ . A@ C@ z@ A@ &. (* !> 8# z@ (* E@ O= =. . O= +. A$ Q' R .. )= z@ A@ E@ 4# L@ 4# C$ L #. @. V G$ 4# 2# E@ V 4# D$ T ` L@ #. D$ Y H }; S L H 1# G@ T S L@ S L@ ` Y H S O J H H L ` J P@ H I K P@ M J C 4 L$ ], 5' 8' 8' s, s, v, x, z, y, u, u, y, x, s, x, u, s, x, z, y, z, u, x, u, x, s, x, s, v, z, 8' s, x, u, x, v, s, z, s, u, A, v, s, s, u, t, x, A, s, s, x, s, s, A, s, s, x, x, s, s, #' s, u, u, z, z, s, y, x, s, v, t, x, t, u, s, x, u, u, s, s, s, v, s, s, s, y, x, x, x, z, s, z, x, +' r, ; < $# 9 $# 1 W@ ) $# ( *# } } 6 ~ } N$ } { { < 2 { ## ", +"u, [: *[ z~ +' Mp.Mp.Mp.z~ q, q, z~ *[ *[ z~ rl.*[ z~ z~ z~ *[ 9i.vh.z~ 5o.z~ q, 2! Pi.*) 2! xi.|1 <{ |1 9| 9| <{ 9| *) <{ 9| 9| J$ J$ ], J$ ]^ R@ (}.s' R@ R@ L$ <{ 9| I/ I/ L$ 0' I/ L$ I/ #S R@ G= 0' I/ 0' 0' 0' 5_ # + ]& [n + V@ K$ # Z, !, # * ]& + + + $ . $ # + Q$ > = # > = . V@ = . ]& . R- = P$ > ; . ; > & Q$ ; M$ > $= . . . ' ~ $= %= > ; %= | ; S$ %= & N$ U@ 2 H= ' Z! ) 2 X@ ) X@ ~ ] R$ U$ 2 ~ T- & ## X@ X@ | / [ } { } /& [ } 1 } ## 1 2 $# d d } } } ~ $# D, q> &# 6- Y> 6 $# 5 { B; ,# 6 $# Y> : ~# 0 1 6- 0 ~# 0 a ,# b V) Vj e ]# 6 j tA r i L= a c h 0 o c |& q s> ~# ;= t V| p u ,> t 1; p q h n^ r 4* t :# n p m m ^# D 1; F= t D z w p ^# ^# :# 2; A I w :# t 2; A A I Q@ M o> P@ N@ z I O@ I P@ z K A O@ 3; Q@ n! z E$ d- E$ M@ I P@ I O@ A K@ H$ Q@ P@ L H@ Q G$ I@ T T L@ C$ d{ +% 1# T Q Y H T L L@ T G$ W W G$ ` L@ I@ I@ O= @. 4# 3) T L@ 4# I@ C$ +. $% #. L@ X G@ E@ O= A@ $% @. .. .= +. G@ H@ >. $% &. ;. 5# A@ *. V> A@ =. E@ . +. G@ +. 5# +. ;. &. +. 6# .. =. A@ A@ z@ =. e- z@ $% v{ x@ 6# 5# )& &. z@ F@ .. +. D! x@ (* ). 5# &. ,& ,& F, &. @. .. -. z$ F@ (* (* &. -. z@ +. z@ !. 5# z$ &. !. -. l> z@ e- (* A@ &. &. ,. x@ -. @. #. $% W -. &. )& 5# 8# 5# 5# @. 5# .. 4- .= z@ G@ 5# x@ .= 7# C$ B~ z$ @. >. 0# C$ @. F@ .. ). .= .. T 2# E@ W X Y @. T I@ W L@ L@ L@ V $% )= G$ T L@ X P 9* O T T ` P@ L' G$ Y ` T H >) L L@ S J H H O O 4; O D$ T A P@ H$ 3# P@ #= L K@ #= K= $ *) 5' s, 6' s, +' =) u, y, y, y, x, u, y, u, s, u, x, s, s, u, t, y, z, y, s, u, v, x, s, x, z, x, y, u, x, |) x, y, s, x, z, H) s, x, g] s, s, s, s, x, s, y, z, s, z, v, u, u, x, u, x, s, s, s, v, s, z, u, v, u, 8' s, x, u, z, v, u, y, s, s, s, s, s, u, v, x, y, z, u, x, u, y, y, x, s, [: ;# } d $# 7 7 &# } a } ( [& < 2 | } } 4 ) ( | ; ] ] ", +"y, +' 6' z~ [: Mp.+' Mp.z~ q, 6' z~ z~ q, z~ *[ z~ *[ *[ *[ z~ *[ rp.9i.*[ |1 |1 *) )~ Pi.*) 2! |1 Pi.9| 9| 9| 9| 9| 9| 9| <{ J$ R@ R@ J$ $8.<{ ]^ ;b <{ I/.L$ jP <{ <{ L$ L$ I/ 0' I/ I/ I/ jP BN L$ I/ I/ I/ L$ 0' I/ 5_ = ]& [n 0' # # K$ L$ + # $ ]& ]& # $ o! # T@ = R@ > = 0' > > > M$ [* ]& ; }* ] ~;.- . U@ > S$ H= $ S$ - ; P$ * > H= . T- R$ P$ ; & z] (& ; R$ ~;.U$ U@ ] ) { ] Q$ ~ ~ { O$ *# { 2 { { X@ { ~ ] ) [ 2 2 { | /& 2 8- d *# { ) X@ ~ } d Y@ $# 2d ># 1 [{ d } { ># 8 a V) 6- $# ,# Y@ d Y@ ,# ( a d b 0 ( $# i k a n j c h L= !# ~# L= c 0 h c ~# n ]c h ]c L= [& {# h r ~# q n 1; q h t (# _# L= q :# s> r t Z$ D m ^# O' y p s> m m D 1; 2; ^# ^# G `$ G 4* G w D t N w I z . @. z@ ,. 5# =. z@ +. E@ =. 5# +. =. E@ [, L) 5# X $% &. G! z@ +. .= #. 5# E@ ,. (* z@ @. W~ 8# $% !. +. 5# l> 6, ;! l> '. G! 5# .= ). z@ {. A@ #. -. (* -. 6, +. -. -. E@ #. 6# .. A@ .= E@ ;. V> -. l> -. E@ $% .= z@ 4# 7# !. ). . -. *. ). (* 5# .. E@ B$ z@ .= z$ #. a* V E@ .= E@ .= $% G@ 7# @. 2# @. z@ z@ F@ L V .= L@ I@ Y T E@ +. 7# W C$ V D$ H R ` D$ ` Y L@ T T U H D$ H 3& 2# H@ J L@ H@ J T E$ J O ` Q@ U Q@ J K@ P@ J z E$ E$ 3# M ^# > ], ], r, r, s, s, s, z, y, s, v, s, y, u, y, x, u, y, z, x, y, x, x, z, z, x, x, s, u, z, t, x, s, v, =) 7' s, s, y, s, x, u, H) t, x, v, v, x, +' r, y, s, u, x, u, x, s, v, v, u, s, v, x, 7' s, x, u, s, v, [) s, s, u, u, y, x, u, x, u, s, x, y, s, y, u, s, s, s, u, u, =) u, s, s, x, X( *) ## %# : b &# $# } 9 $# : < < @# ^ { { ^ N$ ^ 2 W@ ; & P$ ", +"u, z~ z~ q, Op.+' Mp.Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ *[ *[ Il.ah.z~ ql.|1 9i.*) rl.*) z~ 9i.|1 2! 9| 9| <{ *) 9| <{ 9| ], <{ <{ <{ <{ 2^ J$ 8S <{ <{ J$ BN l) <{ 2^ J$ R@ I/ 0' J$ ^, J$ I/ I/ L$ 0' 0' .( 0' 0' 0' Z, # + 0' $ # }, Gc ]& # $ o! R@ R@ + $ $ $ T@ G= ]& + V@ L$ V@ - = . # $ 0' V@ 1* > 05 H= > P$ & . - ; & - & N$ > N$ U$ 2) - U@ > Q$ ; N$ Z! ^ ; N$ ; ] W@ 2 ~ N$ ' | [ 2 N$ ) *# ( d d ~ 7- [ ~ | / [ X@ < { X@ /& X@ 2 2 < ~ 2 { { ,# 7 &# D, [ { d } 6 { ( } 7 d d 7 d $# ( } 0 /& d k a d {;.a ,# ,# i c ,# ,# ~# 0 e 2* k Q{ 0- A~ K= e h e a ~# {# o L= ~# Z$ r n `$ r `$ `$ Y$ |& p w % _# Y$ % c 2, r Z$ % 1; (# /# m F /# % C ^# 2, w ~& % t /# m G G 4* G w C x G O@ I z W) Q@ O@ D I C z w z M K P@ E$ E$ M A h] J I$ h] L' E$ 1& L M N ` L C$ L H |# d- L@ S H d{ P' L@ Y 4# O= V 7# D$ P@ O= R L@ I@ L J 4# 7# .. #. #. J 4# B$ P d- G$ I@ a* B$ C$ .. z@ 4& a* e- E@ E@ ,= P 5# >. $% . E@ +. =. A@ 7# . +. . @. +. a* #. +. 7# . 5# &. >. 5# 4# 5# !. ,. A@ .= A@ )& 4& 5# =. (* =. &. ). z@ &. X .= ). +. )= z$ A@ . 4& &. b# p) -. 0# z@ .= &. V> z@ ;. 5# z@ x@ {. 5# A@ ;. .= G! A@ d# *. +. .= @. X z@ G@ .= <; 5# +. $% A@ 5# +. ,= z$ A@ ,= z@ O= +. V =. .= A@ +. (* E@ y@ z$ E@ .= V A@ z@ z@ z$ Q' 5# )= 7# 5# .. P +. X X . B$ H@ S C$ H H E$ G@ H T J J ` L@ H U T H@ P L@ O L@ 3# H L@ +% K@ J L@ X L@ ` E$ J ` ` 4# C$ J H J 3& H M@ |# o> A H ` H E$ P@ K@ y N$ V! *) %{ [) r, s, s, u, y, x, s, s, y, u, y, x, y, y, A, s, y, v, =) s, s, s, u, s, s, x, x, u, s, s, v, s, s, x, y, x, s, s, x, u, y, x, v, s, +' v, z, u, u, v, x, 8' s, s, s, u, s, x, y, s, x, v, x, s, ' x, s, u, u, x, t, x, y, y, x, x, H) s, x, x, s, u, v, u, u, u, u, x, x, u, t, 6' V! } : [ +# { ## } [ ) } | [ $# { < ) { U$ H= { ~ { 2 W@ ", +"y, Mp.Mp.6' z~ +' z~ [: @] Np.z~ *[ z~ z~ z~ *[ z~ *[ z~ z~ z~ rl.2! vh.z~ z~ 9i.|1 $8.|1 )~ |1 ah.$8.e^ 9| 9| *) 2! ^, <{ 9| 9| 9| 2^ ], 9| <{ R@ .( J$ ;b J$ R@ R@ J$ <{ G= BN J$ L$ ], BN R@ 0' G= J$ BN 0' 0' L$ [n 0' 0' # # ]& [n # # * ]& # # + R@ + # $ V@ . $ . T@ & $ Z, ; o! $ # > 0' = - + # Q$ > . . . - . $ U$ H= & & | P$ & S$ ; U@ S$ %= U$ Q$ . . > & ~ ] ] | ;# | 8- /& | Q$ | %= X@ ) } ## 7- 1 ) ;# { { J) | } X@ ;# /& ( *# /& X@ 7- 1 { 1 $# J= <& 1 [ I= 2 ## /& ( $# a } Y> ~# 7 6 [ 5 Y> } $# 7- 9 6 d j a 0 0 e $# Y> X$ ]# 0 $# a a' c A~ s> c n L= a n 0 r `$ L= 2, ^# K/ ]# h q `$ _# h }& Y$ @= h D % ^# b' 4* :# ;= /# w 4* :# /# G m D D Y$ /# {& w ^# `$ Q(.z N= w I m G G C /# I G /# z I M N I m O@ K@ z I z |# U T P@ P@ I H A H |# M T H @% d- J |# J J H P@ T J C, E$ H t> C, 3) L T L I@ 3) L@ U L@ C$ P X y@ Q' X X W H Y C$ 2# 7# X X @. R X a* P .= A@ @. E@ O= e- .. . +. .. +. P 5# . +. @. y@ e- . 7# A@ >. L@ 7# A@ +. .= . W ,= +. E@ F@ @. 5# G@ A$ >. e- +. =. =. $. {. 4) .= A@ @. E@ =. 4& H@ Q' .= !. 5# ,= !. -. x@ &. b# {. z@ E@ E@ A@ &. -. $% -. z@ A@ E@ .= A@ . (* E@ A@ 4& E@ ,= F@ d- .= -. *. A@ W G@ 5# R z$ W ,= .= G@ T C$ &. z@ V E@ D$ 7# +. 5# &. E@ E@ .= B$ V 4# =. .= n) V .= y@ +. 4- C$ C$ X X C$ z$ $% P L@ L@ U Y H d- L@ +% L@ V T P@ 3^ X Z 1# L@ Y T ` H L@ U @. 4# #% Y S Y U M@ O 3# A :* H K@ E$ H$ J 1& P@ ` Q@ a- H M P@ 1& ^# 1 L$ <{ ^, [) s, H) v, u, x, u, x, u, y, x, s, u, u, y, x, x, y, s, s, y, x, z, u, x, u, s, x, x, s, s, ' s, s, z, u, x, u, =) z, s, u, x, u, x, s, s, s, x, s, s, u, s, x, z, x, A, x, x, u, y, u, s, H) u, x, s, s, z, }) s, z, z, z, y, u, s, x, s, u, x, z, y, y, x, x, x, y, u, y, y, s, 6' R@ [ b ## ( < } { ( } ## ~ ~ d Y@ < { 8- ) U@ [ ) { [ [ ", +"y, 8' Mp.6' q, +' 6' +' +' z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ ah.vh.ql.z~ 2! xi.2! )~ *) 9| xi.*) 9| <{ *) |1 *) <{ 9| 9| <{ 2^ J$ <{ <{ <{ R@ J$ ;b <{ ]^ ]^ ;b <{ 2^ J$ 9| <{ I/ k3 R@ I/ I/ J$ ]^ I/ BN L$ + 0' [n # # + 0' 5_ # # 0' V@ G= 5_ + <{ k) ]& 0' ]& # . S$ # Q$ ' $ . . ]& = # 0' ]& ; > > V@ > = # *' +i.$= k) S$ | %= H= N$ ; & & A; X@ > N$ | o! o! ] & U@ Q$ ' U$ | ) Z! H= P$ %# N$ ; ] X@ xS %# ! | { | U@ X@ W@ 4 7- N$ 7- g{.2 V~ [ ( } / } / 7- 1 &# } ## d 7- 2 } } ## Y> &# } a $# 1 J= a /& [ } 9 ( 5 3* ~# ~# g 7 e 7 ,# a 6 2* k k 0 a' 0 ~# 6 h [{ c :& m r n K= r 0 `$ n t' e ~# h t % ~# p t 9- _# `$ Q{ `$ C; m r :# 2; ^# C B F m w Z$ D w D /# z ^# N 2; m @= 2; G :# I I b' 1; Q@ N= z N /# K A 1& M ~& K@ H$ @% 3; E; I |# S I P@ K@ O@ B A |# T S I L' E$ P@ J J P@ L H M 5, C$ D$ O@ 3# |# I@ L@ L@ J P G$ P' V C$ X C$ O= X W I@ ` V Y X L@ 3& X $% W H 4# C$ G$ $% C$ E@ e- @. z@ =. .= .. X X z$ C$ $% ,= P 5# A@ .= X +. H 4# .= X E@ . C$ G$ @. =. E@ +. &. #. +. #. E@ -. +. #. .= E@ 5# !. B$ z@ +. @. 4& .. z@ .= .= *. .= &. B$ -. 4) z$ z@ +. A@ D! 4- . F@ B$ z@ 5# {. &. O= X z$ E@ z@ *. z@ #% @. (* $> .= .= 5# &. V E@ +. z@ .= E@ Q' H C$ 4# X ). B$ E@ (* 0* G$ G@ 5# R .= 5# $% R X P A@ C$ 4# @. @. T L@ V P 2# H P I@ .= P E@ L' C$ T d- L@ H T H Ld H@ H L J P P H I P@ J L@ 2# L@ P@ H O H L@ L@ 1# I@ L' ` M S L@ P@ E$ O@ K@ 3# Q@ E$ P@ S M P@ A |# c- x :& $ <{ 5' g] H) v, s, u, s, s, v, v, z, }) s, u, z, x, y, y, y, u, u, u, v, s, 8' s, u, y, z, s, x, x, u, x, s, s, v, s, s, v, x, s, A, v, v, x, v, u, v, s, s, 8' x, s, s, s, x, x, z, y, x, x, y, y, x, u, x, x, y, y, u, s, 8' s, z, y, y, y, t, H) s, v, 8' y, y, x, x, y, u, x, z, z, x, s, ] } X@ / $# [ [ X@ < == < } *# ^ 2 { [ ( / [ ~ N$ | ( ) ", +"y, +' +' q, z~ q, +' [: +' [) [) z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ z~ *[ vh.rp.*[ *[ 2! xi.*) 9i.9| vh.$8.9| ], 9| 2! *) *) 9| *) I/.J$ R@ R@ <{ <{ <{ ], ;b <{ ]^ *) 9| I/.<{ R@ *) *) L$ J$ ]^ 2^ L$ ]& I/ 0' I/ 0' R@ I/ 0' + # K$ 0' 0' + * $ 5_ J$ {c Z, + E! V@ + I/ $ + $ [* > . L$ > > > + V@ . $ + ; U@ H= . . U@ $ > - . 05 Q$ =' op.%= %= Q$ $ > ^ S$ N$ R$ ! | 2 ; & X@ N$ R$ . . %= N$ ; { H= | - H= X@ ^ ] S$ *# ) R$ 2 ## ) 5 N$ { } [ ) | d ## # ) 1 1 6 k J= ) Y> &# 2 ( 4 } ( d $# ,# `@.1 ,# 0 ~# 1 6 e b N' q> 6 2d !# } } d 3] o ~# ]# {# x0 o 0 ~# t' k j c 0- i ~# L= e n a K/ p h L= p ~# ~# Y$ p ~# 2, 1; :# 2, 4* s> r {# ,> :# m 2; {& y o _# `$ m C G 4* q % z ^# D w N ^# C; /# D w G w w I N F= G z n! {& z z a- w P@ I :# O@ H S z K@ 1& E$ M I t> G$ |# J J 3# J J 1& Y L O L@ C$ P@ T d- 3# ` L@ T T |# L@ I@ 2# H$ I@ H I@ I@ J T S H T L@ Q L @. Q P #. I@ E@ T #. G$ L@ V P +. I@ z$ E@ I@ B$ )& 5# G@ 5# 5# 9* H 7# 2# H G$ 5# z$ L@ .. C$ P *. +. W .= 5# E@ ,. $% V z; P @. D@ V 5# +. +. ,. C$ H@ 9* G@ O= =. .= r4 A@ A@ 6# A@ .= (* E@ .. z$ =. E@ 6# &. [; )= 5# z$ $% @. z@ 4# @. z@ P .= ,= F@ 5# (* 5# 5# G@ 5# 5# e- 5# .= (* +. . 5# )& 5# O= E@ P 5# 5# +. E@ 7# X W V +. $% H@ @. 4# R $% R K@ D$ C$ C$ 2# H T I@ }; }; }; C, }; 1# &' 4# T J D$ 3# H +% P@ 1# H@ C$ 3; X o> T S P U E$ P@ ` ` P@ L@ J L |; L@ J Y ` K@ 3# M J |# 3# S K@ M M@ C, L J A K M P@ M d{ F= `$ = L$ ^, g] g] s, u, y, s, s, z, u, y, u, u, y, u, s, y, y, u, y, x, s, u, x, x, x, x, y, y, s, s, u, x, z, y, u, x, y, 6' =) s, 8' u, s, v, u, s, u, s, x, x, x, x, x, x, s, x, z, y, y, u, 7' y, z, y, x, t, x, y, s, s, s, s, s, x, x, y, x, v, s, u, v, 8' u, z, s, v, x, y, z, t, x, t, 6' ~ } $# Y@ $# [ *# U$ : 2 2 { 2 < ) X@ } | 2 ) 2 | U@ | ~ ", +"y, Mp.+' v, 6' q, [: +' Mp.v, z~ z~ 6' [: z~ z~ z~ z~ z~ z~ q, *[ *[ *[ 9i.vh.*[ 5o.2! 98.e^ )~ 8S vh.|1 e^ *) 9| *) *) *) 9| 9| <{ <{ <{ 2^ <{ <{ <{ 2^ $8.<{ <{ 2^ BN <{ ;b J$ *) *) jP I/ L$ I/ 0' 0' G= L$ 0' I/ R@ 0' 0' 0' # * 0' J$ = * dp.]& <{ # L$ + # & k) L$ .( > + . > V@ M$ Z, > & ]& ]& # *' [* & S$ > !, . S$ & ; |* - $ S$ N$ ; U@ S$ & > ; U@ ; |* ; %= ] ~ ~ X@ X@ H= | U@ ; R$ & *' ~ ) | X@ N$ H= 2 { ) X@ N$ | 2 N$ ~ 2 | W@ 7- d 1 X@ d 5 &# / ( $# 4 } } a 5 D, d } } 7 ( J] &# 6 I= 6 a ,# a &# 8 6 d d ~# $# ,# Y> a ~# 9 a Y> a c 6! ,# L= c 3* ]# e 0 } o p V) {# L= 7 9- ,# n c{ s> _# r % h q ^# ,> r [& |& r |& q m % Z$ `$ `$ 4* D :# p ;) ^# r `$ s> `$ /# `$ p ^# ^# 4* ,> _# I w /# M /# w z z /# x I I N w O@ P@ w E$ w w n! 8* M M M@ J L a- G E$ J S P@ J K@ E$ P@ P P P H U T 3& L Y J D$ P P@ H I@ s! J H |# L@ I@ E$ X Y T P L@ I@ C$ L@ C$ R L@ 4# I@ L@ I@ Y U V +. @. V P O= fp.H@ X C$ L@ .= V> V 4# T P C$ +% 2# G$ [; =. +. E@ T C$ @. X . +. G@ H @. L@ P +. +. V E@ C$ 7# .= V E@ z@ V V 5# E@ O= P 5# . .. +. 5# R . =. B$ V B$ E@ P 4# B$ #. @. B$ #. z@ F; 5# @. .. C$ z@ .. +. =. z$ ,= +. G@ . 5# )& 5# A@ .= e- z@ 4# 4- +. A$ B$ R I@ z@ &. . W E@ y@ O= L@ @. E@ . 2# V 7# #. D$ n> V S G$ P C$ =. y@ .= 2# E@ 1# G$ M@ F@ 4# Y P ` Y H J U K@ J E$ +% P@ L@ Y C$ Y ` M@ S M Y L@ M J H$ J M S Y J E$ #= S P@ T S M I M S O@ P@ N@ H$ I H I I /# w Q$ ], q, x, v, s, v, =) x, s, H) u, u, u, u, z, x, v, u, x, x, y, y, y, y, y, y, y, y, y, u, v, s, u, u, x, u, y, u, x, u, 8' s, x, y, u, u, s, s, t, v, x, u, u, s, u, u, s, u, u, y, y, A, x, y, u, A, A, t, u, u, s, s, s, u, u, x, s, u, y, A, z, u, s, x, x, s, x, u, u, y, y, x, s, s, 2! ) 9 $# 7 [ ( < / X@ +# { < 1 | } ## $# X@ ( ) & 2 ) | ) ", +"y, q.8' Mp.6' q, [: +' Mp.6' [: z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ *[ q, ql..q.9i.*[ 9i.xi.|1 Pi.*) 98.|1 ^, <{ 9| 9| 9| 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ ;b J$ G= J$ <{ J$ jP jP 2^ R@ R@ ]^ L$ 0' I/ I/ I/ 0' <{ I/ I/ I/ 5_ # + X! p9 # * = + # # ]& # # [* $ ]& $ . # . V@ + ]& # ' o! T@ # = $= U@ S$ $= & U@ . |* ' > %= = > Z! U@ N$ Z! & > Q$ * . | > U$ & ; ) ] X@ & N$ ] N$ P$ & ; *' W@ 2 N$ ; H= { / ) U@ 2 T- { (& 1 ^ X@ 2 ) 8- / W@ 2 ## ( X@ { } Y@ ( d / 6- [ { } ~ } &# ( 1 d 6 x0 6 7 8 a ,# a a ,# V) [ d 7- 6 $# ,# b i e K/ e 6! 6 0- n ~# j 0 e *= _# 0 {# ~# L= n n K] ]# ,> `$ n e ~# ~# ~# Q{ K/ Y$ Y$ D 1; K/ % 1; ~# q {& @= Z$ Z$ w w 4* [& Z$ (# p ^# t 2, C G p Z$ G /# z /# @= 4* G I :# N {& G z {& E; A A w N w x K M M I M A: 3# P@ H$ O@ E$ N M n> S M h] M 3& H H J H L' m) H O@ T +% D$ 3# 3# 2# Q L@ L@ H 4# Y T I@ W P@ T C$ 5, C$ J H @% d- J H H }; T P H X .= V G@ L B$ X r! 3) $. .= E@ O= #. B$ 3! J B$ +. C$ G@ I@ C$ ,= @. B$ R +. +. R 2# J O O= E@ V E@ X 4# V X A@ $% =. C$ C$ .= O= ,= ,= !. $% R R 4# z@ ,= X X C$ .. 7# 3! z@ ` D@ z$ R H$ )= _* *{ W 5# z@ z$ V .= 5# W R (* 5# +. E@ V Y .= X @. 5# @. +. ,= $% &. 9* @. .. B$ i~ O= 9* L' W #. 4# E@ z$ V ;. 5# L@ L@ O .. I@ H M@ r! L@ K@ J S C$ 1# D$ D$ F$ P Y 1# S O Y C$ T T S 1# H$ M@ O c- P E$ P@ O O H L M P@ S E$ S L@ P@ M@ S h] 8* O K@ P@ J P@ P@ D$ P@ M P@ #= H I P@ K@ O@ z N@ ~ L$ [) v, =) z, A, t, x, x, s, x, x, s, u, u, y, s, t, y, y, y, u, u, y, y, z, u, y, x, s, y, u, s, x, x, y, u, u, s, u, s, u, y, y, u, H) =) s, y, y, u, u, y, z, y, u, x, |) s, x, s, x, z, v, x, s, u, x, 8' z, y, y, u, y, y, z, x, u, u, y, t, x, s, u, u, z, u, x, y, y, s, t, x, x, ]& } d $# { 2 ( [ < W@ < X@ *# ## ~ ## R$ ( ] 7- %= T- X@ ) ~ N$ ", +"y, +' Mp.+' Mp.[: z~ Op.Op.z~ Mp.*[ [: z~ z~ z~ z~ z~ q, z~ z~ z~ z~ z~ z~ vh.ah.*[ Xp.ah.xi.e^ Pi.<{ |1 <{ <{ 9| *) 9| 9| 9| 9| 9| <{ <{ 9| <{ J$ <{ J$ J$ <{ k3 J$ ]^ R@ <{ ;b BN L$ I/ 0' I/ ]^ G= 0' I/ I/ I/ I/ BN R@ 0' 0' = # $ X! 0' 5_ $ # ;b % $ L$ + ]& # # # 5_ [* o! $ . V@ Ez !, > > & > . Up.H= S$ ; N$ S$ > |* S$ . A; $ k3 & ; =' * | & = U@ ^& - Q$ ] ; ; T- A; g{.8- ~ & ~ ~ U@ ] . & < , 2 P$ Z@ 2 : R$ W@ 2 [ [ { [ 2 O$ { } < ) ( 2 $# &# ~ 5 ## ) ( { d ( *# ( 6 B; 2 N' N' { 2 /& } W@ $# 8 $# V~ { a ># /& *# 5 D, 6 k c6 e a s> a a 9 6 $# {# 7 K/ $# g ~# 0 L= ~# n n vA ]c 0 c h `$ [& Y$ ~# c c L= 1; % h :# 5` s> ^# n y Y$ Y$ L= `$ Z$ t % s> p `$ 1; 4* G w 2; I ^# m G w w F= w t w w G /# @= G O@ z I F= w G G M A S n! z H$ J Q@ o> M M A 8* a- P@ J |; E$ )W U G$ T I@ H L@ H d{ 4# Y H b- J@ T ` T V 4# H J Z L V P X T 7# H P L@ #. I@ 9* T J L@ U 4# 4# I@ T C$ $% O= O= G$ 1# }; ` I@ 4# C$ V +% J Y 1# L@ S G@ 4# 9* H K@ G! }; ,. .= @. 4# E@ }; I@ J@ I@ )= e- R 2# V G@ G@ 3! T C$ E@ G@ V 4# P .. G@ ,= V E@ L@ R ). . (* 4& . I@ z@ e- ;. #. F@ I@ L@ J +. (* 5# . z@ D@ O= G! @. G$ L@ W )= R C$ 5, X T @. @. C$ W z@ (* A@ O= Q' E@ 4# V @. O= X .= d- >) M@ L@ 4# 5# 4# }; H@ X .= 7# G@ D$ I@ T O X Y H E@ Z C$ D$ +% P U ` V T P P H$ P@ S D$ D$ H@ Y 3# Y Y P@ T ` C, E$ :* o> L@ J H S 3# M H E$ ` M@ P@ J H M A 3# S O A M x Z$ I I z M I 3* . %{ z~ s, s, v, s, H) u, v, x, u, y, y, x, u, v, A, y, y, y, s, s, y, y, y, y, z, 8' s, z, y, u, =) =) s, 8' u, z, u, x, s, u, u, u, z, u, y, y, y, y, y, x, s, u, x, r, y, u, u, x, y, u, t, s, s, s, y, x, u, z, y, u, y, x, u, s, z, x, s, s, x, x, x, u, x, x, y, y, u, x, y, z, x, # $# } } $# < 4 ~ ## [ ## ## < { 2 %# ) N$ P$ ~ o! & - { N$ ~ ", +"y, +' Mp.Mp.Mp.Mp.[: [: 6' [: +' [: [: q, z~ z~ z~ z~ z~ q, z~ 2! 9i.e^ z~ 2! ah.*[ z~ &[ xi.ah.Ip.|1 xi.|1 )~ <{ 9| 9| <{ <{ <{ *) <{ <{ 9| J$ <{ <{ <{ J$ <{ L$ J$ J$ J$ ;b I/.J$ 2^ BN ], J$ R@ R@ I/ I/ L$ I/ 0' I/ I/ 0' 0' [n $ = 0' 5_ 0' 0' I/ L$ J$ $ = ]& ;b # [* k) ]& $ k) Q$ . (& +q..( $ . $ + V@ S$ H= # A; > U@ S$ U@ N$ o! & P$ H= ' > ; > - > S$ & ^ X@ %= > ; | & ] & Q$ Z! ^& | N$ Q$ & I= | ~ %= ' ] I= { 1 7- X@ | [ 2 N$ ) ~ X@ , $# *# < g{.| %m 1 ( ( [ b 5 $# } ,# $# [ 6 Y@ } ( { 5 { ( 5 i } / 7 ~# d 6- 6 ># 5 a 0- b Y> d 6 6 a Y> 6 0 L= o h ~# 2, c ( a ~# L= h L= n 7 0 L= p n `$ h k n Y$ e n^ p ;= E, r s> Q{ K= s> c{ p Y$ V| D 2; p y p! % {& /# o/ 4* D m w B ^# h % @= G #] w t 5* z N F= ^# }# /# N 8* N N [# O@ z w I E; N O@ P@ A I O@ A I P@ A 3& A I :* Q@ L E$ H Q E$ T U |# L@ s! 5, H C, J M@ L@ X I@ E$ T J 1# T ` C$ X +% d- T 2# ` L@ S L H C$ H L@ G$ 3# L z$ I@ E@ @. @. G@ d- J L@ J . )& E@ 3& .= .. I@ Z +. 5# E@ 4# I@ H V E@ B$ H G$ L@ T 2# 1# L@ H 1# 4# D$ Y $% !. .= .= z@ 5# .= 5# V B$ H@ D$ V X 5# R #. >. z@ X W B$ A@ z@ R #. I@ t> |; 9* 3& }; z@ @. 4# #. #. .= C$ +. @. F@ .= 4# V Z C$ C$ 5# @. V G@ O= L@ D$ . }; E@ 7# . (* L@ O H H r! C$ 4# ` R E@ J T H@ $% C$ L@ C$ P P D$ P@ 3; 4# L@ P@ T 3) ` &' J L@ F@ H X 3) H E$ P@ K@ Y P S O 3& T P P H O z 3# M O S H H E$ P@ P@ P@ M E$ M@ J M G Q@ M M @% z E$ x /# A A G q! I o > e^ ^, +' s, s, 8' x, x, =) x, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, w, #' u, u, }) s, s, x, x, s, s, s, A, x, s, u, u, u, #' z, y, u, u, u, w, u, u, s, s, s, u, y, y, z, s, H) u, t, z, -! +' x, t, u, u, s, u, y, u, s, u, A, s, z, u, u, x, u, y, y, x, x, y, v, v, - 6 Y@ < I= : -# ) ) : 1 *# Z! ## *# { ) N$ ^ X@ # H= ] N$ ~ %= ", +"y, +' +' Mp.+' Mp.Mp.z~ Mp.Mp.+' Mp.z~ z~ z~ *[ *[ z~ *[ z~ z~ 9i.z~ *[ z~ *[ Il.9i.z~ 9i.xi.xi.)~ )~ $8.xi.vh.9i.9| w9.9| <{ 9| 9| 9| 9| <{ R@ <{ <{ I/.<{ 9| <{ <{ R@ l) #S L$ #S 2^ *) L$ BN (}.2^ p9 0' I/ I/ 0' 0' 0' 0' 0' 0' 0' * + 0' 0' Z, ]& # R@ ]& + ]& ;b K$ . ]& k) . . $ . & =' M$ + > + R@ |* S$ S$ $ |* U@ S$ > > > ; S$ U@ U@ *' - * > ; & P$ > S$ & ; P$ U@ U@ S$ U$ ] | | %= | S$ - & N$ N$ ! [ ~ S$ N$ %= R$ { , | { ) [ =' ) | ] `@ 4 7- ~ 7- N$ Y@ / < 2 ) } D, [ [ d J= 8- Y@ { %= Z! d { 4 5 1 1 1 6 a a } -# e j ( 3] N' e c ~# ,# } ,# a ~# a' o 0 K/ 8 2, Y> ~# 0 L= n 0 n c s> i g ,> ;= ,> n h r Y$ c ~# L= n n y % ~# C; s> `$ t 1; s> s c `$ ^# b' p Z$ m p w ^# p t Y$ :# m w w m /# I ~& 6* /# {& m D D z E; O@ Q@ P@ P@ M P@ P@ a- O@ I J Q@ O@ P@ P@ O@ =K E$ O@ E$ I |# E$ c- |# I@ H E$ I Q@ A 3# T T 3# A T O T L 2# J E$ J K@ L@ L@ E$ Y H Y E$ I@ N@ H$ P ` L@ H O Y 1# T 2# 1# D$ L@ P G$ E$ S d- 7# C$ @. G@ R D$ Z D$ I@ E@ }; T V 7# 1# P @. 4# P G$ D$ Z I@ H G@ O= E@ G@ X 4# }; F@ +. H@ C$ 5# B$ @. T L E$ L@ H L@ @. H@ E@ B$ 5# z@ X .= @. I@ +. z@ #. G@ E@ 4# T y@ e- V> X A: P ,= C$ #. 4# @. C$ +. C$ O= M@ T z@ (* C$ C$ (* O= H #. 3) L@ E@ E@ L@ X L@ L }; X E$ 4# 1# V J@ I@ L L@ L@ C, L@ Y X G$ Z O O L@ V P I@ Y .= L@ Y Y P@ M@ L@ E$ M@ M H$ O P@ K@ E$ |; J C$ H H +% L 3# H J H P@ #= T S M P@ T J H L@ P@ P@ I H M K@ M P@ @% H$ I G M A N G ^# p $ <{ 6' v, x, s, v, u, x, x, x, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, x, y, u, s, x, y, y, y, y, x, x, x, x, u, x, x, t, y, y, s, x, y, u, x, u, 8' s, s, u, y, z, v, y, u, y, x, s, s, r, s, y, y, y, u, y, y, x, z, y, y, y, s, u, x, u, y, y, s, s, v, t, s, v, ; { ## } < ~ ( == } /& -# < { W@ U@ ) ;# ; [ { ) 2 | | S$ ^ ", +"y, +' +' +' +' Mp.Mp.z~ 6' Mp.6' Mp.z~ z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ 9i.z~ *[ Ip.vh.9i.z~ xi.xi.|1 Pi.9| xi.xi.)~ *) 9| *) <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 2^ <{ 9| l) R@ I/ J$ 8S BN *) I/ BN ]& R@ BN BN I/ I/ 0' 0' 0' 0' L$ I/ I/ + * ]& X! = # Z, L$ ]& # = + % + $ + $ k) . Q$ (& @q.R@ ]& # }* = . V@ Q$ . ; ; > > > > S$ $ T@ U@ . U@ - & X@ ; ; U@ = & |* > ; .# . + > > & N$ T- { ; ; R$ Q$ %= [ | N$ ] N$ *' [ | ) ( { ## X@ [ ^ 2 ~ ~ 2 ) ~ 4 N$ } } 1 7- } 5 I= } 5 4 J) I= D, { *# ( } $# d 7 Y@ 9 a 8 $# $# I= 6 d : == ># 7 $# 0 6 ~# !# 0 !# B; k a 6 6 a ~# ~# 8 g ># e 0- ~# m n 0 v {# Y$ h h ~# ,> r s> s> -) n p r L= r Y$ p :# Z$ p `$ c % `$ /# ^# C 4* % Z$ ^# ^# t h t % G 4* `$ % ^# E; m t /# Z$ K G G G w C I A P@ Q@ 8* M G C O@ z A |# O@ I I N %> |# 8* A O@ P@ Oz H P@ J 3& O E$ J Y Q J H L@ 1# 4# J Y J Q T n> O H P@ P@ Q@ J ` P 1# P L@ L@ J 3; |; H |; O J +% M@ H$ P@ L@ S 7# I@ U J@ V V 7# W C$ H 2# U H@ I@ L@ #. y@ C$ T 4# @. E@ T L@ H@ U .= D$ 4# }; P I@ J Y I@ X 4& .. 2# D$ H S 1# z$ X H 4# @. z@ Y F@ C$ E@ C$ G@ 7# V 4& V }; F@ P J I@ B$ 5# G$ 2# 4# C$ L@ I@ @. W I@ 4& +. .. 9* L@ L@ C$ z@ 4# }; I@ T L@ D$ C$ #. W 1# L@ ` P r! |; O D$ 2& L@ H U H ` L@ P P S 2# H L@ L@ |# H L@ P@ H L@ ` L M@ S M d- Y K@ S H J M@ S J +% L H H L Q@ 1# O 3# c- M M Q@ P@ P@ S K@ I I x H$ E$ M@ O@ M N A M O@ S M z I I I G G w C (# O$ ], ^, [) s, A, s, v, s, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, u, z, x, s, s, u, u, x, u, =) s, x, u, y, u, x, u, y, u, s, u, u, x, z, z, x, x, u, y, y, y, s, u, y, y, y, y, y, y, x, y, y, x, z, u, y, u, v, u, x, u, v, s, z, v, y, u, x, 8' s, u, }) 6' ~ : } 4 U$ < ) ( | ## [ ) ; { { 2 ) & 2 : 2 *# %= U@ ] ) ", +"y, s, [: Mp.Mp.Mp.Mp.z~ z~ +' [: [: [: z~ z~ *[ *[ *[ z~ z~ *[ z~ z~ |1 q, z~ z~ ah.ah.z~ 9i.2! 98.*) )~ 9| 9| 9| 2! *) 9| 9| <{ <{ 9| 9| *) <{ R@ J$ J$ <{ ], I/.<{ L$ 2^ BN J$ J$ <{ ]^ J$ ], J$ R@ I/ BN I/ I/ I/ ]& 0' 0' I/ 0' I/ p9 # $ + I/ + # 5_ = V@ $ + + # # L$ = . ' }, . > > . . S$ & > . U@ ' !, S$ . !, = - . Z, $ N$ S$ Q$ - Q$ $ Q$ & . Q$ & + . . ! > ' U@ ^& Q$ ; | ~ ~ ) 7- | Q$ /& ~ g{.| 2 { { ~ ~ X@ P$ | | *# ) 7- J) { I= 8- W@ | Z! 1 1 } 8- ( 6 6- Y@ d <& 2 } 8- 2 I= 4 D, J= 6 ( D, d ,# 7 7 ,# 6 7 a e Y@ Y> Y@ ## k 0 j c a t' j M' c n a c L= 2, g 0 ,# a n |& n L= L= r Y$ Y$ h [& Q{ 0- Z$ Y$ |& h n ^# Z$ p `$ r n Y$ r r ^# F :# Z$ 2, p `$ Y$ |& m Y$ w D ^# Y$ ^# w ^# G b' ^# `$ `$ 4* t G m A /# 1& E; A _# w O@ z A m) F= N 1& 8* z n! 1& H$ n! |# E$ M I P@ H$ E$ M S A M E$ S ` Q@ 3# E$ J E$ T P@ J O m) H P@ M C$ Y J +% P@ P@ X H$ P@ E$ T O Y L P M@ S E@ T H@ C$ }; G$ U V J P D$ ` H P@ P 2# Y Y H@ E@ P@ 4# S S @. C$ I@ L T E@ .= H G$ 1# H 2# V E@ L@ V 4# r! H 2# V V E@ G@ J 4# V V 4# L@ ` H 4# 2# E@ V P E@ L@ C$ C$ O= O= V 7# i~ @. T X E@ F@ E$ d- R T C$ Y }; d- ` |; P C$ ` F@ X @. T D$ X G@ V 2# I@ P 1# G@ T E$ L@ P@ T R Q J P@ H@ I@ V D$ P' 1# M@ L@ d- P@ E$ V P $> H d- J H H Y H A M@ M@ L@ T T H Y M L Q@ S ` J Q@ I@ Y J S P@ S P@ Q@ H S S H$ P@ I G M M 8* #= I I A z P@ I z I H$ G w G Q@ N G w y D $# s' g~ v, s, t, s, s, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, A, u, t, z, u, u, y, y, y, x, x, u, u, u, u, x, y, y, u, y, y, u, s, t, A, u, x, s, x, z, y, y, y, y, x, u, u, x, u, u, z, u, y, y, u, s, u, u, u, y, u, y, u, x, x, x, s, u, s, =) y, t, x, s, #q.^, ] W@ ## $# [ | 2 $# ) } : / W@ ## 2 2 2 ; ~ | 2 Z! ;# X@ ) ~ ", +"y, s, Mp.Mp.Mp.Mp.Mp.q, *[ Mp.q, Mp.Mp.%{ z~ z~ z~ *[ *[ *[ *[ *[ z~ 5' z~ z~ z~ ah.Il.*[ *[ z~ |1 9| e^ 9| |1 $8.9| <{ 9| *) 9| 9| 9| <{ 2! <{ 2^ 2^ J$ J$ *) 9| jP J$ J$ R@ R@ p9 jP 2^ R@ 2^ 0' L$ L$ L$ k3 0' G= 0' 0' I/ BN I/ I/ p9 $ K$ 0' = V@ + ]& 0' ]& + # $ % + + # ]& ]& = [* ]& {c $ p9 V@ # > + . ' . S$ - $ ], U@ & Q$ ]& > U@ ' Q$ + ' > }* Q$ Q$ %= ] ] H= N$ & { }* ; | ~ Z! | | ' U$ 7- o! { -.2 Z! [ Z! { ) 2 2 2 | 2 Z! ^& ~ P$ { : X@ U$ | 2 [ $# { ## ) d } %# /& 7- , ,# 2 ,# ( } q> 6 a Y@ D, 1 k 7 ( i /& 6 a V) 6 <& 5 2* !# d 8 ,# [& 6! ># k a ~# k L= 2, 0 f 0- h L= c{ c c Z$ e L= r p r K/ 7 c l r n t' o r h e p `$ s> Y$ t n^ ]c Z$ _# 2; m t s> O' % Y$ D {& p w /# N N {& z ~& % E; q m N D m m D % {& 4* 2; G G $S t G #] #= z z F 8* I M I H O@ A P@ P@ I |# x M 1& A P@ K@ I@ T H$ L@ 3) J J J q! J L@ J P S K@ P@ S Y G$ ` H K@ H 4# L@ L@ P 7# L P 3) H J C$ ` V C$ S H I@ C$ #% L@ U 2# X C$ I@ H H U I@ @. L@ Q H@ J C$ T 1# P P L Z Y U U P H D$ C$ +. E$ J J }; Z A@ .= L@ I@ 2# 4# 2# P X> G@ d- 2# C$ @. B$ @. .= D$ H@ X E@ .= $% E@ .= L@ D$ B$ V i~ O= 7# T G@ 4# I@ G$ L H@ L' o> L@ I@ G@ O= V O= #. X P G@ P J H L G@ G$ 4# Y d- C$ C$ 4; L@ #. T L@ @. I@ K@ P += d- 2# H H H D$ J +% 2# Z T S Z H$ +% H J P@ K@ c- ` K@ H O@ K@ E$ E$ P@ A M L@ N I S 3# P@ O@ I S 3# 8* G K@ A #= 8* A I z G P@ P@ c- n! N w z N q! /# P@ G w D O@ o ]& ^, 6' v, #' v, z, u, u, x, y, u, u, y, y, u, y, y, u, y, y, y, y, y, z, y, u, =) z, s, y, y, u, t, y, x, y, u, 7' y, y, s, x, t, v, u, x, s, s, s, s, x, s, z, x, z, u, u, x, y, y, y, y, s, x, y, }) }) v, y, y, z, u, x, y, u, u, y, z, x, s, s, t, x, s, u, x, y, s, v, s, q, ], X@ X@ 1 2 1 W@ [ Z! Z! { b d { [ ## ~ ^ ] ] | ~ { %= +# %# %# ", +"y, x, Mp.Mp.Mp.+' Mp.z~ z~ [: Mp.+' +' z~ z~ z~ z~ z~ *[ *[ *[ z~ z~ @] q, z~ z~ 9i.rp.ql.z~ z~ xi.9| e^ *) 9| $8.9| *) 9| 9| <{ 9| 9| <{ 9| 9| 9| 9| 2^ J$ <{ 9| J$ I/.I/..( ]^ L$ jP ;b G= ]^ (}.#S L$ R@ G= 0' I/ L$ ]& 0' I/ I/ I/ 0' $ + = #S 0' + # $ 1) # # + ]& + M$ + = $ * Q$ + > $ $ = $= S$ $= ]& V@ S$ . |* N$ # . U@ P$ k) N$ U$ S$ . > > [* ^ N$ > N$ | ] & N$ U@ | U@ U@ ; X@ | ' U$ R$ N$ | | *# ^ P$ H= ) & N$ N$ ] ~ /& 1 { 8- N$ { 7- 2 { X@ 2 { ## 2 7- { d { } D, { $# } 4 } /& ## 5 ( ,# a &# } / -# ,# ,# a a b } 6 b &# &# 7 ,# 6 9 3] k n 0 [& 6 k 8 ~# c{ n a r ~# n g ]# n ~# ~# ~# b Z> h 2, r ~# L= Y$ c c h h ~# p p Y$ 0n E, p D `$ p 4* K= % h m h n t ^# {& 2; C x ^# @= N m p ^# p 4* N $] G C C b' N /# w {& `$ N {& I G z z A M M I I A E$ 8* I 1& G O@ M b- AR A T H$ P@ P@ #= H E$ M S H T J J J M O O@ S L O@ P@ Q@ L' I@ E$ J L@ H ` J M T P E$ L@ 5# H +% 2# H$ P L@ H S C$ U Z I@ 3) D$ T L@ ` P ` H@ J@ |# P H 4# 1# 3# h] Y U H #. 3; C$ V Y D$ 4# 4# E$ D$ O= I@ H@ P H@ z$ C$ C$ }; P@ I@ T L@ U L@ G$ C$ V @. 4& =. C$ 4# .= #. C$ H D$ X #% d- U P T V d- 4# P 3) L@ V J L P ` G$ 2# 4# d- 4# E@ J T L@ +% L@ n> U J X X C$ H$ L@ H 1# H r! G$ D$ C$ S Y I@ K@ T Y Y P U 3) V T d- ` +% L $> J E$ S L@ P M L K@ P@ M H$ |# M@ P@ S M@ J I M J M@ M@ K@ O@ A 8* A b- P@ H$ A P@ I M I I I A M a- A A B Q@ z x z I I N G z w ^# h $ *) g~ +' v, s, y, u, u, v, x, y, y, y, y, t, s, s, x, u, y, y, y, y, u, y, y, u, x, x, z, u, x, s, u, r, y, s, s, y, z, s, s, s, #' y, s, x, u, y, y, y, x, y, y, y, y, y, u, x, x, y, z, y, y, #' s, u, s, u, y, t, x, u, z, x, x, y, s, s, s, s, z, y, u, u, u, y, y, z, u, s, + | 2 9 2 X@ | $# ) R$ W@ [ .# ## [ { | ~ ) ## 2 ~ | ) ( 2 U@ ", +"y, x, +' Mp.Mp.+' Mp.[: [: [: +' Mp.+' [: *[ z~ z~ z~ z~ q, z~ z~ z~ 9i.*[ *[ *[ 9i.vh.|1 z~ z~ xi.xi.*[ )~ <{ $8.vh.z~ 9| 9| 9| 9| <{ 9| 9| 9| <{ 9| <{ 2^ <{ J$ J$ J$ <{ l) 2^ ], <{ p9 L$ R@ R@ BN L$ BN BN L$ I/ R@ I/ 0' 0' L$ I/ 0' + I/ + I/ L$ 5_ # ]& $ V@ # # ]& J$ + . k) # $ + Q$ . + = . & Q$ $ > 1* Q$ - . ; U@ $= > ; Q$ . %= |* & . . & ; | ; ; ; - - > U$ N$ o! ; ] ] Q$ S$ f] X@ 2 ] | 8- { | X@ R$ ~ U@ H= ) ] N$ { ) N$ 2 { ( [ Y@ { ## 7- X@ ## ( 2 { ( ( ## { J= 2 ,# / D, $# 2 Y@ 6- } } $# } $# ,# ,# : == a B; } a b == 6 ,# ,# 0 B; ,# Y> $# g ~# k i q> a 8 V$ 0 ~# L= c L= V$ 0 L= 2, ># c{ 0- k r `$ ,> n r r c b ~# n t ~# n p `$ `$ Y$ }& @= r Z$ s> m Y$ y D -) m V| % m m m 1& C 4* 2; ^# F= 2; ^# 1; m /# `$ G m 2; N= ^# B 5* G Z$ A A D z A I @% E$ a7 A N@ M I I S A O@ M M |# Y C, E$ I S L M E$ A H$ O |# A h] A S H U S H P@ T L 3& J T J P@ J P@ J H$ E$ Y T J Y G$ I@ M@ Y 1# Z M F@ L@ M Y V H P S P@ d- P V H }; 7# .= O= I@ Y M@ C$ K@ 1# T +% J T P I@ 4# U 1# T Y L L@ L@ D$ E@ L@ U J H T J P H 4# ` C$ X G@ S L@ T X X H T J H 1# Q T H@ E@ G@ V L L@ T I@ T L@ L@ T U Q 0* I@ Y H H I@ 4# V J I@ X L@ H R 2# H M@ M@ T H M@ 3# S H T L@ U }; H H H H L' H M P@ J E$ S L@ H$ S 1# 1# P@ S Y J K@ Q@ E$ H$ P@ M H$ K@ P@ S K@ T P@ L N@ 8* M O@ M H$ M P@ M P@ z O@ P@ 8* A I x M@ A S I b- A I z G D b' C w N x M 1; ; i) 5' @] s, v, v, u, u, y, z, u, y, u, y, y, u, u, z, u, s, v, s, z, x, y, u, x, y, u, x, s, z, u, v, s, y, x, u, u, x, s, s, u, x, x, u, u, y, u, y, x, z, u, z, u, x, u, y, y, y, y, y, y, y, u, u, y, y, u, u, s, u, u, z, s, s, s, s, s, s, u, u, x, x, u, z, x, s, s, s, +' . [ $# ) { /& } / [ / [ W@ | } W@ { | $ 2 ~ ; ; ] ) |* ] N$ ", +"y, s, +' +' +' Mp.+' Mp.+' q, [: Mp.+' +' Vp.z~ z~ *[ *[ z~ z~ ah.2! z~ *[ z~ z~ *[ |1 xi.Il.z~ ah.xi.|1 e^ )~ |1 9| &[ <{ 9| *) 9| 9| 9| <{ 9| <{ <{ R@ 2^ <{ <{ <{ l) L$ .( R@ R@ .( .( R@ R@ I/ ]^ ]& I/ I/ L$ 0' G= R@ = X! 0' 0' + + # # 1) 0' = K$ # # $ 1) # ]& 5_ =[ . # T@ . > ]& Z, # $ 0' [* S$ Q$ * - . & & - U@ . + U@ ; Ez 5! & 05 $ - U@ %= ] U@ %= Q$ U$ ! U@ U@ ; > U@ %= S$ U@ > ^& | ; N$ & ; Z@ N$ N$ ~ ^ %= & ) | 5- ) f] S$ N$ [ { X@ X@ %= X@ { ( 2 7- /& $# ( W@ W@ x0 1 { 1 { { ## 7- 1 /& == d / 1 ( 1 ,# Y> ( ( ( d q> } V~ ,# /& Y> b ( ~# K/ 7 c n L= Y> ># 6- b ~# a 0 ~# c m*.6 b a ~# ~# 0 n 8 c 6! L= ~# c n ;= 0 [& e h 2, n m -) |& `$ p h l (# #| n `$ ;= `$ p p Z$ m ^# z % 4* 4* xE 4* {& @= ^# 2; {& z D t 4* G /# m w 2; b' m z w w I G O@ x G M M P@ M G O@ ^# M 3# A O@ M I M T Y I S +% M G Q@ M z M #= M L |# J H$ |# |# .~ o> Q@ U J 3& 4# L@ H Q@ C$ T L@ H H C$ L@ T T H P I@ H$ 4# C$ H@ P E$ Y Z n> J K@ |# H@ M@ J F@ E$ K@ D@ D$ P J #. J H$ K@ Y H@ L D$ 2# 2# V X 2# J P T P H@ 3# L@ L@ L@ P Y T P P E$ @. T d- F@ L@ P #. X #. 7# #. L@ J L@ L L C$ @. }; )= 2# L W I@ d- T H J G@ L@ T T #% G$ L@ C$ C, I@ J E$ I@ 1# U 2# M@ C$ L@ G@ Y J S P@ E$ H H I@ I@ K@ C$ P@ Y S J K@ S L J T 3# 3) H Q@ S H H$ M@ S M T H$ M O@ I N z 8* P@ 3# O@ C$ Y E$ O S I I K@ J z A G C z H A O@ G ~& I @% P@ w {& G N I K C /# G ^# Z$ {& ^# /# G 6- e^ g] s, v, u, s, s, H) u, y, s, z, s, y, y, y, y, y, y, u, v, x, y, y, y, z, u, y, z, y, x, x, u, y, y, y, z, z, y, y, z, s, z, s, x, y, u, u, y, y, y, u, u, u, t, s, u, y, y, y, y, y, y, t, u, u, y, u, y, y, x, u, u, -! x, y, s, y, y, t, x, y, y, y, y, y, x, s, z, s, 6' . } Y@ < { { d } ( } : ] , ) | W@ W@ ^ { ~ N$ & ] ' U$ & ; ", +"y, x, y: Mp.Mp.Mp.8' Mp.Mp.q, z~ [: +' Mp.[: z~ z~ z~ q, z~ z~ ql.z~ z~ *[ z~ q, *[ 9i.vh.9i.z~ 9i.vh.$8.e^ e^ *) |1 |1 <{ 9| *) 9| 9| 9| 9| <{ I/.<{ 2^ cp.<{ <{ 9| l) <{ l) R@ ]^ R@ J$ <{ R@ BN J$ <{ I/ R@ J$ p9 J$ J$ ]& ]& 0' I/ 0' p9 + K$ K$ = 0' K$ # # 5_ # * Gc 0' !, V@ # L$ ]& $ ]& $ |* & = . V@ *' . + [* [* $= U@ & |* U@ |* |* $ > ] & [* N$ - P$ P$ |* $= S$ > | . Ez Z! & H= H= ~ & > > | N$ ^ (& S$ H= U@ | g{.( ~ /& N$ | T- %= X@ ~ X@ ~ ) ( 2] 1 { *# X@ 6 ( I= / ## 4 &# d => Y@ 7 5 { ; X@ | ## &# / ~ 6 D, } ,# D, : 7 Y> } 4 5 7 7 ,# 7 6 a !# ~# ~# V) o i Y> 3] 7 d a {# ~# e ,# c a ~# n 0 $# ~# a i 6 2* s> c 0 c 0 0 ~# L= Y$ C; n C; n -) Z$ L= c e r p Y$ `$ h p ^# % V| 4* `$ u m /# `$ w y2 `$ % ^# :# w G w 5* I G ^# q M z z /# w B {& }# ^# m) /# I P@ w P@ P@ O@ q! {& I n! N I E$ N M M Q@ M a- A %> P@ K@ O@ d{ I@ O 3# P@ J A M@ H J 3) L@ P@ L L@ M H U O A H ` M 3# L@ T G$ E$ T L@ J S J J@ E$ K@ &' P@ M 8* O 1# J I@ H V W D$ D$ S 2# P@ Q 2# @. E$ P Y t> H@ H@ L@ H C$ J ` S Y I@ E$ T L@ @. @. H 2# r! T U T Y L T 2# D$ .= H I@ I@ H H T }; T J X L@ t> 1# D$ S P P U 3# T I@ P I@ J |; H T J T }; L 0* T L@ G@ 4# S U L@ H$ H Y L@ I@ Y J@ L@ +% O 2# P@ I@ M@ H M@ J X L@ L@ U J J S S J H H P@ M@ 1# S P@ L@ 2& J S M P@ L@ S P@ 8* Y S I I I O@ O +% S N@ z A A M H$ w z M @% H$ I z M N K N I F= z N G ^# F K I N % /# Z$ z h <{ [) r, =) y, u, x, s, u, x, x, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, 8' u, y, y, y, y, y, y, y, y, u, u, x, u, s, y, y, y, y, y, y, y, s, s, x, x, y, y, y, z, t, x, u, u, z, y, x, y, y, u, s, y, z, y, y, u, x, y, z, u, y, y, y, u, y, u, x, y, s, *) ; ( ## { { < { { { ~ ) { [ W@ ~ & ) ; ~ N$ | 2 ~ S$ U@ ~ & ", +"y, x, +' +' Op.Mp.8' Mp.+' 6' z~ z~ +' +' Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ z~ z~ ah.ah.*[ *[ 9i.|1 $q.e^ *) 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| <{ 2^ <{ 9| ;b <{ J$ <{ <{ L$ R@ R@ l) <{ l) 2^ G= jP I/ G= R@ ]& p9 J$ G= 0' 0' 0' 0' 0' 5_ # K$ + p9 = # # 0' # ]& o! $ # . $= Q$ .( Q$ $ = Q$ S$ $= S$ & H= $= = V@ S$ P$ S$ U$ S$ U$ & > [* S$ & 5- . . & > Q$ U@ U@ R- # U@ %= & | R$ ~ & ! U$ & 5- 2 & ] `@ J) P$ R$ ) | { ~ X@ 4 ) ~ > f] ) { N$ ] { J) ( ) X@ < } D, 2 { < ( 6 { D, 2 1 ( 4 ( } 9 4 7- ( } &# < J= ,# 8 7 } a 9 4 ( ># a 6 b 7 a' a a a Y> i h z: 0 3* ,# 6 ,# o k ~# L= 3] W$ i 0 h Y$ o 9 ,# L= c i k p Y$ e [& n -) p }& h L= r |& n Y$ p `$ ^# m p Y$ D (# r p ^# `$ % 2, -) Y$ w 4* ^# % `$ D I 2; w B G w ^# m G A O@ j4 m O@ :# G /# I I O@ J M N I M A |# F= I I N@ O@ I M I #= |# 8* K@ a- L@ H M E$ H H$ 3# M S x S P@ P@ L@ c- A H G$ U L@ P@ P@ ` P@ Y H E$ D$ J ` Q@ L P H H G$ ` K@ 3# H@ Y T Y Q@ M@ Q@ O N@ Y O J P D$ S P T T 4# D$ Y H I@ ` P L@ H K@ E$ P L@ T V V U 2# P L@ T L P L' H T D$ }; C$ H T D$ ` @. d- L@ L@ U T V J D$ 1# T T x .= T L@ 7# I@ I@ J ` X L@ P@ H L d- V X C$ O 1# J L@ C$ O +% K@ P@ P Q@ +% +% H@ 4# H ` :* I@ L@ H$ ` C$ J Y S H O L@ M M P@ S P@ H O J Q@ A P@ +% @% P@ z Q@ S O 3# S P@ K@ A H$ I M A H 3# :* N 8* I N H$ A E= z w Q@ Q@ A A A C 8* z }# }# I w F= w F= A A `$ Z$ t :# B F= ~# $ J$ [) s, x, s, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, u, s, y, y, u, u, x, u, y, y, y, z, y, y, y, u, t, x, u, x, u, y, y, y, y, z, s, x, y, y, y, y, x, u, y, y, x, y, y, y, z, s, y, y, x, t, u, y, y, y, y, s, y, y, y, y, y, y, y, y, y, y, z, v, ], X@ *# 2 { %# } 2 [ %# / X@ X@ W@ ] ; ; ] N$ ] ] ~ { S$ S$ ] | ] ", +"y, z, q.+' Mp.Mp.Mp.Mp.Mp.+' 6' z~ Mp.Mp.+' Mp.z~ z~ z~ z~ z~ z~ z~ q, z~ *[ z~ *[ z~ q, xi.ql.z~ z~ $8.9| )~ )~ 2! 2! |1 )~ 9| *) 2! *) *) 2! e^ <{ <{ <{ J$ 2^ <{ J$ J$ ;b I/.9| 2^ *) I/.l) #S L$ L$ R@ ]^ R@ J$ I/ L$ ]^ 0' 0' 0' I/ 0' 5_ = # + L$ %q.# # 5_ $ K$ # 1) + # # o! Gc > # $ $= > V@ $ $ $= $ Z, $= S$ *' [* $= ; & |* |* $ + Q$ ; & $ - %= > > & }* ; P$ ~ & > | > H= U@ ; %= N$ ~ R$ T- | ~ & | U$ ^ Z! 2 | 7- 2 Z@ V@ > ~ | ( N$ ~ | ] W@ X@ { /& ( *# X@ X@ { ~ [ N$ } ) 6 } ## ## ,# { ( } } < } 9 < ## 3* 6 6! $# 8- 2 b ~# N' 9 0 a a a 0 ,# b a ,# ,# a ~# L= ~# s> n ~# k a' ~# i a c ]# Y$ h s> ,# ~# L= ,# ~# n F! n n n n Z$ n 1; c ~# e 6! n 1; m s> Y$ ^# Y$ p p % Y$ /# % % t E, D h t 4* G m 4* t 2; `$ y w G N #] G w K ^# ^# B /# m :* @% P@ P@ ~& z N N= N O@ N O@ M M O@ O@ %> I z E$ A E$ H P@ M H I P@ H$ n! E$ A Q@ H P@ I P@ x P@ E$ |# 3# P C$ P@ Y E$ 8* M@ P@ P@ Z H$ H E$ P@ 3; P@ Y P@ Y H P Y H$ S H Y Y 7# J Z 3; ` T P J P H c- H P U Y C$ K@ }; T ` F@ |# J L@ S M Y T O= T L@ n> O ` H J V J H L@ T P P D$ D$ D$ T L@ T R E@ Y H H ` L@ P E@ W T H T U #. 4# L J J T P@ J D$ J I@ D$ H H I@ Y J O P@ J C$ D$ 1# S J L@ |# Y Y T T O H$ ` T I@ H L@ Q@ J S P@ M +% H$ H$ S J +% S P@ J@ w L@ I z Q@ K@ M M H$ E$ K@ H$ A P@ A P@ J M@ z S M I A I z A G G G I z x P@ I w B z ^# C w 2; m A z S N ^# M= 4* N `$ $ e^ v, v, =) s, s, x, u, s, x, y, y, x, x, u, y, y, y, y, y, y, y, y, y, y, x, x, y, x, x, y, x, u, z, v, u, y, y, u, y, u, u, y, y, u, z, x, s, y, y, y, y, y, y, x, y, x, s, s, s, u, y, y, u, y, x, s, y, y, y, z, y, y, y, y, s, u, y, v, x, y, y, y, y, y, s, y, x, s, ]& 2 ( [ [ W@ } 2 ~ ; U$ [ R$ / 6 ) ] 5- R$ ~ 2 ~ ( ~ U@ Q$ U$ | ", +"y, z, Mp.+' Mp.Mp.Mp.+' Mp.Mp.Mp.z~ Vp.Mp.+' Mp.z~ *[ z~ *[ q, z~ z~ z~ z~ *[ z~ q, z~ *[ |1 Il.*[ *[ ql.xi.|1 e^ e^ 98.|1 2^ *) |1 *) q, ^, q, *) 9| <{ *) J$ 9| <{ <{ ]^ <{ <{ l) R@ J$ <{ <{ R@ V! R@ R@ <{ G= 2^ jP I/ G= I/ 0' 0' I/ I/ 0' p9 # K$ ]& I/ $ # # # # $ #^ 0' # & $ Q$ 2) S$ S$ $= . V@ Q$ $ > > $ *X |* S$ & . Q$ |* > . o! Q$ =' V@ > o! P$ 05 & ; . - Z! & - X@ H= ; > > ~;.; ; S$ U@ . %= ] | & U@ ; & & /& ~ ; /& 4 { X@ ; N$ ; & ^ 2 &q.## 2 ~ U$ 2 X@ | | [ } / ) 6- 6 6- 2 5 7- } 1 ( ( } < =# d } 6 6 a 7 9 ( -> 5 ,# } } a < 6 5 e h 6 7 i ,# c b 3* n Y$ K/ 7 c tA a' e c ]# ,> a 0 a 6 g n L= L= |& c ~# a i Y$ c{ h Y$ h n h ~# a' % ,! h % K= Y$ p _# n -= ^# ,> s> `$ ^# Y$ Z$ 4* w m ^# ^# `$ A /# G ^# C w w 4* 4* G D I z O@ }# F= N G G N G z w B z I 1& E P@ I M J =K M P@ I A q! J I M@ E= |# P@ 1& A S J J S P@ A H E$ P@ A J ` O T T S G H H O@ H 8* ` |; T O@ K@ P 2# J 1# L }; E$ J |# Y H +% ` E$ M@ S T H Y B$ ` I O H S Y O M@ L@ H H D$ S T J P@ L P@ ` T T L' I@ 1# Y J H H$ 3# U J 3& O 3& P J L@ T T 1# I@ U L T H 2# G$ J J J M@ J ` 4# L@ t> L P J J T L@ 3# J H P C$ L@ J T O O 1# ` H L@ Y K@ 4; L@ J P@ S H 3; ` O P@ Y Q@ O H #= M@ 1# H P@ P@ O 8* #= 8* P@ 3; Y A z L@ S I E= +% M Q@ I M E$ G M A 8* I #= M .~ P@ A N@ Q@ F= A Q@ G z x Q@ x m) {& z w G F= w N C B m p 4* z N % {& p D ^# 8- g~ 6' 6' s, s, z, s, x, u, y, u, z, u, y, z, y, y, y, u, u, u, y, y, y, u, v, y, y, u, x, s, u, x, z, v, y, s, s, y, y, y, x, s, u, u, y, x, u, z, y, y, y, y, y, y, y, y, z, x, x, y, x, x, y, u, 8' t, y, y, y, u, y, y, y, y, x, u, y, x, u, y, u, u, y, y, u, x, H) x, # | $# ~ N$ { N$ { ) X@ | ) [ /& ~ P$ ) ~ O$ Z! ~ ## N$ ) ] ) ^ H= ", +"y, z, Mp.+' Mp.Mp.Mp.Mp.Mp.+' +' z~ z~ +' Mp.[: z~ z~ z~ z~ z~ z~ z~ q, *[ z~ 2! z~ *[ z~ 2! vh.|1 z~ 2! xi.98.*) *) 9| |1 *) q, 2! |1 |1 @ <{ 9| 9| <{ <{ ], <{ I/.9| J$ <{ <{ p9 ], R@ <{ <{ J$ J$ R@ R@ <{ R@ J$ 2^ I/ 0' I/ I/ I/ I/ I/ [n I/ = # + 0' = # # # # # # = . # # > Q$ . }, > $= |* ' # V@ =' . + V@ $ $= > & > ' . S$ H= > > Q$ ' U$ X@ . R- & P$ P$ ] > . P$ R$ ; J) ~ ; P$ ; & N$ ; ^& 4 ] ; ; 5- N$ ~ o! Up.{ N$ | X@ < X@ | 2 ~ %= N$ X@ R$ N$ 2 U$ X@ | %= | 4 Y@ d d } 1 4 [ ( < X@ } d 5 &# d N' W@ $# 0 W@ *# 1 } 6 j ( *# 5 d e 5 7 ~# 8 Y> ~# ,# B; a 7 ~# a 5 Y@ ~# 0 0 ~# e 2, n {# Y> / a h _# s> n 8 n n s> c 6 0 L= @= t p n 8 0 ,# Y$ C m Z$ :# `$ `$ h % % V| Y$ p 6* r 2; b' ^# m 1; p r m F= ^# 4* m y t m Z$ {& G A 4* % B D $] G z {& A z z F= F= [# F= N )> G z n! c- 8* N M P@ H$ Q@ N P@ 8* 8* A E$ P@ I H A I E$ x P@ S P@ N S J P@ L@ 2: S |# 4; K@ H$ E$ K@ S +% A M +% @% S H$ M Y *q.P@ T b- J A ` P I P P O@ K@ G$ L@ H S H Y M@ Q@ S P@ Q L@ U H@ P }; L@ Z E$ |# H H H E$ d- L@ E$ J T L@ E$ P Y }; J 2# 2# L@ H L@ L' L@ L' R T L L H E$ D$ 3& |# T 4# A Y H E$ J L@ L M@ P@ V I@ M@ L M@ H Q T S A H M P P@ J E= M Q@ T S P@ J 3; E$ M@ ` Q J M 3# P@ H P@ P@ +% J I S J P@ P@ b- ` Y S P@ O@ @% +% 1& P@ M N@ z A K@ A Q@ w A A A A I {& I I N@ A #= z x z G G b' z #] N 6* N= 8* p /# N z G :# ^# w n^ {& w G :# D [ J$ ^, q, 6' H) x, u, 8' x, x, s, y, y, y, y, y, y, y, s, x, z, y, y, y, y, u, y, y, y, s, s, y, u, u, v, y, y, u, y, y, y, x, u, u, s, x, z, y, z, z, z, y, y, y, y, y, y, s, u, z, u, s, y, y, s, u, y, y, y, u, s, y, y, u, x, x, y, y, x, x, z, x, u, y, y, u, y, +' v, ) { { ] N$ < 2 X@ W@ | ) ] | ] [ [ ~ { U@ | ~ ] ~ ] & ; ; | ", +"y, x, Mp.Mp.Mp.+' Mp.Op.Mp.Mp.Mp.[: z~ Mp.Mp.Vp.Mp.z~ *[ q, q, q, *[ z~ *[ z~ z~ *[ *[ rl.*[ 9i.vh.9i.ql.vh.xi.9i.)~ <{ 9| 9| e^ 2! 9| 9| <{ <{ <{ 9| <{ <{ <{ R@ <{ <{ 9| *) jP jP *) 2^ J$ ;b ;b ], <{ R@ J$ L$ ]& G= I/ I/ R@ L$ [n [n R@ L$ = 0' `Y # + = 5_ K$ # * + $ L$ 0' R- . + ]& . # # $ |* S$ S$ [* (& & .( = + = Q$ > > S$ N$ . $ 5_ Q$ ; . L$ ' ^& $ # > Q$ P$ Gc S$ & %= ; S$ S$ N$ 2 Z! 2] J) & . N$ T- X@ | | | X@ ; > N$ X@ N$ H= N$ ) N$ N$ | [ N$ X@ { | ; ~ ~ /& `@ ## [ X@ < } J] 1 7- D, 1 $# 6 d d [ ( b +# <& 2 ~ d [ } d ## d x0 } 7 ,# 9 } &# 2 ,# ,# D, a i ># e a a e h 0 ~# 0 a 6 ~# c n !# i -# c |& X$ ~# 0 k a ~# {# p h L= p K/ 0- p m r o a L= z `$ s> `$ |& p q r n h m ^# E Y$ w M= 2; ^# ]# w G Z$ {& % :# t b' G m w {& `$ N {& N G ^# t K D N G F= z F= N G /# G w z I G A I G M A P@ I C, Q@ I@ N M x I I Q@ S M J E; A Q@ A M J J H H Q@ A H A M@ H |# #= U I 8* S J M@ J J P@ 1& +% |; L P@ K@ S S +% J M M@ P@ O a- S H E$ Y J Y ` Y 1# L@ =q.Y J E$ H$ J D$ O r! O Y T Y J J P@ ` J T L' H H O 3& 1# P L@ P@ T d- X U H$ V H E$ O 4# Q E$ H P@ L@ C$ L@ r! S J d- L@ J E$ Y H P@ H J S L@ K@ E$ 2& L A H$ J L@ Y +% S P E$ O K@ L@ q! S A P@ H Q@ M O@ N@ J M 4, J 8* Q@ G I A M S 1& N S I A P@ 3# I S O@ O@ M O@ ^# B G 8* I z A A 4, P@ A A x N ^# I w #= Q@ P@ G G w N A D G C w w :# w G 5* y p D % :# t 7 V! `, g] ^, x, x, u, u, y, u, u, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, s, y, z, s, t, x, y, z, y, s, #' u, x, x, y, y, u, y, y, y, u, z, y, y, x, t, u, y, s, y, s, x, s, y, u, x, y, y, y, y, y, u, y, y, u, x, s, u, y, s, u, z, x, z, y, y, u, u, q, 5' - ~ | ) ~ { { [ 2 ; ~ & & 2 | %= U@ | | ] ) ; ; U@ & & [* ; ", +"t, y, +' Mp.Mp.+' Mp.Mp.Mp.Mp.+' 6' z~ Mp.+' 6' Mp.[: z~ z~ q, *[ *[ *[ z~ *[ Rp.*[ *[ z~ z~ z~ vh.9i.z~ z~ 2! ^, Pi.)~ 2! 9| 9| 9| <{ 9| 9| *) 9| 9| <{ <{ <{ J$ <{ <{ <{ <{ J$ <{ <{ J$ V! *) -q.J$ <{ R@ 2^ ;b I/ L$ L$ I/ L$ R@ L$ I/ L$ ]& 0' 0' 5_ # 5_ 0' 5_ K$ # + ]& * # $ + + ]& # + V@ # ' ' 1* [* ;b . # > $ # Q$ . + > $= & + > # o! > - > Q$ > $ $ > ^& o! & ; U@ ; Q$ }* = > ! | N$ Q$ 2 | | U) ; Z! Z! U$ H= ' ; P$ | `@ 2 [ > ; ) | ) | 2 { { X@ ( 4 /& /& ( ~ 2 Y@ } 5 2 [ 3* ;q.2 $# d 2 `@.~ V~ } X@ ( ## 6 a ( } < : d == N' d a 0 c6 {# ># ~# !# 6 e $# 1 ~# ~# e ~# 2 6 ~# i 0 } p 0 ~# ~# ># j L= vk `$ 0 3] 0- L= z: n h L= r h p! K= m p e g n `$ ^# m :# % c Z$ m n -= p Y$ r 1; % D m h ^# /# `$ p h 4* C q w w m ^# ;) w t N G @= Z$ {& A z )> A x A G /# W) [# D N I x z z I E$ A L I G Q@ I 3; |# 1& N P@ A P@ S A M@ E$ 8* H P@ M H {& |; J K@ J J I J 4, M S P@ ` K@ +% 1# S P@ P I M@ z |; 3# I@ M@ +% N@ M@ Q@ K@ S @% C, 2& E$ T H J P@ 2# 8* H K@ Y C, P L@ 1# ` c- I Y T P@ H X T P@ L K@ Y M D$ 3# J 1# G@ L 2# Z >z H@ P@ P ` L@ Q T 3# U T H 3# P S H S H H L@ K@ E$ J T P E$ A P J P@ C, J L@ V 3# Q S S S H G$ J E$ L@ M@ D$ 1# 8* H O@ O@ @% S ` |; O M %> @% K@ P@ 1# M A x G I b- 8* I b- P@ A N z G M G N P@ J 3# I F= I A A {& G G N z {& x w I z K@ D /# G N N w w I w z /# 4* D #] ^# 2; I _# t m /# ^# m G W$ q, 6' =) s, A, y, x, y, x, x, y, y, y, y, y, s, y, u, y, x, y, y, x, z, t, z, y, y, u, y, y, t, x, y, y, y, x, s, u, u, u, x, y, y, x, s, y, y, u, s, u, y, x, x, u, u, y, y, x, u, v, u, z, u, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, s, y, A, 6' `@ / { 1 R$ ) { ; Y@ { N$ ^ ; | | N$ S$ ] ; ~ & > ] & R$ & - { ", +"t, u, 6' +' +' >q.+' +' Mp.,q.Op.Mp.z~ 6' [: +' Mp.6' z~ z~ *[ z~ *[ *[ z~ q, z~ z~ z~ *[ *[ z~ xi.9i.*[ *[ z~ *) )~ e^ q, 2! *) *) *) *) 9| <{ <{ 9| 9| 9| <{ ]^ <{ *) <{ <{ ], <{ I/.J$ J$ *) l) k3 BN G= jP jP I/ ], J$ I/ p9 ]& 0' 0' I/ I/ = I/ 5_ # $ = p9 5_ + # ]& !, + = 0' V@ . # [* # o! 2) + 1* & + . S$ V@ . $ S$ $ . > S$ |* . S$ ; *' . - $= *' U@ ; ; > & V@ > . ] - . $ - & U$ Q$ | P$ U@ S$ %= | ( & P$ &= ) | ) { *# U@ H= N$ > | ; { H= ^ Z@ 2 ~ | | ~ /& $# ~ | X@ ( 2 7- { 2 ) D, d { } ;# 4 4 { 6 $# ( ( 3* D, &# ( /& /& 7 6 N' $# M' d } ~# B; i V) 6- a a d 8 e 0 ~# k ~# n {# n ~# ,> ~# ,# c L= h c ~# o {# g 0 L= o {# a a 9- ~# a s> n [& g h 1; 2, c{ 2, 1; p n `$ /# Y$ m Q{ {# h -) m 4* I `$ m ^# `$ m 2; b' {& :# w Q@ /# F= `$ {& w 2; @= G I I z w I z A Q@ /# z G w ^# w A N M c- M= I %> O z z S M H O@ I P@ H$ P@ O@ A P@ M@ P@ n! A 7* O@ J A A H$ +% S P@ P@ I b- G I Q@ S @% P@ S P@ A K@ 1& x P@ M x P@ E$ M@ S S K@ 4# Q@ J T Y E$ 4# L@ E$ Q U H P@ 2& T P@ P@ H T H ` H J S J Y I@ d- n> S d- &' H Y P@ 8* J M P@ P@ T H I@ Q@ L O J T M E$ 8* J E$ L T L@ H T T M Q@ I M H E$ L T Y J 1# P@ Y M 1# S P@ |# J@ J +% A S Y S S S @% +% S Z I P@ S Y M A N@ I H a- J 1& P@ F= O@ S S I A #= A z Q@ z w N Q@ ^# K@ x P@ A Q@ N z z K K 1& C G {& I z w G N /# #= x }& w t G )> C I G w N G ^# ,! w p {& K B ~& ^# {& t p c Q$ 3_ q, r, s, y, u, x, u, y, z, y, y, y, y, y, s, y, y, y, u, y, y, y, z, x, u, z, y, y, u, y, u, u, y, u, u, u, y, u, x, s, s, y, y, t, x, y, y, y, u, y, z, z, y, u, x, u, x, x, x, x, y, y, y, y, y, y, y, u, y, y, y, y, x, u, y, y, z, u, y, y, y, y, s, y, u, u, q, ^ | ~ W@ { 1 ( Q$ [ ## ; U@ | N$ < 2 ~ { ] U@ H= ] W@ U@ ; Q$ - ;# ", +"y, y: Mp.Mp.Op.X( +' Op.Mp.+' Mp.Mp.Mp.z~ [: Mp.+' +' [: Vp.*[ [: [: z~ z~ z~ z~ *[ 2! e^ z~ *[ Il.Il.9i.*[ 2! $8.)~ e^ e^ 2! 2! *[ *) 9| 9| 9| <{ <{ <{ <{ <{ J$ 2^ 9| <{ *) ], <{ J$ J$ 2^ ], l) r4.]& #S 2^ J$ I/ <{ BN I/ =$.L$ <{ k3 0' 0' ]& ]& 5_ + K$ + #S L$ + # ]& R@ # $ p9 L$ # $ $ k) }, # [* [* S$ ' = [* # Q$ 2) > > & [* & S$ $ $ V@ U@ Q$ . - . S$ U$ ; Q$ & . & & U@ - N$ ; %= 05 %= , 7- g{.Q$ .# 2 X@ ^ ~ H= X@ ~ S$ {c & N$ | { 4 & 2 ## ## 7- Y@ N$ | | ~ 2 & ~ 2 4 ] ~ ( | | 4 ) Y@ 6- } g{./& d /& 2 < d &# } ( ,# d q> $# $# ,# ( 6 a 6 6 ,# 6 a a ># ,# L= a a a M' g e a h ~# 7 6 e a c e L= c{ 0 0 g : ~# !# *= e n 9- k `$ n ,# 9- c Y$ K= ~# Y$ n `$ Y$ e ~# L= h r e r ^# % Y$ Y$ Z$ ,> D n^ D _# % v m 4* h p /# F= /# N /# m w I w w ^# p 2; [# G /# w z M A I Q@ D ^# n! G w w G I )> N K :# J E$ M@ J P |# P@ I M 8* I A 7* Q@ I z I S J S S H$ S H A A }# I Q@ Q@ F= H$ J A A G M@ H$ H$ #= Y S O@ L@ O@ O@ H +% S D$ ` T J@ S M Z O@ S 1# J 3# 1# ` J E$ J Y M@ z H o^ H M Y S T M T Y Q@ O H V M H P@ E$ M@ O 3# E$ 1# J ` T ` P@ D$ P J J Y M P@ P@ P@ Y P@ M Y 7* @. C$ J I@ S H Y Q@ H J Y x E$ Q@ 3# H$ P@ N@ A b- P@ G 8* +% M P@ P@ #= A H$ U M M@ 8* H$ M@ A 8* S +% K@ G K@ A 3# O I G A J J Q@ I I A z z I w I #= N A D /# M M I S G {& G G z F= I A z N F= w G w ^# F= G m F= ^# w D p p ^# w 2; C D ,! ^# ^# p n - <{ +' y: s, s, x, u, s, x, u, u, y, y, y, y, u, y, y, x, y, x, x, y, y, y, y, y, y, z, x, y, y, u, u, z, x, u, y, u, u, u, x, s, z, -! u, y, y, z, x, y, u, y, y, y, y, u, s, x, y, y, x, u, y, y, y, t, y, y, y, y, y, z, x, u, u, y, y, u, u, u, y, y, x, u, s, s, ' ;# [ ~ [ N$ N$ ~ $# | | ; | W@ { ~;.H= ^ ] `@ ~ N$ > ] ; ; > ; ", +"y, t, 8' Mp.Mp.Mp.Mp.Mp.Mp.Mp.Mp.+' +' [: z~ [: +' +' 8' z~ z~ 6' q, z~ z~ z~ z~ z~ 2! 9i.*[ *[ z~ vh.2! z~ z~ |1 9| ^, ^, *) |1 2! Pi.*) <{ <{ <{ *) <{ <{ <{ ;b <{ <{ <{ <{ ], J$ I/.<{ <{ R@ 2^ <{ l) L$ ]^ R@ 0' L$ L$ jP #S I/ ], R@ 0' I/ R@ J$ G= ]& # # + L$ # # + ]& !, # 0' + # + ]& o! $ Q$ H= Q$ S$ =' o! $ V@ . [* > * # . V@ U@ | S$ - & Q$ & . S$ $ |* - . & ; ! & N$ X@ & ; ] ] =' N$ ~ R$ o! - ; & | ] Q$ P$ - S$ N$ ) ## | | ) ~ X@ ~ ~ 2 /& { Z! { ) Z! 2 R$ ( Z! N$ | 2 2 P$ ~ ( / B; V~ 1 } } ## ( $# d 7 < { { d 6- -# d ,# } 1 $# B; b i x0 a 9 6 a ,# a n k {# a 0 ># a == a 6 6 ,# j k ~# 6 0 2d V- $# e a e &# e c j ~# n Y$ Y$ ^# a' c n [& 9- o n p n p h c |& C h n a' m `$ r t t D p p n b' % Y$ p 1; w `$ p t r n^ Z$ 2; :# m 4* w B ^# w Q@ F= 1& N w #= ^# D ^# z {& }# x w b' >= A G A O@ G I a- P@ P@ % z A I N Y A A P@ G P@ P@ A P@ P@ Q@ A N z A I P@ Y M M M@ I P@ 8* H T Q@ P@ M L@ H N H H$ H$ I@ E$ ` S E$ Z Q@ H$ +% P@ P@ ` H$ 3# H$ E$ L@ Y J J A K@ S P@ |# Q@ J |# c- @% S C$ S P@ K@ S I 8* z z P@ E$ M M J 3# P@ 8* T S O H :* L@ Q@ J S K@ J c- T c- |# P@ U 3# Q@ O J P@ I@ b- ` T M A P@ A @% ` O@ O S J H A S J G E$ K@ q2 A b- P@ O@ M P@ Q@ K@ 8* 8* I H$ M H$ A /# z I M z I A #= A G I I O@ N= M w A A G G B x I A I A w A P@ w ^# u A #= I D M= B w 2; N /# `$ :# p {& 1; m D 4* F= N G 4* w D ^# ^# s> ^# ~ J$ q, v, s, s, y, u, s, s, u, x, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, y, x, x, y, z, y, y, u, z, y, u, x, s, y, y, s, y, y, y, y, y, y, y, u, y, y, u, z, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, z, x, x, y, y, u, z, s, . ) ) ^ ~ / N$ %= ~ ; & ~ N$ | S$ > ) > . ; N$ & ^ | | & & O$ ~ ", +"y, u, 8' +' +' Mp.Mp.Mp.Mp.Mp.Op.+' +' [: z~ [: Mp.+' Mp.z~ *[ z~ q, z~ *[ z~ z~ z~ z~ q, *[ z~ 5o.xi.ah.9i.z~ )~ 9| )~ e^ *) vh.ah.2! *) <{ 9| <{ 9| <{ <{ 9| <{ *) <{ J$ 8S J$ <{ J$ J$ J$ J$ *) <{ J$ R@ I/ R@ R@ 0' BN ]^ I/ p9 G= I/ 0' I/ I/ ]& 0' p9 1) ]& R@ p9 + # # Z, # # 0' 0' # # ]& Z, . [* . . ' & [* = (& . ' S$ |* $ = . |* Q$ > $ > . 0' - |* . ; > + . U@ P$ $ > ] U@ ' N$ ~ & 2) ~ ] | & T- %= | - & Q$ = %= X@ ~ ## ; ~ ) X@ R$ { { N$ X@ [ ] H= ~ N$ b{ ; ## X@ <& 2 [ 4 1 ] ,# d ,# 2 6 *# { 7- { X@ /& 6 ## ( } 6- ## Y@ 7 6 i } &# b b d 4 e 6 6 V~ 6 a a a B; 6 c 0 a e i a g < i ,# k c K= L= 0 V$ 7 e c ~# n e Q{ s> 2, ~# Y$ _# Y$ ~# g n q Y$ h ;= o n {# Y$ ,> c ~# n s> Y$ Y$ q ;) ^# m % Y$ c r p 4* ^# h ^# N 2; w w m `$ w m r u h t /# K ^# C I w x F ^# y D p G Z$ D ~& G I O@ w D K M Q@ K@ w A w A B x N N N C >= C M P@ I M M P@ x Q@ Q@ @% S G K 7* A A A N@ H Q@ P@ M S I M= N A H S E; M@ I m) b- C$ M@ Q@ A H$ A H$ Q@ H$ T O P@ S Y S J N@ J E$ Q@ 8* H J S P@ K@ +% O H$ @% E$ P J 8* I #= Q@ J P@ E$ J@ +% M @% L S H c- Q@ J C$ 3# J N@ U +% D$ T L@ H$ 8* O J M A S H$ P@ +% P@ +% J M H O Q@ M T K@ M J C A ` x @% E= Q@ z I M 3# J M P@ A M 8* I M +% S O@ I I A P@ P@ P@ G I G w P@ P@ x N A N K@ #= ^# A w z q2 N G N I z I 2; N N I M -= ^# G w A z Z$ }& @= A ^# w G Z$ G GK ^# N p }& ^# _# p 2; Y$ ^# 6 J$ ^, g] s, =) y, x, s, s, s, x, y, y, y, u, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, ' w, y, u, x, y, y, y, y, y, y, u, u, x, x, y, y, z, y, s, y, y, u, y, x, y, z, y, y, y, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, z, y, x, x, u, r, = | ;# { < { N$ N$ 2] 2 ~ [ | %= %= , ! ~ ; R$ & Q$ S$ %= ; U@ ; ] ; ", +"y, y, 'q.Mp.+' Mp.+' +' +' Mp.Mp.Mp.Mp.[: z~ Vp.Mp.+' Mp.*[ *[ z~ z~ z~ z~ *[ *[ z~ z~ [: *[ *[ *[ 2! |1 2! z~ e^ 9| 9| 2! e^ 98.2! 2! 9| 9| 9| <{ <{ <{ 9| <{ <{ 9| R@ J$ <{ <{ <{ 2^ l) J$ J$ ], <{ *) J$ G= R@ 2^ L$ L$ ]^ G= I/ G= L$ 0' 0' 0' I/ = p9 0' 1) ]& 0' X! $ # # $ V@ + = . > . # = . . Q$ Q$ $= > = Q$ . $ Q$ # # = # $ $ . 2) $= - S$ U@ - |* i#.] . . N$ U@ }* ' & ] H= | ~ %= N$ W@ ~ ~ Q$ ~ ; Z! ; U@ S$ ; ~ | . ; 5- H= ; ] 2 | ; Q$ S$ N$ ) X@ & ^ H= Z! 5 ## 4 2 ~ %= 2 [ 4 6 } 7- => d *# /& 2 ## /& 7- < 6 d ,# &# 6 6 $# V$ D, Y@ Z! { ,# ,# 2* 7 a } 7 V) Y> 0 B; d ~# 0 k V$ a ,# o a a ~# ~# L= 7 ~# ~# n 6 ,# 6 ,# c ~# g a a r Z$ A~ K= 0 6 e ]# [& p h X$ ^# s> n >> n h `$ n^ % s> r h ^# m p `$ Q{ m n^ ^# 1; `$ s> `$ _# `$ Z$ n^ ^# Z$ /# Y$ m % G D ^# Y$ m Z$ G G {& F= D /# w ^# t 2; G F= G G N ^# #= I J P@ N F= x I I x C D G N N P@ N S G A P@ S A A I S E= D z A z M Y I Q@ N@ M A A A H$ @% M b- Q@ Q@ Q@ M I A M E$ J M@ 3# P@ S O@ )q.P@ I I K@ T K@ A S 1# 3# Q O A T H$ H$ M S M c- P@ S C, J O@ 1& M H H P@ H E$ P@ @% S P@ T P@ H 3# E$ J O M E$ |# 1& A M @% S L@ #= H$ O E$ b- E$ S A P E$ x O K@ S )> z I M S P@ 7* A P@ T A S 4, I N G E$ I Q@ S Q@ 7* A H$ Q@ P@ +% 8* x H$ 3# 7* I H$ N I w G 8* I F= N@ N Q@ I N W) N G z O@ N m :# I )> w ^# w B G /# D {& D /# G N % m t C `$ @= w y :# ^# t `$ % 2, w Z$ ^# 2, ^# s> k + 5' r, x, s, u, u, z, z, u, y, y, y, u, z, y, y, y, y, u, y, y, y, y, y, y, y, x, y, u, y, y, y, y, y, x, u, y, y, x, u, y, y, t, x, y, y, y, u, y, y, u, y, y, u, y, s, x, u, y, u, u, y, y, y, y, y, x, u, y, y, y, y, y, y, y, y, y, u, A, A, x, y, y, s, x, s' & ~ { ## ) | | ; ) { | ] ) %= U@ | ~ 2 & ] | ] ~ 4 ; Q$ - - . ", +"y, y, 8' 8' +' Mp.+' Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ [: Mp.[: Vp.z~ z~ z~ q, *[ z~ z~ q, z~ *[ *[ *[ z~ z~ 9i.ah.z~ z~ xi.9| *) Pi.*) xi.q, )~ <{ 9| <{ <{ <{ 9| 9| *) <{ J$ <{ *) *) <{ l) ;b <{ J$ J$ R@ <{ J$ R@ ]& L$ L$ 0' R@ G= I/ ]& L$ I/ I/ ;b 0' ]& L$ 0' # # Dv [n 1) # ]& ,Q + 1) # $ . # = $ $ $ ]& + [* 5_ k) ]& > + $ + + # & > > [* > & * $ = - & $ Q$ > > 5- N$ ' N$ | & U$ Z! & R$ ] | &= ) =' %= X@ R$ & ] ; N$ ; X@ 2 H= | ) ] | ~ X@ | | H= Z! - ] X@ ~ 2 [ ~ X@ 2 N$ | ] 4 ~ 1 5 5 V~ ( 5 < *# < -# /& 2 1 [ 5 W@ $# 1 5 } 6- { < V~ => } 9 9 -# a B; 6 6! Y> q> ># 0 {# ~# Y> ,# 6 N' g ,# 0 b ]# A~ j o n n g q> k Y$ s ~# ~# j j ~# c {# ^# p n :& C; t' /# C; e m 4* n^ Y$ {# [& `$ `$ L= Y$ h Q{ D Y$ L= o 9- 4* Y$ `$ 1; ^# n /# h m 1, m m Z$ h h t t m w D p q w m A I n! m F m I G /# Z$ G F y G B M z O@ z P@ A N q w G `$ D M= C M= }# w J 7* I A A P@ %> K@ I I E$ c- Q@ A M K I N H P@ H$ 2& A H$ #= O@ :* +% I K@ J S S M A Q@ @% C$ M K@ E$ P@ x I z P@ 8* I I P@ K@ Y w E$ 1& H 1& M@ H P@ T J K@ J Y P@ M A Y M Q@ O S H J 8* N@ Z H K@ D$ 1# M P@ 8* M H A 8* P@ E$ P@ b- #= H E$ N@ A J ` b- I Q@ b- I N 7* N x I P@ @% O@ G D #= f^ S M@ M@ P@ x I M Y A H$ K@ A T 8* 8* A K@ M@ n! +% M@ G G A z A P@ ^# I I M F= N :# I D x N x z /# M G >= Q@ A 4* D p F= ^# /# z w `$ #] p `$ v ^# D ^# Y$ m N D 4* :# y M= D N C w ^# m ~# ^# Y$ c $ 2! z~ r, x, s, s, y, u, y, y, y, t, v, A, y, y, y, y, s, z, y, y, y, y, y, y, y, u, v, v, y, y, y, y, x, s, y, y, u, u, u, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, x, z, y, t, x, y, y, y, y, y, y, y, y, y, y, z, u, y, y, x, s, s, 8' x, y, u, y, x, s, *) 2 ## ~ ~ %= { $# ] | 2 | { X@ ~ > N$ } ~ X@ .# 2 S$ ^ ^ U@ ~ U@ Q$ = ", +"y, y, 7' !q.Mp.Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.6' q, q, Mp.+' Mp.q, z~ *[ z~ z~ *[ *[ q, z~ z~ z~ *[ z~ z~ 9i.vh.*[ z~ 9i.9| ah.z~ *) 98.xi.*) <{ <{ 9| 9| <{ 9| <{ <{ <{ <{ 9| 9| <{ <{ <{ <{ 9| ], R@ ]^ <{ <{ J$ R@ ]& G= I/ L$ R@ BN I/ R@ G= I/ G= 0' 0' 0' I/ 5_ # # 0' = # Z, # R@ + = = E! # # # $ # .( # + 1* > + =' # . # # !, & . }, $= ; . S$ S$ $= > ^ $ & > - Z, $= U$ P$ $ & | R$ %= ] %= N$ ~ N$ o! o! 2] &= U@ | H= Q$ =' | 2 N$ ) , ; Z@ U@ ## 2 ~ ' N$ { [ 7- | ~ 2 7- H= 7- <& { ~ *# 4 2 } Y@ : { d 2 *# D, ( { ## } W@ 6 ;# [ } 6 &# } V~ N$ 7 *# d d d 6 i $# d ~# 0 [ b a a ,# 0 Y> c ># k c o &# a c {# 7 W$ n a c A~ ~# a a h n L= {# Q{ 3] n }& 0 [& c Y$ `$ Q{ ~# D h Vj r ^# ~# _# h |& Y$ m h p -) n^ C p s> p ,> p m m m G h b' y p l w ^# `$ Z$ Y$ m `$ t G t q y )> w ^# D Z$ D o D F B w D N B N I z {& I Y A ^# {& F= N N G x A 8* <, F= 7* A N O N 7* G Q@ x Q@ I K z w z Y z H M A Q@ Q@ M A @% A z M I A A M A K S 2& M@ A ^# G I P@ |# H$ I P@ +% J K@ H @% ` #= A O@ Q@ z A Q@ M 8* E$ T J J P@ J E$ P@ Q S P@ P@ P@ P@ H$ M@ A P J |# o> H$ z J I O@ I 8* S L ` P@ H P M J N@ N@ O@ A z Q@ S P@ %> Q@ A A F= H$ Y A A #= M@ I A S Q@ +% Q@ P@ }# x M z A M A 8* S x Q@ F= 8* #= N :# z I M B G Q@ N A x N %/ z K :# :# N z ^# m :# I G z m m w t 4* G `$ `$ p `$ w w _# `$ `$ I m ^# m p `$ /# Z$ D 6* 1; ^# Y$ o Z$ m p h l O$ *) q, +' H) s, s, u, s, u, x, z, y, y, u, x, y, y, y, x, x, y, y, y, y, y, y, u, z, x, ' y, y, y, z, y, u, y, y, y, z, u, v, A, y, u, u, y, y, y, y, y, y, y, y, y, z, x, z, y, x, u, y, y, y, y, y, y, y, y, u, y, z, x, y, u, y, y, y, y, y, y, x, u, u, s, *) 2 ## [ W@ 2 ; { ) `@ : N$ ) X@ S$ & S$ < H= ; ] ; R$ S$ & S$ ; S$ U@ S$ ", +"y, y, 8' Mp.!q.+' Mp.+' ~q.+' Mp.Mp.Mp.+' +' [: q, Mp.6' Mp.[: z~ z~ q, z~ z~ z~ z~ z~ z~ &[ *[ *[ z~ *[ vh.ql.z~ z~ *) 2! z~ *) 9| $8.*) |1 9| 9| 9| <{ 98.*) <{ <{ <{ J$ 9| 9| I/.<{ 9| <{ jP jP 2^ R@ I/.;b J$ *) BN 0' L$ J$ jP 0' I/ I/ I/ + 0' L$ I/ I/ 0' + * ]& 0' ]& * Z, $ + 0' R@ ]& 1) # $ # [* # # ]& # $= + . 1* S$ o! V@ V@ . o! . . & $ & $ > Q$ - Q$ Q$ = . . Q$ > $ . & > `@ & & H= o! X@ X@ ] & T- %= 2 N$ T- ] J) 4 | Q$ { ] N$ | | | Z! 2 X@ 2 2 1 7- ; | 7- { [ *# ( { [ 2 => ) | ~ 1 Y@ 7 $# 2 } N$ 2 ## ;# / 6 D, [{ 6 ( 7 6 ,# ) [ 6 d /& 9 1 == 9 5 5 ( } i / [ e 7 $# e ,# 7 a 7 j V~ }{ W$ e n h 0 e ~# ># ,# 0 {# e a 7 n }& C; `$ ,# e V$ h a [& X$ n K= n 2, h ]c o c n L= n `$ p h h 2, D l Y$ `$ p `$ _# h m n^ q c{ ^# h /# h Z$ D % Z$ m ^# 4* w D ^# t I {& w w -= ^# y w <, Z$ w P@ #= H$ c- O@ C ^# O@ z D {& G G B G I w N M= z N G z +% I N C A G @% Q@ O@ N A G Q@ I I S A I #= P@ I A O@ A J w G M@ A S S A Q@ Q@ I I@ P@ z M H$ M K@ z I M S z S b- M @% M M P@ P@ j4 H G 1& P@ H$ N@ A H$ 3# S M S S |# o^ M z M @% K@ L@ J Q@ I O@ H I w A 8* P@ J 3# S L L S Q@ z H O A M A N@ P@ P@ P@ z G M= P@ N O@ M S M@ I b- P@ z 4, N x N z G 8* I x S M A G x I G w I G A I G D w C /# Q@ I D w C ^# N 4* t {& z G G z w D D w /# D 1; p $] m 4* w ^# G D L= m C Y$ ^# p D h ,> ^# `$ Z$ y C t w w `$ V| Z$ _# ; *) r, q, x, x, z, x, v, x, x, s, u, u, y, y, y, y, y, y, y, y, x, y, y, y, x, z, z, y, y, y, y, y, y, y, y, u, u, y, y, z, y, y, x, x, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, u, u, s, u, u, y, y, y, y, y, y, u, z, =) s, R@ > ## ] Q$ ~ 2 N$ [ R$ ~ & U@ | [ X@ N$ R$ ~ ; ; > ; ] > (& U$ ~ ; ^& ", +"y, y, q.Mp.!q.Op.Op.+' +' Mp.Mp.+' +' +' +' +' q, z~ +' +' +' z~ z~ z~ z~ z~ z~ z~ z~ q, z~ vh.z~ z~ z~ Ip.vh.*[ z~ ah.98.ah.*) 9| 9| 9| $8.<{ <{ 9| 9| <{ ], I/.9| ;b <{ 9| 9| <{ <{ <{ <{ <{ k3 R@ R@ jP I/..( 2^ J$ I/ I/ L$ ]^ L$ I/ G= L$ = L$ J$ 0' L$ 0' = * ]& BN = K$ + ]& $ # + 0' + T@ * V@ o! . # V@ > S$ $= + # . # . M$ ' $ [* H= . > $ > $= $ P$ . $= $ |* - Q$ S$ U@ & N$ - . > ] | Q$ o! ^ ) & > N$ | & | R$ H= 4 { V@ H= ^ ; > ] [ N$ 2 ~ | 8- ) ~ Z! 2 / ; X@ ) { 2 | ~ /& 1 2 5 4 $# { 6 { /& { <& d X@ [ /& ^ ( 2 [ } e } 7 8 } => == 5 x0 6 ## 5 ,# } } a 6 ,# 7 0 3* 6 e 6 0 i k ]c ~# 2, 0 ~# 0 ># e e a' j [& A~ ~# e 7 n n 0 `$ g [& 6- c h r m L= n o a ~# j h _# p! `! }& c p ^# ^# Y$ h i n^ Z$ |& % D D p ^# m r ^# p p % C; p m 4* w D F= z D t w I D I ^# G m D % D D G D G I :# A 4* w x C I G z z N /# N :# D N G N A z N %/ G w 7* z }# N I G N F= @% Q@ z b- H$ I M N@ G P@ @% x A I ^# G #= I @% Q@ b- Q@ @% M b- Q@ I S H$ S Q@ N@ S E$ P@ G S I A Q@ H$ A I I {& I N@ O@ I A P@ I z n! K@ A O c- M Q@ x Q@ P@ H$ A H P@ }# A C, M %> F= z N P@ M M S +% M H$ 7* A O O@ I A P@ A P@ @% w +% +% G x @% x %/ A I Q@ S x A H b- Q@ N 1& K I I {& B M= F= C N ^# m Q@ N z #= I /# A I w G M N K N w F= t D E #= A G ^# {& N N I N w :# G Z$ z 2; N G ^# ^# r `$ :# :# t G C p n D O' Y$ 4* 4* `$ 5* ^# % r ;) ^# V~ ], [) r, s, x, z, x, y, u, u, y, x, x, y, y, y, u, t, y, y, y, z, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, y, u, y, y, y, y, x, y, y, y, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, x, z, x, q, # U@ - ) ] [ ) ] `@ N$ | %= 2 N$ W@ | | N$ | ) ; [* U@ ; . %= R$ N$ U@ & ", +"y, y, 7' !q.!q.Mp.Op.Mp.Mp.Mp.+' +' Mp.Op.Mp.+' *[ z~ Op.Mp.Mp.[: *[ z~ z~ z~ z~ *[ *[ z~ z~ 9i.|1 z~ z~ *[ vh.ah.*[ z~ xi.xi.e^ *) 9| 9| vh.<{ 9| 9| 9| <{ 9| 9| 9| <{ ]^ ]^ ]^ I/.<{ e^ ^, J$ L$ J$ ]^ 9| I/.=$.I/ I/ L$ I/ 0' J$ 2^ 0' I/ L$ k3 0' ]& 0' I/ 0' = + + BN $ 1) K$ + R@ =[ + L$ + + $= # V@ S$ . $ > > + k) . . $ # $= H= S$ . Wp.k) Q$ ; # = ' P$ S$ . > |* 2) S$ ^ > > ,Q - ; =' ; | | X@ 2 (& Q$ 2 & N$ ^ ] - | ) ] i#.| ^ S$ ] &= 2 Z! 2 ~ 2 2 | N$ /& } *# X@ X@ 7- 2 ] < | 1 ## / 2 { 1 ( < : { ( < *# ~ [ ## } 6 3* Y@ 6- ( ,# 7- 6 Y> :_.6 d ,# N' 3* 5 Y> < 6 W$ a b a 0 6 8 n b i c 0 : ,# L= h 0 a d ,# z: p L= a a' c 9- a h ~# n X$ a 0 a |& `$ s> }& h r n 0 7 e r r Y$ 0- j e h m Y$ r Y$ h -) o h p m `$ p u p G p n Z$ N p u D /# w w 6* q w w D G /# ;) r C D G n! )> F= p D w C u F N C N N G B Z$ }# O@ I A B w {& F= N N G q2 A F= T x I A N= F= N A I I G N x F= O@ w G B .~ n! A m w A G z A Q@ +% H$ 2& J Q@ GK M Q@ a- I G B H$ A I P@ P A Q@ A 8* I I G F= S N@ n! z S 3# H$ z G I I o^ A A I I O J &> Q@ Q@ M H$ H$ P@ P@ I I M A I A O@ 7* O@ N A 8* A N A M I M K@ G G 7* N x D G 7* I F= x P@ Q@ K@ A K@ A x G A z I I z w A 2; G I N 7* I G D w F N I N 2; ^# m ^# C w F C w {& w {& G N G G G N m D D ^# 4* w {& G ^# :# Z$ F @= @= G p m Y$ m t m m Y$ 4* m q t ^# {# h `$ h 1; r a ]& [) r, 6' [) t, y, y, y, y, y, x, y, y, y, y, u, u, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, x, s, s, w, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, x, u, s, t, s, y, y, y, u, u, y, u, y, u, q, [* 2 ] 2 2 X@ ~ ~ > | ~ : ) | N$ | ~ { | ~ ; T@ > U@ ; ^ U@ ^ | 5- ", +"y, y, 7' Mp.Mp.Op.Mp.Mp.+' Mp.Op.+' Mp.Mp.Mp.+' [: z~ Mp.+' +' Mp.Op.z~ z~ z~ q, z~ z~ z~ z~ z~ *[ q, ql.z~ ah.xi.z~ z~ q, vh.|1 Pi.|1 98.$8.*) 9| 9| 9| 9| <{ 9| 9| <{ <{ 9| 2^ ]^ 9| *) <{ ;b L$ 8S <{ 9| 8S ;b l) R@ R@ I/ 0' I/ ]^ ]& I/ R@ *) ]& 0' 5_ 0' ]& I/ 0' # ]& ;b 0' + # + ]& + $ = . + # [* > 2) [* * $ 1* + ;b R@ ' $ . + 2) . $ !, ]& ' & > + $= A; - = & U@ & $ > > * }* S$ U$ > N$ | N$ 05 ; & Q$ U@ Z! ~ X@ & %= S$ | ] J) N$ U$ %= & ; { Z! { N$ 2 2 [ ~ X@ Z! ) | N$ | | 2 { ~ | *# | ( X@ { } { { ( J) $# 4 ] 4 : ,# q> ,# 7 $# 6 1 ( -> { D, /& } d } 6 ># a } 6- 6 7 d Y> 0 k e L= k } ~# ,# ,# W$ !# ~# a j 6 $# 7 L= 0 i {# ,# 0 a O' L= ~# n j a a 6! h c r p o |& n L= 0 a' Z$ `$ Y$ `$ e ~# Y$ ~# o/ r Y$ n h 0- % m h ~# l p `$ D b' /# z ^# D ;= {& /# ^# p `$ Z$ ^# w ^# /# t D C ^# D G Z$ Z$ ^# w G z G N G x x A G G ^# D 2; t G N {& }# N 8* |{ C S C G A ^# I M= N x P@ N ^# I @% #= Q@ z D N x C A N F= }# G w M= A Q@ N@ A H$ N Q@ P@ Q@ P@ I A I A I F= z H$ 8* P@ A z G M I z w {& B N@ n! A S O E$ I 3& S H$ E$ P@ K@ H$ A K@ M@ M P@ Q@ M G #= 1& 7* O@ G A P@ P@ O@ O@ M N I #= M z G A P@ m) N Q@ w {& C C P@ N= w x z w A C N N@ E= A N G B I A O I /# m w b' 2; I w G G I 7* C x A I D x /# C /# N x ^# N ^# V| Z$ ^# {& C 2; m D ^# C C A 4* 4* Z$ t ^# ^# o _# D 2; ^# p `$ Z$ Y$ Y$ _# ,> p h h ^# `$ `$ `$ -) p h l ~# s> e R@ g] q, z, s, z, z, x, y, u, x, y, y, x, u, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, x, x, x, y, y, y, x, v, s, y, u, |) s, 6' s, y, y, y, y, y, y, y, u, H) y, y, y, y, y, y, y, y, s, y, y, y, y, y, x, u, y, x, u, y, u, y, y, z, x, s, u, y, u, v, v, ; ; { { { ~ ## X@ ~ # | [ ] ~ ; ] ' ; %= H= U@ . . > N$ N$ ' S$ & ; ", +"y, y, x, +' Mp.Op.!q.Mp.Mp.Mp.+' Mp.+' !q.Mp.Mp.+' Mp.z~ [: +' +' Mp.z~ z~ z~ z~ q, z~ z~ *[ z~ z~ z~ *[ *[ *[ ah.9i.z~ z~ &[ xi.Pi.<{ 9| vh.$8.*) 9| 9| 9| 9| 9| J$ 9| <{ <{ R@ J$ *) <{ ]^ <{ 8S <{ J$ R@ R@ I/.<{ 2^ L$ 0' (}.L$ J$ jP #S BN V! ]& R@ ]& I/ X! 0' Dv # + 0' 0' $ # # 0' # 0' L$ + + Q$ [* ]& . [* $ V@ [* .( = |* [* $ V@ $ = = ]& . ] . [* V@ . $= > Q$ Q$ %= > U@ & U@ ' H= > ; & N$ ; S$ X@ ; > $ N$ N$ | ; N$ U$ U@ ; 2 | | ] ] N$ g{.) { P$ | ^ 2 ; ] 2] N$ ~ $# | ## ~ { 2 2 ~ /& X@ D, V~ [ D, 6 2 [ 1 *# { ; { 9 N' } 9 { 4 d { } e 6 } ) $# d 9 3* L= J] $# d k ># 0 k 7 3* } b 9 6 3* ~# 7 J] ,# 0 e c d e 0 [& 7 a 7 c L= 0 L= c ~# Y$ 0 6 ~# c L= ~# e c p h ~# n ~# a *= Z$ ~# O' -) {# ~# r y2 `$ 1; % Y$ Y$ `$ w o `$ /# _# c{ C D % h ~# ^# :# ^# m Z$ _# `$ /# Z$ h D ,> w {& ;) D 6* m `$ ^# p ^# G z w S G N t M G F G ^# A ^# D m 5* G N D S N z x N N N {& N A z C C /# M I z N w K Q@ N S P@ A C Q@ z w G w I N I N ^# I z S +% Q@ b- z P@ I @% z I A M b- M @= A I G I ~& G A Q@ P@ }# z M I I A F= z 1& S S A E; M x I A }# Q@ G A O@ A }# G I I K@ M Q@ ` K@ 8* N x G M z Q@ A I P@ b- w G A x m I I N M w N G A K@ O@ w x w z Q@ n! z #= A G {& I G Q@ z x I b- A w F ^# M= z D N /# m b' x D w N `$ Y$ 4* ^# p /# p 6* p /# y m s> G % q `$ Z$ p `$ }& Z$ ^# h /# h r (# L= n o O' s> `$ -) r n o p n o L= f] ^, 6' s, s, s, s, x, y, x, u, z, y, y, y, y, s, s, y, y, y, y, y, y, y, x, u, s, x, x, z, y, u, y, y, y, x, s, u, y, y, y, u, y, y, s, z, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, x, x, y, y, u, z, s, y, y, y, y, s, x, s, q, & ~ %= } | | N$ { | [ { | > | > ~ | %= N$ ; - { U$ R$ > S$ . & ^ | ", +"u, y, z, +' +' !q.!q.8' +' Mp.Mp.+' Mp.Mp.Mp.+' y: [: q, [: +' Mp.Mp.z~ q, z~ *[ z~ rl.z~ z~ z~ z~ z~ z~ z~ z~ ah.Il.z~ *[ 9i.xi.z~ Pi.<{ |1 $8.*) 9| 9| 9| 9| 9| 2! |1 9| 9| J$ 2^ 9| <{ <{ I/.<{ I/.J$ R@ R@ J$ J$ ]& I/ jP I/ BN J$ 0' 0' I/ 0' I/ 0' R@ R@ I/ L$ + # + I/ ]& # # L$ =[ $ 0' + # k) 2) $ # + . > . ' 0' U@ ' . * V@ Q$ $ V@ $ A; > V@ $ . H= > * S$ S$ > ; . U$ > & > ] ] & %= P$ Q$ . ) %= o! | ] ]& ; N$ X@ Z! ~ U@ & & ] ; & ] | & { (& | H= ; T- ; { *# N$ { 2 2 2 { N$ 4 { } 4 d } 5 [ *# N$ { X@ ## 4 [ == *# { ## D, b d 8 d ( /& d d Y@ ( d 7 V~ 6 a == 6 6 / B; g V) } Y@ j c X$ 6 d ~# a ~# g L= ~# e [& c b C; k 8 ,# j g L= {# c k } n m h e 0 $# O' Q{ 0 c a ~# 0< c n 4* L= L= [& n -) `$ m y2 ^# c [& m ,> s> u ^# f r ~# ,> Z$ Z$ 0- Y$ ,> r Z$ r ^# `$ r y w D t h ^# D `$ ^# y C D C ^# C D t Z$ 1; :# {& /# ^# #= % G [# ^# N G 7* N M= C D I I C G B B 7* N m w N I Y N@ G /# G :# I N I A N A G '> {& Z$ /# Q@ Q@ z O@ B N z N N z G I M Q@ A I G A M z z P@ z b' z M I P@ A T^ P@ I z N z #= N w I B w M A G N@ Q@ Q@ P@ .~ M@ M P@ N Q@ o> b- q! m) E$ I S 8* A N K C z N 2; M= x x G A ~& M N w m G I z x G {& A Q@ z G z x N A B I G N B m w x B I w D N x 4* D /# z N ^# b' % m h 2; :# G s> m w `$ :# {& % m D N m G D D Y$ N G ^# m ^# `$ r D ^# p m n Z$ ,> n Y$ Z$ h `$ p r `$ K= L= o `$ 0- e 8 R@ 5' 6' s, t, s, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, t, x, u, z, z, y, s, u, u, y, x, s, y, y, y, y, x, y, y, t, z, y, y, y, y, u, y, u, u, u, y, y, y, y, y, z, x, u, y, z, y, z, u, x, s, x, y, y, y, x, u, y, y, y, u, s, x, x, ], | { *# 2 W@ ~ > 2 | ~ ) ] | & Z@ . ) ] U@ - > (& ] ] & R$ > N$ 5- # ", +"y, y, w, Mp.+' +' 8' Mp.Mp.Mp.Mp.+' Mp.Mp.Op.8' Mp.[: z~ z~ Mp.Mp.[: z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ q, z~ 2! vh.*[ z~ ql.$8.98.5' *) 98.xi.<{ <{ 9| 9| 9| <{ *) <{ <{ 9| <{ 2^ ]^ I/.I/.l) J$ l) L$ R@ G= ;b J$ R@ L$ I/ BN 0' ]& R@ R@ ;b I/ G= 0' I/ 0' ]& 0' I/ ]& # # ]& ]& # # ]& = + + 0' + V@ H= S$ ]& + Q$ [* > + 5- $ 2) > . . > ' 2) $ + > - = > > & Q$ . ' $ ; . $ U@ - + H= ] > U@ & |* S$ ; & ; & - > N$ - ~ U@ . X@ W@ ; *# & N$ N$ ~ Z! ; 2 |* [ | ] 2 ^ ~ > | 2 } 2 H= ) X@ *# F:.) /& ) [ ( $# ~ /& I= /& ( D, $# [{ { /& ## ) / J] 5 d ~ } 4 V$ 7 6 /& 2 3* => / d 1 [ x0 5 *= Y> d c Y> a' 6 q> a 9 ,# tA a a ## *= 7 d c j a ~# ~# {# a' a ~# {# c{ a c e 8 c j s> 1; r c o c ># h p 0 Y$ L= ~# n n L= h h {# p C; ~# ^# _# 0 n D ,> ^# p p }& y `$ w `$ ^# w D D p [# z Z$ w % ,> `$ r r ^# D :, D w `$ `$ `$ :# I N N M= G G p D N {& {& ,! C x M= ^# I C 7* x /# N F w G B B D F :# G )> D A A z B S N G I G w G D A O@ w F= D G x N /# G G G C I A N A H$ Q@ A A x N z P@ N G K@ I G B O@ H M N E; I #] C 2; D N z B E$ I N G A x 8* G A I G x I A G G G S H$ Z$ I z A a- M= D w N N #= K G M= G N I G Q@ N w z x w x N I w }# w % K@ A z I w N F I Q@ G D m N 1; w N B D I D t D :# D 4* G Z$ ^# 2; ,> m y N m `$ q w t G w ^# D Z$ ,> p 4* p _# r ^# p p s> t _# L= n p Y$ m `$ C }& (# `$ n L= h m L= s> 8 R@ 6' v, x, x, 8' y, s, u, z, y, z, u, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, y, y, y, y, u, y, y, y, y, y, z, y, u, z, y, y, z, z, y, y, y, y, x, z, x, z, t, u, y, y, y, y, y, x, x, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, u, u, z, u, J$ ) /& %# [ U@ ~ U@ ~ W@ ) | ) | { N$ ] | S$ S$ $ ; & & ; - ; }* ' . ; ", +"u, t, {q.8' s, +' ,q.!q.Mp.+' Op.Mp.Mp.Mp.Mp.+' Mp.+' Op.z~ Mp.+' Mp.6' z~ z~ z~ z~ *[ *[ z~ z~ z~ z~ z~ z~ z~ z~ xi.9i.z~ z~ $8.$8.|1 *) e^ |1 <{ <{ <{ 9| 9| 9| 2^ 9| *) <{ <{ <{ J$ <{ 8S <{ 9| I/.I/.<{ J$ R@ L$ ;b R@ BN L$ 0' I/ R@ #S BN #S R@ .( 0' ]& R@ 5_ 5_ I/ ]& + = 0' + $ + ;b # Z, = + . ' + ]& + # $ # V@ . 2) . $ # = # [* L$ + . 1* $= $= S$ . = ; %= Q$ P$ ; ; . U@ > > & ! N$ > & > 'W U@ ; H= & %= N$ | > > Q$ N$ { ^ & $ & > 2 [ ( Z@ N$ ] | | ~ ; H= ; P$ .# & ) Z! 7- 1 $# d J= 2 /& W@ { d ,# < *# 6 { ; /& { ~ { 2 $# ,# $# 1 d } ( ## } I= ,# 6 /& a ( e a b 7 a 1 ,# ># d e a d 9 9 $# a ># ,# 6 e 7 a 0 ~# V$ i -# 7 7 9 q> n ~# vk K= n % 7 $# a a s> n _# ~# $# 7 j h h e n e [& L= c C; [& e c % p 0 Y$ h s> Y$ ^# s> `$ ^# Y$ p 1; 4* m h m w y m c Z$ m Z$ /# /# ^# n p Z$ G c{ ;) `$ }& ^# C D M= n! :# N z F= G /# G C ;= D N C C GK ^# /# D Y$ B N ^# I G G A G I w w F= I I P@ m /# I C F {& #= G B t N z z A x G }# A Q@ G I %> b' {& I {& G N x N= A I x A w 7* F= {& Q@ }# F= N N I G ^# E$ K@ {& /# w t )> 8* w I A G Q@ N N M N@ z G I E$ M z I z M I I G I I |{ C #= Q@ N N C I C :# N #= I A N G N M= {& N N w A t :# @% G x ^# Q@ {& /# ^# % G D }# F w :# ^# D w m D Z$ m N ^# G :# p y :# m Z$ Z$ Z$ % ^# t ^# `$ ^# `$ ^# G c D p m p q p c Y$ c p o ]# Y$ m n E, L= Y$ {# 2, L= r r }& m e r h c c p n # 2! +' x, u, s, y, x, y, x, s, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, z, y, s, y, z, x, y, u, u, s, H) u, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, y, y, y, y, y, y, y, y, u, A, x, s, ; ~ ~ [ ) [ | 2] U@ N$ ^ N$ N$ X@ ] ] ] ; S$ Q$ & ] ; > . ' > 2 | %= ", +"y, t, ]q.!q.8' +' !q.!q.+' Mp.Mp.Mp.+' Mp.+' Mp.Mp.+' Mp.z~ Vp.Mp.Mp.Mp.Vp.*[ *[ z~ z~ *[ z~ z~ z~ z~ z~ q, z~ z~ ql.vh.*[ 5o.2! $8.|1 *) Pi.9| <{ 9| 9| 9| 9| <{ 9| 9| 98.q, 2! <{ J$ <{ <{ <{ <{ 9| <{ <{ J$ J$ l) L$ .( ]^ R@ I/ BN BN BN *) <{ V! G= I/ I/ L$ 0' 0' 0' 5_ V@ + L$ L$ # z] + + $ + ]& + # V@ # 0' ]& # # + + + 2) 1) . . = Q$ Q$ $= - # - ]& - (& .( $= |* [* . |* S$ . ; & ; Q$ O$ V@ . Q$ > P$ & & & %= ] X@ - ' ^& T@ & ; & P$ Q$ T- ; & { 2 | X@ R$ > ] N$ U@ | | ; H= N$ S$ ; 2 X@ { /& 1 < X@ { ~ Y@ d ## < 4 2 2 ( ) T- ( $# ( ## ( d 1 / { N$ { == [ d } Y@ b 7 6 $# 6 8 V~ 6 o ( a ,# 0 ># ,# ,# ># c 0- 9 X$ 0 6 ~# a 6 X$ a ,# 7 } 7 8 c a F! 7 2, 6 ~# ,# n i a ># V$ ,# ~# 0 L= h _# s> K= h Q{ c p -) K= ~# L= Y$ L= s> r Y$ h o r z: p 0- h Z$ Y$ h r q [& m D Z$ o `$ r z Z$ C r h p `$ `$ y ^q.t `$ ^# ^# C y Z$ z D C ^# M= 4* N h G {& }# m 4* N 4* C N A ^# C D N A I G N N N V| z q F= N N G ^# N {& I x /# I G /# {& N z I I A A A G N 2; Y A B N G D N x z G ^# /# ^# G F= A G F= G I /# Q@ N F x G q! z w ^# D G /# K@ x G q2 8* E$ B 7* x N 6* G N M z A )> z w Q@ x G C M I N N N z I A Q@ N A N B t B GK D G z w N A D 7* x D G D F= ^# D C w D Y$ G m D A b' N ^# Z$ N ^# G 2; D t q m ^# D C D V| Y$ _# p Y$ m `$ m 4* n^ % C D :# n^ L= t' /# Y$ r p `$ `$ o |& n 1; Y$ }& |& 0 n L= g n C; _# g L= c ~# {# K= *> g~ r, x, x, s, x, y, z, y, x, y, y, y, u, u, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, u, y, u, s, x, y, y, u, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, r, ]& S$ | ~ ) ~ { / ] & S$ ] ] > Q$ ] ; | ] ; ; ; & S$ . > & |* S$ ] - ", +"y, u, x, !q.Mp.8' 8' !q.+' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' +' +' z~ z~ Mp.Mp.+' Mp.z~ z~ z~ z~ *[ *[ z~ z~ z~ *[ z~ z~ q, ql.vh.9i.z~ e^ ah.xi.<{ Pi.*) $8.xi.*) 9| *) ], <{ 9i.9| 9| *) <{ <{ 9| I/.<{ <{ 9| ;b l) I/.<{ 9| ;b J$ R@ ]^ I/ jP BN 9| BN <{ L$ I/ I/ I/ 0' G= 0' 0' 0' L$ I/ * 0' # . # + % }, ]& $ % # + 0' L$ + + . # V@ L$ ]& > . = ]& . $ $ [* . & L$ !, # $ # |* = $ & ; Q$ 2) > o! k) $= [* - = $ - o! (& - | o! | Q$ . U@ R$ U@ S$ ] H= X@ ; > > 05 & Q$ S$ ' > ; ~ ; Q$ H= ^ ; ] ; N$ X@ N$ } Y@ | { *# ~ : ) /& } 8 2 Z! ( 2 ,# } -> I= ,# d 7 $# ( { 2 8- 6 } d N' 9 } 0 ,# i / } 6 k a e b 6 8 7 ,# a ~# ># a {# 0 7 c 0 k ~# i k h e ,# 0 i i n e b ~# a' ~# 8 0 n g ># 8 9- 7 j -# k _# ~# ;= 9- h ~# h h {# K= Y$ n ~# m h % p ~# Y$ `$ `$ Z$ _# Y$ h xE n ]# ,> C; m c `$ ,> G t GK D :# r o Z$ `$ ^# ^# _# c{ /# ;) Z$ M= A F D M= B ^# m Y$ G :# C {& :# G w D p y w ^# z G w G :# ^# x N= /# 7* w #] I w w K@ I Z$ :# N 2; N F= C I z A N N F N F= G x ^# x w G D G 4* ^# ~& D w 6* G w A z I K@ I I ^# a7 w G x B 5* N B w I F= /# I z {& x E= I x N 3# w Q@ Q@ D D x G G x w G I :# D G w I A I D G I {& I w w {& B w N >= w x {& D N G t G t G S C ^# w G 4* :# h 1; N 1; D G D C D E= Z$ p h A t m p y2 % D N b' D h q X$ `$ % 4* `$ ,> w p q 6* ;= b' {& Y$ 4* m p ,> c{ b' {& t h [& h D -) h X$ Y$ {# W$ `$ h n c{ h c o e n h ^ 5' s, H) x, x, s, u, y, y, y, y, y, u, t, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, x, u, u, t, s, s, y, y, y, y, y, y, z, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, r, # ] | ; 4 ) ] W@ S$ ~ ; ^& $ ] ; ; ^& ] ] ^ ; - 2) & . V@ * Q$ * Q$ * ", +"y, u, x, !q.8' Mp.Mp.Mp.8' Mp.Mp.Mp.>q./q.Mp.Mp.Mp.Op.Mp.Vp.z~ z~ Op.Mp.+' [: z~ z~ z~ z~ *[ *[ z~ *[ *[ *[ z~ z~ z~ 9i.vh.*[ *[ 9i.2! |1 Pi.|1 xi.xi.<{ <{ *) 9| <{ *) 2! <{ 9| <{ J$ 2^ <{ 9| <{ 9| I/.;b ;b L$ ]^ R@ J$ J$ J$ R@ I/ I/ G= I/ G= ;b I/ L$ ]& #S ;b J$ 0' Z, ]& K$ + = # `Y # .( R@ # L$ 5_ # . + $ $ . . Q$ S$ |* $ ]& > # # . V@ ]& = |* . + # ]& + !, = > |* H= + . $ & & ; ' ; R$ > S$ Q$ > . o! > $ = . | U@ > ; | . ] ; & S$ | =' ) ^& U@ N$ { ) U$ %= ) ~ S$ ~ [ N$ & > | { ~ [ 7- 2 [ *# J= &# 4 1 5 { ~ ~ 05 { } } 5 { ( } } ( { { { 2 ( => D, G9 ) 5 Y> d 7 Y> d 0 a Y@ e < 9 ># ( V~ ,# 7 ,# M' 0 4 7 b d a 8 a 0 0 ,# o e 8 j e a h L= Y> a 8 L= [& ~# ~# o n n ~# 6 n X$ L= ~# X$ ~# C; c L= A~ Z$ c s> C; c ,> o p h ~# m o ~# C; n p n n `$ Y$ p r p /# _# D D; w `$ w r /# q q Y$ Z$ `$ /# C p w y G D G z N :# ^# D ^# D w D 4* ^# Y$ p t ,> C C C w G 4* G ^# {& ^# }# {& m z N ^# C C w C Q@ G {& M= ^# m w w D t G q C w x G G z B ^# I /# I E; A z A W) z I z w F= F= N A z G N= z G I N P@ I F= I O@ {& G B G N N I N= N %/ N x A G A }# w :# ^# % C x w x /# B F Q@ D q I G x G E; H$ A {& {& >= w I @% w x D w B D :# Z$ m C Y$ }# D w y I I ^# G p h p Y$ p m D ^# N p D w 4* C `$ O' Z$ `$ G D L= D ^# ^# -= Z$ w t 4* p C `$ 1; n ,> m 4* r e c `$ }& Y$ L= ]# % c 0 e o |& p % h L= a ># 8 j c _# ,# ;# 5' r, x, s, u, s, +' w, z, z, x, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, x, u, u, A, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, z, y, u, u, u, 6' Q$ N$ ~ { ) U$ U@ S$ U$ # N$ . ; N$ ; - ; ] N$ ~ ; U@ . S$ & & . & > T@ $ ", +"y, y, x, !q.+' +' +' +' !q.Mp.Mp.Mp.Mp.Mp.+' +' Op.Mp.Op.z~ z~ z~ Mp.Mp.Mp.[: e^ *[ *[ *[ *[ *[ z~ z~ z~ z~ *[ z~ z~ z~ vh.z~ z~ z~ 2! 9| e^ Pi.98.ah.2! e^ z~ 98.9| 9| V! *) 2! *) <{ <{ 9| 9| <{ 9| <{ J$ <{ L$ ]^ L$ I/.J$ G= I/ I/ #S R@ L$ I/ I/ L$ R@ 0' 0' I/ L$ Z, = 0' $ # 1) # # # }, k) # = ]& + + J$ % + V@ > = $ 1* ]& $ $ |* T@ 0' ]& . *' P$ ; # > H= > > Q$ $ - $ . > Q$ ' U$ - ; > %= > N$ Q$ > !, > U$ ) | Q$ ; & > Q$ | X@ ~ > ; & =' ~ ; H= | 2 N$ ~ | | [ ~ | H= ; %= X@ ) 2 { ] ) { => : [ D, / { ~ ( 'W 2 ( ## 2 } ( 7 ,# { 7 ( 2 3* [{ /& *# } { $# 5 /& Y@ q> 4 d ( 5 d $# 6 7 Y@ 2* $# 0 ~# 6 ,# a i 8 a /& 7 } 7 &# == g e a d ># n 6! e b 0 e -# 6 2* 6 V$ o 0 g j h W$ n {# j a $# L= ~# `$ ~# g e g ,> c n 2, n o h ~# l r n y r [& K= ^# 6! (# ^# :# q 4* `$ h l s Z$ t `$ p D `$ q _# {& t Z$ p y `$ p f^ C G ^# D 4* p r h 4* 2; Z$ _# ^# ^# p G :# p /# A m ,! M= {& G w w w F r D D G M= t G I C G B G m t G G q2 N= z w N@ N G M= N A I M Q@ w b' A N m D 4* H$ G G w G {& W) I G G B G I w z G I N= z w Z$ w /# t G w G G N N F D w w }# z % y G G x M= {& w A A :# t A I N N m y w A I @% G m n D N N I N w x C {& G ^# N w G N G p m C G w D 6* G w D D p G M= `$ 1; C ,> /# Y$ f^ B w I b' 1; m p `$ ^# D Y$ ^# Y$ D p e h q `$ 0- m L= o a K= e n _# K/ r e n e n a !# 0- a e ~# b :& X$ 6- a A~ 1 *) q, x, x, s, s, x, u, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, u, y, u, u, y, z, y, &[ | | | N$ X@ S$ %= 2 ~ | N$ ] ~ | |* N$ S$ S$ S$ ~ $ . S$ . > > o! > & N$ }* ", +"y, y, z, !q.8' Mp.+' +' !q.!q.+' Mp.Mp.Mp.Mp.Mp.Mp.8' 8' 6' z~ z~ Mp.+' Mp.+' z~ z~ z~ *[ z~ z~ z~ z~ *[ z~ *[ q, z~ *[ Il.ah.*[ z~ 9i.xi.<{ e^ 9| $8.$8.<{ 9| 9| <{ 9| 9| *) e^ *) <{ 9| 9| 9| I/.<{ <{ l) <{ <{ R@ I/ J$ l) R@ BN L$ BN I/ *) 2^ ;b jP R@ 0' 0' <{ jP ;b 5_ =[ + K$ # + K$ # + 0' L$ G= V@ [* + # . + + + # = > + # 0' $= $= + + # # !, ]& $ > k) 1) $ |* 2) S$ $ ' $ U$ U@ %= ^& U@ U@ & U$ ] + . > N$ Q$ > ] & ] > ; > Z@ ] Q$ Q$ - I= ] & Q$ H= ; 2 N$ ; ~ ) Q$ R$ ( N$ [ ] | ) X@ N$ | Z! ^ 05 8- ) d ~ { 4 6- 2 /& 5 { 2 ] ) 1 ( ## } } == b a ) /& } 2 == 6 d 2 d ~ 5 $# / ( } 7 6 a ( $# d ## 5 ~# } *# a a 3] $# j 0 8 -# 6 c a' ~# e c {# }{ 6 ,# 7 3* c 7 $# 8 i L= X$ h f [& Q{ k e e ;= tA 2, c o c n 8 h L= p n^ ~# Q{ h c Z$ n e `$ o 0 h p ~# n Y$ `$ 4* ,! Y$ h o Y$ q (# m u m X$ ]# _# ,> D W$ q :# y p r p Z$ p G p G p `$ D h Y$ `$ y ^# `$ t `$ `$ D M= C I C m D <, I G G D t D G D M= C C D }# t D ^# -) w w /# G F= Z$ ^# A G z A A 2; w I p 4* {& %/ w {& /# ^# N x ^# G /# 2; w z /# G z G D I I <, m I m) F= w w G %> N N A D :# N I ^# G I A /# G N w `$ % G C {& B F D G C I z D D m B N z #= B /# }# I N N ^# /# z 4* w t w /# w G B Z$ Y$ 6* 2; Z$ w {& t N z G q (# s> 2; ^# D {& D o p 4* ^# Y$ m m s> `$ Z$ (# }& p p D Y$ t 0- e Y$ c Y$ 0- Y$ c Y$ `$ Q{ X$ g Y$ a o c `$ Y$ }& c s> X$ 7 0 6 ~# g c a g j s> # x, x, x, s, s, y, z, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, z, y, x, z, y, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, s, u, u, x, s, 7' v, J$ | H= S$ & [ ; ~ [ S$ N$ ; & ; ] & Z, ' Q$ ; ' . ; T@ > ~ ' | A; |* * $ ", +"y, y, u, (q.(q.Mp.+' Mp. q.!q.+' Mp.Mp.Mp.Mp.Mp.+' !q.+' +' [: z~ 6' Mp.+' +' +' z~ [: z~ *[ z~ z~ q, z~ *[ z~ *[ z~ q, ql.vh.Xp.*[ z~ 2! |1 e^ <{ |1 vh.|1 *) *) <{ <{ *) 9| <{ <{ <{ $8.9| ]^ <{ 8S 2^ J$ <{ I/.R@ L$ .( J$ s' jP BN J$ I/ I/ L$ L$ [n 0' R@ ]& J$ 0' R@ 5_ I/ ]& + # #S + # K$ L$ k) # = = 0' % $= [* + + > @ # - + 0' . V@ $ L$ + # $ $ $ R- . Gc $ V@ o! > ^& S$ $ - . S$ ] ; & S$ ; > . [* Q$ %= Q$ R$ T- ; N$ . U@ S$ ~ { ; ' ^& ; . ] - S$ & ; > ] ] | { | ) & ] U@ R$ N$ R$ *' N$ 4 T- Z! ;# [ 1 ] [ d 1 ~ ;# | [ $# < ) | ## d /& / 6 b /& } 5 } V~ } } 5 $# Y@ 0 a } 6 3* 6 $# 6 8 6 ( 7 ## k } q> k c k a D, a d ,# a &# g 0 ~# ~# $# c 7 ~# ,# *= c i i o a c V$ h n 9- e 0 $# a j 8 ,# i a `$ a' {# j C; !# g c ~# L= h [& 0 l o ~# c h [& h j c h Y$ :# v e h `$ `$ _# `$ m f^ Z$ ~# n r y _# ^# p m n (# O' M= /# ^# :# :# h p F= /# ^# D `$ #| p Z$ <, n^ :# `$ ^# F m 4* j~ }# D :# G `$ D Z$ w C M= w {& G C Z$ D w C ^# :# N 4* x I B y N= O@ N M= w C /# N D N w :# Z$ m G b' ^# D m m `$ z ^# {& /# /# G m B G z G D G I D % 1; D 2; B I G A N ^# C 2; C t D M= b' D `$ y M= M= :# A F Z$ N@ C w N C /# &> D w G C D G B I w G D `$ G 1; D C D I % {& m C G m m 4* w ,> q :# m G t w ^# -) `$ GK `$ D D h p /# :# m ^# ^# E, m }& ^# Y$ C; A~ l t ^# Y$ Y$ C; h a' p q c ~# _# C; Y$ o ~# p 0 f j L= X$ ~# n 0 `$ '# c 0 c q> 7 8 e o T@ q, =) s, s, s, u, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, z, u, y, u, y, y, y, y, y, z, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, y, u, y, y, y, y, y, #' u, u, s, u, 6' $ & H= > U@ | Q$ 2 ~ ; | ; ] N$ R$ N$ . T@ P$ ; . Q$ ] S$ & Q$ . $ $ Q$ ] ; ", +"y, y, u, 7' 7' !q.Mp.+' Mp.!q.8' +' Mp.Mp.Mp.y: +' Mp.Mp.Mp.+' q, z~ Op.+' Mp.Mp.z~ [: r, z~ q, z~ z~ *[ *[ *[ z~ *[ z~ z~ |1 |1 *[ z~ Ip.q, z~ Pi.2! vh.vh.2! *) <{ <{ <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 9| <{ 8S J$ .( L$ <{ I/.<{ *) R@ BN ;b BN J$ I/ I/ L$ L$ I/ I/ L$ 0' = I/ 5_ K$ I/ ]& 5_ 1) # Z, K$ # = 0' T@ & k) ]& [* > T@ $= ^& [* p9 1) + ]& # V@ V@ Q$ + - > . . > $ . ! U@ = & $ = & & ' V@ {c U@ . . ' ! . Q$ U@ N$ Q$ ~ U@ ] H= ^& - * $ & $ ~ & . H= ~ 2 | ] ~ S$ ; ^ ; %= | X@ ; ] ; R$ 2 ( [ 2 X@ X@ U$ ) == *# ) d 2 { [ 2 N$ | } /& ~ [ ,# 6 6 6 /& X@ ( 4 *# /& { # a d ( { 6 1 : == $# 6! 6 7 `@ ,# 7 L= [{ b e c ~# V$ 0 ,# !# a 7 $# q> a 7 {# k g e 9 8 $# 0 e e } $# 7 Q{ e _# A~ 7 0 h o *= ,# ,# r i ~# 0 xE n h n a a !# W$ c o C; h r h z: `$ r p Y$ n p }& a p c ]# q r /# `$ h Y$ ^# r 1, m <, Z$ ^# `$ D ^# w p y `$ `$ o m p m n p y w j~ `$ D Z$ G n^ `$ ^# t m `$ C ^# N y N C /# D w ^# G t 5* 5* F q ^# D b' w N /# m 2; :# t ;= )> G M= w }& D @= w z F= b' ^# `$ G C /# m r 6* M= N % t F w m 2; O@ G q2 N G w F= D w G D t w C D )> <, w /# ^# I M= D G ^# C % B /# m D t D D D t 1; :# ^# w D `$ D -= V| m {& I N K N 4* m C 4* q D Y$ s> t ,> /# Y$ Z$ t 4* ,> 4* `$ 1; t ^# ^# {& ;= `$ /# m z D p m 4* (# p h -= L= 1; t p /# F m p h Z$ r ^# ]# ~# 0 C; e A~ c r 9- c c n o c L= n 8 j n A~ o n [& ]# o e k c j K= K= &# 7 ;# 2! 6' s, s, z, x, y, y, y, z, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, t, y, y, y, y, x, s, v, x, v, + N$ S$ `@ | > S$ P$ ] Q$ H= . ; & U@ - - U@ U@ & %= > . Q$ ' # & S$ S$ {c S$ Gc ", +"y, y, y, 7' 7' _q.+' Mp.8' 8' !q.+' +' +' Mp.Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ Mp.+' Mp.q, z~ z~ q, z~ z~ q, z~ q, z~ z~ *[ z~ *[ .q.Il.2! *[ *[ z~ *) Pi.e^ $8.xi.9| *) 9| 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ I/.<{ <{ 9| <{ J$ R@ J$ 2^ <{ jP <{ ], 2^ J$ BN 9| G= I/ I/ I/ 5_ I/ I/ 0' I/ 0' 0' K$ 5_ I/ 0' * # + # K$ L$ 0' # ), [* ]& ]& V@ + > ]& 1* [* $ $ - . . # $ ' V@ U@ . $ > ] S$ ,Q . . X! = . [* $ & S$ U@ H= R$ & ] S$ 2 2) N$ U$ ; N$ ' Q$ S$ %= U@ U@ - $ ~ > > ] ] N$ > X@ ~ P$ ) ~ o! - 5- U@ & T- X@ ; P$ { ~ # { 2 7- W@ ( 1 [ D, V~ { ; 7- ## X@ ## 5 ( ( ; U@ ^ ## X@ { { ) } [ X@ ~ 4 ) ,# 6 } < 6 } e ## a 6 &# ,# [ $# 6 0 &# a } ,# 9 $# b $# 7 e e a ~# 0 ~# } b i $# 5 a e k $# q> ,# *= b 6 M' e i j c p g -# ~# e e *= ~# n L= 8 e |& X$ 0 Q{ c 9- L= o g h p ,> r 1; p p |& a % r h ^# O' r `$ ^# q p h ^# p h r p Z$ :# `$ z `$ O' D C `$ D I B m t y D m m Z$ w G G 2, D N N D q p D GK N ^# :# 4* Z$ G {& C ^# -= {& C ,> D `$ Z$ 4* D ;) m V| D q D D w 2; G B 4* B G w C B w m t ^# /# G m <, ^# :# 4* w 2; G G z )> I G G C G `$ Z$ ^# ,> G ,! x ^# w /# N= C :# N ^# w D /# M= z B u w w t m p G M= C D -) Z$ `$ C Y$ w ^# Z$ z :# -= Y$ G w G D % ^# 1; % C L= `$ m -) m G w t h p t :# 4* p p % N C; w Z$ a p 9- s> `$ p n % n `$ ~# tA u % Y$ L= L= m s> n n n &# b A~ ~# 0 n a 8 ~# `$ g o c r p e 0 n L= 0 i a L= 2, o g 0 b V$ a 7 *= &# ] 5' 6' v, u, z, v, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, s, u, y, y, y, y, u, x, u, =) - ^ ~ ] ~ ; U@ U@ P$ | ~ ' ; & S$ & - ; . ; - - # # T@ * U@ - . + > ; ", +"u, y, y, 7' !q.!q.!q.8' 8' y: Mp.Mp.+' Mp.+' Mp.!q.Mp.Mp.Mp.+' !q.[: z~ Mp.Mp.Mp.6' Vp.z~ z~ z~ ah.z~ z~ *[ *[ z~ *[ ql.*[ ah.|1 ah.z~ z~ |1 $8.Pi.)~ |1 xi.$8.)~ *) 9| 9| <{ <{ 9| 9| <{ <{ <{ J$ J$ 9| 2^ <{ J$ ;b <{ 2^ J$ <{ <{ J$ )~ BN <{ R@ BN G= I/ 0' L$ + L$ I/ L$ 0' [n 0' 1) # 5_ = # # = + 5_ . = # $ ]& # > . $ > 1* + = $ + $ + ]& . V@ - > . $= H= . ' - * $ U@ ; + $ + > ; H= |* %= Gc & ^ *' > > %= > & & T@ ; `@ ; ' ; ; H= Q$ ; ; U$ 2 ] ' & P$ ; & U$ & ; W@ 2 N$ ' X@ | ; ; X@ 'W | *# ~ { ~ | ) ] 8- { } } ( 2 ;# Z! ; ) [ ) | } g{.} D, D, N$ 1 ,# 1 3* 5 1 a d ,# [ ># } } Y@ ( 6 6 a 7 ,# 6! $# 7 6 8 d a' ~# a 7 6 b / 7 6 a ~# c d c } a c c g 8 7 e 2* ~# {# 8 E, n 9- ,# |& j e c 0- n [& `$ |& g ~# j ,# f h Y$ X$ |& _# r o Z$ r o X$ r c 6! O' Y$ h s y r y h q r r r h n ^# r `$ p :# {& `$ G 2, u p D Z$ m C `$ w D D s> p p Y$ 4* D w t p D M= D 2, D w :# y 5* p Z$ ^# u t m 4* p `$ m C t 2; Z$ t 4* r G ^# ;= ^# )> B ^# w /# s> M= D D D m m w D Y$ :# w /# G p m ^# D [# w w D G M= C G ^# D 4* m w % G G F N C C :# t Q@ N G :# C w Z$ `$ % m t `$ :# p G I `$ p u u p (# m `$ G `$ }& p p m w `$ `$ ^# `$ `$ t D p _# N 1; p 5* C ^# r Z$ 9- :# b' m Y$ ,> m p _# n 0 Y$ `$ h Y$ g o n p ,> p h Z$ |& &].c A~ Y$ `$ ~# |& 0 h h `$ `$ `$ ~# n p Y$ 0 *= c c o 7 {# a e 6 b V- 6 a a g 7 ># 8 &# a i { < ], v, s, v, t, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, &[ ~ X@ | ] W@ ~ | ^ ; S$ ] > > ; > U@ | Q$ Q$ S$ S$ * . = . ] . > . T@ * * ", +"y, y, y, q.Mp.,q.8' !q.Mp.+' 8' 8' 8' !q.Mp.+' 8' Mp.Mp.+' +' 6' z~ z~ [: Mp.Mp.+' [: z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ vh.*[ z~ 9i.rp.z~ z~ vh.vh.$8.<{ e^ xi.ah.2! <{ 9| <{ <{ 9| 9| 9| *) <{ 9| J$ J$ 2^ J$ <{ J$ L$ .( l) R@ <{ I/.R@ <{ J$ R@ I/ BN BN ], L$ I/ I/ jP #S jP 5_ :q.= # # J$ L$ =[ # # # # + L$ + # . [* $ $ # V@ . V@ # 0' }, > 2) $ 1* S$ # # - . . $ $ & * - - & + - $ S$ S$ . & & ] ] S$ ]& & N$ Q$ $ S$ Q$ & S$ b{ . - }* $ $ ; ; N$ > N$ ; ) & U@ | P$ U$ & { & 2 & | *# 2 U@ { ~ R$ T- ~ ] ) ) { W@ ~ ~ Z@ /& [ ( /& ; ## ; ; 8- W@ $# d 2 7 } Z! 1 3* *# | d d $# /& ) { a D, { 7- X@ 6 / 1 $# B; ~# ,# / Y> &# ~# } &# 6 e a $# ,# d a e 9- 0 j 7 n 0 7 e 9 6 ,# q> c j 6 o a ># g L= ~# n 7 a' Q{ ~# {# e ]# n O' L= i ~# h c 2* j c C; ]# p `$ [& W$ r h c r s> h 1, u n _# p C (# Z$ ^# c j s> 1; r :, c }& _# Z$ <, (# /# D Y$ Z$ 1; q Z$ 6* p I ^# ^# /# ^# r Z$ /# x w N ^# _# `$ p t D Y$ t 4* `$ p m t :# D p 2; m G G D t D C ^# y2 t D :# /# `$ p w N ^# Y$ `$ C D D G C ^# m {& G :# N /# N % I m G `$ D D n ^# (# z 6* 1; w C D D {& {& {& :# Z$ C 2; z y x ^# 4* G x I :# ^# ^# q ^# GK :# y N B D ^# q :# N= w % m w m C ^# t % {& y h p `$ `$ Y$ ^# p y 4* ^# 4* ^# ^# n^ `$ :# (# m p V| 2, h Z$ ^# s> n L= Z$ ;) h 6 e h h c p p |& L= l p ]# p h n s> Y$ Y$ o Y$ s> L= n n n i a 9 j V- V- 8 V$ n c o ~# 9 7 ,# k 0 2* a a i b 7 6 e e $ 6' v, s, x, y, s, v, u, y, y, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, x, z, y, y, y, y, y, y, y, u, z, y, u, y, y, y, y, y, y, z, z, z, y, y, y, y, y, u, y, y, y, y, y, y, y, u, u, u, *) N$ ] ) | N$ ] ] ~ ' ~ ; ; S$ - ] ; ] ; U@ ; S$ $ U@ & ]& ; # ' * * = 0' ", +"u, y, y, 8' 8' !q.,q.8' Mp.Mp.8' ,q.8' Mp.+' +' +' Mp.!q.Mp.Mp.+' z~ *[ z~ Mp.+' +' [: *[ q, q, q, z~ z~ *[ *[ *[ z~ .q.&[ z~ z~ Il.|1 5o.9i.vh.|1 $8.Pi.9| |1 xi.|1 9| <{ 9| <{ 9| 9| 9| 9| 9| 9| 9| <{ <{ 2^ J$ |1 <{ J$ R@ ]^ <{ L$ I/ 2^ ]^ I/ I/ G= ], J$ 0' 0' 0' 0' I/ L$ I/ 0' + + K$ ]& L$ * # 0' + ]& J$ = # # k) + 0' ]& # ]& [* $= = = 1* V@ # # E! > . V@ 0' & [* $ ]& # o! V@ S$ 2) . }* }* > S$ H= X@ N$ . > $ . $= o! > U$ ; ' ; ; & H= %= %= Q$ `@ ; = # - H= . [ & P$ ; N$ ( ] ^ ~ N$ U@ | *' ) { 2 X@ W@ ## X@ ^ ~ ) { N$ 8- *# N$ ~ < Z! *# < [ ~ d { ~ < [ 1 4 2 b ( X@ X@ ~ ## 4 < d 2 1 1 &# : /& [ : 1 9 $# M' b : 8 a $# $# g b 7 &# 6 6 $# ># g $# 7 $# ,# L= ]c a 7 ~# ~# e e o a a 7 o c [& 6 a c a 7 e 0 !# 7 0 e c p W$ !# 3] h 8 c h e }& s> h e L= n O' p h h c h 0- 0- _# r Z$ p `$ Z$ _# o c ~# a n ~# }& }& _# Y$ -= p (# n O' `$ h 4* 2; 5* p D `$ t 4* ^# G ;= Z$ G C C; 4* ^# x q `$ 1; w K N 1; Y$ s> s> _# ^# D y G N D GK t G x /# m w ^# Q@ ^# n C C D `$ :# ^# N {& /# m w 4* 2; t p t N G N `$ `$ 5* z % n `$ G G G `$ ^# /# :# 4* Z$ w I ^# % _# m D w b' ^# m ,> Z$ ^# D C -= _# ^# n^ w M= D `$ m j~ Z$ n^ s> r `$ q Y$ ^# ^# h D {& % % Y$ h n^ Y$ u ]# {& Y$ q ^# q r s> Z$ p m C; ^# 2, `$ n h o A~ c -) p w % _# 1; n Y$ [& c [& m s> ]c p n h Y$ p r ~# c 0 n ]# p ~# ~# e *= 0 a g p c 2* a 6 V$ ~# ,# e L= 7 o j ~# h e 8 b 7 8 ~# 6 j } > ^, v, s, y, u, z, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, s, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, y, 2^ > ] ^ > { ; Q$ | U@ S$ > . S$ ] ^ ; > ; ' ; ; (& S$ . & & & T@ Z, * - * ", +"t, u, y, s, +' !q.8' !q.+' +' +' 8' Mp.Mp.Mp.+' +' +' [) Mp.Mp.Op.Mp.[: [: [: +' Mp.[: z~ *[ z~ z~ *[ *[ z~ *[ z~ z~ Il.*[ *[ *[ ah.vh.ql.*[ z~ xi.xi.Pi.e^ 9| $8.2! *) 9| 9| <{ 9| 2! 9| 9| 8S 9| *) J$ <{ J$ <{ 2! ;b ;b R@ R@ L$ I/.9| ]^ BN L$ I/ ;b *) I/ p9 R@ L$ 0' I/ <{ L$ I/ 0' 0' 1) = + 5_ # = ;b J$ K$ L$ = 1) V@ # > ]& + . p9 + . [* 0' [* - = + # L$ M$ $ > + > $ & $ U@ . . . & S$ . & ; > S$ Q$ > %= P$ ] > * H= H= U@ U@ [* # > %= U@ U@ Z! ; ; . ; Q$ Q$ ; | | S$ R$ | ~ Z@ | | & U@ ^& $= ] ; | X@ N$ $# X@ & ~ N$ [ [ ~ +# ^& { X@ [ /& /& < | ) } 2 [ W@ { ,# ( V~ { 7- Z! 4 d W@ / 1 2 { 5 e d ,# ,# } Y@ } 6 [ / 6 k < $# 9 $# a ,# d 7 $# ,# Q{ h a 7 j d $# -# -# V$ 7 a 7 a 8 8 n ,# 8 7 e C; a i e a 7 n ~# 0 7 e {# f |& s> 7 ~# c o W$ 0 }& h n '# 6 a C; [& [& h ~# h X$ Y$ n o c r p ^# h o o L= X$ n c{ y p h r h h p Z$ ^# ^# % Z$ Y$ ]# r r C ^# `$ D r h ^# M= h Y$ % G D D ^# ^# M= `$ G Y$ s> D Z$ h C {& ,> ^# p m D ^# /# F m Z$ :# m ,> r w % M= ^# D t Y$ /# ,> w m `$ Y$ 0- G % N D % /# p m D m p `$ Z$ ^# `$ m ^# D /# ^# `$ `$ % /# Z$ L= ]# p ,! D `$ C Y$ -= }& `$ t C p o m m 4* ^# ^# Z$ ^# q ^# Z$ 2, Z$ 2, p 1; Z$ 4* t q o/ D :# ;) D D m ^# p Q{ L= n % ^# n Y$ r `$ Q{ o X$ c 4* `$ p p Y$ p e Y$ Z$ p h n n h % Z$ s Y$ c p 0 L= p |& g 9- 0- e {# c n Q{ n 0 o 0 0 ># 0 o {# a 8 j b V$ ,# ># a 0 C; ~# r L= [ 8 == ,# a ~# ( a } ; v, s, z, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, z, y, y, y, y, y, y, R@ & | ) ] H= ; ; %= ] ' ^& U$ ; ~ > . # * - ; U@ {c & = - = . pH # * # = ", +"t, t, u, 7' +' 8' !q.7' Mp.Mp.Mp.Mp.!q.Mp.Mp.Mp.+' Mp.+' Mp.Mp.Mp.Mp.Mp.z~ *[ Mp.Mp.Op.Vp.*[ *[ z~ *[ *[ z~ z~ *[ z~ *[ *[ *[ z~ z~ vh.9i.*[ ah.ah.$8.Pi.Pi.*) Tp.9| <{ 9| 9| 9| <{ 9| 9| 9| |1 <{ 2^ J$ <{ <{ <{ 9| p9 <{ <{ 2^ 2^ ;b p9 L$ ]^ <{ |1 BN BN 0' [n I/ I/ 0' I/ I/ I/ I/ BN 1) # X! L$ I/ # L$ = + ]& L$ I/ <{ 1) $ + # ' + # $= Q$ ]& = . ]& $ # + # k) > > ]& V@ N$ > . Q$ - $ o! Q$ ; =' > + H= $ Q$ Q$ ] ' - Q$ H= ] - | $ $ U@ b{ ] N$ Q$ ; ^ ] = & - Q$ N$ H= N$ 2 ] Q$ | | U@ + P$ / { ; U@ ~ | 2 2 | 2 | X@ R$ [ U@ 7- ^ ~ 4 4 Z! /& N' $# } 2 *# { ## 2 { N$ 7- 5 ~ } $# ( f] 1 ## } < D, 6 +# Y> 6 6 a a b ># == $# $# 9 ,# } ( Y> 6 $# ,# [ d e i ,# ,# j } $# 8 6 o b i n !# e o e i a e {# ~# g 0 7 8 6 e a ~# f n ~# e a 3* V$ e L= ~# h n c ~# c *= e e Y$ ~# j Z> r L= e c L= F! r l `$ h `$ c r Y$ o `$ p /# !# h r Z$ D 2, ,> `$ `$ `$ Z$ p p o r 0 r Z$ p r y n :# Z$ h ^# D ,> ^# w ^# D (# p `$ p `$ C n w t Y$ Z$ 6* D q m m t D D p % }& p 4* ^# N ^# m /# m 4* m ^# 4* p -) ^# >= m s> C p n D Y$ p Z$ w 4* {& `$ b' /# C m p! % F ^# `$ m h 6* ^# m D s> t F `$ w t p w m r Z$ % n ^# Y$ r h h V| 6* m E, p D n^ y Z$ Q{ n h s> D V| h 1; `$ m ^# t n p V| `$ p ~# {# j `$ ^# C; p 4* n^ q 2, o p s> h `$ c m g K= o ~# Y$ }& ~# c o h s> h c n ~# Y$ c p s> L= n c g 0 h [& 0 9 V$ e 0 6 g 8 6 c 7 n e 6 ~# 7 9 k B; ># == ,# 0 b V$ 7 6 ~ 6' g] v, x, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, A, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, u, u, =) y, y, y, y, y, u, y, y, y, y, y, y, y, x, x, z, x, y, u, y, y, y, y, y, y, w, . & - | | & & & V@ & > | ' & . > . ; U@ & U@ . + > . * . ; Q$ . . Q$ & ", +"t, t, u, 8' Mp.Mp.!q. # > =' S$ & #^ |* S$ $ > $ $ Q$ . > > & & ^& Gc S$ - & = T@ & X! $ Q$ - S$ }* $ * Q$ %= + S$ ; o! ' S$ N$ Q$ ~ 2] | | - k) Q$ ( ] N$ Q$ Z! ; ~ ~ *# ## Y@ 2 5 J= ) [ ## X@ ~ 9 ## N$ V~ | | ) { W@ < } 1 1 1 2 [ 8- | } # b 6 9 9 [ ( 7 } Y> 7 } d /& i } ## 9 $# a 7 e N' a ># 6- 9 9 : : d L= e 8 &# :& *= a 6- ~# k h 6 < b } ~# o a 7 b b d V$ C; L= L= ~# ,# C; 7 {# 0 ~# q> V$ e Q{ n a c c X$ X$ h ~# 9 *= n p o ~# h >> c ~# c{ `$ r `$ p o e K/ a _# m _# K/ m p C p s y l L= 0 q p 4* r 0- m Y$ Y$ p (# `$ /# p t Y$ m `$ Y$ n <, D 4* `$ 1; D N /# D `$ 1; p L= Y$ p M= n ^# B V| ^# ^# 1; t `$ (# 4* /# t h ^# D ^# V| D :# |& p Z$ (# ^# G % ,! h p p h @= u D 1; `$ ^# Z$ t ,! Z$ r ,> ^# g r h `$ {& 4* m ^# s> p Z$ % ^# w ^# :# m r p D p Z$ n !# h r c{ ^# Z$ m c Y$ n r o p E, ^# p ^# ^# m Y$ -= n p r s> Y$ p n Y$ D h [& Y$ L= Q{ y Y$ ^# m o W$ n Y$ 4* p n h Y$ q :# ~# ,# p L= a L= 0 }& Q{ n W$ e p q c c a p 2* b ~# A~ i a b ~# i o E, 6 a 6 c V$ 7 X$ e a 9- ,# 7 ,# 6 b e ~# =# $# V$ b } r, s, s, x, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, z, t, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, t, 6' . ] ] ] S$ | ; ; . ; H= X@ ; & S$ & ; . Q$ $ > * $ > Q$ . - - * Z, . ' > ", +"t, t, u, 7' Mp.!q.8' ]q.8' +' y: +' !q.Op.+' Mp.+' +' Mp.Op.Mp.+' !q.Mp.[: *[ [: Op.Op.Mp.[: *[ *[ z~ *[ *[ z~ z~ z~ *[ z~ *[ *[ z~ vh.vh.9i.z~ 9i.|1 98.)~ 9i.9| 9| 9| e^ <{ $8.9| 9| <{ <{ 9| I/.*) *) <{ <{ <{ 2^ <{ ]& I/ R@ ]^ J$ L$ <{ 2^ *) jP L$ R@ 2^ <{ I/ I/ I/ 5_ p9 #S I/ I/ I/ I/ # ]& 0' I/ # + R@ G= ]& # $ ]& E! [* = ]& # > # + + + = # > . = # $ > H= - U@ $ 2) S$ > o! . S$ o! & S$ - & }, & $ 0' # . Q$ ' & $ {c > ^ & Q$ # . & & %= & = ^ ; S$ %= U@ H= ; T- ; | ; T@ S$ ; - Q$ | N$ | 2 & ' 2 d [ { 2 [ 5 4 { 2 Y@ [ 2 ( ( | => 2 R$ /& ~ 2 [ 6 $# d 1 ( { 5 ( ( | ( [ ( D, %# 6 ## 9- a *# $# } < 4 6 d j / 1 8 6 ( b i <& &# k 7 %# &# 7 o b 7 6 [& L= V- 7 9 6- J= 6 *= $# e i e a e ~# L= i 8 6 k n i Y$ *= ,# e a i c e c n a E, o `$ 6! g e b o 0 r 0 C; ,> o h s> n n n t p ^# [& 7 Y$ h 8 r :, p 2, ;) ^# Z$ h Y$ h `$ h p y Y$ u :# m c p p `$ `$ p 4* _# (# % r q o -= % <, r s> p % t D 6* Z$ p |& `$ N m ^# m p! Y$ Vj L= D Z$ r m m ,> Z$ 0< m D 4* 4* 4* n^ p :# D `$ w D C v p ^# /# % s> /# t ^# D ^# ,> h q w #| Y$ p C; `$ r h w r h q 4* p L= {# `$ n -= Y$ % 2, ,> :# p (# `$ p D `$ s> ^# `$ l `$ Y$ t Z$ }& Y$ r Y$ `$ q `$ ,> p O' m q p n^ p ]# L= m % D h p {# ;= ,> h 2, r 0- j X$ |& n ,# Y$ p |& h ~# h h _# `$ c a ]# k 0 A~ j b o h n c 0 e e L= ~# V$ j ,# a j ~# &# e c 8 7 V- e 9 V$ 7 e V$ -# ,# ~# 8 == 7 ># &# -# &# 6 [q.v, s, x, u, y, u, t, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, H) u, y, y, y, u, y, y, y, y, y, y, y, x, 2! & =' | | Q$ ~ N$ H= ] N$ > ; # Z, $ - & & ; . . V@ - ; + }* S$ . S$ # ; ' . ", +"y, t, t, 8' +' +' Mp.8' !q.!q.+' +' +' Mp.!q.Mp.Mp.Mp. q.+' Mp.Mp.Mp.Mp.Mp.[: e^ Np.Mp.+' Mp.z~ z~ z~ q, z~ *[ *[ z~ q, z~ ah.rl.z~ *[ |1 |1 q, z~ |1 xi.9| )~ *) 9| 9| )~ z~ 2! 9| 9| 9| <{ 9| 9| <{ ], ]^ R@ jP <{ <{ l) #S L$ ]^ ]^ J$ I/.l) J$ 9| J$ 0' BN R@ I/ I/ 5_ <{ J$ L$ G= J$ G= I/ `Y 0' + I/ ]& K$ + $ + K$ . + # # $ . [* > !, # ]& . ]& V@ $ + . =[ k) Q$ > $= $= . ' > 0' $ > |* $ $ . Q$ S$ ] . $ Z, . T@ .( > & P$ Q$ U@ ' H= . - U@ N$ %= | N$ U@ ~ . ) S$ Q$ U@ > ; N$ ~ ; | X@ ) | X@ ~ Z@ X@ . ; 4 X@ ; ) g{.> ~ 4 / ~ | { ~ ~ { { ) 'W | N$ 2 | { / { { }q.*# ## 4 ] ## [ ~ { d d 9 : Y@ } ,# 5 5 / / $# 7 4 ( W$ } D, [ ( 6 k ,# ,# V$ $# &# d ( i a e k c L= ># 8 a a 8 } 6 L= a k '# g i b b =# i q> 8 a b ,# $# j ~# ~# i n 2* h h h n h L= ~# e c ~# W$ 7 o Y$ h m r K= ~# e r 2, h Y$ Z$ _# ~# n h r |& `$ O' ^# s (# y ~# h ~# (# g s> h Y$ h b `$ L= 0 |& `$ `$ Y$ -= C % C % w D Z$ n q p Y$ `$ 2, t D `$ 6* Y$ `$ -= ^# Z$ -) Y$ :# m % s> 1; p s> ,> ^# p h Z$ p 2, ^# % D :# ;= p ~# `$ `$ % w {& ^# m ^# #| G Z$ /# `$ p ^# `$ r `$ y C; o Y$ p 1; ;) h ^# Y$ r D `$ ^# }& p `$ y 4* `$ D p y q Z$ ,> % 2, :# ^# h h 4* t h Y$ h n 0 m p Y$ |& `$ n Y$ m p n s> X$ Y$ c 2, 0 h c Y$ ^# -= n p ~# e h o s> n 0 {# r c p n p c n n `$ h r j e o a ;= Y$ a a ~# Y$ L= W$ c c {# a c ,# c L= 0 a 7 ,# 0 a b [{ a V$ e a 7 0 b g i s> a 6 $# 7 =# } a 6 V@ v, r, x, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, z, z, y, y, y, y, y, u, x, y, y, y, y, y, y, t, y, y, y, y, y, y, y, y, y, y, x, z, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, u, s, e^ ] - N$ ; ~ ~ $ ' | ) H= ; & N$ > H= (& ' & & . # |* . ; > . > & = ; > * ", +"y, u, t, !q.8' Mp.+' 8' !q.!q.+' +' Mp.8' !q.8' Mp.Mp.Mp.+' +' Mp.+' +' +' Mp.z~ Vp.Mp.Mp.Mp.z~ *[ z~ z~ z~ z~ z~ z~ z~ z~ 9i.9i.*[ z~ 9i.vh.z~ *[ z~ ah.9| *) *) xi.xi.|1 *) *) <{ <{ 9| <{ <{ 9| <{ <{ R@ R@ l) I/.9| <{ (}.l) R@ ]^ R@ I/.<{ BN jP 2^ 0' L$ *) L$ 0' =[ 2^ ;b 0' 0' 0' 0' 0' # K$ I/ L$ # # # ]& =[ + 0' L$ # K$ = o! # # > # + ]& * # $ [* # ' $= > > $ # $ $= $ 0' - ] & = > ; ' T@ * ]& + > T@ + $ U@ H= & ; = = > $ + & ^ H= ; N$ ~ > & > N$ H= ] ; ; H= | X@ X@ ; ! J) | Y@ 2 U@ > =' {c ^ ~ , | ; [ | N$ A; ; ) N$ ] } : N$ { 2 Y@ [ { ~ ( ( | 1 X@ X@ 7- N$ ( => <& { } d ## 9 , J= { 6 $# 6 d : 2 7 } 7 Y> 6 $# a ~# [& 5 8 a e 8 a -# e ~# j a g : b b d 7 a 8 e $# b 7 7 i a a' 6 e z: 0 i ~# a j i 0 7 2* n ~# n a r n n [& a ~# 0- ~# h e ,# e h h L= F! e s> r ~# ~# o ~# ~# c o n h c r 9- 2, r p p !# h n _# `$ 0 p 4* s> c (# ,> r h |& Y$ -= [& h r ^# ^# c Y$ s> p C; p r Y$ ;) ~# `$ D Y$ o p Y$ Z$ Z$ h ^# r -) r V| n h s> p /# t n Z$ % `$ F h `$ ^# |& s> p h 2, c m p D {& _# h n r ^# Y$ 2, 1, h `$ l t 5* `$ Y$ l % `$ p `$ /# m `$ `$ r r n `$ p ^# ^# Z$ ,> m _# ~# n Z$ Y$ h `$ c Y$ p ^# m r h `$ Z$ ^# _# n `$ ^# Y$ Y$ y o L= 6! {# 0 a 0 0 Y> h p ^# q Y$ _# ,# ~# `$ ~# n p e Q{ `$ p c r h g C; r p o ~# C; X$ ~# % K] o ,# L= e 0 h o e !# ~# ~# n c 0 0- 0 d c 2* 0 e e h 8 F! g a *= Y> i ~# a k Y> a &# b 8 } a a | *) v, s, s, z, y, y, x, x, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, t, y, y, y, z, y, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, x, y, y, z, y, y, y, y, u, y, y, y, z, y, y, y, y, y, y, x, u, x, <{ H= ) U@ & | U@ ; - ; %= . > ; U@ - ] . ' . # = > Q$ $ $ ; > V@ . k) . = ", +"y, y, u, 8' !q.8' !q.!q.!q.8' !q.+' +' !q.!q.Op.Mp.Mp.Mp.Mp.+' Mp.+' Mp.Mp.[: z~ *[ [: Mp.Mp.q, z~ z~ z~ q, z~ z~ z~ z~ z~ q, ah.z~ *[ z~ vh.9i.*[ z~ 2! xi.2! Pi.98.8S 98.98.$8.9| <{ 9| 9| <{ 9| <{ J$ R@ R@ J$ <{ <{ 9| 8S I/.R@ ]^ L$ <{ <{ L$ jP BN I/ <{ *) *) <{ (}.G= ]& ]& 0' 0' I/ 0' + # =[ 0' J$ K$ # # $ # Z, 0' L$ V! > > + > + # # + J$ L$ # + Q$ 2) |* V@ X! $ # # > . $ - $ Q$ . + = > . ] > - Q$ [* Q$ T@ + [* $ . Q$ . Q$ X! $ > $ & 2 & N$ U@ ) ] > & $ ; > ; N$ H= *' [* | ; ] 2 S$ | N$ N$ X@ P$ *' Z! | %= P$ ] ) { , ^ ) ^ X@ N$ 4 $# | | | < D, Y@ 1 <& *# ~ } 7- ~;.7- { X@ { ( 1 [ %# < / / d | /& 6 1 ## { 6 D, 4 9 [ 6- } $# ># $# <& 6 6 a &# 6 9 8 b ># d &# 6 ( 0- a : $# == i : V$ ~# f ~# 6 g k $# n a Y> ~# ># b 6 / *= g 6! c L= 0 &# 8 ,# 0 e ,# e a ~# m 9- < ,# g 0 ~# X$ L= `$ r ,# o Z$ 0 c c h C; _# n h `$ n f 0 >> ~# _# `$ g p D Y$ 9- 9- ]# n _# c `$ h ,> L= h h 0- Y$ s> % Z$ (# O' D % s> s> ,> |& h *= n Y$ p 1; h p l O' Y$ h Z$ ~# s D (# h Z$ `$ -= h Y$ F % L= p p 4* `$ r t h r n ^# r ^# `$ ,> % % ^# Y$ 9- ,> p C; D F ;) p _# L= o Y$ p n Y$ h s> Y$ c D n }& 0- K= r p p s l r r p V| D p ^# Y$ r p h `$ {# `$ ^# n ]# Y$ m h -= n ~# o ;= h $# 9- Y$ [& ~# {# 6! L= n L= L= {# X$ ]# p h L= ;= n E, Y$ !# -) e 0 h 0 7 ~# b i i a e L= 7 a 7 0 c V$ p '# a } 8 *= L= n 0- n 0 7 7 a ,# V$ a =# i 7 b c 0 ~# -> d 6 {# c 7 7 0 V$ ~# 7 # *) r, A, y, y, u, y, u, u, y, y, y, y, y, y, u, u, y, y, y, y, y, z, z, y, x, y, z, y, y, y, y, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, +' $ U@ N$ ; U@ > f] | . S$ > & > & & - R- $ > > $ > Z, > # 5- $= > & * > }* = 0' ", +"y, y, u, 8' !q.8' !q.8' !q.!q.(q.+' +' 8' Op.!q.+' Mp.Mp.Mp.+' Op.Op.Mp.Mp.Mp.[: Vp.Vp.Op.+' [: [) rl.q, q, z~ z~ z~ z~ *[ *[ 9i.z~ z~ *[ |1 .q.*[ *[ 9i.xi.vh.e^ )~ 98.9i.$8.|1 9| 2^ 9| 9| <{ *) 9| ;b <{ ]^ ], <{ <{ ]^ jP ;b I/.J$ R@ J$ ;b L$ V! R@ BN L$ 9| ;b 5_ I/ I/ L$ I/ #S #S I/ <{ 0' + # + L$ ]& # # J$ ]& + $ $ {, ]& . + V@ $ ' [* . > & L$ # - . =' k) H= > = # $ = [* H= > & # + = U@ A; U@ * & ; N$ & & S$ . T@ - Q$ T@ |* > U$ > $ + Q$ > k) . Z! > ~ ; ^ o! H= & > H= P$ H= & | & ] %= H= *' | | N$ X@ ~;.V@ | ~ ~ N$ 2 &= 1 d 7- { ) ; /& 2 : < | ~ { ~ : { [ [ [ [ { ## X@ X@ N' /& [ { $# } ( 6 { g ## J= } 6 V~ D, d 6 ~# 5 ,# 4 [ ,# 6 a ,# d } 7 $# a $# $# &# Y@ } d / -> 6 $# 8 6 =# e e J= o 6 g e 0 a j 6 e } e *= c ~# e M' e n ,# 7 b 8 s> h j L= g 6 n h a 7 a o a a n h c n ~# n a a j n 0 n Y$ c r 0 e Y$ r o h ;) n h n p h `$ Z> q ^# j~ u o ^# 6* {# ~# L= L= _# ~# % Z$ s> ^# s> `$ h ~# s> ^# h ^# D Y$ Y$ Z$ `$ L= `$ `$ p p Y$ s> }& m f^ `$ Y$ p ^# `$ ~# `$ Y$ Y$ h n Y$ `$ r m m p }& ^# ^# m p % _# n ^# `$ o p O' r `$ 4* `$ o t h Y$ `$ h m n h `$ o D m `$ Y$ 0 X$ p r p r ^# r c{ }& n h p q Y$ 0 m C Z$ r % Y$ `$ n m E, Z$ c }& c h Y$ 9- 0 p n ~# e a L= s> n X$ ~# Y$ `$ n 8 n r o Y$ ~# c A~ X$ a' a' h e -# a e j 0 d L= 7 0 p c n *= n r g i n 6 h 0 n 0 a a e 7 d 7 : 7 7 f D, ~# $# ~# 7 ~# j a } } } } < [ } W@ *) q, u, t, u, x, y, y, z, y, y, y, y, y, y, y, y, y, y, z, y, y, z, u, y, u, u, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, y, y, y, y, y, x, u, x, x, y, y, y, z, u, x, = > - | P$ H= ; & ] & - $ ] N$ . Q$ [* $ ; > o! & $ Q$ # |* > $= . }* * . . # ", +"y, y, u, 8' !q.!q.Mp.+' 8' 8' |q.!q.8' Mp.!q.8' s, s, +' Mp.Mp.Mp.Mp.+' +' +' 6' z~ q, Mp.Mp.+' Mp.z~ q, q, z~ *[ *[ *[ z~ z~ z~ z~ z~ *[ 9i.vh.z~ *[ z~ ah.xi.2! e^ |1 vh.$8.*) q, 9| 9| 9| 9| *) w9.9| <{ 2^ <{ 9| 9| ], 2^ jP <{ R@ 2^ 9| jP <{ ]^ ]^ 2! BN J$ =[ R@ 0' I/ G= I/ I/ I/ I/ BN I/ 0' + # 0' L$ + # + I/ # + $ J$ L$ E! # # [* ' = 1* $= $ + V@ ]& ' . V@ > [* # ]& = V@ # . $ A; $ Q$ . > > & - Q$ T@ P$ S$ > Q$ |* V@ 0' - - U@ S$ ; > . . - ' & > - & ; ; ; Q$ O$ H= H= & S$ U@ S$ ^& N$ Z! ; P$ N$ & | 2 . - 2 N$ $# N$ ^ ; ] ~ [ *# N$ & Z! { 4 / { 1 /& } # 8- ,# < { 2 5 ( 2 ># < { ( [ b ( $# [ 6- d J= } [ 6- } D, [ d : $# { 2 { J= $# 7 i &# : a 1 a 7 6 ># a e d $# 7 $# V$ $# 6 6 ( 7 6 $# :& ( b :& e ,# e _ e b a d g 6 a' a } V$ X$ e 0 r 8 -# 6 o a ~# ~# ~# 7 a i e 6 d b c a' 7 ~# ~# W$ i ~# F! a h h C; d j 6! c{ `$ Y$ ;= p _# ~# n -= r `$ L= c{ L= ^# p c i n p n ~# Q{ 0 p o -) <, p E, n h n `$ L= Z$ p t Y$ % `$ p ^# p }& n s> s> s> Y$ l `$ Y$ p D 4* 9- r n m r L= 0- L= t Y$ }& ~# `$ p Y$ :# p r ~# Y$ Y$ `$ m ^# o l L= h f `$ (# `$ h K= Y$ ,> h L= p u L= ;= Z$ p p h p ;= n o ,> c Y$ p r n Z$ r p Q{ L= n ~# e h ~# n h r h -) s> 0 c 7 Y$ F! n Y$ Y$ 0 c n 0- 0 c{ ~# 6! ~# 0 0 n s> j n e j 0 ,# h g n n 7 e ~# g L= {# 7 b a h Y$ h 7 &# i L= ~# e ,# 7 j 0 a k $# 6- j e ~# r> ,# ( $# : ~# V$ } 1 } -# 6 V~ &# $# b $# < [ 6 v, x, x, z, z, y, y, x, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, u, t, t, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, u, s, s, +' - S$ U@ ] ] ] 2 S$ S$ ; S$ . U@ . * > ; . . - ; U@ ; & # ; $ Q$ T@ - & # + ]& ", +"y, y, u, s, !q.!q.8' +' +' !q.|q.!q.+' Mp.,q.,q.Op.Mp.+' Mp.Mp.Mp.Mp.Mp.Mp.Op.Mp.[: q, [: Op.Mp.Op.q, z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ 9i.vh.|1 *[ z~ ah.vh.2! *) 2! vh.$8.<{ 9i.*) 2! 9| 9| *) *) 9| <{ 2^ R@ J$ <{ *) 2^ $8.;b <{ J$ R@ J$ I/.J$ BN J$ *) I/ I/ 2^ jP I/ I/ G= I/ 5_ I/ 0' 0' 0' + # # L$ # K$ # L$ # # + R@ L$ # R@ ]& . [* + ]& S$ $ ;b ]& # <{ ]& V@ !, $ # + . $ . # # $ # . . = > S$ # - > > Q$ Q$ U$ & . U@ > o! > S$ ' Q$ . > ; ^& & =' T@ $= > & %= N$ S$ [ ~ > & . ] ~ $= U@ ~ | ; & S$ N$ N$ P$ ] | ] J/ & 6- ~ { 2] D, g{.*# 8- | ~ X@ { ^ { 2 | } -# 6 ;> < 1 { 2 { V~ 2 ## 6 | [ ## Y@ Y> 7 8- 1 6- 6 ( [ } d 7 V$ ,# $# a D, $# } N' 7 ,# : ,# Y@ 6 7 _ ( i D, ># 7 d 1 7 b $# a 8 b &# : $# 8 e 7 o 9 a h V$ 8 :& b 9 < 7 ~# 9 i 0 ,# g 0 a V$ 6 >> h =# 8 j ~# a o c F! M' p j 0 C; Y$ h c e a k e c g L= a e r r n 0 c _# q n a' s> ~# h Y$ n h o s> Z$ n Y$ r L= 0 r h r `$ ~# c `$ p r `$ a l r n h X$ r n p s> (# D s> `$ Y$ ~# `$ c h r c p ^# p h _# % E, c 0 ~# n m p (# c r r n Z$ 4* 2, 9- c Q{ Y$ `$ p `$ ~# 2, `$ l r c }& c ~# o ,> c{ h y X$ n L= j r n h h Y$ n h h L= `$ a' r p p r V| `$ r !# L= 0- _# n h L= s> c n p p n ~# p p s> o a ~# `$ h Q{ `$ % h c L= ~# c h p n n 7 e g e h c ~# e b 7 ~# i b g 7 7 == -# $# a ~# 6 L= {# 7 0 Q{ d e 7 7 c k a 8 V$ a e a < 8 &# 0 7 ,# / { 8 6 1 Y@ V$ 9 == ## g b R- 6' s, A, z, z, y, y, u, u, y, s, z, y, y, y, y, y, y, y, y, y, u, y, y, y, x, y, y, z, y, y, y, u, u, u, u, x, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, x, 6' `@ > ; Q$ > = | > Q$ S$ ' & ' ' & Q$ ^ S$ ] - - ^& . > $ + * Q$ > ' & . $ + ", +"y, y, y, s, (q.!q.8' s, Mp.!q.1q.!q.Mp.Mp.!q.Mp.!q.!q.Mp.Mp.'q. q.+' +' +' +' +' 6' z~ 5o.!q.Mp.Mp.5o.5o.z~ z~ z~ z~ *[ z~ z~ q, z~ e^ z~ 9i.|1 xi.ah.z~ 2! xi.|1 <{ e^ |1 $8.$8.|1 98.2! 9| <{ ], <{ *) <{ <{ J$ <{ 9| ;b 2^ J$ jP 8S 2^ 2^ <{ l) R@ L$ BN <{ I/ 0' G= J$ ;b 0' ], R@ 5_ I/ 0' = 0' ]& # + 0' + # # = + # # Z, = # + ]& M$ + + + + $= > = ]& ]& # ]& > + $ + > $= # . > $ + [* ^& . * > o! = . Q$ $ ] $= > ] 5- U$ - o! 1* ] Gc Q$ . ^& ; > U@ Q$ Q$ > & ; ~ & & R$ > . $ | ; ] S$ 4 05 P$ %= N$ ; | & ] 2 ~ H= $# ~ ( | : U$ { [ ; 2 | H= | ] ) > > | ) 4 [ { ~ 2 | { 7- 2 d ( Y@ ## *# [ 9 } ) d /& [ ( ) } 7 9 W@ < [ } $# { a &# d ( 6 } ~# $# 1 b &# { : [ $# 7 $# e < < ( a Y@ 7 &# 8 ,# c 0 ,# ( 1 6 0 8 8 a 6 $# e g a 8 6 e ~# n Y> a i c e e ,# 6 a e j d L= o e Y$ ~# a i o o n a o ~# o [& ~# Z> 0 h 1, p h p `$ h ~# C; `$ Z$ h c h Y$ p Y$ `$ `$ p Y$ n Q{ Y$ c c c n Z$ Y$ N G `$ h L= Y$ p L= m L= n h L= p Y$ Y$ o h c Y$ Y$ Q{ s> l n n e D Y$ ~# L= Vj `$ r |& g _# h s> |& c n Y$ n c h 4* m p h r % n 6 D p e `$ 2, n n o p c ~# 0- Y$ r X$ r Z$ A~ ,> Y$ `$ t p ~# {# L= n -= O' C; Y$ ~# p _# s> X$ c L= `$ |& i 0 h h n |& L= X$ r 0 p 8 0 h ;= s> ~# s> 7 d e 7 e e b c c c n^ c b [& e X$ !# o e ~# 8 J= 9- 6 d 8 7 V$ V$ g 0 e h 7 j j i A~ e ,# 5 X$ e h 7 0 e a 7 } } 6 -# 6 : 6 $# ## 6 7 { 9 &# / ># d &# %# O$ *) H) A, x, u, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, x, y, y, y, u, x, u, y, z, y, y, u, u, y, u, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, A, y, y, y, y, z, s, q, . & Z, & - ; ; ; S$ + }* . > ' . $ + > > . & . . . # $ * > > $ M$ . $ = ", +"y, y, y, z, (q.!q.!q.8' s, 8' ,q.8' 8' Mp.+' +' Mp.!q.Mp.Mp.+' +' Mp.+' +' Mp.+' Mp.z~ z~ [: @] +' @] z~ z~ z~ q, z~ *[ z~ *[ z~ z~ z~ 2! *[ z~ ah.ah.z~ z~ xi.vh.9| )~ <{ 9| vh.2! *) <{ 9| <{ 9| 9| <{ 9| <{ <{ 9| <{ <{ <{ R@ l) 8S J$ ]^ R@ 9| <{ #S BN jP L$ 0' I/ 0' 0' 0' G= R@ J$ L$ I/ I/ I/ = # = 5_ L$ 1) K$ K$ $ V@ # + # + R@ + L$ + = + . . > $ o! [* S$ > [* + ' #^ . - . > . . $ 0' + . $ ' U@ + $ U@ ]& > V@ 1* - Z, k) U$ & Q$ ; $ Q$ > . # > - ; > ; | . Q$ S$ H= & ] [ O$ N$ ' S$ ; [ 4 N$ W@ & & - & N$ Y@ | U$ 2 2] ; 2 2 , { ] > ; X@ U@ N$ ^ } ^ | Y@ | ~ %# X@ } d | 2 4 X@ [ |, [ $# O$ ^ { ( { 6 { { 1 1 $# [ $# { W@ $# } : ~ 4 7 9 $# < 8- 6 &# < 7 8 [ {# &# ## 7 ~# ( $# 8 { 7 d $# ,# g $# ( b 6 6- X$ a a &# -# 7 V- a' < V$ b i a 0- c r a k o a ~# K= e h X$ B; ># -# e c a L= e a j a {# n e e Y$ ~# n Y$ c ~# p a 0 L= !# Z$ a r X$ |& n e L= n L= L= r h n [& h E, L= p n e n ~# -) j o r ~# {# s> Q{ C; h p C; L= s> -= 4* a p n Y$ Q{ }& ~# h 0 [& L= c{ Y$ 9- ~# e p s> h C; n^ g h ~# s> m K/ Z$ m p :# n n o L= X$ n Z$ n 9- ~# {# r p c 6! ~# Y$ h o `$ ^# D t _# ]c n ~# r q 0- p L= (# _# `$ r n c h {# L= ^# h ~# b a C; r l `$ j Y$ ~# e U- 0 i r p V) 7 a 0 |& 0 c e ~# 6 8 {# 8 1 [& [& 0 o =# a 8 q> 0 7 e c :& e 9 c 9- 6 ~# L= $# 6 c 7 9 b k a &# 0 6 6 L= V$ e 0 V$ j ># 6 -# a [{ < 7 7 $# V$ 6 a 8 b b / } V) } 1 6 d ( &# ~ 2! v, u, A, z, x, z, y, y, y, y, x, y, z, y, y, z, y, y, y, y, y, z, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, q, & $ - & ; ) ] $ ~ H= & & & . $ . k) Q$ * - * & > T@ T@ $ V@ Z, $ > * $ $ * ", +"y, y, y, y, [* = # & $ $ # V@ > + + # + . > [* ]& ; > > S$ N$ > . $= - | Q$ - > = ^ & Q$ U@ & > U@ & - * o! U@ & . | 2 > ] | & & X@ ^ H= | > P$ (& ; ; | | W@ g{.~ U$ ~ X@ 4 } ## [ ) ~ ] X@ Z! N$ ; 2 `@ N$ & { ] `@ { X@ 2 ## /& | <& } , tp.[ ~ / { 2 $# Y@ $# / { [ [ d ( 4 $# < 6 7- [ Y@ 6- a X@ ( ( ( 3* / } < 6 { [ j a 6 &# < 1 { $# ,# : &# b 6 =# :& -# V$ a b 6 < ,# Q{ } -> 0 ( 9 == d g } b V- V$ a X$ 8 7 K= e h o e a 8 9 e ~# r |& c h ~# r l 0 1; 7 ,# 0 a ~# a a X$ 0 c c {# 5 c 7 0 n p k r 0 n g r [& ~# L= |& -) -= s> L= r L= c _# Y$ 7 h h r E, {# p s> c h -) 1; `$ Z$ Y$ n L= g 8 0 r p Q{ ,> s> p 0 a r r n n Q{ #| r `$ Y$ c{ h Q{ Y$ o ~# h ]# p n c r p r L= p e a s c h _# r 8 Y$ C; c `$ r s> o k L= h a' n % 2, 0- p _# L= g a 7 g r L= s> a b 0 n {# |& o n h ># {# L= C; 0 e L= a i c `$ a h j ~# k a ~# &# 1, Y@ i h c X$ L= :& j 7 ~# b n b == b 8 ,# ~# c 7 } V$ } &# a 9 7 Y> X$ ~# 7 : } ## g b a ># =# $# $# 0 6 b ># W@ $# } $# :& } -> V$ } 6 -# ,# D, b 6 7 i 6 7 W@ + [) x, x, v, x, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, z, y, u, A, y, u, u, z, y, x, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, u, x, u, l) & $= ] S$ S$ ] S$ . > ] S$ ' > $ Q$ ; . & $ ; Z, . = * . Q$ (& $ T@ # . ; * * ", +"y, y, y, z, 7' 8' !q.8' Mp.Op.8' !q.!q. q.Mp.+' Mp.!q.+' Mp.+' +' +' Mp.Mp.Mp.Mp.Op.+' [: q, Mp.+' [: z~ *[ z~ z~ *[ z~ z~ z~ z~ *[ z~ z~ *[ *[ z~ Il.vh.9i.z~ 2! 9| *) Pi.|1 ah.|1 *) <{ <{ 9| 9| 2^ <{ <{ 9| <{ *) ]^ <{ <{ ]^ J$ <{ <{ <{ ]^ *) <{ <{ J$ J$ ], #S I/ I/ R@ J$ R@ R@ ]& 0' jP I/ 0' 0' 5_ + G= 0' ]& # + 0' 0' V@ # ]& + =[ $= k) R@ = % [* # # 1* . ]& # . ;b ]& # L$ . . V@ + + $ = = . ; > = > . ' - ] U@ ; %= U@ > S$ & # . > ] %= $ ; ; & ; > > o! > ; H= ~ 2 Z, ] U@ & ; & & Q$ - | Z! /& ) & . ' H= | ; { < H= ~ `@ U@ X@ ~ 7- } ~ %= N$ ( X@ => ) `@ { *# ^ ) 7 | W@ 2 N$ 2 2 ;# 2 ( { # ~ ) ( d &# [ ~ < 6 d : 5 { 1 J= [ < d $# ( $# /& / : 7 / -# 2 ## } W@ } < $# b *= d ( 2 < b ~# 7 $# 7 &# 6 =# 6 8 7 -# h 0 8 &# 7 9 7 c ~# b a a *= n L= c e a 6 0 7 8 ,# g a e b e o h b ~# Y> 8 o ~# K= 7 a g 7 0 t' e tA ~# o r W$ a Y$ a c n n n K= ,# k 9- n L= L= h ^# c c n C; K/ {# K= `$ q ~# r s> h s> 7 r t Y$ r ,> r h p W$ % c n L= n s> s> o Y$ n^ Y$ h p h h !# ~# e ~# s> c Y$ ~# g a 7 e n ]# j ~# n h Y$ n 2, 2* ~# g L= h X$ p c !# 8 p c !# n (# n p O' h ~# k n n `$ h s> ,# ~# K/ g g ~# r c ~# a g a 0 ~# h X$ ~# Y> c L= L= c L= |& n ~# 0 6 a {# c g 3] 0 k a b c e n j e j e c 6 0 (# j [& a a ,# 7 6 i o 8 } c e g e c e b 6 a j ~# V$ $# $# j h 8 9 $# $# 9 8 :& [ } } : } : } < $# /& } &# ,# } $# [ V$ 7 7 $# ## 1* 2! v, x, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, u, u, ' # > H= ] }* Q$ ; ] > $ U$ > * . Q$ - 5- - Q$ p9 + * & $ . ' > . > > !, V@ & $ $ ", +"y, y, y, z, z, 7' !q.8' Mp.Mp.+' Op.(q.!q.Mp.Mp.Mp.8' Mp.Mp.+' +' +' +' +' Mp.Mp.Mp.y: q, z~ Mp.Mp.Vp.8' !q.[) z~ z~ z~ q, q, z~ z~ *[ z~ z~ *[ z~ *[ `p.9i.z~ z~ 2! 9| e^ Pi.&[ xi.<{ <{ <{ 9| <{ 2^ 9| 9| 9| <{ <{ <{ 9| <{ J$ R@ J$ <{ <{ 9| *) 9| jP <{ J$ G= I/ I/ ]^ J$ L$ I/ I/ 0' I/ I/ BN L$ 5_ I/ 1) # 0' I/ = # K$ + # 5_ L$ 0' + Q$ Q$ # ]& + . R@ + # . L$ . $= R@ R@ # !, . > |* |* - = & . = S$ }* k3 = $ %= U@ . . . $ 2) * + $ > = U@ U@ N$ $ . ; Q$ A; ; U$ & Q$ > (& & ~ N$ %= ; & | ] ; U$ > N$ H= N$ ; # N$ & H= ; ; & ) Z! { U@ ; W@ ] ( ( | Z! > ; N$ X@ 2 ; ~ 1 { { $# X@ ) U$ T- { /& ## X@ ; { J= 5 4 { d -# W@ 1 [ $# *# Y> 2 { ] / `@ : $# ,# ( 6 6 ,# / 2 [ $# 1 b &# / $# { [ 4 6 b 7 e $# d a 7 b 8 V$ b b $# J= +# /& L= a 0 i e 9 } o 8 6 6 6 6 c ~# b g c *= V$ V$ 8 g 9 a n !# ># g L= j a k f n ~# p d o h j 9 c c ,# o s C; r g a 6! h z: ~# k ~# 0 c L= c h 9- e h L= p 0 Y$ 0 k a n {# n n n 0 X$ L= L= r n `$ G ~# C; [& {# p c L= n L= 0 r Y$ s> }& 7 e n a {# o Y$ p r s> X$ Q{ h *= 0 L= L= c |& c r o h c ~# n `$ ~# ,# n |& n c *= c V$ c n o {# [& r n _# i k Y$ 2* h s (# p e h h ~# ~# A~ 0 n c e n ~# A~ n ~# V$ 8 e *= c ~# L= h h a $# 0 a 0 0 a 7 A~ a 6 ~# {# ( ~# s> a 8 7 ># X$ &# 6 ~# X$ h 6 l d 6 a j c 6 &# o a ,# a e &# a } } b b b 7 a 6 n Y@ ,# : 7 a 8 7 ## d &# ( } $# d &# < $# 6 } $# 6 5 6 == d 5 ,# &# - r, v, =) u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, z, u, u, u, y: # > N$ U@ . . $ & H= ; . & | ; ~ ; $ Z, . !, V@ }* > # > > . $ $ > . # > & Z, ", +"y, y, y, z, ]q.7' !q.!q.!q.8' Mp.8' (q.8' Mp.Mp.Mp.!q.Mp.+' Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.Mp.*[ [: Mp.Mp.Mp.Mp.q, z~ q, q, z~ z~ *[ z~ q, z~ z~ z~ z~ *[ vh.9i.z~ *[ 2! 9| 9| )~ <{ 9| 9| 2! 9| 9| *) 9| w9.9| 9| <{ <{ <{ <{ <{ <{ <{ 9| <{ <{ 2^ 2^ *) <{ <{ 2^ L$ I/ p9 G= BN ]& 0' I/ L$ I/ 0' <{ BN ]& 5_ I/ + # 0' = * 1) 0' ]& + = + V@ Q$ . $ $ ' # = + + # ]& 1* + ;b ]& L$ . . > # > $ > . & > ^& > . $ k) 5_ > $= ' > + > V@ ]& U@ . & > ^& > $ - $ . > . ] S$ ^ - ] ] U@ P$ | }* P$ Z, Q$ ' o! | ; H= N$ | Q$ | H= & S$ ; S$ %= | U$ U@ ^& - U$ 1 { ; ] %= N$ ( X@ ; - { ~ ] W@ .# ~ ~ /& | 2 | | | X@ $# { 2 ( 1 $# $# 9 *# ) 6 9 6 9 X@ } : ( 9 &# 6 $# &# { { < 1 $# < 7 9 } d -> &# < ## $# ,# 6! a a a 6 d d :& $# a 9 ,# a [ V~ 7 7 a 6 } 6 == 7 &# 7 9 $# V$ ,# ># q> 7 $# c $# 9 '# 3* j a } i c !# ~# c ~# K/ _# c Q{ c -> 7 Y> 8 e e a n 1, L= `$ h r ~# W$ ~# 3] r ~# c n Y$ ~# [& a' ~# ~# d c c L= a 0- 0 L= b L= j~ h n n {# ~# h ~# n `$ j K/ m e n 0- ~# ,> o 0 A~ o Y$ h a L= 7 ~# h |& e 0 c 0- s> h l h l 0 h [& o i n n e j h a n h ~# D, a 0 ~# r A~ h [{ a f o r Y$ n h c % p `$ `$ c M' h n o a 7 3* n V$ a i n n 0 L= 7 ~# 0 ~# ]c j g 7 !# ,# ~# 7 ]# c ># a e e a a ~# C; e b 6 ~# 6 i j 9 q> V$ -# 0 ~# j e } 6 ,# ~# a 7 a a Y@ a -# 7 b == d e X$ d &# V$ $# 6 $# $# e 8 6 $# 7 $# $# b b 7 [ : d e j < V$ { } 1 ( $# } B; 5 W@ , [ : ] D[ 8' x, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, u, s, y, y, y, y, y, u, s, y, u, )~ ] ] | S$ T@ * . & > - . V@ | - z] U@ . ] $ Q$ > $ = X! $ + * Z, = $ $ + * 2) + ", +"u, y, y, y, 2q.7' 8' 8' !q.8' +' Mp. q.(q.Mp.y: +' !q.8' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' Mp.Mp.6' z~ z~ [: Mp.[: Mp.5o.5' z~ z~ q, z~ z~ z~ *[ z~ *[ *[ *[ z~ vh.9i.z~ z~ z~ 2! 2! 9i.<{ 9| xi.2! *) <{ 9| 2! <{ 9| 9| *) <{ 2^ 9| J$ <{ 9| J$ J$ <{ 8S *) <{ ], <{ <{ J$ R@ L$ <{ R@ <{ ;b 0' R@ R@ 0' pH ]& ]& 0' L$ $ * # 0' Z, $ # $ . + ]& ]& + . = = . . + ]& # V@ }, L$ + . ]& $ R- . . > U@ $= ]& o! . # = > . Q$ = + J$ ]& ^& > - + - & - ] > & . U@ + Z, * $ # Q$ U@ $ > - > # > | $ Q$ * N$ H= Q$ & . X@ [ ; N$ | ; & H= U@ U@ | ! ) | ] H= | 2 U@ Z@ N$ & ; R$ H= 4 | | ] d Z! 1 ~ < { / ~ ] ) [ X@ ~ T- { [ } d { 2* /& : 5 | , &# ) 9 ( 2 1 $# 6 &# ,# ( $# d { < ,# 6 &# V$ V$ +# J= /& $# } } V$ [ 6 X$ 7 ,# $# d 5 b $# d -# == 6 8 $# d b 6 a a 7 6 8 a V$ b 9 7 a -# a e } e &# 7 d i d 6 d a 9 *= {# ~# ~# {# e 6 ~# [& e ~# 6 ># a ,# j a i 0 c ,> `$ r n ~# [& 0- 0 [& j n vk r C; L= 0 Y$ ~# ~# h 0 a Y$ h [& h s> ~# {# 0 !# ]c r 0- ~# r n L= p ~# [& `$ X$ ~# ]# ~# L= h 6! 0 h r [& n r i V$ -# g n h c h C; o L= ~# L= g W$ z: c a c n 7 a n n a c c g e o h $# j a g r n 3* a e c6 ~# Y$ h h c _# a 0 c c } c ~# c n ~# 2* n 0 a h 2, L= g {# a '# k {# *= vk e n L= h o j i a a 6! ~# n a j c ~# 7 i 0 7 a L= j a &# 7 7 } ,# e &# e e V$ 6 } 8 ,# / 6 e $# 9 < $# 7 &# *= 6 &# 6 7 a 7 *# [ =# 6 a ( } $# 8 a b &# $# $# } ># } } ( } ## } d 6 ) ], +' u, z, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, z, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, u, y, x, ], ]& - { ; ' S$ & . V@ > | S$ > ^& . & $ & N$ * . Q$ # > S$ + V@ V@ - # = $ # . V@ ", +"u, u, y, y, 3q.2q. $ = # + = Q$ V@ & [* # U$ S$ o! ] & & . | > . ; & S$ . & N$ = - . }, U@ S$ o! > ) S$ . ~ Q$ $ N$ ; Q$ ] - | ' ' N$ ~ & ; ; ] N$ { ) | { ; %= | { > ] J) 7- ] ^ ; 2 ] ## Y@ 7- | /& %m 7- } { [ { ; ) : ; < } } D, 7- b 5 } 6 } [ { < 7 # } ~# $# 7 1 } < / 1 Y> $# : =# -# &# a [ } _ 2 d e b == a -# ( &# b } ( 6 b ( &# $# $# 6 b < 6 d $# a o F! $# b &# b i &# c f 8 *= 7 7 V~ -# a a ,# e B; 7 ~# c l Q{ o ,# ~# k i ,# ># V- ~# V) j n a L= n 0 0 0 c p n 0 l ,# n Q{ c e h 6! L= ~# h 0 6 |& _# c ~# a h a h [& L= 9- {# c e L= L= ~# p _# g n Q{ n K/ c e ,# p c 7 n _# 3* h X$ e e X$ a h p g h `$ o 1, p 0 ~# c *= c L= Q{ L= g ~# a z: 0 c ~# e *= n 0 a n L= ~# {# e e r `$ e r 9- n 0 a h L= == $# k a' !# k [& c e e C; L= 9- c e 0 e ,# L= a e n e c {# 3] L= e 7 a a 0 ~# 0 j 8 L= o 7 e V$ [& 7 i 6 b 7 d 0 X$ D, :& h $# 7 V$ 7 e c 7 d a 6 Y@ [ b &# ## 6 ( 7 ( 7- $# j 0 7 6 i [{ D, &# 7 g :& g $# b b } < 6- ## 2 < ( } < { ,# + q, x, y, x, x, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, y, x, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, u, s, @ ] ; - Q$ & ; ^& & U@ > U@ . N$ - S$ & $ & ; - [* $ . > & V@ # . . + Z, # = p9 $ ", +"y, t, y, y, V@ + 0' V@ # $ E! # Q$ R@ % # # $= {c Q$ 0' 0' . . = 0' + !, ]& + > L$ . > |* + T@ 0' # ' . & $ |* > S$ ; | =' N$ > & = $ > $ Q$ > ; Q$ H= ; ), . ^ $ * . ; ; S$ U@ N$ Q$ ] | 2 | { R$ & W@ ] ## 7- ) > R$ N$ X@ | U@ ~ ] ) ~ %# 2 W@ } d { 5 ] } { 2 { X@ ) / ~ ^ ] X@ 6 ( 4 ;# ,# 2 { : &# 2 ~ Y@ } &# { $# < [ 6 < : [ 7 2 ( < $# < < ) 8- == 6 b : $# == -# : } } -# } &# $# [& 6 ( $# =# b } $# b j 8 c pp.K= e k a i b V$ a ~# e [{ i ># i 6 d a Y> W$ 6- b h ~# } X$ c V$ Q{ 0 7 j 0 ~# 0 == X$ i ~# c b A~ n K/ ~# h [& {# g 9 ~# h |& ~# L= c h k ~# r ~# e h e 7 c i K/ V$ 0 0 c 0- h Y$ c c 7 h c c 0 !# e ~# L= ~# {# 0 g !# L= n n ~# o ~# c n 6 i e a' e ~# n c g e r e o A~ p a' ~# 6 r c o g g e n n j e e 0 L= j a 0 ~# ,# q> L= n a K= 8 7 7 j n e a 7 8 C; j Q{ o Y$ f 9 ,# ~# k a $# c ~# ~# 7 h o c 7 i 6 } n 8x 0 0 e W$ 8 7 0 b a [& 9 } [& e e 6 a 9 } 6 ( 6 b d 6 $# {# 0 7 &# :& < &# $# *# a 9 < V$ ( b $# $# -# 6 7 7- 7 9 $# b -# ## 4 } { } $# ># < < } ## } < d 1 }* v, s, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, u, x, y, y, y, y, y, x, y, y, y, y, y, u, y, y, z, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, u, x, H) .( $ !, & * = - V@ & & U@ $ & $ T@ - + & Q$ = . * Q$ ' Z, & $ ; > + . $ $ . T@ V@ ", +"y, t, y, y, |* # = # ; Z, > U@ & & S$ U@ & > S$ & . > & & U@ & 2) > ! U@ N$ Q$ H= =' ] - - ~ W@ P$ Q$ S$ ~ *' | S$ N$ P$ 2 d { ) ~ %= U@ | P$ ; *' & 4 ; { N$ N$ & > N$ ~ ) | , ^ ~ ) | 2 ~ { 2 ) %# 1 W@ 5 2 ) / ( ## d } < ) X@ / ## { < / 7- [ 2 ,# $# < ## b / $# == e { ) 7 6 $# { ( [ &# ( : : ~ < / == $# } V) -# &# 6 $# 9 *# e &# 6 } c j i b b == &# 5 &# 8 } 8 8 i 7 i ~# ~# a Y> b a e $# a j 6 e 7 i c a e N' c n 7 o ~# n n j 6! j k 7 a i X$ a ~# 3] L= Q{ 0 p ~# |& 0 6! 0 a e L= Q{ h n h k r 0- a X$ ~# p ^# c r p c g c c e L= n 6! ~# g ~# o ~# h h ~# ~# c Q{ 6 Q{ L= 7 e 0 5 o 2, h c b o c 7 6 X$ a L= a `$ L= *= 7 [& ># L= e 7 0 0 ~# L= o ~# 0 L= [& ~# ~# o :& $# e ,# j a J] 6 i e a 0 } c 8 a ## 7 ~# h a' k ,# 8 e a 7 a 0 ~# c 0 7 $# k 0 Y> < ~# ~# a i e $# $# a $# } d ( $# < 6 V$ == V$ 6 8 8 :& :& e ,# ># ( b [ ( a 7 / $# &# } ~# $# 7 6 &# &# 6 6 < b e _ { &# { ## } 9 &# / d 4 { 9 -> { < / ( ; q, s, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, u, u, y, y, y, y, z, u, y, y, y, y, y, u, y, y, y, y, y, y, y, z, z, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, x, x, s, & ; ; & - . > > U@ Q$ . $ ; . > V@ ; Z, ; {c . S$ H= ' $ . + $ |* ]& > > . . 0' = ", +"y, t, t, y, ]q. . ]& + ]& + + - . . S$ & $ $ > ; L$ ]& V@ # = 1) > Q$ . - > . N$ ; S$ $ > Q$ $ . ] ; # . $ $ 0' & . ' $ o! S$ S$ S$ + & > ] & ) P$ | 2 S$ Q$ & & H= U@ ] & /& T@ ] ] ) ^& ~ | - N$ . ; | | X@ N$ | (& - . J/ ] 1 2 /& 1 { ) d { ~ $# ## { 2 ) $# { ( { { 2 ~ W@ 5 d ) 7- W@ : $# : W@ ## 1 : } b W@ [ 6- ,# 6 } &# $# 6 7 $# } $# 6 7 } &# } o $# 6 3* 9 &# j 9 == 8 7 $# / d a '# e d i $# :& 8 ~# 0 a N' 2* 8 e c n a a ># n 6 2* 0 d V$ 6 _ c ,# 7 6 6 ># V$ &# $# i n o [& ~# 0 6 n h h A~ ~# n i C; c h ~# k e c k n r Y$ 0 a k e c ,# ~# e {# e n C; n a e C; ~# ,# 0 c A~ e 0 0 g e h ~# ~# 8 e a h h c 7 8 0 e ~# c g a 7 j n ~# o 8 e c p g V$ c j a c a e h ~# g 2* h c 7 0 X$ b k ~# e c V$ } c h e j 0 c 7 j ~# 6 V$ C; [& i a A~ 6 $# ~# 7 b ,# 2* 6 ># 0 0 8 Y@ ~# e k c 0 6 0 ,# 6 D, ( $# 6- 5 a 8 ,# i V$ e b &# ~# &# j &# ,# b &# : 7 c a j b =# 6 9 &# $# $# < 7 6 1 1 b $# } a 8 ( 1 7 $# ## d $# &# $# /& ( ( 9 == &# ## <& Y@ 1 < [ ^ 9 ( 1 $# W@ & ; 2! H) s, u, z, z, y, y, y, y, y, y, y, y, z, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, q, . . - Q$ & ' N$ S$ & & Q$ . Q$ & > + . & . $ * . # T@ . . > + ; + $ $ $ + $ ]& ", +"y, u, t, u, ]q. k) $= |* . + = R- R- # Q$ & > & $ Q$ $ $ |* S$ $ ] $ = $ # & & > o! . - 5- Z! H= ~ P$ ] ; N$ N$ ] | S$ S$ ; > > & | W@ ; S$ ~ { |* | ! ; | N$ H= 2 R$ | ) & X@ W@ ~ | X@ *# ] X@ | ] ] Z! | ( { 7- : [ ) 5 W@ { D, } { ~ +# : / [ 4 { 9 $# < 9 / ~ 4 7 b Y@ < 2 ) $# ## < 1 [ : } /& $# &# &# : &# ## ## 7 d 7 &# 6 &# ) /& V$ a $# < 0 ,# ~# $# : 7 b d 7 D, b 6 5 [& $# Y@ { 6 7 $# 6 < D, a e 0 b N' b h o 9- K= ~# ># a 7 b ~# 0 a a c L= o L= k 6 a g ~# ,# C; ~# a b i 0 Q{ c 6! 0 0 a o L= L= n ~# Y$ 6! c 9- n L= i A~ Y> r [& n a e a 0 j 7 ~# g [& c ~# 8 e 2* h 7 g 0 e a V$ ~# n K] L= |& ~# K= n k g e c o ,# 7 ,# e ~# ~# 7 &# ,# 0 b 6 o _# ~# V$ a V$ a n ~# h o ~# i a 6 e ~# n n V$ 6 5 *= ~# Vj 7 a 7 } q> ,# 7 Q{ i a b -# 9 a 8 a g 6 [& ~# 0 b e e ,# L= 0 a {# a 1 c 8 d [ [{ a 7 &# j } ,# ,# 7 $# b 0 ( =# $# ,# ~# 9 $# $# < $# $# 7 &# < $# &# b :& 6 $# } 6 Y@ 9 V$ } < 6 V$ /& /& V$ $# 6 $# [ < &# < $# { { 9 < [ ## ~ *# %= s' v, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, z, y, y, z, u, y, y, y, y, y, y, y, y, x, s, u, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, ^, . + R$ ~ Q$ Q$ > * 1* z] & > & T@ P$ $= $ k) . * * . # # # V@ $ # - * ]& L$ o! > * ", +"y, y, u, t, 7' > ]& S- ]& T@ ] ; & & N$ - ! $= & > - > ] ~ & $ > Q$ k) & = ' Q$ U$ N$ o! | Q$ Q$ ; - N$ N$ R$ ; Q$ > . ; ~ | $ ; A; | 2 X@ ] | U@ N$ ] | 2 ] { W@ / I= 2 ; ^ N$ & ] N$ N$ & ; ( ) 4 } < N$ X@ ) `@ < ) ## ^ } 2 ^ ~ R$ ~ $# 2 [ $# [ < $# X@ $# &# ~# 7 i /& [ j $# ## ;> { [ 7 $# == } : $# ( b a } U- ( V$ a' 7 7 { a 6 == V$ -# %m $# : =# } d ( } e e 7 7 z: 2* $# 5 $# 0 V- c ( Y> c a ~# b ># V) ~# {# *= a a ># 8 c Y> e a A~ a 7 ~# 6 e ># a p 6! a ~# ,# ~# 0- ~# 0 {# ,# h h n c a h a ~# n ~# 6! h !# 6- Z$ 0 L= i i &# q> Y$ e o Q{ c o 6 ~# $# =# a 6 b 7 X$ 8 c e e ~# L= ~# a X$ X$ K/ 6 o 8 ~# X$ b } Y> n a n r L= e V$ 7 b b 0 L= d a ~# 6 6! X$ d j a c h ,# c i a 7 :& 6 i c W$ &# V$ a &# 0 a a n 7 '# $# ># ~# 0 a' &# N' 9 0 -# 7 l n {# 3* ,# ,# 6 7 a' a {# {# L= 7 ,# a $# b b d < =# -# e $# } $# } d D, V$ &# $# =# < i < ## $# 7 $# 7 ) 6 6 [ ( ( 6 $# b 1 d [ a 7 6 6 d } { $# / ( b } &# 6- 2 { $# 4 } -> } [ < { ~ ~ R@ q, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, x, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, 5' U@ $ S$ o! ; - Q$ 0' # o! > | > $ (& ]& . > U@ - 5- ' ]& V@ $ > R- . T@ $ Z, . * $ L$ ]& ", +"y, y, u, t, ]q.]q.]q.{q.7' (q.(q.8' 8' 8' Mp.!q.!q.,q.8' Mp.8' 8' !q.+' Mp.Mp./q. q.Mp.+' Mp.Mp.+' z~ z~ q, +' Mp.Mp.6' q, z~ z~ z~ q, q, z~ q, q, z~ z~ z~ z~ Il.|1 z~ 9i.ah.|1 9| e^ *) 2! 2! |1 5' 2! 98.9| 2^ ^, *) *) <{ <{ `, ^, jP *) 2^ jP I/.J$ J$ J$ jP jP 9i.*) 9| jP I/ BN 2^ J$ ;b L$ R@ ]& I/ I/ L$ ]& 5_ 1) # ]& 0' Dv # + 0' L$ =[ ]& $ ]& ]& V@ > + + # ]& # . l) ]& # > $= $ # ]& $ ]& + & =' . V@ . = . |* + + ^& Q$ - # > ' Z, V@ > = U@ * T@ = - $ T@ $ ] . %= ' & Q$ Q$ > & . & Q$ $ Q$ ; ; T@ ^& ; . ;# ~ *' . |* U@ S$ & . Z! N$ }* H= ; S$ | *# # 7- | > > ; ; & (& - ] 4 ~ { U@ T- N$ ~ ) 2 Q$ g{.$# 2 1 [ 1 1 } : 4 { | Y@ 2 ) } ~ [ / [ Y@ &# } { ) { } 8- ( # *# U- $# 2 ( ~ [ =# $# / | [ } 6 $# } a $# / 4 &# &# -# $# f] $# 7 { ) $# 7 6 < /& ( &# 6 : < ~ } 8 &# ( b 7 { 7 6 a 7 6 ~# 7 } b :& 0 ,# 9 9- 2* b {# [ a i ,# 6 c } d d g h n 7 ~# Y> ,# C; !# ~# e b 8 ~# L= 6- i ~# e c L= ~# [& 7 g ,# a ~# ~# o L= 7 {# ~# b &# X$ |& ~# o 7 6 7 6 a 9- n V$ j e ~# 7 D, ( V$ a b b 6 ~# c g a 6 0 $# } g } ~# c ~# e 6 6 3* 8 !# n a p c c r 0 h h c n a h C; o a c g q> ~# ,# ,# e {# j a c V$ 6 k {# 7 b d d a a a c 7 b a j ~# a 8 &# 6 ~# &# j $# ,# a $# ,# g 3* 6 e ,# ( d ,# V$ j j k 7 ,# b b 7 $# d # } N' < b 6 =# $# 7 &# $# Y@ $# } 6 ,# 5 d ## d @# } j 7 } [ : 4 6 7 { Y@ /& : { $# ( ( : { { ; $# [ V$ ( 4 [ ( ## { ) X@ { . q, s, u, y, u, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, u, y, u, u, y, u, z, y, y, y, y, y, s, x, V! ] . R$ ] o! > $ * > . = Q$ > Z, = . > & Q$ k) $ N$ . $ = + 0' $ . $ = + + > . + ", +"y, y, y, u, ]q. + ]& $ V@ ' $ R@ ]& . = $ . U@ $ * # Z, . T@ V@ + $= Q$ 0' + > & $ * S$ T@ o! * * = . $ > 0' Q$ U@ $ & . $ Q$ }* & . Z, + Q$ ]& $ ; S$ ' ; & ; ^& H= ~ T- ' N$ | T@ P$ | | ~ ~ ; [ < ) ( | ) ), & *' | ] ; & | ; | ^ ~ ~ ~ ) 1 2 8- 2 2 ~ /& - ^ 1 [ { ( ; [ | [ 2 ~ 6 d { ) W@ | a [ : : T$ ## W@ / 2] $# } 7 { $# ## [ } { 2 : 6 { } $# _ ) d a 8 } 6 g ( $# 2 $# $# $# [ 7 $# } ## $# [ d &# < -# 7 } $# ( } $# 7 a :& 9 ( $# $# e a 6 c e j ~# e e 3] ,# a ># 6 6 j *= a ~# d i 0 0 a k ~# L= ~# a V$ &# ( a c e L= a n ~# J] L= e a ~# tA n ~# a' ~# d b 7 D, 7 *= a ~# c 7 ,# 6 ~# 7 e 6 $# a' c 7 7 6 6 l Y> ,# o i 0 k ;= e Y@ e j 7 h 7 7 0 7 8 n W$ *= ~# F! c a n [& i b 0 0 V- e ~# e F! 0 *= e ,# c c q> c d c [& a a ,# 7 7 7 j a 6 6 ,# 1 ,# ~# 8 &# &# h [& ,# e a 6 7 i ~# j 0 ( &# &# 6 ># Y@ ( b 7 / &# Q{ 7 7 3* q> d -# $# 7 &# } &# $# } &# ( 5 < 1 U- a [ } &# < } &# I= < b 7 } ( $# } } } : { 9 : 1 -# ( $# ## : ~ { 2 $# 1 } 2 4 ) 2 | d / [ { [ { { ## ; `, s, y, u, x, 7' x, y, x, x, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, z, y, y, x, u, x, y, y, y, y, y, y, y, y, u, r, + ; N$ N$ > . $ ]& T@ . Q$ ' > > + V@ Z, $ ' = + L$ > $ = . . . * = * $ # * $ Q$ # ", +"y, y, y, u, 7' = ]& }, $ L$ + # + V@ . ]& # + = |* $ . - [* Z, > Q$ - ]& [* # $ . # $ Q$ . U@ H= |* & | $ (& # $ ; - > + ' ; Q$ * * . ; S$ U@ H= & Q$ ; ; P$ Q$ Q$ > S$ Q$ ^ 4 { > ~ { | ] U@ ~ ; & ) & . & N$ W@ ] & ~ [ W@ Z! U$ N$ X@ > N$ N$ -.1 ) ) { | } < ~ ~ | N$ ) 2 W@ [ ## { / W@ Z@ 2 / W@ [ ) ## } 4 +# 1 { / ## -# < -# : $# < $# ## [ / $# $# *# 5 &# $# 5 1 { < ## 6 =# [ *# ( ) ## < -# < < [ ## &# V- } $# V$ b V$ &# 6 7 < 6 7 6 d x0 ## a e b N' ## a 6 9 6 6 7 ,# 7 b &# ,# 6 !# r 0 L= a 0 L= ,# ~# 8 6 g s> n {# {# a ~# 6 9 ~# ~# -# q> 5 V$ b k k d a 6 } $# b 7 7 e ,# n a ~# d a e a ~# V$ i e e 0 c a 0 c } L= a L= e e ~# d -# *= i j L= L= n j i V$ 8 &# ## 2* 6 g Q{ a j vk ~# 8 e $# 6 6 l d $# b b 6 q> ,# vk 9 9 i 7 Y$ L= 9 a 0 0 7 a ># b 6 ( 7 ,# 0 ~# 6 9 e a' a 6 A~ $# 0 ,# 6 8 &# d b 6 b } d 7 7 < { 6 [ 4 b } $# [ } 7 == ( /& ( 6 { } g &# e 7 } < } } =# } &# 7 2 [ < [ } < { [ Y@ } { Y@ d Y@ [ ## ~ : [ } ## { ## $# ( 2 ## 4 P$ { /& { < X@ ~ 2 q, }) x, y, y, t, x, y, x, t, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, y, y, y, y, y, y, y, y, y, y, y, y, y, 8' u, z, y, y, y, y, y, y, y, t, y, y, y, y, u, s, u, y, z, y, y, x, M$ > Q$ $ & $ + # * R- Z, & . = * . ' . k) . . $ Z, $ !, + L$ # = ]& * $ + Z, $ p9 $ ", +"y, y, y, y, 8' ]q. = . V@ $ $ . 0' .( $ $= & ' Z, + ]& > $ . & > . X! # T@ . - R$ ~ - . . . ,Q ] - o! ^ ; $ $ . ; k) . V@ ; ; > > ' ; S$ S$ 2 | | N$ | ) ; ] ] ] `@ ~ ; ^& H= & | ; > ^ J= 2 - { ( ) ] | 2 X@ N$ 2 N$ | ] & ) ] Z! 2 ) ) | ^ 2 1 ,# 1 ## { ) [ 7 { [ D, ~ | < { T$ ( 2 { D, ;# } b ( &# } } { J= [ [ a } ~ $# 6 1 ^ $# $# W@ 5 7 d { ( ## 1 @# : ( J= $# } } &# } -# } -> $# } 6 } } $# { } V~ } d 6 6 6 ~# a } g 7 b e 6 7 ( a ( e b a a 7 0 a e 9- {# e 9 {# a a' d $# a' 7 $# g 7 ,# $# ,# X$ 9 0 c j 7 ~# a X$ -# b &# Q{ [& 7 a e ># a d a n a W$ V$ ,# g 0 0 7 {# j &# {# L= a ~# ~# 8 a' a 2* i b e a 8 a k ~# 7 X$ h *= ~# 7 e [& 8 j c 6 a 0 c 8 6 e a i 8 L= ~# d &# d ,# ,# 0 a e X$ k 6 7 e 5 $# 6 6 ,# a 9 5 +# -# a } &# $# a 6 6 7 6 < ~# } d e &# $# 8 L= $# 6 6 ## &# 8 $# 1 &# } &# a } 7 &# a' j 9 :& $# ( [ &# 7 J= 7 V- < ( 7 $# < d ( ~ *# } ( Y@ ( Y@ == 7 { 6 } 1 7- : } { 1 [ 2 } } { } { 2 *# < [ < 2 < d *# 2 ) | R@ s, u, y, u, y, y, y, y, y, u, z, u, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, u, u, y, y, y, u, 6' # . ; ]& Q$ Z, & . Z, T@ $ ] . Z, > . > ; & ; > $= ]& . . & + + l) $ ]& 0' . X! ]& $ $ ", +"y, y, y, y, 7' 7' ; > > ; U$ ^& ! N$ *# N$ 5- & ; | ] - ; ! { ## N$ [ 2 Z! P$ N$ N$ ^ S$ [ } ; R$ ! ) Y@ Y@ : { { d { ~ } [ : ,# ( Y@ $# { ~ 1 /& [ { [ N$ Y@ { ## $# 2 $# ## { $# ( ( 9 :& 6 J= [ ) 2 ~ &# =# } 6 -# V) 9 6 7 V$ Y@ X@ ## b { 4 6 e b b } ( -# } -# b 6 L= 6 i 9 ,# D, 9 : ~# } /& Y> { 5 d -# ,# b &# 7q.6 } b } => c Y> c e [& j 8 c6 k 0 $# g n i 0 9 a 0 a ># 7 ># ~# a 0 a ~# d 0 i L= b n ,# X$ -# 7 0 {# 0- L= h 7 g d b %# 6 ~# e e 6 0 3] i a [& h =# V$ X$ 0 V$ ~# ~# 7 g i 7 $# $# 7 n 7 V- j W$ a 6 -# $# 7 6 7 i i $# $# } ~# 7 8 a 6 k ,# ~# V$ 6 a $# 6 a V$ a ,# b == } a $# : &# == 7 V$ 7 6- 7 a &# &# 6 7 6 V$ 1 : [ 8 V$ } ,# 6 9 6 V$ =# &# ,# } $# &# i $# a 6- < b 9 9 $# a ## ( V$ ( $# &# V$ ( [ ( ( ( ( V$ [ } } a ( /& 2 : { : 6 } < { | [ 2 ) < { $# d } { ~ { ) ) ~ ## 2 2 | { ; ) ~ U$ G= s, s, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, u, y, y, u, y, u, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, x, u, u, s, u, s, y, y, 6' . + ; - . V@ T@ U) T@ T@ 0' . ]& = . ' S$ ; > S$ . & ' H= Q$ = # Q$ V@ . T@ $ $ Z, = ]& ]& ", +"y, y, y, y, ]q.8' |* = Q$ ; ; ; ] ] & N$ Dv & $ ^& !, $ %= & o! . V@ . - %= > $ | N$ & 4 ] ; 2 N$ 2 ^ ~ g{.X@ N$ ] X@ | U@ ^ ~ U@ W@ W@ ) > | g{.| ~ [ ] > H= ^ ~ ; d ( 2 W@ ~ ) ~ ## ( } : { < J= 4 W@ $# 2 2 { $# W@ } $# Y@ W@ g{.6 { } { 2 { / -# &# [ ~ & ) 6 /& ~ { < '# : W@ &# $# 9 } $# } ( < 6 : } *= b 7 i ( : 7- d 6 i j a d d d b $# { [ d 0 a &# < ( d 6 $# 6 D, $# J= 0 9 } ~# 8 6 a D, 7 6 j M' 3] 6 n 6 ,# ~# C; ,# e e A~ &# b j 0 a ,# a 6 V- 7 0 a tA c 7 &# $# i a ~# ,# 6 &# &# 8 8 q> 6 0 d L= $# b 6 8 *= n b b a 7 } 7 i -# 6 e i ,# &# 8 d 8 6 7 ~# } } 2* a ,# 7 ,# d 7 9 7 a g 6 6 d 0 6 ,# } a a a U- } k } ,# a == ( a d $# $# a == 6 $# 8 &# &# 6 a' } } 7 &# 6 ~# e g ,# _ +# 6 :& -# : i &# } $# : } { } b b J= , 6 J= < ## [ ( < 7 $# } $# _ ## / $# a $# ## == | *# *# ## } d < < { *# 7 [ ( X@ 2 } Y@ /& [ { { / [ { < { } 1 : } < X@ Z! ~ 2 ## | %= > r, A, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, u, y, z, z, y, x, y, u, s, y, y, y, y, s, x, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, s, y, x, )~ . > & > !, V@ > # > Y! 0' # & T@ & $= . * # $ + Z, $ $ Q$ = . . # M$ ]& + . $ $ = = ", +"y, y, y, y, z, !q.!q.]q.]q.]q.2q.]q.(q. # # $= |* . = > V@ $ $= $ ]& # > * * #^ + > + + + ' T@ > + * T@ = . = - Q$ . . - o! Q$ + T@ S$ ; > Q$ * & & Q$ > U@ & - > (& > $ > U@ & & H= S$ N$ { U$ ] 2 { 2 R$ H= & U@ ; ; ; ~ ] { 4 ] ] ) ^& | | N$ ~ N$ ] ] *# | ) { ] d 4 4 } ~ ~ ) [ T- ) , W@ ## &# ~ ] W@ ( 4 q> ( `@ < { | [ [ N$ ) 2 { $# ( ## *# /& $# *# 1 b &# $# : [ ## ( $# ( 8 $# 7 6- ## ( ( } &# ( b 8 7 &# } ## : } d 6 d d a &# ## 2 9 b [ 6- D, a 6 V$ 0 Y> *# } ,# 6 b a e 6 J] 7 e a a ~# ,# ~# i ~# L= $# 7 ># a Y> i k d d ,# 0 a 3] M' 6 -# e $# ># *= 6 $# 8 ~# a 8 : 9 ~# ,# 3* a 6 [ } 7 L= ~# ># 7 6 $# } < $# 9 ~# [{ 9 b e 7 g 7 ~# &# 3* {# &# n 7 6 c a ,# } < 4 d g 8 ,# 7 Y> 1 9 ( } ,# V$ b ,# 9 ,# b } ,# g a ,# 0 ># J= ,# $# e 7 b 7 j $# } 6 $# &# b $# $# 6- 8 $# } 6 b a Y> 0 b $# ,# &# :& a 4 : } $# V$ $# < ~ &# $# -# 6 { } +# < : 6 6 ## &# ( d } ~ } :& } } ( 6 / ) { $# [ ## *# ( ) [ d { [ g{.< 6 2 { } X@ $# } : ~ { T- | ~ ~ : [ ~ ( ## Y> ~ ) ^ %= ## { & 6' w, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, u, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, y, s, s, v, @ T@ Q$ {c > Q$ > > - * }* . . $ $ $ = $ . $ $ Q$ . ' $ & * $ M$ ]& . = + Z, ]& ]& L$ = ", +"y, y, y, y, 6q.9q.(q.]q. # 0' V@ + # + ]& $ $ 5_ . S$ . + !, # = V@ 1* S$ ' # L$ + # > V@ * . - ]& * ]& . . # ]& + - * $ ; ' $ Q$ ; > Q$ - & o! T@ . - ; > 5- o! %= ; N$ | & | > & *' H= > | = ] ; | ] ^& { aq.H= H= & N$ ; > ] [ `@ X@ ) ^ ^ & < 4 S$ 2 N$ N$ ; ] ; `@ ) [ 2 ~ ) ^ [ W@ [ [ Y@ $# 2 } ) %# { *# [ [ Y@ / ) | W@ ] ~ T$ < [ | ] { +# } [ _ } +# ( [ < / [ : W@ ) +# | *# ## } 2 [ { b -# } b =# } <& 9 -# : / { d ## ## { 7 ## $# ( 9 $# d } Y> V$ 9 o i ( b e 9 /& ( Y@ 0 6 6 $# == 0 [ } ## V~ a d k ,# 7 ># Y@ 7 / ,# k ## 1, ~# 0 c 6! i a' ,# ,# $# h 7 ~# k 4 } 6 '# $# ,# : Y> 6! 6 0 } &# $# a Y@ &# g ~# $# 6 a =# ( c c i $# $# ## ## 6 7 7 J= < 7 j : 7 e e 8 ,# X$ 7 6 :& -# e a 6 6 a 0 [& < d 6 &# -# a < d -# : 9 5 7 6 b a 7 a a } 9 6 ,# a } < &# &# $# a b V$ $# == } ## } b ,# &# n } &# } == < < [ { d $# 9 d < [ 1 0 -# $# | $# 6 $# &# b 7 &# } $# : 9 Y@ 6 $# < { } 6 Y> 1 &# < [ { $# -# *# / ## [ ) { { 2 : d [ N$ $# < | Z! W@ [ | < { { H= N$ ~ { ) H= ) ; 2 d ! ^ `, r, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, x, s, > }* . . S$ . # & $ # = X! Z, . ]& = . $ # R@ V@ . S$ V@ # M$ ]& ]& V@ ^& * + + M$ Z, = 0' ", +"y, y, y, y, z, . # $ * $ = U$ ; = * = = . . = . . . $ = * - Q$ # . = $ U@ ' - . & - # ; & S$ - U@ 0' . | & > . `@ $ ] A; . & N$ H= | * Q$ ; . ; ' & Z@ ~ ; - ] & A; S$ & U@ H= ) T- & ] |* ] U$ A; | ! ^ ; X@ { P$ ; ~ ~ ) 1 | ~ ] | ^ `@ | 6 ~ Q$ ] 2 | 4 / { ] ( W@ 7 ~ ( { | ;# $# 2 { < W@ [ X@ [ { [ [ ) : ) ) 7 $# | $# : 2 } ## X@ :& 6 *# : [ < } } $# a : N' ( } { 3* $# V$ a &# 8- 7 b 6 ( } } 6 &# 6 9 a } 7 ,# 6 9 q> } 6 e $# / $# 6 a a ( 8 6 $# b d b ,# ,# 6 == a ,# q> 7 } 9 0 3] 7 k 7 $# &# ~# b d 6 7 6 3* 6 a j $# a ~# b k k $# 6 ,# 6 6 7 } b a ~# -# V$ Y> -# b $# } 6- 6 == a 6 6 ,# ## 6 $# 7 7 7 7 ~# 8 d 6 -# e 7 d g } 1 k X$ d ># b a a [& ( a &# < } Y@ } 5 U- Y> 5 6 $# $# a g } e $# == a $# : 7 k 7 a } [ 7 7 6 7 &# 6 $# $# $# $# $# [ $# : a } -# 9 [ : /& d < 6- $# $# [ $# : $# $# Y@ { -# =# $# : /& [ X@ / < ## < 3 : } 2 / &# } ^ < 1 W@ ) } X@ W@ 1 .# } : ) ] 2 X@ ) | ) } 2 ) | ~ { ) ~ 2 ~ ] 2 ~ X@ 4 | W@ ^, v, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, s, v, R@ = ^& . Dv $ X! - S$ . > . * V@ . & [* > $ Q$ > # > $ L$ k) # L$ 0' . # p9 . ]& + $ Z, ", +"y, y, y, y, z, ]q.7' (q.]q.]q. V@ = = T@ . 0' . T@ . X! # # = . & # = * Z, 0' = > $ [* T@ > o! !, > & = U@ $ o! ~ U@ V@ T@ | - k) Z3 N$ H= & ' ' | %= H= 2 ~ ^ & H= U$ S$ S$ U@ U@ |* > N$ & > & U@ ] X@ ^ 2 | | ; 2 - [ ; H= 2 U@ | | | X@ ^ ~ ^ N$ ~ ^ /& ( | - ) 2 N$ ~ %# } | *# b } { { | / ^ ) } 1 { [ { } [ ~ [ 6 *# ## $# } { [ { 2 ## | ~ { { 6 6 W@ ( ## ## ~ [ 2 < } 2 e } Y@ +# / 6 6 ( { &# b b 6 1 ( 9 9 7 7 $# 6 d e D, 6 ~# 7 } 7 9 9 i 0 g } $# 6 ># ># i ,# e a b ## $# d ,# 6 ,# 6 bq.0 c a 1 b Y@ ,# k ,# 3] ,# a ># a ,# e -# ## 1 e 7 7 a -# } 6 ~# 6 ,# i } &# 8 c [ a 7 a a d -# e a e 7 8 ~# d i b a ,# i ,# g $# -> } 0 d } $# $# d 7 ,# 7 == Y> V$ 9 } $# 6 a } b ( ~# ## d c a $# ( /& 6- J= 7 [& 6 a [ 7 $# 6 / D, { 9 b } 6 7 1 &# b ,# &# [ } ## &# 7 5 $# 7 7 : { ## [ d | [ ( ## } V$ ( < b ## [ J= == d 2 ~ ## < { } 2 } 7 { R$ | ( < ) ~ { 2 ## ## { [ ~ / } 1 ( ~ ~ N$ [ < [ ^ } ~ /& U@ | H= X@ : ## 2 R$ H= 2 ~ 2 | X@ 6 =) q, y: y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, u, y, y, y, y, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, s, R@ * * ; | Q$ k) [* > ' & . = . & # . . Z, . . = M$ ]& J$ L$ I/ + = # # ]& * ]& ]& = ]& R@ "}; diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/welcome.png b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12X-calamares+debian-installer/eznixOS12X/splash/welcome.png differ diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-17/16865021501.desktop b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-17/16865021501.desktop new file mode 100644 index 0000000..5daa0c8 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-17/16865021501.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch TerminalEmulator +Icon=org.xfce.terminalemulator +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-AppStream-Ignore=True +Name=Terminal Emulator +Comment=Use the command line +X-XFCE-Source=file:///usr/share/applications/xfce4-terminal-emulator.desktop diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-18/16865021502.desktop b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-18/16865021502.desktop new file mode 100644 index 0000000..b6dd1b5 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-18/16865021502.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch FileManager %u +Icon=org.xfce.filemanager +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=inode/directory;x-scheme-handler/trash; +X-AppStream-Ignore=True +Name=File Manager +Comment=Browse the file system +X-XFCE-Source=file:///usr/share/applications/xfce4-file-manager.desktop diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-19/16865021503.desktop b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-19/16865021503.desktop new file mode 100644 index 0000000..96042ba --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/launcher-19/16865021503.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch WebBrowser %u +Icon=org.xfce.webbrowser +StartupNotify=true +Terminal=false +Categories=Network;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https; +X-AppStream-Ignore=True +Name=Web Browser +Comment=Browse the web +X-XFCE-Source=file:///usr/share/applications/xfce4-web-browser.desktop diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/whiskermenu-7.rc b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/whiskermenu-7.rc new file mode 100644 index 0000000..2cf1948 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/panel/whiskermenu-7.rc @@ -0,0 +1,89 @@ +favorites=xfce4-web-browser.desktop,xfce4-mail-reader.desktop,xfce4-file-manager.desktop,xfce4-terminal-emulator.desktop +recent= +button-title=Menu +button-icon=emblem-debian +button-single-row=false +show-button-title=true +show-button-icon=true +launcher-show-name=true +launcher-show-description=false +launcher-show-tooltip=false +launcher-icon-size=2 +hover-switch-category=true +category-show-name=true +category-icon-size=1 +sort-categories=true +view-mode=2 +default-category=0 +recent-items-max=0 +favorites-in-recent=true +position-search-alternate=true +position-commands-alternate=true +position-categories-alternate=true +position-categories-horizontal=false +stay-on-focus-out=false +profile-shape=0 +confirm-session-command=true +menu-width=479 +menu-height=500 +menu-opacity=100 +command-settings=xfce4-settings-manager +show-command-settings=true +command-lockscreen=xflock4 +show-command-lockscreen=true +command-switchuser=dm-tool switch-to-greeter +show-command-switchuser=false +command-logoutuser=xfce4-session-logout --logout --fast +show-command-logoutuser=false +command-restart=xfce4-session-logout --reboot --fast +show-command-restart=false +command-shutdown=xfce4-session-logout --halt --fast +show-command-shutdown=false +command-suspend=xfce4-session-logout --suspend +show-command-suspend=false +command-hibernate=xfce4-session-logout --hibernate +show-command-hibernate=false +command-logout=xfce4-session-logout +show-command-logout=true +command-menueditor=menulibre +show-command-menueditor=true +command-profile=mugshot +show-command-profile=true +search-actions=6 + +[action0] +name=Man Pages +pattern=# +command=exo-open --launch TerminalEmulator man %s +regex=false + +[action1] +name=Search the Web +pattern=? +command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u +regex=false + +[action2] +name=Search for Files +pattern=- +command=catfish --path=~ --start %s +regex=false + +[action3] +name=Wikipedia +pattern=!w +command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u +regex=false + +[action4] +name=Run in Terminal +pattern=! +command=exo-open --launch TerminalEmulator %s +regex=false + +[action5] +name=Open URI +pattern=^(file|http|https):\\/\\/(.*)$ +command=exo-open \\0 +regex=true + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/displays.xml new file mode 100644 index 0000000..0dc41fc --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/displays.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml new file mode 100644 index 0000000..9ddc443 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/thunar.xml new file mode 100644 index 0000000..ff26405 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/thunar.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml new file mode 100644 index 0000000..e72def1 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml new file mode 100644 index 0000000..d7ea804 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml new file mode 100644 index 0000000..5865d01 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml new file mode 100644 index 0000000..8c0f72f --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml new file mode 100644 index 0000000..4fdf554 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml new file mode 100644 index 0000000..8346363 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml new file mode 100644 index 0000000..c1d4b3c --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml new file mode 100644 index 0000000..e139250 --- /dev/null +++ b/eznixOS12X-calamares+debian-installer/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares/BldHelper.sh b/eznixOS12X-calamares/BldHelper.sh new file mode 100755 index 0000000..32ee10a --- /dev/null +++ b/eznixOS12X-calamares/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12X +SUFFIX=amd64 +BUILD=eznixOS12X +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12X" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12X.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12X-calamares/bldeznix12X.sh b/eznixOS12X-calamares/bldeznix12X.sh new file mode 100755 index 0000000..c92f474 --- /dev/null +++ b/eznixOS12X-calamares/bldeznix12X.sh @@ -0,0 +1,376 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up build environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution bookworm \ + --archive-areas "main contrib non-free non-free-firmware" \ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application $BLDDIR \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X_${TODAY}" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-user-session +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +openvpn-systemd-resolved +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $$eznixOS/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12X/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/includes.binary/ + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12X $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12X/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12X/bootloaders/* $eznixOS/eznixOS/config/includes.binary + +cp $eznixOS/eznixOS12X/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12X/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12X/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12X/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12X/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12X/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12X/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12X/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12X/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12X/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d + +# Uncomment below line if you have packages in the misc64 folder to include: +#cp $eznixOS/eznixOS12X/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/BldHelper.sh b/eznixOS12X-calamares/eznixOS12X/BldHelper.sh new file mode 100755 index 0000000..32ee10a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12X +SUFFIX=amd64 +BUILD=eznixOS12X +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12X" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12X.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/black_hex_orange.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/black_hex_orange.jpg new file mode 100644 index 0000000..187a921 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/black_hex_orange.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/blue_purple_hex.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/blue_purple_hex.jpg new file mode 100644 index 0000000..04a5201 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/blue_purple_hex.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/bridge_water.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/bridge_water.jpg new file mode 100644 index 0000000..f3bb758 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/bridge_water.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/cloud_lake_peaks.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/cloud_lake_peaks.jpg new file mode 100644 index 0000000..8a8ba6c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/cloud_lake_peaks.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/clouds_water.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/clouds_water.jpg new file mode 100644 index 0000000..7263320 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/clouds_water.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/darklave.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/darklave.png new file mode 100644 index 0000000..c4e792d Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/darklave.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/darknight.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/darknight.png new file mode 100644 index 0000000..d2a5a3b Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/darknight.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/desert_rock_lake.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/desert_rock_lake.jpg new file mode 100644 index 0000000..f9c6a0f Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/desert_rock_lake.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/fall_lake.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/fall_lake.jpg new file mode 100644 index 0000000..07e303c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/fall_lake.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/fall_waterfall.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/fall_waterfall.jpg new file mode 100644 index 0000000..ba9a718 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/fall_waterfall.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/forest_stream.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/forest_stream.jpg new file mode 100644 index 0000000..3d40d1d Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/forest_stream.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/gold_pond_falls.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/gold_pond_falls.jpg new file mode 100644 index 0000000..d611d4e Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/gold_pond_falls.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/gray_lake_clouds.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/gray_lake_clouds.jpg new file mode 100644 index 0000000..b450a9e Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/gray_lake_clouds.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/green_abstract.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/green_abstract.png new file mode 100644 index 0000000..1b1b810 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/green_abstract.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/green_rock_falls.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/green_rock_falls.jpg new file mode 100644 index 0000000..0130003 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/green_rock_falls.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/green_waterstream.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/green_waterstream.jpg new file mode 100644 index 0000000..d188d0a Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/green_waterstream.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/icy_lake.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/icy_lake.jpg new file mode 100644 index 0000000..d823847 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/icy_lake.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/lake_powell.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/lake_powell.jpg new file mode 100644 index 0000000..e8bca8f Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/lake_powell.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/lakerocks_clouds.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/lakerocks_clouds.jpg new file mode 100644 index 0000000..6b2184e Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/lakerocks_clouds.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/lakeside.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/lakeside.png new file mode 100644 index 0000000..49b60dc Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/lakeside.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/lavalamp.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/lavalamp.jpg new file mode 100644 index 0000000..527bc61 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/lavalamp.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/lavalamp.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/lavalamp.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/lavalamp.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/mirror_lake_boats.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/mirror_lake_boats.jpg new file mode 100644 index 0000000..8c69917 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/mirror_lake_boats.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/mountains_water.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/mountains_water.jpg new file mode 100644 index 0000000..a2121f9 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/mountains_water.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/nature002.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature002.jpg new file mode 100644 index 0000000..b9aa8d2 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature002.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/nature003.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature003.jpg new file mode 100644 index 0000000..c55aba8 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature003.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/nature005.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature005.jpg new file mode 100644 index 0000000..d4288cc Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature005.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/nature009.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature009.jpg new file mode 100644 index 0000000..bf31052 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/nature009.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/nightbefore.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/nightbefore.png new file mode 100644 index 0000000..33486f6 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/nightbefore.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/reflection_canyon.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/reflection_canyon.jpg new file mode 100644 index 0000000..bab3d34 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/reflection_canyon.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/short_waterfall.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/short_waterfall.jpg new file mode 100644 index 0000000..0bfc40e Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/short_waterfall.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/snow-peaks.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/snow-peaks.png new file mode 100644 index 0000000..c4cdf08 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/snow-peaks.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/snowy_lake.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/snowy_lake.jpg new file mode 100644 index 0000000..e27b707 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/snowy_lake.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/theway.png b/eznixOS12X-calamares/eznixOS12X/backgrounds/theway.png new file mode 100644 index 0000000..a2b4f41 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/theway.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/tree_lake_peaks.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/tree_lake_peaks.jpg new file mode 100644 index 0000000..254972a Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/tree_lake_peaks.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/trees_lake.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/trees_lake.jpg new file mode 100644 index 0000000..38c1964 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/trees_lake.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/trees_waterfall.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/trees_waterfall.jpg new file mode 100644 index 0000000..84908be Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/trees_waterfall.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/underwater_rocks.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/underwater_rocks.jpg new file mode 100644 index 0000000..321551c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/underwater_rocks.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/water_mountains.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/water_mountains.jpg new file mode 100644 index 0000000..cc913fa Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/water_mountains.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfall_lake.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfall_lake.jpg new file mode 100644 index 0000000..eb8a61e Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfall_lake.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfall_logs.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfall_logs.jpg new file mode 100644 index 0000000..69d8361 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfall_logs.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls003.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls003.jpg new file mode 100644 index 0000000..c492115 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls003.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls005.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls005.jpg new file mode 100644 index 0000000..fcf280a Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls005.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls014.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls014.jpg new file mode 100644 index 0000000..121fcc8 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls014.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls015.jpg b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls015.jpg new file mode 100644 index 0000000..e474383 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/backgrounds/waterfalls015.jpg differ diff --git a/eznixOS12X-calamares/eznixOS12X/bldeznix12X.sh b/eznixOS12X-calamares/eznixOS12X/bldeznix12X.sh new file mode 100755 index 0000000..ecb78df --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bldeznix12X.sh @@ -0,0 +1,375 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up build environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution bookworm \ + --archive-areas "main contrib non-free non-free-firmware" \ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application $BLDDIR \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X_${TODAY}" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-user-session +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +openvpn-systemd-resolved +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $$eznixOS/eznixOS/config/package-lists/bcmfirmware.list.chroot + +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12X/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/includes.binary/ + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12X $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12X/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12X/bootloaders/* $eznixOS/eznixOS/config/includes.binary + +cp $eznixOS/eznixOS12X/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12X/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12X/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12X/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12X/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12X/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12X/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12X/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12X/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12X/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d + +# Uncomment below line if you have packages in the misc64 folder to include: +#cp $eznixOS/eznixOS12X/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the eznixOS process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/config.cfg b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/config.cfg new file mode 100644 index 0000000..1061be0 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/config.cfg @@ -0,0 +1,30 @@ +set default=0 + +if [ x$feature_default_font_path = xy ] ; then + font=unicode +else + font=$prefix/unicode.pf2 +fi + +# Copied from the netinst image +if loadfont $font ; then + set gfxmode=800x600 + set gfxpayload=keep + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus +else + set gfxmode=auto + insmod all_video +fi + +insmod gfxterm +insmod png + +source /boot/grub/theme.cfg + +terminal_output gfxterm + +insmod play +play 960 440 1 0 4 440 1 diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/grub.cfg b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/grub.cfg new file mode 100644 index 0000000..8524bb3 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/grub.cfg @@ -0,0 +1,28 @@ +source /boot/grub/config.cfg + +# Live boot +@LINUX_LIVE@ + +# You can add more entries like this +# menuentry "Alternate live boot" { +# linux @KERNEL_LIVE@ @APPEND_LIVE@ custom options here +# initrd @INITRD_LIVE@ +# } + +submenu 'Utilities...' --hotkey=u { + + source /boot/grub/theme.cfg + + # Memtest (if any) + if @ENABLE_MEMTEST@; then + source /boot/grub/memtest.cfg + fi + + # Firmware setup (UEFI) + if [ "${grub_platform}" = "efi" ]; then + menuentry "UEFI Firmware Settings" { + fwsetup + } + fi + +} diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/live-theme/theme.txt b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/live-theme/theme.txt new file mode 100644 index 0000000..a097711 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/live-theme/theme.txt @@ -0,0 +1,51 @@ +desktop-image: "../splash.png" +title-color: "#ffffff" +title-font: "Unifont Regular 16" +title-text: "Live Boot Menu with GRUB" +message-font: "Unifont Regular 16" +terminal-font: "Unifont Regular 16" + +#help bar at the bottom ++ label { + top = 100%-50 + left = 0 + width = 100% + height = 20 + text = "@KEYMAP_SHORT@" + align = "center" + color = "#ffffff" + font = "Unifont Regular 16" +} + +#boot menu ++ boot_menu { + left = 10% + width = 80% + top = 52% + height = 48%-80 + item_color = "#a8a8a8" + item_font = "Unifont Regular 16" + selected_item_color= "#ffffff" + selected_item_font = "Unifont Regular 16" + item_height = 16 + item_padding = 0 + item_spacing = 4 + icon_width = 0 + icon_heigh = 0 + item_icon_space = 0 +} + +#progress bar ++ progress_bar { + id = "__timeout__" + left = 15% + top = 100%-80 + height = 16 + width = 70% + font = "Unifont Regular 16" + text_color = "#000000" + fg_color = "#ffffff" + bg_color = "#a8a8a8" + border_color = "#ffffff" + text = "@TIMEOUT_NOTIFICATION_LONG@" +} diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/memtest.cfg b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/memtest.cfg new file mode 100644 index 0000000..48697a5 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/memtest.cfg @@ -0,0 +1,14 @@ +if [ "${grub_platform}" = "pc" ] -a [ -e @MEMTEST_DIR@/memtest ]; then + # Legacy 16-bit memtest + menuentry "Memory Diagnostic Tool (@MEMTEST_VERSION@)" --hotkey=m { + linux16 @MEMTEST_DIR@/memtest + } +elif [ "${grub_platform}" = "pc" ] -a [ -e @MEMTEST_DIR@/memtest.bin ]; then + menuentry "Memory Diagnostic Tool (@MEMTEST_VERSION@)" --hotkey=m { + linux @MEMTEST_DIR@/memtest.bin + } +elif [ "${grub_platform}" = "efi" ] -a [ -e @MEMTEST_DIR@/memtest.efi ]; then + menuentry "Memory Diagnostic Tool (@MEMTEST_VERSION@)" --hotkey=m { + linux @MEMTEST_DIR@/memtest.efi + } +fi diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/splash.png b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/splash.png new file mode 100644 index 0000000..9edb41c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/splash.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/theme.cfg b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/theme.cfg new file mode 100644 index 0000000..fb4d5ef --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/boot/grub/theme.cfg @@ -0,0 +1,13 @@ +set color_normal=light-gray/black +set color_highlight=white/dark-gray + +if [ -e /isolinux/splash.png ]; then + # binary_syslinux modifies the theme file to point to the correct + # background picture + set theme=/boot/grub/live-theme/theme.txt +elif [ -e /boot/grub/splash.png ]; then + set theme=/boot/grub/live-theme/theme.txt +else + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue +fi diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/isolinux.bin b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/isolinux.bin new file mode 120000 index 0000000..33a2ad6 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/isolinux.bin @@ -0,0 +1 @@ +/usr/lib/ISOLINUX/isolinux.bin \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/isolinux.cfg b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/isolinux.cfg new file mode 100644 index 0000000..a3e3eab --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/isolinux.cfg @@ -0,0 +1,4 @@ +include menu.cfg +default vesamenu.c32 +prompt 0 +timeout 0 diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/ldlinux.c32 b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/ldlinux.c32 new file mode 120000 index 0000000..df554c7 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/ldlinux.c32 @@ -0,0 +1 @@ +/usr/lib/syslinux/modules/bios/ldlinux.c32 \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/splash.png b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/splash.png new file mode 100644 index 0000000..9edb41c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/bootloaders/isolinux/splash.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/buildtools/debootstrap_1.0.152acoros3_all.deb b/eznixOS12X-calamares/eznixOS12X/buildtools/debootstrap_1.0.152acoros3_all.deb new file mode 100644 index 0000000..b9b944c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/buildtools/debootstrap_1.0.152acoros3_all.deb differ diff --git a/eznixOS12X-calamares/eznixOS12X/buildtools/live-build_20230502acoros1_all.deb b/eznixOS12X-calamares/eznixOS12X/buildtools/live-build_20230502acoros1_all.deb new file mode 100644 index 0000000..af83f21 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/buildtools/live-build_20230502acoros1_all.deb differ diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/branding.desc b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/branding.desc new file mode 100644 index 0000000..6a32bea --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/branding.desc @@ -0,0 +1,31 @@ +--- +componentName: eznixos +welcomeStyleCalamares: true + +strings: + productName: eznixOS + shortProductName: eznixOS + version: 12X + shortVersion: 12X + versionedName: eznixOS + shortVersionedName: eznixOS + bootloaderEntryName: eznixos + productUrl: https://sourceforge.net/projects/eznixos/ +# supportUrl: https://sourceforge.net/projects/eznixos/ +# knownIssuesUrl: https://sourceforge.net/projects/eznixos/ +# releaseNotesUrl: https://sourceforge.net/projects/eznixos/ +# donateUrl: https://sourceforge.net/projects/eznixos/ + +images: + productLogo: "eznixos-logo.png" + productIcon: "eznixos-logo.png" + productWallpaper: "wallpaper.png" + productWelcome: "slide_cs.png" + +slideshow: "show.qml" + +style: + sidebarBackground: "#292F34" + sidebarText: "#FFFFFF" + sidebarTextSelect: "#292F34" + sidebarTextHighlight: "#D35400" diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/eznixos-logo.png b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/eznixos-logo.png new file mode 100644 index 0000000..d13bcfa Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/eznixos-logo.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/show.qml b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/show.qml new file mode 100644 index 0000000..29759b3 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/show.qml @@ -0,0 +1,148 @@ +/* === This file is part of Calamares - === + * + * Copyright 2015, Teo Mrnjavac + * + * Calamares 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 3 of the License, or + * (at your option) any later version. + * + * Calamares 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 Calamares. If not, see . + * + * EznixOS custom settings + */ + +import QtQuick 2.0; +import calamares.slideshow 1.0; + +Presentation +{ + id: presentation + + Timer { + id: advanceTimer + interval: 30000 + running: true + repeat: true + onTriggered: presentation.goToNextSlide() + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + + Image { + id: background1 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Welcome to EznixOS, a Debian based Linux
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background2 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 163 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("EznixOS is 100% compatible with Debian Linux
") + + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background3 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Look inside the ~/EznixOS12X folder for documentation
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background4 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Thank you for trying EznixOS12
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Component.onCompleted: advanceTimer.running = true +} + diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/slide1.png b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/slide1.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/slide1.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/slide_cs.png b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/slide_cs.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/slide_cs.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/wallpaper.png b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/wallpaper.png new file mode 100644 index 0000000..d0a9bbc Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/wallpaper.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/welcome.png b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/calamares/branding/eznixos/welcome.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/bootloader.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/bootloader.conf new file mode 100644 index 0000000..2a76ecf --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/bootloader.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Bootloader configuration +# +--- +efiBootLoader: "grub" + +kernel: "/vmlinuz-linux" +img: "/initramfs-linux.img" +fallback: "/initramfs-linux-fallback.img" +timeout: "10" + +efiBootloaderId: "eznixos" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" + +installEFIFallback: true diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/displaymanager.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/displaymanager.conf new file mode 100644 index 0000000..859bdb0 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/displaymanager.conf @@ -0,0 +1,14 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure one or more display managers (e.g. sddm or Lightdm) +# +--- +displaymanagers: + - sddm + - lightdm + +basicSetup: false + +sysconfigSetup: false diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/finished.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/finished.conf new file mode 100644 index 0000000..3a38d85 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/finished.conf @@ -0,0 +1,10 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure finished screen options +# +--- +restartNowEnabled: true +restartNowChecked: false +restartNowCommand: "systemctl -i reboot" diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/fstab.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/fstab.conf new file mode 100644 index 0000000..da38055 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/fstab.conf @@ -0,0 +1,27 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure fstab options +# +--- +mountOptions: + default: defaults,noatime,nodiscard + btrfs: defaults,noatime,noautodefrag,nodiscard + btrfs_swap: defaults + swap: defaults + +crypttabOptions: luks,keyscript=/bin/cat + +efiMountOptions: umask=0077 + +ssdExtraMountOptions: + btrfs: ssd + +tmpOptions: + default: + tmpfs: false + options: "" + ssd: + tmpfs: true + options: "defaults,noatime,mode=1777" diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/luksopenswaphookcfg.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/luksopenswaphookcfg.conf new file mode 100644 index 0000000..f1f04ac --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/luksopenswaphookcfg.conf @@ -0,0 +1,8 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Writes an openswap configuration with LUKS settings to the given path +# +--- +configFilePath: /etc/openswap.conf diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/machineid.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/machineid.conf new file mode 100644 index 0000000..44c2e2a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/machineid.conf @@ -0,0 +1,18 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure machineid options +# +--- +systemd: true + +dbus: true + +symlink: true + +entropy-copy: true + +entropy-files: + - /var/lib/urandom/random-seed + - /var/lib/systemd/random-seed diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/mount.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/mount.conf new file mode 100644 index 0000000..a1c0617 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/mount.conf @@ -0,0 +1,38 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure mount options +# +--- +extraMounts: + - device: proc + fs: proc + mountPoint: /proc + - device: sys + fs: sysfs + mountPoint: /sys + - device: /dev + mountPoint: /dev + options: bind + - device: tmpfs + fs: tmpfs + mountPoint: /run + - device: /run/udev + mountPoint: /run/udev + options: bind + +extraMountsEfi: + - device: efivarfs + fs: efivarfs + mountPoint: /sys/firmware/efi/efivars + +btrfsSubvolumes: + - mountPoint: / + subvolume: /@ + - mountPoint: /home + subvolume: /@home + - mountPoint: /var/cache + subvolume: /@cache + - mountPoint: /var/log + subvolume: /@log diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/openrcdmcryptcfg.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/openrcdmcryptcfg.conf new file mode 100644 index 0000000..7058791 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/openrcdmcryptcfg.conf @@ -0,0 +1,8 @@ +# Ezarcher custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration file for opendmcryptcfg module +# +--- +configFilePath: /etc/conf.d/dmcrypt diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/packages.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/packages.conf new file mode 100644 index 0000000..6bdb1a7 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/packages.conf @@ -0,0 +1,19 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure packages options, remove live configuration +# +--- +backend: apt + +operations: + - remove: + - 'live-boot' + - 'live-boot-doc' + - 'live-config' + - 'live-config-doc' + - 'live-config-systemd' + - 'live-tools' + - 'calamares-settings-debian' + - 'calamares' diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/partition.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/partition.conf new file mode 100644 index 0000000..5b35218 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/partition.conf @@ -0,0 +1,34 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration for the partition options +# +--- +efiSystemPartition: "/boot/efi" + +efiSystemPartitionSize: 1024M + +efiSystemPartitionName: EFI + +userSwapChoices: + - none # Create no swap, use no swap + - small # Up to 4GB + - suspend # At least main memory size + - file # To swap file instead of partition + +swapPartitionName: SWAP + +drawNestedPartitions: false + +alwaysShowPartitionLabels: true + +allowManualPartitioning: true + +initialPartitioningChoice: none + +initialSwapChoice: none + +defaultFileSystemType: "ext4" + +availableFileSystemTypes: ["ext4","btrfs","xfs"] diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/services-systemd.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/services-systemd.conf new file mode 100644 index 0000000..88f961a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/services-systemd.conf @@ -0,0 +1,10 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Systemd services options +# +--- +timers: + - name: "fstrim" + mandatory: false diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/shellprocess.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/shellprocess.conf new file mode 100644 index 0000000..f99f347 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/shellprocess.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Shell process to remove calamares config files +# +--- +dontChroot: false +timeout: 999 +script: + - "-rm -r @@ROOT@@/etc/calamares/" diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/unpackfs.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/unpackfs.conf new file mode 100644 index 0000000..91f16d4 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/unpackfs.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure unpack squashfs filesystem +# +--- +unpack: + - source: "/run/live/medium/live/filesystem.squashfs" + sourcefs: "squashfs" + destination: "/" diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/users.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/users.conf new file mode 100644 index 0000000..a4c5202 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/users.conf @@ -0,0 +1,30 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure user and group options +# +--- +userGroup: users + +defaultGroups: + - cdrom + - floppy + - sudo + - audio + - dip + - video + - plugdev + - netdev + - lpadmin + - scanner + - bluetooth + +autologinGroup: autologin +doAutologin: false +sudoersGroup: sudo +setRootPassword: true +doReusePassword: true +allowWeakPasswords: true +allowWeakPasswordsDefault: true +userShell: /bin/bash diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/modules/welcome.conf b/eznixOS12X-calamares/eznixOS12X/calamares/modules/welcome.conf new file mode 100644 index 0000000..02cec71 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/modules/welcome.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure welcome options and set minimum specs +# +--- +showSupportUrl: false +showKnownIssuesUrl: false +showReleaseNotesUrl: false + +requirements: + requiredStorage: 10 + requiredRam: 1.0 + check: + - storage + - ram + - power + - root + required: + - storage + - ram + - root diff --git a/eznixOS12X-calamares/eznixOS12X/calamares/settings.conf b/eznixOS12X-calamares/eznixOS12X/calamares/settings.conf new file mode 100644 index 0000000..3edf88d --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/calamares/settings.conf @@ -0,0 +1,66 @@ +# Configuration file for Calamares +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure setup options and branding +# Syntax is YAML 1.2 +# +--- + +modules-search: [ local, /usr/lib/calamares/modules ] + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +quit-at-end: false + +sequence: + +- show: + - welcome + - locale + - keyboard + - partition + - users + - summary + +- exec: + - partition + - mount + - unpackfs + - sources-media + - machineid + - fstab + - locale + - keyboard + - localecfg + - users + - displaymanager + - networkcfg + - hwclock + - services-systemd + - bootloader-config + - grubcfg + - bootloader + - packages + - luksbootkeyfile + - plymouthcfg + - initramfscfg + - initramfs + - sources-media-unmount + - sources-final + - shellprocess + - umount + +- show: + - finished + +branding: eznixos + +prompt-install: false + +dont-chroot: false diff --git a/eznixOS12X-calamares/eznixOS12X/doc/bldeznix12X-howto.txt b/eznixOS12X-calamares/eznixOS12X/doc/bldeznix12X-howto.txt new file mode 100644 index 0000000..1e769cd --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/doc/bldeznix12X-howto.txt @@ -0,0 +1,120 @@ +Step by Step Live-Build - AMD64 Architecture Example + +----------------------------------- + +Suggested location for the build staging folder: + + /eznixOS12X -- build folder + +Suggested location for the collection of preparation files and packages: + + /eznix12X -- files location + + +The build procedure begins below. Copy and paste each command exactly unless you know what you are doing and are comfortable making changes. +ALL COMMANDS NEED TO BE RUN AS ROOT! + +---------------------------------- + +Step 1: Assign work, files, and build directory variables + +# Run command below to set the working directory: + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +---------------------------------- + +Step 2: Remove the icon cache cleaning hook, create the build staging folder, and cd into it + +# Run commands below to prepare for the build: + +rm /usr/share/live/build/hooks/normal/9000-remove-gnome-icon-cache.hook.chroot + +mkdir $BLDDIR +cd $BLDDIR + +---------------------------------- + +Step 3: Set up the live-build config + +# Run command below to configure live build: + +lb config --binary-images iso-hybrid --mode debian --architectures amd64 --linux-flavours amd64 --distribution bookworm --archive-areas "main contrib non-free non-free-firmware" --updates true --security true --cache true --apt-recommends true --firmware-binary true --firmware-chroot true --win32-loader false --iso-application $BLDDIR --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ --image-name "$BLDDIR-$(date -u +"%y%m%d")" --iso-volume "$BLDDIR-$(date -u +"%y%m%d")" --checksums sha512 --clean --color + +---------------------------------- + +Step 4: Pass the desktop and packages to the live-build config + +# Run command below to install the Xfce Desktop: + +echo "accountsservice arc-theme asunder atril breeze-gtk-theme breeze-icon-theme dconf-cli gnome-disk-utility gnome-keyring gnome-nettool gnome-system-tools greybird-gtk-theme gvfs-backends gvfs-fuse light-locker lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings mousepad network-manager-gnome network-manager-openconnect-gnome network-manager-openvpn-gnome numix-gtk-theme pavucontrol pulseaudio remmina tango-icon-theme xarchiver xfce4 xfce4-goodies xfce4-power-manager xfce4-terminal" > $WKDIR/$BLDDIR/config/package-lists/xfcedesktop.list.chroot + +echo "aisleriot alsa-utils apt-transport-https audacious audacious-plugins autoconf automake bleachbit btrfs-progs build-essential cdtool cdrdao cdrskin cifs-utils clonezilla cryptsetup cryptsetup-initramfs cups cups-filters curl dbus-user-session dbus-x11 debconf debhelper dh-autoreconf dialog dirmngr dkms dos2unix dosbox dosfstools dvdauthor exfatprogs faac faad fakeroot ffmpeg filezilla firefox-esr flac foomatic-db foomatic-db-engine frei0r-plugins fuse3 galculator gdebi geany ghostscript gimp gir1.2-ibus-1.0 gparted grsync grub-pc gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-plugins-good gthumb guvcview hardinfo haveged hplip-gui htop hunspell-en-us hyphen-en-us ibus ibus-data ibus-gtk ibus-gtk3 iftop im-config inxi isolinux iw jfsutils keepassxc lame less libegl1-mesa libibus-1.0-5 libgl1-mesa-glx libqt5opengl5 libreoffice-calc libreoffice-draw libreoffice-impress libreoffice-writer libreoffice-gtk3 libreoffice-help-en-us libnss-mdns libsmbclient libxcb-xtest0 libxvidcore4 linux-headers-amd64 live-build lsb-release lshw meld mencoder menu mjpegtools mpg321 mpv mtools mythes-en-us neofetch netcat-openbsd ntfs-3g nvidia-detect openconnect openvpn openvpn-systemd-resolved os-prober p7zip-full p7zip-rar papirus-icon-theme pciutils perl plymouth plymouth-label plymouth-themes policykit-1 printer-driver-gutenprint python3-ibus-1.0 rar samba-common-bin simple-scan simplescreenrecorder smplayer smplayer-l10n smplayer-themes soundconverter sox squashfs-tools streamripper sudo synaptic syslinux syslinux-common system-config-printer testdisk timeshift transmission-gtk twolame udisks2 upower unrar unzip webext-keepassxc-browser wget x265 x264 xclip xdg-utils xfsprogs xorg xserver-xorg-input-all xserver-xorg-video-all xorriso xscreensaver xterm zip zstd zulucrypt-gui zulumount-gui" > $WKDIR/$BLDDIR/config/package-lists/extrapackages.list.chroot + +echo "atmel-firmware bluez-firmware firmware-linux-free midisport-firmware firmware-misc-nonfree firmware-amd-graphics firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-cavium firmware-intel-sound firmware-iwlwifi firmware-libertas firmware-linux firmware-linux-nonfree firmware-misc-nonfree firmware-myricom firmware-netronome firmware-netxen firmware-qcom-media firmware-qcom-soc firmware-qlogic firmware-realtek firmware-samsung firmware-siano firmware-ti-connectivity firmware-sof-signed firmware-zd1211" > $WKDIR/$BLDDIR/config/package-lists/firmware.list.chroot + +echo "efibootmgr grub-common grub-pc-bin grub2-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub-efi-ia32-bin libefiboot1 libefivar1 mokutil os-prober shim-helpers-amd64-signed +shim-signed shim-signed-common shim-unsigned" > $WKDIR/$BLDDIR/config/package-lists/grubs.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo "b43-fwcutter firmware-b43-installer firmware-b43legacy-installer" > $WKDIR/$BLDDIR/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares Installer + +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/ +cp -r $WKDIR/$FLDIR/calamares/ $WKDIR/$BLDDIR/config/includes.chroot/etc/ +echo "calamares calamares-settings-debian" > $WKDIR/$BLDDIR/config/package-lists/calamares.list.chroot + +---------------------------------- + +Step 5: Make folders in the chroot + +# Run command below to create needed folders: + +mkdir -p $WKDIR/$BLDDIR/config/hooks/normal/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ + +----------------------------------- + +Step 6: Copy files into the chroot and live-build config + +# Run commands below to copy build files into the live system: + +cp -r $WKDIR/$FLDIR/bootloaders/ $WKDIR/$BLDDIR/config/ +cp -r $WKDIR/$FLDIR/ $WKDIR/$BLDDIR/config/includes.chroot/usr/share/ +cp -r $WKDIR/$FLDIR/xfce4/ $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +cp $WKDIR/$FLDIR/hooks/* $WKDIR/$BLDDIR/config/hooks/normal/ +cp $WKDIR/$FLDIR/scripts/* $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +cp $WKDIR/$FLDIR/icons/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ +cp $WKDIR/$FLDIR/backgrounds/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +cp $WKDIR/$FLDIR/launchers/ezadmin.desktop $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +ln -s /usr/share/$FLDIR $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/$FLDIR + +----------------------------------- + +# Run command below IF you wish to include deb packages from misc64 folder: + +# cp $WKDIR/$FLDIR/misc64/* $WKDIR/$BLDDIR/config/packages.chroot/ + +----------------------------------- + +Step 7: Start the build process + +# Run command below to start live build: + +lb build + +----------------------------------- + +Step 8: Wait for the build to complete. The ISO will be inside the build folder + +----------------------------------- + +# bldeznix12X-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares/eznixOS12X/doc/ezadmin-howto.txt b/eznixOS12X-calamares/eznixOS12X/doc/ezadmin-howto.txt new file mode 100644 index 0000000..3a6c1af --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/doc/ezadmin-howto.txt @@ -0,0 +1,123 @@ + EZADMIN HOWTO + +This is a custom built script to perform various tasks on eznixOS. You can run the ezadmin script as root to perform its functions. SU to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. + + + EZ Admin Menu: + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + + +Select a|A to add yourself to the sudo group, allowing the use of 'sudo' to gain administrative privileges. Logout and Login is required to take effect. + +Select b|B to optimize your repositories to Debian's DNS based redirection system for automatically picking closer mirrors. The Stretch Backports repositories are added as well. Use can use Synaptic or your favorite text editor to customize the repositories if you wish. + +Select c|C to rebuild the default icon cache files and lower memory usage. + +Select d|D to install and/or upgrade the latest Firefox Latest. + +Select e|E to install YT-DLP video downloader + +Select f|F to install the newest kernel from backports. + +Select g|G to upgrade to Debian Testing. + +Select x|X to exit the menu and return to the command prompt. Reboot your system after performing any of the steps and in-between multiple steps just to be safe. + + +------------------------------------------------------------------- + + Functions + +------------------------------------------------------------------- + +# Add first user to sudo group + + read -p "Type you user name, be exact and press Enter: " ANS + usermod -aG sudo $ANS + +------------------------------------------------------------------- + +# Optimize mirrors and add contrib and non-free to sources.list + + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznix12X/sources/sources.bookworm /etc/apt/sources.list + apt-get -y update + +------------------------------------------------------------------- + +# Rebuild Default Icon Cache Files + + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ + +------------------------------------------------------------------- + +# Install and/or upgrade the latest Firefox Latest + + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznix12X/launchers/Firefox-Latest.desktop /usr/share/applications/Firefox-Latest.desktop + rm -r /opt/FFDL + +------------------------------------------------------------------ + +# Install YT-DLP video downloader + + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp + +------------------------------------------------------------------ + +# Install the newest kernel from backports + + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 + +------------------------------------------------------------------ + +# Upgrade to Debian Testing + + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznix12X/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade + +------------------------------------------------------------------ + +# ezadmin-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares/eznixOS12X/doc/license.txt b/eznixOS12X-calamares/eznixOS12X/doc/license.txt new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/doc/license.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. 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 +them 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 prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. 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. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If 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 convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU 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 that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + 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 +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU 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 Lesser General +Public License instead of this License. But first, please read +. diff --git a/eznixOS12X-calamares/eznixOS12X/doc/prepare-howto.txt b/eznixOS12X-calamares/eznixOS12X/doc/prepare-howto.txt new file mode 100644 index 0000000..13da446 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/doc/prepare-howto.txt @@ -0,0 +1,59 @@ +Preparation for the bldeznix12X script + +-------------------------------------- + +Step 1 +Install the live-build tool and others: + +# apt-get install live-build squashfs-tools syslinux-common syslinux-utils xorriso isolinux + +-------------------------------------- + +Step 2 +Assign work, files, and build directory variables and make the build directory + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +mkdir=$BLDDIR + +-------------------------------------- + +Step 3 +Collect all background images, especially the current background, and copy them to a folder inside /$FLDIR. + +# cp -r backgrounds /$FLDIR/backgrounds + +-------------------------------------- + +Step 4 +Configure your desktop settings exactly the way you want to preserve them for the live system. +If using XFCE, all of these settings are stored in ~/.config/xfce4. Copy that folder inside /$FLDIR. + +# cp -r ~/.config/xfce4 ~/$FLDIR/ + +-------------------------------------- + +Step 5 +Copy any miscelaneous deb packages into the /$FLDIR/misc64 folder + +-------------------------------------- + +Step 6 +If you have any shell scripts, place them in the /$FLDIR/scripts folder. If you have any icons, place them in the /$FLDIR/icons folder. If you have any hooks, place them in the /$FLDIR/hooks folder. If you have any documentation, place the it in the /$FLDIR/doc folder. If you need other locations, add the folder inside the /$FLDIR folder and use the commands in the bldeznix script as a guide to adapting the script to your needs. + +-------------------------------------- + +Step 7 +The /bootloaders directory is found in /usr/share/live/build/ - copy the folder into your /$FLDIR/ directory. + +# cp -r /usr/share/live/build/bootloaders /$FLDIR/bootloaders + +Inside each of the subfolders within /bootloaders is a file named: splash.svg or splash.png. These are default images and can be replaced. Use whatever graphic program you like to create or edit an image for use as your boot splash. Any text you place on the image should be in the upper portion of the image - the lower half will display the boot menu. When you are satified with your image, save it as a 640x480 pixel PNG graphic file named splash.png. Copy the file into each of the subfolders of /bootloaders with the exception of the grub-legacy folder. Grub-legacy will probably never be used, but if you want to replace that image, save a copy of your splash image as a 640x480 pixel XPM graphic file and name it splash.xpm. You will need to gzip the splash.xpm file and replace the default file in the grub-legacy subfolder. + +-------------------------------------- + + +# prepare-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares/eznixOS12X/doc/readme.txt b/eznixOS12X-calamares/eznixOS12X/doc/readme.txt new file mode 100644 index 0000000..7a9a024 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/doc/readme.txt @@ -0,0 +1,40 @@ +Welcome to eznixOS + +The eznixOS is a respin of Debian GNU/Linux, currently based on the Debian 12 Bookworm release. The Debian live-build tool is used to build the ISO and I have included a folder located under /usr/share/eznix12X containing all the necessary build files and build script used to create the respin. I include all the files with the aim to help educate those willing to learn how to build your own live-build created Debian respins. + +This respin was built by my bldeznix12X script but can also be built identically by following the prepare-howto.txt and bldeznix12X-howto.txt files. The build process has been completely automated as long as you do not need to make any adjustments. The bldeznix12X will build a complete respin of Debian Bookworm with all of the eznixOS customizations. If you want to utilize the script to produce your own respin, you will need to edit various parts of the script. The script is documented and should be easy enough to rework into something personal for you. + +The ISO contains all the eznixOS build related files inside the /usr/share/eznix12X folder. Any changes to the files or the folder names must be represented in the bldeznix12X script. The script relies on certain folder names and files to operate correctly. Read the comments in the bldeznix12X script and the prepare-howto.txt and bldeznix12X-howto.txt files for guidance. The /eznix12X folder must reside in the same directory as the bldeznix12X script. Anything can be changed to suit your needs, but the changes must be identical in both the script and the folder structure around it. + +The ezadmin tool is a small script with a menu driven interface that performs a few basic functions. Please take a look at the ezadmin-howtow.txt on the Desktop of eznixOS. + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + +You can run the ezadmin script as root to perform its functions. Use "su -l" to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. Have fun. + + +# readme.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12X-calamares/eznixOS12X/grub/grub b/eznixOS12X-calamares/eznixOS12X/grub/grub new file mode 100644 index 0000000..dfc66a2 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/grub/grub @@ -0,0 +1,36 @@ +# If you change this file, run 'update-grub' afterwards to update +# /boot/grub/grub.cfg. +# For full documentation of the options in this file, see: +# info -f grub -n 'Simple configuration' + +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="exnizOS" +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" +GRUB_CMDLINE_LINUX="" + +# Uncomment to enable BadRAM filtering, modify to suit your needs +# This works with Linux (no patch required) and with any kernel that obtains +# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) +#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" + +# Uncomment this to run os-prober so search for and add other OS +# installations to the grub boot menu +GRUB_DISABLE_OS_PROBER=false + +# Uncomment to disable graphical terminal (grub-pc only) +#GRUB_TERMINAL=console + +# The resolution used on graphical terminal +# note that you can use only modes which your graphic card supports via VBE +# you can see them in real GRUB with the command `vbeinfo' +GRUB_GFXMODE=1440x400 + +# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux +#GRUB_DISABLE_LINUX_UUID=true + +# Uncomment to disable generation of recovery mode menu entries +#GRUB_DISABLE_RECOVERY="true" + +# Uncomment to get a beep at grub start +#GRUB_INIT_TUNE="480 440 1" diff --git a/eznixOS12X-calamares/eznixOS12X/hooks/9070-add-architecture-i386.hook.chroot b/eznixOS12X-calamares/eznixOS12X/hooks/9070-add-architecture-i386.hook.chroot new file mode 100755 index 0000000..a6bca08 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/hooks/9070-add-architecture-i386.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9070-add-architecture-i386.hook.chroot +# Description: Script to add i386 architecture +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + + +#add-architecture i386 +dpkg --add-architecture i386 diff --git a/eznixOS12X-calamares/eznixOS12X/hooks/9080-remove-not-need-packages.hook.chroot b/eznixOS12X-calamares/eznixOS12X/hooks/9080-remove-not-need-packages.hook.chroot new file mode 100755 index 0000000..2c87e03 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/hooks/9080-remove-not-need-packages.hook.chroot @@ -0,0 +1,5 @@ +#!/bin/bash + +# Remove software +apt --purge --yes autoremove systemsettings nvidia-tesla-470* + diff --git a/eznixOS12X-calamares/eznixOS12X/hooks/9090-enable-calamares-debug.hook.chroot b/eznixOS12X-calamares/eznixOS12X/hooks/9090-enable-calamares-debug.hook.chroot new file mode 100755 index 0000000..5b62e64 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/hooks/9090-enable-calamares-debug.hook.chroot @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +# Enable debug mode for Calamares + + sed -i -e 's|^ *pkexec calamares|pkexec calamares -d|' /usr/bin/install-debian diff --git a/eznixOS12X-calamares/eznixOS12X/hooks/9095-rename-installer-eznixos.hook.chroot b/eznixOS12X-calamares/eznixOS12X/hooks/9095-rename-installer-eznixos.hook.chroot new file mode 100755 index 0000000..2ec5802 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/hooks/9095-rename-installer-eznixos.hook.chroot @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +# Change installer icon name to EznixOS + + sed -i -e 's|Debian|EznixOS|g' /usr/share/applications/install-debian.desktop + sed -i -e 's|^ *Icon=install-debian|Icon=/usr/share/icons/default/lava-lamp.svg|' /usr/share/applications/install-debian.desktop diff --git a/eznixOS12X-calamares/eznixOS12X/hooks/9098-rebuild-icon-caches.hook.chroot b/eznixOS12X-calamares/eznixOS12X/hooks/9098-rebuild-icon-caches.hook.chroot new file mode 100755 index 0000000..c1ef601 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/hooks/9098-rebuild-icon-caches.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9098-rebuild-icon-caches.hook.chroot +# Description: Script to remove packages and other things +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Lowers the footprint in RAM at the small expense of added size to the ISO. +#update-icon-caches /usr/share/icons/* +find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \; diff --git a/eznixOS12X-calamares/eznixOS12X/hooks/9099-create-symlinks-hook.chroot b/eznixOS12X-calamares/eznixOS12X/hooks/9099-create-symlinks-hook.chroot new file mode 100755 index 0000000..aa8451a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/hooks/9099-create-symlinks-hook.chroot @@ -0,0 +1,4 @@ +#!/bin/bash + +# Creates symlinks inside th chroot. +ln -s -r /usr/share/eznixOS12X /etc/skel diff --git a/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp-2.png b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp-2.png new file mode 100644 index 0000000..0b494dc Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp-2.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp-svgrepo-com.svg b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp-svgrepo-com.svg new file mode 100644 index 0000000..0799a08 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp-svgrepo-com.svg @@ -0,0 +1,99 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp.png b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp.png new file mode 100644 index 0000000..64eb47c Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp.svg b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp.svg new file mode 100644 index 0000000..a46115c --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/icons/lava-lamp.svg @@ -0,0 +1,105 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/issue/issue b/eznixOS12X-calamares/eznixOS12X/issue/issue new file mode 100644 index 0000000..f6824ac --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/issue/issue @@ -0,0 +1,2 @@ +eznixOS12 \n \l + diff --git a/eznixOS12X-calamares/eznixOS12X/issue/issue.net b/eznixOS12X-calamares/eznixOS12X/issue/issue.net new file mode 100644 index 0000000..1ec8d3c --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/issue/issue.net @@ -0,0 +1 @@ +eznixOS12 diff --git a/eznixOS12X-calamares/eznixOS12X/launchers/Firefox-Latest.desktop b/eznixOS12X-calamares/eznixOS12X/launchers/Firefox-Latest.desktop new file mode 100755 index 0000000..b6ac618 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/launchers/Firefox-Latest.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Firefox Latest +Exec=/opt/moz/firefox/firefox %u +Terminal=false +X-MultipleArgs=false +Type=Application +Icon=firefox +Categories=Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;x-scheme-handler/http;x-scheme-handler/https; +StartupWMClass=Firefox +StartupNotify=true diff --git a/eznixOS12X-calamares/eznixOS12X/launchers/ezadmin.desktop b/eznixOS12X-calamares/eznixOS12X/launchers/ezadmin.desktop new file mode 100755 index 0000000..4a948bc --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/launchers/ezadmin.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=EZ Admin Tool +Comment=ezadmin tool +Categories=System; +Keywords=System; +Exec=pkexec /usr/local/bin/ezadmin +Icon=/usr/share/icons/default/lava-lamp.png +Path=/usr/local/bin +Terminal=true +StartupNotify=false diff --git a/eznixOS12X-calamares/eznixOS12X/lightdm/lightdm.conf b/eznixOS12X-calamares/eznixOS12X/lightdm/lightdm.conf new file mode 100644 index 0000000..0c037c0 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/lightdm/lightdm.conf @@ -0,0 +1,169 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +#run-directory=/var/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote, unity) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-backend = X backend to use (mir) +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option) +# unity-compositor-timeout = Number of seconds to wait for compositor to start +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-backend= +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +#unity-compositor-command=unity-system-compositor +#unity-compositor-timeout=60 +#greeter-session=example-gtk-gnome +greeter-hide-users=false +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +#session-wrapper=lightdm-session +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script= +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/eznixOS12X-calamares/eznixOS12X/live-user/10-user-setup.conf b/eznixOS12X-calamares/eznixOS12X/live-user/10-user-setup.conf new file mode 100644 index 0000000..89e58ad --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/live-user/10-user-setup.conf @@ -0,0 +1,2 @@ +LIVE_USERNAME=eznix +LIVE_USER_FULLNAME="exnixOS" diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual.en.html new file mode 100644 index 0000000..6ec7c9a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual.en.html @@ -0,0 +1,8792 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + +
+ + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +
+ +

+ Live Systems Manual +

+ +
+ +

+ About +

+ +
+ +

+ About this manual +

+ +

+ 1. About this manual +

+ +
+ 1.1 For the impatient +
+ +
+ 1.2 Terms +
+ +
+ 1.3 Authors +
+ +
+ 1.4 Contributing to this document +
+ +
+ 1.4.1 Applying changes +
+ +
+ 1.4.2 Translation +
+ +
+ +

+ About the Live Systems Project +

+ +

+ 2. About the Live Systems Project +

+ +
+ 2.1 Motivation +
+ +
+ 2.1.1 What is wrong with current live systems +
+ +
+ 2.1.2 Why create our own live system? +
+ +
+ 2.2 Philosophy +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+ +
+ 2.2.2 No package configuration of the live system +
+ +
+ 2.3 Contact +
+ +
+ +

+ User +

+ +
+ +

+ Installation +

+ +

+ 3. Installation +

+ +
+ 3.1 Requirements +
+ +
+ 3.2 Installing live-build +
+ +
+ 3.2.1 From the Debian repository +
+ +
+ 3.2.2 From source +
+ +
+ 3.2.3 From 'snapshots' +
+ +
+ 3.3 Installing live-boot and live-config +
+ +
+ 3.3.1 From the Debian repository +
+ +
+ 3.3.2 From source +
+ +
+ 3.3.3 From 'snapshots' +
+ +
+ +

+ The basics +

+ +

+ 4. The basics +

+ +
+ 4.1 What is a live system? +
+ +
+ 4.2 Downloading prebuilt images +
+ +
+ 4.3 Using the web live image builder +
+ +
+ 4.3.1 Web builder usage and caveats +
+ +
+ 4.4 First steps: building an ISO hybrid image +
+ +
+ 4.5 Using an ISO hybrid live image +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+ +
+ 4.5.3 Using the space left on a USB stick +
+ +
+ 4.5.4 Booting the live medium +
+ +
+ 4.6 Using a virtual machine for testing +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+ +
+ 4.7 Building and using an HDD image +
+ +
+ 4.8 Building a netboot image +
+ +
+ 4.8.1 DHCP server +
+ +
+ 4.8.2 TFTP server +
+ +
+ 4.8.3 NFS server +
+ +
+ 4.8.4 Netboot testing HowTo +
+ +
+ 4.8.5 Qemu +
+ +
+ 4.9 Webbooting +
+ +
+ 4.9.1 Getting the webboot files +
+ +
+ 4.9.2 Booting webboot images +
+ +
+ +

+ Overview of tools +

+ +

+ 5. Overview of tools +

+ +
+ 5.1 The live-build package +
+ +
+ 5.1.1 The lb config command +
+ +
+ 5.1.2 The lb build command +
+ +
+ 5.1.3 The lb clean command +
+ +
+ 5.2 The live-boot package +
+ +
+ 5.3 The live-config package +
+ +
+ +

+ Managing a configuration +

+ +

+ 6. Managing a configuration +

+ +
+ 6.1 Dealing with configuration changes +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+ +
+ 6.1.2 Use example auto scripts +
+ +
+ 6.2 Clone a configuration published via Git +
+ +
+ +

+ Customizing contents +

+ +

+ 7. Customization overview +

+ +
+ 7.1 Build time vs. boot time configuration +
+ +
+ 7.2 Stages of the build +
+ +
+ 7.3 Supplement lb config with files +
+ +
+ 7.4 Customization tasks +
+ +
+ +

+ Customizing package installation +

+ +

+ 8. Customizing package installation +

+ +
+ 8.1 Package sources +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+ +
+ 8.1.2 Distribution mirrors +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+ +
+ 8.1.5 Additional repositories +
+ +
+ 8.2 Choosing packages to install +
+ +
+ 8.2.1 Package lists +
+ +
+ 8.2.2 Using metapackages +
+ +
+ 8.2.3 Local package lists +
+ +
+ 8.2.4 Local binary package lists +
+ +
+ 8.2.5 Generated package lists +
+ +
+ 8.2.6 Using conditionals inside package lists +
+ +
+ 8.2.7 Removing packages at install time +
+ +
+ 8.2.8 Desktop and language tasks +
+ +
+ 8.2.9 Kernel flavour and version +
+ +
+ 8.2.10 Custom kernels +
+ +
+ 8.3 Installing modified or third-party packages +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+ +
+ 8.3.3 Custom packages and APT +
+ +
+ 8.4 Configuring APT at build time +
+ +
+ 8.4.1 Choosing apt or aptitude +
+ +
+ 8.4.2 Using a proxy with APT +
+ +
+ 8.4.3 Tweaking APT to save space +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+ +
+ 8.4.5 APT pinning +
+ +
+ +

+ Customizing contents +

+ +

+ 9. Customizing contents +

+ +
+ 9.1 Includes +
+ +
+ 9.1.1 Live/chroot local includes +
+ +
+ 9.1.2 Binary local includes +
+ +
+ 9.2 Hooks +
+ +
+ 9.2.1 Chroot local hooks +
+ +
+ 9.2.2 Binary local hooks +
+ +
+ 9.2.3 Boot-time hooks +
+ +
+ 9.3 Preseeding Debconf questions +
+ +
+ +

+ Customizing run time behaviours +

+ +

+ 10. Customizing run time behaviours +

+ +
+ 10.1 Customizing the live user +
+ +
+ 10.2 Customizing locale and language +
+ +
+ 10.3 Persistence +
+ +
+ 10.3.1 The persistence.conf file +
+ +
+ 10.3.2 Using more than one persistence store +
+ +
+ 10.3.3 Using persistence with encryption +
+ +
+ +

+ Customizing the binary image +

+ +

+ 11. Customizing the binary image +

+ +
+ 11.1 Bootloaders +
+ +
+ 11.2 ISO metadata +
+ +
+ +

+ Customizing Debian Installer +

+ +

+ 12. Customizing Debian Installer +

+ +
+ 12.1 Types of Debian Installer +
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+ +
+ 12.3 Customizing Debian Installer content +
+ +
+ +

+ Project +

+ +
+ +

+ Contributing to the project +

+ +

+ 13. Contributing to the project +

+ +
+ 13.1 Making changes +
+ +
+ 13.2 Translation of man pages +
+ +
+ +

+ Reporting bugs +

+ +

+ 14. Reporting bugs +

+ +
+ 14.1 Known issues +
+ +
+ 14.2 Rebuild from scratch +
+ +
+ 14.3 Use up-to-date packages +
+ +
+ 14.4 Collect information +
+ +
+ 14.5 Isolate the failing case if possible +
+ +
+ 14.6 Use the correct package to report the bug against +
+ +
+ 14.6.1 At build time while bootstrapping +
+ +
+ 14.6.2 At build time while installing packages +
+ +
+ 14.6.3 At boot time +
+ +
+ 14.6.4 At run time +
+ +
+ 14.7 Do the research +
+ +
+ 14.8 Where to report bugs +
+ +
+ +

+ Coding Style +

+ +

+ 15. Coding Style +

+ +
+ 15.1 Compatibility +
+ +
+ 15.2 Indenting +
+ +
+ 15.3 Wrapping +
+ +
+ 15.4 Variables +
+ +
+ 15.5 Miscellaneous +
+ +
+ +

+ Procedures +

+ +

+ 16. Procedures +

+ +
+ 16.1 Major Releases +
+ +
+ 16.2 Point Releases +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+ +
+ 16.2.2 Point release announcement template +
+ +
+ +

+ Git repositories +

+ +

+ 17. Git repositories +

+ +
+ 17.1 Handling multiple repositories +
+ +
+ +

+ Examples +

+ +
+ +

+ Examples +

+ +

+ 18. Examples +

+ +
+ 18.1 Using the examples +
+ +
+ 18.2 Tutorial 1: A default image +
+ +
+ 18.3 Tutorial 2: A web browser utility +
+ +
+ 18.4 Tutorial 3: A personalized image +
+ +
+ 18.4.1 First revision +
+ +
+ 18.4.2 Second revision +
+ +
+ 18.5 A VNC Kiosk Client +
+ +
+ 18.6 A base image for a 128MB USB key +
+ +
+ 18.7 A localized GNOME desktop and installer +
+ +
+ +

+ Appendix +

+ +
+ +

+ Style guide +

+ +

+ 19. Style guide +

+ +
+ 19.1 Guidelines for authors +
+ +
+ 19.1.1 Linguistic features +
+ +
+ 19.1.2 Procedures +
+ +
+ 19.2 Guidelines for translators +
+ +
+ 19.2.1 Translation hints +
+ +
+ +
+ +


+
+ +

+ Live Systems Manual +

+
+ +


+
+ +

+ About +

+
+ +


+
+ +

+ About this manual +

+
+ +


+
+ +

+ 1. About this manual +

+
+ +
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +


+
+ +
+ 1.1 For the impatient +
+
+ +
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +


+
+ +
+ 1.2 Terms +
+
+ +
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +


+
+ +
+ 1.3 Authors +
+
+ +
+ +

+ A list of authors (in alphabetical order): +

+
+ +
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +


+
+ +
+ 1.4 Contributing to this document +
+
+ +
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +
+ +
+ 1.4.1 Applying changes +
+
+ +
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +
+ +

+ $ make build
+

+
+ +
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +
+ +

+ $ make build PROOF=1
+

+
+ +
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de
+

+
+ +
+ +

+ It is also possible to build by document type, e.g: +

+
+ +
+ +

+ $ make build FORMATS=pdf
+

+
+ +
+ +

+ Or combine both, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +
+ +
+ 1.4.2 Translation +
+
+ +
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+
+ +


+
+ +

+ About the Live Systems Project +

+
+ +


+
+ +

+ 2. About the Live Systems Project +

+
+ +


+
+ +
+ 2.1 Motivation +
+
+ +
+ +
+ 2.1.1 What is wrong with current live systems +
+
+ +
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +
+ +
+ 2.1.2 Why create our own live system? +
+
+ +
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +


+
+ +
+ 2.2 Philosophy +
+
+ +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+
+ +
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +
+ +
+ 2.2.2 No package configuration of the live system +
+
+ +
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +


+
+ +
+ 2.3 Contact +
+
+ +
+ + +
+ +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+
+ +


+
+ +

+ User +

+
+ +


+
+ +

+ Installation +

+
+ +


+
+ +

+ 3. Installation +

+
+ +


+
+ +
+ 3.1 Requirements +
+
+ +
+ +

+ Building live system images has very few system requirements: +

+
+ +
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
+ +
    +
  • + debootstrap +
  • +
+
+ +
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +


+
+ +
+ 3.2 Installing live-build +
+
+ +
+ +

+ You can install live-build in a number of different ways: +

+
+ +
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
+ +
    +
  • + From source +
  • +
+
+ +
+ +
    +
  • + From snapshots +
  • +
+
+ +
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +
+ +
+ 3.2.1 From the Debian repository +
+
+ +
+ +

+ Simply install live-build like any other package: +

+
+ +
+ +

+ # apt-get install live-build
+

+
+ +
+ +
+ 3.2.2 From source +
+
+ +
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +
+ +

+ You can build and install your own Debian package by executing: +

+
+ +
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +
+ +

+ # make install
+

+
+ +
+ +

+ and uninstall it with: +

+
+ +
+ +

+ # make uninstall
+

+
+ +
+ +
+ 3.2.3 From 'snapshots' +
+
+ +
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +


+
+ +
+ 3.3 Installing live-boot and live-config +
+
+ +
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +
+ +
+ 3.3.1 From the Debian repository +
+
+ +
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +
+ +
+ 3.3.2 From source +
+
+ +
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +
+ +
+ 3.3.3 From 'snapshots' +
+
+ +
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+
+ +


+
+ +

+ The basics +

+
+ +


+
+ +

+ 4. The basics +

+
+ +
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +


+
+ +
+ 4.1 What is a live system? +
+
+ +
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +


+
+ +
+ 4.2 Downloading prebuilt images +
+
+ +
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +


+
+ +
+ 4.3 Using the web live image builder +
+
+ +
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +
+ +
+ 4.3.1 Web builder usage and caveats +
+
+ +
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +


+
+ +
+ 4.4 First steps: building an ISO hybrid image +
+
+ +
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +


+
+ +
+ 4.5 Using an ISO hybrid live image +
+
+ +
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+
+ +
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+
+ +
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +
+ +
+ 4.5.3 Using the space left on a USB stick +
+
+ +
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +
+ +

+ # gparted ${USBSTICK}
+

+
+ +
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +
+ +
+ 4.5.4 Booting the live medium +
+
+ +
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +


+
+ +
+ 4.6 Using a virtual machine for testing +
+
+ +
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+
+ +
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +
+ +

+ Booting an ISO image is simple: +

+
+ +
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +
+ +

+ See the man pages for more details. +

+
+ +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+
+ +
+ +

+ In order to test the ISO with virtualbox: +

+
+ +
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +


+
+ +
+ 4.7 Building and using an HDD image +
+
+ +
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +
+ +

+ # lb clean --binary
+

+
+ +
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +
+ +

+ $ lb config -b hdd
+

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +


+
+ +
+ 4.8 Building a netboot image +
+
+ +
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +
+ +
+ 4.8.1 DHCP server +
+
+ +
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +
+ +
+ 4.8.2 TFTP server +
+
+ +
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +
+ +
+ 4.8.3 NFS server +
+
+ +
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +
+ +

+ # exportfs -rv
+

+
+ +
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +
+ +
+ 4.8.4 Netboot testing HowTo +
+
+ +
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +
+ +

+ To make our life easier, we can use virtualization. +

+
+ +
+ +
+ 4.8.5 Qemu +
+
+ +
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +
+ +

+ Edit /etc/qemu-ifup: +

+
+ +
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +


+
+ +
+ 4.9 Webbooting +
+
+ +
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +
+ +
+ 4.9.1 Getting the webboot files +
+
+ +
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +
+ +
+ 4.9.2 Booting webboot images +
+
+ +
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+
+ +


+
+ +

+ Overview of tools +

+
+ +


+
+ +

+ 5. Overview of tools +

+
+ +
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +


+
+ +
+ 5.1 The live-build package +
+
+ +
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +
+ +
+ 5.1.1 The lb config command +
+
+ +
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +
+ +

+ $ lb config --apt aptitude
+

+
+ +
+ +

+ It is possible to specify many options, such as: +

+
+ +
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +
+ +
+ 5.1.2 The lb build command +
+
+ +
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +
+ +
+ 5.1.3 The lb clean command +
+
+ +
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +


+
+ +
+ 5.2 The live-boot package +
+
+ +
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +


+
+ +
+ 5.3 The live-config package +
+
+ +
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+
+ +


+
+ +

+ Managing a configuration +

+
+ +


+
+ +

+ 6. Managing a configuration +

+
+ +
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +


+
+ +
+ 6.1 Dealing with configuration changes +
+
+ +
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+
+ +
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +
+ +
+ 6.1.2 Use example auto scripts +
+
+ +
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +


+
+ +
+ 6.2 Clone a configuration published via Git +
+
+ +
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +
+ +

+ $ lb config --config lso:live-images
+

+
+ +
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 7. Customization overview +

+
+ +
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +


+
+ +
+ 7.1 Build time vs. boot time configuration +
+
+ +
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +


+
+ +
+ 7.2 Stages of the build +
+
+ +
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +


+
+ +
+ 7.3 Supplement lb config with files +
+
+ +
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +


+
+ +
+ 7.4 Customization tasks +
+
+ +
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+
+ +


+
+ +

+ Customizing package installation +

+
+ +


+
+ +

+ 8. Customizing package installation +

+
+ +
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +


+
+ +
+ 8.1 Package sources +
+
+ +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+
+ +
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +
+ +

+ $ lb config --distribution sid
+

+
+ +
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +
+ +
+ 8.1.2 Distribution mirrors +
+
+ +
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+
+ +
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+
+ +
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +
+ +
+ 8.1.5 Additional repositories +
+
+ +
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +


+
+ +
+ 8.2 Choosing packages to install +
+
+ +
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +
+ +
+ 8.2.1 Package lists +
+
+ +
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +
+ +
+ 8.2.2 Using metapackages +
+
+ +
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +
+ +

+ $ debtags search role::metapackage
+

+
+ +
+ +
+ 8.2.3 Local package lists +
+
+ +
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +
+ +
+ 8.2.4 Local binary package lists +
+
+ +
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +
+ +
+ 8.2.5 Generated package lists +
+
+ +
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +
+ +
+ 8.2.6 Using conditionals inside package lists +
+
+ +
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +
+ +

+ The nesting of conditionals is not supported. +

+
+ +
+ +
+ 8.2.7 Removing packages at install time +
+
+ +
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +
+ +
+ 8.2.8 Desktop and language tasks +
+
+ +
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +
+ +
+ 8.2.9 Kernel flavour and version +
+
+ +
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +
+ +
+ 8.2.10 Custom kernels +
+
+ +
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +


+
+ +
+ 8.3 Installing modified or third-party packages +
+
+ +
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
+ +
    +
  • + packages.chroot +
  • +
+
+ +
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+
+ +
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+
+ +
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +
+ +
+ 8.3.3 Custom packages and APT +
+
+ +
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +


+
+ +
+ 8.4 Configuring APT at build time +
+
+ +
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +
+ +
+ 8.4.1 Choosing apt or aptitude +
+
+ +
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +
+ +
+ 8.4.2 Using a proxy with APT +
+
+ +
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +
+ +
+ 8.4.3 Tweaking APT to save space +
+
+ +
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +
+ +

+ $ lb config --apt-indices false
+

+
+ +
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +
+ +

+ $ lb config --apt-recommends false
+

+
+ +
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+
+ +
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +
+ +
+ 8.4.5 APT pinning +
+
+ +
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 9. Customizing contents +

+
+ +
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +


+
+ +
+ 9.1 Includes +
+
+ +
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +
+ +
+ 9.1.1 Live/chroot local includes +
+
+ +
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +
+ +

+ Your configuration will then have the following layout: +

+
+ +
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +
+ +
+ 9.1.2 Binary local includes +
+
+ +
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +


+
+ +
+ 9.2 Hooks +
+
+ +
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +
+ +
+ 9.2.1 Chroot local hooks +
+
+ +
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.2 Binary local hooks +
+
+ +
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.3 Boot-time hooks +
+
+ +
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +


+
+ +
+ 9.3 Preseeding Debconf questions +
+
+ +
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+
+ +


+
+ +

+ Customizing run time behaviours +

+
+ +


+
+ +

+ 10. Customizing run time behaviours +

+
+ +
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +


+
+ +
+ 10.1 Customizing the live user +
+
+ +
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +


+
+ +
+ 10.2 Customizing locale and language +
+
+ +
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
+ +
    +
  • + the locale generation +
  • +
+
+ +
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +


+
+ +
+ 10.3 Persistence +
+
+ +
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ + + +
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +
+ +
+ 10.3.1 The persistence.conf file +
+
+ +
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +
+ +
+ 10.3.2 Using more than one persistence store +
+
+ +
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +
+ +
+ 10.3.3 Using persistence with encryption +
+
+ +
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +
+ +

+ To install cryptsetup on your machine: +

+
+ +
+ +

+ # apt-get install cryptsetup
+

+
+ +
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +
+ +

+ Then unmount the mount point: +

+
+ +
+ +

+ # umount /mnt
+

+
+ +
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +
+ +

+ # cryptsetup luksClose live
+

+
+ +
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+
+ +


+
+ +

+ Customizing the binary image +

+
+ +


+
+ +

+ 11. Customizing the binary image +

+
+ +


+
+ +
+ 11.1 Bootloaders +
+
+ +
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +


+
+ +
+ 11.2 ISO metadata +
+
+ +
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+
+ +


+
+ +

+ Customizing Debian Installer +

+
+ +


+
+ +

+ 12. Customizing Debian Installer +

+
+ +
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +


+
+ +
+ 12.1 Types of Debian Installer +
+
+ +
+ +

+ The three main types of installer are: +

+
+ +
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +


+
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+
+ +
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +


+
+ +
+ 12.3 Customizing Debian Installer content +
+
+ +
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+
+ +


+
+ +

+ Project +

+
+ +


+
+ +

+ Contributing to the project +

+
+ +


+
+ +

+ 13. Contributing to the project +

+
+ +
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
+ +
    +
  • + Merge commits. +
  • +
+
+ +
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +


+
+ +
+ 13.1 Making changes +
+
+ +
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +
+ +

+ $ git push
+

+
+ +


+
+ +
+ 13.2 Translation of man pages +
+
+ +
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+
+ +


+
+ +

+ Reporting bugs +

+
+ +


+
+ +

+ 14. Reporting bugs +

+
+ +
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +
+ +

+ For the impatient: +

+
+ +
+ + +
+ +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +


+
+ +
+ 14.1 Known issues +
+
+ +
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +


+
+ +
+ 14.2 Rebuild from scratch +
+
+ +
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +


+
+ +
+ 14.3 Use up-to-date packages +
+
+ +
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +


+
+ +
+ 14.4 Collect information +
+
+ +
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +


+
+ +
+ 14.5 Isolate the failing case if possible +
+
+ +
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +


+
+ +
+ 14.6 Use the correct package to report the bug against +
+
+ +
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +
+ +
+ 14.6.1 At build time while bootstrapping +
+
+ +
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +
+ +
+ 14.6.2 At build time while installing packages +
+
+ +
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +
+ +
+ 14.6.3 At boot time +
+
+ +
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +
+ +
+ 14.6.4 At run time +
+
+ +
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +


+
+ +
+ 14.7 Do the research +
+
+ +
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +


+
+ +
+ 14.8 Where to report bugs +
+
+ +
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+
+ +


+
+ +

+ Coding Style +

+
+ +


+
+ +

+ 15. Coding Style +

+
+ +
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +


+
+ +
+ 15.1 Compatibility +
+
+ +
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +


+
+ +
+ 15.2 Indenting +
+
+ +
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +


+
+ +
+ 15.3 Wrapping +
+
+ +
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if foo; then
+         bar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ Foo () {
+         bar
+}
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +


+
+ +
+ 15.4 Variables +
+
+ +
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ FOO=bar
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ FOO="bar"
+

+
+ +
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +


+
+ +
+ 15.5 Miscellaneous +
+
+ +
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+
+ +


+
+ +

+ Procedures +

+
+ +


+
+ +

+ 16. Procedures +

+
+ +
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +


+
+ +
+ 16.1 Major Releases +
+
+ +
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +


+
+ +
+ 16.2 Point Releases +
+
+ +
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+
+ +
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +
+ +
+ 16.2.2 Point release announcement template +
+
+ +
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+
+ +


+
+ +

+ Git repositories +

+
+ +


+
+ +

+ 17. Git repositories +

+
+ +
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +
+ +

+ $ git checkout debian-next
+

+
+ +
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +


+
+ +
+ 17.1 Handling multiple repositories +
+
+ +
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ 18. Examples +

+
+ +
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +


+
+ +
+ 18.1 Using the examples +
+
+ +
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +


+
+ +
+ 18.2 Tutorial 1: A default image +
+
+ +
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +
+ +

+ You can't get much simpler than this: +

+
+ +
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +


+
+ +
+ 18.3 Tutorial 2: A web browser utility +
+
+ +
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +


+
+ +
+ 18.4 Tutorial 3: A personalized image +
+
+ +
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +
+ +
+ 18.4.1 First revision +
+
+ +
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +
+ +

+ Edit auto/config to read as follows: +

+
+ +
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ Now populate your local package list: +

+
+ +
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +
+ +

+ Now, build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +
+ +
+ 18.4.2 Second revision +
+
+ +
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Build again: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +


+
+ +
+ 18.5 A VNC Kiosk Client +
+
+ +
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +
+ +

+ Build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Enjoy. +

+
+ +


+
+ +
+ 18.6 A base image for a 128MB USB key +
+
+ +
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ Now, build the image in the usual way: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +


+
+ +
+ 18.7 A localized GNOME desktop and installer +
+
+ +
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+
+ +


+
+ +

+ Appendix +

+
+ +


+
+ +

+ Style guide +

+
+ +


+
+ +

+ 19. Style guide +

+
+ +


+
+ +
+ 19.1 Guidelines for authors +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +
+ +
+ 19.1.1 Linguistic features +
+
+ +
+ +
    +
  • + Use plain English +
  • +
+
+ +
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
+ +
    +
  • + Variety of English +
  • +
+
+ +
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
+ +
    +
  • + Be balanced +
  • +
+
+ +
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
+ +
    +
  • + Be politically correct +
  • +
+
+ +
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
+ +
    +
  • + Be concise +
  • +
+
+ +
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
+ +
    +
  • + Minimize translation work +
  • +
+
+ +
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
+ +
    +
  • + Be coherent +
  • +
+
+ +
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
+ +
    +
  • + Be cohesive +
  • +
+
+ +
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
+ +
    +
  • + Be descriptive +
  • +
+
+ +
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
+ +
    +
  • + Dictionary +
  • +
+
+ +
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +
+ +
+ 19.1.2 Procedures +
+
+ +
+ +
    +
  • + Test before write +
  • +
+
+ +
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
+ +
    +
  • + Examples +
  • +
+
+ +
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
+ +
    +
  • + External links +
  • +
+
+ +
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
+ +
    +
  • + Chapters +
  • +
+
+ +
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +
+ +

+ $ sisu --help markup
+

+
+ +
+ +

+ Here are some markup examples that may prove useful: +

+
+ +
+ +

+ - For emphasis/bold text: +

+
+ +
+ +

+ *{foo}* or !{foo}!
+

+
+ +
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +
+ +

+ - For italics: +

+
+ +
+ +

+ /{foo}/
+

+
+ +
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +
+ +

+ - For monospace: +

+
+ +
+ +

+ #{foo}#
+

+
+ +
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +
+ +

+ - For code blocks: +

+
+ +
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +
+ +

+ produces: +

+
+ +
+ +

+ $ foo
+# bar
+

+
+ +
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +


+
+ +
+ 19.2 Guidelines for translators +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +
+ +
+ 19.2.1 Translation hints +
+
+ +
+ +
    +
  • + Comments +
  • +
+
+ +
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
+ +
    +
  • + False friends +
  • +
+
+ +
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
+ +
    +
  • + Code blocks +
  • +
+
+ +
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
+ +
    +
  • + Newlines +
  • +
+
+ +
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +
+ +

+ Translators should never translate: +

+
+ +
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +
+ +

+ - The names of programs +

+
+ +
+ +

+ - The commands given as examples +

+
+ +
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +
+ +

+ - Links +

+
+ +
+ +

+ - Paths +

+
+ +
+ +
+ + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +

+ + + + diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/about-manual.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/about-manual.en.html new file mode 100644 index 0000000..dbf850a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/about-manual.en.html @@ -0,0 +1,522 @@ + + + + + + about-manual - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About this manual +

+
+ +

+ 1. About this manual +

+
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +

+ 1.1 For the impatient +

+
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +

+ 1.2 Terms +

+
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +

+ 1.3 Authors +

+
+ +

+ A list of authors (in alphabetical order): +

+
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +

+ 1.4 Contributing to this document +

+
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +

+ 1.4.1 Applying changes +

+
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +

+ $ make build
+

+
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +

+ $ make build PROOF=1
+

+
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +

+ $ make build LANGUAGES=de
+

+
+ +

+ It is also possible to build by document type, e.g: +

+
+ +

+ $ make build FORMATS=pdf
+

+
+ +

+ Or combine both, e.g: +

+
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +

+ 1.4.2 Translation +

+
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/about-project.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/about-project.en.html new file mode 100644 index 0000000..2c02972 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/about-project.en.html @@ -0,0 +1,314 @@ + + + + + + about-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About the Live Systems Project +

+
+ +

+ 2. About the Live Systems Project +

+
+ +

+ 2.1 Motivation +

+
+ +

+ 2.1.1 What is wrong with current live systems +

+
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +

+ 2.1.2 Why create our own live system? +

+
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +

+ 2.2 Philosophy +

+
+ +

+ 2.2.1 Only unchanged packages from Debian "main" +

+
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +

+ 2.2.2 No package configuration of the live system +

+
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +

+ 2.3 Contact +

+
+ + +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/bugs.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/bugs.en.html new file mode 100644 index 0000000..ac139e0 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/bugs.en.html @@ -0,0 +1,419 @@ + + + + + + bugs - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Reporting bugs +

+
+ +

+ 14. Reporting bugs +

+
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +

+ For the impatient: +

+
+ + +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +

+ 14.1 Known issues +

+
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +

+ 14.2 Rebuild from scratch +

+
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +

+ 14.3 Use up-to-date packages +

+
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +

+ 14.4 Collect information +

+
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +

+ 14.5 Isolate the failing case if possible +

+
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +

+ 14.6 Use the correct package to report the bug against +

+
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +

+ 14.6.1 At build time while bootstrapping +

+
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +

+ 14.6.2 At build time while installing packages +

+
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +

+ 14.6.3 At boot time +

+
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +

+ 14.6.4 At run time +

+
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +

+ 14.7 Do the research +

+
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +

+ 14.8 Where to report bugs +

+
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/coding-style.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/coding-style.en.html new file mode 100644 index 0000000..f603650 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/coding-style.en.html @@ -0,0 +1,400 @@ + + + + + + coding-style - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Coding Style +

+
+ +

+ 15. Coding Style +

+
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +

+ 15.1 Compatibility +

+
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +

+ 15.2 Indenting +

+
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +

+ 15.3 Wrapping +

+
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if foo; then
+         bar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +

+ Bad: +

+
+ +

+ Foo () {
+         bar
+}
+

+
+ +

+ Good: +

+
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +

+ 15.4 Variables +

+
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +

+ Bad: +

+
+ +

+ FOO=bar
+

+
+ +

+ Good: +

+
+ +

+ FOO="bar"
+

+
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +

+ 15.5 Miscellaneous +

+
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/contributing-to-project.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/contributing-to-project.en.html new file mode 100644 index 0000000..49ff6f9 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/contributing-to-project.en.html @@ -0,0 +1,338 @@ + + + + + + contributing-to-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Contributing to the project +

+
+ +

+ 13. Contributing to the project +

+
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
    +
  • + Merge commits. +
  • +
+
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +

+ 13.1 Making changes +

+
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +

+ $ git push
+

+
+ +

+ 13.2 Translation of man pages +

+
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customization-overview.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customization-overview.en.html new file mode 100644 index 0000000..8730608 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customization-overview.en.html @@ -0,0 +1,175 @@ + + + + + + customization-overview - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 7. Customization overview +

+
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +

+ 7.1 Build time vs. boot time configuration +

+
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +

+ 7.2 Stages of the build +

+
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +

+ 7.3 Supplement lb config with files +

+
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +

+ 7.4 Customization tasks +

+
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-binary.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-binary.en.html new file mode 100644 index 0000000..c82dd86 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-binary.en.html @@ -0,0 +1,196 @@ + + + + + + customizing-binary - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing the binary image +

+
+ +

+ 11. Customizing the binary image +

+
+ +

+ 11.1 Bootloaders +

+
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +

+ 11.2 ISO metadata +

+
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-contents.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-contents.en.html new file mode 100644 index 0000000..19a400c --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-contents.en.html @@ -0,0 +1,276 @@ + + + + + + customizing-contents - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 9. Customizing contents +

+
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +

+ 9.1 Includes +

+
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +

+ 9.1.1 Live/chroot local includes +

+
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +

+ Your configuration will then have the following layout: +

+
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +

+ 9.1.2 Binary local includes +

+
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +

+ 9.2 Hooks +

+
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +

+ 9.2.1 Chroot local hooks +

+
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.2 Binary local hooks +

+
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.3 Boot-time hooks +

+
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +

+ 9.3 Preseeding Debconf questions +

+
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-installer.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-installer.en.html new file mode 100644 index 0000000..9c470ba --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-installer.en.html @@ -0,0 +1,218 @@ + + + + + + customizing-installer - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing Debian Installer +

+
+ +

+ 12. Customizing Debian Installer +

+
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +

+ 12.1 Types of Debian Installer +

+
+ +

+ The three main types of installer are: +

+
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +

+ 12.2 Customizing Debian Installer by preseeding +

+
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +

+ 12.3 Customizing Debian Installer content +

+
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-package-installation.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-package-installation.en.html new file mode 100644 index 0000000..05328d3 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-package-installation.en.html @@ -0,0 +1,799 @@ + + + + + + customizing-package-installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing package installation +

+
+ +

+ 8. Customizing package installation +

+
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +

+ 8.1 Package sources +

+
+ +

+ 8.1.1 Distribution, archive areas and mode +

+
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +

+ $ lb config --distribution sid
+

+
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +

+ 8.1.2 Distribution mirrors +

+
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +

+ 8.1.3 Distribution mirrors used at build time +

+
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +

+ 8.1.4 Distribution mirrors used at run time +

+
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +

+ 8.1.5 Additional repositories +

+
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +

+ 8.2 Choosing packages to install +

+
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +

+ 8.2.1 Package lists +

+
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +

+ 8.2.2 Using metapackages +

+
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +

+ $ debtags search role::metapackage
+

+
+ +

+ 8.2.3 Local package lists +

+
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +

+ 8.2.4 Local binary package lists +

+
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +

+ 8.2.5 Generated package lists +

+
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +

+ 8.2.6 Using conditionals inside package lists +

+
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +

+ The nesting of conditionals is not supported. +

+
+ +

+ 8.2.7 Removing packages at install time +

+
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +

+ 8.2.8 Desktop and language tasks +

+
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +

+ 8.2.9 Kernel flavour and version +

+
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +

+ 8.2.10 Custom kernels +

+
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +

+ 8.3 Installing modified or third-party packages +

+
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
    +
  • + packages.chroot +
  • +
+
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +

+ 8.3.1 Using packages.chroot to install custom packages +

+
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +

+ 8.3.2 Using an APT repository to install custom packages +

+
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +

+ 8.3.3 Custom packages and APT +

+
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +

+ 8.4 Configuring APT at build time +

+
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +

+ 8.4.1 Choosing apt or aptitude +

+
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +

+ 8.4.2 Using a proxy with APT +

+
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +

+ 8.4.3 Tweaking APT to save space +

+
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +

+ $ lb config --apt-indices false
+

+
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +

+ $ lb config --apt-recommends false
+

+
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +

+ 8.4.4 Passing options to apt or aptitude +

+
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +

+ 8.4.5 APT pinning +

+
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-run-time-behaviours.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-run-time-behaviours.en.html new file mode 100644 index 0000000..becca70 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/customizing-run-time-behaviours.en.html @@ -0,0 +1,579 @@ + + + + + + customizing-run-time-behaviours - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing run time behaviours +

+
+ +

+ 10. Customizing run time behaviours +

+
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +

+ 10.1 Customizing the live user +

+
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +

+ 10.2 Customizing locale and language +

+
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
    +
  • + the locale generation +
  • +
+
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +

+ 10.3 Persistence +

+
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +

+ 10.3.1 The persistence.conf file +

+
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +

+ 10.3.2 Using more than one persistence store +

+
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +

+ 10.3.3 Using persistence with encryption +

+
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +

+ To install cryptsetup on your machine: +

+
+ +

+ # apt-get install cryptsetup
+

+
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +

+ Then unmount the mount point: +

+
+ +

+ # umount /mnt
+

+
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +

+ # cryptsetup luksClose live
+

+
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/examples.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/examples.en.html new file mode 100644 index 0000000..7727525 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/examples.en.html @@ -0,0 +1,595 @@ + + + + + + examples - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Examples +

+
+ +

+ 18. Examples +

+
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +

+ 18.1 Using the examples +

+
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +

+ 18.2 Tutorial 1: A default image +

+
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +

+ You can't get much simpler than this: +

+
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +

+ 18.3 Tutorial 2: A web browser utility +

+
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +

+ 18.4 Tutorial 3: A personalized image +

+
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +

+ 18.4.1 First revision +

+
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +

+ Edit auto/config to read as follows: +

+
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +

+ $ lb config
+

+
+ +

+ Now populate your local package list: +

+
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +

+ Now, build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +

+ 18.4.2 Second revision +

+
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +

+ # lb clean
+

+
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +

+ Build again: +

+
+ +

+ # lb build
+

+
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +

+ 18.5 A VNC Kiosk Client +

+
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +

+ Build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Enjoy. +

+
+ +

+ 18.6 A base image for a 128MB USB key +

+
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +

+ Now, build the image in the usual way: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +

+ 18.7 A localized GNOME desktop and installer +

+
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/git-repositories.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/git-repositories.en.html new file mode 100644 index 0000000..d4cd6d2 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/git-repositories.en.html @@ -0,0 +1,205 @@ + + + + + + git-repositories - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Git repositories +

+
+ +

+ 17. Git repositories +

+
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +

+ $ git checkout debian-next
+

+
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +

+ 17.1 Handling multiple repositories +

+
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/index.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/index.en.html new file mode 120000 index 0000000..f590e80 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/index.en.html @@ -0,0 +1 @@ +toc.en.html \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/installation.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/installation.en.html new file mode 100644 index 0000000..b86051d --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/installation.en.html @@ -0,0 +1,389 @@ + + + + + + installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Installation +

+
+ +

+ 3. Installation +

+
+ +

+ 3.1 Requirements +

+
+ +

+ Building live system images has very few system requirements: +

+
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
    +
  • + debootstrap +
  • +
+
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +

+ 3.2 Installing live-build +

+
+ +

+ You can install live-build in a number of different ways: +

+
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
    +
  • + From source +
  • +
+
+ +
    +
  • + From snapshots +
  • +
+
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +

+ 3.2.1 From the Debian repository +

+
+ +

+ Simply install live-build like any other package: +

+
+ +

+ # apt-get install live-build
+

+
+ +

+ 3.2.2 From source +

+
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +

+ You can build and install your own Debian package by executing: +

+
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +

+ # make install
+

+
+ +

+ and uninstall it with: +

+
+ +

+ # make uninstall
+

+
+ +

+ 3.2.3 From 'snapshots' +

+
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +

+ 3.3 Installing live-boot and live-config +

+
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +

+ 3.3.1 From the Debian repository +

+
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +

+ 3.3.2 From source +

+
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +

+ 3.3.3 From 'snapshots' +

+
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/managing-a-configuration.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/managing-a-configuration.en.html new file mode 100644 index 0000000..8c7b6df --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/managing-a-configuration.en.html @@ -0,0 +1,252 @@ + + + + + + managing-a-configuration - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Managing a configuration +

+
+ +

+ 6. Managing a configuration +

+
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +

+ 6.1 Dealing with configuration changes +

+
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +

+ 6.1.1 Why use auto scripts? What do they do? +

+
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +

+ 6.1.2 Use example auto scripts +

+
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +

+ 6.2 Clone a configuration published via Git +

+
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +

+ $ lb config --config lso:live-images
+

+
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/metadata.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/metadata.en.html new file mode 100644 index 0000000..b6dfea7 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/metadata.en.html @@ -0,0 +1,126 @@ + + + + + + metadata - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+

+ Metadata +

+

+ Document Metadata: +

+ Title: Live Systems Manual +

+ Author: Live Systems Project +

+ Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file. +

+ Publisher: Live Systems Project +

+ Date: 2015-09-22 +

+ Version Information: +

+ Sourcefile: live-manual.ssm.sst +

+ Filetype: SiSU text 2.0, ASCII text, with very long lines (1077) +

+ Source Digest: SHA2-256(live-manual.ssm.sst)= 5946f730f5507ab7b8fd85c9c536b89bd30afc6d5f336d8cafd50d54a84d9be6 +

+ Generated: +

+ Generated by: Generated by: SiSU 7.2.1_pre_rel of 2019w35/4 (2019-09-05) +

+ Ruby version: ruby 3.0.4p208 (2022-04-12 revision 3fa771dded) [x86_64-linux-gnu] +

+ Document (ao) last generated: 2022-06-14 13:53:03 +0000 +


+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+ +
\ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/overview-of-tools.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/overview-of-tools.en.html new file mode 100644 index 0000000..171486c --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/overview-of-tools.en.html @@ -0,0 +1,288 @@ + + + + + + overview-of-tools - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Overview of tools +

+
+ +

+ 5. Overview of tools +

+
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +

+ 5.1 The live-build package +

+
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +

+ 5.1.1 The lb config command +

+
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +

+ $ lb config --apt aptitude
+

+
+ +

+ It is possible to specify many options, such as: +

+
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +

+ 5.1.2 The lb build command +

+
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +

+ 5.1.3 The lb clean command +

+
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +

+ 5.2 The live-boot package +

+
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +

+ 5.3 The live-config package +

+
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/procedures.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/procedures.en.html new file mode 100644 index 0000000..04a891c --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/procedures.en.html @@ -0,0 +1,254 @@ + + + + + + procedures - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Procedures +

+
+ +

+ 16. Procedures +

+
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +

+ 16.1 Major Releases +

+
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +

+ 16.2 Point Releases +

+
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +

+ 16.2.1 Last Point Release of a Debian Release +

+
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +

+ 16.2.2 Point release announcement template +

+
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/style-guide.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/style-guide.en.html new file mode 100644 index 0000000..95498ea --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/style-guide.en.html @@ -0,0 +1,698 @@ + + + + + + style-guide - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Style guide +

+
+ +

+ 19. Style guide +

+
+ +

+ 19.1 Guidelines for authors +

+
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +

+ 19.1.1 Linguistic features +

+
+ +
    +
  • + Use plain English +
  • +
+
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
    +
  • + Variety of English +
  • +
+
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
    +
  • + Be balanced +
  • +
+
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
    +
  • + Be politically correct +
  • +
+
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
    +
  • + Be concise +
  • +
+
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
    +
  • + Minimize translation work +
  • +
+
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
    +
  • + Be coherent +
  • +
+
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
    +
  • + Be cohesive +
  • +
+
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
    +
  • + Be descriptive +
  • +
+
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
    +
  • + Dictionary +
  • +
+
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +

+ 19.1.2 Procedures +

+
+ +
    +
  • + Test before write +
  • +
+
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
    +
  • + Examples +
  • +
+
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
    +
  • + External links +
  • +
+
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
    +
  • + Chapters +
  • +
+
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +

+ $ sisu --help markup
+

+
+ +

+ Here are some markup examples that may prove useful: +

+
+ +

+ - For emphasis/bold text: +

+
+ +

+ *{foo}* or !{foo}!
+

+
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +

+ - For italics: +

+
+ +

+ /{foo}/
+

+
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +

+ - For monospace: +

+
+ +

+ #{foo}#
+

+
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +

+ - For code blocks: +

+
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +

+ produces: +

+
+ +

+ $ foo
+# bar
+

+
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +

+ 19.2 Guidelines for translators +

+
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +

+ 19.2.1 Translation hints +

+
+ +
    +
  • + Comments +
  • +
+
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
    +
  • + False friends +
  • +
+
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
    +
  • + Code blocks +
  • +
+
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
    +
  • + Newlines +
  • +
+
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +

+ Translators should never translate: +

+
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +

+ - The names of programs +

+
+ +

+ - The commands given as examples +

+
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +

+ - Links +

+
+ +

+ - Paths +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/the-basics.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/the-basics.en.html new file mode 100644 index 0000000..1e08eb9 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/the-basics.en.html @@ -0,0 +1,847 @@ + + + + + + the-basics - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ The basics +

+
+ +

+ 4. The basics +

+
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +

+ 4.1 What is a live system? +

+
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +

+ 4.2 Downloading prebuilt images +

+
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +

+ 4.3 Using the web live image builder +

+
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +

+ 4.3.1 Web builder usage and caveats +

+
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +

+ 4.4 First steps: building an ISO hybrid image +

+
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +

+ $ lb config
+

+
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +

+ 4.5 Using an ISO hybrid live image +

+
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +

+ 4.5.1 Burning an ISO image to a physical medium +

+
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +

+ 4.5.2 Copying an ISO hybrid image to a USB stick +

+
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +

+ 4.5.3 Using the space left on a USB stick +

+
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +

+ # gparted ${USBSTICK}
+

+
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +

+ 4.5.4 Booting the live medium +

+
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +

+ 4.6 Using a virtual machine for testing +

+
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +

+ 4.6.1 Testing an ISO image with QEMU +

+
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +

+ Booting an ISO image is simple: +

+
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +

+ See the man pages for more details. +

+
+ +

+ 4.6.2 Testing an ISO image with VirtualBox +

+
+ +

+ In order to test the ISO with virtualbox: +

+
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +

+ 4.7 Building and using an HDD image +

+
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +

+ # lb clean --binary
+

+
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +

+ $ lb config -b hdd
+

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +

+ 4.8 Building a netboot image +

+
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +

+ # lb clean
+

+
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +

+ 4.8.1 DHCP server +

+
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +

+ 4.8.2 TFTP server +

+
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +

+ 4.8.3 NFS server +

+
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +

+ # exportfs -rv
+

+
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +

+ 4.8.4 Netboot testing HowTo +

+
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +

+ To make our life easier, we can use virtualization. +

+
+ +

+ 4.8.5 Qemu +

+
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +

+ Edit /etc/qemu-ifup: +

+
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +

+ 4.9 Webbooting +

+
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +

+ 4.9.1 Getting the webboot files +

+
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +

+ 4.9.2 Booting webboot images +

+
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/toc.en.html b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/toc.en.html new file mode 100644 index 0000000..9612714 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/livebuild/live-manual/toc.en.html @@ -0,0 +1,1163 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   + next >>  +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

+ Live Systems Manual +

+ +

+ About +

+ +

+ About this manual +

+ +

+ + 1. About this manual + +

+ +
+ + 1.1 For the impatient + +
+ +
+ + 1.2 Terms + +
+ +
+ + 1.3 Authors + +
+ +
+ + 1.4 Contributing to this document + +
+ +
+ + 1.4.1 Applying changes + +
+ +
+ + 1.4.2 Translation + +
+ +

+ About the Live Systems Project +

+ +

+ + 2. About the Live Systems Project + +

+ +
+ + 2.1 Motivation + +
+ +
+ + 2.1.1 What is wrong with current live systems + +
+ +
+ + 2.1.2 Why create our own live system? + +
+ +
+ + 2.2 Philosophy + +
+ +
+ + 2.2.1 Only unchanged packages from Debian "main" + +
+ +
+ + 2.2.2 No package configuration of the live system + +
+ +
+ + 2.3 Contact + +
+ +

+ User +

+ +

+ Installation +

+ +

+ + 3. Installation + +

+ +
+ + 3.1 Requirements + +
+ +
+ + 3.2 Installing live-build + +
+ +
+ + 3.2.1 From the Debian repository + +
+ +
+ + 3.2.2 From source + +
+ +
+ + 3.2.3 From 'snapshots' + +
+ +
+ + 3.3 Installing live-boot and live-config + +
+ +
+ + 3.3.1 From the Debian repository + +
+ +
+ + 3.3.2 From source + +
+ +
+ + 3.3.3 From 'snapshots' + +
+ +

+ The basics +

+ +

+ + 4. The basics + +

+ +
+ + 4.1 What is a live system? + +
+ +
+ + 4.2 Downloading prebuilt images + +
+ +
+ + 4.3 Using the web live image builder + +
+ +
+ + 4.3.1 Web builder usage and caveats + +
+ +
+ + 4.4 First steps: building an ISO hybrid image + +
+ +
+ + 4.5 Using an ISO hybrid live image + +
+ +
+ + 4.5.1 Burning an ISO image to a physical medium + +
+ +
+ + 4.5.2 Copying an ISO hybrid image to a USB stick + +
+ +
+ + 4.5.3 Using the space left on a USB stick + +
+ +
+ + 4.5.4 Booting the live medium + +
+ +
+ + 4.6 Using a virtual machine for testing + +
+ +
+ + 4.6.1 Testing an ISO image with QEMU + +
+ +
+ + 4.6.2 Testing an ISO image with VirtualBox + +
+ +
+ + 4.7 Building and using an HDD image + +
+ +
+ + 4.8 Building a netboot image + +
+ +
+ + 4.8.1 DHCP server + +
+ +
+ + 4.8.2 TFTP server + +
+ +
+ + 4.8.3 NFS server + +
+ +
+ + 4.8.4 Netboot testing HowTo + +
+ +
+ + 4.8.5 Qemu + +
+ +
+ + 4.9 Webbooting + +
+ +
+ + 4.9.1 Getting the webboot files + +
+ +
+ + 4.9.2 Booting webboot images + +
+ +

+ Overview of tools +

+ +

+ + 5. Overview of tools + +

+ +
+ + 5.1 The live-build package + +
+ +
+ + 5.1.1 The lb config command + +
+ +
+ + 5.1.2 The lb build command + +
+ +
+ + 5.1.3 The lb clean command + +
+ +
+ + 5.2 The live-boot package + +
+ +
+ + 5.3 The live-config package + +
+ +

+ Managing a configuration +

+ +

+ + 6. Managing a configuration + +

+ +
+ + 6.1 Dealing with configuration changes + +
+ +
+ + 6.1.1 Why use auto scripts? What do they do? + +
+ +
+ + 6.1.2 Use example auto scripts + +
+ +
+ + 6.2 Clone a configuration published via Git + +
+ +

+ Customizing contents +

+ +

+ + 7. Customization overview + +

+ +
+ + 7.1 Build time vs. boot time configuration + +
+ +
+ + 7.2 Stages of the build + +
+ +
+ + 7.3 Supplement lb config with files + +
+ +
+ + 7.4 Customization tasks + +
+ +

+ Customizing package installation +

+ +

+ + 8. Customizing package installation + +

+ +
+ + 8.1 Package sources + +
+ +
+ + 8.1.1 Distribution, archive areas and mode + +
+ +
+ + 8.1.2 Distribution mirrors + +
+ +
+ + 8.1.3 Distribution mirrors used at build time + +
+ +
+ + 8.1.4 Distribution mirrors used at run time + +
+ +
+ + 8.1.5 Additional repositories + +
+ +
+ + 8.2 Choosing packages to install + +
+ +
+ + 8.2.1 Package lists + +
+ +
+ + 8.2.2 Using metapackages + +
+ +
+ + 8.2.3 Local package lists + +
+ +
+ + 8.2.4 Local binary package lists + +
+ +
+ + 8.2.5 Generated package lists + +
+ +
+ + 8.2.6 Using conditionals inside package lists + +
+ +
+ + 8.2.7 Removing packages at install time + +
+ +
+ + 8.2.8 Desktop and language tasks + +
+ +
+ + 8.2.9 Kernel flavour and version + +
+ +
+ + 8.2.10 Custom kernels + +
+ +
+ + 8.3 Installing modified or third-party packages + +
+ +
+ + 8.3.1 Using packages.chroot to install custom packages + +
+ +
+ + 8.3.2 Using an APT repository to install custom packages + +
+ +
+ + 8.3.3 Custom packages and APT + +
+ +
+ + 8.4 Configuring APT at build time + +
+ +
+ + 8.4.1 Choosing apt or aptitude + +
+ +
+ + 8.4.2 Using a proxy with APT + +
+ +
+ + 8.4.3 Tweaking APT to save space + +
+ +
+ + 8.4.4 Passing options to apt or aptitude + +
+ +
+ + 8.4.5 APT pinning + +
+ +

+ Customizing contents +

+ +

+ + 9. Customizing contents + +

+ +
+ + 9.1 Includes + +
+ +
+ + 9.1.1 Live/chroot local includes + +
+ +
+ + 9.1.2 Binary local includes + +
+ +
+ + 9.2 Hooks + +
+ +
+ + 9.2.1 Chroot local hooks + +
+ +
+ + 9.2.2 Binary local hooks + +
+ +
+ + 9.2.3 Boot-time hooks + +
+ +
+ + 9.3 Preseeding Debconf questions + +
+ +

+ Customizing run time behaviours +

+ +

+ + 10. Customizing run time behaviours + +

+ +
+ + 10.1 Customizing the live user + +
+ +
+ + 10.2 Customizing locale and language + +
+ +
+ + 10.3 Persistence + +
+ +
+ + 10.3.1 The persistence.conf file + +
+ +
+ + 10.3.2 Using more than one persistence store + +
+ +
+ + 10.3.3 Using persistence with encryption + +
+ +

+ Customizing the binary image +

+ +

+ + 11. Customizing the binary image + +

+ +
+ + 11.1 Bootloaders + +
+ +
+ + 11.2 ISO metadata + +
+ +

+ Customizing Debian Installer +

+ +

+ + 12. Customizing Debian Installer + +

+ +
+ + 12.1 Types of Debian Installer + +
+ +
+ + 12.2 Customizing Debian Installer by preseeding + +
+ +
+ + 12.3 Customizing Debian Installer content + +
+ +

+ Project +

+ +

+ Contributing to the project +

+ +

+ + 13. Contributing to the project + +

+ +
+ + 13.1 Making changes + +
+ +
+ + 13.2 Translation of man pages + +
+ +

+ Reporting bugs +

+ +

+ + 14. Reporting bugs + +

+ +
+ + 14.1 Known issues + +
+ +
+ + 14.2 Rebuild from scratch + +
+ +
+ + 14.3 Use up-to-date packages + +
+ +
+ + 14.4 Collect information + +
+ +
+ + 14.5 Isolate the failing case if possible + +
+ +
+ + 14.6 Use the correct package to report the bug against + +
+ +
+ + 14.6.1 At build time while bootstrapping + +
+ +
+ + 14.6.2 At build time while installing packages + +
+ +
+ + 14.6.3 At boot time + +
+ +
+ + 14.6.4 At run time + +
+ +
+ + 14.7 Do the research + +
+ +
+ + 14.8 Where to report bugs + +
+ +

+ Coding Style +

+ +

+ + 15. Coding Style + +

+ +
+ + 15.1 Compatibility + +
+ +
+ + 15.2 Indenting + +
+ +
+ + 15.3 Wrapping + +
+ +
+ + 15.4 Variables + +
+ +
+ + 15.5 Miscellaneous + +
+ +

+ Procedures +

+ +

+ + 16. Procedures + +

+ +
+ + 16.1 Major Releases + +
+ +
+ + 16.2 Point Releases + +
+ +
+ + 16.2.1 Last Point Release of a Debian Release + +
+ +
+ + 16.2.2 Point release announcement template + +
+ +

+ Git repositories +

+ +

+ + 17. Git repositories + +

+ +
+ + 17.1 Handling multiple repositories + +
+ +

+ Examples +

+ +

+ Examples +

+ +

+ + 18. Examples + +

+ +
+ + 18.1 Using the examples + +
+ +
+ + 18.2 Tutorial 1: A default image + +
+ +
+ + 18.3 Tutorial 2: A web browser utility + +
+ +
+ + 18.4 Tutorial 3: A personalized image + +
+ +
+ + 18.4.1 First revision + +
+ +
+ + 18.4.2 Second revision + +
+ +
+ + 18.5 A VNC Kiosk Client + +
+ +
+ + 18.6 A base image for a 128MB USB key + +
+ +
+ + 18.7 A localized GNOME desktop and installer + +
+ +

+ Appendix +

+ +

+ Style guide +

+ +

+ + 19. Style guide + +

+ +
+ + 19.1 Guidelines for authors + +
+ +
+ + 19.1.1 Linguistic features + +
+ +
+ + 19.1.2 Procedures + +
+ +
+ + 19.2 Guidelines for translators + +
+ +
+ + 19.2.1 Translation hints + +
+ +

+ Metadata +

+ +

+ + SiSU Metadata, document information + +

+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +

+ +
+

 

+ + + +
+ + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/os-release/os-release b/eznixOS12X-calamares/eznixOS12X/os-release/os-release new file mode 100644 index 0000000..47f7977 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/os-release/os-release @@ -0,0 +1,6 @@ +PRETTY_NAME="eznixOS12" +NAME="eznixOS" +VERSION_ID="12" +VERSION="12 (bookworm)" +VERSION_CODENAME=bookworm +ID=debian diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/bpkernel b/eznixOS12X-calamares/eznixOS12X/scripts/bpkernel new file mode 100755 index 0000000..78a05c5 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/bpkernel @@ -0,0 +1,25 @@ +#!/bin/bash + +# bpkernel -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +bpkernelr () { + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 +} + +bpkernelr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/ezadmin b/eznixOS12X-calamares/eznixOS12X/scripts/ezadmin new file mode 100755 index 0000000..d78256b --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/ezadmin @@ -0,0 +1,151 @@ +#!/bin/bash + +# ezadmin -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + + +# --------------------------------------- +# Define Functions: +# --------------------------------------- + + +setsudo () { + clear + echo " " + bash /usr/local/bin/setsudo + clear + echo " " + echo "User Added To Sudo Group (logout & login)" + sleep 3 + clear +} + +optimize () { + clear + echo " " + bash /usr/local/bin/optimize + clear + echo " " + echo "Optimized sources.list & Updated Repos" + echo " " + sleep 3 + clear +} + +debtesting () { + clear + echo " " + bash /usr/local/bin/gototesting + clear + echo " " + echo "Upgrade to testing, reboot now" + echo " " + sleep 3 + clear +} + +iconcache () { + clear + echo " " + bash /usr/local/bin/iconcache + clear + echo " " + echo "Icon Cache Files Rebuilt (logout & login)" + sleep 3 + clear +} + +ffinstall () { + clear + echo " " + bash /usr/local/bin/ffinstall + clear + echo " " + echo "Firefox Current Installed" + sleep 3 + clear +} + +ytdlpinst () { + clear + echo " " + bash /usr/local/bin/ytdlpinstall + clear + echo " " + echo "YT-DLP video downloader Installed" + sleep 3 + clear +} + +bpkernel () { + clear + echo " " + bash /usr/local/bin/bpkernel + clear + echo " " + echo "Newest Kernel From Backports Installed (Reboot Required)" + sleep 3 + clear +} + +# --------------------------- +# Main Menu +# --------------------------- + +mainmenu () { while true +do + clear + echo "----------------------" + echo " EZ Admin Menu:" + echo " 12X Xfce Edition" + echo "----------------------" + echo "" + echo " (a) Add Myself to Sudo Group " + echo " (Logout & Login to take effect) " + echo " (b) Optimize Sources & Update Repos " + echo " (c) Rebuild Icon Cache Files " + echo " (Logout & Login to take effect) " + echo " (d) Install or upgrade Firefox Latest " + echo " (e) Install YT-DLP video downloader " + echo " (f) Install newest kernel from backports " + echo " (Reboot Required) " + echo " (g) Upgrade to Debian Testing " + echo " (Reboot Required) " + echo "" + echo " (x) Exit " + echo + read -p "Please enter your choice: " choice + case $choice in + a|A) setsudo;; + b|B) optimize;; + c|C) iconcache;; + d|D) ffinstall;; + e|E) ytdlpinst;; + f|F) bpkernel;; + g|G) debtesting;; + x|X) exit;; + *) echo "invalid answer, please try again";; + + esac +done +} + +# Begin main program: + +mainmenu + +done + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/ffinstall b/eznixOS12X-calamares/eznixOS12X/scripts/ffinstall new file mode 100755 index 0000000..b0bd8fb --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/ffinstall @@ -0,0 +1,31 @@ +#!/bin/bash + +# ffinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ffinstallr () { + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznixOS12X/launchers/Firefox-Latest.desktop /usr/share/applications/ + rm -r /opt/FFDL +} + +ffinstallr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/gototesting b/eznixOS12X-calamares/eznixOS12X/scripts/gototesting new file mode 100755 index 0000000..8b548ac --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/gototesting @@ -0,0 +1,26 @@ +#!/bin/bash + +# gototesting -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +totesting () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznixOS12X/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade +} + +totesting + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/iconcache b/eznixOS12X-calamares/eznixOS12X/scripts/iconcache new file mode 100755 index 0000000..42d2846 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/iconcache @@ -0,0 +1,30 @@ +#!/bin/bash + +# iconcache -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +iconcacher () { + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ +} + +iconcacher + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/optimize b/eznixOS12X-calamares/eznixOS12X/scripts/optimize new file mode 100755 index 0000000..370ecde --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/optimize @@ -0,0 +1,25 @@ +#!/bin/bash + +# optimize -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +optimizer () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznixOS12X/sources/sources.bookworm /etc/apt/sources.list + apt-get -y update +} + +optimizer + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/setsudo b/eznixOS12X-calamares/eznixOS12X/scripts/setsudo new file mode 100755 index 0000000..7460481 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/setsudo @@ -0,0 +1,24 @@ +#!/bin/bash + +# setsudo -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +setsudoer () { + read -p "Type your user name, be exact, and press Enter: " ANS + usermod -aG sudo $ANS +} + +setsudoer + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/scripts/ytdlpinstall b/eznixOS12X-calamares/eznixOS12X/scripts/ytdlpinstall new file mode 100755 index 0000000..d60cafa --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/scripts/ytdlpinstall @@ -0,0 +1,24 @@ +#!/bin/bash + +# ytdlpinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ytdlpinstlr () { + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp +} + +ytdlpinstlr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12X-calamares/eznixOS12X/sources/sources.bookworm b/eznixOS12X-calamares/eznixOS12X/sources/sources.bookworm new file mode 100644 index 0000000..568f474 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/sources/sources.bookworm @@ -0,0 +1,15 @@ +# Main +deb https://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware + +# Updates +deb https://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware + +# Security +deb https://security.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware +# deb-src https://security.debian.org/debian-security/ bookworm-security main contrib non-free non-free-firmware + +# Backports +deb https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware diff --git a/eznixOS12X-calamares/eznixOS12X/sources/sources.testing b/eznixOS12X-calamares/eznixOS12X/sources/sources.testing new file mode 100644 index 0000000..75ff196 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/sources/sources.testing @@ -0,0 +1,11 @@ +# Main +deb https://deb.debian.org/debian/ testing main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ testing main contrib non-free non-free-firmware + +# Updates +deb https://deb.debian.org/debian/ testing-updates main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ testing-updates main contrib non-free non-free-firmware + +# Security +# deb https://security.debian.org/debian-security/ testing-security main contrib non-free non-free-firmware +# deb-src https://security.debian.org/debian-security/ testing-security main contrib non-free non-free-firmware diff --git a/eznixOS12X-calamares/eznixOS12X/splash/slide1.png b/eznixOS12X-calamares/eznixOS12X/splash/slide1.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/splash/slide1.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/splash/splash.png b/eznixOS12X-calamares/eznixOS12X/splash/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/splash/splash.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/splash/splash.xpm b/eznixOS12X-calamares/eznixOS12X/splash/splash.xpm new file mode 100644 index 0000000..73a6a8a --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/splash/splash.xpm @@ -0,0 +1,14048 @@ +/* XPM */ +static char * splash_xpm[] = { +"640 480 13565 3", +" c #01040C", +". c #01060F", +"+ c #01050D", +"@ c #02040B", +"# c #01050E", +"$ c #01060E", +"% c #01040D", +"& c #010711", +"* c #02060F", +"= c #01060D", +"- c #010611", +"; c #010712", +"> c #010610", +", c #020816", +"' c #000710", +") c #010816", +"! c #000714", +"~ c #010815", +"{ c #010917", +"] c #010713", +"^ c #010714", +"/ c #010919", +"( c #020A19", +"_ c #02091B", +": c #02091A", +"< c #020919", +"[ c #010918", +"} c #020A1A", +"| c #010814", +"1 c #010A19", +"2 c #010916", +"3 c #03091A", +"4 c #010A18", +"5 c #020B1A", +"6 c #020B1C", +"7 c #020B1D", +"8 c #020B1E", +"9 c #030B1C", +"0 c #020D1F", +"a c #020C1E", +"b c #030B1D", +"c c #020D21", +"d c #020B1B", +"e c #020C1F", +"f c #020C21", +"g c #020C20", +"h c #020E23", +"i c #030C1E", +"j c #030C1F", +"k c #020D1E", +"l c #030E24", +"m c #021027", +"n c #020E22", +"o c #020D22", +"p c #020F25", +"q c #010F26", +"r c #020E24", +"s c #020E26", +"t c #011028", +"u c #010F27", +"v c #010E25", +"w c #02112A", +"x c #02112D", +"y c #020F28", +"z c #02122C", +"A c #02122E", +"B c #01112B", +"C c #02102A", +"D c #021029", +"E c #03122C", +"F c #01102A", +"G c #02112B", +"H c #021433", +"I c #02122D", +"J c #021432", +"K c #03122D", +"L c #021533", +"M c #02132F", +"N c #02112C", +"O c #031432", +"P c #021536", +"Q c #031533", +"R c #021639", +"S c #021331", +"T c #021534", +"U c #031534", +"V c #031638", +"W c #021738", +"X c #021638", +"Y c #021434", +"Z c #021435", +"` c #031433", +" . c #03183B", +".. c #02183C", +"+. c #03183C", +"@. c #031739", +"#. c #02173A", +"$. c #031A3F", +"%. c #021A40", +"&. c #031940", +"*. c #021940", +"=. c #03193E", +"-. c #031941", +";. c #031A40", +">. c #02193E", +",. c #03193D", +"'. c #031B43", +"). c #031A42", +"!. c #031A41", +"~. c #031C45", +"{. c #031B44", +"]. c #021A3F", +"^. c #031B45", +"/. c #041C45", +"(. c #031C47", +"_. c #021D48", +":. c #031D49", +"<. c #041D4A", +"[. c #041D44", +"}. c #04204C", +"|. c #041D47", +"1. c #041D49", +"2. c #031F4B", +"3. c #041E4B", +"4. c #04204D", +"5. c #04214E", +"6. c #06234F", +"7. c #05224E", +"8. c #04214D", +"9. c #062251", +"0. c #062350", +"a. c #041F4E", +"b. c #04204F", +"c. c #092554", +"d. c #072352", +"e. c #082453", +"f. c #0B2757", +"g. c #082454", +"h. c #0C2857", +"i. c #0A2656", +"j. c #0A2857", +"k. c #082655", +"l. c #092857", +"m. c #092757", +"n. c #092858", +"o. c #0A2958", +"p. c #0C2B59", +"q. c #0A2859", +"r. c #0C2B5B", +"s. c #0D2B5D", +"t. c #0B295B", +"u. c #0B2A5B", +"v. c #0C2A5C", +"w. c #0C2B5C", +"x. c #0A295B", +"y. c #0C2C5D", +"z. c #0E2C5E", +"A. c #0E2E5F", +"B. c #0D2D5F", +"C. c #0D2D60", +"D. c #0F2F62", +"E. c #0D2D5E", +"F. c #0E2E61", +"G. c #103063", +"H. c #113164", +"I. c #0F2F63", +"J. c #113066", +"K. c #102F64", +"L. c #102F65", +"M. c #103064", +"N. c #0F2E64", +"O. c #123167", +"P. c #102E64", +"Q. c #123168", +"R. c #113067", +"S. c #133268", +"T. c #14336A", +"U. c #123269", +"V. c #133469", +"W. c #133369", +"X. c #113268", +"Y. c #133269", +"Z. c #113167", +"`. c #15366C", +" + c #14356B", +".+ c #13346A", +"++ c #15346B", +"@+ c #17376C", +"#+ c #16376D", +"$+ c #16366D", +"%+ c #15366B", +"&+ c #173770", +"*+ c #1B3B74", +"=+ c #193972", +"-+ c #16366F", +";+ c #183871", +">+ c #163670", +",+ c #183771", +"'+ c #163870", +")+ c #183770", +"!+ c #183872", +"~+ c #183B75", +"{+ c #1A3A75", +"]+ c #193B75", +"^+ c #173A74", +"/+ c #1A3D77", +"(+ c #193C76", +"_+ c #193B77", +":+ c #173976", +"<+ c #1A3C77", +"[+ c #193B7A", +"}+ c #1C3E7A", +"|+ c #1A3C79", +"1+ c #1C3E7B", +"2+ c #1B3E79", +"3+ c #1B3E7A", +"4+ c #1A3D79", +"5+ c #1D407C", +"6+ c #1D3F7C", +"7+ c #1C407C", +"8+ c #1A3E7A", +"9+ c #1B3E7C", +"0+ c #1B3F7D", +"a+ c #1C407D", +"b+ c #1B3F7C", +"c+ c #1A3E7B", +"d+ c #1A3E7C", +"e+ c #193D7B", +"f+ c #1A3F7D", +"g+ c #1B407F", +"h+ c #183E7D", +"i+ c #183E7C", +"j+ c #1A407E", +"k+ c #183D7C", +"l+ c #1A407F", +"m+ c #173D7C", +"n+ c #193F7E", +"o+ c #173D7E", +"p+ c #173C7D", +"q+ c #163C7B", +"r+ c #193F7F", +"s+ c #193F80", +"t+ c #1A4081", +"u+ c #183F80", +"v+ c #143B7C", +"w+ c #173E7F", +"x+ c #163D7E", +"y+ c #153C7E", +"z+ c #194082", +"A+ c #163D80", +"B+ c #173E81", +"C+ c #153C7F", +"D+ c #133A7D", +"E+ c #143B7E", +"F+ c #12397C", +"G+ c #11387B", +"H+ c #133C7E", +"I+ c #143C7E", +"J+ c #153D80", +"K+ c #143A7F", +"L+ c #133A7F", +"M+ c #143B7F", +"N+ c #123A7E", +"O+ c #143B80", +"P+ c #133B80", +"Q+ c #12397E", +"R+ c #11397E", +"S+ c #123A7F", +"T+ c #10387D", +"U+ c #10387E", +"V+ c #0F377C", +"W+ c #0D357B", +"X+ c #0E367C", +"Y+ c #0E367B", +"Z+ c #0D357A", +"`+ c #0C357A", +" @ c #0D367C", +".@ c #0F377D", +"+@ c #0B3379", +"@@ c #0C347A", +"#@ c #0A3278", +"$@ c #083177", +"%@ c #093177", +"&@ c #083076", +"*@ c #072F75", +"=@ c #072F76", +"-@ c #062E75", +";@ c #093077", +">@ c #062E74", +",@ c #052B6D", +"'@ c #052D73", +")@ c #052D72", +"!@ c #042A6A", +"~@ c #042C6F", +"{@ c #042C6E", +"]@ c #052C72", +"^@ c #042A6B", +"/@ c #042B6D", +"(@ c #052D71", +"_@ c #042869", +":@ c #042969", +"<@ c #042B6A", +"[@ c #042965", +"}@ c #042867", +"|@ c #042865", +"1@ c #042662", +"2@ c #042864", +"3@ c #042661", +"4@ c #042866", +"5@ c #04265D", +"6@ c #04265F", +"7@ c #04255E", +"8@ c #042761", +"9@ c #042762", +"0@ c #042359", +"a@ c #04255D", +"b@ c #052459", +"c@ c #03245A", +"d@ c #042356", +"e@ c #042358", +"f@ c #042153", +"g@ c #042257", +"h@ c #032255", +"i@ c #032254", +"j@ c #032152", +"k@ c #032154", +"l@ c #032050", +"m@ c #031F4F", +"n@ c #022152", +"o@ c #031F4D", +"p@ c #032153", +"q@ c #031D4A", +"r@ c #021F4C", +"s@ c #031E4B", +"t@ c #031D48", +"u@ c #031E4C", +"v@ c #031C46", +"w@ c #031C4A", +"x@ c #031A43", +"y@ c #03183A", +"z@ c #03183E", +"A@ c #03193F", +"B@ c #041A42", +"C@ c #04193F", +"D@ c #03163B", +"E@ c #03173A", +"F@ c #03163A", +"G@ c #031639", +"H@ c #021537", +"I@ c #021636", +"J@ c #031435", +"K@ c #031331", +"L@ c #021535", +"M@ c #021332", +"N@ c #03122F", +"O@ c #02132E", +"P@ c #021330", +"Q@ c #02122F", +"R@ c #01040B", +"S@ c #02040F", +"T@ c #020610", +"U@ c #000712", +"V@ c #01050F", +"W@ c #010817", +"X@ c #010915", +"Y@ c #010A1A", +"Z@ c #020814", +"`@ c #010715", +" # c #020817", +".# c #000914", +"+# c #01091A", +"@# c #020818", +"## c #020918", +"$# c #020A1B", +"%# c #010818", +"&# c #020A1C", +"*# c #020917", +"=# c #030A1D", +"-# c #030A1C", +";# c #020815", +"># c #030C1D", +",# c #020C1D", +"'# c #020B1F", +")# c #010D23", +"!# c #010D20", +"~# c #020D20", +"{# c #020E20", +"]# c #010E23", +"^# c #021028", +"/# c #021129", +"(# c #030F26", +"_# c #020E25", +":# c #011029", +"<# c #011230", +"[# c #03112A", +"}# c #01112C", +"|# c #021430", +"1# c #031434", +"2# c #031536", +"3# c #031431", +"4# c #031637", +"5# c #03183D", +"6# c #02193D", +"7# c #021739", +"8# c #04183C", +"9# c #031B41", +"0# c #021941", +"a# c #021B42", +"b# c #031B42", +"c# c #041B46", +"d# c #031B46", +"e# c #041F4B", +"f# c #05214E", +"g# c #05204D", +"h# c #031E4A", +"i# c #05204E", +"j# c #05204C", +"k# c #06224E", +"l# c #05224F", +"m# c #052150", +"n# c #06224F", +"o# c #072453", +"p# c #062351", +"q# c #092555", +"r# c #092656", +"s# c #0A2858", +"t# c #082756", +"u# c #092958", +"v# c #0B2958", +"w# c #0B2959", +"x# c #0A285A", +"y# c #0A295A", +"z# c #0E2D5F", +"A# c #0F2E5F", +"B# c #0D2C5E", +"C# c #0C2C5E", +"D# c #0E2E60", +"E# c #123166", +"F# c #143369", +"G# c #143269", +"H# c #15346A", +"I# c #14356A", +"J# c #123369", +"K# c #15356B", +"L# c #14346A", +"M# c #16366C", +"N# c #15356C", +"O# c #16376E", +"P# c #15356E", +"Q# c #193974", +"R# c #17376F", +"S# c #1A3A74", +"T# c #173873", +"U# c #163973", +"V# c #183974", +"W# c #1B3D77", +"X# c #1A3C76", +"Y# c #1B3E78", +"Z# c #1A3C78", +"`# c #193B78", +" $ c #183A78", +".$ c #193C79", +"+$ c #1A3D7A", +"@$ c #1C3F7C", +"#$ c #193C78", +"$$ c #193D79", +"%$ c #1C407E", +"&$ c #183D7B", +"*$ c #193F7D", +"=$ c #183F7D", +"-$ c #193E7D", +";$ c #1B4180", +">$ c #1A4080", +",$ c #183D7E", +"'$ c #183E7F", +")$ c #163C7D", +"!$ c #153C7D", +"~$ c #163D7D", +"{$ c #173E7E", +"]$ c #173E80", +"^$ c #153D7F", +"/$ c #11387D", +"($ c #11397F", +"_$ c #0C3479", +":$ c #0D367B", +"<$ c #0B357A", +"[$ c #0C3379", +"}$ c #093178", +"|$ c #0A3479", +"1$ c #072E75", +"2$ c #052D74", +"3$ c #052F76", +"4$ c #062E73", +"5$ c #042C70", +"6$ c #052B6E", +"7$ c #062D73", +"8$ c #042A6D", +"9$ c #042B6C", +"0$ c #04296A", +"a$ c #032B6C", +"b$ c #042967", +"c$ c #052866", +"d$ c #042966", +"e$ c #042A68", +"f$ c #042764", +"g$ c #052661", +"h$ c #04255C", +"i$ c #052762", +"j$ c #05265F", +"k$ c #04255A", +"l$ c #042660", +"m$ c #042459", +"n$ c #05245A", +"o$ c #04245A", +"p$ c #042458", +"q$ c #032459", +"r$ c #032052", +"s$ c #022050", +"t$ c #032051", +"u$ c #032151", +"v$ c #031E4F", +"w$ c #031C48", +"x$ c #031D4B", +"y$ c #041B48", +"z$ c #02173B", +"A$ c #04183E", +"B$ c #03173C", +"C$ c #021637", +"D$ c #031535", +"E$ c #021431", +"F$ c #031436", +"G$ c #031636", +"H$ c #031330", +"I$ c #011332", +"J$ c #01040A", +"K$ c #00040D", +"L$ c #01050B", +"M$ c #02050D", +"N$ c #010813", +"O$ c #020713", +"P$ c #000812", +"Q$ c #010710", +"R$ c #000814", +"S$ c #000711", +"T$ c #010819", +"U$ c #000713", +"V$ c #030B1E", +"W$ c #010D21", +"X$ c #030D21", +"Y$ c #020F24", +"Z$ c #020F27", +"`$ c #020F26", +" % c #021026", +".% c #011231", +"+% c #031332", +"@% c #021230", +"#% c #021538", +"$% c #02183D", +"%% c #041B44", +"&% c #041D46", +"*% c #041E49", +"=% c #031C44", +"-% c #051F4A", +";% c #05214D", +">% c #04204E", +",% c #041E4A", +"'% c #03204C", +")% c #04214F", +"!% c #062250", +"~% c #05214F", +"{% c #0A2655", +"]% c #072756", +"^% c #0C2757", +"/% c #0C2959", +"(% c #0C2B5A", +"_% c #092758", +":% c #0A2957", +"<% c #0D2B5C", +"[% c #0B2A5A", +"}% c #0B2B5C", +"|% c #0A2A5B", +"1% c #0C2B5D", +"2% c #0D2D5D", +"3% c #0F2F61", +"4% c #102F62", +"5% c #113064", +"6% c #123265", +"7% c #0E2D62", +"8% c #0E2D63", +"9% c #102F63", +"0% c #123267", +"a% c #143469", +"b% c #16356C", +"c% c #17376D", +"d% c #18386F", +"e% c #16376C", +"f% c #193A70", +"g% c #183870", +"h% c #14346D", +"i% c #173972", +"j% c #193A74", +"k% c #193A75", +"l% c #1D3F79", +"m% c #193C77", +"n% c #1A3B78", +"o% c #193B79", +"p% c #183A77", +"q% c #1B3C79", +"r% c #1A3C7A", +"s% c #1B3D7A", +"t% c #1B3F7B", +"u% c #1B407E", +"v% c #1A3E7E", +"w% c #1B3F7F", +"x% c #183F7F", +"y% c #1B4182", +"z% c #18407F", +"A% c #163D7F", +"B% c #183F82", +"C% c #11387C", +"D% c #133B7D", +"E% c #153C81", +"F% c #0F367B", +"G% c #10377C", +"H% c #0C367B", +"I% c #062F75", +"J% c #083178", +"K% c #073077", +"L% c #062E72", +"M% c #052C73", +"N% c #052B6F", +"O% c #052C6E", +"P% c #062F72", +"Q% c #052E74", +"R% c #052C70", +"S% c #052D70", +"T% c #052C6F", +"U% c #042B6E", +"V% c #042A6C", +"W% c #042968", +"X% c #042763", +"Y% c #04255B", +"Z% c #05245C", +"`% c #042760", +" & c #052358", +".& c #04245B", +"+& c #032358", +"@& c #022052", +"#& c #032354", +"$& c #032458", +"%& c #032355", +"&& c #032253", +"*& c #042154", +"=& c #031E4E", +"-& c #031F4E", +";& c #041E4C", +">& c #041C48", +",& c #031A44", +"'& c #041B45", +")& c #02193F", +"!& c #02193C", +"~& c #01122C", +"{& c #01112A", +"]& c #01050C", +"^& c #010612", +"/& c #020A18", +"(& c #020711", +"_& c #020A1E", +":& c #020A1D", +"<& c #020B19", +"[& c #030D20", +"}& c #030F25", +"|& c #020F22", +"1& c #03132E", +"2& c #031333", +"3& c #021532", +"4& c #03173D", +"5& c #041C46", +"6& c #041E47", +"7& c #041F49", +"8& c #041D48", +"9& c #031D47", +"0& c #021E4A", +"a& c #041F4C", +"b& c #041F4D", +"c& c #052251", +"d& c #072454", +"e& c #072554", +"f& c #092657", +"g& c #0C2858", +"h& c #082758", +"i& c #0C2A5A", +"j& c #0E2D5D", +"k& c #0D2C5D", +"l& c #0D2A5C", +"m& c #0C2C5F", +"n& c #123165", +"o& c #113166", +"p& c #123066", +"q& c #103065", +"r& c #113267", +"s& c #17366D", +"t& c #13336B", +"u& c #17386E", +"v& c #1A3A72", +"w& c #18376F", +"x& c #17386F", +"y& c #183971", +"z& c #193970", +"A& c #173772", +"B& c #16376F", +"C& c #1A3C74", +"D& c #193973", +"E& c #183A74", +"F& c #163A73", +"G& c #183B76", +"H& c #1B3D79", +"I& c #1B3E7B", +"J& c #193D7A", +"K& c #193E7C", +"L& c #1B3E7E", +"M& c #183E7E", +"N& c #173E7D", +"O& c #19407F", +"P& c #143A7D", +"Q& c #163D82", +"R& c #163E80", +"S& c #163D81", +"T& c #11377C", +"U& c #10377D", +"V& c #0D347A", +"W& c #0C367A", +"X& c #0B367B", +"Y& c #083078", +"Z& c #0A3279", +"`& c #062F74", +" * c #052C71", +".* c #062D71", +"+* c #042C6D", +"@* c #052A69", +"#* c #05255C", +"$* c #05255D", +"%* c #05255E", +"&* c #052760", +"** c #04265E", +"=* c #042357", +"-* c #05245B", +";* c #04235A", +">* c #042255", +",* c #032357", +"'* c #032356", +")* c #032256", +"!* c #022153", +"~* c #03204F", +"{* c #031E4D", +"]* c #021F4E", +"^* c #031F50", +"/* c #041C47", +"(* c #03183F", +"_* c #02173D", +":* c #011431", +"<* c #02030B", +"[* c #00060F", +"}* c #020611", +"|* c #000611", +"1* c #010510", +"2* c #010C1F", +"3* c #010C1D", +"4* c #011027", +"5* c #031029", +"6* c #031028", +"7* c #02112E", +"8* c #03132F", +"9* c #02163A", +"0* c #031737", +"a* c #03193C", +"b* c #061F49", +"c* c #021D47", +"d* c #031D46", +"e* c #051E4A", +"f* c #031F4A", +"g* c #05224D", +"h* c #082552", +"i* c #082452", +"j* c #072250", +"k* c #062352", +"l* c #0D2959", +"m* c #092756", +"n* c #0B2A59", +"o* c #0A2959", +"p* c #0D2C5B", +"q* c #092759", +"r* c #113163", +"s* c #14346B", +"t* c #18376E", +"u* c #15356D", +"v* c #183970", +"w* c #13346C", +"x* c #183A73", +"y* c #163872", +"z* c #183B77", +"A* c #1C3E79", +"B* c #1E407C", +"C* c #183A76", +"D* c #183C78", +"E* c #173A76", +"F* c #183C7A", +"G* c #1D417F", +"H* c #1D407F", +"I* c #173D7B", +"J* c #183F7E", +"K* c #173D80", +"L* c #143C80", +"M* c #0B3479", +"N* c #042D73", +"O* c #052A6D", +"P* c #042B6B", +"Q* c #032A6B", +"R* c #042A69", +"S* c #042868", +"T* c #052660", +"U* c #052359", +"V* c #032258", +"W* c #042051", +"X* c #042256", +"Y* c #02204F", +"Z* c #021F4D", +"`* c #021F4F", +" = c #031C49", +".= c #03173B", +"+= c #021334", +"@= c #011128", +"#= c #03122E", +"$= c #000610", +"%= c #000813", +"&= c #000916", +"*= c #030C20", +"== c #030A1B", +"-= c #030F27", +";= c #010F23", +">= c #02102C", +",= c #02173C", +"'= c #041C44", +")= c #02183B", +"!= c #031D45", +"~= c #051F4B", +"{= c #031E49", +"]= c #072350", +"^= c #072450", +"/= c #092452", +"(= c #092654", +"_= c #082857", +":= c #092859", +"<= c #0B295A", +"[= c #0F2D5F", +"}= c #0E2D60", +"|= c #133266", +"1= c #123266", +"2= c #113065", +"3= c #103166", +"4= c #16366E", +"5= c #14356C", +"6= c #1A3972", +"7= c #1A3A73", +"8= c #193872", +"9= c #183972", +"0= c #1B3C75", +"a= c #1B3B76", +"b= c #1C3F79", +"c= c #1A3D78", +"d= c #1D407B", +"e= c #1E4280", +"f= c #1A3F7E", +"g= c #1D4384", +"h= c #1B4283", +"i= c #194081", +"j= c #193F81", +"k= c #133A7E", +"l= c #123B7D", +"m= c #0F367C", +"n= c #0C367C", +"o= c #072E73", +"p= c #073075", +"q= c #052E73", +"r= c #052B70", +"s= c #042C71", +"t= c #062E76", +"u= c #042D70", +"v= c #052868", +"w= c #052A6C", +"x= c #042863", +"y= c #04255F", +"z= c #032359", +"A= c #042254", +"B= c #031B47", +"C= c #041C49", +"D= c #031D4C", +"E= c #031231", +"F= c #02122B", +"G= c #00040B", +"H= c #010812", +"I= c #020A17", +"J= c #010A1B", +"K= c #020D23", +"L= c #020E21", +"M= c #02102B", +"N= c #03112C", +"O= c #031738", +"P= c #041F4A", +"Q= c #031E48", +"R= c #03204D", +"S= c #0A2757", +"T= c #0B2857", +"U= c #0D2A59", +"V= c #0D2A5A", +"W= c #0E2D5C", +"X= c #0E2D5E", +"Y= c #0B2B5D", +"Z= c #0F2F60", +"`= c #113165", +" - c #123268", +".- c #16356B", +"+- c #18386E", +"@- c #17386D", +"#- c #17376E", +"$- c #193971", +"%- c #173870", +"&- c #1A3974", +"*- c #173971", +"=- c #193C75", +"-- c #1B3E77", +";- c #1C3F7B", +">- c #1E417D", +",- c #1C417F", +"'- c #1B3F7E", +")- c #1B417F", +"!- c #163C7C", +"~- c #12397B", +"{- c #173E83", +"]- c #153B7F", +"^- c #123A7C", +"/- c #143C81", +"(- c #0F377B", +"_- c #0C377C", +":- c #0B3278", +"<- c #083176", +"[- c #063075", +"}- c #052A6B", +"|- c #032967", +"1- c #032966", +"2- c #032761", +"3- c #031F51", +"4- c #02183F", +"5- c #020712", +"6- c #010B1C", +"7- c #010A17", +"8- c #020916", +"9- c #030D22", +"0- c #010E22", +"a- c #011330", +"b- c #031230", +"c- c #031430", +"d- c #021635", +"e- c #02183E", +"f- c #01183D", +"g- c #031E47", +"h- c #021B41", +"i- c #052250", +"j- c #042050", +"k- c #0B2B59", +"l- c #0F2E5D", +"m- c #102E60", +"n- c #0F2E61", +"o- c #0E2D61", +"p- c #123368", +"q- c #19386F", +"r- c #183A72", +"s- c #173A73", +"t- c #1B3D7B", +"u- c #1D3F7B", +"v- c #1B3F7A", +"w- c #1F417D", +"x- c #1B3E7D", +"y- c #193E7E", +"z- c #1A3F7F", +"A- c #1B4181", +"B- c #194083", +"C- c #153C80", +"D- c #082F75", +"E- c #063176", +"F- c #042D74", +"G- c #052E72", +"H- c #042D71", +"I- c #042B6F", +"J- c #032968", +"K- c #032864", +"L- c #052865", +"M- c #021E4D", +"N- c #041F4F", +"O- c #041D4B", +"P- c #041C4A", +"Q- c #021D49", +"R- c #02050F", +"S- c #02040C", +"T- c #000815", +"U- c #010A1C", +"V- c #030B1F", +"W- c #031A3D", +"X- c #051F4C", +"Y- c #072351", +"Z- c #0B2756", +"`- c #0E2C5D", +" ; c #102F66", +".; c #18396F", +"+; c #1A3B72", +"@; c #1C3C75", +"#; c #1B3B75", +"$; c #183973", +"%; c #1A3B76", +"&; c #193B76", +"*; c #1C3F7E", +"=; c #173D7D", +"-; c #193E7F", +";; c #143C7F", +">; c #123A7D", +",; c #0D3579", +"'; c #0A3277", +"); c #093179", +"!; c #062D74", +"~; c #083077", +"{; c #052B6C", +"]; c #052A6A", +"^; c #052864", +"/; c #032865", +"(; c #052763", +"_; c #03255D", +":; c #042152", +"<; c #031943", +"[; c #04173D", +"}; c #031537", +"|; c #021333", +"1; c #011026", +"2; c #011129", +"3; c #011432", +"4; c #011636", +"5; c #041B42", +"6; c #031B48", +"7; c #021C46", +"8; c #04204B", +"9; c #06214E", +"0; c #072451", +"a; c #082551", +"b; c #0E2B5B", +"c; c #0F2E60", +"d; c #18376D", +"e; c #18396E", +"f; c #1A3970", +"g; c #17366F", +"h; c #193A72", +"i; c #1D407D", +"j; c #1A3D7B", +"k; c #1D4280", +"l; c #1C4281", +"m; c #193F82", +"n; c #13397C", +"o; c #143A7E", +"p; c #0B3378", +"q; c #093378", +"r; c #062D72", +"s; c #03296A", +"t; c #032B6B", +"u; c #052765", +"v; c #052764", +"w; c #04245C", +"x; c #05255A", +"y; c #032257", +"z; c #011638", +"A; c #000612", +"B; c #030C1C", +"C; c #030E23", +"D; c #030F29", +"E; c #01122D", +"F; c #04183F", +"G; c #04193D", +"H; c #051E49", +"I; c #05234E", +"J; c #0B2858", +"K; c #0C2A59", +"L; c #0F2E5C", +"M; c #102F61", +"N; c #102F60", +"O; c #133366", +"P; c #113063", +"Q; c #133368", +"R; c #13336A", +"S; c #1C3D78", +"T; c #193D77", +"U; c #1C407F", +"V; c #1A4181", +"W; c #18407E", +"X; c #13397E", +"Y; c #143D80", +"Z; c #143A80", +"`; c #0E357B", +" > c #073076", +".> c #062C72", +"+> c #062B6F", +"@> c #052969", +"#> c #031A45", +"$> c #031538", +"%> c #01122E", +"&> c #02112F", +"*> c #020715", +"=> c #010B19", +"-> c #030A1A", +";> c #020819", +">> c #010C20", +",> c #010F25", +"'> c #021229", +")> c #03112B", +"!> c #04173A", +"~> c #031F4C", +"{> c #082451", +"]> c #0A2654", +"^> c #0D2858", +"/> c #0A2756", +"(> c #0D2B5B", +"_> c #0B2A5C", +":> c #0F2D60", +"<> c #133164", +"[> c #123263", +"}> c #16346B", +"|> c #17356C", +"1> c #17366C", +"2> c #193A71", +"3> c #1B3A73", +"4> c #1B3C76", +"5> c #1C3F78", +"6> c #1D4381", +"7> c #184080", +"8> c #153B7C", +"9> c #133A7B", +"0> c #133B7E", +"a> c #153D82", +"b> c #0E377D", +"c> c #073277", +"d> c #042D72", +"e> c #052E75", +"f> c #052F72", +"g> c #032969", +"h> c #052662", +"i> c #022150", +"j> c #021D4B", +"k> c #041E4D", +"l> c #031942", +"m> c #04163A", +"n> c #011434", +"o> c #011331", +"p> c #03091B", +"q> c #010C1E", +"r> c #030B20", +"s> c #020F23", +"t> c #021634", +"u> c #051C47", +"v> c #021E49", +"w> c #0B2755", +"x> c #0C2958", +"y> c #0C2A5B", +"z> c #0D2C5C", +"A> c #112F61", +"B> c #0F2F5F", +"C> c #123164", +"D> c #143268", +"E> c #16356D", +"F> c #193A73", +"G> c #193B73", +"H> c #183A75", +"I> c #1A3D76", +"J> c #1C3E7C", +"K> c #1D417E", +"L> c #19407E", +"M> c #183E80", +"N> c #1A4182", +"O> c #12397D", +"P> c #133B7F", +"Q> c #0A357A", +"R> c #0A3178", +"S> c #072F74", +"T> c #032C6E", +"U> c #05296A", +"V> c #031840", +"W> c #041A44", +"X> c #011536", +"Y> c #020C1C", +"Z> c #020D24", +"`> c #041E48", +" , c #05204B", +"., c #05214C", +"+, c #07244F", +"@, c #102E5F", +"#, c #102E62", +"$, c #103062", +"%, c #1D407A", +"&, c #1D4180", +"*, c #1C4080", +"=, c #1C4282", +"-, c #0D387D", +";, c #0B357B", +">, c #042C6C", +",, c #010511", +"', c #01040F", +"), c #01040E", +"!, c #02050E", +"~, c #02040D", +"{, c #01030B", +"], c #010309", +"^, c #010207", +"/, c #01030C", +"(, c #02091C", +"_, c #020B20", +":, c #020E27", +"<, c #020F29", +"[, c #041940", +"}, c #00050E", +"|, c #000917", +"1, c #030D23", +"2, c #010F24", +"3, c #010F2A", +"4, c #021231", +"5, c #011635", +"6, c #021942", +"7, c #041C43", +"8, c #021B45", +"9, c #05204A", +"0, c #06214D", +"a, c #112F62", +"b, c #123264", +"c, c #133267", +"d, c #103066", +"e, c #1A3B73", +"f, c #1C3F7A", +"g, c #1E407D", +"h, c #1D407E", +"i, c #1E427F", +"j, c #1B407D", +"k, c #183F81", +"l, c #052F75", +"m, c #083075", +"n, c #052968", +"o, c #042663", +"p, c #021A42", +"q, c #010206", +"r, c #010105", +"s, c #010103", +"t, c #000002", +"u, c #000001", +"v, c #010104", +"w, c #000101", +"x, c #010102", +"y, c #000000", +"z, c #010101", +"A, c #010002", +"B, c #031334", +"C, c #011433", +"D, c #010B1B", +"E, c #030F23", +"F, c #021A41", +"G, c #072452", +"H, c #0E2A5A", +"I, c #0A2A59", +"J, c #082757", +"K, c #123366", +"L, c #193870", +"M, c #1A3A71", +"N, c #163971", +"O, c #173B75", +"P, c #1C4181", +"Q, c #1D4080", +"R, c #183E81", +"S, c #193F83", +"T, c #153E80", +"U, c #063076", +"V, c #082F76", +"W, c #072E74", +"X, c #042765", +"Y, c #052761", +"Z, c #02060E", +"`, c #010208", +" ' c #000102", +".' c #000100", +"+' c #010204", +"@' c #000003", +"#' c #010001", +"$' c #010615", +"%' c #021943", +"&' c #021436", +"*' c #000811", +"=' c #010811", +"-' c #021C44", +";' c #041A40", +">' c #051D48", +",' c #062252", +"'' c #072353", +")' c #0E2C5C", +"!' c #103061", +"~' c #143466", +"{' c #133367", +"]' c #143368", +"^' c #19386E", +"/' c #193A6F", +"(' c #193871", +"_' c #1C3C76", +":' c #1D3C76", +"<' c #1C3E78", +"[' c #1A3E78", +"}' c #1E4180", +"|' c #1C4180", +"1' c #1A3F80", +"2' c #1A4180", +"3' c #032A69", +"4' c #032866", +"5' c #020207", +"6' c #010205", +"7' c #020203", +"8' c #020204", +"9' c #021539", +"0' c #01060C", +"a' c #030D1F", +"b' c #021128", +"c' c #011532", +"d' c #01183B", +"e' c #051E48", +"f' c #07224F", +"g' c #082450", +"h' c #0E2C5B", +"i' c #133168", +"j' c #1C3D77", +"k' c #1E417B", +"l' c #1D417D", +"m' c #173C7A", +"n' c #194080", +"o' c #163C7F", +"p' c #093076", +"q' c #042E73", +"r' c #04245D", +"s' c #02040A", +"t' c #010D22", +"u' c #051F49", +"v' c #092551", +"w' c #082554", +"x' c #153469", +"y' c #153369", +"z' c #18386D", +"A' c #1B3A75", +"B' c #1C3E76", +"C' c #1D3D76", +"D' c #1D4079", +"E' c #1D417B", +"F' c #163E7C", +"G' c #0E387D", +"H' c #0C337A", +"I' c #052D6F", +"J' c #032A6A", +"K' c #042766", +"L' c #011534", +"M' c #030D1E", +"N' c #030B1B", +"O' c #030E25", +"P' c #021737", +"Q' c #02183A", +"R' c #031A3E", +"S' c #031C43", +"T' c #021B44", +"U' c #07234F", +"V' c #092553", +"W' c #0F2B5B", +"X' c #113162", +"Y' c #173771", +"Z' c #1B3C77", +"`' c #1E407A", +" ) c #1B3D78", +".) c #1E427E", +"+) c #1E4381", +"@) c #1D4382", +"#) c #153D81", +"$) c #123A80", +"%) c #0C357B", +"&) c #072F77", +"*) c #010308", +"=) c #020105", +"-) c #030F24", +";) c #010F28", +">) c #011533", +",) c #0D2B5A", +"') c #123062", +")) c #112F63", +"!) c #0F3065", +"~) c #1E3E77", +"{) c #1C3B75", +"]) c #1F437F", +"^) c #1F4381", +"/) c #1D4281", +"() c #1B4285", +"_) c #173F81", +":) c #083074", +"<) c #042E72", +"[) c #020206", +"}) c #010003", +"|) c #010004", +"1) c #00050D", +"2) c #00070F", +"3) c #011535", +"4) c #04183D", +"5) c #04204A", +"6) c #06224D", +"7) c #082350", +"8) c #0F2C5B", +"9) c #1A396F", +"0) c #19396F", +"a) c #1C3D72", +"b) c #1D3D75", +"c) c #1B3C74", +"d) c #1A3B75", +"e) c #173F82", +"f) c #0E357A", +"g) c #0E377C", +"h) c #010613", +"i) c #02030A", +"j) c #020D25", +"k) c #00060E", +"l) c #02050B", +"m) c #01132F", +"n) c #041739", +"o) c #021A43", +"p) c #021B43", +"q) c #0A2753", +"r) c #0E2A59", +"s) c #0E2B5A", +"t) c #113062", +"u) c #123065", +"v) c #16346A", +"w) c #15336A", +"x) c #17366B", +"y) c #1C3C74", +"z) c #1C3B74", +"A) c #1E417A", +"B) c #1D3F7A", +"C) c #1B4080", +"D) c #1B4282", +"E) c #173D7F", +"F) c #163E81", +"G) c #042B70", +"H) c #020104", +"I) c #02081A", +"J) c #010A16", +"K) c #021736", +"L) c #04193E", +"M) c #082553", +"N) c #0F2D5E", +"O) c #0E2C60", +"P) c #1A3B70", +"Q) c #1D3E77", +"R) c #1E3F7A", +"S) c #1C3F7F", +"T) c #020613", +"U) c #020612", +"V) c #020D1D", +"W) c #01122B", +"X) c #051C45", +"Y) c #092957", +"Z) c #163568", +"`) c #1A3B74", +" ! c #1B3A74", +".! c #1E407B", +"+! c #1E417E", +"@! c #1F4382", +"#! c #173F7D", +"$! c #0F367D", +"%! c #073078", +"&! c #042C73", +"*! c #042D6F", +"=! c #032A6C", +"-! c #020103", +";! c #041A43", +">! c #011537", +",! c #031027", +"'! c #06214C", +")! c #092653", +"!! c #092652", +"~! c #112F5F", +"{! c #0F2E5E", +"]! c #143266", +"^! c #153568", +"/! c #18376B", +"(! c #1A3A70", +"_! c #1C3D75", +":! c #1D3F77", +"~ c #204482", +",~ c #062F76", +"'~ c #052867", +")~ c #020409", +"!~ c #01091B", +"~~ c #0E2C5F", +"{~ c #143467", +"]~ c #1B3A71", +"^~ c #1C3D73", +"/~ c #1D3E76", +"(~ c #1E3F77", +"_~ c #1F427C", +":~ c #21447E", +"<~ c #093176", +"[~ c #062C70", +"}~ c #052E76", +"|~ c #052C6D", +"1~ c #051D46", +"2~ c #07204A", +"3~ c #051E47", +"4~ c #0D2857", +"5~ c #0D2C5A", +"6~ c #112E60", +"7~ c #122F61", +"8~ c #133265", +"9~ c #153367", +"0~ c #133165", +"a~ c #143468", +"b~ c #163469", +"c~ c #1E4078", +"d~ c #1E3E79", +"e~ c #20427F", +"f~ c #0A3379", +"g~ c #020309", +"h~ c #041638", +"i~ c #041639", +"j~ c #030F28", +"k~ c #061E4A", +"l~ c #07224E", +"m~ c #0A2653", +"n~ c #0A2856", +"o~ c #123160", +"p~ c #112F60", +"q~ c #123064", +"r~ c #153468", +"s~ c #1C3C72", +"t~ c #1D3C77", +"u~ c #1F4380", +"v~ c #1E4281", +"w~ c #1A4184", +"x~ c #0B367A", +"y~ c #0D347B", +"z~ c #020307", +"A~ c #030E21", +"B~ c #01173A", +"C~ c #031C42", +"D~ c #041D45", +"E~ c #041B47", +"F~ c #0F2B5A", +"G~ c #112D5D", +"H~ c #102F5E", +"I~ c #102D5D", +"J~ c #0F2D61", +"K~ c #123063", +"L~ c #113061", +"M~ c #143366", +"N~ c #17376A", +"O~ c #1B3B72", +"P~ c #1B3D76", +"Q~ c #1D3E78", +"R~ c #194181", +"S~ c #10387C", +"T~ c #052A6E", +"U~ c #03255F", +"V~ c #010B1A", +"W~ c #021840", +"X~ c #0C2855", +"Y~ c #082352", +"Z~ c #0B2856", +"`~ c #122E5E", +" { c #153467", +".{ c #153569", +"+{ c #1B3A6F", +"@{ c #1F3F78", +"#{ c #1F427F", +"${ c #032867", +"%{ c #010106", +"&{ c #021633", +"*{ c #03173E", +"={ c #031839", +"-{ c #041E46", +";{ c #06204D", +">{ c #0D2D5B", +",{ c #0F2C5C", +"'{ c #102D5C", +"){ c #133264", +"!{ c #18366C", +"~{ c #1B3B73", +"{{ c #1C3F77", +"]{ c #1E417C", +"^{ c #1D3F7D", +"/{ c #1B4281", +"({ c #153B7A", +"_{ c #0C3378", +":{ c #0A367A", +"<{ c #010409", +"[{ c #010B1D", +"}{ c #010C21", +"|{ c #03112D", +"1{ c #092451", +"2{ c #19376D", +"3{ c #1D3C73", +"4{ c #1E3D77", +"5{ c #1D4282", +"6{ c #1E4485", +"7{ c #19417F", +"8{ c #143D7F", +"9{ c #13397D", +"0{ c #0A347A", +"a{ c #052B6B", +"b{ c #000816", +"c{ c #010E24", +"d{ c #031532", +"e{ c #051D49", +"f{ c #052049", +"g{ c #06204B", +"h{ c #08234F", +"i{ c #0A2652", +"j{ c #0B2653", +"k{ c #102F5F", +"l{ c #123163", +"m{ c #143264", +"n{ c #163569", +"o{ c #1D3E75", +"p{ c #1C3B76", +"q{ c #1F3F7A", +"r{ c #1D4078", +"s{ c #1E4382", +"t{ c #11397D", +"u{ c #042E74", +"v{ c #041A41", +"w{ c #061F48", +"x{ c #06224C", +"y{ c #0A2552", +"z{ c #0A2754", +"A{ c #0B2754", +"B{ c #0C2756", +"C{ c #112D5C", +"D{ c #0F2D5C", +"E{ c #102E5E", +"F{ c #1B3A70", +"G{ c #1E3E76", +"H{ c #1D3D74", +"I{ c #1D3C75", +"J{ c #1A3D75", +"K{ c #1E3F79", +"L{ c #204381", +"M{ c #1F4482", +"N{ c #183E84", +"O{ c #0E357C", +"P{ c #052967", +"Q{ c #030E22", +"R{ c #02193B", +"S{ c #08224D", +"T{ c #07234E", +"U{ c #0B2855", +"V{ c #102C5B", +"W{ c #102C5C", +"X{ c #163668", +"Y{ c #1B3B71", +"Z{ c #1C3B71", +"`{ c #1D3D77", +" ] c #20437D", +".] c #1E4181", +"+] c #03255E", +"@] c #020205", +"#] c #02122A", +"$] c #031129", +"%] c #05214B", +"&] c #0A2553", +"*] c #0C2C5A", +"=] c #163468", +"-] c #1A386F", +";] c #1C3B72", +">] c #20427D", +",] c #204380", +"'] c #1E4282", +")] c #183F83", +"!] c #083277", +"~] c #061F47", +"{] c #06204A", +"]] c #0B2654", +"^] c #0D2957", +"/] c #153366", +"(] c #122F62", +"_] c #153269", +":] c #163669", +"<] c #1A386E", +"[] c #1D3D73", +"}] c #1B3E75", +"|] c #1A417F", +"1] c #093277", +"2] c #000915", +"3] c #010D1E", +"4] c #061E48", +"5] c #051F47", +"6] c #0E2E5D", +"7] c #112F5E", +"8] c #11305F", +"9] c #143265", +"0] c #17376B", +"a] c #17366A", +"b] c #1E4179", +"c] c #1F417C", +"d] c #214380", +"e] c #073176", +"f] c #020714", +"g] c #020106", +"h] c #011430", +"i] c #0B2753", +"j] c #092651", +"k] c #0C2856", +"l] c #112E5D", +"m] c #0D2D5C", +"n] c #122F63", +"o] c #18386B", +"p] c #1C3B73", +"q] c #1E3D79", +"r] c #1D3E79", +"s] c #1F427D", +"t] c #204480", +"u] c #1E4482", +"v] c #0A3177", +"w] c #083278", +"x] c #053076", +"y] c #032762", +"z] c #02070F", +"A] c #07204B", +"B] c #0E2958", +"C] c #123162", +"D] c #1D3C74", +"E] c #1B3C73", +"F] c #1F3F77", +"G] c #1F4279", +"H] c #042B69", +"I] c #020B21", +"J] c #010C1C", +"K] c #030F22", +"L] c #061E47", +"M] c #061F4B", +"N] c #0B2854", +"O] c #123061", +"P] c #133064", +"Q] c #173569", +"R] c #17356A", +"S] c #1D3E74", +"T] c #1F3F75", +"U] c #1E3D76", +"V] c #1F3F79", +"W] c #1F407B", +"X] c #20427E", +"Y] c #20437E", +"Z] c #1D4181", +"`] c #1A4083", +" ^ c #153B80", +".^ c #0E367A", +"+^ c #093278", +"@^ c #083378", +"#^ c #00060D", +"$^ c #051F48", +"%^ c #0A2551", +"&^ c #132F5F", +"*^ c #102E5D", +"=^ c #18366A", +"-^ c #18366B", +";^ c #16366A", +">^ c #15356A", +",^ c #1C3D74", +"'^ c #1E4079", +")^ c #224482", +"!^ c #214582", +"~^ c #1D427F", +"{^ c #193E82", +"]^ c #00030A", +"^^ c #051E46", +"/^ c #0F2F5E", +"(^ c #153368", +"_^ c #18376C", +":^ c #1B3970", +"<^ c #1E3F76", +"[^ c #1F427A", +"}^ c #1E427C", +"|^ c #1E4483", +"1^ c #183D81", +"2^ c #000309", +"3^ c #04173C", +"4^ c #051C48", +"5^ c #071F4B", +"6^ c #08234E", +"7^ c #06204C", +"8^ c #09244F", +"9^ c #072550", +"0^ c #0F2A59", +"a^ c #1A396E", +"b^ c #1B396F", +"c^ c #1F4281", +"d^ c #0B3279", +"e^ c #020308", +"f^ c #03102A", +"g^ c #071E4A", +"h^ c #203F78", +"i^ c #1E3F78", +"j^ c #1F427B", +"k^ c #214581", +"l^ c #214583", +"m^ c #1B4284", +"n^ c #021025", +"o^ c #02142F", +"p^ c #061E49", +"q^ c #071F4A", +"r^ c #041F48", +"s^ c #092450", +"t^ c #12305F", +"u^ c #19376B", +"v^ c #18386C", +"w^ c #19386D", +"x^ c #1D3E73", +"y^ c #204079", +"z^ c #203F7A", +"A^ c #204280", +"B^ c #1A4280", +"C^ c #073177", +"D^ c #010E27", +"E^ c #041738", +"F^ c #041A3E", +"G^ c #021D45", +"H^ c #0C2754", +"I^ c #133062", +"J^ c #1D3C72", +"K^ c #1E3E74", +"L^ c #203F79", +"M^ c #204179", +"N^ c #20437F", +"O^ c #1F4282", +"P^ c #1E4383", +"Q^ c #113A7D", +"R^ c #082F77", +"S^ c #021023", +"T^ c #03142F", +"U^ c #031736", +"V^ c #021A3E", +"W^ c #072049", +"X^ c #07234D", +"Y^ c #112E5E", +"Z^ c #1C3A71", +"`^ c #1E3D74", +" / c #1D3F78", +"./ c #1E417F", +"+/ c #1A4084", +"@/ c #0C3478", +"#/ c #0B347A", +"$/ c #053075", +"%/ c #03112E", +"&/ c #021B40", +"*/ c #031F47", +"=/ c #0A2550", +"-/ c #0D2955", +";/ c #0F2C5A", +">/ c #14305F", +",/ c #153365", +"'/ c #143365", +")/ c #18376A", +"!/ c #1F3E77", +"~/ c #20447F", +"{/ c #224481", +"]/ c #214482", +"^/ c #1B4183", +"// c #0C2854", +"(/ c #153266", +"_/ c #173669", +":/ c #1F4079", +"( c #E4DB1B", +",( c #DAD21F", +"'( c #C2BB25", +")( c #908C31", +"!( c #31353D", +"~( c #041B40", +"{( c #222A3F", +"]( c #878438", +"^( c #BFB82C", +"/( c #D9D023", +"(( c #E4DB1D", +"_( c #E3DA1F", +":( c #DBD322", +"<( c #C9C129", +"[( c #ABA532", +"}( c #6F6D3D", +"|( c #262F45", +"1( c #061D47", +"2( c #2A3347", +"3( c #32384A", +"4( c #31394A", +"5( c #2A344A", +"6( c #1F2D4E", +"7( c #323C50", +"8( c #323B4F", +"9( c #333C51", +"0( c #152A54", +"a( c #203154", +"b( c #303C54", +"c( c #333D56", +"d( c #333E57", +"e( c #2C3956", +"f( c #122F5F", +"g( c #10305E", +"h( c #133161", +"i( c #1E3E75", +"j( c #204383", +"k( c #21252A", +"l( c #E6DD14", +"m( c #F6EC0D", +"n( c #6A672A", +"o( c #7D7A33", +"p( c #DAD11F", +"q( c #E7DE1A", +"r( c #9A9531", +"s( c #1C253B", +"t( c #041B41", +"u( c #7E7B37", +"v( c #DFD620", +"w( c #F8EE0D", +"x( c #E5DC1D", +"y( c #B2AC32", +"z( c #3E4142", +"A( c #051D4A", +"B( c #112349", +"C( c #C5BE2E", +"D( c #E9E01D", +"E( c #43474A", +"F( c #12264E", +"G( c #BFB935", +"H( c #ECE21D", +"I( c #4C4F4C", +"J( c #424951", +"K( c #7F7E4A", +"L( c #B3AD3E", +"M( c #DAD22D", +"N( c #F4EA14", +"O( c #DAD22C", +"P( c #1B2D56", +"Q( c #123060", +"R( c #1A396C", +"S( c #1F417A", +"T( c #1F407A", +"U( c #1E427D", +"V( c #093579", +"W( c #032A6D", +"X( c #010203", +"Y( c #222526", +"Z( c #6A6728", +"`( c #161F32", +" _ c #A8A22B", +"._ c #F3E910", +"+_ c #F7ED0E", +"@_ c #C6BF27", +"#_ c #2E3440", +"$_ c #928E38", +"%_ c #F2E912", +"&_ c #74733F", +"*_ c #062049", +"=_ c #08204C", +"-_ c #5C5D44", +";_ c #F1E716", +">_ c #B4AE38", +",_ c #6E6E49", +"'_ c #F3EA14", +")_ c #A8A33F", +"!_ c #70704D", +"~_ c #D2CA2F", +"{_ c #ECE21E", +"]_ c #F7ED0F", +"^_ c #DBD32D", +"/_ c #133061", +"(_ c #153465", +"__ c #19376A", +":_ c #19396C", +"<_ c #19386C", +"[_ c #1F4076", +"}_ c #1F3E75", +"|_ c #1F417B", +"1_ c #1F3E79", +"2_ c #20437C", +"3_ c #020208", +"4_ c #021C47", +"5_ c #00050C", +"6_ c #212529", +"7_ c #F7ED0D", +"8_ c #6A6727", +"9_ c #A6A02C", +"0_ c #E7DD1A", +"a_ c #C2BA27", +"b_ c #A8A22F", +"c_ c #A49F30", +"d_ c #B9B22B", +"e_ c #DDD51C", +"f_ c #C9C227", +"g_ c #222A3E", +"h_ c #696738", +"i_ c #F0E714", +"j_ c #E7DE1C", +"k_ c #C5BD2B", +"l_ c #A29C32", +"m_ c #AEA82F", +"n_ c #CAC32C", +"o_ c #E8DF1A", +"p_ c #73713D", +"q_ c #B5AF37", +"r_ c #F0E717", +"s_ c #5C5D47", +"t_ c #18294C", +"u_ c #D1C92E", +"v_ c #E3DA23", +"w_ c #353E51", +"x_ c #999544", +"y_ c #1C2F58", +"z_ c #133160", +"A_ c #163466", +"B_ c #19376C", +"C_ c #1F3E74", +"D_ c #1E3F74", +"E_ c #1F4078", +"F_ c #21407A", +"G_ c #1A3F83", +"H_ c #5E5C2F", +"I_ c #65622A", +"J_ c #656224", +"K_ c #26292C", +"L_ c #817E30", +"M_ c #F4EA10", +"N_ c #F5EB0F", +"O_ c #ADA72E", +"P_ c #3E413C", +"Q_ c #262D3A", +"R_ c #8D8833", +"S_ c #ECE216", +"T_ c #ACA62F", +"U_ c #0F1F40", +"V_ c #CDC526", +"W_ c #F6EC0E", +"X_ c #B5AE2F", +"Y_ c #414441", +"Z_ c #3F4243", +"`_ c #8F8B39", +" : c #DDD522", +".: c #F5EC0F", +"+: c #08214A", +"@: c #434748", +"#: c #C6BF30", +"$: c #11254C", +"%: c #888542", +"&: c #F6EC0F", +"*: c #928F42", +"=: c #999546", +"-: c #F1E817", +";: c #D4CC30", +">: c #A9A442", +",: c #C7BF36", +"': c #132E5F", +"): c #143261", +"!: c #122F60", +"~: c #133263", +"{: c #113160", +"]: c #153264", +"^: c #173468", +"/: c #1D4283", +"(: c #1C4182", +"_: c #183E82", +":: c #153E81", +"<: c #052966", +"[: c #020306", +"}: c #333631", +"|: c #E2D919", +"1: c #97922A", +"2: c #011737", +"3: c #6A6837", +"4: c #EBE216", +"5: c #F1E812", +"6: c #666535", +"7: c #4F503C", +"8: c #F3E911", +"9: c #C0B92C", +"0: c #0E1F40", +"a: c #051D45", +"b: c #041C42", +"c: c #1D2844", +"d: c #9B9637", +"e: c #61603F", +"f: c #A19C3B", +"g: c #F5EB11", +"h: c #767546", +"i: c #2B364D", +"j: c #DFD625", +"k: c #D7CF2B", +"l: c #1F2E4E", +"m: c #838148", +"n: c #BBB53C", +"o: c #8B8848", +"p: c #3B4351", +"q: c #B6B03E", +"r: c #1B2E56", +"s: c #102E5C", +"t: c #21417A", +"u: c #20417A", +"v: c #163C7E", +"w: c #163C80", +"x: c #052E71", +"y: c #000103", +"z: c #010E20", +"A: c #031634", +"B: c #A29C2A", +"C: c #B9B225", +"D: c #0E1C37", +"E: c #8C8833", +"F: c #C8C028", +"G: c #0F1D3B", +"H: c #8E8937", +"I: c #5F5E3B", +"J: c #061D46", +"K: c #2E3649", +"L: c #DFD724", +"M: c #D5CD2A", +"N: c #1E2D4D", +"O: c #A09B3C", +"P: c #F5EC11", +"Q: c #7A7847", +"R: c #08244E", +"S: c #0C2753", +"T: c #B6B03C", +"U: c #1C2F57", +"V: c #0F2B59", +"W: c #122D5C", +"X: c #122D5D", +"Y: c #20427B", +"Z: c #1F4179", +"`: c #234682", +" < c #214480", +".< c #595619", +"+< c #9D9717", +"@< c #BEB715", +"#< c #CAC216", +"$< c #C6BE14", +"%< c #AFA816", +"&< c #78731A", +"*< c #0D1420", +"=< c #757124", +"-< c #B2AB1C", +";< c #C8C01A", +">< c #C8C018", +",< c #B0A91D", +"'< c #716E26", +")< c #011736", +"!< c #212736", +"~< c #E1D81A", +"{< c #E9E016", +"]< c #414236", +"^< c #16223A", +"/< c #CFC726", +"(< c #58573B", +"_< c #E9E01A", +":< c #262C3A", +"<< c #071E48", +"[< c #8A8740", +"}< c #8F8B3F", +"|< c #46494A", +"1< c #E9E01E", +"2< c #C8C133", +"3< c #11254D", +"4< c #0B2552", +"5< c #143062", +"6< c #1A386C", +"7< c #1E3D73", +"8< c #1F4383", +"9< c #193E80", +"0< c #030E26", +"a< c #36361C", +"b< c #BAB216", +"c< c #F0E60D", +"d< c #F5EB0D", +"e< c #D2CA12", +"f< c #57551F", +"g< c #ABA517", +"h< c #EAE110", +"i< c #EAE111", +"j< c #EAE10F", +"k< c #CBC317", +"l< c #0D1726", +"m< c #2A2C24", +"n< c #E5DC13", +"o< c #E8DF12", +"p< c #40402A", +"q< c #363726", +"r< c #C5BD1A", +"s< c #F4EA0E", +"t< c #BCB41E", +"u< c #212528", +"v< c #21262C", +"w< c #D9D118", +"x< c #EAE113", +"y< c #E8DF13", +"z< c #636129", +"A< c #262A2D", +"B< c #D6CD1A", +"C< c #C6BF1F", +"D< c #162033", +"E< c #6E6D31", +"F< c #E8DF16", +"G< c #EAE115", +"H< c #EAE016", +"I< c #95902B", +"J< c #747033", +"K< c #B1AA2A", +"L< c #817D37", +"M< c #A6A033", +"N< c #AFA931", +"O< c #E6DC1A", +"P< c #212A3F", +"Q< c #06214A", +"R< c #1E2D4C", +"S< c #D3CB2C", +"T< c #E2D923", +"U< c #2E374B", +"V< c #B5AF38", +"W< c #606048", +"X< c #DBD32C", +"Y< c #1C2E56", +"Z< c #143060", +"`< c #133262", +" [ c #133060", +".[ c #173568", +"+[ c #1A396D", +"@[ c #20427A", +"#[ c #21437D", +"$[ c #22457F", +"%[ c #214381", +"&[ c #010306", +"*[ c #030408", +"=[ c #00040C", +"-[ c #49471D", +";[ c #D9D012", +">[ c #E7DD10", +",[ c #615D1B", +"'[ c #B5AE17", +")[ c #D7CF15", +"![ c #0E1725", +"~[ c #2D2E23", +"{[ c #F2E90E", +"][ c #F5EC0D", +"^[ c #504E22", +"/[ c #D0C818", +"([ c #B7B01D", +"_[ c #0E1623", +":[ c #21262D", +"<[ c #E6DD16", +"[[ c #8C8728", +"}[ c #8D882A", +"|[ c #D7CF1C", +"1[ c #DDD419", +"2[ c #292D31", +"3[ c #011639", +"4[ c #AFA826", +"5[ c #F5EC0E", +"6[ c #656335", +"7[ c #262E3D", +"8[ c #D2CA22", +"9[ c #0E1E3F", +"0[ c #A9A331", +"a[ c #F1E714", +"b[ c #363A3D", +"c[ c #041C41", +"d[ c #051D44", +"e[ c #051B45", +"f[ c #071F48", +"g[ c #07214B", +"h[ c #717044", +"i[ c #F4EA12", +"j[ c #A5A03C", +"k[ c #5F6047", +"l[ c #F1E717", +"m[ c #B7B138", +"n[ c #092350", +"o[ c #0D2855", +"p[ c #B6B03D", +"q[ c #1B2D54", +"r[ c #102F5D", +"s[ c #112C5C", +"t[ c #132F5E", +"u[ c #143262", +"v[ c #1B396D", +"w[ c #1A3A6E", +"x[ c #1A3A6F", +"y[ c #1E3D75", +"z[ c #20407B", +"A[ c #1C4381", +"B[ c #093379", +"C[ c #042C72", +"D[ c #020209", +"E[ c #041A45", +"F[ c #21241F", +"G[ c #D3CA13", +"H[ c #F0E60E", +"I[ c #D1C913", +"J[ c #BEB616", +"K[ c #C5BD15", +"L[ c #DCD312", +"M[ c #2D2E20", +"N[ c #B1AA18", +"O[ c #F2E80E", +"P[ c #D7CF16", +"Q[ c #2D2E21", +"R[ c #BAB31A", +"S[ c #E6DD13", +"T[ c #C5BD1B", +"U[ c #C0B81A", +"V[ c #DAD214", +"W[ c #6C6921", +"X[ c #21262B", +"Y[ c #161F31", +"Z[ c #CBC31D", +"`[ c #E6DC16", +" } c #3C3D31", +".} c #9F9924", +"+} c #797632", +"@} c #D1C921", +"#} c #E4DB18", +"$} c #22293A", +"%} c #C6BE26", +"&} c #ECE316", +"*} c #29303D", +"=} c #918D35", +"-} c #999434", +";} c #051C43", +">} c #10234A", +",} c #C3BC32", +"'} c #EBE21C", +")} c #4C4F4A", +"!} c #C8C130", +"~} c #EAE11D", +"{} c #464A4B", +"]} c #0B2450", +"^} c #1C3157", +"/} c #0D2856", +"(} c #11305E", +"_} c #123261", +":} c #133162", +"<} c #1C3C6F", +"[} c #1F3F76", +"}} c #1F4483", +"|} c #10397B", +"1} c #041F51", +"2} c #A39C18", +"3} c #C2BB14", +"4} c #4B491D", +"5} c #26261D", +"6} c #ACA51A", +"7} c #615E20", +"8} c #EEE40F", +"9} c #C7BF16", +"0} c #0E1522", +"a} c #2D2E22", +"b} c #F4EA0D", +"c} c #F3E90E", +"d} c #A59F1D", +"e} c #212427", +"f} c #928D23", +"g} c #F3E90F", +"h} c #BEB71C", +"i} c #5B592A", +"j} c #EEE512", +"k} c #B7B025", +"l} c #53512F", +"m} c #ECE314", +"n} c #BFB724", +"o} c #0E1A31", +"p} c #222734", +"q} c #E6DC18", +"r} c #CCC423", +"s} c #05183A", +"t} c #A6A030", +"u} c #59593C", +"v} c #56563D", +"w} c #F4EA11", +"x} c #EDE417", +"y} c #8D8938", +"z} c #0D1E3D", +"A} c #08214B", +"B} c #07204C", +"C} c #08214C", +"D} c #595B48", +"E} c #EFE618", +"F} c #D1C92D", +"G} c #A29D3E", +"H} c #1C3056", +"I} c #122F5D", +"J} c #10305F", +"K} c #122E5F", +"L} c #143163", +"M} c #173466", +"N} c #1E3D78", +"O} c #23437C", +"P} c #21447D", +"Q} c #214683", +"R} c #37361D", +"S} c #E9E00F", +"T} c #C3BB12", +"U} c #1C1F1F", +"V} c #0E1420", +"W} c #B7AF17", +"X} c #E3DA11", +"Y} c #212421", +"Z} c #2A2B23", +"`} c #D8CF14", +" | c #EBE110", +".| c #54521F", +"+| c #2D2F26", +"@| c #A69F20", +"#| c #021127", +"$| c #B9B11E", +"%| c #6A6729", +"&| c #A6A023", +"*| c #6F6C2B", +"=| c #0D1A31", +"-| c #C5BE20", +";| c #E9E015", +">| c #474733", +",| c #2D3130", +"'| c #F2E911", +")| c #B7B029", +"!| c #898531", +"~| c #CEC626", +"{| c #DDD421", +"]| c #A9A333", +"^| c #69683C", +"/| c #343840", +"(| c #062048", +"_| c #09214D", +":| c #B1AB39", +"<| c #E0D824", +"[| c #0A244F", +"}| c #0E2A58", +"|| c #0E2B59", +"1| c #112C5D", +"2| c #133261", +"3| c #173567", +"4| c #1D3B72", +"5| c #1F3E78", +"6| c #234785", +"7| c #1C4384", +"8| c #10367B", +"9| c #000308", +"0| c #948E15", +"a| c #ECE30F", +"b| c #45441D", +"c| c #3E3E1F", +"d| c #ECE20F", +"e| c #726E1C", +"f| c #B1AA1C", +"g| c #8E881A", +"h| c #2D2F27", +"i| c #E0D714", +"j| c #262A2C", +"k| c #636125", +"l| c #4D4C26", +"m| c #21252C", +"n| c #E6DD15", +"o| c #292E31", +"p| c #DCD31A", +"q| c #D7CF1B", +"r| c #21262F", +"s| c #837F2A", +"t| c #96912A", +"u| c #505033", +"v| c #747136", +"w| c #65633A", +"x| c #EDE317", +"y| c #CFC729", +"z| c #A59F35", +"A| c #5E5D3C", +"B| c #40444A", +"C| c #E7DE1F", +"D| c #8B8842", +"E| c #1B2D55", +"F| c #122E5C", +"G| c #132F61", +"H| c #1A3A6D", +"I| c #1C3B6F", +"J| c #214179", +"K| c #10397C", +"L| c #0D3479", +"M| c #02020A", +"N| c #C8C012", +"O| c #BDB513", +"P| c #C3BC16", +"Q| c #A6A01A", +"R| c #7C781C", +"S| c #BEB719", +"T| c #0E1521", +"U| c #ABA51D", +"V| c #011025", +"W| c #262929", +"X| c #E9E012", +"Y| c #777327", +"Z| c #77732A", +"`| c #F4EA0F", +" 1 c #9F9927", +".1 c #343630", +"+1 c #D2CA1E", +"@1 c #1C2334", +"#1 c #615F2E", +"$1 c #9D972E", +"%1 c #999432", +"&1 c #767337", +"*1 c #F1E814", +"=1 c #C6BF2C", +"-1 c #565740", +";1 c #092049", +">1 c #B4AD36", +",1 c #D5CD2B", +"'1 c #1F2D4D", +")1 c #0B2553", +"!1 c #0F2B58", +"~1 c #0E2A57", +"{1 c #132E5E", +"]1 c #143162", +"^1 c #1C3B70", +"/1 c #1D3B71", +"(1 c #1F3E76", +"_1 c #1F4075", +":1 c #22447E", +"<1 c #1F437D", +"[1 c #1E4481", +"}1 c #04296C", +"|1 c #010408", +"11 c #21231C", +"21 c #E4DA0F", +"31 c #8D8718", +"41 c #A19B18", +"51 c #C2BA18", +"61 c #454421", +"71 c #E4DB11", +"81 c #E0D713", +"91 c #3C3C24", +"01 c #7C7822", +"a1 c #161D2A", +"b1 c #DBD216", +"c1 c #898424", +"d1 c #21262E", +"e1 c #0E1A32", +"f1 c #BDB621", +"g1 c #BDB623", +"h1 c #F1E711", +"i1 c #67652D", +"j1 c #666432", +"k1 c #9A952C", +"l1 c #01183C", +"m1 c #61603B", +"n1 c #9C9732", +"o1 c #47493B", +"p1 c #B5AF2E", +"q1 c #E9E019", +"r1 c #EBE119", +"s1 c #807C3A", +"t1 c #3A3F48", +"u1 c #E5DC20", +"v1 c #DAD228", +"w1 c #24304C", +"x1 c #0C2651", +"y1 c #0A2451", +"z1 c #1B2E54", +"A1 c #0D2A56", +"B1 c #0F2A58", +"C1 c #102C5A", +"D1 c #0F2D5B", +"E1 c #143263", +"F1 c #204078", +"G1 c #36361B", +"H1 c #F3E90D", +"I1 c #F6EC0C", +"J1 c #78741A", +"K1 c #47451B", +"L1 c #49471A", +"M1 c #49471E", +"N1 c #494821", +"O1 c #49471C", +"P1 c #49471F", +"Q1 c #9B9518", +"R1 c #D0C813", +"S1 c #161B21", +"T1 c #C5BD18", +"U1 c #747020", +"V1 c #575520", +"W1 c #0E1729", +"X1 c #D5CD17", +"Y1 c #8F8A22", +"Z1 c #454530", +"`1 c #B0A925", +" 2 c #5E5C31", +".2 c #9F9928", +"+2 c #696739", +"@2 c #979232", +"#2 c #3E413D", +"$2 c #BEB72E", +"%2 c #E0D71F", +"&2 c #EEE417", +"*2 c #666540", +"=2 c #072048", +"-2 c #ABA639", +";2 c #96923F", +">2 c #0B234F", +",2 c #0E2955", +"'2 c #0E2B58", +")2 c #1C3A70", +"!2 c #1D3C71", +"~2 c #21437B", +"{2 c #204583", +"]2 c #5E5A17", +"^2 c #D6CE13", +"/2 c #0E1520", +"(2 c #96911C", +"_2 c #A9A31A", +":2 c #2E2F27", +"<2 c #454425", +"[2 c #0D192F", +"}2 c #D3CB18", +"|2 c #918C24", +"12 c #938E28", +"22 c #E2D918", +"32 c #363832", +"42 c #454531", +"52 c #ABA52A", +"62 c #7A7738", +"72 c #8C8834", +"82 c #061E44", +"92 c #959136", +"02 c #D3CA25", +"a2 c #D1C928", +"b2 c #172545", +"c2 c #062149", +"d2 c #515348", +"e2 c #EDE419", +"f2 c #E5DC21", +"g2 c #383F4C", +"h2 c #1C3057", +"i2 c #13305F", +"j2 c #153265", +"k2 c #143165", +"l2 c #1F437B", +"m2 c #21447F", +"n2 c #11397C", +"o2 c #10377B", +"p2 c #041E4E", +"q2 c #01112D", +"r2 c #000918", +"s2 c #6D691B", +"t2 c #D8CF12", +"u2 c #5D5A1F", +"v2 c #EDE40F", +"w2 c #D3CA15", +"x2 c #252820", +"y2 c #021024", +"z2 c #0D1728", +"A2 c #D3CB19", +"B2 c #212730", +"C2 c #DED519", +"D2 c #8A852E", +"E2 c #2A2E34", +"F2 c #EFE612", +"G2 c #BEB627", +"H2 c #938E2F", +"I2 c #757236", +"J2 c #1D2842", +"K2 c #959038", +"L2 c #F3E913", +"M2 c #F5EB10", +"N2 c #656441", +"O2 c #112449", +"P2 c #BEB734", +"Q2 c #EDE41A", +"R2 c #868241", +"S2 c #A9A43B", +"T2 c #09234F", +"U2 c #1D3157", +"V2 c #1F4583", +"W2 c #10377A", +"X2 c #11387E", +"Y2 c #062C71", +"Z2 c #6E6A1C", +"`2 c #D4CC11", +" 3 c #D3CB13", +".3 c #D3CB12", +"+3 c #D3CB14", +"@3 c #B7B018", +"#3 c #0D141E", +"$3 c #252824", +"%3 c #D6CD13", +"&3 c #EBE210", +"*3 c #595620", +"=3 c #2D2F28", +"-3 c #454420", +";3 c #0D1525", +">3 c #918C21", +",3 c #7E792A", +"'3 c #F5EB0E", +")3 c #B0AA2A", +"!3 c #1C2333", +"~3 c #DFD61A", +"{3 c #D5CC1F", +"]3 c #0E1C36", +"^3 c #01173C", +"/3 c #041A3F", +"(3 c #B1AB2D", +"_3 c #454639", +":3 c #051B41", +"<3 c #061D44", +"[3 c #ADA730", +"}3 c #A39D36", +"|3 c #081F49", +"13 c #0A234C", +"23 c #6C6B44", +"33 c #F3E914", +"43 c #AAA437", +"53 c #102248", +"63 c #C2BB33", +"73 c #ECE31B", +"83 c #4E514A", +"93 c #1C2E55", +"03 c #14305E", +"a3 c #153161", +"b3 c #143161", +"c3 c #183466", +"d3 c #193769", +"e3 c #203F75", +"f3 c #204076", +"g3 c #20427C", +"h3 c #1C4285", +"i3 c #113A7C", +"j3 c #052F73", +"k3 c #02060C", +"l3 c #615D1E", +"m3 c #434119", +"n3 c #AEA718", +"o3 c #918C1B", +"p3 c #2D2F29", +"q3 c #454426", +"r3 c #D3CB17", +"s3 c #6A672E", +"t3 c #2D3030", +"u3 c #666431", +"v3 c #C7BF23", +"w3 c #EDE314", +"x3 c #303434", +"y3 c #0E1E3E", +"z3 c #D2CA24", +"A3 c #E4DB1A", +"B3 c #22293C", +"C3 c #494B40", +"D3 c #F3E912", +"E3 c #BFB82F", +"F3 c #09224B", +"G3 c #182849", +"H3 c #CFC72C", +"I3 c #383E4C", +"J3 c #585A4A", +"K3 c #F0E617", +"L3 c #BAB336", +"M3 c #0B2651", +"N3 c #0C2755", +"O3 c #112C5B", +"P3 c #153262", +"Q3 c #123161", +"R3 c #183568", +"S3 c #183668", +"T3 c #1A386A", +"U3 c #1B396C", +"V3 c #1F437E", +"W3 c #10387A", +"X3 c #10397D", +"Y3 c #0C3279", +"Z3 c #000715", +"`3 c #39381F", +" 4 c #75701A", +".4 c #7A761B", +"+4 c #C1B916", +"@4 c #0E151F", +"#4 c #2D2F24", +"$4 c #444428", +"%4 c #0D172B", +"&4 c #D3CB1A", +"*4 c #918C25", +"=4 c #AAA426", +"-4 c #F2E910", +";4 c #E7DD16", +">4 c #D2CA20", +",4 c #9E992C", +"'4 c #837F2F", +")4 c #454739", +"!4 c #F0E614", +"~4 c #C5BD2A", +"{4 c #C9C22A", +"]4 c #07214A", +"^4 c #84813F", +"/4 c #95913F", +"(4 c #08204B", +"_4 c #08224C", +":4 c #0A234D", +"<4 c #B2AC37", +"[4 c #F1E816", +"}4 c #646449", +"|4 c #0E2957", +"14 c #0E2B57", +"24 c #123260", +"34 c #1C3A6E", +"44 c #1B3B6E", +"54 c #1B3A6E", +"64 c #1F3D74", +"74 c #204178", +"84 c #1E407E", +"94 c #0F377A", +"04 c #032660", +"a4 c #21231B", +"b4 c #E4DA10", +"c4 c #A59E15", +"d4 c #41401E", +"e4 c #E2D911", +"f4 c #3E3D1D", +"g4 c #0E1626", +"h4 c #918C22", +"i4 c #6A672C", +"j4 c #01132D", +"k4 c #5E5C2C", +"l4 c #EFE611", +"m4 c #B3AD23", +"n4 c #848029", +"o4 c #54532F", +"p4 c #C9C124", +"q4 c #0E1D38", +"r4 c #04183B", +"s4 c #A09B31", +"t4 c #8F8A36", +"u4 c #1C2642", +"v4 c #E1D81F", +"w4 c #C8C02C", +"x4 c #081F48", +"y4 c #082049", +"z4 c #273147", +"A4 c #DCD425", +"B4 c #D9D028", +"C4 c #232D49", +"D4 c #09224D", +"E4 c #05214A", +"F4 c #414549", +"G4 c #C9C131", +"H4 c #13284F", +"I4 c #09224E", +"J4 c #0A234F", +"K4 c #0B2550", +"L4 c #0C2752", +"M4 c #112D5B", +"N4 c #12315F", +"O4 c #143160", +"P4 c #153463", +"Q4 c #163264", +"R4 c #173365", +"S4 c #163365", +"T4 c #1A376B", +"U4 c #1B3B6F", +"V4 c #1D3B70", +"W4 c #204177", +"X4 c #22447F", +"Y4 c #C5BD12", +"Z4 c #D8D011", +"`4 c #16191B", +" 5 c #0E141F", +".5 c #C3BB15", +"+5 c #0D1626", +"@5 c #161E2E", +"#5 c #CDC51C", +"$5 c #E3DA17", +"%5 c #393B2F", +"&5 c #C6BE20", +"*5 c #E8DF15", +"=5 c #474834", +"-5 c #0E1B35", +";5 c #CFC722", +">5 c #6E6B34", +",5 c #393C3A", +"'5 c #E5DC19", +")5 c #E8DF18", +"!5 c #34383E", +"~5 c #061C43", +"{5 c #313743", +"]5 c #BBB42E", +"^5 c #071F47", +"/5 c #9B973C", +"(5 c #F5EC10", +"_5 c #7E7B42", +":5 c #08224E", +"<5 c #A09B3E", +"[5 c #7A7845", +"}5 c #0F2A57", +"|5 c #102D59", +"15 c #0F2C59", +"25 c #143061", +"35 c #183567", +"45 c #1A386B", +"55 c #1E3C73", +"65 c #204176", +"75 c #22427A", +"85 c #183D80", +"95 c #062F73", +"05 c #010913", +"a5 c #8B8616", +"b5 c #88821A", +"c5 c #010B1E", +"d5 c #938D1C", +"e5 c #ADA61A", +"f5 c #2D2F23", +"g5 c #444421", +"h5 c #0D1729", +"i5 c #031633", +"j5 c #8F8A29", +"k5 c #898529", +"l5 c #525231", +"m5 c #EDE313", +"n5 c #0F1C38", +"o5 c #7E7B2D", +"p5 c #DAD11C", +"q5 c #343634", +"r5 c #04193C", +"s5 c #0E1D3B", +"t5 c #B9B22A", +"u5 c #ABA52F", +"v5 c #65643C", +"w5 c #4D4E3D", +"x5 c #051C41", +"y5 c #8C8839", +"z5 c #9C9738", +"A5 c #071E46", +"B5 c #061D45", +"C5 c #3C4146", +"D5 c #E7DE1D", +"E5 c #CBC32C", +"F5 c #182749", +"G5 c #07224B", +"H5 c #2B354B", +"I5 c #E0D724", +"J5 c #D6CE2C", +"K5 c #202F50", +"L5 c #0A2450", +"M5 c #092550", +"N5 c #DBD32B", +"O5 c #0F2C58", +"P5 c #112D5A", +"Q5 c #163262", +"R5 c #163263", +"S5 c #143362", +"T5 c #143363", +"U5 c #153466", +"V5 c #1D3B6F", +"W5 c #203F76", +"X5 c #214177", +"Y5 c #214178", +"Z5 c #1F407D", +"`5 c #10387B", +" 6 c #2A2A1B", +".6 c #E2D910", +"+6 c #E9DF0F", +"@6 c #676416", +"#6 c #34331D", +"$6 c #A69F16", +"%6 c #36361E", +"&6 c #5D591E", +"*6 c #D5CC15", +"=6 c #26271E", +"-6 c #F2E90D", +";6 c #444426", +">6 c #918C23", +",6 c #40412E", +"'6 c #E6DC15", +")6 c #CAC21C", +"!6 c #A09B2A", +"~6 c #77742F", +"{6 c #0E1B32", +"]6 c #C9C122", +"^6 c #CAC221", +"/6 c #373937", +"(6 c #0E1D3A", +"_6 c #A9A330", +":6 c #E3DA1C", +"<6 c #393D3C", +"[6 c #A09A31", +"}6 c #EAE019", +"|6 c #A39E30", +"16 c #545540", +"26 c #59593E", +"36 c #B0AA33", +"46 c #F2E814", +"56 c #656544", +"66 c #09214C", +"76 c #8A8742", +"86 c #8F8B42", +"96 c #132F60", +"06 c #1B396E", +"a6 c #021B46", +"b6 c #041C4B", +"c6 c #010D1D", +"d6 c #8C8617", +"e6 c #F5EC0C", +"f6 c #EDE30E", +"g6 c #A09915", +"h6 c #4B4920", +"i6 c #21231D", +"j6 c #1C1E1E", +"k6 c #3E3D1F", +"l6 c #69651D", +"m6 c #B0A918", +"n6 c #E8DF0F", +"o6 c #45431F", +"p6 c #161A1C", +"q6 c #D1C914", +"r6 c #5A581C", +"s6 c #454428", +"t6 c #0D1628", +"u6 c #918C20", +"v6 c #212526", +"w6 c #B8B121", +"x6 c #EEE411", +"y6 c #58562E", +"z6 c #262B32", +"A6 c #D9D01A", +"B6 c #DBD21A", +"C6 c #292D30", +"D6 c #4F4F33", +"E6 c #DFD61B", +"F6 c #878332", +"G6 c #414237", +"H6 c #16213A", +"I6 c #0F1C39", +"J6 c #333737", +"K6 c #6E6C37", +"L6 c #CDC525", +"M6 c #7B7835", +"N6 c #011739", +"O6 c #9F9A32", +"P6 c #AFA92F", +"Q6 c #67653A", +"R6 c #3C3F3E", +"S6 c #172441", +"T6 c #262E40", +"U6 c #4B4D3E", +"V6 c #989336", +"W6 c #C8C12B", +"X6 c #0F2042", +"Y6 c #051D43", +"Z6 c #565744", +"`6 c #EFE617", +" 7 c #BBB433", +".7 c #0A224D", +"+7 c #1E2B4C", +"@7 c #D4CC2B", +"#7 c #E1D824", +"$7 c #2E374A", +"%7 c #55584B", +"&7 c #5B5D4C", +"*7 c #5B5D4B", +"=7 c #5C5E4F", +"-7 c #5C5E50", +";7 c #BEB83A", +">7 c #DED62A", +",7 c #5F6150", +"'7 c #5C5F51", +")7 c #5A5E52", +"!7 c #253555", +"~7 c #102D5B", +"{7 c #22417A", +"]7 c #11397B", +"^7 c #0F367A", +"/7 c #0F387C", +"(7 c #062C73", +"_7 c #0E131C", +":7 c #B7AF16", +"<7 c #EEE50E", +"[7 c #DED512", +"}7 c #D9D111", +"|7 c #DDD411", +"17 c #EBE10F", +"27 c #D8D014", +"37 c #D8D013", +"47 c #BBB41A", +"57 c #2E2E22", +"67 c #444425", +"77 c #0D1727", +"87 c #E6DD12", +"97 c #716E29", +"07 c #A6A025", +"a7 c #03132D", +"b7 c #726F2D", +"c7 c #A49E2A", +"d7 c #716F33", +"e7 c #EBE116", +"f7 c #DCD31C", +"g7 c #DAD21D", +"h7 c #E5DC1A", +"i7 c #989233", +"j7 c #DCD421", +"k7 c #DAD121", +"l7 c #E0D720", +"m7 c #EFE515", +"n7 c #E8DF1B", +"o7 c #585842", +"p7 c #112348", +"q7 c #C2BB30", +"r7 c #ECE21A", +"s7 c #4C4E47", +"t7 c #757446", +"u7 c #F5EB12", +"v7 c #A29D3C", +"w7 c #24314E", +"x7 c #E8DF20", +"y7 c #696B50", +"z7 c #102C58", +"A7 c #122D5B", +"B7 c #102B59", +"C7 c #163565", +"D7 c #1C3A6F", +"E7 c #021E4B", +"F7 c #21221A", +"G7 c #B6AF17", +"H7 c #403F1D", +"I7 c #26271F", +"J7 c #D7CF14", +"K7 c #2D2E1F", +"L7 c #454429", +"M7 c #262A2F", +"N7 c #D8CF1C", +"O7 c #DCD31B", +"P7 c #2A2E2D", +"Q7 c #0E1B33", +"R7 c #BAB322", +"S7 c #EEE413", +"T7 c #575630", +"U7 c #676534", +"V7 c #8B8733", +"W7 c #0E1D3C", +"X7 c #7B7837", +"Y7 c #E5DC1C", +"Z7 c #6B6A3E", +"`7 c #706F42", +" 8 c #A7A23A", +".8 c #09224C", +"+8 c #0A224E", +"@8 c #14274D", +"#8 c #C6BF32", +"$8 c #44484B", +"%8 c #23304D", +"&8 c #E7DE21", +"*8 c #F6EC10", +"=8 c #696B52", +"-8 c #102C59", +";8 c #142F5F", +">8 c #153160", +",8 c #163564", +"'8 c #163362", +")8 c #163464", +"!8 c #1B3A6D", +"~8 c #1F4077", +"{8 c #11377B", +"]8 c #837F1A", +"^8 c #D4CC13", +"/8 c #E0D712", +"(8 c #B5AE16", +"_8 c #676417", +":8 c #0D1624", +"<8 c #D4CB15", +"[8 c #22252B", +"}8 c #E7DD14", +"|8 c #9F9921", +"18 c #78742C", +"28 c #43432E", +"38 c #E7DE16", +"48 c #C9C121", +"58 c #041839", +"68 c #343734", +"78 c #A59F2C", +"88 c #E1D81B", +"98 c #EAE117", +"08 c #535237", +"a8 c #2E323D", +"b8 c #898536", +"c8 c #C5BE28", +"d8 c #E3DA1E", +"e8 c #ADA731", +"f8 c #41433F", +"g8 c #172646", +"h8 c #D3CB2A", +"i8 c #E3DA20", +"j8 c #353C49", +"k8 c #5E5F49", +"l8 c #112E5A", +"m8 c #143361", +"n8 c #173363", +"o8 c #183464", +"p8 c #163465", +"q8 c #1B386C", +"r8 c #204077", +"s8 c #1C1F1D", +"t8 c #54521C", +"u8 c #918B18", +"v8 c #A9A317", +"w8 c #AFA815", +"x8 c #A6A017", +"y8 c #8D881B", +"z8 c #57541C", +"A8 c #36361D", +"B8 c #3C3B20", +"C8 c #3C3B1F", +"D8 c #3C3B1D", +"E8 c #3C3B1E", +"F8 c #3C3B21", +"G8 c #3C3B1C", +"H8 c #3C3B23", +"I8 c #313222", +"J8 c #393925", +"K8 c #3C3B22", +"L8 c #393A25", +"M8 c #0D1523", +"N8 c #303227", +"O8 c #3C3C2A", +"P8 c #3C3C27", +"Q8 c #36382A", +"R8 c #3C3C28", +"S8 c #3C3D2E", +"T8 c #161D2B", +"U8 c #2D302D", +"V8 c #3C3D2C", +"W8 c #393B32", +"X8 c #303331", +"Y8 c #3C3D32", +"Z8 c #3C3D34", +"`8 c #363932", +" 9 c #262B35", +".9 c #656230", +"+9 c #97922E", +"@9 c #ABA42B", +"#9 c #9E992F", +"$9 c #767336", +"%9 c #31343A", +"&9 c #2D333B", +"*9 c #64633B", +"=9 c #949033", +"-9 c #AAA432", +";9 c #AFA930", +">9 c #A8A232", +",9 c #928E36", +"'9 c #61603E", +")9 c #2B3241", +"!9 c #031C41", +"~9 c #082046", +"{9 c #061E45", +"]9 c #373D48", +"^9 c #3C4145", +"/9 c #323948", +"(9 c #0A224C", +"_9 c #07224C", +":9 c #09244E", +"<9 c #383F4E", +"[9 c #3D434C", +"}9 c #3D444E", +"|9 c #32394B", +"19 c #384150", +"29 c #3D444D", +"39 c #3E454F", +"49 c #3E4552", +"59 c #3D4550", +"69 c #3D4450", +"79 c #3D4551", +"89 c #3E4755", +"99 c #3E4654", +"09 c #3E4754", +"a9 c #102B58", +"b9 c #122F5C", +"c9 c #132E5D", +"d9 c #153362", +"e9 c #153163", +"f9 c #153363", +"g9 c #153364", +"h9 c #193668", +"i9 c #1A3769", +"j9 c #1B396B", +"k9 c #1D3D72", +"l9 c #21417B", +"m9 c #11387A", +"n9 c #0F387B", +"o9 c #062F77", +"p9 c #01060B", +"q9 c #05193B", +"r9 c #04183A", +"s9 c #0D254F", +"t9 c #08234B", +"u9 c #0B244E", +"v9 c #09234D", +"w9 c #0A264F", +"x9 c #09254F", +"y9 c #0E2855", +"z9 c #0E2A56", +"A9 c #112C59", +"B9 c #143364", +"C9 c #183566", +"D9 c #1C3B6E", +"E9 c #032053", +"F9 c #03204E", +"G9 c #030B1A", +"H9 c #04193B", +"I9 c #081F4B", +"J9 c #0F2853", +"K9 c #0D2854", +"L9 c #173463", +"M9 c #193567", +"N9 c #1E3C71", +"O9 c #203E75", +"P9 c #0E3579", +"Q9 c #03245B", +"R9 c #042767", +"S9 c #052560", +"T9 c #04245E", +"U9 c #062B6B", +"V9 c #062B6C", +"W9 c #062B6E", +"X9 c #05183B", +"Y9 c #01173B", +"Z9 c #051C42", +"`9 c #071F46", +" 0 c #08204A", +".0 c #08234D", +"+0 c #0B254F", +"@0 c #09254E", +"#0 c #08234C", +"$0 c #0C2551", +"%0 c #0E2954", +"&0 c #0D2853", +"*0 c #102B57", +"=0 c #112C5A", +"-0 c #102D5A", +";0 c #153162", +">0 c #1B386A", +",0 c #21427C", +"'0 c #234581", +")0 c #324C81", +"!0 c #445F94", +"~0 c #37568D", +"{0 c #486395", +"]0 c #526C9B", +"^0 c #546D9E", +"/0 c #526C9E", +"(0 c #536EA0", +"_0 c #556FA4", +":0 c #5770A4", +"<0 c #5972A6", +"[0 c #566FA4", +"}0 c #5871A3", +"|0 c #5A72A1", +"10 c #5C74A3", +"20 c #5E75A5", +"30 c #5A72A0", +"40 c #506A9A", +"50 c #516A9C", +"60 c #4F6898", +"70 c #476395", +"80 c #425E93", +"90 c #425F95", +"00 c #436096", +"a0 c #3D5C97", +"b0 c #365590", +"c0 c #345491", +"d0 c #385894", +"e0 c #355694", +"f0 c #2E4E8C", +"g0 c #2B4C8A", +"h0 c #2D4D89", +"i0 c #2C4D8C", +"j0 c #294B8C", +"k0 c #244889", +"l0 c #264A8B", +"m0 c #22478B", +"n0 c #20468B", +"o0 c #1B4185", +"p0 c #12377A", +"q0 c #0E3376", +"r0 c #0A3173", +"s0 c #0A3175", +"t0 c #073278", +"u0 c #063078", +"v0 c #041F50", +"w0 c #021F53", +"x0 c #020C1B", +"y0 c #03193B", +"z0 c #051B42", +"A0 c #051B40", +"B0 c #082149", +"C0 c #08244C", +"D0 c #0B234D", +"E0 c #0C2450", +"F0 c #0A254E", +"G0 c #0B234E", +"H0 c #0E2652", +"I0 c #122E5B", +"J0 c #173362", +"K0 c #173465", +"L0 c #173566", +"M0 c #21427A", +"N0 c #21447C", +"O0 c #21457F", +"P0 c #0B327A", +"Q0 c #294D90", +"R0 c #4368A8", +"S0 c #BACBE8", +"T0 c #D4E2F5", +"U0 c #CCDCF2", +"V0 c #D1E1F5", +"W0 c #D3E2F5", +"X0 c #D3E1F5", +"Y0 c #D0E1F4", +"Z0 c #CFDFF3", +"`0 c #CEDFF4", +" a c #D1E1F4", +".a c #D3E1F4", +"+a c #D3E2F4", +"@a c #D2E1F5", +"#a c #CFE0F3", +"$a c #CEDFF3", +"%a c #CFE0F4", +"&a c #D0DFF3", +"*a c #CCDEF3", +"=a c #CDDEF3", +"-a c #CDDFF3", +";a c #CADCF4", +">a c #C8DAF0", +",a c #CBDBF0", +"'a c #CCDDF2", +")a c #CCDCF0", +"!a c #C9DAEE", +"~a c #C8D9ED", +"{a c #C7D9EE", +"]a c #C5D7F0", +"^a c #C1D4EE", +"/a c #BED1EC", +"(a c #C0D2EC", +"_a c #C2D2EC", +":a c #BFD1EA", +"b c #071F45", +",b c #072149", +"'b c #09204C", +")b c #0A244D", +"!b c #08244D", +"~b c #0D2551", +"{b c #163364", +"]b c #133B82", +"^b c #36538D", +"/b c #D2E1F4", +"(b c #C2D6F4", +"_b c #B6D0F1", +":b c #A8C5F0", +"c c #A2C2F0", +",c c #A5C3F0", +"'c c #AAC8F0", +")c c #E2ECF7", +"!c c #B6CAEA", +"~c c #2C5296", +"{c c #020710", +"]c c #020F21", +"^c c #01173D", +"/c c #0B254D", +"(c c #09244D", +"_c c #0A254F", +":c c #0B2650", +"d c #B3CDF3", +",d c #B5CDF3", +"'d c #B3CCF4", +")d c #AEC9F2", +"!d c #ACC8F2", +"~d c #ACC9F2", +"{d c #B0CBF3", +"]d c #BBD2F3", +"^d c #B2CCF0", +"/d c #8EB4EF", +"(d c #8FB4EE", +"_d c #9CBDEF", +":d c #9DBEEF", +"e c #ADCAF2", +",e c #B1CCF3", +"'e c #8FB3EB", +")e c #89B1EE", +"!e c #83ABEA", +"~e c #87AFEC", +"{e c #8EB3EE", +"]e c #81AAE8", +"^e c #81A9E7", +"/e c #D5E4F4", +"(e c #DEE9F6", +"_e c #6286C1", +":e c #194086", +"f c #6F97D7", +",f c #6A92D3", +"'f c #6891D1", +")f c #749AD7", +"!f c #A6C2EB", +"~f c #BED4F1", +"{f c #B3CDF0", +"]f c #B3CCF0", +"^f c #B3CDF1", +"/f c #B3CDEF", +"(f c #B4CEF0", +"_f c #B0CCF1", +":f c #B0CBF1", +"g c #8FB4ED", +",g c #98BBEF", +"'g c #88AFEB", +")g c #779FDF", +"!g c #729BDB", +"~g c #7CA0D9", +"{g c #B5CEF1", +"]g c #B7D0F0", +"^g c #B6CEEF", +"/g c #B5CEF0", +"(g c #AFCBF0", +"_g c #ADCAF0", +":g c #B8CFF2", +"h c #0F1520", +",h c #A29C18", +"'h c #EEE50F", +")h c #9F9918", +"!h c #6F6C2F", +"~h c #A9A326", +"{h c #A9A328", +"]h c #A9A329", +"^h c #A9A327", +"/h c #A9A32C", +"(h c #A8A229", +"_h c #A29C29", +":h c #958F2C", +"i c #C6BF33", +",i c #898644", +"'i c #0D2752", +")i c #0F2652", +"!i c #112C57", +"~i c #132E59", +"{i c #132E5B", +"]i c #112E5C", +"^i c #1C3F7D", +"/i c #153D7D", +"(i c #133A7C", +"_i c #0E3578", +":i c #16397A", +"j c #8AABE2", +",j c #84A7DF", +"'j c #7EA1DD", +")j c #6E95D5", +"!j c #85A9E4", +"~j c #6C93D3", +"{j c #6990D0", +"]j c #6990D1", +"^j c #678FCF", +"/j c #668DCD", +"(j c #678ECF", +"_j c #688FD0", +":j c #6D94D4", +"k c #122D58", +",k c #112E5B", +"'k c #183463", +")k c #183364", +"!k c #1E3C6F", +"~k c #1F3D71", +"{k c #1C3C70", +"]k c #1F3D73", +"^k c #214278", +"/k c #22457E", +"(k c #163D7C", +"_k c #5B76AB", +":k c #E3EDF5", +"l c #456DB0", +",l c #537CBD", +"'l c #5881C1", +")l c #6991D2", +"!l c #7AA3E1", +"~l c #87AEEB", +"{l c #B1CBF2", +"]l c #9CB4DD", +"^l c #173F84", +"/l c #041840", +"(l c #0E131A", +"_l c #C6BE13", +":l c #EAE00E", +"m c #7F7B1C", +",m c #807C1E", +"'m c #B9B118", +")m c #D7CF13", +"!m c #817C1B", +"~m c #807C1F", +"{m c #807C1D", +"]m c #63601E", +"^m c #B5AE15", +"/m c #F1E80F", +"(m c #E1D814", +"_m c #C0B81E", +":m c #7C7820", +"n c #BBD1F1", +",n c #ACC7F0", +"'n c #87ABE4", +")n c #7097D8", +"!n c #6188CA", +"~n c #3D64A8", +"{n c #436BAE", +"]n c #436AAD", +"^n c #3F66A9", +"/n c #4E75B8", +"(n c #658ECD", +"_n c #6A93D3", +":n c #C0D3EE", +"o c #6C95D5", +",o c #A1C1F1", +"'o c #CBDBF3", +")o c #315696", +"!o c #424118", +"~o c #E9E00E", +"{o c #8C8718", +"]o c #908B1A", +"^o c #C2BA15", +"/o c #171D26", +"(o c #BCB51B", +"_o c #EDE410", +":o c #292B24", +"p c #1C1F1E", +",p c #63601F", +"'p c #BCB516", +")p c #BDB514", +"!p c #D6CD12", +"~p c #E5DC11", +"{p c #BDB51A", +"]p c #BDB516", +"^p c #BDB518", +"/p c #938D1A", +"(p c #A09A1C", +"_p c #C3BC17", +":p c #8B861D", +"

Q c #2A5092", +",Q c #00070E", +"'Q c #051938", +")Q c #071A3A", +"!Q c #061B3A", +"~Q c #092042", +"{Q c #0B2245", +"]Q c #071D43", +"^Q c #0C2347", +"/Q c #0A2246", +"(Q c #1C345F", +"_Q c #1F3762", +":Q c #1E3562", +"R c #11284E", +",R c #162E55", +"'R c #152D55", +")R c #1A335D", +"!R c #203763", +"~R c #1E3762", +"{R c #1F3D6D", +"]R c #173875", +"^R c #0C3374", +"/R c #0C3275", +"(R c #163773", +"_R c #BBCDE9", +":R c #8BB0E6", +"S c #0E264A", +",S c #152D53", +"'S c #0F254E", +")S c #183058", +"!S c #1E3864", +"~S c #213965", +"{S c #223A68", +"]S c #203966", +"^S c #233E6C", +"/S c #233D6C", +"(S c #223C6D", +"_S c #163A78", +":S c #103676", +"T c #143977", +",T c #0C3273", +"'T c #0E3377", +")T c #123573", +"!T c #A8BCDA", +"~T c #ABC9F1", +"{T c #86B2EE", +"]T c #5880C0", +"^T c #668FCF", +"/T c #88B0EE", +"(T c #D6E5F5", +"_T c #4567A6", +":T c #071E3F", +"U c #88B4F1", +",U c #547ABD", +"'U c #547CBF", +")U c #587EC2", +"!U c #5F87C7", +"~U c #90B6F0", +"{U c #C2D8F4", +"]U c #86A0CE", +"^U c #041539", +"/U c #03132C", +"(U c #061937", +"_U c #0B1F42", +":U c #162D54", +"V c #213A63", +",V c #203862", +"'V c #1D3660", +")V c #243C66", +"!V c #243B67", +"~V c #253D69", +"{V c #25406D", +"]V c #233E6E", +"^V c #203E6E", +"/V c #213F71", +"(V c #0E3474", +"_V c #0C3274", +":V c #8FA4C9", +"W c #04245F", +",W c #042253", +"'W c #010A15", +")W c #021530", +"!W c #071D3E", +"~W c #0E2447", +"{W c #0D2248", +"]W c #0F274B", +"^W c #12284D", +"/W c #11284D", +"(W c #13294F", +"_W c #152B50", +":W c #162E54", +"X c #0E244A", +",X c #12294E", +"'X c #142A51", +")X c #1A3157", +"!X c #1D335D", +"~X c #1F3B67", +"{X c #243E6D", +"]X c #1B3F78", +"^X c #123977", +"/X c #0D3275", +"(X c #6680B0", +"_X c #90B5EB", +":X c #97BDF2", +"Y c #072E71", +",Y c #10316F", +"'Y c #A5BDE1", +")Y c #7EA5E2", +"!Y c #93BAF0", +"~Y c #90B6F1", +"{Y c #92B9F3", +"]Y c #92B8F3", +"^Y c #93B8F2", +"/Y c #97BCF2", +"(Y c #8FB5F4", +"_Y c #7FA4DF", +":Y c #6D93D4", +"Z c #243D68", +",Z c #253D6B", +"'Z c #243E6A", +")Z c #233D6D", +"!Z c #0F3473", +"~Z c #113676", +"{Z c #093072", +"]Z c #5572A4", +"^Z c #8BB3EE", +"/Z c #82A7E2", +"(Z c #5B82C3", +"_Z c #5D84C7", +":Z c #537BBE", +"` c #233F6D", +",` c #153774", +"'` c #123775", +")` c #143878", +"!` c #113775", +"~` c #0D3373", +"{` c #0C3172", +"]` c #0A3072", +"^` c #0A3073", +"/` c #0D306F", +"(` c #A1B8DB", +"_` c #90B4EB", +":` c #89AEE8", +"<` c #8DB3EA", +"[` c #9FBFF2", +"}` c #9DBEF2", +"|` c #9BBDF2", +"1` c #95B9F3", +"2` c #7DA6E6", +"3` c #88B1F0", +"4` c #A5BCE2", +"5` c #030F21", +"6` c #061A37", +"7` c #0B2040", +"8` c #0E2344", +"9` c #142B50", +"0` c #172E54", +"a` c #152B53", +"b` c #1B3259", +"c` c #1F365D", +"d` c #1C345B", +"e` c #1B335A", +"f` c #253C66", +"g` c #233D6B", +"h` c #25406F", +"i` c #163875", +"j` c #133775", +"k` c #123674", +"l` c #0D3372", +"m` c #0F3676", +"n` c #0C3174", +"o` c #092F73", +"p` c #133472", +"q` c #ADC4E5", +"r` c #8BB2EA", +"s` c #8CB1EB", +"t` c #8BB2EB", +"u` c #9CBDF2", +"v` c #7AA1E0", +"w` c #6087C8", +"x` c #5D84C6", +"y` c #5980C3", +"z` c #AFC6EA", +"A` c #1A3F82", +"B` c #072D72", +"C` c #04142D", +"D` c #0C1F40", +"E` c #0D2142", +"F` c #102649", +"G` c #0D2346", +"H` c #142A4E", +"I` c #1D345A", +"J` c #1E355C", +"K` c #1E365D", +"L` c #213861", +"M` c #1F355F", +"N` c #223862", +"O` c #273F6C", +"P` c #243D6A", +"Q` c #26416E", +"R` c #274270", +"S` c #143875", +"T` c #25427B", +"U` c #8BB1EA", +"V` c #86ADE9", +"W` c #93B8EF", +"X` c #A3C2F2", +"Y` c #85AAE5", +"Z` c #648ACB", +"`` c #6289CA", +" . c #5C83C5", +". . c #658DCD", +"+ . c #7DA6E4", +"@ . c #04132E", +"# . c #061B3B", +"$ . c #11284A", +"% . c #172D53", +"& . c #182E55", +"* . c #1C3259", +"= . c #172D55", +"- . c #1E345C", +"; . c #1C325B", +"> . c #233A63", +", . c #253C68", +"' . c #243D67", +") . c #28406C", +"! . c #273F6A", +"~ . c #254070", +"{ . c #163975", +"] . c #103373", +"^ . c #0E3372", +"/ . c #082F70", +"( . c #3E5A8D", +"_ . c #97BAF0", +": . c #8CB3EC", +"< . c #A1C1F0", +"[ . c #96BBF0", +"} . c #93B8F1", +"| . c #6E94D5", +"1 . c #5C82C4", +"2 . c #7CA5E3", +"3 . c #A4C4F3", +"4 . c #3B5C99", +"5 . c #051633", +"6 . c #091C3F", +"7 . c #0E2345", +"8 . c #11274A", +"9 . c #0F2548", +"0 . c #12294B", +"a . c #172D52", +"b . c #183054", +"c . c #172E53", +"d . c #1A3057", +"e . c #213760", +"f . c #253C67", +"g . c #263D68", +"h . c #273E69", +"i . c #223B65", +"j . c #29406E", +"k . c #163876", +"l . c #143874", +"m . c #123574", +"n . c #093071", +"o . c #5772A2", +"p . c #9FC0F3", +"q . c #97BCF3", +"r . c #91B9F0", +"s . c #7AA1DD", +"t . c #749BDB", +"u . c #8CB3F0", +"v . c #4E70AA", +"w . c #01102C", +"x . c #061734", +"y . c #051734", +"z . c #041632", +"A . c #041432", +"B . c #0F2648", +"C . c #162B50", +"D . c #12274E", +"E . c #182E54", +"F . c #1C345A", +"G . c #223962", +"H . c #243B69", +"I . c #1D3B6A", +"J . c #173A75", +"K . c #153775", +"L . c #153874", +"M . c #143773", +"N . c #0F3675", +"O . c #728BB6", +"P . c #92B8EE", +"Q . c #95B9EF", +"R . c #A3C4F1", +"S . c #9EBFF2", +"T . c #9BBEF2", +"U . c #97BAF2", +"V . c #97BBF3", +"W . c #7CA3E0", +"X . c #779FDE", +"Y . c #6281B9", +"Z . c #0A1D3D", +"` . c #102447", +" .. c #102547", +"... c #102648", +"+.. c #11264B", +"@.. c #162B4F", +"#.. c #182E53", +"$.. c #192F58", +"%.. c #1A325A", +"&.. c #1D355C", +"*.. c #253D66", +"=.. c #253C6B", +"-.. c #26406C", +";.. c #253F6D", +">.. c #183C76", +",.. c #133774", +"'.. c #143676", +").. c #0E3272", +"!.. c #0C3271", +"~.. c #8FA6CD", +"{.. c #8CB3ED", +"].. c #A2C2F2", +"^.. c #9EBEF2", +"/.. c #7CA3E1", +"(.. c #7299DA", +"_.. c #7298D9", +":.. c #749CDB", +"<.. c #769FDE", +"[.. c #8AB2F0", +"}.. c #9FC1F2", +"|.. c #7C97C8", +"1.. c #0A2F73", +"2.. c #091E3F", +"3.. c #122648", +"4.. c #0E2243", +"5.. c #0C2446", +"6.. c #162D52", +"7.. c #172C54", +"8.. c #193055", +"9.. c #1F365E", +"0.. c #1E355D", +"a.. c #2A416D", +"b.. c #25406E", +"c.. c #133674", +"d.. c #0F3373", +"e.. c #092F70", +"f.. c #092F71", +"g.. c #0E306B", +"h.. c #9EB5DA", +"i.. c #91B6EF", +"j.. c #8EB5EF", +"k.. c #A3C2F1", +"l.. c #9CBEF3", +"m.. c #9CBDF3", +"n.. c #96BBF3", +"o.. c #92B9F0", +"p.. c #91B8F0", +"q.. c #94B9F0", +"r.. c #94B8F1", +"s.. c #7FA6E2", +"t.. c #79A0E0", +"u.. c #87AFEE", +"v.. c #8DAAD8", +"w.. c #092E72", +"x.. c #051E4D", +"y.. c #001028", +"z.. c #01122A", +"A.. c #011531", +"B.. c #061835", +"C.. c #0D2042", +"D.. c #0E2446", +"E.. c #1D335A", +"F.. c #213860", +"G.. c #20365F", +"H.. c #29416D", +"I.. c #25406C", +"J.. c #173975", +"K.. c #143775", +"L.. c #113474", +"M.. c #123676", +"N.. c #163572", +"O.. c #ADC5E8", +"P.. c #9CBEEF", +"Q.. c #90B6EF", +"R.. c #94B8EF", +"S.. c #A6C5F1", +"T.. c #80A6E3", +"U.. c #7EA7E4", +"V.. c #A9C8F3", +"W.. c #9EB7E1", +"X.. c #0C3071", +"Y.. c #011229", +"Z.. c #041633", +"`.. c #0E2548", +" +. c #0F2649", +".+. c #12294C", +"++. c #1A3055", +"@+. c #152C52", +"#+. c #162E53", +"$+. c #152C51", +"%+. c #1B3158", +"&+. c #283F69", +"*+. c #233B65", +"=+. c #26406D", +"-+. c #193C74", +";+. c #294479", +">+. c #9BBDF0", +",+. c #9EBEF3", +"'+. c #9BBCF2", +")+. c #96BAF3", +"!+. c #6F95D6", +"~+. c #7299D9", +"{+. c #698FD0", +"]+. c #79A0E1", +"^+. c #8FB5F0", +"/+. c #A8C0E7", +"(+. c #143678", +"_+. c #041631", +":+. c #0E2144", +"<+. c #112749", +"[+. c #0B2345", +"}+. c #11284B", +"|+. c #152B4F", +"1+. c #182D52", +"2+. c #152D52", +"3+. c #172F54", +"4+. c #162E52", +"5+. c #20375F", +"6+. c #1F355D", +"7+. c #223861", +"8+. c #273F68", +"9+. c #273E68", +"0+. c #1B3A69", +"a+. c #173974", +"b+. c #153773", +"c+. c #133773", +"d+. c #153875", +"e+. c #103474", +"f+. c #0C3170", +"g+. c #103473", +"h+. c #0D3271", +"i+. c #082E70", +"j+. c #0A3171", +"k+. c #435F91", +"l+. c #9CBDF0", +"m+. c #8FB4EF", +"n+. c #A9C6F1", +"o+. c #A4C3F2", +"p+. c #A0C0F3", +"q+. c #9DBFF2", +"r+. c #769DDB", +"s+. c #759CDD", +"t+. c #668CCD", +"u+. c #7096D7", +"v+. c #B4CBEF", +"w+. c #214283", +"x+. c #061833", +"y+. c #071938", +"z+. c #112548", +"A+. c #0D2547", +"B+. c #12274C", +"C+. c #152A4F", +"D+. c #183055", +"E+. c #182F54", +"F+. c #1A3158", +"G+. c #263D66", +"H+. c #28406A", +"I+. c #29406A", +"J+. c #2B426E", +"K+. c #223D69", +"L+. c #153872", +"M+. c #163874", +"N+. c #143673", +"O+. c #113573", +"P+. c #0B3170", +"Q+. c #0B3272", +"R+. c #647FAE", +"S+. c #9DBDF0", +"T+. c #A9C6F2", +"U+. c #A5C4F3", +"V+. c #9EBFF3", +"W+. c #98BAF1", +"X+. c #96BAEF", +"Y+. c #95BAEF", +"Z+. c #5E84C5", +"`+. c #7FA8E7", +" @. c #355591", +".@. c #051632", +"+@. c #0B1F3F", +"@@. c #0F2245", +"#@. c #122649", +"$@. c #102346", +"%@. c #0D2244", +"&@. c #0D2447", +"*@. c #192E53", +"=@. c #162C50", +"-@. c #20365D", +";@. c #1E345D", +">@. c #1F375E", +",@. c #233963", +"'@. c #243A64", +")@. c #183B74", +"!@. c #153873", +"~@. c #0E3375", +"{@. c #879CC0", +"]@. c #9EBFEF", +"^@. c #9FBFEF", +"/@. c #96B9EF", +"(@. c #9CBDF1", +"_@. c #84ACEB", +":@. c #C0D5F3", +"<@. c #4E6EA9", +"[@. c #04235C", +"}@. c #021C45", +"|@. c #0A1E3D", +"1@. c #0A1E3E", +"2@. c #0A1F3F", +"3@. c #0C2040", +"4@. c #0C2243", +"5@. c #10254A", +"6@. c #1B3156", +"7@. c #1E365E", +"8@. c #253B65", +"9@. c #223B64", +"0@. c #273F69", +"a@. c #233C68", +"b@. c #263F6C", +"c@. c #1A3971", +"d@. c #163873", +"e@. c #163974", +"f@. c #143774", +"g@. c #113674", +"h@. c #113574", +"i@. c #0B3171", +"j@. c #0D3270", +"k@. c #99AFD3", +"l@. c #9FBFF0", +"m@. c #9BBCF0", +"n@. c #A5C3F2", +"o@. c #98BCF0", +"p@. c #9DBEF0", +"q@. c #688ECF", +"r@. c #82A9E9", +"s@. c #85ACE8", +"t@. c #9EC1F1", +"u@. c #6A88BD", +"v@. c #051733", +"w@. c #091E3D", +"x@. c #0C1F41", +"y@. c #0E2244", +"z@. c #102749", +"A@. c #162D4F", +"B@. c #13284C", +"C@. c #1D3359", +"D@. c #1C3359", +"E@. c #192F57", +"F@. c #21395F", +"G@. c #274069", +"H@. c #29426B", +"I@. c #263E69", +"J@. c #183873", +"K@. c #143572", +"L@. c #163774", +"M@. c #0A2F72", +"N@. c #103271", +"O@. c #9FBEF1", +"P@. c #A6C5F3", +"Q@. c #A6C4F2", +"R@. c #9DBDF2", +"S@. c #9BBDF3", +"T@. c #99BBF2", +"U@. c #9EBEF0", +"V@. c #79A1DF", +"W@. c #80A7E2", +"X@. c #B0CAF1", +"Y@. c #849FCC", +"Z@. c #031539", +"`@. c #010B18", +" #. c #04132D", +".#. c #152C4E", +"+#. c #1F355C", +"@#. c #1F365C", +"##. c #213960", +"$#. c #28416B", +"%#. c #283F6C", +"&#. c #2A426E", +"*#. c #264170", +"=#. c #113473", +"-#. c #113373", +";#. c #0F3573", +">#. c #103372", +",#. c #0B3073", +"'#. c #1E3B75", +")#. c #B0CAEE", +"!#. c #A6C5F0", +"~#. c #A0C0F0", +"{#. c #99BAF0", +"]#. c #9BBCF1", +"^#. c #7DA4E2", +"/#. c #97B0DB", +"(#. c #071834", +"_#. c #061837", +":#. c #061735", +"<#. c #081D3C", +"[#. c #102548", +"}#. c #182E51", +"|#. c #1D335B", +"1#. c #223860", +"2#. c #193465", +"3#. c #163972", +"4#. c #123672", +"5#. c #0A3070", +"6#. c #072E6F", +"7#. c #2D487C", +"8#. c #9BBEF0", +"9#. c #A0BFEF", +"0#. c #99BBF0", +"a#. c #AAC7F2", +"b#. c #9DBDF3", +"c#. c #9BBDF1", +"d#. c #6F95D5", +"e#. c #668DCF", +"f#. c #779DDD", +"g#. c #86ADEA", +"h#. c #81AAE9", +"i#. c #000810", +"j#. c #061736", +"k#. c #071A38", +"l#. c #0F2447", +"m#. c #0E2647", +"n#. c #172D50", +"o#. c #1E345A", +"p#. c #1E345B", +"q#. c #21385F", +"r#. c #1F355E", +"s#. c #123572", +"t#. c #0F3474", +"u#. c #082E6F", +"v#. c #072E70", +"w#. c #4A6699", +"x#. c #9DBDEF", +"y#. c #94B8EE", +"z#. c #ABC7F2", +"A#. c #9EBEF1", +"B#. c #A4C2F1", +"C#. c #5C83C6", +"D#. c #88AFEE", +"E#. c #AFC6EB", +"F#. c #1A3D82", +"G#. c #031229", +"H#. c #041733", +"I#. c #071937", +"J#. c #0F2243", +"K#. c #112447", +"L#. c #10274A", +"M#. c #13294C", +"N#. c #132A4C", +"O#. c #1F375F", +"P#. c #1E345E", +"Q#. c #243B64", +"R#. c #293F69", +"S#. c #283F6B", +"T#. c #263F6B", +"U#. c #26416D", +"V#. c #133672", +"W#. c #0E3472", +"X#. c #0C3372", +"Y#. c #0E3271", +"Z#. c #0A306F", +"`#. c #0B3071", +" $. c #7088B1", +".$. c #A9C6F0", +"+$. c #A2C1EF", +"@$. c #A0C0EF", +"#$. c #A9C6F3", +"$$. c #9EBFF0", +"%$. c #7AA2E2", +"&$. c #85ADEC", +"*$. c #2B4C8C", +"=$. c #01060A", +"-$. c #031733", +";$. c #051936", +">$. c #081C3B", +",$. c #102444", +"'$. c #0D2043", +")$. c #12274A", +"!$. c #13294B", +"~$. c #1B3057", +"{$. c #1B3157", +"]$. c #21375E", +"^$. c #263C65", +"/$. c #253B64", +"($. c #1D3C6B", +"_$. c #133572", +":$. c #133673", +"<$. c #153776", +"[$. c #0F3372", +"}$. c #082F6F", +"|$. c #0E3371", +"1$. c #869BBF", +"2$. c #A3C4F0", +"3$. c #ABC7F0", +"4$. c #A1C0EF", +"5$. c #688FD1", +"6$. c #83ABEB", +"7$. c #3C5E9B", +"8$. c #04152F", +"9$. c #091D3C", +"0$. c #0B1E3F", +"a$. c #122548", +"b$. c #132A4D", +"c$. c #132A4B", +"d$. c #162B51", +"e$. c #1A2F55", +"f$. c #1E355B", +"g$. c #1E365C", +"h$. c #223960", +"i$. c #21375F", +"j$. c #253B66", +"k$. c #283E68", +"l$. c #163775", +"m$. c #113471", +"n$. c #103472", +"o$. c #0F3472", +"p$. c #0F3272", +"q$. c #97AFD6", +"r$. c #98BAF0", +"s$. c #86ABE7", +"t$. c #9FBDED", +"u$. c #A8C6F3", +"v$. c #9EBEED", +"w$. c #5980C1", +"x$. c #95BBF0", +"y$. c #ABC9F2", +"z$. c #5173AE", +"A$. c #05152F", +"B$. c #071836", +"C$. c #0F2246", +"D$. c #182E52", +"E$. c #1D3358", +"F$. c #233960", +"G$. c #22385F", +"H$. c #233962", +"I$. c #233961", +"J$. c #263C66", +"K$. c #253E68", +"L$. c #223C6B", +"M$. c #143672", +"N$. c #153470", +"O$. c #AAC2E5", +"P$. c #A4C4F0", +"Q$. c #A1C1EF", +"R$. c #85ACE7", +"S$. c #87ACE3", +"T$. c #ABC7F1", +"U$. c #9FC1F0", +"V$. c #BED4F3", +"W$. c #081A3B", +"X$. c #0E2145", +"Y$. c #0F2547", +"Z$. c #0D2546", +"`$. c #142A4D", +" %. c #1C3257", +".%. c #1C3258", +"+%. c #21385E", +"@%. c #2A436C", +"#%. c #1D3A69", +"$%. c #173871", +"%%. c #173973", +"&%. c #113572", +"*%. c #103573", +"=%. c #0F3171", +"-%. c #092F6E", +";%. c #082D70", +">%. c #072D6E", +",%. c #1E3B72", +"'%. c #B1CAEF", +")%. c #AAC7EF", +"!%. c #A3C2F0", +"~%. c #A5C4F0", +"{%. c #92B6EF", +"]%. c #82A9E4", +"^%. c #769BD8", +"/%. c #A8C7F3", +"(%. c #A9C6F4", +"_%. c #5E85C8", +":%. c #8BB3F0", +"<%. c #819DCD", +"[%. c #071839", +"}%. c #0C2142", +"|%. c #11264A", +"1%. c #172C51", +"2%. c #192E54", +"3%. c #1F375D", +"4%. c #253C63", +"5%. c #273E67", +"6%. c #223964", +"7%. c #263F69", +"8%. c #263E67", +"9%. c #223E6A", +"0%. c #143872", +"a%. c #143772", +"b%. c #123472", +"c%. c #123673", +"d%. c #103272", +"e%. c #0C3171", +"f%. c #062C6C", +"g%. c #082E72", +"h%. c #445F95", +"i%. c #99BCEF", +"j%. c #8BB2EC", +"k%. c #80A6E2", +"l%. c #7196D4", +"m%. c #9FBCEA", +"n%. c #A1C2F0", +"o%. c #A2C1F0", +"p%. c #A0BEED", +"q%. c #587EC1", +"r%. c #5F85C7", +"s%. c #91ADDA", +"t%. c #061834", +"u%. c #071837", +"v%. c #152B4D", +"w%. c #152C4F", +"x%. c #152A4E", +"y%. c #20375E", +"z%. c #153771", +"A%. c #113470", +"B%. c #123474", +"C%. c #0D3272", +"D%. c #062D70", +"E%. c #5D76A5", +"F%. c #8FB7F0", +"G%. c #9ABCEF", +"H%. c #89B0EA", +"I%. c #7CA3DF", +"J%. c #7499D7", +"K%. c #8BACE2", +"L%. c #ADC8F2", +"M%. c #A9C7F3", +"N%. c #A7C7F2", +"O%. c #A3BDE3", +"P%. c #051530", +"Q%. c #061A38", +"R%. c #0C1F3F", +"S%. c #12284A", +"T%. c #152A4D", +"U%. c #1A2F54", +"V%. c #223961", +"W%. c #243A62", +"X%. c #253C65", +"Y%. c #143674", +"Z%. c #0D3171", +"`%. c #0B3070", +" &. c #798EB1", +".&. c #95B9EE", +"+&. c #A3C1EF", +"@&. c #82AAE5", +"#&. c #7BA2DE", +"$&. c #7B9FDD", +"%&. c #779BD6", +"&&. c #AFCBF3", +"*&. c #9DBCEC", +"=&. c #A2C3F3", +"-&. c #ADC6EE", +";&. c #1C3E80", +">&. c #062E70", +",&. c #051731", +"'&. c #04142E", +")&. c #0C1E3D", +"!&. c #0D2040", +"~&. c #091E3E", +"{&. c #0B203F", +"]&. c #0F2345", +"^&. c #112648", +"/&. c #172D51", +"(&. c #20365E", +"_&. c #243B63", +":&. c #092F6F", +"<&. c #072D6F", +"[&. c #0D316F", +"}&. c #89A0C7", +"|&. c #97B9EF", +"1&. c #95B7ED", +"2&. c #6E94D2", +"3&. c #A8C5F2", +"4&. c #9BBAEB", +"5&. c #5C84C6", +"6&. c #6087CA", +"7&. c #30518F", +"8&. c #081B38", +"9&. c #0F2344", +"0&. c #0C2140", +"a&. c #102445", +"b&. c #132749", +"c&. c #142A4C", +"d&. c #1A3056", +"e&. c #22375E", +"f&. c #263C64", +"g&. c #27406B", +"h&. c #1E396B", +"i&. c #163772", +"j&. c #143771", +"k&. c #123471", +"l&. c #113472", +"m&. c #103371", +"n&. c #0D3170", +"o&. c #082E6E", +"p&. c #0D2E67", +"q&. c #9EB6DA", +"r&. c #96B9EE", +"s&. c #7CA3DE", +"t&. c #769DD9", +"u&. c #7399D7", +"v&. c #6C92D0", +"w&. c #9FBCE8", +"x&. c #A6C4F0", +"y&. c #A6C6F1", +"z&. c #94B5E8", +"A&. c #5D82C4", +"B&. c #5C82C5", +"C&. c #6086C8", +"D&. c #7A9FDA", +"E&. c #7299D8", +"F&. c #4868A3", +"G&. c #0B1E3E", +"H&. c #091D3D", +"I&. c #162C4F", +"J&. c #14294D", +"K&. c #172E50", +"L&. c #1B3055", +"M&. c #243A63", +"N&. c #29416A", +"O&. c #243C65", +"P&. c #2C436F", +"Q&. c #0E3270", +"R&. c #0E3171", +"S&. c #0B306F", +"T&. c #13326B", +"U&. c #ABC3E4", +"V&. c #8DB4ED", +"W&. c #99BBEF", +"X&. c #94B7EE", +"Y&. c #7AA1DC", +"Z&. c #749CD8", +"`&. c #7096D4", +" *. c #6D93D1", +".*. c #8CAEE3", +"+*. c #8FB0E7", +"@*. c #97B4E6", +"#*. c #ACC6ED", +"$*. c #7B9DD8", +"%*. c #5D85C7", +"&*. c #90B0E5", +"**. c #8AB2EE", +"=*. c #6583B9", +"-*. c #081937", +";*. c #091A38", +">*. c #071936", +",*. c #081B3A", +"'*. c #0A1F3E", +")*. c #122546", +"!*. c #112649", +"~*. c #13284A", +"{*. c #192F51", +"]*. c #1A2F56", +"^*. c #243B62", +"/*. c #293F6A", +"(*. c #284370", +"_*. c #243E6E", +":*. c #1A396B", +"<*. c #15366F", +"[*. c #133671", +"}*. c #153772", +"|*. c #133571", +"1*. c #153673", +"2*. c #133574", +"3*. c #09306F", +"4*. c #082D71", +"5*. c #254075", +"6*. c #8AB0EC", +"7*. c #90B4EA", +"8*. c #A0BFF0", +"9*. c #7299D6", +"0*. c #6B91D0", +"a*. c #799CD7", +"b*. c #B8CFF1", +"c*. c #A8C7F1", +"d*. c #A7C7F1", +"e*. c #AAC7F0", +"f*. c #AFC9F1", +"g*. c #92B3E9", +"h*. c #A7C1EA", +"i*. c #BED3F2", +"j*. c #97B5E4", +"k*. c #4A71B5", +"l*. c #6A90D2", +"m*. c #030D1D", +"n*. c #061631", +"o*. c #081936", +"p*. c #081A38", +"q*. c #0D2041", +"r*. c #122749", +"s*. c #14284B", +"t*. c #172D4F", +"u*. c #192D51", +"v*. c #162C4E", +"w*. c #1C3156", +"x*. c #1F355B", +"y*. c #273D68", +"z*. c #273E6B", +"A*. c #133670", +"B*. c #12356F", +"C*. c #0A2F6E", +"D*. c #425D8F", +"E*. c #88AEE8", +"F*. c #6F96D2", +"G*. c #698FCD", +"H*. c #6B91CF", +"I*. c #688ECB", +"J*. c #B1C9EF", +"K*. c #8FB1E7", +"L*. c #6288CA", +"M*. c #6A8FCF", +"N*. c #84A5DE", +"O*. c #5B81C4", +"P*. c #4C73B5", +"Q*. c #4369AC", +"R*. c #87A3D2", +"S*. c #052052", +"T*. c #02070C", +"U*. c #02132B", +"V*. c #142B4E", +"W*. c #182F51", +"X*. c #20365C", +"Y*. c #20385E", +"Z*. c #233A62", +"`*. c #27406A", +" =. c #243D66", +".=. c #0F3271", +"+=. c #082E6D", +"@=. c #062D6E", +"#=. c #0A2F71", +"$=. c #617AA6", +"%=. c #89B1EA", +"&=. c #81A7E3", +"*=. c #83A9E5", +"==. c #8BB0E9", +"-=. c #8DB3EC", +";=. c #779ED9", +">=. c #6A90CE", +",=. c #698ECD", +"'=. c #A3BEE8", +")=. c #B8CFF3", +"!=. c #A9C7F0", +"~=. c #ACC9F0", +"{=. c #B2CBF1", +"]=. c #8BAEE5", +"^=. c #5E84C7", +"/=. c #9AB5DE", +"(=. c #081B39", +"_=. c #0E2141", +":=. c #102446", +"<=. c #13274A", +"[=. c #152B4E", +"}=. c #172E4F", +"|=. c #182D51", +"1=. c #20375D", +"2=. c #253B63", +"3=. c #223C68", +"4=. c #1B396A", +"5=. c #183B73", +"6=. c #173872", +"7=. c #133471", +"8=. c #103470", +"9=. c #123571", +"0=. c #103471", +"a=. c #0E3170", +"b=. c #7B90B7", +"c=. c #A2C1EE", +"d=. c #84ABE5", +"e=. c #7AA0DC", +"f=. c #92B6EE", +"g=. c #85ACE6", +"h=. c #769ED9", +"i=. c #7299D5", +"j=. c #688ECC", +"k=. c #87A8DC", +"l=. c #B2CAF2", +"m=. c #81A5DF", +"n=. c #5E86C8", +"o=. c #AAC2E7", +"p=. c #051732", +"q=. c #0C1F3E", +"r=. c #14284A", +"s=. c #152C4D", +"t=. c #182D50", +"u=. c #1B3054", +"v=. c #22385E", +"w=. c #21375D", +"x=. c #2A416B", +"y=. c #233C66", +"z=. c #1A3A6C", +"A=. c #143671", +"B=. c #123370", +"C=. c #113571", +"D=. c #0F3370", +"E=. c #0C316F", +"F=. c #0C306F", +"G=. c #0A2C69", +"H=. c #6F96D1", +"I=. c #789ED9", +"J=. c #6A8FCD", +"K=. c #8AB1EB", +"L=. c #7EA4DF", +"M=. c #7299D4", +"N=. c #6C93CF", +"O=. c #6D93CF", +"P=. c #6B91CE", +"Q=. c #7499D5", +"R=. c #B6CDF3", +"S=. c #B4CCF2", +"T=. c #AFCCF2", +"U=. c #7CA1DD", +"V=. c #6288C9", +"W=. c #4269AE", +"X=. c #7DA6E3", +"Y=. c #BDD5F3", +"Z=. c #AFC8ED", +"`=. c #214284", +" -. c #000817", +".-. c #061531", +"+-. c #071A39", +"@-. c #071B3A", +"#-. c #142B4D", +"$-. c #193052", +"%-. c #192F53", +"&-. c #1E3459", +"*-. c #253A61", +"=-. c #21365E", +"--. c #283F68", +";-. c #153870", +">-. c #143670", +",-. c #153973", +"'-. c #123470", +")-. c #113370", +"!-. c #0C3270", +"~-. c #0D3371", +"{-. c #0A306E", +"]-. c #0B2C6A", +"^-. c #99B3D9", +"/-. c #88AEE7", +"(-. c #729AD4", +"_-. c #658BC8", +":-. c #7398D4", +"<-. c #6287C5", +"[-. c #84ABE6", +"}-. c #749BD6", +"|-. c #7197D4", +"1-. c #6D94D1", +"2-. c #6F95D2", +"3-. c #6E93D0", +"4-. c #6A91CD", +"5-. c #6E93D1", +"6-. c #A5C0EA", +"7-. c #7FA4DE", +"8-. c #6C90D0", +"9-. c #6086C9", +"0-. c #BBD4F3", +"a-. c #365794", +"b-. c #071A37", +"c-. c #091A3B", +"d-. c #0D1F3F", +"e-. c #0B1F3E", +"f-. c #112547", +"g-. c #112849", +"h-. c #1A3153", +"i-. c #172C4E", +"j-. c #1D3258", +"k-. c #1E3359", +"l-. c #243A61", +"m-. c #15376F", +"n-. c #14356E", +"o-. c #143770", +"p-. c #0F326F", +"q-. c #0B316F", +"r-. c #0D3070", +"s-. c #0B2E6E", +"t-. c #13316D", +"u-. c #7AA1DB", +"v-. c #5F84C2", +"w-. c #6A8ECC", +"x-. c #5D82C0", +"y-. c #6D94D2", +"z-. c #84A8E2", +"A-. c #9ABAEE", +"B-. c #739AD7", +"C-. c #92B2E2", +"D-. c #B7CEF2", +"E-. c #B5CDF1", +"F-. c #769CDA", +"G-. c #B5CFF4", +"H-. c #506FAA", +"I-. c #071835", +"J-. c #081939", +"K-. c #081A3A", +"L-. c #122647", +"M-. c #15294B", +"N-. c #13284B", +"O-. c #152A4C", +"P-. c #192E51", +"Q-. c #192E52", +"R-. c #23395F", +"S-. c #22395F", +"T-. c #13366E", +"U-. c #16356F", +"V-. c #153670", +"W-. c #103370", +"X-. c #072D6C", +"Y-. c #254074", +"Z-. c #97B9EC", +"`-. c #759BD7", +" ;. c #6289C6", +".;. c #5B81BF", +"+;. c #668BC9", +"@;. c #5B7FBE", +"#;. c #6C92CE", +"$;. c #749BD7", +"%;. c #6B93D0", +"&;. c #6A91CE", +"*;. c #678DCB", +"=;. c #6A90CD", +"-;. c #6D93D0", +";;. c #6F94D1", +">;. c #B7CEF1", +",;. c #B9CFF2", +"';. c #6A91D3", +");. c #5B83C5", +"!;. c #6482B8", +"~;. c #000913", +"{;. c #010C1A", +"];. c #071B39", +"^;. c #0F2242", +"/;. c #0E2342", +"(;. c #172C50", +"_;. c #182C50", +":;. c #1F345B", +"<;. c #213761", +"[;. c #233B64", +"};. c #233C67", +"|;. c #28406E", +"1;. c #153671", +"2;. c #113371", +"3;. c #062C6D", +"4;. c #062D6D", +"5;. c #385283", +"6;. c #93B6EB", +"7;. c #6E94D0", +"8;. c #6086C4", +"9;. c #5A80BE", +"0;. c #5F85C3", +"a;. c #587DBC", +"b;. c #678CCA", +"c;. c #638AC7", +"d;. c #7399D6", +"e;. c #658BC9", +"f;. c #658CCA", +"g;. c #A6C1EC", +"h;. c #B7CEF3", +"i;. c #B6CDF2", +"j;. c #4B71B5", +"k;. c #5078B9", +"l;. c #7692C3", +"m;. c #061732", +"n;. c #0D2140", +"o;. c #112546", +"p;. c #0F2749", +"q;. c #162C4D", +"r;. c #1A2E53", +"s;. c #1C3055", +"t;. c #203459", +"u;. c #1D3259", +"v;. c #1D3965", +"w;. c #213867", +"x;. c #13356F", +"y;. c #13346E", +"z;. c #12346F", +"A;. c #072D6D", +"B;. c #446197", +"C;. c #85A9E1", +"D;. c #6389C7", +"E;. c #5C83C0", +"F;. c #557BB9", +"G;. c #5D83C1", +"H;. c #5479B8", +"I;. c #6589C7", +"J;. c #6389C6", +"K;. c #779DD8", +"L;. c #6F95D3", +"M;. c #88A9DE", +"N;. c #BFD3F2", +"O;. c #ADCBF2", +"P;. c #B1CDF1", +"Q;. c #6990D2", +"R;. c #A9C8F1", +"S;. c #B1CDF3", +"T;. c #84A0CF", +"U;. c #091B39", +"V;. c #102443", +"W;. c #112545", +"X;. c #162A4B", +"Y;. c #172B4E", +"Z;. c #1B2E51", +"`;. c #1E335B", +" >. c #21375C", +".>. c #233A61", +"+>. c #253B62", +"@>. c #2A416A", +"#>. c #253B67", +"$>. c #263D6A", +"%>. c #16356E", +"&>. c #14376F", +"*>. c #15356F", +"=>. c #133570", +"->. c #10326F", +";>. c #0C2F6F", +">>. c #09306E", +",>. c #082A68", +"'>. c #5F7FB4", +")>. c #5379B7", +"!>. c #4F74B2", +"~>. c #5278B6", +"{>. c #4268A6", +"]>. c #799BD4", +"^>. c #7399D4", +"/>. c #A3BEE7", +"(>. c #668CC9", +"_>. c #668CCA", +":>. c #BAD0F1", +"<>. c #BAD0F2", +"[>. c #4E74B7", +"}>. c #688ECE", +"|>. c #7FA6E6", +"1>. c #ACCAF2", +"2>. c #93AFDB", +"3>. c #082A67", +"4>. c #061733", +"5>. c #132747", +"6>. c #102344", +"7>. c #162A4D", +"8>. c #172C4F", +"9>. c #1A3052", +"0>. c #182E50", +"a>. c #1B2F54", +"b>. c #223A60", +"c>. c #273D66", +"d>. c #13346D", +"e>. c #163770", +"f>. c #0F316F", +"g>. c #0F336F", +"h>. c #0E326E", +"i>. c #0C3070", +"j>. c #072E6D", +"k>. c #082A65", +"l>. c #6F90C7", +"m>. c #7096D1", +"n>. c #597FBD", +"o>. c #4B71AF", +"p>. c #496FAE", +"q>. c #4268A7", +"r>. c #3B619F", +"s>. c #4066A5", +"t>. c #698DC9", +"u>. c #C6D9F2", +"v>. c #A3BDE6", +"w>. c #658CC9", +"x>. c #A2BEE9", +"y>. c #AECCF2", +"z>. c #4068AA", +"A>. c #5379BC", +"B>. c #7CA4E4", +"C>. c #9DBAE4", +"D>. c #11306D", +"E>. c #051937", +"F>. c #091C3A", +"G>. c #0E2143", +"H>. c #132748", +"I>. c #1B2F52", +"J>. c #20355A", +"K>. c #1C3158", +"L>. c #1F355A", +"M>. c #273D64", +"N>. c #20355D", +"O>. c #294069", +"P>. c #253F6B", +"Q>. c #153570", +"R>. c #123473", +"S>. c #10336F", +"T>. c #0F326E", +"U>. c #082F6E", +"V>. c #072E6E", +"W>. c #092A64", +"X>. c #7296D0", +"Y>. c #6990CB", +"Z>. c #567CBB", +"`>. c #4D73B2", +" ,. c #476DAC", +".,. c #335999", +"+,. c #759CD6", +"@,. c #6B92CE", +"#,. c #678DCA", +"$,. c #759BD8", +"%,. c #85A9E0", +"&,. c #A2C1ED", +"*,. c #658CCC", +"=,. c #5A80C3", +"-,. c #3E66A9", +";,. c #6890D0", +">,. c #A5C6F2", +",,. c #A1BFEB", +"',. c #1D3B73", +"),. c #031127", +"!,. c #041630", +"~,. c #041732", +"{,. c #091B3B", +"],. c #0B1E3D", +"^,. c #0E2242", +"/,. c #0F2647", +"(,. c #12294A", +"_,. c #20365B", +":,. c #2B426C", +"<,. c #283F6A", +"[,. c #233964", +"},. c #1D386A", +"|,. c #193767", +"1,. c #173670", +"2,. c #173671", +"3,. c #163671", +"4,. c #123570", +"5,. c #0E326F", +"6,. c #0B2F6E", +"7,. c #0A2E6E", +"8,. c #072C6F", +"9,. c #102F68", +"0,. c #749AD5", +"a,. c #648BC7", +"b,. c #466CAA", +"c,. c #345999", +"d,. c #294E8F", +"e,. c #5C82C0", +"f,. c #6990CD", +"g,. c #7097D4", +"h,. c #AFC8EE", +"i,. c #BCD2F2", +"j,. c #92B3E7", +"k,. c #6088C8", +"l,. c #335087", +"m,. c #041833", +"n,. c #0D2242", +"o,. c #142B4C", +"p,. c #263C63", +"q,. c #284069", +"r,. c #223B66", +"s,. c #273F6D", +"t,. c #143570", +"u,. c #10336E", +"v,. c #11346E", +"w,. c #0D2F6F", +"x,. c #062C6B", +"y,. c #213D73", +"z,. c #779CD9", +"A,. c #5B81BE", +"B,. c #5076B4", +"C,. c #486EAD", +"D,. c #446AA9", +"E,. c #3A609F", +"F,. c #2D5493", +"G,. c #254B8A", +"H,. c #4B70AE", +"I,. c #648AC9", +"J,. c #799ED9", +"K,. c #8DADE0", +"L,. c #B9CFF1", +"M,. c #88ABE2", +"N,. c #678DCE", +"O,. c #456399", +"P,. c #051834", +"Q,. c #051636", +"R,. c #0A1D3C", +"S,. c #0D203F", +"T,. c #15294C", +"U,. c #182C4F", +"V,. c #233A60", +"W,. c #20385F", +"X,. c #283E67", +"Y,. c #11346F", +"Z,. c #0E316D", +"`,. c #0A2D6D", +" '. c #436298", +".'. c #4D73B1", +"+'. c #3F65A3", +"@'. c #3B61A0", +"#'. c #355B9A", +"$'. c #29508F", +"%'. c #264D8C", +"&'. c #4064A2", +"*'. c #6389C8", +"='. c #678ECC", +"-'. c #7398D6", +";'. c #789DD8", +">'. c #83A8E2", +",'. c #385FA5", +"''. c #5674A9", +")'. c #14294C", +"!'. c #162B4C", +"~'. c #1E3257", +"{'. c #1B3056", +"]'. c #172E59", +"^'. c #19386A", +"/'. c #15346E", +"('. c #13336D", +"_'. c #14366E", +":'. c #0F316E", +"<'. c #0E316F", +"['. c #0B2F6F", +"}'. c #092E6E", +"|'. c #062D6C", +"1'. c #072F6E", +"2'. c #052B6A", +"3'. c #052C6C", +"4'. c #062A68", +"5'. c #5272A9", +"6'. c #698FCB", +"7'. c #547AB9", +"8'. c #3D63A2", +"9'. c #385E9D", +"0'. c #2B5292", +"a'. c #244A8B", +"b'. c #335796", +"c'. c #658BCA", +"d'. c #648BC9", +"e'. c #648BC8", +"f'. c #688FCB", +"g'. c #7097D3", +"h'. c #82A7E3", +"i'. c #567CBF", +"j'. c #5A82C4", +"k'. c #466CAF", +"l'. c #4A70B2", +"m'. c #77A0DF", +"n'. c #6C88B9", +"o'. c #091A39", +"p'. c #0A1B3B", +"q'. c #0E2343", +"r'. c #192D4F", +"s'. c #14294B", +"t'. c #192D50", +"u'. c #172E51", +"v'. c #162A4E", +"w'. c #182C51", +"x'. c #1E3358", +"y'. c #1A2F57", +"z'. c #23385F", +"A'. c #2B416A", +"B'. c #14356D", +"C'. c #12346C", +"D'. c #0C306E", +"E'. c #0B2F6D", +"F'. c #052C6B", +"G'. c #062D6B", +"H'. c #072C6D", +"I'. c #5376AE", +"J'. c #5D84C0", +"K'. c #5177B5", +"L'. c #335998", +"M'. c #305695", +"N'. c #2E5495", +"O'. c #254B8B", +"P'. c #2E5493", +"Q'. c #557AB8", +"R'. c #668CCB", +"S'. c #6288C6", +"T'. c #7096D3", +"U'. c #94B2E0", +"V'. c #5780C2", +"W'. c #5B84C6", +"X'. c #4167AA", +"Y'. c #4168AA", +"Z'. c #7795CA", +"`'. c #000C1D", +" ). c #03142D", +".). c #081935", +"+). c #081A39", +"@). c #0A203F", +"#). c #0C2141", +"$). c #0D2241", +"%). c #102544", +"&). c #14294A", +"*). c #1A2F52", +"=). c #1D3055", +"-). c #1D3257", +";). c #1F3459", +">). c #253E67", +",). c #14346E", +"'). c #13346F", +")). c #10336D", +"!). c #0F326D", +"~). c #0E306D", +"{). c #072A66", +"]). c #5B80BA", +"^). c #557CB8", +"/). c #4369A7", +"(). c #395F9E", +"_). c #325897", +":). c #2C5292", +"<). c #2A5091", +"[). c #224889", +"}). c #264E8C", +"|). c #678DCC", +"1). c #759BD5", +"2). c #5981C4", +"3). c #91B5EE", +"4). c #81A1D6", +"5). c #062254", +"6). c #0B1D3D", +"7). c #0C203F", +"8). c #0F2343", +"9). c #162A4C", +"0). c #283E65", +"a). c #273E66", +"b). c #15366D", +"c). c #13336C", +"d). c #15346D", +"e). c #11336F", +"f). c #0F3270", +"g). c #082D6C", +"h). c #0E2E68", +"i). c #658AC6", +"j). c #5177B4", +"k). c #3F65A4", +"l). c #2F5594", +"m). c #284E8E", +"n). c #2F5494", +"o). c #284F8D", +"p). c #395E9C", +"q). c #7399D5", +"r). c #749AD6", +"s). c #6187C5", +"t). c #668DCB", +"u). c #A3BFE9", +"v). c #6289C9", +"w). c #5F85C6", +"x). c #91B5ED", +"y). c #A6C3F1", +"z). c #95B2E2", +"A). c #102C61", +"B). c #051833", +"C). c #081A36", +"D). c #071737", +"E). c #122849", +"F). c #172A4D", +"G). c #22365C", +"H). c #1D3461", +"I). c #1E3564", +"J). c #223867", +"K). c #17366E", +"L). c #13356D", +"M). c #12336E", +"N). c #133771", +"O). c #11356F", +"P). c #0A2F6D", +"Q). c #0A2E6D", +"R). c #082F6D", +"S). c #072F6D", +"T). c #062C6E", +"U). c #678DC9", +"V). c #4C71AF", +"W). c #3E64A3", +"X). c #2D5392", +"Y). c #2B5191", +"Z). c #295091", +"`). c #3A5D9B", +" !. c #4E72AF", +".!. c #234A8A", +"+!. c #274C8C", +"@!. c #5E83C2", +"#!. c #6188C6", +"$!. c #5E84C2", +"%!. c #5D85C2", +"&!. c #6187C6", +"*!. c #7297D4", +"=!. c #88ACE3", +"-!. c #638AC8", +";!. c #BFD4F2", +">!. c #AEC8F0", +",!. c #5D86C7", +"'!. c #5E87C8", +")!. c #89AEE9", +"!!. c #90B2E8", +"~!. c #1A3569", +"{!. c #071736", +"]!. c #081837", +"^!. c #0C1E3F", +"/!. c #0D2141", +"(!. c #1F3358", +"_!. c #18335F", +":!. c #14356F", +"~. c #082D6E", +",~. c #052863", +"'~. c #5171A8", +")~. c #5276B4", +"!~. c #4166A5", +"~~. c #3C60A0", +"{~. c #294F8E", +"]~. c #284F8E", +"^~. c #234A8B", +"/~. c #28508E", +"(~. c #2D5393", +"_~. c #294F90", +":~. c #294E8C", +"<~. c #567CBA", +"[~. c #7397D1", +"}~. c #6B91CB", +"|~. c #85ABE5", +"1~. c #7298D4", +"2~. c #5F85C4", +"3~. c #5E85C2", +"4~. c #98B6E5", +"5~. c #90B0E6", +"6~. c #7EA2DD", +"7~. c #6C92D2", +"8~. c #355DA1", +"9~. c #5075B6", +"0~. c #7294D0", +"a~. c #46649B", +"b~. c #031126", +"c~. c #071838", +"d~. c #0E2142", +"e~. c #15284B", +"f~. c #1A2E52", +"g~. c #192D52", +"h~. c #263D63", +"i~. c #12326D", +"j~. c #13356E", +"k~. c #13336E", +"l~. c #05265D", +"m~. c #5F82BD", +"n~. c #496FAD", +"o~. c #2C5291", +"p~. c #2A518F", +"q~. c #274E8D", +"r~. c #264D8E", +"s~. c #254B8C", +"t~. c #1E4585", +"u~. c #4A6FAD", +"v~. c #799CD5", +"w~. c #7499D6", +"x~. c #769DD8", +"y~. c #5D84C2", +"z~. c #7CA1DC", +"A~. c #B3CEF2", +"B~. c #8BAFE7", +"C~. c #AEC8F2", +"D~. c #8BACE3", +"E~. c #5D84C4", +"F~. c #365DA1", +"G~. c #335C9F", +"H~. c #5777B2", +"I~. c #061934", +"J~. c #081938", +"K~. c #112446", +"L~. c #1A2F53", +"M~. c #1C3159", +"N~. c #253C64", +"O~. c #173364", +"P~. c #14336D", +"Q~. c #12326C", +"R~. c #12336C", +"S~. c #10326E", +"T~. c #0D306E", +"U~. c #0C2E6E", +"V~. c #0A2A60", +"W~. c #6186C1", +"X~. c #4167A5", +"Y~. c #264C8D", +"Z~. c #254D8C", +"`~. c #204788", +" {. c #365B99", +".{. c #6C94D0", +"+{. c #5E85C3", +"@{. c #638BC8", +"#{. c #5C84C1", +"${. c #ACC7EE", +"%{. c #7CA2E0", +"&{. c #8EB1EA", +"*{. c #6D94D3", +"={. c #86ABE5", +"-{. c #7795C9", +";{. c #010F29", +">{. c #0A1D3B", +",{. c #15294A", +"'{. c #172B50", +"){. c #1D3158", +"!{. c #1A3464", +"~{. c #12356D", +"{{. c #15336E", +"]{. c #10326C", +"^{. c #11326F", +"/{. c #10316E", +"({. c #082D6D", +"_{. c #052A67", +":{. c #062E6C", +"<{. c #0E2E66", +"[{. c #5C83BE", +"}{. c #3D62A1", +"|{. c #345A99", +"1{. c #2D5492", +"2{. c #2C5392", +"3{. c #294F8F", +"4{. c #244B8A", +"5{. c #22498A", +"6{. c #284D8D", +"7{. c #4C72AF", +"8{. c #5980BD", +"9{. c #6187C4", +"0{. c #5A80BF", +"a{. c #92B3E3", +"b{. c #749AD8", +"c{. c #658BCC", +"d{. c #3A62A6", +"e{. c #81A6E2", +"f{. c #7A9AD1", +"g{. c #020915", +"h{. c #122748", +"i{. c #1B2F51", +"j{. c #192F52", +"k{. c #253B61", +"l{. c #14346C", +"m{. c #0D316D", +"n{. c #0C306C", +"o{. c #0C2F6E", +"p{. c #092D6B", +"q{. c #0B2E6D", +"r{. c #092D6D", +"s{. c #072C6C", +"t{. c #052B69", +"u{. c #062B6D", +"v{. c #395F9D", +"w{. c #4368A7", +"x{. c #315796", +"y{. c #2A508F", +"z{. c #284E8D", +"A{. c #2F5695", +"B{. c #2E5594", +"C{. c #3A5E9C", +"D{. c #587EBC", +"E{. c #7EA1D9", +"F{. c #6E94D3", +"G{. c #0E2A5E", +"H{. c #000F24", +"I{. c #051532", +"J{. c #071935", +"K{. c #0A1C3A", +"L{. c #172A4C", +"M{. c #182B4E", +"N{. c #1A2E50", +"O{. c #172F51", +"P{. c #1F3965", +"Q{. c #052D6C", +"R{. c #254681", +"S{. c #5277B4", +"T{. c #3D63A1", +"U{. c #274D8C", +"V{. c #264C8C", +"W{. c #2C5493", +"X{. c #214788", +"Y{. c #234887", +"Z{. c #4E74B2", +"`{. c #5981BE", +" ]. c #6A8FCB", +".]. c #B5CEEE", +"+]. c #6F95D4", +"@]. c #6087C7", +"#]. c #547BBC", +"$]. c #3B62A6", +"%]. c #1A3669", +"&]. c #031024", +"*]. c #04132C", +"=]. c #15284A", +"-]. c #132647", +";]. c #1C2F52", +">]. c #172B4F", +",]. c #1C3254", +"']. c #2B426D", +")]. c #12346D", +"!]. c #0F316D", +"~]. c #0C2F6B", +"{]. c #092E6C", +"]]. c #072C6B", +"^]. c #062A6A", +"/]. c #062B6A", +"(]. c #042C6B", +"_]. c #052A68", +":]. c #31538D", +"<]. c #3F64A2", +"[]. c #2E5492", +"}]. c #2C5391", +"|]. c #274F8D", +"1]. c #1F4586", +"2]. c #1F4687", +"3]. c #4468A6", +"4]. c #5279B7", +"5]. c #A5C1E8", +"6]. c #557CBD", +"7]. c #5178B9", +"8]. c #5B85C6", +"9]. c #2C487C", +"0]. c #0B1C3A", +"a]. c #1B3053", +"b]. c #192E55", +"c]. c #2A4069", +"d]. c #0F326C", +"e]. c #082D6B", +"f]. c #092E6B", +"g]. c #072B6C", +"h]. c #395D97", +"i]. c #446AA7", +"j]. c #3E63A1", +"k]. c #345998", +"l]. c #2E5494", +"m]. c #2B5291", +"n]. c #244C8A", +"o]. c #234989", +"p]. c #1D4485", +"q]. c #305492", +"r]. c #537AB7", +"s]. c #5076B5", +"t]. c #5279B8", +"u]. c #557CBA", +"v]. c #5C82C1", +"w]. c #82A4DA", +"x]. c #597FC2", +"y]. c #5A84C5", +"z]. c #4369AD", +"A]. c #486FB3", +"B]. c #547ABC", +"C]. c #405F97", +"D]. c #051635", +"E]. c #091A37", +"F]. c #102343", +"G]. c #192C4F", +"H]. c #1A3054", +"I]. c #193363", +"J]. c #153261", +"K]. c #14336C", +"L]. c #11326D", +"M]. c #0E316C", +"N]. c #0D306C", +"O]. c #072D6B", +"P]. c #072B67", +"Q]. c #3C619C", +"R]. c #4A70AD", +"S]. c #4A70AE", +"T]. c #4066A4", +"U]. c #2F5595", +"V]. c #264C8B", +"W]. c #1F4485", +"X]. c #4F76B4", +"Y]. c #547BB9", +"Z]. c #577DBC", +"`]. c #557BBA", +" ^. c #547CB9", +".^. c #597FBE", +"+^. c #678ECA", +"@^. c #ABC7EF", +"#^. c #5E84C6", +"$^. c #5D83C4", +"%^. c #648AC8", +"&^. c #94B5E9", +"*^. c #557FBF", +"=^. c #5F88C9", +"-^. c #7599D5", +";^. c #779EDE", +">^. c #5273AD", +",^. c #04122A", +"'^. c #081835", +")^. c #061633", +"!^. c #0A1B3A", +"~^. c #182D4F", +"{^. c #1E3560", +"]^. c #1B3765", +"^^. c #13346B", +"/^. c #11336B", +"(^. c #11356E", +"_^. c #0B2F6B", +":^. c #0C2F6C", +"<^. c #0A2C6C", +"[^. c #092C6A", +"}^. c #4066A2", +"|^. c #3D609F", +"1^. c #476CAA", +"2^. c #4C72AE", +"3^. c #496FAB", +"4^. c #244A8A", +"5^. c #224888", +"6^. c #2A5190", +"7^. c #355998", +"8^. c #5179B7", +"9^. c #547BB8", +"0^. c #5278B7", +"a^. c #557CB9", +"b^. c #9CBBE8", +"c^. c #AAC6EF", +"d^. c #638ACA", +"e^. c #8BABE1", +"f^. c #84A6DF", +"g^. c #557ABC", +"h^. c #95B2E4", +"i^. c #5F85C5", +"j^. c #82A6E0", +"k^. c #365CA1", +"l^. c #7699D3", +"m^. c #5E81BF", +"n^. c #172B4D", +"o^. c #1C3256", +"p^. c #1C3662", +"q^. c #173565", +"r^. c #183667", +"s^. c #14336B", +"t^. c #11326A", +"u^. c #0F316B", +"v^. c #11346D", +"w^. c #0E306E", +"x^. c #0A2E6B", +"y^. c #082B6B", +"z^. c #3F66A3", +"A^. c #3C619F", +"B^. c #375C9B", +"C^. c #214987", +"D^. c #1D4584", +"E^. c #204686", +"F^. c #486DAC", +"G^. c #567DBA", +"H^. c #5379B8", +"I^. c #537BB8", +"J^. c #5C82BF", +"K^. c #6085C3", +"L^. c #84A5DC", +"M^. c #A2BFEC", +"N^. c #6187C8", +"O^. c #6489C8", +"P^. c #0A1B37", +"Q^. c #041834", +"R^. c #1D3155", +"S^. c #11316C", +"T^. c #11326C", +"U^. c #0E316B", +"V^. c #082E6C", +"W^. c #092C6B", +"X^. c #082C6C", +"Y^. c #4166A4", +"Z^. c #3B5F9D", +"`^. c #325896", +" /. c #1F4685", +"./. c #224988", +"+/. c #4F75B3", +"@/. c #5178B6", +"#/. c #537AB8", +"$/. c #7498D2", +"%/. c #B3CEF1", +"&/. c #ACCAF0", +"*/. c #97B6E7", +"=/. c #5E84C4", +"-/. c #91B3E7", +";/. c #90B2E5", +">/. c #0C2555", +",/. c #051630", +"'/. c #061839", +")/. c #162D50", +"!/. c #1B3560", +"~/. c #12316A", +"{/. c #10336B", +"]/. c #11316B", +"^/. c #11336D", +"//. c #0F316C", +"(/. c #0B2E6B", +"_/. c #082C6A", +":/. c #294983", +"(. c #84ABE7", +",(. c #405D92", +"'(. c #041835", +")(. c #14274A", +"!(. c #163368", +"~(. c #13326A", +"{(. c #11346C", +"](. c #0F2F69", +"^(. c #10316B", +"/(. c #0D2F6D", +"((. c #032A68", +"_(. c #032868", +":(. c #062863", +"<(. c #486CA9", +"[(. c #3D62A0", +"}(. c #385E9C", +"|(. c #325796", +"1(. c #325595", +"2(. c #325695", +"3(. c #204685", +"4(. c #123779", +"5(. c #385D9C", +"6(. c #4E74B3", +"7(. c #5A7EBD", +"8(. c #A4C1EC", +"9(. c #A8C5EF", +"0(. c #A8C7F0", +"a(. c #A9C6EF", +"b(. c #567CBC", +"c(. c #6185C3", +"d(. c #31599D", +"e(. c #2E559A", +"f(. c #2B5297", +"g(. c #3F68AA", +"h(. c #4F75B8", +"i(. c #83ABE8", +"j(. c #5171AA", +"k(. c #172B4C", +"l(. c #132849", +"m(. c #162D51", +"n(. c #1B3155", +"o(. c #172C52", +"p(. c #1D3562", +"q(. c #1B3563", +"r(. c #1B3764", +"s(. c #10306A", +"t(. c #11336C", +"u(. c #0D2F6A", +"v(. c #0A2D6B", +"w(. c #082B6A", +"x(. c #042C6A", +"y(. c #0B2C66", +"z(. c #476DA9", +"A(. c #375D9B", +"B(. c #2D5290", +"C(. c #2E5291", +"D(. c #2A4F8E", +"E(. c #234786", +"F(. c #4A70AF", +"G(. c #ABC8EF", +"H(. c #A7C4F0", +"I(. c #A9C5F0", +"J(. c #5177B9", +"K(. c #8CA8D9", +"L(. c #4F74B5", +"M(. c #274F93", +"N(. c #2A5196", +"O(. c #295196", +"P(. c #6083BF", +"Q(. c #031128", +"R(. c #192D4E", +"S(. c #21355A", +"T(. c #173160", +"U(. c #103069", +"V(. c #10326A", +"W(. c #11326B", +"X(. c #0D306A", +"Y(. c #0C2F6A", +"Z(. c #0C316C", +"`(. c #0A2E6A", +" _. c #0B2F6C", +"._. c #486EAA", +"+_. c #3D61A0", +"@_. c #2D5291", +"#_. c #2E5392", +"$_. c #234988", +"%_. c #2C518F", +"&_. c #395E9D", +"*_. c #466CAB", +"=_. c #789AD3", +"-_. c #A6C3EF", +";_. c #6289C8", +">_. c #557CBB", +",_. c #5177B8", +"'_. c #6B8AC4", +")_. c #90AEDE", +"!_. c #4970B1", +"~_. c #476EB0", +"{_. c #30569A", +"]_. c #244B90", +"^_. c #274F94", +"/_. c #3D63A8", +"(_. c #3E67A9", +"__. c #7B9BD2", +":_. c #020C1A", +"<_. c #061936", +"[_. c #061737", +"}_. c #182C4D", +"|_. c #152749", +"1_. c #1C3053", +"2_. c #1D3154", +"3_. c #1B2E53", +"4_. c #193466", +"5_. c #123169", +"6_. c #0F316A", +"7_. c #0F326A", +"8_. c #10306B", +"9_. c #0C2E6B", +"0_. c #0B2D6A", +"a_. c #0B2E6A", +"b_. c #082F6C", +"c_. c #092F6C", +"d_. c #042B68", +"e_. c #446AA8", +"f_. c #385D9B", +"g_. c #6889C0", +"h_. c #2F5492", +"i_. c #244988", +"j_. c #214685", +"k_. c #254B89", +"l_. c #274C8B", +"m_. c #4167A6", +"n_. c #4B71B0", +"o_. c #4C72B1", +"p_. c #5E83BF", +"q_. c #ACC7EF", +"r_. c #A2C0EE", +"s_. c #5D85C4", +"t_. c #547BBB", +"u_. c #486FB1", +"v_. c #254D91", +"w_. c #284F94", +"x_. c #295195", +"y_. c #3C64A8", +"z_. c #6288C8", +"A_. c #5177BB", +"B_. c #799FDE", +"C_. c #99B4E1", +"D_. c #0B2350", +"E_. c #132649", +"F_. c #16294A", +"G_. c #1C3154", +"H_. c #1B2F53", +"I_. c #1D3054", +"J_. c #153263", +"K_. c #183468", +"L_. c #173467", +"M_. c #12326A", +"N_. c #0E2E69", +"O_. c #0D2F6B", +"P_. c #092D69", +"Q_. c #092F6B", +"R_. c #2B4C86", +"S_. c #456BA8", +"T_. c #3F65A2", +"U_. c #7898CE", +"V_. c #2A4E8D", +"W_. c #5A7FBD", +"X_. c #9FBCE9", +"Y_. c #A7C5F0", +"Z_. c #A6C3F0", +"`_. c #A6C5EF", +" :. c #A7C7F0", +".:. c #9EBCEB", +"+:. c #4F76B7", +"@:. c #4D72B4", +"#:. c #446DAF", +"$:. c #22498E", +"%:. c #274E93", +"&:. c #295095", +"*:. c #2C5498", +"=:. c #5679B7", +"-:. c #7493CA", +";:. c #3B63A6", +">:. c #8AAEE6", +",:. c #122D60", +"':. c #0E2241", +"):. c #162B4D", +"!:. c #1D3255", +"~:. c #1C355D", +"{:. c #163267", +"]:. c #10316A", +"^:. c #102F6A", +"/:. c #0E3169", +"(:. c #0E306A", +"_:. c #0F306B", +"::. c #082C6B", +"<:. c #345792", +"[:. c #446AA6", +"}:. c #4066A3", +"|:. c #3E62A1", +"1:. c #294F8D", +"2:. c #355A99", +"3:. c #8BA9DA", +"4:. c #A5C2F0", +"5:. c #A5C5EF", +"6:. c #AAC6F1", +"7:. c #9CBBEB", +"8:. c #4B72B3", +"9:. c #2B5196", +"0:. c #224A8F", +"a:. c #2A5095", +"b:. c #2D5398", +"c:. c #91B1E4", +"d:. c #051430", +"e:. c #091A36", +"f:. c #1F3356", +"g:. c #1C3054", +"h:. c #112F66", +"i:. c #0F306A", +"j:. c #103169", +"k:. c #0E316A", +"l:. c #0B2E69", +"m:. c #062B69", +"n:. c #3A5F9A", +"o:. c #4067A2", +"p:. c #092E70", +"q:. c #5277B6", +"r:. c #7D9ED4", +"s:. c #A2C0F0", +"t:. c #A2C3F0", +"u:. c #9AB9E9", +"v:. c #567CBE", +"w:. c #4D74B5", +"x:. c #4A71B2", +"y:. c #476EAF", +"z:. c #21488E", +"A:. c #254C91", +"B:. c #4269AB", +"C:. c #86A8E0", +"D:. c #84ABE8", +"E:. c #375489", +"F:. c #020B18", +"G:. c #091938", +"H:. c #091B38", +"I:. c #0D2445", +"J:. c #223659", +"K:. c #1B3154", +"L:. c #20355C", +"M:. c #103168", +"N:. c #113069", +"O:. c #0E2F69", +"P:. c #0F336D", +"Q:. c #0D306B", +"R:. c #082D6A", +"S:. c #082B67", +"T:. c #3E62A0", +"U:. c #3C639F", +"V:. c #39609D", +"W:. c #315795", +"X:. c #153A7B", +"Y:. c #3A5F9E", +"Z:. c #4E73B2", +"`:. c #6A8ECB", +" <. c #94B4E6", +".<. c #456CAE", +"+<. c #4F74B6", +"@<. c #1F468C", +"#<. c #21498E", +"$<. c #254D92", +"%<. c #2C5497", +"&<. c #345C9F", +"*<. c #4F75B5", +"=<. c #4970B0", +"-<. c #4E75B5", +";<. c #6083C1", +"><. c #82A8E5", +",<. c #4969A0", +"'<. c #0B1C39", +")<. c #0D2344", +"!<. c #1E3255", +"~<. c #113168", +"{<. c #0B2F6A", +"]<. c #092C68", +"^<. c #092D6A", +"/<. c #103068", +"(<. c #3E64A2", +"_<. c #3C629F", +":<. c #3A609D", +"<<. c #244A88", +"[<. c #456BAA", +"}<. c #597DBC", +"|<. c #90B1E6", +"1<. c #5076B7", +"2<. c #4A71B3", +"3<. c #466DAE", +"4<. c #436AAB", +"5<. c #7AA2E0", +"6<. c #557BBC", +"7<. c #20478C", +"8<. c #20488D", +"9<. c #295096", +"0<. c #2F579A", +"a<. c #4469AA", +"b<. c #577AB8", +"c<. c #5E80BC", +"d<. c #000F26", +"e<. c #000F25", +"f<. c #102347", +"g<. c #132B4D", +"h<. c #113068", +"i<. c #103167", +"j<. c #0F2F68", +"k<. c #102F69", +"l<. c #0D3068", +"m<. c #0F2F6A", +"n<. c #0C2F69", +"o<. c #0B2F69", +"p<. c #0A2D6A", +"q<. c #062969", +"r<. c #456BA9", +"s<. c #39609C", +"t<. c #2F5593", +"u<. c #1F4585", +"v<. c #4D72B1", +"w<. c #4F74B3", +"x<. c #94B3E4", +"y<. c #9CBCF0", +"z<. c #88AAE2", +"A<. c #5278B9", +"B<. c #466DAF", +"C<. c #446BAC", +"D<. c #486FB0", +"E<. c #456BAC", +"F<. c #284E92", +"G<. c #1F478C", +"H<. c #1E468B", +"I<. c #264D92", +"J<. c #345CA0", +"K<. c #355CA0", +"L<. c #7294CE", +"M<. c #051A41", +"N<. c #00030B", +"O<. c #010A14", +"P<. c #05152E", +"Q<. c #1B2E52", +"R<. c #12336A", +"S<. c #0F3069", +"T<. c #0F3169", +"U<. c #102F6B", +"V<. c #0C2F68", +"W<. c #082C69", +"X<. c #082C68", +"Y<. c #072B68", +"Z<. c #032964", +"`<. c #032763", +" [. c #294A81", +".[. c #3A619D", +"+[. c #244A89", +"@[. c #6489C6", +"#[. c #7B9FDC", +"$[. c #5E84C3", +"%[. c #87AAE0", +"&[. c #9ABBF0", +"*[. c #87AAE4", +"=[. c #446CAE", +"-[. c #31589B", +";[. c #1B4388", +">[. c #2B5296", +",[. c #244C91", +"'[. c #2A5296", +")[. c #2F589B", +"![. c #3960A4", +"~[. c #769CD9", +"{[. c #071734", +"][. c #071738", +"^[. c #07193A", +"/[. c #0F2141", +"([. c #19305E", +"_[. c #0F3067", +":[. c #0E3068", +"<[. c #0A2D67", +"[[. c #0E326B", +"}[. c #0B2D69", +"|[. c #375991", +"1[. c #446BA8", +"2[. c #305593", +"3[. c #5579B7", +"4[. c #7296D2", +"5[. c #7EA2DC", +"6[. c #9DBDF1", +"7[. c #98BAEF", +"8[. c #5379BA", +"9[. c #4269AA", +"0[. c #3E66A8", +"a[. c #284E93", +"b[. c #1D458A", +"c[. c #2C5599", +"d[. c #325A9E", +"e[. c #31589C", +"f[. c #7FA4E1", +"g[. c #091933", +"h[. c #081934", +"i[. c #0E2E67", +"j[. c #0F2F67", +"k[. c #0C2C67", +"l[. c #0E2F68", +"m[. c #0E2F6A", +"n[. c #0B2E68", +"o[. c #0C2E6A", +"p[. c #052965", +"q[. c #3B5E9A", +"r[. c #4268A5", +"s[. c #365A98", +"t[. c #2E5391", +"u[. c #2D5391", +"v[. c #456AA9", +"w[. c #4A6FAE", +"x[. c #7B9FDA", +"y[. c #496FB2", +"z[. c #4168A9", +"A[. c #3961A4", +"B[. c #1C4388", +"C[. c #1F478D", +"D[. c #234B90", +"E[. c #2C5499", +"F[. c #30579D", +"G[. c #85ABE7", +"H[. c #061630", +"I[. c #071833", +"J[. c #09193A", +"K[. c #0F2445", +"L[. c #192C51", +"M[. c #182D53", +"N[. c #1B315B", +"O[. c #18315E", +"P[. c #0F3066", +"Q[. c #103067", +"R[. c #113269", +"S[. c #103269", +"T[. c #0C2E68", +"U[. c #072D6A", +"V[. c #042A66", +"W[. c #072760", +"X[. c #4166A1", +"Y[. c #3E64A1", +"Z[. c #7496CD", +"`[. c #89AADB", +" }. c #2A4E8C", +".}. c #41619B", +"+}. c #678AC5", +"@}. c #476DAB", +"#}. c #466AA9", +"$}. c #4A6DAD", +"%}. c #4C70B0", +"&}. c #6D92CF", +"*}. c #95B8F0", +"=}. c #94B7F0", +"-}. c #93B7F0", +";}. c #7DA2DB", +">}. c #4A6FB2", +",}. c #4067A9", +"'}. c #2F579B", +")}. c #1C4287", +"!}. c #1C4489", +"~}. c #1B4287", +"{}. c #1B4389", +"]}. c #496FB1", +"^}. c #87ADEA", +"/}. c #304C80", +"(}. c #000509", +"_}. c #04132F", +":}. c #061632", +"<}. c #102546", +"[}. c #0F2E67", +"}}. c #0B2E67", +"|}. c #0A2E68", +"1}. c #0C306A", +"2}. c #0C2E69", +"3}. c #042A67", +"4}. c #597DB8", +"5}. c #3E64A0", +"6}. c #4467A4", +"7}. c #7394C7", +"8}. c #2F5491", +"9}. c #7598D1", +"0}. c #33528A", +"a}. c #486CAC", +"b}. c #4469A8", +"c}. c #6084C1", +"d}. c #96B8F0", +"e}. c #95B8EF", +"f}. c #92B6F0", +"g}. c #91B5EF", +"h}. c #8FB6EF", +"i}. c #4E75B6", +"j}. c #456CAD", +"k}. c #3F66A8", +"l}. c #3B62A5", +"m}. c #244A8F", +"n}. c #184085", +"o}. c #194186", +"p}. c #355DA2", +"q}. c #6387C5", +"r}. c #668DCC", +"s}. c #5C85C7", +"t}. c #436299", +"u}. c #1C345C", +"v}. c #1B325D", +"w}. c #14326A", +"x}. c #0D2F67", +"y}. c #0C2E67", +"z}. c #0F2E6A", +"A}. c #092C69", +"B}. c #032A67", +"C}. c #7195CF", +"D}. c #4F73AF", +"E}. c #3F66A1", +"F}. c #3D64A0", +"G}. c #375C9A", +"H}. c #2B518F", +"I}. c #204584", +"J}. c #0A2D68", +"K}. c #2A4F8F", +"L}. c #3C61A0", +"M}. c #5E81C0", +"N}. c #8CB3EE", +"O}. c #8EB4F0", +"P}. c #97BBEF", +"Q}. c #7DA3DD", +"R}. c #5077B8", +"S}. c #466CAD", +"T}. c #365DA0", +"U}. c #194187", +"V}. c #375FA2", +"W}. c #416AAC", +"X}. c #3960A6", +"Y}. c #7B9FD9", +"Z}. c #91B9F4", +"`}. c #92BAF3", +" |. c #7DA2DD", +".|. c #5576AF", +"+|. c #020913", +"@|. c #17305D", +"#|. c #123067", +"$|. c #0D2D67", +"%|. c #0D3069", +"&|. c #0E2D68", +"*|. c #092B68", +"=|. c #0A2D69", +"-|. c #072C69", +";|. c #092E6A", +">|. c #234176", +",|. c #779CD6", +"'|. c #4C72AD", +")|. c #365C9A", +"!|. c #305494", +"~|. c #173A7B", +"{|. c #6889C1", +"]|. c #1A3E7F", +"^|. c #5B7EBD", +"/|. c #8DB4EE", +"(|. c #8BB2ED", +"_|. c #80A5E1", +":|. c #32599C", +"<|. c #184086", +"[|. c #3D66A8", +"}|. c #335B9E", +"||. c #355CA2", +"1|. c #3D65A9", +"2|. c #87ACE6", +"3|. c #8CB1E9", +"4|. c #6189C6", +"5|. c #5E80BA", +"6|. c #05142E", +"7|. c #081A37", +"8|. c #16294D", +"9|. c #1D3357", +"0|. c #192E58", +"a|. c #19305D", +"b|. c #112F64", +"c|. c #0E2F67", +"d|. c #0F2E68", +"e|. c #0D2F69", +"f|. c #0F326B", +"g|. c #0D2E68", +"h|. c #0A2E69", +"i|. c #052B68", +"j|. c #32528A", +"k|. c #5A7FB9", +"l|. c #7FA2DA", +"m|. c #5276B0", +"n|. c #2C5290", +"o|. c #1E4583", +"p|. c #3F649E", +"q|. c #234580", +"r|. c #4668A3", +"s|. c #325594", +"t|. c #2D4F8B", +"u|. c #305290", +"v|. c #5B7FBC", +"w|. c #2B508F", +"x|. c #2F5493", +"y|. c #4469A9", +"z|. c #567BBA", +"A|. c #89AFE9", +"B|. c #8AB1ED", +"C|. c #8BB1EF", +"D|. c #8BB1EE", +"E|. c #80A4E1", +"F|. c #385FA2", +"G|. c #244B8E", +"H|. c #1D4589", +"I|. c #325A9F", +"J|. c #345CA1", +"K|. c #13264A", +"L|. c #0F2F66", +"M|. c #0E2F66", +"N|. c #0B2D66", +"O|. c #0D2D66", +"P|. c #0C2D66", +"Q|. c #0B2D67", +"R|. c #032965", +"S|. c #3F629C", +"T|. c #486DA8", +"U|. c #3F659F", +"V|. c #335997", +"W|. c #305694", +"X|. c #466AA7", +"Y|. c #8FB0E6", +"Z|. c #89ABE1", +"`|. c #B2CBEF", +" 1. c #A5BFEA", +".1. c #4467A5", +"+1. c #365997", +"@1. c #254A8A", +"#1. c #88AFEA", +"$1. c #8AB0ED", +"%1. c #8AB0EE", +"&1. c #82A7E1", +"*1. c #4F75B6", +"=1. c #285095", +"-1. c #2A5297", +";1. c #335BA0", +">1. c #3C65A8", +",1. c #6B92D1", +"'1. c #081E49", +")1. c #020E1E", +"!1. c #081734", +"~1. c #102D61", +"{1. c #0F2E65", +"]1. c #0C2F67", +"^1. c #0F3068", +"/1. c #0D2D68", +"(1. c #0B2D68", +"_1. c #072A69", +":1. c #032863", +"<1. c #4E70AB", +"[1. c #486DA9", +"}1. c #4367A4", +"|1. c #244786", +"11. c #335693", +"21. c #4265A0", +"31. c #3F639E", +"41. c #3C5F9C", +"51. c #2F5190", +"61. c #395C9A", +"71. c #204586", +"81. c #375D9C", +"91. c #8AB0EB", +"01. c #88AEE9", +"a1. c #89AFEA", +"b1. c #89ADE9", +"c1. c #89AEEA", +"d1. c #87ADEB", +"e1. c #85AAE4", +"f1. c #2D5397", +"g1. c #183F84", +"h1. c #1A4288", +"i1. c #355EA2", +"j1. c #6C95D3", +"k1. c #071934", +"l1. c #091B3A", +"m1. c #0F2748", +"n1. c #172C53", +"o1. c #16305C", +"p1. c #0E2E64", +"q1. c #0E2F65", +"r1. c #072966", +"s1. c #072A68", +"t1. c #0B2B63", +"u1. c #5177B1", +"v1. c #466CA7", +"w1. c #39609B", +"x1. c #3F64A1", +"y1. c #466BAA", +"z1. c #4C71B0", +"A1. c #88ADE9", +"B1. c #86ACE8", +"C1. c #89ACE9", +"D1. c #88ACE9", +"E1. c #87ACE9", +"F1. c #87ABE7", +"G1. c #88ACE8", +"H1. c #88ADEB", +"I1. c #8AAEED", +"J1. c #8CB3F1", +"K1. c #87ACE7", +"L1. c #3960A3", +"M1. c #21478C", +"N1. c #557BBF", +"O1. c #203C70", +"P1. c #15315F", +"Q1. c #0D2E64", +"R1. c #0B2E66", +"S1. c #092C67", +"T1. c #062A66", +"U1. c #082B68", +"V1. c #062968", +"W1. c #5279B3", +"X1. c #4269A4", +"Y1. c #2A508E", +"Z1. c #123778", +"`1. c #0F3273", +" 2. c #45649C", +".2. c #5F7FB5", +"+2. c #1E407F", +"@2. c #14397D", +"#2. c #39609E", +"$2. c #4267A7", +"%2. c #4A6EAE", +"&2. c #5377B7", +"*2. c #7DA2DE", +"=2. c #86AAE6", +"-2. c #88ACEA", +";2. c #86AAE8", +">2. c #86AAE7", +",2. c #87ABE8", +"'2. c #88ADEA", +")2. c #8AAEEC", +"!2. c #89AFEC", +"~2. c #8CB2F1", +"{2. c #93B8F0", +"]2. c #8AAFE9", +"^2. c #1F468B", +"/2. c #1F468A", +"(2. c #3D65A7", +"_2. c #517ABA", +":2. c #7DA6E5", +"<2. c #335289", +"[2. c #04152E", +"}2. c #0B1D3B", +"|2. c #122A4C", +"12. c #112F65", +"22. c #0F2F65", +"32. c #0D2E65", +"42. c #0D2E66", +"52. c #0A2C67", +"62. c #062A67", +"72. c #022967", +"82. c #23437B", +"92. c #567BB7", +"02. c #365D98", +"a2. c #284E8C", +"b2. c #38578F", +"c2. c #A1C3F3", +"d2. c #5A79B0", +"e2. c #345B99", +"f2. c #4267A6", +"g2. c #4A6EAD", +"h2. c #5479B7", +"i2. c #7A9FDB", +"j2. c #85A9E5", +"k2. c #84A8E4", +"l2. c #85A9E7", +"m2. c #89ADEB", +"n2. c #8AAFEB", +"o2. c #8BB1F0", +"p2. c #8FB4F1", +"q2. c #8DB1EA", +"r2. c #4C72B3", +"s2. c #4067A8", +"t2. c #1E458A", +"u2. c #1A4186", +"v2. c #365EA3", +"w2. c #48689E", +"x2. c #0E2D66", +"y2. c #0D2F68", +"z2. c #092C66", +"A2. c #072A67", +"B2. c #072C68", +"C2. c #052964", +"D2. c #305189", +"E2. c #5579B3", +"F2. c #325895", +"G2. c #6C8CC1", +"H2. c #7396CC", +"I2. c #2B4D8A", +"J2. c #214686", +"K2. c #476CAB", +"L2. c #4D71B0", +"M2. c #7498D4", +"N2. c #86ABE6", +"O2. c #83A7E3", +"P2. c #84A8E6", +"Q2. c #83A8E4", +"R2. c #87ABE9", +"S2. c #85AAE8", +"T2. c #86ABE9", +"U2. c #88ACEB", +"V2. c #8BB0EB", +"W2. c #90B5F0", +"X2. c #4B71B2", +"Y2. c #476DAE", +"Z2. c #3E65A7", +"`2. c #234A8E", +" 3. c #2C5398", +".3. c #3961A5", +"+3. c #7BA2E1", +"@3. c #5D7FB9", +"#3. c #132F62", +"$3. c #0C2C64", +"%3. c #0A2C6A", +"&3. c #052862", +"*3. c #032662", +"=3. c #3F6199", +"-3. c #5276B1", +";3. c #345A98", +">3. c #214785", +",3. c #5373AA", +"'3. c #5074B3", +")3. c #82A6E2", +"!3. c #83A7E4", +"~3. c #83A7E5", +"{3. c #83A9E7", +"]3. c #8AAEEA", +"^3. c #8BB0EC", +"/3. c #8CB2F0", +"(3. c #4D73B4", +"_3. c #3960A2", +":3. c #20478B", +"<3. c #234B8F", +"[3. c #3D66A9", +"}3. c #668AC7", +"|3. c #061738", +"13. c #0E2140", +"23. c #162C54", +"33. c #152F5D", +"43. c #163260", +"53. c #0E2F64", +"63. c #0F2E66", +"73. c #092B69", +"83. c #072C67", +"93. c #062B68", +"03. c #032765", +"a3. c #4668A2", +"b3. c #3F65A0", +"c3. c #264B89", +"d3. c #2C4C88", +"e3. c #6C90C8", +"f3. c #5075B4", +"g3. c #7B9EDB", +"h3. c #81A5E1", +"i3. c #85A9E6", +"j3. c #8AAEEB", +"k3. c #5076B6", +"l3. c #2B5195", +"m3. c #264C91", +"n3. c #284F93", +"o3. c #285093", +"p3. c #20488C", +"q3. c #355EA0", +"r3. c #3C65A7", +"s3. c #456EB0", +"t3. c #7396D1", +"u3. c #0B1C3B", +"v3. c #162D4E", +"w3. c #182F53", +"x3. c #14305D", +"y3. c #0E2E63", +"z3. c #0E2D64", +"A3. c #0D2D65", +"B3. c #0E2E65", +"C3. c #0B2B64", +"D3. c #0C2E66", +"E3. c #0A2D65", +"F3. c #082B66", +"G3. c #062B67", +"H3. c #042862", +"I3. c #072861", +"J3. c #5075AE", +"K3. c #385E99", +"L3. c #2D518F", +"M3. c #264B8A", +"N3. c #0D3472", +"O3. c #103875", +"P3. c #093070", +"Q3. c #799CD8", +"R3. c #82A6E3", +"S3. c #82A6E4", +"T3. c #84A8E5", +"U3. c #89ADEA", +"V3. c #496FAF", +"W3. c #3E65A6", +"X3. c #1E468C", +"Y3. c #1D458B", +"Z3. c #335C9E", +"`3. c #3B64A6", +" 4. c #6A92D1", +".4. c #7B9FDB", +"+4. c #000511", +"@4. c #182E56", +"#4. c #132C5A", +"$4. c #0D2E63", +"%4. c #0C2C65", +"&4. c #0A2D66", +"*4. c #072B65", +"=4. c #597DB7", +"-4. c #345997", +";4. c #254A88", +">4. c #234886", +",4. c #0B3271", +"'4. c #09316F", +")4. c #365C9B", +"!4. c #5175B4", +"~4. c #80A4E0", +"{4. c #81A5E2", +"]4. c #89AEEB", +"^4. c #5178B8", +"/4. c #4B72B2", +"(4. c #345A9D", +"_4. c #194185", +":4. c #1C4389", +"<4. c #315A9D", +"[4. c #7EA3DE", +"}4. c #04122B", +"|4. c #051934", +"14. c #162E5C", +"24. c #17335F", +"34. c #0C2D63", +"44. c #0C2D64", +"54. c #092C65", +"64. c #082B65", +"74. c #082C66", +"84. c #062966", +"94. c #05265E", +"04. c #062765", +"a4. c #1B376B", +"b4. c #4367A3", +"c4. c #4468A5", +"d4. c #3E629F", +"e4. c #284D8C", +"f4. c #264C8A", +"g4. c #0B3371", +"h4. c #5579B6", +"i4. c #7FA3DF", +"j4. c #81A5E3", +"k4. c #86ABE8", +"l4. c #4D73B5", +"m4. c #1D4488", +"n4. c #1B4288", +"o4. c #264E93", +"p4. c #365EA1", +"q4. c #7FA5E2", +"r4. c #02060B", +"s4. c #071A35", +"t4. c #122850", +"u4. c #14315E", +"v4. c #0F2E63", +"w4. c #0D2C62", +"x4. c #0F2F64", +"y4. c #0D2D63", +"z4. c #0B2E63", +"A4. c #062965", +"B4. c #325085", +"C4. c #5D81BA", +"D4. c #3A5E9B", +"E4. c #325592", +"F4. c #274A88", +"G4. c #0E3573", +"H4. c #0D3473", +"I4. c #395D9C", +"J4. c #567AB8", +"K4. c #5A7EBC", +"L4. c #7DA0DB", +"M4. c #80A4E2", +"N4. c #92B6F1", +"O4. c #8CAEE6", +"P4. c #6D8EC8", +"Q4. c #1E4589", +"R4. c #173D82", +"S4. c #2D5294", +"T4. c #5478B5", +"U4. c #6C93D2", +"V4. c #041435", +"W4. c #0A1C3B", +"X4. c #11294B", +"Y4. c #152C5A", +"Z4. c #122E60", +"`4. c #102D5F", +" 5. c #0F2D63", +".5. c #0D2F64", +"+5. c #0B2D65", +"@5. c #092C64", +"#5. c #062865", +"$5. c #04275F", +"%5. c #446397", +"&5. c #587CB5", +"*5. c #325693", +"=5. c #32528C", +"-5. c #809DCE", +";5. c #42639F", +">5. c #2A4C8A", +",5. c #2C4F8D", +"'5. c #2F5393", +")5. c #4E72B0", +"!5. c #567BB9", +"~5. c #80A3E0", +"{5. c #80A2DF", +"]5. c #8BAFEC", +"^5. c #90B2E9", +"/5. c #6588C4", +"(5. c #6986BF", +"_5. c #254B8F", +":5. c #254A8E", +"<5. c #244A8E", +"[5. c #6B8BC2", +"}5. c #5174B1", +"|5. c #234A8F", +"15. c #1B3A72", +"25. c #0E2648", +"35. c #0F2C5E", +"45. c #0D2C63", +"55. c #0D2D64", +"65. c #0C2B64", +"75. c #082B63", +"85. c #072A64", +"95. c #0A2C68", +"05. c #082C67", +"a5. c #4C6FA8", +"b5. c #4C70AB", +"c5. c #345795", +"d5. c #4969A1", +"e5. c #A6C3EC", +"f5. c #6D8FC8", +"g5. c #5879B2", +"h5. c #345794", +"i5. c #335795", +"j5. c #2A5090", +"k5. c #486DAB", +"l5. c #5B7FBD", +"m5. c #91B4EC", +"n5. c #4D74B4", +"o5. c #224A8D", +"p5. c #1B4286", +"q5. c #224588", +"r5. c #4465A4", +"s5. c #1D4387", +"t5. c #1C468B", +"u5. c #23447E", +"v5. c #020F20", +"w5. c #031020", +"x5. c #021228", +"y5. c #16315A", +"z5. c #152C59", +"A5. c #132D59", +"B5. c #142D5B", +"C5. c #0C2D62", +"D5. c #0C2D65", +"E5. c #0C2C63", +"F5. c #0D2C65", +"G5. c #0A2C64", +"H5. c #092B65", +"I5. c #082A66", +"J5. c #092B66", +"K5. c #082963", +"L5. c #4F73AD", +"M5. c #4E73AC", +"N5. c #315694", +"O5. c #32538D", +"P5. c #264986", +"Q5. c #224685", +"R5. c #244785", +"S5. c #4367A6", +"T5. c #678AC7", +"U5. c #7DA1DD", +"V5. c #8FB2EC", +"W5. c #2A5195", +"X5. c #1E4588", +"Y5. c #184186", +"Z5. c #395C97", +"`5. c #061935", +" 6. c #12274B", +".6. c #152B56", +"+6. c #0E2E62", +"@6. c #0B2C64", +"#6. c #082B64", +"$6. c #072A65", +"%6. c #072965", +"&6. c #052A66", +"*6. c #122E62", +"=6. c #5277B2", +"-6. c #466CA6", +";6. c #274B89", +">6. c #224785", +",6. c #6E91CE", +"'6. c #7FA2DF", +")6. c #80A6E1", +"!6. c #8BB0EE", +"~6. c #91B3EA", +"{6. c #3B61A2", +"]6. c #295194", +"^6. c #254C8F", +"/6. c #21488B", +"(6. c #264D93", +"_6. c #31599C", +":6. c #3962A5", +"<6. c #4066A6", +"[6. c #071832", +"}6. c #102748", +"|6. c #162D59", +"16. c #132E58", +"26. c #112D5E", +"36. c #0A2D63", +"46. c #0A2D64", +"56. c #0A2C62", +"66. c #0C2E65", +"76. c #0A2B64", +"86. c #0B2C65", +"96. c #092D67", +"06. c #05265C", +"a6. c #203D71", +"b6. c #264A88", +"c6. c #254987", +"d6. c #7094D0", +"e6. c #8AAFED", +"f6. c #8CB2EE", +"g6. c #4568A8", +"h6. c #2A5194", +"i6. c #284F92", +"j6. c #1F4689", +"k6. c #1E4489", +"l6. c #22498D", +"m6. c #254D93", +"n6. c #30589C", +"o6. c #365EA2", +"p6. c #06162F", +"q6. c #0F2E62", +"r6. c #0C2B61", +"s6. c #0B2C62", +"t6. c #0B2C63", +"u6. c #0B2D63", +"v6. c #0B2B62", +"w6. c #062A65", +"x6. c #072967", +"y6. c #062964", +"z6. c #042964", +"A6. c #304E84", +"B6. c #476BA6", +"C6. c #244886", +"D6. c #224684", +"E6. c #7598D5", +"F6. c #7FA3DE", +"G6. c #8CB0ED", +"H6. c #93B7F1", +"I6. c #94B7F1", +"J6. c #5E83C0", +"K6. c #295093", +"L6. c #335A9D", +"M6. c #355C9F", +"N6. c #1D4487", +"O6. c #1C4387", +"P6. c #516FA8", +"Q6. c #2C4F91", +"R6. c #7191C9", +"S6. c #6385C0", +"T6. c #142A54", +"U6. c #0D2D62", +"V6. c #0B2B61", +"W6. c #0C2E64", +"X6. c #092A62", +"Y6. c #072B66", +"Z6. c #34538A", +"`6. c #385C97", +" 7. c #214684", +".7. c #1E4484", +"+7. c #214787", +"@7. c #779BD7", +"#7. c #89ACE8", +"$7. c #8AAFEA", +"%7. c #93B6EC", +"&7. c #345B9D", +"*7. c #30579A", +"=7. c #274F91", +"-7. c #20478A", +";7. c #294F92", +">7. c #22488B", +",7. c #173F83", +"'7. c #183F85", +")7. c #143C83", +"!7. c #2F5090", +"~7. c #274B8E", +"{7. c #224689", +"]7. c #1E468A", +"^7. c #597BB7", +"/7. c #6186C5", +"(7. c #071732", +"_7. c #0C2C62", +":7. c #0A2B63", +"<7. c #092B63", +"[7. c #0A2C65", +"}7. c #082A63", +"|7. c #062963", +"17. c #032560", +"27. c #32558F", +"37. c #2F5390", +"47. c #204684", +"57. c #7BA0DB", +"67. c #8CAFE7", +"77. c #6C94D2", +"87. c #32599B", +"97. c #2C5295", +"07. c #30589A", +"a7. c #395FA2", +"b7. c #295092", +"c7. c #22498C", +"d7. c #20488B", +"e7. c #13387D", +"f7. c #173C80", +"g7. c #92ADDF", +"h7. c #4566A2", +"i7. c #194286", +"j7. c #194087", +"k7. c #1C448A", +"l7. c #071733", +"m7. c #0E2546", +"n7. c #142B56", +"o7. c #0D2D61", +"p7. c #0A2A62", +"q7. c #0A2962", +"r7. c #0B2A63", +"s7. c #092B64", +"t7. c #092C63", +"u7. c #062A64", +"v7. c #06255B", +"w7. c #325793", +"x7. c #2D518E", +"y7. c #264A87", +"z7. c #375C9C", +"A7. c #264E90", +"B7. c #234A8D", +"C7. c #214486", +"D7. c #6488C9", +"E7. c #183F86", +"F7. c #184087", +"G7. c #1B4186", +"H7. c #3B5B9A", +"I7. c #21478A", +"J7. c #153F83", +"K7. c #345DA0", +"L7. c #4F78B8", +"M7. c #091A3A", +"N7. c #0D2C5F", +"O7. c #0B2B5F", +"P7. c #0A2B60", +"Q7. c #092B61", +"R7. c #082A62", +"S7. c #0A2A63", +"T7. c #092A63", +"U7. c #082C63", +"V7. c #082C64", +"W7. c #072964", +"X7. c #062864", +"Y7. c #325893", +"Z7. c #85AAE2", +"`7. c #6386C1", +" 8. c #254D90", +".8. c #1B4489", +"+8. c #1D448A", +"@8. c #294A83", +"#8. c #041333", +"$8. c #000408", +"%8. c #15294E", +"&8. c #112E59", +"*8. c #0E2B5D", +"=8. c #0D2C61", +"-8. c #0B2B60", +";8. c #0B2C61", +">8. c #0A2C63", +",8. c #0A2B62", +"'8. c #092962", +")8. c #072A62", +"!8. c #092D65", +"~8. c #072A63", +"{8. c #062961", +"]8. c #062962", +"^8. c #395D99", +"/8. c #274D89", +"(8. c #224786", +"_8. c #4D71AD", +":8. c #80A4DF", +"<8. c #9BBBF1", +"[8. c #5275B2", +"}8. c #284F91", +"|8. c #254D8F", +"18. c #21498C", +"28. c #1F4589", +"38. c #385DA1", +"48. c #1F478B", +"58. c #20488E", +"68. c #3760A2", +"78. c #3860A3", +"88. c #476AA5", +"98. c #000307", +"08. c #122A55", +"a8. c #0A2B61", +"b8. c #08295F", +"c8. c #092A61", +"d8. c #092961", +"e8. c #072860", +"f8. c #2A497E", +"g8. c #385C98", +"h8. c #284E89", +"i8. c #5074B1", +"j8. c #739BD7", +"k8. c #7BA2E0", +"l8. c #4E73B1", +"m8. c #264D91", +"n8. c #264D90", +"o8. c #254C8E", +"p8. c #214A8C", +"q8. c #21488C", +"r8. c #1C4488", +"s8. c #21488D", +"t8. c #285094", +"u8. c #284F95", +"v8. c #4E71AF", +"w8. c #04122C", +"x8. c #061634", +"y8. c #0D2B5E", +"z8. c #0C2A5E", +"A8. c #0D2C60", +"B8. c #0C2C61", +"C8. c #0A295F", +"D8. c #092A5F", +"E8. c #0C2E63", +"F8. c #052561", +"G8. c #34568E", +"H8. c #40649E", +"I8. c #2F548F", +"J8. c #284E8B", +"K8. c #294D8A", +"L8. c #153C7A", +"M8. c #5174B2", +"N8. c #87AFEA", +"O8. c #87ACE4", +"P8. c #769EDB", +"Q8. c #7DA5E2", +"R8. c #5D82BF", +"S8. c #274D91", +"T8. c #234B8D", +"U8. c #375FA3", +"V8. c #2E569A", +"W8. c #3F64A7", +"X8. c #051431", +"Y8. c #061532", +"Z8. c #132B4F", +"`8. c #112956", +" 9. c #122B59", +".9. c #0C2B60", +"+9. c #0C2C60", +"@9. c #092A60", +"#9. c #0B2D64", +"$9. c #052962", +"%9. c #052963", +"&9. c #03265D", +"*9. c #062253", +"=9. c #4266A1", +"-9. c #355994", +";9. c #2A508B", +">9. c #2F5590", +",9. c #234686", +"'9. c #244787", +")9. c #254A89", +"!9. c #234A89", +"~9. c #284C8C", +"{9. c #80A3DE", +"]9. c #84A9E5", +"^9. c #82A8E2", +"/9. c #79A1DE", +"(9. c #274E90", +"_9. c #163C82", +":9. c #193D7E", +"<9. c #214A8E", +"[9. c #0F254C", +"}9. c #112950", +"|9. c #0C2A5D", +"19. c #0B2B5E", +"29. c #0B2A60", +"39. c #0A2A5F", +"49. c #07285F", +"59. c #082861", +"69. c #072961", +"79. c #05275F", +"89. c #052860", +"99. c #052861", +"09. c #032661", +"a9. c #032760", +"b9. c #092558", +"c9. c #5B7EB7", +"d9. c #365A96", +"e9. c #2D518D", +"f9. c #2C508E", +"g9. c #244987", +"h9. c #4D72AE", +"i9. c #83AAE5", +"j9. c #8BB1EB", +"k9. c #7EA5E1", +"l9. c #7EA6E3", +"m9. c #769DDA", +"n9. c #284E91", +"o9. c #1A4085", +"p9. c #1B4387", +"q9. c #5F81BB", +"r9. c #93B6EA", +"s9. c #6587C1", +"t9. c #1E488D", +"u9. c #264B90", +"v9. c #2C5297", +"w9. c #000207", +"x9. c #041026", +"y9. c #132952", +"z9. c #102853", +"A9. c #102B5B", +"B9. c #102C5D", +"C9. c #0D2B5F", +"D9. c #0F2C60", +"E9. c #0C2A60", +"F9. c #0A2A61", +"G9. c #082961", +"H9. c #042860", +"I9. c #042861", +"J9. c #143064", +"K9. c #5F83BC", +"L9. c #4B6EA9", +"M9. c #3D619C", +"N9. c #315591", +"O9. c #2D508E", +"P9. c #284D8B", +"Q9. c #224683", +"R9. c #2B4F8D", +"S9. c #294D8B", +"T9. c #254988", +"U9. c #2A4E8E", +"V9. c #355B99", +"W9. c #5177B3", +"X9. c #7DA1DC", +"Y9. c #85ABE6", +"Z9. c #89B0E9", +"`9. c #91B5F0", +" 0. c #A3C1F0", +".0. c #395EA0", +"+0. c #2C5395", +"@0. c #1F478A", +"#0. c #20468C", +"$0. c #4469AB", +"%0. c #90B4EC", +"&0. c #90B3E9", +"*0. c #264C8E", +"=0. c #174286", +"-0. c #3C5EA0", +";0. c #6581B7", +">0. c #061635", +",0. c #112A4F", +"'0. c #112A55", +")0. c #0C2B5F", +"!0. c #0A2A5E", +"~0. c #052961", +"{0. c #062761", +"]0. c #03265E", +"^0. c #04265C", +"/0. c #284477", +"(0. c #6287BE", +"_0. c #486CA7", +":0. c #3D619D", +"<0. c #325692", +"[0. c #2C508C", +"}0. c #284C8A", +"|0. c #254888", +"10. c #244887", +"20. c #274A8A", +"30. c #547AB6", +"40. c #80A5E0", +"50. c #7FA5E1", +"60. c #9DBCED", +"70. c #7BA4E1", +"80. c #7FA8E4", +"90. c #80A9E5", +"00. c #3B60A1", +"a0. c #2D5497", +"b0. c #2B5194", +"c0. c #5B7FC0", +"d0. c #5E84C1", +"e0. c #7CA3DC", +"f0. c #4F72B0", +"g0. c #194287", +"h0. c #1C4289", +"i0. c #2A5397", +"j0. c #264477", +"k0. c #041025", +"l0. c #132953", +"m0. c #122854", +"n0. c #0B2A5E", +"o0. c #0B2A5D", +"p0. c #0C2B5E", +"q0. c #0B2A5F", +"r0. c #06295E", +"s0. c #072A60", +"t0. c #082962", +"u0. c #062860", +"v0. c #062760", +"w0. c #03235B", +"x0. c #405D8F", +"y0. c #6286BE", +"z0. c #4367A2", +"A0. c #2F538F", +"B0. c #2E528E", +"C0. c #2A4E8B", +"D0. c #284B89", +"E0. c #2B4E8C", +"F0. c #274A89", +"G0. c #274C8A", +"H0. c #264988", +"I0. c #294E8D", +"J0. c #274D8B", +"K0. c #577BB8", +"L0. c #7CA0DA", +"M0. c #8DB1EB", +"N0. c #99B9EC", +"O0. c #7BA5E1", +"P0. c #81ABE7", +"Q0. c #81AAE7", +"R0. c #2F5699", +"S0. c #21498B", +"T0. c #1E4689", +"U0. c #193D80", +"V0. c #1E458B", +"W0. c #2C559A", +"X0. c #030E1F", +"Y0. c #031023", +"Z0. c #0D295B", +"`0. c #09295F", +" a. c #082A60", +".a. c #082960", +"+a. c #072862", +"@a. c #032862", +"#a. c #4A6A9E", +"$a. c #6386BE", +"%a. c #3F629E", +"&a. c #305491", +"*a. c #305490", +"=a. c #274B8A", +"-a. c #597CB7", +";a. c #234483", +">a. c #294D8D", +",a. c #294C8C", +"'a. c #264989", +")a. c #2B4E8E", +"!a. c #5E81BE", +"~a. c #7DA1DB", +"{a. c #86AAE5", +"]a. c #9CBCF1", +"^a. c #9DBDEC", +"/a. c #7DA7E3", +"(a. c #83ADE9", +"_a. c #83ADE8", +":a. c #88B1EC", +"b. c #052258", +",b. c #0F2B5D", +"'b. c #668AC1", +")b. c #486BA5", +"!b. c #294D89", +"~b. c #274B87", +"{b. c #274B88", +"]b. c #2A4D8B", +"^b. c #315593", +"/b. c #224584", +"(b. c #5D7EBB", +"_b. c #335896", +":b. c #375B99", +"c. c #4C6DAA", +",c. c #34589A", +"'c. c #365C9E", +")c. c #486EAF", +"!c. c #4971B2", +"~c. c #6786BE", +"{c. c #5376B4", +"]c. c #274E92", +"^c. c #325B9D", +"/c. c #2E4B7F", +"(c. c #03060B", +"_c. c #030F20", +":c. c #10254B", +"d. c #08285B", +",d. c #07275F", +"'d. c #06255C", +")d. c #264A86", +"!d. c #234783", +"~d. c #284B87", +"{d. c #294C8A", +"]d. c #4367A5", +"^d. c #3F63A1", +"/d. c #365999", +"(d. c #3B5F9E", +"_d. c #4165A3", +":d. c #6185C1", +"e. c #041123", +",e. c #0F2952", +"'e. c #0A285B", +")e. c #09285A", +"!e. c #09275B", +"~e. c #09295B", +"{e. c #09285D", +"]e. c #07275C", +"^e. c #03275E", +"/e. c #042259", +"(e. c #355893", +"_e. c #224581", +":e. c #274A85", +"f. c #1B3A76", +",f. c #355997", +"'f. c #305391", +")f. c #305392", +"!f. c #4C71AD", +"~f. c #7198D2", +"{f. c #6B92CC", +"]f. c #678CC7", +"^f. c #81A4DE", +"/f. c #8AADE7", +"(f. c #8CB2E9", +"_f. c #8CB2EB", +":f. c #81AAE6", +"g. c #A9C9F0", +",g. c #89B4EF", +"'g. c #7297D1", +")g. c #2C5194", +"!g. c #3D5E9C", +"~g. c #5E7CB5", +"{g. c #355B9F", +"]g. c #466FB0", +"^g. c #0D2044", +"/g. c #0B2243", +"(g. c #0A2555", +"_g. c #0B2656", +":g. c #07285B", +"h. c #06275B", +",h. c #05255B", +"'h. c #07275E", +")h. c #05245D", +"!h. c #345690", +"~h. c #042559", +"{h. c #4C6594", +"]h. c #243964", +"^h. c #476BA8", +"/h. c #0A3170", +"(h. c #375994", +"_h. c #749AD4", +":h. c #7197D0", +"i. c #83AEEA", +",i. c #8CB2EC", +"'i. c #3C61A1", +")i. c #2B5294", +"!i. c #1E4488", +"~i. c #265094", +"{i. c #0B2045", +"]i. c #072655", +"^i. c #032156", +"/i. c #022051", +"(i. c #062559", +"_i. c #2E508B", +":i. c #05255F", +"j. c #042156", +",j. c #022151", +"'j. c #31548E", +")j. c #284A87", +"!j. c #05295F", +"~j. c #516EA0", +"{j. c #9AB6E2", +"]j. c #5070A9", +"^j. c #80A5DE", +"/j. c #779ED8", +"(j. c #7BA1DA", +"_j. c #9FBFEC", +":j. c #1B4184", +"k. c #80AAE6", +",k. c #6187C2", +"'k. c #5C7EB7", +")k. c #99BBEE", +"!k. c #6B8BC1", +"~k. c #21478B", +"{k. c #1E4487", +"]k. c #1D3F7E", +"^k. c #718EC0", +"/k. c #163A7D", +"(k. c #1D4388", +"_k. c #1A4388", +":k. c #062554", +"l. c #8BB3ED", +",l. c #33599A", +"'l. c #07234C", +")l. c #07214D", +"!l. c #072551", +"~l. c #052352", +"{l. c #062353", +"]l. c #062354", +"^l. c #052557", +"/l. c #042252", +"(l. c #0E3069", +"_l. c #274982", +":l. c #264680", +"m. c #88A6DA", +",m. c #6282B8", +"'m. c #98B6E3", +")m. c #16397C", +"!m. c #668ECC", +"~m. c #022250", +"{m. c #385687", +"]m. c #1E3A6D", +"^m. c #082B69", +"/m. c #6283BA", +"(m. c #80A7DE", +"_m. c #82A9DF", +":m. c #82A9DE", +"n. c #040E1F", +",n. c #02214F", +"'n. c #022251", +")n. c #052256", +"!n. c #0D2E62", +"~n. c #0A2F69", +"{n. c #3D5B8E", +"]n. c #26447A", +"^n. c #24457F", +"/n. c #0E326C", +"(n. c #224380", +"_n. c #7698CF", +":n. c #4E6EA8", +"o. c #143873", +",o. c #5474AA", +"'o. c #85ACE1", +")o. c #84A9DE", +"!o. c #86ABE0", +"~o. c #94B7E8", +"{o. c #A1C2EF", +"]o. c #C0D6F1", +"^o. c #C4D9F2", +"/o. c #C7D9F3", +"(o. c #98BDF3", +"_o. c #9CC0F3", +":o. c #80A3DA", +"p. c #637AA6", +",p. c #627BA6", +"'p. c #5F78A3", +")p. c #57719D", +"!p. c #526C98", +"~p. c #4D6794", +"{p. c #4A6592", +"]p. c #476390", +"^p. c #456090", +"/p. c #3E5A8B", +"(p. c #3B5889", +"_p. c #375486", +":p. c #314D81", +"q. c #010304", +",q. c #040406", +"'q. c #030405", +")q. c #021232", +"!q. c #030305", +"~q. c #010303", +"{q. c #010202", +"]q. c #020202", +"^q. c #030E27", +"/q. c #020405", +"(q. c #030304", +"_q. c #030204", +":q. c #03080E", +" $ , > ' > ) > ! $ ~ { $ ] ^ $ ] > & ^ & ! ] ~ / ( _ : < [ / { [ / { } ; | { : 1 2 < { } 2 3 4 : } 5 6 { 7 8 9 0 a } 7 7 b 8 8 6 7 c a 8 b 6 6 d e f g 0 a h 7 i 8 0 7 j k c l m n n h c o p q r r s t u v m p w p t x y z A w B x z C D E D F G H I I A z J A I K L H M N O M P Q R M S T U S H V W P X H Y Z ` P V . .. R X +. @. . #. $. .. %. &. @. *. =. +. -. ;. >. ,. &. '. ). !. '. ~. {. {. {. ]. ^. '. '. ^. /. (. _. :. <. [. }. |. 1. }. 2. 3. 4. 5. 6. 7. 8. 5. 9. 0. 0. a. b. 9. 9. c. c. d. e. d. e. c. e. f. g. g. h. i. j. k. i. l. m. m. n. o. f. o. p. q. q. r. s. t. u. v. v. w. s. x. y. z. A. B. A. C. D. E. F. F. F. F. G. H. I. J. K. L. L. M. N. O. J. L. L. P. N. Q. R. S. S. T. Q. U. V. W. X. T. Y. Z. T. X. `. + .+ ++ @+ ++ `. #+ `. $+ %+ &+ *+ =+ -+ ;+ &+ ;+ &+ &+ >+ ,+ '+ )+ !+ ~+ ~+ {+ ]+ ^+ /+ ~+ (+ ~+ ~+ /+ ~+ (+ _+ :+ <+ /+ [+ }+ |+ |+ 1+ 2+ 3+ 4+ |+ 4+ 3+ 5+ 6+ 7+ 8+ 3+ 9+ 0+ 8+ 8+ a+ b+ c+ d+ d+ e+ e+ d+ e+ c+ f+ d+ d+ f+ 0+ 0+ g+ h+ i+ j+ h+ k+ l+ m+ n+ h+ h+ h+ n+ h+ k+ o+ p+ m+ q+ h+ n+ r+ s+ t+ u+ s+ o+ v+ s+ w+ w+ x+ s+ x+ x+ x+ y+ z+ A+ A+ B+ A+ C+ C+ D+ A+ E+ F+ D+ G+ C+ D+ C+ E+ H+ I+ J+ K+ L+ F+ D+ M+ E+ N+ L+ O+ L+ O+ P+ L+ L+ Q+ Q+ R+ R+ R+ S+ T+ U+ R+ Q+ R+ V+ W+ X+ U+ X+ U+ X+ W+ W+ Y+ Z+ `+ @ W+ Y+ .@ +@ @@ W+ #@ +@ @@ #@ $@ +@ +@ #@ @@ #@ %@ %@ %@ &@ &@ %@ &@ *@ *@ %@ =@ -@ ;@ *@ >@ ,@ '@ )@ -@ !@ ~@ ~@ {@ ]@ ^@ /@ (@ ^@ _@ !@ {@ :@ <@ [@ }@ |@ 1@ 2@ 3@ 2@ 4@ 5@ 2@ 1@ _@ 6@ 7@ 6@ 8@ 9@ 6@ 0@ 6@ a@ b@ c@ d@ e@ f@ g@ 0@ h@ i@ j@ h@ k@ e@ l@ l@ l@ m@ n@ o@ l@ p@ q@ o@ :. :. r@ s@ t@ u@ s@ u@ (. (. s@ v@ w@ ^. x@ ,. s@ =. y@ ). -. ^. -. z@ A@ A@ B@ C@ +. z@ @. &. D@ E@ F@ G@ H@ X I@ Y J@ H@ ` V J K@ L@ M@ H N@ Y L@ K@ O@ O@ P@ Q@ Q@ N Q@ C A I ", +"R@ S@ R@ + + R@ + + # > T@ ; & R@ > U@ > V@ # > & > . & T@ > ; W@ ; ^ | ) | & ; ; > ] ^ X@ Y@ ) | ~ 1 Z@ [ / / `@ # ) { ) .# +# +# < @# b 2 _ { < W@ ## $# < %# < { $# Y@ 7 $# 5 &# *# =# a 6 -# ;# d a e ># } a { ,# c g f '# a e d a b 0 e h )# h !# h h f ~# {# r o ~# n r ~# ]# ^# /# n (# x C w _# Q@ D m I :# ^# C z w N <# P@ K@ [# N }# N A J z x U z I Y O@ N@ Q@ |# T J Y L@ L@ K@ S P 1# 2# 1# 3# 1# J J@ Z @. E@ 4# Y 1# #. . 5# 5# 6# 7# +. +. 8# W . .. . . &. 9# ;. 0# A@ a# !. ;. .. ~. '. b# c# t@ d# v@ v@ v@ v@ :. v@ v@ e# f# }. g# h# i# }. j# g# k# 7. 6. 6. l# 9. m# 4. n# 9. d. 9. o# m# p# c. e. c. d. c. q# q# d. q# i. l. r# r# s# l. t# l. u# v# n. o. q. t. w# q. t. x# y# v. u. u. s. z# A# B# E. A. F. C. C# D# G. G. G. G. G. G. E# K. J. N. M. L. J. F# O. L. S. O. J. J. O. S. S. G# H# I# O. G# F# Y. J# K# `. `. J# L# T. W. I# M# N# #+ N# N# O# N# &+ &+ P# ;+ -+ ;+ &+ ;+ Q# ;+ R# S# T# U# ]+ V# (+ W# X# U# ~+ (+ /+ Y# /+ Z# `# _+ ~+ Z# 1+ |+ `# `# $ |+ .$ 1+ 3+ +$ 4+ @$ #$ $$ 8+ +$ 0+ c+ 7+ b+ e+ d+ %$ 9+ 0+ 0+ 0+ d+ 0+ &$ i+ d+ 0+ 0+ %$ g+ m+ l+ *$ m+ =$ l+ n+ h+ m+ -$ k+ h+ h+ ;$ n+ l+ -$ n+ l+ l+ >$ ,$ s+ '$ s+ w+ o+ o+ )$ x+ !$ ~$ {$ ~$ x+ x+ ]$ B+ A+ A+ A+ A+ A+ B+ A+ A+ A+ D+ E+ y+ C+ E+ C+ A+ ^$ A+ D+ L+ M+ C+ E+ F+ N+ O+ Q+ /$ Q+ R+ /$ /$ /$ /$ R+ T+ P+ S+ T+ .@ V+ R+ R+ V+ X+ X+ X+ .@ ($ X+ .@ X+ _$ W+ :$ <$ @ @@ W+ +@ @@ W+ @@ @@ [$ +@ #@ %@ +@ &@ %@ %@ #@ #@ &@ &@ }$ %@ |$ *@ 1$ =@ =@ *@ -@ *@ 2$ 3$ '@ 4$ *@ !@ )@ 5$ ~@ 6$ 7$ 8$ ~@ (@ 9$ 0$ !@ a$ b$ c$ 4@ ,@ d$ 4@ 4@ !@ e$ f$ 3@ g$ 3@ 9@ h$ a@ i$ j$ 7@ k$ l$ m$ n$ o$ p$ f@ f@ i@ 0@ n@ l@ q$ r$ i@ f@ s$ l@ p@ l@ l@ t$ j@ h# u$ v$ s@ u@ q@ :. t@ w$ w$ :. w$ x@ x$ (. q@ y$ ^. !. -. !. ). b# ^. ). $. ). *. &. &. A@ !. z$ 5# A$ W #. I@ B$ C$ D$ #. E$ Y V S F$ E@ D$ S M@ M D$ G$ J A N@ H$ I$ H$ M J N@ P@ /# P@ ", +"* R@ J$ K$ # L$ M$ # N$ O$ > > & . ] V@ ; # P$ # > & ; ] . Q$ ] ~ ; ~ P$ & ) R$ W@ [ S$ | W@ { T$ ~ W@ ~ ~ ( ;# U$ [ { 2 { { W@ / ~ [ [ ) +# ## $# / : 2 } } { $# < < $# 6 -# $# ( } $# ~# &# e } g $# V$ b b [ 7 / 9 V$ a 6 V$ !# $# 7 j c a W$ o c X$ Y$ e ~# ~# o n h c Z$ c v h h h m ^# D c p `$ Y$ ^# C % ^# ^# I M N C N Q@ M Q@ N x x A G .% I x x Q@ M T J O@ Q@ P@ L@ +% A L@ P@ M@ ` P J L @% I@ Y H@ G$ C$ I@ #% L@ Y @. E@ z$ #. C$ W $% &. R =. A@ A@ $% A@ &. +. A@ =. $. $% =. =. z@ &. %% ^. {. &% ^. ~. x@ (. v@ *% ^. ~. =% t@ -% }. h# ;% g# >% ,% h# 4. '% 8. 7. 8. )% 9. !% m# ~% 9. e. d. c. d. e. c. e. {% e. g. q# g. c. e. v# v# ]% ^% t# o. /% l. j. s# (% q. t. _% :% (% <% t. <% [% }% t. v. |% 1% A. 2% D# D. 3% D# 4% 5% G. 6% G. H. D. 7% 8% J. 9% O. J. S. O. O. S. O. 0% I# T. S. S. G# Q. a% W. H# L# T. Y. W. J# ++ W. ++ b% c% c% L# #+ #+ d% P# e% f% g% -+ ;+ -+ P# -+ h% ;+ Q# =+ i% j% j% ~+ /+ k% ^+ ~+ ~+ ~+ (+ /+ ~+ (+ l% m% n% 6+ m% m% o% p% p% q% r% s% 1+ $$ 1+ 1+ t% 3+ 6+ $$ $$ 8+ @$ c+ $$ b+ d+ d+ d+ d+ a+ a+ %$ f+ 0+ 0+ m+ 0+ %$ %$ d+ u% n+ h+ n+ *$ l+ v% w% n+ l+ j+ m+ n+ n+ m+ n+ h+ r+ h+ m+ n+ h+ x% u+ y% s+ s+ z% '$ o+ o+ x+ w+ o+ v+ x+ u+ A% A+ A+ B% C+ A+ A+ B% A+ A+ C+ E+ A+ B+ C+ E+ D+ E+ F+ C+ I+ C+ L+ C% E+ C+ D% E% L+ K+ Q+ P+ S+ /$ F% R+ G% S+ T+ R+ S+ T+ V+ S+ T+ V+ ($ U+ W+ .@ .@ .@ .@ X+ W+ W+ @@ H% H% @@ +@ +@ @@ +@ +@ W+ +@ @@ +@ #@ +@ %@ #@ %@ I% }$ }$ J% >@ &@ K% >@ &@ L% -@ *@ >@ M% 4$ >@ '@ N% O% '@ ]@ )@ P% '@ Q% R% 9$ S% T% 8$ U% :@ V% |@ !@ b$ b$ 9$ W% l$ |@ ^@ f$ X% l$ l$ Y% a@ 2@ d@ h$ Z% `% 0@ o$ p@ & .& +& @& #& i@ $& %& p@ && t$ i@ p@ m@ j@ r$ t$ j@ *& t$ =& u@ o@ -& m@ ~. ;& <. u@ {. d# u@ >& ~. $. (. ,& z@ q@ c# -. '. x@ '& ;. %. 5# )& &. )& z@ !& 5# 5# .. z@ X P D$ D$ V P #% Y ` Y P P Y +% H H P@ S N w ~& G K@ A N {& H$ C ", +"+ % V@ # % R@ + + ; + > = ]& # ^& ; V@ + - V@ . & ] ] & ] - < ) / ~ ] ] N$ [ ~ ~ ] ) ~ `@ /& ) { W@ ~ ; { ) W@ ; (& | ) / 2 { } [ } ## $# 1 { ( | 4 $# _& $# < :& 6 6 8 ( 8 6 6 a e 9 $# 8 g <& < $# 8 &# e 8 a a g e i f g [& a }& n e e |& a c ~# r r h c h n Z$ `$ `$ _# {& 1& y h `$ y Z$ D :# x Z$ x C I N I I K x x A G 2& M A @% Q@ z }# A I 3# J I Y Q@ 3& Y K@ O@ A L J L@ X J H T U R S E$ #. L@ L@ C$ V D$ F@ #. C$ G@ =. V 4& .. z@ $% !. 5# %. b# %. ). ;. A@ !. ). &. &% 5& 6& x@ 7& v@ 8& 9& (. 7& v@ b# 9& -% ,% ,% }. 4. 0& a& b& 6. ;% u@ 7. 7. 6. 6. 6. ~% m# 6. ~% !% c& 9. d. m# 9. 9. d. e. {% c. i. d& q# {% i. i. e& f& g& o. j. o. n. o. n. n. t. h& i& j& <% v. s. k& x# l& s. y. z# s. z. 1% B. m& D# F. D. C. G. F. D. F. n& L. L. o& p& O. O. N. q& J. S. F# V. W. r& 0% G# F# Y. T. Y. Y. s& T. b% W. ++ b% T. L# s& T. + e% t& u& v& w& x& R# y& ;+ &+ z& g% &+ ;+ !+ A& B& C& D& k% (+ V# E& F& ~+ ~+ (+ (+ (+ /+ /+ _+ :+ :+ G& H& 2+ Z# |+ |+ |+ s% s% 6+ 3+ 1+ $$ 3+ |+ #$ $$ $$ I& e+ t% 7+ 7+ d+ %$ %$ %$ J& %$ K& 0+ 0+ u% *$ 0+ 0+ f+ d+ %$ L& l+ *$ h+ h+ l+ h+ n+ n+ n+ n+ n+ ;$ n+ h+ h+ m+ n+ h+ M& N& o+ s+ '$ s+ O& s+ y% t+ u+ u+ '$ u+ x+ w+ w+ z+ B+ B+ A+ C+ C+ E+ C+ C+ C+ B% P& C+ C+ A+ A+ A+ C+ D% C+ A+ E% Q& D+ B+ R& S& L+ P+ Q+ P+ L+ /$ T& Q+ T+ S+ R+ R+ T+ R+ Z+ T+ T+ S+ U& U+ V& X+ .@ X+ U+ .@ W+ Y+ X+ W& X& `+ +@ @@ @@ +@ .@ @@ @@ #@ W+ _$ @@ @@ +@ #@ %@ #@ }$ #@ %@ }$ Y& &@ *@ Z& `& >@ &@ &@ =@ >@ >@ * )@ >@ '@ R% .* R% ~@ (@ U% S% W% W% :@ b$ 9$ ^@ }@ +* |@ :@ 4@ g$ @* e$ 2@ |@ #* $* d$ %* &* b$ .& ** .& o$ =* -* %* a@ ;* e@ q$ i@ d@ >* h@ ,* '* )* j@ !* l@ *& ~* m@ u$ {* ]* ^* q@ x$ o@ q@ w$ (. (. :. d# =% t@ 5& !. /* x@ !. &. ,& !. -. ). ~. !. =. &. #. .. =. (* .. _* z@ $% z$ I@ P H@ P L@ H@ H@ D$ L@ H H P@ P T S H$ T K@ P@ P@ N A A :* H$ H P@ J ", +"$ <* $ + % + [* ]& % ]& L$ + # }* . ; ]& V@ T@ & |* 1* Q$ U$ ' & N$ - U$ ^ ; # & U@ ] > | ;# > ^ ) ^ [ | { ~ 2 ~ 1 | | 2 { } : 6 ) , 1 /& [ ) { / $# %# %# d 6 7 < *# e ## 6 $# [ } $# / 6 V$ 7 } &# 8 $# ## $# b 8 ~# 6 2* V$ ,# e 3* 9 g 8 c ~# 0 ~# ~# (# _# ~# n ^# Z$ h ~# Z$ p c 0 c p 4* G r y m y 5* D :# :# p t D ^# u N G 6* D x A x D 7* P@ z Y T A S I@ 8* P@ 3# z S Q@ J M@ P@ Y S T M@ 9* J 2& D$ L Z J J .. P P X +. 0* +. $% ;. &. A@ >. A@ +. -. +. A@ !. ). A@ %. x@ $. x@ !. a* '. |. b* =% {. '. c* |. d* ). t@ '. e* c# e# 9& 3. f* f* q@ 4. }. g* 7. n# 6. 6. 7. k# 8. 5. -& 7. h* i* 9. j* k* d. d. e. {% c. c. d. i. i. i. {% f. l* m* m. g& j. l. n* h& o. w# (% o* v. x# p* q* x# x# x# z. v. v. k& E. z. s. B# B. D. F. m& D. D. F. H. r* H. G. 5% 7% 9% G. n& O. J. 0% O. S. J. r& S. Z. S. F# F# F# Q. T. W. ++ ++ ++ J# s* T. ++ + s& b% u& #+ $+ t* u* R# v* R# w* -+ &+ =+ =+ &+ ;+ ;+ D& )+ x* =+ Q# y* ^+ ~+ ~+ (+ /+ ~+ (+ (+ ~+ ~+ /+ z* p% o% H& Y# A* B* C* s% H& r% s% D* E* 4+ 8+ 3+ s% 7+ 8+ t% a+ @$ D* 7+ 0+ 0+ F* 9+ d+ e+ 0+ %$ G* %$ *$ f+ 0+ j+ 0+ H* L& ;$ *$ h+ h+ h+ h+ n+ l+ n+ I* n+ l+ n+ h+ l+ n+ n+ ;$ s+ l+ '$ t+ s+ s+ J* x+ '$ s+ w+ w+ u+ w+ w+ x+ x+ x+ A+ B+ C+ B% B+ K* E+ A+ C+ A+ B+ B% C+ E+ D+ P& F+ E+ E+ E+ M+ E% C+ F+ D+ L* P+ P+ O+ R+ P+ Q+ L+ S+ Q+ S+ R+ P+ P+ G% R+ U+ R+ T+ V+ R+ X+ X+ X+ @@ W+ W+ U+ W+ .@ V+ H% M* .@ X+ @@ +@ +@ +@ #@ #@ +@ +@ +@ +@ @@ #@ #@ &@ %@ &@ %@ &@ &@ %@ &@ * &@ %@ =@ &@ '@ *@ *@ -@ >@ N* 2$ ]@ O* 9$ T% ~@ {@ ~@ P* U% Q* 1@ R* :@ /@ [@ d$ !@ X% S* f$ f$ 6@ 3@ T* %* X% l$ 9@ l$ X% 6@ U* 7@ .& o$ .& V* k@ m$ f@ W* p@ %& f@ X* u$ m@ Y* l@ -& Z* `* t$ o@ u@ -& ^* = W* -& u@ =& s@ t@ x@ %% b# w$ ). ^. v@ ^. z@ 5# (. *. ;. A@ ;. ). ,& 5# B$ .= G@ %. z@ &. z@ E@ H@ @. Z P Z J V E@ 2# ` 1# R M@ S += H@ S M J S Q@ O@ N@ I @= I #= w N ", +"[* # # * & - . - V@ . & T@ . $ V@ T@ V@ V@ > # > - ] $= & `@ . ] |* ] %= ~ ] | < 6 | ^ | ) Y@ [ ;# ~ ~ ~ ~ &= 4 $# / } | : { %= & 2 %= / { d < : < &# ( Y@ &# $# $# 1 d d 6 $# / 7 V$ b b V$ } *= [ a b 9 6 7 d ~# [& b g ~# 6 f a ~# == b c _# c {# c o -= _# ;= ~# p W$ Y$ n j c y Z$ C N q Z$ p ^# C C n N @% m N I z w x >= x P@ w A J I A I Q@ Q@ J A L@ H L Y C$ A G H$ U C$ P@ T H P@ H #. S L@ .= J C$ V 7# C$ I@ +. B$ ,= ,. 5# C$ 7# &. 7# +. . +. '= &. %. b# ;. )= b# b# . {. ~. /. /. d* v@ c* d# ). != t@ ^. t@ q@ ~= c* q@ {= v@ 2. l# }. a& 7. 7. '% 7. 6. ]= f# 7. m# p# ^= /= c. e. c. c. e. d. e. c. 9. (= e. q# q# i. i. i. j. w# /% m* _= k. := n. v# r. n* <= x# (% r. s. s. v. s. v. s. B# B# [= z. z. A. D. }= C. }= C. C. H. D. D. H. G. D. |= 1= M. 2= J. L. V. L# O. 3= S. O. F# F# F# H# H# T. H# T. N# T. T. T. ++ b% N# H# ++ T. + u& t* 4= ;+ $+ 5= ;+ -+ &+ &+ ;+ -+ &+ 6= 7= 8= 9= 0= D& a= (+ X# W# (+ (+ /+ Y# (+ /+ b= /+ m% `# 1+ }+ (+ c= Z# d= `# `# 2+ }+ t% 8+ 6+ I& 8+ 3+ 4+ t% t% a+ e+ 8+ a+ 0+ 0+ d+ 0+ 0+ 0+ G* 0+ e= 0+ i+ K& %$ f+ u% 0+ %$ ;$ j+ j+ l+ ;$ f= l+ h+ n+ i+ l+ n+ l+ n+ n+ n+ m+ l+ >$ n+ >$ t+ g= s+ l+ h= u+ s+ i= u+ w+ j= '$ w+ w+ !$ i= A+ A+ A+ B+ B+ C+ E+ C+ A+ C+ B% E+ A+ I+ C+ C+ A+ D+ D+ E+ E% k= C+ E+ l= N+ S+ L+ /$ S+ S+ S+ L+ /$ R+ S+ P+ P+ P+ R+ U+ X+ V+ V+ V+ R+ X+ .@ R+ X+ W+ m= X+ V+ F% @ n= m= V& @@ @@ #@ @@ @@ +@ +@ %@ W+ @@ #@ #@ %@ #@ +@ %@ #@ %@ #@ #@ +@ $@ o= *@ =@ p= 4$ *@ '@ q= {@ r= s= t= 2$ * 9$ ~@ u= T% (@ R% 6$ v= 9$ w= !@ !@ d$ x= :@ b$ f$ 9@ ** 6@ 2@ 8@ T* y= 7@ .& .& g$ p$ 8@ h$ m$ e@ .& z= A= =* ,* i@ )* u$ *& '* ~* l@ ~* ]* *& -& l@ <. B= u@ C= u@ (. s@ ~. D= (. {* (. (. '& ). ^. !. x@ ^. {. &. A@ *. &. x@ =. v@ A@ %. -. -. .= 5# >. z$ 5# $% L@ P 4# B$ 5# 4# I@ H@ O E= J T P Y S J@ M T M S Q@ @% Q@ F= z A S G z ", +"# ; # G= V@ + R@ + . V@ > # > . # V@ ^ * > H= - 1* . & > & U$ . ]& ] | { ~ ; & & ~ { 2 N$ N$ W@ ~ %# 2 2 < 4 2 ) $# : 2 } { W@ U$ 2 2 7 I= &# $# } $# 7 &# j $# [ 8 8 ( ~# J= $# / { $# e $# &# 7 ~# } &# 6 7 < 6 c g e ,# a e e K= 6 2* e a 7 j l h g c L= (# y g `$ n 0 l m {# r ~# Z$ s p p -= ^# M= `$ m C ^# C C A B ^# N N H$ A N M I z N@ J O@ I N= N M P@ A I Q@ E$ P@ I H S 1# L@ I@ L@ A X H )= H 4# V L@ I@ V V C$ T E@ .. 5# .= I@ +. H W P X O= 7# ). .= B@ C@ &. ). A@ +. 6# '. != ). != d* =. '= ~. '. b# 1. (. {. P= *% _. Q= q@ |. P= }. 2. 3. '% 8. 8. 8. 7. 7. R= 6. f# m# ^= 9. b. 9. d. 9. p# d. c. e. e. c. e. e. q# f. c. i. S= S= S= T= l. U= [% o* V= w# o. i& t. (% W= v. t. s. z. X= z. z. [= B# [= X= Y= m& F. Z= B. 3% H. H. D. D. D. M. 9% L. 8% `= 2= L. O. o& S. S. F# p& O. - S. .- F# J. G# Y. H# L# Y. T. M# K# b% +- b% K# b% u& @- #- #- ;+ B& $- g% g% &+ %- g% *+ =+ ;+ 7= &- g% *- 9= {+ (+ ]+ k% ~+ (+ =- -- X# Y# Y# (+ /+ m% _+ `# m% Z# `# 3+ A* 4+ ;- c= 4+ 8+ 1+ @$ t% t% >- 7+ t% $$ I& b+ 8+ d+ d+ G* b+ 0+ 0+ %$ %$ %$ G* %$ n+ ,- 0+ %$ G* d+ '- f= )- ;$ n+ v% n+ l+ l+ h+ l+ n+ h+ n+ n+ h+ >$ l+ n+ n+ h+ !- '$ )$ s+ s+ u+ '$ s+ w+ w+ s+ u+ x+ u+ x+ u+ ]$ B% C+ A+ C+ B% B% A+ C+ y+ C+ E+ C+ B+ ~- C+ B+ A+ R& C+ O+ {- ]- C+ ^- N+ S+ O+ O+ Q+ L+ O+ O+ Q& /$ /- Q+ Q+ /$ Y+ X+ ($ R+ (- V+ V+ Y+ X+ ($ W+ X+ X+ W+ X+ m= X+ _- `+ V& W+ @@ X+ @@ +@ +@ %@ :- @@ +@ @@ +@ %@ #@ #@ +@ %@ %@ *@ *@ %@ #@ %@ <- >@ %@ [- >@ *@ I% L% o= 6$ S% )@ (@ ,@ T% 5$ +* a$ 5$ {@ /@ R* d$ 4@ :@ W% }- |- 9@ 4@ b$ X% 4@ 9@ 2@ 1- 9@ 7@ 2- %* 7@ ** 3@ o$ o$ h@ m$ X* m$ i@ i@ )* u$ >* =* ~* {* ~* s@ t$ 3- t$ -& m@ C= -& s@ q@ w$ :. '& t$ x$ (. ~. d# >& ^. (. C@ v@ v@ /* x@ ). !. ). x@ A@ 5# $% -. 4- 0# 6# z@ #. ,. G@ .= H 7# .= #. 7# J G@ C$ M@ T L@ Y H@ J J Y L@ ` J S A Q@ Y G I I A I N ", +"= - M$ % ]& V@ # > V@ ^& ] | | N$ - 5- = . > + + 1* ; S$ ; ) . R$ ] H= ] ] & ~ N$ *# | *# ] | | ; ) [ ## $# 6- { ^ < 7- [ | [ [ X@ *# -# d { 4 } < ( / W@ b 6 ( ,# &# 8- d } a < $# 2 b a e *= -# $# $# b e $# e a 7 6 ,# h 9- c o h !# o 3* a c ~# n r c ~# s o L= r ^# r o r h Y$ 0- /# u m t `$ G D `$ I D B G p I C `$ :# /# z A 8* H$ I F= a- b- G Q@ x c- H J H$ J K@ P@ C$ H L L@ H T L@ P@ P@ Y L@ d- H T J@ #. O= E@ L@ R G@ . e- )& f- @. y@ G@ V (* e- 6# +. -. +. 5# A@ !. *. A@ b# '. v@ ^. ^. g- h- 9& v@ 9& ^. |. :. ). ,% *% 9& '. &% 0& 1. 9& q@ ;% ~% }. 6. 6. 8. 7. 6. 6. 6. 7. b. i- !% j- 9. m# m# 9. d. c. e. o# {% {% c. g. q# {% c. f. c. g& g& s# m. l. o. o. k- (% (% w. <% l- t. t. s. s. s. z. z. [= Z= m- B# E. D# F. n- D# F. D. G. D. G. G. o- G. O. J. 2= O. L. J. J. E# J. S. O. O. S. H# p- - Q. Q. H# H# T. T. T. I# K# ++ M# ++ `. K# + @- d% q- ;+ P# &+ d% %- &+ &+ -+ &+ ;+ ;+ ;+ S# =+ ;+ r- {+ ^+ ~+ k% ^+ ^+ s- ^+ /+ Y# (+ /+ W# (+ m% `# Z# Y# |+ t- u- 1+ s% 1+ 4+ v- w- 1+ 7+ 8+ 1+ t% t% 8+ c+ %$ 8+ t% 0+ %$ e+ %$ 0+ 9+ %$ e= %$ %$ *$ u% 0+ G* 0+ 0+ x- y- k+ I* l+ z- n+ n+ m+ l+ n+ m+ m+ l+ n+ l+ r+ m+ m+ n+ n+ A- t+ '$ '$ s+ u+ '$ '$ u+ !$ x+ t+ u+ w+ '$ x+ A% A+ B% B+ C+ A+ A+ D+ C+ A+ A+ B- A+ E+ y+ E+ A+ E+ E+ E+ C- E% C- A+ D+ k= Q+ O+ L+ Q+ R+ S+ E% L+ O+ L+ P+ S+ T+ Y+ T+ T+ S+ S+ R+ V+ V+ T+ X+ W+ .@ W+ X+ X+ Y+ Y+ <$ X& W+ @@ W+ #@ X+ W+ @@ #@ +@ +@ @@ +@ %@ %@ &@ %@ &@ +@ #@ &@ &@ &@ %@ &@ 4$ >@ D- E- * =@ Q% 4$ *@ 7$ I% F- q= G- * Q% R% /@ {@ H- I- 9$ J- X% J- V% e$ :@ ^@ f$ J- X% 1@ 3@ K- 6@ c$ 8@ L- 6@ .& h$ X% a@ m$ m$ 0@ d@ ;* m$ c@ 0@ e@ 0@ i@ >* f@ ^* ^* t$ M- p@ k@ -& m@ N- =& (. O- q@ <. '. P- :. Q- :. b& x$ c# (. ^. '& v@ ). )& ^. A@ >. 5# -. ;. z$ 5# .= E@ R z@ 5# +. V E@ B$ X ` C$ 5# Y T T X T H Y E= J I I P@ M A z H$ A z A N :# A A ", +"& > $ R- + S- R@ + # # 1* Q$ + V@ H= - & - H= ; & - > ] > & - 2 ) ; [* 2 ~ ^ | | | ; 1 ] - ) ) { T- | ## { ~ 2 1 & ) 2 : [ ## < $# -# ## { < 6 7- 3 { -# &# { $# V$ Y@ ( &# :& ) < Y@ ( 7 7 7 7 V$ j U- i 6 7 } : V- n L= $# n L= 7 e ,# g e $# c n ~# o Y$ `$ j h _# L= _# h l n n _# y r _# p r G C C G ^# #= N ^# {& N C N D Q@ S M A Q@ I S A K z H$ M L@ P@ E$ P@ T I #= U L T P@ P@ D @% C$ P@ Y D$ H G@ 4# P =. I@ z$ V C$ X . L@ R 5# )& ). G$ $% A@ '= b# ). A@ z@ &. W- =. &. b# ^. '& '= (. 5& $. 5& v@ {= *% '= {= w$ b# _. :. {= 2. 9& e# e# 7& j# >% X- }. 7. 7. 6. 7. 8. 6. ^= !% 9. 5. Y- 9. e. e. e. e. c. e. c. {% e. {% {% i. f. Z- q# f. f. h. S= t# m. n* o. l. l. o. o* s. i& v. v. k& s. z. [= z. s. 1% 1% `- z. [= F. C. D# C. C. F. F. D. H. H. H. J. E# ; J. J. L. O. S. O. S. p- o& R. p- p- r& Q. T. T. T. F# H# b% ++ K# ++ M# %+ t* s& .+ #+ .; t* 4= ;+ &+ z& +; #- =+ ;+ ;+ &+ &+ -+ ;+ Q# @; x* #; $; ~+ ]+ %; ~+ X# /+ E& (+ (+ ~+ /+ Y# &; `# :+ /+ H& `# s% |+ H& `# ;- u- 8+ 3+ 1+ 8+ 8+ +$ t% $$ b+ G* c+ t% a+ %$ e= %$ 0+ %$ d+ a+ 0+ G* u% i+ %$ 0+ %$ G* *; g+ n+ f= k+ m+ h+ n+ h+ h+ l+ l+ ;$ l+ h+ n+ >$ =; f= l+ h+ h+ M& A- -; '$ w+ u+ s+ o+ w+ w+ s+ i= !$ x+ w+ A% C+ A+ A+ A+ B- B+ A+ A+ A+ B+ A+ C+ ;; E+ C+ A+ C+ D+ E+ D+ M+ E% C- E+ E+ >; Q+ /$ O+ Q+ R+ Q+ /$ O+ k= S+ S+ R+ R+ S+ V+ R+ R+ V+ Y+ ,; V+ V+ V+ V+ X+ .@ Z+ Z+ Z+ W+ H% :$ @@ X+ #@ #@ W+ W+ +@ #@ @@ +@ #@ %@ *@ &@ &@ &@ #@ %@ '; *@ &@ *@ K% ); *@ !; [- ~; &@ Q% >@ '@ Q% {; 5$ R% /@ R% {@ V% {@ O% 8$ N% R% U% ]; /@ @* ^; /; 2@ f$ |@ (; }@ 2@ 7@ 9@ |@ l$ 6@ a@ 6@ _; 7@ 7@ l$ .& =* o$ e@ X* h@ g@ 0@ d@ h@ p@ i@ j@ j@ m@ u@ x$ :; =& l@ -& x$ ^* v@ q@ w$ v@ (. B@ c# /* {. /* 5& w$ (. d# d# '. ;. A@ z@ <; !. . 5# $% (* &. A@ -. 5# =. 5# =. z$ z$ [; }; L@ P@ R H 2# Y D$ P@ I Y H$ |; M J P@ I I I ` H$ z A z I G ", +"+ M$ # . V@ . & + > & . - %= > $ ] - V@ ; S$ > > ; . - > & = R$ (& ] ; & | %= W@ ~ S$ ; X@ ~ ~ N$ ;# 2 ~ 2 | N$ { ) +# 1 { [ } : / ## < ,# d { 1 7 $# } ) ## V$ } : ( $# &# $# ## } 6 } &# 7 } { 9 6 6 8 V$ a g a 7 h g g g e e a e j r a s c 1; c Y$ `$ ~# 2; y h h h h Z$ `$ y Z$ ^# C G y G #= z x A m C m Z$ C P@ x 7* N x M M M@ P@ N@ L@ M I A J S C$ M@ G$ 3; 4; H Y E$ M T U H B$ D$ X .. X H@ z$ @. #. z@ 5# @. @. +. 7# 9* . E@ @. y@ (* . ;. z@ #. +. &. $. 5; -. =. ~. ~. b# A@ &. x@ v@ 6; 7; v@ x@ *% 7; c# h# P= *% {= 8; 9; ;% ;% :. e# f# f# 7. 7. 6. k# 7. ^= 7. 6. i- 0; a; 9. 9. d. d. 9. d. d. e. e. c. Z- Z- i. r# {% {% i. f. g& S= l. n* b; n* w# <= <= p* v. [% r. v. X= z. t. v. B# v. z. k& v. v. c; D# G. D# z# D. H. F. 6% H. G. M. q& `= L. L. O. J. O. F# - S. o& r& J. W. - d; Y. S. .- ++ H# .- b% ++ N# M# M# M# .- b% M# +- e; f; g; R# ;+ g% .; .; &+ )+ &+ =+ &+ &+ &+ Q# !+ h; =+ k% ]+ /+ Q# (+ /+ /+ (+ (+ /+ (+ /+ /+ (+ _+ `# 2+ /+ Z# s% s% H& s% |+ |+ #$ 3+ 4+ 3+ i; 6+ 8+ $$ 8+ j; e+ J& 7+ 0+ b+ a+ %$ %$ %$ 0+ %$ e= G* ,- k; G* u% ,- %$ '- g+ )- f+ h+ n+ m+ l+ l+ ;$ l; m+ m+ n+ ;$ >$ l+ n+ n+ l+ h+ n+ s+ t+ '$ x% J* s+ >$ o+ i= u+ s+ s+ !$ u+ j= A+ C- m; A+ B% B+ B% A+ C+ E+ n; A+ ^$ A+ C+ B% C+ B+ E+ E+ o; Q+ M+ C+ E+ D% L+ L+ E% O+ S+ Q+ T& Q+ R+ S+ S+ P+ R+ G% R+ T+ R+ T+ L+ S+ T+ T+ V+ X+ .@ .@ X+ X+ W+ X+ _- @ W+ W+ X+ @@ #@ p; +@ +@ +@ +@ +@ W+ #@ $@ [- q; &@ *@ &@ %@ ;@ #@ &@ ~; *@ *@ Q% r; 1$ I- N% * '@ ~@ I% * s= s= W% s; /@ w= ,@ t; R* e$ b$ !@ R* ^@ 9$ ]; U% 2@ 4@ |@ |@ X% 6@ u; l$ j$ a@ v; e@ w; a@ 0@ =* x; o$ u$ )* y; p@ ,* >* h@ W* >* >* o@ q@ M- t$ t$ q@ Y* o@ u@ i@ ~. -& l@ :. t@ 7; {. (. s@ 0& x@ &. v@ '. '. *. C@ -. x@ !. !. +. A@ &. A@ B$ -. e- (* G@ +. 5# C$ X B$ .. .= }; L@ G@ C$ 1# S z; P@ H ` ` X S M@ I z H$ Q@ M A I I A x ", +"# L$ . ; R- $= V@ > > = # > & N$ # U@ V@ - ] S$ & > - T@ > |* ; ^ ] ] ] ; | $= | A; ) ) ] ) W@ 2 ^ 5 { | ;# ; ^& J= ) %# | [ [ 1 : ( &# 2 } < == { 5 < : &# } $# [ 6 V$ 9 $# b d ~# X$ } $# b 6 b -# 6 B; a d } ( 1 c o 0 0 g e a 7 Y$ 7 V$ 6 7 ~# n ~# h c h t Z$ _# s p -= n o C; Y$ ,# _# f /# D _# `$ s O@ m % {& B Z$ ^# m D; N G B I A @% M O 7* A J P@ E$ H$ A S A A M E; T J J M J H T G$ P L@ W R P H 4- @. T E@ .= X 5# W @. z@ .= W A$ 5# )= F; A@ ;. ). C@ G; '. $. ). ). ,. ). '. !. h- !. /. =% 8& 7& /* /* |. H; 9& |. 8& {= X- s@ s@ g# g# }. ^= 9; 8. 8. 9; 6. '% '% 8. I; >% !% ^= ~% d. 9. d. d. e. e. {% {% e. e. {% q# q# Z- i. q# g& S= J; f. p* l* K; o* o* L; W= u. v. (% v. t. s. t. t. k& z. v. [= z. s. M; 3% D. B. N; O; P; F. G. 6% G. D. G. H. 9% J. L. L. N. L. E# O. q& p- O. Q; F# F# Q. O. F# H# .- .- ++ ++ ++ + R; Y. b% .- t* b% #+ `. b% d% ;+ u& R# d% &+ =+ =+ =+ -+ &+ 7= D& S# *+ 0= *+ S; T; X# <+ /+ Y# Y# Y# /+ /+ /+ b= /+ Y# Z# Y# Y# Z# s% 1+ 6+ 1+ s% s% @$ 4+ I& 8+ 8+ 1+ +$ D* 7+ @$ 0+ t% 8+ c+ e+ 0+ G* d+ d+ d+ u% 0+ e+ d+ f+ %$ u% u% G* U; '- j+ *$ n+ l+ n+ m+ l+ k+ f= m+ n+ m+ n+ n+ l+ n+ l+ =; m+ h+ '$ s+ t+ V; W; {$ t+ '$ w+ w+ o+ u+ x+ w+ x+ A% C+ B+ A+ B- C+ A+ w+ B+ B% B+ A+ C+ D+ E+ y+ E+ E+ E+ F+ A+ Q+ X; C+ D+ C+ Y; P+ Z; L+ S+ S+ Q+ L+ R+ R+ P+ R+ R+ Q+ P+ G% R+ T+ G% /$ V+ .@ X+ W+ W+ U+ X+ X+ Z+ `; @ X& X+ .@ W+ X+ `; +@ W+ @@ @@ @@ #@ #@ +@ #@ +@ %@ *@ &@ %@ > > <- &@ ~; I% '@ *@ >@ * t= .> U% 7$ * +> >@ )@ * U% * '@ {@ /@ !@ R% V% v; }@ @> W% S* @> X% X% X% /@ 8@ 6@ 6@ m$ o$ m$ o$ a@ Y% 0@ X* ;* -* 0@ )* e@ ;* u$ j@ && f@ ~* l@ o@ i@ n@ p@ l@ l@ u$ m@ 3. j- O- <. =& -& q@ q@ ^. x@ u@ #> v@ d# u@ B= ). &. {. {. !. !. &. -. -. A@ 5# $% &. 5# A@ C@ A@ #. z@ . R #. X $% $> 4# J F@ H@ M J I@ H@ H S %> S Q@ L@ J M J P@ 7* &> K@ M= I z ", +"+ # $ $ R@ # & + # T@ = ; = Q$ R@ ^ > > U@ ; - > > > + S$ & { ] ; [ ) ~ ] | N$ N$ | ~ < [ ^ ) ^ # { ## ; ~ *> , : [ [ ~ ~ 2 : < ] : $# } X@ } *# < [ $# < ## &# V$ : b 7 6 a j &# => V- 8 =# =# V$ -> -# 3* 7 ;> 7 0 h :& i c o e a e i >> a ,# ,# ~# h *= 7 0- ,> ~# r Y$ Y$ p h r `$ c C; y y '> h D M= C G D ^# F +% C C G G A A N C K N O O@ M I U M@ E$ J S D$ )> K@ 8* T L@ P@ X T T L@ I@ H Q@ Y L@ ` D$ O= X R H B$ $% 5# +. W )= #. !> O= z@ A@ . (* ;. ;. &. =. =. ). =. =. {. (* $. '& /. {. v@ {. |. {. |. {= t@ P= j# e* v@ e* Q= h# a& a& a& ~> g# k# 9; ;% 6. 4. 7. 8. 8. 6. ^= Y- e. 0. {> m# 9. d. e. e. 9. {% c. e. ]> {% {% c. f. Z- i. ^> /> m* l* n* K; J; n. s# n* (% (> <% [% o* v. v. s. v. s. u. s. z. _> :> <> Z= 3% F. D# [> 4% H. G. 6% H. H. H. 5% q& F# J. `= O. S. O. O. S. @+ V. L# Y. S. O. F# S. }> b% F# |> ++ T. ++ b% ++ ++ t* b% 1> M# f% #- #- g% &+ u& 2> 7= &+ ;+ *+ ;+ 7= 3> =+ =+ ;+ r- 7= #; ^+ /+ 4> (+ (+ 5> b= /+ ~+ ~+ (+ /+ c= `# Z# /+ _+ s% s% :+ _+ 1+ `# I& @$ 3+ #$ 7+ 3+ I& t% 7+ 7+ %$ 0+ 7+ e+ d+ d+ d+ d+ d+ %$ %$ d+ %$ 0+ *$ u% f+ i+ G* e= g+ l+ l+ 6> l+ l+ l+ q+ n+ l+ l+ l+ n+ n+ n+ n+ n+ n+ >$ ;$ h+ -; s+ s+ >$ W; 7> '$ s+ !$ !$ 8> s+ w+ w+ v+ 9> x+ C+ A+ A+ A+ B% y+ C+ A+ A+ A+ E+ D+ E+ n; B+ C+ C+ E+ C+ E% E% E+ E+ E+ 0> N+ Q& O+ a> O+ /- P+ S+ L+ S+ R+ R+ T+ /$ R+ V+ Y+ T+ S+ T+ .@ U& W+ W+ U+ W+ W+ U+ X+ U+ _- b> X+ `; W+ @@ W+ W+ @@ +@ @@ +@ %@ %@ #@ [$ #@ &@ #@ p= c> [- *@ *@ #@ %@ &@ -@ 4$ p= >@ q= d> e> * P* f> )@ /@ 9$ H- ^@ :@ T% S* 9$ !@ g> 3@ ^@ L- 4@ W% h> X% l$ f$ i$ 2@ 8@ ;* 8@ v; f$ 7@ 0@ X* c@ o$ o$ d@ %& t$ )* g@ +& r$ :; i> s$ {* t$ p@ m@ a. l@ `* =& i> u@ j> u@ ;& k> u@ ~. ). ~. w$ a# {. = w$ (. 5& x@ (. t@ -. {. l> ). !. ). 5# *. !. &. z@ =. (* m> $% E@ a* .= Z E@ n> .= G@ B$ U K@ E$ H Y H E$ o> P@ J P@ L@ H ` H P@ :# I 8* M I ", +"> V@ - * # > Q$ + . . ]& ; $ > + . ; & H= `@ ] - . ] + ~ $ V@ ^ ; Q$ | ~ | N$ | ] { ; ] ~ ~ ~ $# Y@ ] ; $# ) { *# ~ ) ( p> } 6 ## { [ } $# 2 ## &# ## ) : 6 $# < : ( : ~# 2 8 9 e } $# 0 q> ># 7 b } 7 g 6 -# 1 0 ~# e ~# 0 r> J= g h j V- e e n g 7 a '# }& Y$ c Y$ r s> Z$ `$ Z$ Z$ r `$ q G `$ % :# C Q@ A G F 7* E$ D P@ |# I K I z A x w H C A H$ I H S Q@ Y E$ I Y Y M A ` t> C$ 3# C$ I@ T D$ P L@ T C$ T D$ L@ D$ C$ 5# 7# +. E@ +. 7# 5# . . 4- . z$ !. . A@ 5# ;. x@ A@ b# *. . {. u> '. b# v@ ). v@ /* t@ -% _. 9& 9& 1. :. v> 9& d* h# b& a& }. X- 9; 7. }. 8. 9; 8. 7. g* 6. ^= 0. 9. b. 9. d. e. e. e. c. e. w> e. c. c. c. c. d. f. c. q# q# r# l. x> j. o. x> w# n* n* v# o. t. y> (> w. z> v. v. s. 1% t. z. X= A> Z= B> B# }= 4% Z= P; C> D. D. G. G. H. n& L. S. J. `= O. F# J. H# D> L. o& F# Q. Z. V. H# Y. Q. T. H# 1> H# s& ++ t* b% b% ++ b% E> s& u& u& c% 7= &+ f% g% -+ =+ ;+ ;+ 7= 3> 3> F> F> ,+ 9= G> *+ j% /+ a= H> /+ I> Y# b= W# /+ Y# (+ b= |+ o% b= c= s% 1+ |+ s% J> 1+ 1+ 3+ ;- 6+ 7+ @$ @$ @$ 7+ t% K> 0+ 7+ b+ 0+ %$ %$ d+ %$ a+ 0+ %$ 0+ %$ -$ f+ %$ )- G* k; 0+ n+ ;$ g+ j+ ;$ ;$ h+ L> l; ;$ l+ l+ ;$ m+ h+ r+ n+ ;$ s+ n+ n+ s+ s+ j= x% 7> t+ s+ w+ x+ x+ M> N> {$ !$ w+ w+ A+ C+ A+ K* B% A% A+ C+ A+ B+ C+ A+ J+ A+ C+ A+ E+ ~- D% C- L+ M+ O> A+ D% S+ P> L+ Q+ E% R+ S+ R+ /$ P+ R+ R+ T+ G% Y+ X+ V+ T+ V+ Y+ U& V+ W+ X+ @@ W+ @@ X+ X+ X+ .@ Q> W+ W+ W+ @@ W+ W+ +@ #@ +@ +@ +@ +@ +@ +@ +@ %@ %@ ;@ R> #@ *@ *@ *@ %@ *@ S> $@ >@ `& ,@ H- '@ =@ q= ~@ q= * :@ +* T> H- {; R* 9$ {@ U> !@ R* 4@ e$ 4@ f$ }@ X% X% 3@ 6@ 9@ 6@ 8@ l$ i$ c$ h$ 3@ g@ >* ~* q@ m@ -& l@ -& q@ B= q@ '& ^. = x$ w$ c# (. B@ V> w$ ^. d# _. t@ !. '. = {. q@ ^. x@ ,& '. {. b# {. {. W> B= = :. '. x@ ). !. ). &. &. .. A@ e- &. A@ 5# 5# +. &. @. 5# }; X 4# @. G@ H@ T X> J R }; H P A O S H$ J J@ A A G H$ |; Q@ I ", +"* & V@ . V@ # % + R@ [* . R@ + > - - ' $ ; ; . # ; U@ . * # ] V@ > > ] ] *> ; 2 ~ ~ ^ X@ 2 -> *# 2 2 N$ N$ ; N$ / 2 N$ [ == : &# 5 5 ## [ *# : ## { [ $# | | } 2 < a $# -> V$ ) W@ b b &# [ Y> == b 6 b } d b b 7 -# b 6 8 6- q> c a j r ~# c Z> i ~# o *= 7 o ^# ^# L= N p C; ^# m _# h p y p p n `$ x D w s 6* M C I :# C a- {& M= G I A P@ P@ K@ M ^# G P@ L M I L 8* J J Y P@ I@ H L L P G@ 9* D$ 4# L@ P H T I$ J M@ U @. X .= G@ 5# (* . . +. %. A@ 6# ). -. =. ;. =. *. A@ +. =. A@ -. '= 9# &. '. |. 5& ;. |. 1. `> ~. v@ , 8& t@ :. c* , s@ b& b& ., P= e# 8. 4. a& }. R= 6. 7. +, 6. 8. 9. m# 0; Y- 9. e. d. e. {% d. d. e. e. c. c. c. i. i. {% f. g& f. l* f. u# (% J; n* (% t# p* v. q* := r. (% @, v. z. s. k& v. _> s. s. z. A> #, H. $, z# 9% G. H. `= D. D. D. H. K. L. L. Z. o& J. O. S. H# F# S. F# Q; a% F# O. F# T. ++ Y. L# ++ ++ b% q- +- $+ b% s& #- +- u& b% $+ &+ ;+ -+ &+ &+ -+ &+ =+ 7= ;+ ;+ F> S# 7= r- D& ,+ -- %; %; (+ (+ /+ Y# ~+ (+ Y# Y# %, b= |+ 2+ Y# %, s% }+ %, 1+ }+ |+ q% s% s% r% 3+ ;- 6+ t% 8+ b+ %$ F* 7+ K> G* %$ 0+ %$ %$ %$ G* G* %$ u% )- G* 0+ j+ G* &, *; h+ U; j+ l+ *, n+ n+ l+ l+ L> l+ l+ ;$ n+ >$ =, n+ l+ l+ n+ o+ u+ s+ '$ w+ u+ s+ '$ x+ w+ M> '$ w+ w+ x+ '$ C+ A+ A+ B% B+ B- A+ C+ C+ B+ B+ A+ A+ D+ B+ C+ E+ C+ J+ E+ C- O+ M+ C+ F+ 0> Q+ L+ L+ Q+ Q+ R+ R+ R+ S+ R+ L+ S+ V+ T+ U+ T+ T+ R+ R+ T+ T+ T+ .@ U+ U+ W+ X+ W+ Y+ T+ -, ;, @@ W+ +@ +@ W+ W+ V& @@ @@ #@ #@ +@ &@ &@ +@ p; #@ %@ &@ *@ &@ *@ > *@ *@ &@ ~; 1$ 4$ R% T% * Q% ]@ N% ~@ O% >, W% ~@ T% {@ s= 0$ !@ b$ !@ R* 4@ }@ }@ b$ :@ l$ |@ l$ v; 6@ a@ w; d# R b- Z> : %# ,, ', ', 1* ), !, ~, {, ), ], <* ^, ], <* % ), ,, /, S@ ), ^& ^& W@ # (, _& _, :, v <, V L@ #. )& %% '. {. -. c# {. ). )& -. &. )& [, =. B$ )& *. ;. X . z$ 5# e- 2# 4# G@ z@ H@ C$ L@ H@ Y C$ Y A ` S U K@ I$ S A J@ J +% K@ G P@ M@ O@ M ", +". > !, . # + + ' # }, Q$ = # # $ U$ Q$ S$ # # U$ ; > N$ V@ > Q$ ' . $ ; ~ N$ N$ O$ W@ | [ ~ ~ ( ## ) ~ ] 4 ] ## W@ U$ ~ ] ) ~ ( : < ( $# &# ) [ / { 2 : ~ { ~ |, 5 0 a $# ## ( $# V$ [ $# $# d 6 /& { 6 $# 6 9 -# ,# 7 V$ b } ~# 0 o 8 7 e c 9 V$ 7 r L= c ~# c _# p 1, -= }& <, s> % D m p F= `$ 2, _# y w 3, t Z$ G N C M t N 4, w z x Q@ N I P@ S J I N Y P@ Q@ N E$ 5, H +% J P J S S I@ C$ J R Y C$ Q@ C$ Q@ L@ L@ L L@ P T V C$ E@ $% 4& +. 5# b# $% -. %. +. z@ 6, %. A@ .. *. *. '. &. ^. 7, ;. &. '. /. 8, d# 9& ~. ^. ~. ~. 9& v@ t@ h# 9, h# ,% j# s@ 9; 7. 0, f# 8. 2. 9; 6. 6. 6. ^= 7. 7. 0. m# Y- Y- e. d. c. e. {% d. e. c. c. c. h. i. i. g& q# i. i. f. g& g& v# o. (% o. o. n* o. y# v. q* u. n* s. v. v. z. s. A> A# k& A# m- [= a, H. b, 3% H. 6% G. G. H. F. G. 6% c, O. S. J. 3= d, o& J. S. S. S. S. S. S. H# d; .- F# b% t* s* b% ++ ++ s& t* b% s& q- #+ `. N# c% $+ 7= =+ $- .; $- =+ =+ ;+ ;+ g% =+ =+ #; S# e, F> S# y* ]+ S; /+ (+ /+ W# b= Y# Y# Y# /+ (+ /+ `# 4+ W# Y# A* }+ f, 1+ t- |+ |+ g, I& 8+ #$ 4+ t% 7+ 7+ h, 0+ $$ c+ %$ 0+ K> G* G* i, %$ G* %$ i, j+ ,- e= f+ u% j, x- h+ -$ j+ n+ U; n+ h+ l+ h+ n+ ;$ l+ n+ l+ l+ h+ n+ ;$ l+ n+ >$ w+ '$ t+ '$ w+ s+ '$ '$ w+ x+ '$ u+ x+ !$ s+ B% C+ B% C+ A+ B+ B% B+ A+ k, B+ A+ A+ E+ K* B+ C+ C+ A+ E+ k= X; L+ A+ D+ 0> N+ Q+ O+ P+ S+ S+ R+ S+ P+ L+ P+ T+ S+ P+ S+ R+ R+ T+ R+ R+ T+ T+ U+ .@ .@ U+ .@ Y+ @@ @@ X+ -, +@ +@ W+ W+ +@ @@ +@ #@ +@ @@ #@ #@ +@ %@ %@ &@ %@ %@ %@ *@ *@ &@ l, 4$ &@ m, S> -@ ~@ *@ * `& (@ '@ ~@ O% T% 9$ 6$ !@ t; {; u= O% V% @* ^@ 4@ :@ W% |@ /; n, o, |@ 4@ 3@ l$ ** p, 7 . q, ], r, s, t, s, u, s, s, v, w, x, u, x, y, x, u, x, s, x, z, t, x, s, x, A, A, s, t, x, s, v, s, x, s, q, V@ <, &. ^. c# x@ !. !. z@ !. !. &. A@ ). ). =. A@ .= z$ &. E@ z@ (* .= z$ P P L@ L@ P P }; B, T C, J P S H A P@ L@ P@ S S H$ O I H 3# G A ", +"M$ ; R@ ^& T@ $ % V@ > S$ > ; V@ # U@ + Q$ > > & ~ ] & %= ] 1* & ] ~ ) ~ ^ ; `@ N$ ) ] | ) ) ; ; ; X@ X@ W@ U$ [ ) { ) ) / | ~ ~ } { *# 9 [ { ) [ 2 : : 2 { , $# &# D, 6 $# J= $# b &# < J= 6 6 Y> i e *= a b V$ 6 d q> a q> !# L= i c ~# E, c 0 n j 0 ~# n L= ~# r Y$ ^# _# m _# D `$ r o m ^# h ^# Z$ ^# C C p D w I w P@ t 4* P@ x Z$ G x G x C G S H$ I S A H$ H A Z A M L@ 1# L Q@ L@ L@ D$ C$ C$ Y z$ G$ P L@ E$ M@ V L@ R W E$ Y .. A@ C$ z@ . ). B$ 7# $% T #. &. )= z@ .= *. ;. F, =. 5# &. =. {. {. ). !. {. /. ~. ). !. ^. (. v@ 1. 3. s@ *% {= j# ,% h# ;% }. g# 7. a& 9; g* 6. 6. 6. 7. 7. ^= p# m# 0. G, 9. d. d. 9. e. {% c. {% {% c. f. i. q# r# {% f. g& f. H, J; I, V= J, _% x> <= r. m. <% w. p* v. l& v. [= t. t. v. y. z# m- m- X= m& D# b, 6% G. F. 6% H. 6% H. 6% K. S. c, O; K, O. F# S. F# O. S. S. S. F# H# F# H# d; ++ T. b% $+ s& ++ s& s& s& b% ++ e% .; c% u& L, ;+ =+ &+ f% 2> ;+ =+ &+ M, &+ ;+ &+ !+ a= 7= N, ;+ ]+ /+ A* k% O, /+ b= b= (+ Y# b= (+ Y# Y# p% `# /+ -- |+ |+ 3+ t- g, u- s% 1+ I& s% 7+ g, +$ t% 8+ I& 7+ 7+ K> %$ a+ a+ %$ e= G* %$ e= %$ e= e= u% e= %$ j+ j+ U; g+ n+ 0+ ;$ P, Q, v% m+ n+ ;$ n+ n+ h+ l+ l+ r+ n+ h+ l+ n+ =$ J* '$ t+ s+ '$ )$ '$ s+ !$ w+ R, j= u+ u+ o+ S, A+ C+ A+ B+ C+ C+ B% A+ C+ C+ C+ C+ T, A+ A+ A+ C+ A+ D+ M+ C- Q+ C+ E+ D% ;; O+ O+ E% P+ /- S+ R+ R+ Q+ S+ /- S+ S+ R+ V+ ($ S+ R+ R+ V+ T+ .@ X+ X+ .@ +@ #@ W+ @@ X+ X& H% @@ %@ V& @@ +@ W+ +@ +@ +@ @@ %@ #@ #@ +@ &@ %@ %@ &@ %@ %@ > E- U, V, $@ -@ 4$ !; W, ]@ 7$ * '@ Q% 4$ )@ T% ]; N% w= ,@ {; O% /@ b$ 2@ :@ }@ R* 9@ |@ X% 0$ 4@ |@ X, Y, 9@ 5# 1 Z, J$ `, x, v, ' s, v, t, ' u, A, x, x, x, .' z, s, +' @' z, u, s, s, s, y, z, s, y, x, x, s, t, z, x, #' s, +' $' z@ ,& %' ^. !. ;. z@ A@ x@ ^. =. !. =. =. .= !. 5# &. 8# A@ +. 5# D@ L@ H T P H@ V 2# D$ H 7# L@ &' 2# H M M@ J J M@ H H M Q@ N I 6* I ", +"+ # # - }* . # ), # - Q$ ; - - > > + . *' & ] =' ~ - N$ 4 U$ ) ) & U@ ] > - ^ ] { 2 ! ; X@ < R$ 7- [ ) ## : { ) ~ { d ) U@ { [ ## 7 / ] { _ ~ $# :& } : ~ ( } &# $# $# &# d /& { 6 / e &# 6 e b *= e a ~# 6 } a ~# ~# e h n n a c c i ,# a V$ r o Z$ h `$ m % p Z$ p q ^# m `$ ,> `$ D /# r r D G C C G B G y M= N Q@ S |# O@ S I A G P@ J N |# P@ 3; P@ O E$ M P@ T D$ M@ K@ L@ Z J P@ H ` H$ L 7# K@ P I@ 4# I$ 2# X V d- Y $% a* )& +. =. ,. )& 7# 5# A@ A@ +. .. z$ *. !. 0# -' &. A@ ). $. ;' &. a# {. 9& ). 9& v@ v@ `> >' {= e# t@ a& 8& j# , t@ q@ ~> 8. ;% a& 9; 0, g* 4. 9; 7. 6. ^= 6. 9. ,' 9. {> '' 9. d. c. e. e. 9. {% c. Z- c. ^% q# q# Z- h. q# S= o. g& J; w# l* n* p* H, )' v. s. <% (% <% v. v. s. s. z. A> k& c; z. c; A. C. D. D. !' 4% 6% D. G. 6% 6% ~' E# J. N. {' ]' Q. S. Y. S. .- S. F# F# F# F# F# F# H# T. ++ .- .- b% b% W. t* ^' +- f; #+ T. t* .; /' z& z& (' (' 7= 7= )+ (' ;+ =+ =+ =+ =+ _' :' F> *+ {+ <' [' {+ (+ Y# (+ Y# /+ Y# Y# (+ b= Y# &; s% /+ Y# |+ 1+ 5+ H& 1+ |+ |+ +$ 1+ s% t% ;- 5+ 7+ 7+ 8+ x- a+ 8+ c+ %$ d+ 7+ 0+ 0+ e= 0+ k; %$ e= ,- G* e= ,- f= %$ }' g+ ;$ j+ ;$ l+ n+ ;$ ;$ |' g+ l+ h+ l+ ;$ l; l+ l+ l+ n+ s+ t+ t+ 1' s+ 2' u+ s+ '$ u+ x+ w+ )$ x+ w+ w+ x+ B- B+ B+ B+ B+ A+ A+ B% C+ A+ C+ C+ B+ B+ C+ E+ C+ >; D% l= E+ {- B+ D+ E+ k= E% O+ O+ N+ /- P+ P+ R+ L* P+ S+ R+ T+ V+ T+ U+ T+ T+ T+ T+ .@ V+ Y+ Z+ X+ +@ @@ Y+ @@ Y+ H% W+ V& #@ @@ @@ @@ V& #@ +@ +@ &@ +@ @@ @@ Z& :- $@ ~; ~; %@ &@ &@ >@ >@ 1$ U, -@ > * G- ]@ e> Q% I- )@ 3$ q= T% (@ ^@ 3' 0$ 4' :@ ~@ 9$ X% 2@ ^@ 4@ 9@ 3@ 9@ (; u; x= 4@ 3@ i$ 7# *# # ], 5' 6' 7' s, 8' u, x, s, s, y, y, y, y, y, u, u, x, s, x, u, s, s, x, v, y, y, y, s, s, y, u, x, x, r, v, +' !, 4& ,& ). ,& w$ A@ A@ x@ x@ '& e- 5# *. -. z@ z@ 4- *. +. E@ G@ R z$ G@ 1# P Y J@ 9' . 1# 2# P ` H$ H H@ P@ M@ ` 8* P@ Z S M M@ ^# A I E$ ", +"!, > @ . + # T@ + > V@ . T@ 0' ]& ; . ; - . ; $= ] $ 1* 1* H= N$ %= 2 ; N$ Q$ > & ; | ~ U@ ~ ] U@ 2 { ] | W@ ( { W@ | ^ 2 2 / ~ < 2 < { d (, $# &# $# : { U- ,# } ~ { [ :& e == j ~# { $# &# V$ 7 == d e a c a 8 6 8 0 a e ~# Y$ _# o a' a ~# a c a ~# `$ h e `$ r ^# r Y$ p o `$ 1, p b' D q r p n l `$ G G <, C [# x z D K w A M x ^# A 8* c- A N G K@ A M &> M Q@ c' A T T P@ P@ 4# d' M@ I@ E$ 2# L@ T W 2# U C$ G@ J P C$ H P @. L@ H 4# y@ G@ $% A$ &. E@ P #. . ). _* )& ,. A@ =. '. -. ). {. ~. b# p, '. =% '. %% {. {. e' 9, *% -% {= P= Q- 3. P= h# e# a& a& 4. 2. f' k# f' f' g# f' g' ^= ^= a; ]= ~% d. !% !% d. e. {% e. {% {% {% {% Z- {% {% i. i. {% Z- h. /% n* l* S= n* f. n* k- h' (% o. <% w. o. r. v. t. s. z. [= s. z. A# z. [= Z= A. $, F. r* D# G. H. G. 6% 6% G. 2= p& O. J. D> S. O. F# S. i' O. F# S. H# H# H# F# .- .- T. T. 1> b% b% s& M# s& t* b% %+ I# `. @- #+ t* x& ;+ &+ 7= =+ 7= 7= ;+ ;+ 7= =+ =+ =+ =+ @; 0= #; j' Y# X# W# /+ (+ (+ (+ /+ b= Y# k' Y# b= 3+ b= /+ 3+ 1+ H& }+ 1+ H& u- ;- B* 1+ 1+ l' |+ @$ t% 8+ I& b+ 8+ t% e= 0+ 0+ %$ %$ G* %$ 0+ %$ %$ j+ m' %$ %$ j+ G* G* y- ;$ l+ j+ l+ ;$ l+ |' l+ m+ n+ l+ n+ l+ h+ g+ n+ m+ n+ s+ t+ '$ s+ '$ r+ u+ n' u+ o+ x+ w+ i= w+ u+ i= u+ A+ A+ B+ o' A+ B+ B+ A+ E+ C+ B+ C+ A+ A+ E+ E+ C+ A+ C+ C+ C+ Q& E% A+ D+ F+ k= O+ P+ R+ S+ P+ /- /$ Q+ P+ S+ T+ S+ L+ T+ .@ V+ R+ R+ R+ Z+ V+ T+ T+ T+ .@ X+ X+ .@ F% V+ @@ W+ @@ @@ @@ +@ #@ +@ @@ +@ :- +@ #@ #@ [$ &@ p' }$ ;@ %@ *@ >@ &@ >@ =@ $@ -@ &@ 7$ I% s= q' p= R% I- P* T% q= R% @> !@ W% 9$ d$ P* 9$ e$ d$ v; X, S* :@ 4@ W% X% f$ 9@ a@ r' I | s' 5' 6' v, s, x, u, u, s, s, s, x, y, y, x, x, y, u, z, x, s, z, y, u, x, s, y, y, y, y, y, y, u, u, z, u, x, u, `, J@ {. x@ !. /* &. !. &. ). &. &. ;. A@ z@ +. -. >. 4- .. [; A@ B$ 7# R +. E@ .= P Y 7# D$ H@ T T P S z M@ M@ +% N@ O@ Y Y I A F= O@ I %> ", +". > U@ > + > $ R- V@ & N$ . R@ . > # ^ > $ ; & - - ; & & > 1* . & | ) > . ; ^ W@ ) ~ - `@ ~ ( | W@ ## W@ / 4 | | / [ | { ) { Y@ { -# ~ ) X@ ~ / 2 ## $# } } J= ( 7 &# [ a a k b / 6 g 7 ,# *= a 6 6 } V$ 8 7 9 g a 0 c e 0 a ># ~# h e n v K= 8 c c _# o r ~# t' h o c ^# D 9- `$ h n }& `$ Z$ w `$ D M w w a- G A Q@ E= A A 8* A w x )> G M@ Q@ M %> M S K@ P@ Q I@ P L T C$ H Y H J H$ G$ H@ T E$ H R I@ @. X #. #. T C$ #. $% .. +. (* z@ e- #. ,. 0# ). >. {. C@ z@ '. &. )& /. ). =% %% ]. &% '. =% =% `> u' ;. {. ~. *% ^. {= P= _. {= P= P= h# h# a& a& 7. g# a& e# }. g# 9; v' 7. 6. 6. 6. 0. b. ~% 6. 9. w' c. e. d. c. {% e. {% c. {% h. q# g& {% i. U= o. v# l* (% J; w# o* (% p* (% (> s. [% (> y> v. v. [= s. m- m- A# X= z. z# A. 3% D. F. [> D. D. G. G. D. G. 5% E# 2= S. O. `= x' S. J. F# x' - S. S. F# y' H# 1> .- s& ++ H# H# ++ T. %+ z' d; c% @- c% M# `. u& s& x& ;+ ;+ &+ =+ 7= (' ;+ 7= =+ g; 6= 7= A' *+ B' C' _' [' b= %; /+ /+ ~+ D' b= b= ~+ W# (+ Y# b= 4+ b= 2+ `# |+ %, f, ;- d= E' ;- 6+ @$ t% ;- 1+ 3+ 7+ t% e= a+ t% c+ t% b+ %$ %$ %$ d+ %$ %$ e= u% j+ f+ G* ,- 0+ U; f= l+ l+ j+ l+ h+ h+ h+ h+ n+ l+ l+ l+ ;$ n+ l+ n+ h+ r+ s+ y% t+ t+ t+ '$ o+ F' o+ '$ u+ w+ '$ s+ i= w+ w+ A% B+ B% C+ B+ B- B+ B% A+ A+ B+ C+ C+ C+ C+ E+ E+ A+ E+ C+ E+ S& L+ E+ D+ D+ E+ Q& /- S+ L+ P+ T+ S+ G% /$ P+ P+ S+ Q+ R+ R+ V+ T+ R+ R+ V+ T+ V+ Z+ V+ V+ @@ X+ X+ +@ F% X+ G' X+ W+ +@ }$ H' +@ @@ #@ #@ &@ #@ %@ &@ D- #@ %@ .* &@ %@ &@ #@ &@ *@ .* Q% I% 7$ Q% >@ * >@ *@ 5$ S% I' (@ Q% 0$ !@ I- J' ,@ 9$ }- !@ !@ V% f$ 9@ f$ |@ 9@ K' /; c$ v; W* G | J$ 5' 5' v, s, x, u, x, u, s, u, u, y, y, y, z, u, y, s, x, u, s, z, x, s, u, y, u, u, y, y, x, y, y, y, u, y, x, 6' Z W> b# -. {. w$ A@ !. -. &. &. 5# B$ V> . z@ !. F@ &. @. .= X G@ +. e- z$ C$ G@ V P G@ P H ` L' E$ @% S H 8* Y P@ A J A E$ A O@ ~& P@ ", +". $ > ~ > > $ ]& + & + $ S$ ; ; U$ > ] & > # ; - S$ S$ |* }* & ~ ; ; 2 | > ~ [ [ W@ ] ; 2 ~ ## U@ ~ ; [ ~ U@ ~ | { ~ ## d | / 7- [ /& 6 / 1 < +# M' &# 2 [ } $# $# $# 0 7 $# a ## : b &# 2* [ N' 6 8 b 7 $# e *= e b e j c ~# ~# i o e 7 e ,# c a e o r W$ n n s> t `$ Z$ r `$ Y$ r `$ s r O' % :, z ^# D N ^# A ^# G G p E N A I O@ G O@ E$ P@ Q@ A M P@ P@ |# H Y A D$ J L@ 4# P@ J T S C$ Y S H J 7# Q #. V P' z@ z$ H@ E@ z@ Q' (* *. #. I@ . G@ -. R' $% 0# . *. ). A@ p, A@ =. !. ]. ). 5& &% {. ^. !. d* S' |. '. |. |. v@ 8& T' *% (. :. h# v> _. j# j# h# f* g# f# 8. u@ l# n# U' ^= ^= 6. 6. ]= Y- m# ^= V' c. d. e. Z- {% c. c. {% h. Z- Z- c. i. Z- c. f. {% W' l* /% m* x> o. p* b; W= n* y> z. W= p* `- [= m- A> X= s. z. [= [= N; A> X' D. P; n- D. G. G. O; O; 6% H. `= L. O. J. E# `= F# H# ]' 0% - S. O. S. O. T. 1> d; 1> ++ .- .- s& ++ s& +- s& t* K# b% s& #- /' q- R# Y' =+ ;+ &+ =+ 6= ;+ =+ $- 6= C' h; #; #; *+ G> j' X# /+ Z' &; ^+ Y# %, (+ b= Y# `' b= (+ ) o% 2+ b= 2+ 1+ u- s% s% s% A* f, K> s% 7+ I& g, i; l' 7+ a+ .) 7+ 7+ G* %$ b+ G* %$ a+ d+ 0+ G* +) k; j+ G* ,- f+ 0+ G* w% ;$ )- l+ |' P, ;$ ;$ @) l+ n+ n+ n+ @) >$ =, @) l+ >$ r+ h+ s+ t+ s+ s+ x+ s+ s+ i= x+ !$ s+ w+ w+ u+ x+ k, B% B+ B+ A+ C+ A+ R, B+ A+ E+ B+ A+ A+ C+ C+ E+ A+ D% R& C+ S& #) E+ M+ C+ k= O+ O+ O+ S+ S+ T+ S+ R+ G% S+ R+ Q+ S+ R+ $) S+ S+ V+ T+ Y+ V+ Z+ X+ Z+ @@ @@ V& _$ _$ %) X& W+ +@ W+ Z& +@ #@ @@ +@ #@ +@ :- #@ #@ #@ +@ +@ &@ %@ *@ &@ #@ %@ =@ &@ -@ `& 6$ '@ )@ Q% &) r; Q% ~@ I' S% )@ 5$ 9$ /@ !@ w= W% :@ }@ W% J- |@ v; d$ 6@ X% ** 2@ 9@ 9@ z= Z$ ^ R@ *) =) v, s, x, y, y, y, x, x, s, y, x, u, s, u, z, s, u, x, t, z, z, t, x, t, A, x, x, y, z, u, u, y, s, z, x, x, o> p, x@ ^. !. {. ^. &. -. -. &. (* &. a# ,= z@ =. (* A@ A@ )= z$ y@ V 2# F@ 2# P }; P z; H A Y P P@ H 3# Q@ J S z G A Q@ /# A w w w ", +"L$ $ + $= > + R- # V@ # Q$ # H= + . V@ & # V@ U$ | ; - ; 1* + T@ > ; 2 ; . ## *# ] ) ) W@ ~ [ ^ ) ~ ~ ] W@ ) ) W@ ~ T- `@ 2 { ( ) ;# < V$ [ 2 $# Y@ { [ %# $# W@ ) } } 7 < b 6 7 a 7 { Y@ ,# d e $# 6 e } b ~# ,# e g n 9 8 &# e 7 a 3* 8 L= ,# 8 V- a K= L= (# 7 ~# r h b' h h w h r Z$ _# 4* n -) q Z$ ;) D ^# m _# t N F D M= z w I A |# S P@ O@ H M E$ J 7* w 8* P@ M S 3& H P@ >) P@ J Q@ 3# Y J H@ ` 2# T U C$ E@ X S G@ G$ #. R $% H $% .. C$ P ,= 5# z$ *. )= .= z@ .. -. ). >. &. {. [, -. !. '. ). '. p, =% b# '. /* v@ {. v@ 5& 9& u' 8; ,% h# a& e# P= P= e# q@ d* |. f' a& a& ;% 7. 7. ^= ^= 6. ^= v' 6. i- 0. 6. d. c. {% {% c. d. e. e. {% e. w' Z- g& q# q# f. f. g& ^> f. j. v# V= (% ,) n* n* r. v. p* p* i& z. <% z. 1% [= [= [= m- ') m- [> r* )) n- G. H. H. G. D. G. H. 5% o& L. O. O. 1= F# S. q& !) F# .- S. F# H# 1> H# Q. F# b% .- .- b% f; f; c% t* t* q- q- $+ + u& +- #+ R# 7= 3> =+ g% 7= =+ =+ =+ ;+ *+ ~) *+ {+ *+ *+ {) a= /+ ]+ X# ~+ (+ ~+ /+ %, b= %, b= Y# -- `# <+ Y# %, 1+ |+ s% s% H& %, %, 3+ g, 5+ $$ @$ 1+ 7+ ]) 7+ a+ t% 7+ K> %$ K> G* G* G* G* e= G* %$ %$ f+ G* G* ^) j+ U; w% /) U; l+ @) l+ L> ;$ @) l+ l+ ;$ l+ ;$ l+ >$ l+ n+ n+ n+ ;$ M& t+ t+ '$ w+ u+ >$ -; i= w+ o+ u+ u+ i= !$ ]$ B- () B+ B+ C+ B% B+ A+ C+ B- A+ B+ C+ A+ A+ C+ E+ B+ _) B+ C- {- M+ A+ E+ k= L+ O+ L+ /- /- P+ R+ S+ S+ R+ L* /- R+ T+ T+ V+ T+ V+ S+ V+ T+ T+ .@ U+ X+ X+ ($ Y+ Y+ .@ G' @ H' W+ W+ X+ +@ +@ +@ @@ +@ +@ +@ %@ %@ #@ %@ %@ #@ %@ &@ $@ > %@ &@ 7$ I% -@ >@ L% :) L% u= 4$ q= S% T% * <) d> 9$ ~@ 6$ U% !@ V% R* :@ X, 4@ 2@ 4' b$ 8@ 6@ 1@ T* w@ c $ @ `, [) s, s, s, z, y, y, z, u, s, z, u, u, s, x, u, s, x, x, z, u, u, x, u, z, s, x, }) u, y, y, x, t, y, x, |) v, :, A@ ,& ,& '. '. F, ). &. ^. ,& (* z@ B$ 6# A@ +. z@ .= =. #. +. .= }; 2# H L@ +% D$ J L@ P P M@ J J S J Y |; P@ J A A P@ Q@ A G I A ", +"# . R@ L$ 1) # > $ S$ V@ V@ V@ + . ), !, # > 2) U@ Q$ %= ~ & 1* . { %= U@ ~ 2 ~ ) ~ ] ; U@ { <& ~ & ) ~ *# | %= ] ## ) 1 | 2 ~ 2 2 6- [ { ## V$ < W@ $# $# -# $# [ { ># } e i V$ == c a %# $# 7 6 6 a b d j 6 &# 2* V$ d 7 c i 9 6 c i V$ $# d 7 6 l `$ n o ~# r ~# e Y$ s> ^# C; _# h p >= F= /# w p 1; ]# p ^# :# `$ ^# x M= N M= w G N M I N@ [# P@ M w M= H P@ H 7* E$ P@ K@ 3# O 3; P@ K@ Y J Q@ 4# S 3) T d- H X Y C$ P@ L V V D$ E@ C$ P z$ I@ E@ z@ -. z$ .= I@ B$ *. y@ z$ &. A@ -. &. A@ 4) !. *. ;. z@ $. *. {. 9# {. ;. '. -' &% b# 5& ,% 5) 8& 9& &% ~= -% e* e# t@ '% e# X- 6) g# a& j# 7. U' 6. 6. ^= ^= ^= 7) ^= Y- Y- a; V' c. c. e. c. d. Z- c. c. Z- h. Z- i. f. T= W' f. l* l* ^> /% (% 8) o. o. V= W= (% w. z> n* j& v. s. [= B# [= z. A> c; c; a, Z= 3% )) )) 5% H. H. G. D. `= H. P; K. J. O. O. `= O. O. S. J. O. S. S. 9) F# F# T. T. .- H# .- x' .- ^' b% ++ s& s& f; f; s& u& f% e; u& 0) =+ =+ $- a) b) 7= ;+ =+ M, ;+ =+ @; #; !+ 7= c) a= d) /+ S; W# ~+ (+ /+ %, /+ (+ ~+ /+ (+ Y# %, %, b= u- s% s% 1+ 6+ }+ ;- 3+ 1+ 1+ 5+ ;- g, @$ t% 7+ 7+ K> 7+ 7+ 7+ a+ %$ 0+ %$ e= 0+ e= G* ^) u% f+ %$ G* l+ U; U; ;$ '- u% l+ l+ l+ l+ n+ l+ g+ l+ l+ ;$ l; A- l+ n+ h+ n+ n+ h+ =; -; t+ t+ i= s+ i= i= x+ t+ M> w+ x+ u+ ]$ ]$ B+ B+ B% C+ A+ B+ A+ A+ A+ B% A+ A+ e) A+ C+ B+ A+ ^$ C+ O+ O+ M+ I+ D+ E+ Q+ O+ E% a> N+ R+ L+ Q+ R+ T+ P+ S+ R+ R+ U& .@ T+ R+ Y+ Z+ V+ V+ T+ R+ S+ .@ .@ X+ Y+ f) g) X& @@ @@ @@ [$ W+ W+ @@ #@ +@ %@ #@ #@ %@ #@ #@ %@ &@ &@ &@ &@ *@ &@ D- &@ 7$ >@ l, q= S% '@ R% 6$ 9$ r= O* 6$ I- 5$ ~@ N* N% R* 9$ R* {@ P* :@ 2@ :@ X% f$ K- 6@ X% X% ). e h) i) r, [) v, s, s, u, y, x, x, u, y, x, u, v, A, t, s, u, y, y, u, x, u, u, y, y, u, y, y, y, y, y, y, u, y, s, s, v, j) x@ ^. ~. {. '. !. -. &. &. &. z$ ). ;' (* .= A@ )& .= @. .. e- #. X G@ V 4# V P O S P M@ G@ C$ J@ L@ P H$ O M@ E$ +% P@ 8* x M S M )> ", +"R@ k) M$ R@ l) + ; > - ]& ]& U@ V@ Q$ ; V@ ; ; | N$ ^ ; S$ & S$ - ; | U@ N$ 2 ^ `@ R$ . ; ;# | d O$ %= ; %= ] N$ { ) | [ { } < | ## - 8- ) %# U- ) *# $# } ) [ $# $# $# : } ## ) 4 $# %# : < $# 8 } 6 X$ e '# a e [& e D, } a a 8 i $# &# d 7 8 a ,# X$ o b o c e `$ p c h [& h r s> Y$ y ^# C y `$ p `$ ~# D m m N N ^# 0- N M t q P@ O@ P@ I B G H$ B I 3# E$ M m) 7* P@ )> @% @% M S L S P Y J 1# 7# 4# H H$ E$ L@ P@ U V n) C$ H@ H 7# D$ T 9* A@ 5# ,= e- +. (* 5# 6# ). *. ,. A@ ,. =. )& !. ;. o) A@ ;. ). ;. ). 5& {. ;. ;. !. p) (. -' 9& (. :. v@ v@ `> ,% 9& t@ ,% e* a& ~= a& 0, g# 9; g' ;% g# 8. k# 7. 7. 7. ]= q) !% m# l# {> {% c. e. e. c. {% {% e. c. r) {% f. f. T= h. l* g& g& /% s) K; h' ,) (% ,) (% n* r. )' (> p* z. z. z. z. [= z. [= A> t) m- A. c; c; 5% 4% H. 5% D. H. u) n& G. E# O. S. c, 0% 0% F# c, v) .- ]' S. H# d; d; H# w) H# H# .- 1> x) ^' s& s& c% q- s& $+ q- +- d% 0) e; d% v* y) y) +; @; *+ @; C' v& *+ ;+ h; @; &- z) r- _' %; [' W# %; /+ ]+ (+ /+ Y# %, b= /+ b= A) %, %, b= B) |+ 4+ }+ ;- J> |+ 5+ @$ 5+ 1+ 3+ 3+ I& t% l' @$ @$ 7+ .) 7+ .) a+ K> %$ %$ e= k; G* G* e= ,- g+ %$ u% ,- U; g+ l; /) ;$ l+ -$ C) ;$ l+ z- ;$ n+ l+ n+ r+ l; l+ ;$ >$ j+ l; l+ M& s+ ,$ {$ D) t+ t+ s+ t+ E) j= u+ i= x+ B+ B+ z+ B% B+ A+ B- B+ B% A+ ^$ B+ E+ ^$ R, A+ B+ C+ F) C+ C+ S& E% A+ A+ C+ C- O+ O+ L+ L+ /- S+ L+ R+ S+ Q+ R+ R+ P> S+ T+ V+ S+ V+ V+ V+ V+ .@ Y+ V+ X+ W+ @@ +@ Y+ Z+ b> -, V& +@ @@ @@ W+ @@ +@ [$ #@ @@ +@ %@ #@ <- &@ #@ #@ %@ %@ *@ ~; .* 1$ >@ >@ '@ '@ R% G) )@ ]@ 5$ * * e$ * ^@ 5$ @> b$ 2@ |@ V% P* T% 3' 6$ ^@ 9@ v= o, u; 7@ a@ )& 6 . J$ `, =) H) 8' x, y, y, u, s, u, u, x, x, y, u, u, u, x, y, u, s, u, y, u, u, y, x, u, u, y, y, u, y, u, y, u, s, x, I) 4- E@ {. A@ !. {. x@ *. !. ). .= &. !. &. &. !. >. 5# C$ $> F@ =. 5# )= z; L@ H .. C$ S H P@ Y P@ L@ H ` #= S P@ P@ I N w w x Q@ @% I ", +"+ V@ ]& $ * . + . > + . V@ > > $ - - - . V@ = N$ U@ U@ U@ ^ ~ ] ; ) ) ] - | & ^ ] { ; & Q$ ~ ) 2 { d 1 %= `@ %# ~ W@ ## ~ W@ J) W@ $# } ) ## 1 b W@ < 6 *= W@ 6 1 /& / a a V$ ( J= 7 V$ } 6 => 7 7 e k 6 i n a j a 8 e V$ q> a 6 &# ~# ,# i o o 7 a a j e r n h o c c r Z$ ^# `$ `$ p Y$ p c m u q 4* G I m z I ^# D O@ A 8* A S w %> ^# x A M z L@ S Q@ M Y Y o> H S P@ H@ H L@ L@ L@ P@ L@ T L P I@ 2# Y I@ P@ Y U U }; J E@ X K) 5# A@ .= A@ E@ +. +. &. y@ . L) +. V> #. &. A@ A@ -. /. /. $. ^. ^. '. /. {. != v@ |. d* (. 1. Q= e' &% 8& {= h# a& g# a& }. s@ s@ 4. g# ;% ;% 4. 7. g# 6. 6. ^= a; ^= 0. b. i- ^= 9. e. {% e. c. M) {% c. {% Z- Z- Z- g. J; f. l* f. g& w# g& K; (% H, (% p* p* (% (% )' <% (% N) z. s. s. [= [= [= s. A# X= A# t) $, D. O) 6% D. C> C> C> P; H. `= J. S. a% O. {' H# J. J. L. H# O. H# F# O. .- .- 1> H# 1> 1> ^' d; t* t* q- ^' .- t* t* b% t* d% P) f% .; $- ;+ 7= 7= *+ =+ =+ 7= *+ 7= =+ 7= #; @; 0= Q) A' W# (+ R) W# /+ (+ (+ ~+ Y# b= D' Y# b= Y# f, %, %, H& J> b= A* 6+ u- 1+ 1+ 1+ 6+ I& 7+ 1+ l' ;- ;- a+ a+ 5+ .) l' e= e= e= e= e= G* 0+ 0+ %$ u% )- e= g+ '- %$ S) l+ l+ ;$ ;$ l; ;$ n+ n+ n+ ;$ ;$ l+ ;$ l+ l+ l+ n+ >$ n+ )- l+ r+ '$ s+ >$ O& o+ '$ s+ x+ i= t+ s+ N> w+ '$ s+ ]$ B% B+ B+ B+ B+ R, F) A+ m; B+ A% C+ C+ B+ A+ B+ ^$ B- S& E% A+ E+ A+ C- E% O+ L+ O+ L+ S+ L+ P> Q+ S+ /- S+ T+ S+ V+ Q+ R+ V+ V+ Y+ X+ @@ .@ U+ W+ W+ W+ @@ Z+ Z+ %) _- U& @@ @@ #@ @@ @@ +@ #@ +@ #@ +@ #@ &@ %@ %@ &@ %@ #@ %@ &@ $@ &) I% >@ *@ >@ '@ )@ q= q= -@ ~@ q= 5$ * U% I- /@ 5$ {; !@ V% W% 2@ }@ 2@ X% e$ P* R* a@ X, :@ -* 7# $# $= J$ r, 8' 7' u, z, s, s, z, y, y, x, s, x, u, y, y, y, u, y, y, x, x, s, x, u, u, s, z, y, y, y, y, s, s, t, y, A, t, T) E@ -. F, -. ). !. e- ,& {. !. {. B$ F, z$ 4& *. V> .= 4) ,= G@ z@ . ,= H H@ Z Y H P Y S L@ H A Y S S S H J H |; N J M@ Q@ P@ N ", +"S$ & $ + R@ L$ ]& S$ S$ }* - ; | V@ > . |* - # - - > S$ ! - & > ~ 2 U) R$ ; ] ^ { ^ ; | *# > ] ; ; < { | 4 $# { ) < ; ; ~ *# [ 2 ~ ~ / $# [ } $# 6 ~ &# ( { ) 9 +# 6 7 [ $# { 8 : } V$ V) d b D, d 0 e ~# 6 g 8 8 a d e ,# b e n a e j e ,> e o p Y$ r h r s> r p `$ p D /# `$ p h `$ h p n p t C w C P@ 8* y N G Q@ :# %> G A W) ~& A L@ Q@ 3# b- Q@ O@ A L@ H P O J J Y J Q P@ M U X P@ R G$ H H T G$ T $% y@ V ,= 5# F@ .= 4- 2# . z@ z@ E@ . z$ =. 5# z@ >. -. F, &. ,. 5# ). x@ X) [. ,& '= ~. '= {. != `> 1. d* 8& |. P= , 7& , , s@ a& g# a& 4. }. s@ 8. j# g# 7. a; {> 6. n# g' 7. 6. 6. 0. d. Y- 6. i* d. 9. e. h. e. c. c. {% Z- Z- Z- Z- q# f. h. f. l* (% T= S= n* x> i& Y) n* (% (% (> [= W= @, z. z> z. s. k& A# z. z# [= [= A> !' P; )) H. 6% 4% P; n& Z) 6% G. {' F# 0% H# E# S. S. F# F# F# F# F# F# 1> F# .- H# F# 1> s& .- F# s& 1> t* t* ^' b% u& b% t* d% e; z& P) v& ;+ ;+ =+ =+ 7= 7= &+ 7= =+ *+ @; `) ! *+ C& _' Z' /+ W# <' b= b= Y# /+ (+ b= Y# b= Y# <' A* %, k' B) J> .! d= 6+ B* 1+ d= 6+ 6+ >- #$ +! @$ >- 8+ %$ K> l' 7+ b+ e= G* %$ %$ %$ G* e= ^) G* %$ d+ G* %$ e= %$ @! n+ l+ j+ ;$ @) l+ l+ ;$ ;$ ;$ l+ l+ ;$ l; l+ l+ @) n+ M& n+ n+ A- s+ s+ t+ #! w+ o+ '$ s+ i= s+ i= N> '$ s+ t+ ]$ A+ B% B% B+ B+ B+ A+ C+ C+ B+ E+ E+ B+ A+ B+ B+ ;; E+ A+ E% L* D+ C+ D+ M+ L+ L+ Q+ O+ /- Q+ Q+ E% /- S+ R+ R+ S+ T+ Y+ Y+ R+ T+ V+ V+ X+ .@ Y+ T+ U+ W+ X+ `; U+ @@ H% $! X+ X+ +@ #@ %@ X+ @@ #@ #@ #@ #@ +@ <- &@ &@ &@ &@ %! &@ * -@ R% >@ =@ -@ `& S> u= ]@ 1$ `& *@ (@ )@ '@ &! +* *! {@ N% =! W% <@ W% L- W% 4@ :@ W% u; |@ Y, c@ J +# V@ ], s, 6' x, u, t, s, -! y, y, s, H) u, y, y, y, y, y, y, u, z, u, u, z, u, u, y, y, y, y, y, y, y, y, y, y, u, }) A, ), G@ ). x@ l> ;! -. ). 5& !. A@ ;. ;. e- z$ >. #. A@ 5# (* @. .. 5# A@ G@ 1# 2# }; X Z O B$ H Y >! L@ O H$ M@ H S M@ Z E$ A Q@ I ~& I x ", +"Q$ # + & # ] T@ ^& ~ Q$ # & Q$ . Q$ & ; - ; # V@ > ] - . . | ; ; > ## N$ & N$ { | Z@ ) 1 { ) U$ W@ ) 2 ~ 2 ) $# ) W@ H= [ { < 6 | ~ { ~ { [ | [ ) 1 # / X@ } ## Y@ 4 ( : < W@ $# $# 6 $# ,# 1 [ b 2* ( q> a ,# 6 e &# a' 7 ~# q> a $# b ~# L= ~# n ,# `$ j Y$ Z$ s ~# c ,! b' _# 9- n -= G z Z$ m p ~# G D s h C C I m M C Z$ I M D D B (# M z z A }# A M I A N@ G @% z E$ K@ d- E$ Q@ O@ T C$ M T D$ G$ P H@ T T L@ L@ L@ e- 7# E$ 7# . R z@ W z@ .. =. e- )= )& *. e- =. !. !. A@ (* @. x@ A@ &. x@ {. b# +. -. '. '. {. &% =% 5& ~. d* /. H; *% 9& e* P= {= e# ~= q@ h# j# 4. 0, '! 9; f# 7. 9; 8. U' ^= a; 6. ^= 6. 9. !% )! !! i* e. {% c. c. {% c. Z- Z- c. Z- c. g& l* h. g& g& j. g& l* n* h' b; (% l- h' (% z> N) ~! `- [= {! E. A> <% z# m- [= [= [= m- c; P; )) G. $, 6% ]! 9% n& O; G. ^! S. F# S. ]' E# S. F# H# y' /! .- H# S. H# .- H# .- H# f; d; 1> t* ^' t* .; ^' d; c% t* f; (! 0) d% +- g; @; =+ ;+ _! 7= 7= 7= 7= =+ 7= 7= `) {+ _' :! - ;- ;- 7+ l' 7+ i, a+ l' l' G* G* a+ G* 0+ 0+ [! ,- ^) G* %$ ,- e= ,- d+ ,- w% @) l; ;$ f= n+ l; l+ l+ l+ n+ n+ n+ l+ n+ >$ A- n+ }! l+ m+ h+ s+ y% |! 1! t+ t+ t+ '$ o+ s+ s+ u+ x+ o+ u+ A% A% A+ C+ C+ B% A+ A+ A+ C+ A+ A+ A+ B+ C+ A+ C+ ;; 0> A+ C- Q& F) C+ C+ E+ O+ O+ O+ L+ R+ P+ R+ S+ /$ Q+ R+ R+ T+ T+ T+ T+ T+ T+ R+ T+ U+ S+ V+ T+ W+ U+ .@ @@ Y+ .@ q; %) X+ _$ @@ W+ +@ +@ #@ +@ +@ #@ %@ %@ #@ &@ %@ *@ *@ *@ #@ R> ~; =@ &@ =@ ~; I% )@ * Q% * (@ T% H- P* H- * I- {; /@ Q* P* R* b$ b$ X% 4@ f$ 4@ S* 4@ `% T* l@ M@ / # q, r, [) z, y, z, u, y, y, y, u, u, x, u, u, u, x, u, s, y, u, A, A, z, u, s, y, y, y, y, y, y, u, s, u, z, x, v, s, 2! 3! ). &. {. ;! ). p) '& (. '& ,. &. &. -. 4- 4- (* #. #. [; F@ 4! . D$ 4# @. X M@ #% $> K@ Y }; Z A Y P@ N= M L@ O M@ 4, H 8* P@ P@ x S ", +"# @ . . ]& > = + Q$ . V@ > & [* # }* ; > V@ $ . ] . > $ Z@ ) N$ P$ $ & X@ ] - > | W@ ) X@ 1 ] `@ [ Y@ ) 5! N$ ; { ~ W@ { 6- U$ $# 8 { [ &# N$ *# } { { { R$ { $# :& } 7 $# < $# ( $# : 7 ( g a 7 7 8 e ~# Y@ [& e e 8 &# ~# e 6! n e g o ~# 7 ,# C; 9- o q e h C; a 0- n n L= n y h (# p ^# `$ `$ 5* _# z ,! h r Z$ D Z$ m G G F= y G ^# N S A K@ A N N@ G M Q@ A Y M |# O@ P@ ` P@ d- H x O J D$ S @. L@ W W Y I@ X O d- L@ 7# T L@ $% 7# @. A@ L@ E@ E@ +. =. I@ !. +. ]. -. . +. =. ). 0# !. F, !. =. =. A@ R' {. '. =. '. 5; %% 5& /* `> 9& 7! *% :. *% ., P= h# j# e* 8; Q- g# g# '! 9; ;% 7. g# U' q) ^= ^= a; ^= ^= {> Y- e. 0; 0. c. c. e. c. {% c. {% 8! {% c. Z- {% i. g& g& l* l* l* l* /% l. b; /% 9! n* (% (% r. v. W= `- [= z. 0! m- A> [= m- A# m- t) z. X' r* G. r* $, G. 6% G. O; O; 6% E# a! J. S. Q; S. b! F# S. c! 1> H# y' F# H# H# F# 1> d; d! ++ c% c% s& N# #- b% t* s& f; #- t* d% q- L, ;+ =+ =+ e! 7= 7= 7= ;+ 7= @; =+ *+ {+ #; `) f! g! Z' Y# h! b= b= Y# Y# /+ b= %, Y# Y# %, %, }+ H& b= A* 6+ 6+ i! ;- f, k' j! +! g, +! 5+ 6+ 6+ 7+ t% a+ b+ l' l' K> 0+ b+ e= e= e= i, %$ %$ G* &, u% e= ,- k! 6> Q, f= f= g+ l+ ;$ ;$ ;$ ;$ ;$ l+ l+ ;$ f= h+ >$ '$ l+ n+ h+ l+ l! i= t+ s+ u+ n' t+ s+ t+ N> x+ '$ s+ x+ w+ '$ x+ A% B- B% C+ B- A+ B+ C+ A+ A+ R, B% C+ A+ C+ A+ ^$ I+ ^$ C- E% C- D+ E+ E+ C- O+ O+ /- R+ S+ S+ R+ /- S+ S+ S+ P+ S+ V+ U+ G% V+ T+ V+ Y+ Y+ Y+ X+ X+ .@ W+ X+ W+ W+ :$ m! +@ X+ +@ @@ +@ @@ _$ W+ &@ #@ @@ #@ +@ #@ %@ %@ &@ *@ *@ >@ *@ -@ =@ &@ =@ )@ )@ * r; 2$ ~@ T% S% ~@ 6$ O* ~@ /@ /@ /@ (@ P* <@ }@ a@ R* d$ W% v; 8@ T* 2@ W* y ;# ]& ], H) z, z, x, u, u, y, u, x, s, z, u, y, x, y, z, y, s, y, z, x, s, A, y, y, y, y, y, y, y, y, u, x, s, x, s, x, s, 2! M@ d# x@ c# &. !. B$ ]. x@ >& ). =. !. >. F; $% )& +. A@ B$ z@ V z@ C$ Y }; C$ H 2# D$ T V J 1# H$ Q@ n! M O@ #= @% 8* S G b- P@ x A M ", +"J$ + + + R@ - . * + }* ; S$ T@ > # V@ ~, & > > Z@ N$ [* ^ > ^ U$ N$ ; S$ - { H= - o! ; S$ ) } { { ) 4 , | ) 6 %= ] { ## ) < ~ { } / { d { ## $# ) ~ < / 6 8- Y@ /& 7 ( ## b ( *# } b == $# =# ># 7 < 6 7 7 a' j e j &# L= ~# &# g a e ~# j a b c g c s> c X$ h `$ t p h `$ `$ r h p! ^# q w m 6* Q@ Z$ ^# 4* q D `$ Z$ m I G I I G P@ q! M N K@ A y A E$ E$ I H A P@ Q O@ P H 8* ` 7# J T H ` T G$ H G@ 0* C$ D$ r! T I@ J D$ G@ E@ X .= 2# V C$ s! G@ @. &. *. #. >. 0# 5# #. 5# )& *. t! &. {. )= '. 9# '. '= |. u! =% {. ~. 9& 5& '& =% /. `> v! Q= -% P= {= s@ j# j# }. , g# a& a& 9; 9; 7. n# f' w! 6. ^= 7. 6. ^= ^= 0. e. d. a; d. c. {% c. {% {% {% {% h. Z- h. h. f. f. H, x! l* f. g& ^> (% V= V= (% ,) (% p* p* t. {! W= z> z. z. z. [= A# `- A. c; [= y! Z= !' 6% n- $, H. H. H. O; H. O; z! J. S. F# O. F# a! F# J. H# F# H# F# .- 1> .- .- H# d; .- Y. .- 1> t* t* t* q- q- s& s& c% d% q- f% f; 2> =+ 7= M, 7= &+ ;+ =+ *+ *+ *+ *+ @; S# *+ C& A! a= /+ A* <' Y# -- b= Y# <' b= b= b= %, b= m% |+ b= b= 1+ 6+ 6+ t- s% 2+ ;- l' u- 1+ t% t% 6+ 5+ l' l' l' l' t% 7+ 0+ G* e= G* e= a+ G* G* e= %$ j+ ,- e= k! )- &, f= ;$ U; )- g+ n+ l+ n+ l+ ;$ n+ n+ l; ;$ n+ r+ n+ ;$ l+ g+ ;$ O& '$ t+ t+ i= t+ t+ s+ u+ N> u+ s+ N> u+ w+ u+ i= B% B% B% B+ B+ B+ B+ A+ C+ A+ C+ C+ B! B+ B+ B% F) R& E+ S& /- S& A+ C+ 0> O+ E% Q& /- R+ R+ R+ L+ /$ T+ S+ P+ T+ G% X+ V+ V+ V+ V+ Z+ Z+ Y+ X+ W+ +@ W+ @@ _$ Y+ Y+ _- :$ W+ +@ +@ +@ +@ +@ #@ #@ #@ @@ %@ +@ +@ &@ &@ #@ &@ &@ '@ >@ *@ ~; >@ V, .> `& >@ ]@ -@ C! '@ H- '@ d> 9$ 9$ O* /@ !@ R* P* b$ :@ f$ b$ ^; 9@ h> y= 6@ X% m@ p O$ *) =) s, s, 8' u, y, u, s, v, H) x, 8' s, x, y, u, s, z, y, z, s, x, s, s, y, y, y, y, y, u, y, s, w, s, u, s, x, x, r, y ^. %% ^. D! ^. (* x@ '. ,& A@ )& x@ A@ E@ A@ .= &. ). .. )& Y z$ R G@ V V n> 2& J }; M P X Z O ` P@ P@ K@ A M S 8* H$ A t N= #= ", +"!, # . > + # N$ T@ - $ $ R- & 5- V@ E! # ; ] . | N$ ] & ] ; | | !, ; > ] ~ > - & ) ~ ~ 2 / ] ) $# ) ] | { | ) [ W@ 5 < Z@ $# 7 ( ( 6 Y@ [ ) 4 { { d ,# d X@ 6 } 7 2 W@ # < d V$ =# b 6 6 $# ( 7- e ~# 7 6 ,# e 7 a ~# r d j F! X$ j ~# *= 7 c n r 8 i o ~# h C; 9- c h 9- p Y$ m % r ^# F= D Y$ u Z$ D ~& Z$ G /# w z G A O@ J J O A P@ A I A M x P@ N J A O@ @% T H C$ P@ E$ P@ P C$ P H E$ Z E$ U 2& W H C$ I@ Q' @. L@ H@ .. X C$ H@ V @. z@ G! -. $% 5; 5# B@ E@ e- z@ ;. &. =. '. ). /. ~. ^. ,& S' H! ~. =% '. '. 5& d# /* &% %% v@ d* e* u' I! J! , P= j# , a& a& g# 8; j# 9; 8. 9; g* 6. 6. a; 7. ^= a; q) i* d. !! {> {% d. e. c. {% c. c. e. {% h. Z- i. f. f. K! g& /% /% H, K; n* W' (% w# L! W= (% <% s. p* W= s. v. z. [= z. z. A> A. X= m- [> !' r* O; 6% 4% n& H. O; H. 6% C> a! J. S. S. M! ]' F# .- H# S. S. S. O. .- .- 1> .- .- 1> 9) 1> d; ^' t* t* 0) f; q- f; q- +- q- N! (! M, h; =+ O! 7= 7= *+ 7= 7= *+ 7= *+ y) C' P! c) Q! {+ A* b= g! /+ (+ %, b= b= Y# b= Y# %, %, b= r% 2+ l% f, s% 5+ 1+ t- B* ;- 4+ 6+ 6+ t% I& 6+ 6+ .) l' +! l' j! l' e= e= G* G* G* K> R! 0+ e= ^) ,- )- e= e= )- ,- g+ ;$ &, ,- l+ l; l+ l+ l+ l+ l+ l+ l+ n+ l; >$ n+ l+ n+ h+ ;$ ;$ >$ t+ s+ r+ r+ '$ s+ s+ x+ '$ s+ x+ w+ x+ x+ k, B+ A+ B+ A+ A+ A+ K* ]$ A+ B+ m; B+ B+ A+ B+ B+ e) S! E+ C+ #) T! E+ D+ I+ O+ L+ P+ /- P+ S+ /- Q+ S+ P+ S+ S+ P+ T+ T+ X+ T+ R+ V+ T+ V+ X+ .@ U& W+ .@ W+ W+ Z+ f) <$ U! @@ +@ V+ @@ +@ @@ #@ #@ %@ +@ m, %@ #@ *@ +@ *@ &@ &@ *@ >@ &@ e> '@ r; *@ S> -@ s= 2$ r; ~@ H- S% * I' !@ /@ :@ {@ b$ W% !@ V% W% X% R* 1@ b$ W% j$ 6@ w$ h ;# V! ], [) H) s, x, x, u, H) z, u, x, s, u, y, y, u, x, y, z, x, u, u, y, x, s, u, y, y, y, u, +' u, u, s, z, y, u, y, u, v, W! ). x@ z@ ^. '. A@ ). !. &. ). *. z$ -. B$ +. 7# .= +. .= +. B$ F@ .= 4# T D$ L@ H L@ P ` ` O ` O P 4# H$ S A G O@ 8* A z /# M `$ ", +"R@ . & . # ; # = . . X! $ + Y! T@ V@ + & ; }, | [* . $ ] ; ] ) /& ; S$ ^& ] ; 2 - 6 ] ; W@ Z@ { W@ Z! { ^ ~ d /& } 2 W@ { ~ ^ } } : ] 6 ~ { ) 2 / : &# &# ) , d $# Y@ { / $# < &# b b $# &# a $# 0 i e e 9 < 6 8 c &# 6 F! V$ d *= `! t' r h a r h e ~ F! 9- r ~# c n ~# ^# n p p `$ /# y :# 4* G h Z$ -= 4* z C F= `$ Z$ I I )> N w M= N x x w G S S I .~ P@ o> A o> P@ M@ P@ J P@ T Q@ P J L@ L@ d- H@ ,= H$ T P G$ ,= I@ A@ .. V R' E@ z$ G$ 4- 5# +. >. 5# 0# e- e- . (* z@ =. A@ ,. 0# %. &. =. /. A@ 5& '. ). {. ^. /. &% +~ ^. 5& v@ {. S' e* ,% P= _. {= {= _. j# {= h# a& g# a& ., 0, 9; 6. a& g# ^= ^= a; ^= 7. 6. a; !! e. @~ h* #~ c. c. e. e. {% h. {% Z- h. Z- f. g& m* K! g& x> o. ,) r) (% ,) U= 9! W= ,) p* <% t. (> $~ [= m- [= m- z. z. A> A> A> 0! N; N; 3% r* $, A. o- G. 9% D. H. 6% O. F# F# F# H# z! H# F# S. S. S. .- .- H# .- .- F# 1> s& d; 1> 1> b% t* s& q- 9) q- d; %~ s& t* t* &~ &~ a) @; 7= *+ =+ *+ @; 7= =+ 7= &+ @; @; ! @; *~ j' a= /+ S; Z' -- A* =~ 5> %, k' %, k' %, /+ }+ B) D' %, 2+ s% f, s% ;- u- B* ;- 1+ 6+ $$ @$ ;- l' t% -~ G* .) l' i, %$ %$ e= G* ;~ ^) %$ ^) e= >~ l; &, %$ f+ G* &, &, ;$ )- l+ w% l+ ;$ n+ n+ l+ ;$ n+ l+ ;$ n+ l+ n+ n+ h+ h+ n+ n+ '$ s+ s+ r+ )$ t+ t+ {$ i= s+ u+ u+ w+ x+ y+ A+ B% B+ B+ A+ C+ E+ A+ A+ A+ B% B+ B+ C+ D+ E+ A+ A+ A+ B+ E+ E% 0> E+ G+ D+ E% O+ O+ O+ Q+ P+ L+ O+ S+ R+ S+ T+ V+ T+ T+ V+ S+ R+ Y+ V+ @@ .@ .@ T+ X+ W+ X+ Y+ X+ W+ <$ X+ @@ +@ +@ '; @@ W+ #@ #@ M* :) %@ %@ %@ %@ #@ &@ %@ %@ -@ *@ (@ &@ >@ I% I% I% ,~ `& l, (@ {@ '@ '~ {@ r; '@ R% {@ R* ]; R* J- :@ :@ `% 8@ 9@ 9@ l$ l$ &. e ] )~ [) v, v, r, y, u, y, s, u, y, u, s, u, y, y, z, x, z, z, s, H) u, u, x, y, y, y, y, y, x, x, y, s, |) x, z, A, A, z, [) !~ (. {. {. {. d# x@ '. ). ). -. ). &. .. B$ &. 5# H@ B$ E@ +. 5# &. =. V D$ H +% J G@ V H Z C$ L@ P J H 2& J +% N J +% I ~& S N@ I ", +". ^& > ; N$ V@ ] ] > . $ }* & # & # T@ ]& > # ; ; . & | ^& %= ] N$ ; | X@ ' | # ; X@ ] ' 1 ~ ;# ~ 6 # ) [ > ~ { ; ] { W@ { } / ( 4 [ / W@ ~ 2 &# -# ) W@ &# } W@ < == $# ## d ,# V$ 7 a j g V$ 8 a i a 6 0 +# 7 a 6 a ,# 7 b 8 c L= e 8 ,# n ~# o s g L= 9- h n Y$ p h r p D D t q Z$ C C ^# `$ q t w F= C z w ~& w G w 8* D Q@ C w I z J Q@ E$ 1& Z |# L@ I@ E$ L@ 2# K@ Y P@ 3) T 2# E$ D$ 4# J X G$ H Y G$ T V V @. H@ E@ @. ,= .. +. e- ]. -. z@ 5# A@ .= ]. z@ *. O= ). '. %. 0# F, =. '. {. %% {. =% H! ~. '. =% /. /. T' {. &% Q= t@ 7& g- {= {= {= P= , P= j# g# g# f' 6) '! s@ ;% k# 9; 6. ^= 6. 6. ^= 6. ^= a; m# n# h* V' d. c. c. Z- {% Z- c. {% c. h. h. f. g& l* Z- l* V= (% H, i& p* /% (% (% (% p* p* p* z> W= )' N) @, [= [= [= [= m- A> A> m- ~~ c; G. r* O; |= {~ n& |= 6% 6% {~ Q; S. J. S. c! .- H# Y. H# x' H# H# H# .- H# F# .- .- 1> d; 1> 1> 1> 1> f; 9) f; t* s& t* ]~ d% ^~ f% /' =+ *+ =+ =+ C' *+ @; *+ C' *+ @; 7= *+ *+ /~ (~ g! l% Y# h! D' b= Y# %, b= b= %, %, l% /+ b= d= %, k' %, }+ f, B* B* _~ :~ B* g, 6+ 7+ i; g, 7+ l' .) i, 9+ .) 7+ a+ G* ^) ^) G* G* e= G* e= e= %$ %$ %$ e= G* %$ *, l+ l+ )- ;$ l; ;$ l; ;$ l+ h+ h+ l+ l+ l+ l+ l+ h+ l+ n+ l+ n+ u+ s+ s+ r+ =; s+ t+ t+ w+ o+ '$ t+ u+ w+ w+ B+ B+ B+ k, B+ B+ B% B- B% A+ C+ A+ B% A+ A+ E+ A+ A+ C+ C+ E+ O+ M+ C+ P& C+ M+ L+ L+ E% L+ /- Q& C- N+ R+ R+ T+ S+ /$ /$ U+ R+ R+ T+ T+ .@ W+ X+ Y+ X+ X+ W+ +@ W+ W+ @@ H% @@ +@ @@ @@ W+ :- +@ W+ +@ q; #@ %@ %@ *@ +@ *@ *@ <~ >@ %@ &@ &@ *@ >@ I% T% q= [~ I% }~ * >@ (@ r= (@ (@ |~ ~@ O% J- ^@ n, :@ I- W% f$ |@ f$ l$ y= z$ e }* *) ^, H) v, t, y, y, u, x, z, y, y, x, t, u, x, u, s, +' z, v, u, y, z, u, s, z, x, y, u, s, t, y, y, y, x, t, x, u, u, v, `@ -. '. -. !. !. >. &. -. '. z@ ). d# z$ 4& ). E@ V E@ z@ V C$ . P 7# W J@ V I@ Y H@ #. H P@ A Y T J E$ S O M S H |# M z I #= ", +"% . U@ . & & # . . ; # ]& $ Q$ % % 1* U@ H= > V@ ; > > ; ] ] | - > %= U@ - ; & & > 2 X@ Z! ; ; Q$ ; { [ > N$ ] 2 ) ) N$ 6 { ~ 2 ) [ *# < [ / ## ) ) : $# { &# ) 2 a V$ 6 7 e } b } i e a 7 7 5 } :& b c 6! 8 a o ~# ~# !# e 7 n [& 7 e t' 0 o o `$ r L= q h L= t' r _# h `$ m `$ m ~& ^# y w C w Z$ ^# :# 2; ^# u ^# w A A O@ J I z M G A w M H P@ M Q@ L L@ Y P@ L Q@ O H Y J 2# z$ T L@ T U H@ L@ J C$ H U V D$ d- X $% +. B$ $% U )& ]. =. B$ )& )= !. =. >. 0# B$ !. F, b# A@ B$ ,. A@ ^. 1~ $% =% '= b# 5& =% '& {. '. 2~ P= +~ 8& 3~ >' -% e* , e# P= j# , s@ h# 9; g# 0, g# a& 6. 7) ^= 6. ^= ^= ^= ^= 6. a; Y- i* a; !! c. c. c. {% Z- {% {% Z- c. 4~ Z- {% i. g& c. l* l* ,) /% r) n* /% s# (% p* 5~ (% p* s. l- z> L! {! s. 6~ 7~ ') A> Z= M; m- t) $, 6% 8~ H. 8~ 9~ 0~ |= 6% ]! ^! a~ S. S. O. b~ c, S. F# H# H# H# v) d; .- .- H# .- .- 1> t* ^' d; ^' t* q- c% f; #- b% t* f; f% q- .; f% ;+ *+ 7= *+ *+ C' *+ 7= @; @; @; @; `) A' C' C& ~) c~ -- d~ R) b= -- %, b= Y# Y# b= b= Y# b= }+ 3+ b= k' b= A* s% g, g, }+ u- e~ g, 5+ 7+ ;- i; 7+ 7+ e= G* .) l' K> %$ G* e= G* %$ k; ,- e= G* e= ,- 0+ e= G* ^) k; l+ l+ u% j+ g+ n+ l+ h+ f= h+ ;$ l+ ;$ ;$ l+ h+ ;$ ;$ n+ |' ;$ u+ t+ t+ s+ O& o+ t+ i= N> u+ i= s+ w+ u+ i= ]$ B+ B+ B% B% B% B+ A+ B% C+ E+ A+ A+ C+ A+ C+ E+ A+ A+ R& E+ E% A+ E+ A+ E+ k= O+ O+ E% E% P+ /$ R+ O+ O+ S+ /- O+ Q+ S+ $) X+ R+ R+ R+ T+ Y+ .@ X+ @@ U+ .@ .@ W+ X+ m= X& f~ #@ +@ @@ @@ `; #@ %@ '; #@ #@ +@ *@ &@ &@ %@ %@ &@ &@ >@ > ~; >@ 4$ >@ ~@ I% G- `& 5$ '@ (@ 0$ {@ R% /@ {@ d$ <@ 9$ 1- 4@ W% W% W% 9@ l$ x= 4@ e@ H } ; g~ q, v, [) v, u, x, x, s, x, z, x, v, =) u, z, y, s, z, z, x, y, y, y, y, x, z, v, x, x, s, z, z, y, u, s, =) s, u, +' q, Y! A@ (. q@ &. &. ,& -. '. A@ ). A@ -. ,. A@ >. E@ G@ E@ h~ E@ i~ V T D$ S S E@ }; C$ Z E@ H &' @% Q@ Y L@ T ` M P@ P@ J Y #= M I G ", +"]& # T@ * }* = > - > & > . ]& ] - V@ & %= U@ # E! ; & P$ ^ ] | S$ ] > H= ] ; > ] & & / { ) ] ; { ^ R$ ; ) ~ ~ | ) | W@ 2 < [ 5 { [ { ~ / { W@ -# 2 } ) / $# ## &# V$ &# d d $# ## 7 8 b } 7 2* } 7 &# : d 0 6 8 a a a i ~# c 6 7 8 8 8 e a _# r h ^# h o r -) r r c Y$ `$ ^# |& t G h j~ G G G y q m D C B w % ^# D P@ M A J P@ w x M z 8* C E$ H P@ P@ P@ L@ L N@ L@ T 3) L D$ M@ L V P #. E$ H@ R J &' H R I@ 4# H +. .= .. e- +. $% )& . 7# >. )= &. *. A@ ). H! >. e- 0# %. z@ %% %% &. H! 5# &. '. b# o) != |. v@ '= 6& 9& ~. /. {. d* *% k~ , j# e* 1. j# {= j# g# g# j# l~ s@ 9; a& 7) k# 7) U' 6. !! ^= a; ^= i* V' m~ i* e. e. c. c. c. Z- h. K! K! Z- {% ^% f. n~ h. l* U= H, H, p. )' 8) p* n* (% o~ p* z. `- W= @, m- N; A> A> z. m- a, p~ m- A> Z= [> n& q~ r* )) C> ^! O; 6% n& r~ c, 0% O. J. 0% {' F# y' H# F# b! d; v) .- 1> 1> d; ^' d; d; d; ^' f; f; u& f; t* f; f; f; q- f; ]~ s~ (! 7= @; *+ O! *+ *+ C' *+ 7= @; C' @; #; t~ B' =~ t~ Y# A* Z' b= b= Y# b= b= %, b= %, b= b= ) }+ 2+ %, `# 1+ 6+ }+ 6+ 6+ ;- 6+ J> 1+ @$ 8+ 6+ @$ .) l' G* i, .) a+ e= e= %$ e= u~ u~ %$ G* e= G* |' -$ 0+ f+ *$ u% Q, Q, v~ j+ n+ ;$ l+ ;$ l; ;$ ;$ n+ n+ ;$ ;$ y% ;$ l+ n+ l+ n+ r+ i= s+ s+ t+ n' s+ s+ N> u+ u+ N> '$ i= u+ ]$ B% B+ w~ B- B+ A+ B+ B% B% E+ K* B+ E+ C+ A+ A+ C+ F) F) H+ C+ C- A+ ^$ C+ B+ M+ O+ E% E% O+ L+ Q+ L+ E% S+ P+ P+ R+ T+ P+ T+ T+ T+ R+ G% V+ Z+ @@ X+ Y+ W+ X+ @@ @@ _$ Y+ x~ y~ +@ @@ +@ +@ W+ @@ +@ }$ %@ #@ +@ %@ #@ *@ ~; ~; *@ >@ [- &@ I% l, e> >@ d> /@ N% /@ H- O% H- U% (@ {@ )@ 0$ S* !@ {; }- w= W% W% b$ X, |@ e$ )* S [ . g~ *) z~ s, x, u, x, y, s, u, y, x, x, y, y, y, y, x, y, y, y, s, t, y, s, u, y, z, z, u, x, s, t, s, u, x, x, s, s, x, s, + O= A@ ^. = !. 5# *. )& A@ ;. F, A@ ). F@ -. z@ A@ >. E@ R 9* .= .= F@ &' D$ C$ X V L@ E@ H@ H@ J Q@ J@ P J H S Q@ H$ S T H$ S A H$ ", +"!, T@ > $ . . > > > . + = o! |* ' # # H= # > !, > > ] - > - > > > X@ | U$ | N$ - 2 ) ^ ^ { U@ [ ^ . |* R$ 2 | ] ) 2 [ W@ /& 2 ,# ( $# 6 ~ $# $# Y@ $# 8 Y@ 1 / / &# 7 b : 6 == $# a &# a ~# 8 a 6 d e 7 b e A~ $# ( 6 &# e L= e ~# c e *= i e 8 L= n e Y$ h c h c (# o h o r p 4* ^# b' O' % <, p N= y p q w C ^# M= D G /# A }# H$ G C P 8* H E$ L@ |# G P@ I E$ A J P@ M H$ S 3& 3; :* H$ M@ O@ J L B~ T U C$ L L@ H +. e- y@ z$ 7# +. )& e- .= 6# A@ @. A@ &. 5# 5# )& F, V 4) !. %. F, A@ '. &. A@ A@ !. C~ ~. b# D~ -. {. =% '. 5& ~. {. /* D~ {. v@ t@ 1. *% '! E~ 1. j# P= e# a& g# f' g# g# g# f' f' f' 9; v' !! 6. a; 6. ^= !% d. {> a; c. c. d. c. Z- {% c. Z- {% {% h. h. g& f. F~ r) H, H, H, U= (% G~ W= W= H~ l- h' I~ s. W= `- z. z. [= A> m- [= y! J~ <> K~ L~ X' P; 0~ 6% )) ]! 6% H. D> {~ M~ {' E# O. F# O; N~ H# v) H# H# v) F# .- d; d; .- d; 1> d; 1> d; ^' f; t* d% 0) t* t* f; f; ]~ d; t* /' e! $- *+ 7= O~ *+ *+ *+ *+ C' @; *+ C' C' C' C' P~ j' Q~ /+ Y# Y# Y# b= b= b= Y# Y# Y# %, b= %, %, ) %, }+ 1+ g, B* 6+ g, ;- u- t- g, +! 7+ 6+ 6+ 7+ t% 7+ e= 7+ l' i, G* G* ^) G* %$ e= e= ^) ^) ^) j+ e= e= *$ u% e= S) S) )- l+ n+ l+ l+ l+ l; l+ n+ ;$ l; n+ M& >$ l+ ;$ l+ ;$ O& R~ s+ >$ s+ )$ s+ t+ i= w+ u+ s+ u+ w+ w+ w+ B- B+ A+ B+ A+ B+ C+ A+ B% A+ A+ A+ B+ A+ C+ B% B+ D+ A+ ;; R& E% C- B+ A+ A+ C+ Q& O+ O+ E% O+ R+ L+ Q+ P+ S+ P+ S+ S~ P+ S~ S+ R+ T+ R+ G% V+ U+ W+ X+ +@ .@ X+ @@ _$ Z+ H% :$ W+ @@ @@ #@ +@ #@ +@ +@ #@ +@ +@ #@ %@ }$ %@ D- %@ #@ &@ *@ '@ '@ -@ -@ `& T~ )@ Q% C! 9$ w= U% R% /@ <) U% 0$ 9$ 1@ :@ :@ e$ 2@ f$ U~ `% v; f@ Z$ | # *) r, s, v, x, u, u, y, u, x, y, y, u, z, y, u, x, u, y, x, y, u, u, x, s, u, z, y, y, u, x, s, z, x, x, s, x, x, x, x, s, q, R E~ W> B@ 7; ). E~ A@ A@ ). &. ). ). )& )& l> z@ +. &. z$ #. I@ =. ` Z P T H L@ M@ P H ` 1# P Y L@ Y Y H Y P@ J N@ Q@ Q@ 3# A ", +". . = + ]& . $ $ Q$ > $ ! U$ 5- U$ > # . . # V@ - ~ ) N$ ] ^ U@ ] ; > - ; > - & ; R$ ] 2 [ { ) 2 | [ [ W@ ] ] ] %# [ Y@ X@ 2 < $# ( [ } Y@ [ 2 6 7 $# 2 < b } ~# $# $# } 6 e 6 _ e ,# V~ ~# g d 8 a 6 g V$ ,# 6 &# < V$ ,# d e ~# ~# e 7 7 *= r Y$ h c c o n a _# _# {& n h m D b' m K= m D C N /# y Z$ D `$ w I Z$ w I A M N@ N I P@ C w x A E$ P@ E$ U ` L |# J P U Y H@ E$ L@ U O U C$ C$ H T I@ J H D$ V Y F@ @. 4# @. (* z@ 7# e- >. ,. -. +. A@ e- W~ ). !. ). B$ .. ;. 5# 5# 5# )& &. &. {. ;. ;. +~ !. ;. |. |. e' D~ |. &% _. '& d* |. 9& *% e' '! -% e# g# , g# 0, 0, 9; g# f# f' k# f# 9; k# v' ^= 7. 6. 6. ^= i* c. X~ q) Y~ c. e. c. {% Z- h. Z- {% 4~ {% Z~ f. g& K! h. H, ^% H, l* n* V= `~ h' W= p* 5~ W= s. `- {! @, @, m- [= [= s. [= [= L~ A> A> t) 4% 0~ n& G. z! z! 6% r~ O; O; { c, S. F# v) .{ F# v) H# H# .- H# H# H# F# 1> 1> d; 1> .- d; ^' +{ f; f; c% (! q- q- f; f; q- s& /' f% (' 7= *+ e! =+ 7= =+ *+ C' 7= @; *+ @; @{ @; P~ j' d~ b= b= h! <' D' Y# k' k' k' b= b= %, Y# 3+ |+ %, A) 1+ 1+ ;- 1+ |+ %, b= g, 1+ ;- 7+ >- g, #{ t% t% i, K> l' .) u~ e= G* G* h, G* G* ^) e= e= j+ %$ G* ,- /) %$ }' S) ;$ )- ;$ ;$ l; ;$ l+ m+ ;$ l; ;$ n+ A- A- ;$ ;$ n+ l+ J* W; t+ y% '$ y% u+ y% y% u+ x+ u+ u+ u+ u+ w+ i= C+ A+ B+ A+ B+ A+ B% A+ A+ A+ B+ B+ A+ C+ B- A+ B+ B+ B+ D% T! Q& S& E+ C+ C+ O+ E% E% L+ S+ /- O+ Q+ R+ V+ T+ S+ R+ R+ R+ T+ R+ R+ /$ R+ U+ .@ .@ X+ X+ @@ .@ X+ +@ +@ _- ;, #@ +@ +@ @@ @@ +@ #@ %@ %@ #@ ~; &@ &@ &@ ;@ W, %@ &@ `& U, &@ )@ '@ >@ )@ '@ 7$ Q% )@ 8$ [~ }@ /@ ^@ !@ 0$ W% !@ /@ }@ ${ /; X% 2@ W% }@ X% q@ h ] > *) 6' %{ s, s, #' u, u, y, s, x, z, x, u, y, u, 7' u, A, y, y, u, x, w, x, x, s, x, t, v, x, =) v, s, s, H) s, x, s, x, s, q, J@ (. ^. !. ;. ;. {. ;. !. &. $. (* .= 5# E@ =. -. &. !. .= ). G@ 5# X 1# G@ C$ .= . G@ .= 4# X B$ L@ Z Y ` Q@ P@ 3# +% I P@ I Q@ J @% ", +"Q$ [* > Q$ L$ * R@ + = Z, ; . $= $ ] # V@ # & - ^& %= . . > & | H= ^& N$ ; # | | U@ - | - ; /& { 1 { W@ ~ { Y@ W@ / 2 2 } / 4 2 : < ( $# $# ) W@ < Y@ &# $# 9 W@ J= } $# / d b ( } /& 7 0 $# 8 U- 7 ,# 6 ~# d ,> W$ ,# $# 7 $# V- 7 a e ~# e g X$ a c h % n o V$ e K= g p r r `$ p 2, Y$ r /# /# C C C w N= Z$ h `$ p ^# D y 8* [# C Q@ N .~ I C A {& A E; |# P@ Q@ Q@ D$ S O H Y S z U 3& P T J +. P L@ M@ P C$ Y 2# L 7# R +. 4# C$ 6# I@ C$ &{ 7# X !> *{ z$ ={ G@ E@ +. =. 6# z@ )& z@ +. )& =. F, /. =% '. '= ;. A@ '. S' 5& 3~ != +~ -{ Q= -% /* |. 7& *% w$ e* -% P= ;{ `> , j# h# a& a& }. ;% 9; 9; n# f' n# U' U' ]= ^= a; q) q) @~ c. )! (= c. c. {% {% {% {% Z- Z- Z- Z- Z- f. l* K! r) v# l. >{ ,) H, p* b; ,{ p* '{ W= W= j& A# L; ~! p~ z. [= [= z. L~ ') M; N; m- [= N; 5% $, b, ){ q~ 6% O; 6% H. {~ F# c, c, b~ a% H# .- !{ .- y' F# H# .- F# .- .- 1> d; 1> ^' c! d; d! q- q- q- ]~ d% t* f; q- ]~ ]~ ^~ ~{ @; C' *+ @; 7= *+ *+ @; b) @; *+ 0= B' #; *+ {{ C' Q~ b= `' S; b= l% A* Y# %, %, k' k' %, 3+ s% %, %, ]{ 1+ f, ^{ g, 6+ .! d= e~ i! @$ ]) 6+ >- l' 7+ +! K> j! l' K> e= e= G* >~ e= u~ %$ G* G* ,- )- G* ,- K& 0+ &, w% )- j+ l; ;$ @) l; ;$ @) ;$ g+ /) l+ /{ h+ ({ r+ l+ >$ ;$ l+ >$ t+ '$ >$ n' t+ s+ y% u+ '$ t+ t+ w+ u+ s+ k, m; B+ B% R, A+ B% A+ C+ B+ A+ B+ E+ B+ A% B+ A+ C+ B+ A+ E+ Q& E% B+ C+ C+ L+ E% E% L+ L+ /- P+ /$ O+ /$ G% T+ R+ V+ S+ T+ R+ V+ _{ Y+ Y+ W+ .@ @@ V& X+ W+ +@ @@ X+ :$ :{ f~ @@ +@ +@ #@ @@ +@ #@ +@ +@ #@ %@ &@ *@ &@ %@ &@ =@ *@ >@ D- 1$ (@ `& L% G- H- `& d> {; ,@ {; {; S* R% 0$ 9$ }@ W% !@ g> ^@ 1- }@ ^@ 9@ |@ {. h & <{ *) `, s, r, x, y, x, x, r, v, x, y, u, u, s, u, y, x, s, z, x, y, s, s, x, x, s, x, s, x, x, u, =) x, x, s, y, s, A, x, s, q, <, v@ &. '& ;. %% A@ c# ,& 5# )& &. ). &. 4- &. (* 8# +. V A@ ,= (* A@ E@ H X E@ 2# 2# T T C$ b- Q@ M@ L@ L@ P@ P@ I P@ Q@ J #= Q@ A M ", +" + + M$ & # # $ ; - - > ^& ^& & ; & U@ V@ [* $= > . & - 2 ! - ^& ~ N$ S$ | N$ & 5- ; ^ %= 2 ~ } ( ~ } *# V$ 1 ) - ^ ## / ) { ,# $# W@ | 6- ( == } } e d -> } e ( 8 [{ ( } &# [ 6 6 V$ &# V$ [ a 8 7 7 d 6! }{ a 8 9 9 ~# $# i [& g q> ~# h -) 7 `$ K= l n 7 r r h p :, p r p q s> ,> Y$ I z D `$ M z /# C r z y w G Z$ w A I K@ Q@ K 1& |{ Z z H$ A B K@ M 3# A 8* O H S O@ Y d- X H J T T Y C$ #. d- O= 7# @. C$ C$ Q' X E@ >. L@ V H$ +. . E@ (* .. =. $% +. z@ ). 0# 9# A@ ,. ,. *. *. A@ ). *. x@ '. x@ /. {. /. |. 5& `> %% w$ /. %% v@ {. u' k~ *% -% :. 5) {= *% 0, , , l~ a& g# 9; 9; 9; f' f' n# n# 1{ ^= 6. a; v' a; @~ e. )! V' e. c. {% h. {% Z- h. h. Z- h. K! K! f. K! r) K! H, H, ,) H, (% (% p* W= ,{ b; K; W= `- $~ W= @, [= ') m- z. X' m- 0! A> A> ') 0! b, C> {~ H. C> G. 6% ]! 6% ]! b~ D> G# ]' H# H# 1> a! H# H# H# .- 1> 2{ c! 1> H# d; d; d; 1> ^' d; f; ]~ t* t* z& ]~ 3{ f; 3{ 3{ ^~ O~ 7= *+ &+ 7= @; ~{ ;+ =+ =+ @; @; C' 0= h! 4{ F> @{ P! Y# Y# S; {{ f! Y# %, %, b= Y# %, %, ]{ 6+ H& k' b= /+ b= B* 1+ 1+ f, k' 1+ 1+ -~ l' 5+ l' 7+ .) K> G* i, j! .) i, e= G* ^) ^) u~ G* e= e= k; j+ G* ^) G* e= &, 5{ n+ k! j+ l+ ;$ l; l+ @) l+ l+ l+ n+ ;$ l+ l; =, l+ l+ ;$ n+ >$ t+ 6{ y% 7{ V; '$ s+ u+ u+ t+ '$ i= w+ i= i= w+ B+ C+ A+ m; B% w~ B+ C+ A+ B+ B+ C+ ]$ C+ A+ ^$ 8{ 8{ R& E% /$ 9{ C+ C+ P> S+ L+ Q& L+ /- /- Q& O+ R+ R+ P+ R+ V+ R+ T+ Y+ R+ Y+ Y+ V+ U& U+ X+ Y+ m= U+ X+ +@ @@ @@ 0{ M* +@ &@ #@ +@ &@ #@ #@ #@ #@ #@ %@ *@ m, &@ &@ *@ -@ [- p= >@ >@ )@ -@ I% &@ (@ 9$ ]@ 2$ T% (@ }- O% U> :@ a{ /@ }@ W% !@ !@ 4@ 0$ P* b$ 3@ !. f ~ + J$ [) 5' ^, v, z, x, s, x, s, x, y, x, z, u, y, y, s, u, -! y, x, u, x, x, x, x, z, y, y, 7' x, v, v, }) v, v, 6' s, s, s, =) >> x@ p) (. !. !. -. ). '. -. A@ ). )& -. &. .= ). 5# #. 8# ,= .. #. E@ +. $> G@ V 2# P L@ P P M 1# E$ M H H K@ Q@ A Q@ Q@ N@ P@ A I ", +"R@ # T@ # # S$ > > & & . > % + . |* V@ V@ . S$ V@ $ U$ ; & # . N$ - ; 4 | . > ] *# | ; | b{ Y@ | < ) [ } } / / | ] ( ## : 7 { 6 } ( { 8 X@ < $# { 6 b _ : [ { ( e 7 6 7 } 6 9 e [& 6 e e $# ( } 7 i i V- V$ ># &# 0 2* n {# a j a c k L= c{ h Y$ % ^# r K= ,> 4* w ^# r p 1; m `$ Z$ /# h ^# P@ ^# m 2; u /# )> _# /# G w C O@ B Q@ J 3# F= I H O@ H$ A I a- b- 3# 8* r! M J E$ d{ L V :* P@ >) T J T H H@ I@ d- C$ D$ L z$ z$ 4# W D$ Q' )& z$ . e- )= ). z@ 5# !. =. #. &. >. 5# ;. '. A@ 0# -. &. x@ =. %% ). -. ). %% %% '= {. |. D~ 6& +~ {. e{ |. f{ H; t@ , P= P= 7& e# P= j# g{ f' g# 0, 9; a& 9; 4. g' n# h{ i{ 6. 6. a; j{ 1{ 0. 9. V' a; ]> Z- h. Z- h. 8! {% Z- h. {% c. h. l* K! r) r) g& H, V= (% V= (% ,) (% V= G~ W= l- j& k{ H~ {! m- [= A> m- l{ m- A> m- ') m{ <> r* G. P; H. q~ |= O; M~ z! 8~ M~ D> F# F# F# n{ S. v) 1> 1> .- .- 1> .- .- 1> !{ d; 1> ^' 1> 1> d; +- t* t* f; f; d% 0) f; f; ]~ s~ +; 6= 7= *+ *+ o{ O! @; @; *+ @; 7= *+ 7= C' p{ C' P~ _' ) Y# q{ <' b= r{ Y# Y# _~ %, %, Y# b= %, |+ A* k' k' k' B* |+ g, .! k' 6+ 6+ g, l' i; g, +! 7+ .) e= e= l' ]) G* e= %$ %$ e= G* e= ^) G* k; ,- +) e= >~ ^) G* s{ l+ l; k! l; l; ;$ ;$ l; ;$ ;$ n+ h+ ;$ ;$ ;$ l+ ;$ n+ l+ l+ ;$ t+ s+ s+ r+ x% t+ s+ '$ w+ w+ M> u+ u+ w+ u+ w+ B+ B% B+ C+ B+ E+ B+ B% A+ A+ C+ B+ D+ E+ A+ A+ C+ E+ R& A+ O+ E% E+ C+ H+ L* Q+ Q& Q+ L+ S+ O+ R+ t{ T+ R+ P+ R+ R+ Y+ V+ T+ V+ G% m= U+ `; W+ V+ W+ @@ W+ W+ Z+ W+ X+ @ @@ :- +@ +@ %@ #@ %@ %@ *@ #@ &@ +@ -@ %@ %@ S> *@ C! p= &@ I% 4$ -@ )@ p= I% * * R% *@ u{ u= {@ }- )@ {@ ~@ R* |@ P* W% ^@ <@ ^; !@ 7@ X 7 ; ], ^, q, r, x, t, s, y, s, y, v, x, z, x, s, s, u, z, s, s, r, s, v, v, x, u, u, x, s, u, u, s, s, s, H) A, v, r, 8' u, t, s, H) ;> A@ ;! T' &. b# d# x@ z@ x@ &. ). A$ l> A@ 7# .. 7# x@ $% V @. E@ .= B$ V H 2# 1# L@ C, S J 2# P 2# O P@ S L@ A H M J 8* 1# S z ", +"* & . . . # V@ S$ S$ - ; | * V@ > |* # . > H= # & - N$ ^ ] ~ ~ ^ ^ %# ~ ; N$ N$ 7- N$ ) T- ) ~ # 2 { } ) { | R$ ] ~ 1 ) : W@ ~ { e W@ 2 X@ ~ /& $# } $# 6 } 7 +# e } } 7 6 7 $# { < } c | ~ ,# e *= e 7 D, k 8 6 k ~# [& s> 7 e 8 h ~# ~# 8 a e r `$ c o 0- `$ `$ n ^# r o c h Y$ h Y$ _# r 2; D D ^# G D 5* C ^# w z w I B H$ O@ M P@ A P@ 8* @% M J O@ H$ P@ P@ L@ ` P@ P 4# P |# H A S L L@ T T V 7# C$ L@ 4; Y D$ C, Y P H J 7# $. >. >. P +. 5# &. )= =. e- %. ;. .= -. &. )& &. A@ ). ;. &. ,& A@ -. x@ /. ~. ~. v{ {. {. d* w{ &% &% v@ `> u' P= e* {= P= {= x{ h# 1. P= d* 0, g# e# g# 8; h{ 0, 6. n# 7) g# g' a; g' @~ y{ m~ z{ c. A{ m~ {% {% {% Z- 8! Z- h. B{ Z- {% K! K! l* r) K! H, l* C{ 8) '{ p* h' I~ i& W' D{ p* E{ N) H~ p* j& [= t) m- A> A> A> :> y! a, a, 8~ O; 6% O; C> 0~ 6% |= M! O; O; ]' L. a% F# n{ n{ x' .- H# x' 1> .- 1> d; 1> d; 1> d; 1> d; d; 9) F{ s& s& d% ^' f; f; q- z& ]~ q- z& O! b) @; G{ H{ O! C' ;+ *+ @; I{ *+ @; ~) a= @; J{ #; S; <' K{ h! b= %, b= b= %, %, b= k' k' Y# c= %, k' b= c= f, d= B* w- %, >- ;- g, i; 7+ 6+ i! 7+ l' L{ e= K> ]) ^) e= i, e= e= >~ .) +) k; >~ e= s{ [! k; k; ,- M{ &, &, g+ j+ ;$ n+ ;$ ;$ ;$ l+ l+ h+ ;$ ;$ A- >$ n+ l+ n+ n+ l+ i= N> s+ y% r+ w+ t+ u+ u+ i= M> w+ N> i= i= j= B% k, A+ B% A+ B% B+ B% B% B% B% B+ B% B% A+ B+ C+ C+ F) C+ C+ N{ S& B+ E+ C+ O+ E% O+ a> Q+ P+ S+ O+ P+ S+ P+ L+ L+ R+ T+ Y+ R+ R+ T+ Y+ W+ Y+ V& .@ X+ W+ W+ W+ X+ `; _- H% O{ @@ @@ %@ %@ %@ +@ %@ +@ %@ &@ }$ %@ &@ J% V, * %@ p' =@ &@ >@ *@ (@ N% )@ ]@ * e> U% )@ I- R* b$ /@ b$ v= 9$ ^@ ^@ W% P{ X% x= a@ Y 6- T@ R@ *) ^, r, v, z, x, s, s, x, s, x, v, s, s, =) u, y, z, s, 6' x, u, u, y, y, y, y, y, z, u, y, x, H) x, x, x, v, s, u, u, x, s, ] $% {. !. '. ). z@ '. b# ). *. %. 5# A@ *. =. G! x@ +. .. .= =. 5# H P T Y H P D$ Y H L@ H ` S H$ ` S J ` H$ K@ P@ A z O I ", +"1* > ]& % !, & $ # # ]& ^ | L$ . ; $= ; & ; | | H= > > |* H= ~ ; $= U$ ~ ~ 2 N$ N$ | & U$ { 2 { ) ^ $# W@ { ) { / U$ /& %# N$ [ ~ $# { } $# # ## d ( { Y@ / < Y@ b / 7 [ < 6 0 6- 7 1 [ 8 -# 8 $# V$ b c e $# ~# 3* 8 &# ,# j 0 g a 6! L= s> 8 i [& 7 n 9- t' n n h w Z$ r n c o p _# c{ Q{ Z$ r h /# :# M {& 4* D C w w ^# F= C P@ P@ I M 3# N N N@ 1& N@ 3# Q@ 3& Q M N@ S O@ E$ H H K@ I S P T L@ O C$ V L@ L J P G$ C$ 1# U 7# V R 5# $% #. B$ A@ 7# )& V R{ 5# =. 4- F, ). *. &. e- (* !. A@ &. 5# ;. B@ ). a* H! D~ /. !. D~ 7, u> >' v@ ~. != 5& e' d# {= e* P= , {= P= , S{ , , j# a& g# k# T{ ., , n# n# f' 1{ v' q) ^= q) !! v' q) e. U{ @~ V' c. {% Z- {% Z- {% Z- h. h. K! g& g& V{ r) K! l* r) W{ g& i& p* h' W= I~ I~ l- H~ @, k{ l- H~ z. [= A> [= [= m- A> M; l{ )) q~ C> n& n& 6% ]! |= M~ u) z! {~ 6% E# {~ r~ b~ X{ c! F# b! H# H# H# 1> 1> ^' d; c! 1> d; d; t* 1> q- q- 9) 0) f; f; q- t* f; 9) q- Y{ (! z& *+ N! Z{ b) C' 7= *+ C' C' 7= *+ *+ `{ S# {{ /~ q{ <' Y# S; %, D' Y# %, k' /+ D' _~ `' %, %, %, ] _~ k' _~ %, ]{ 6+ k' 6+ i; e~ i! 5+ >- i! i; l' ]) K> K> l' l' e= e= G* G* G* ]) K> +) G* ^) k! k; e= G* u% G* .] .] U; )- k! l+ l+ l; ;$ l; l; n+ l+ ;$ ;$ >$ n+ f= l+ n+ >$ n' i= t+ t+ t+ s+ y% t+ i= u+ w+ y% '$ w+ u+ x+ i= k, A+ B+ B+ A+ A+ A+ R& A+ B! C+ C+ B+ B+ B+ B+ B+ C+ B% E+ Q& S& C+ E+ E+ M+ O+ O+ /- S+ R+ S+ Q+ L+ Q+ /- /$ Q+ Q+ R+ R+ R+ S+ Y+ V+ W+ Y+ @@ X+ .@ W+ W+ W+ @@ V& <$ H% @@ +@ +@ #@ #@ +@ #@ #@ +@ #@ @@ '; &@ $@ > p; J% =@ *@ -@ =@ >@ s= ]@ -@ '@ )@ R% 2$ 0$ R% 6$ T% !@ <@ V% !@ 0$ S* ]; J- W% W% f$ +] K@ Y@ & ^, 6' +' @] s, s, x, z, x, u, u, s, x, x, s, y, y, y, s, s, y, x, 7' y, u, u, y, y, u, x, y, z, z, u, z, u, s, u, s, u, 8' x, V! 5# B@ &. '& #> ;! A@ V> &. ). &. E@ $% =. e- .= h~ .= z$ z@ 7# Z V C$ 1# P |; J P@ |# Y E$ R H Y T +% K@ H$ L M I I )> S S S ", +"# # # # !, > - V@ + + = $ > > # ; > # V@ N$ ; & & Q$ ^& & R$ ; ] 2 %= 2 ] V@ 2 /& | Z! ; { [ ) ; *# d ~ 1 7- 2 W@ 2 ) ] 2 ~ & < 1 < ) a J= : | { 1 ;# 7 { $# $# &# d V$ 6 i < $# 7- &# 6 b a a 6 e 8 d ~# i &# 7 6 {# e L= a q> a n n n 0 c L= n o -) ;= % p q> p ~# r n Y$ l ;= c G p ^# #] C q D D M z Z$ w N /# F= J }# $] N E$ z I A N M T U E$ N w M@ D$ N x O@ T H T J M@ Y T X D$ 7# L@ P' W I@ Y #. 7# T C$ L 2# A@ E@ z$ W @. @. $% z$ ,= $% )& E@ )& A@ B$ >. z@ =. &. !. !. !. ;. B@ ;. b# /. '= '. =% ~. =% {. '= '= b# 6& Q= *% t@ *% P= ~= %] u' g{ '! , e# 9; 0, g# g# 0, e# f' 9; f' 6. k# 1{ 6. 6. a; a; !! @~ !! a; &] !! q) V' c. {% {% Z- h. h. h. Z- h. r) h. f. H, K! l* H, W' H, b; $~ (> (% (% W{ *] h' j& p~ E{ k{ N) N) [= [= [= m- m{ [> !' 0~ 0~ q~ q~ ]! z! 0~ 0~ C> |= |= O; {~ =] a~ Z) y' n{ a% c! y' y' c! x) H# ^' ^' ^' .- d; d; 1> d; d; 1> q- f; f; 0) q- q- f; d! -] ;] O! ^~ 0) +- v& H{ v& C' @; @; 7= *+ @; @; 7= `{ P! Q) f! Q~ <' D' <' R) 5> k' b= Y# %, %, _~ %, %, %, H& Y# _~ k' k' ]{ >] d= 6+ k' 6+ i; i! e~ l' i! ,] 7+ 7+ .) e= l' l' i, e= e= e= ^) u~ ]) ;~ ^) e= %$ u% %$ %$ ,- ^) G* .] '] g+ l+ ;$ l; l+ l+ ;$ l+ l+ l+ l+ ;$ l+ l+ l+ ;$ ;$ ;$ l! D) s+ y% t+ s+ A- g= t+ i= N> y% t+ u+ s+ w+ ]$ B% B- B% A+ B+ B% B% B! B- A+ A+ K* C+ A+ C+ A+ A+ D+ J+ B+ )] a> F) C+ F+ C- K+ O+ /- Q+ S+ P+ S+ L+ Q+ R+ E% R+ T+ S+ R+ R+ T+ R+ T+ _$ m= .@ X+ W+ Z+ X+ W+ @@ Z+ +@ _- :$ W+ @@ @@ +@ p; #@ %@ #@ +@ +@ >@ %@ &@ D- > !] %@ D- * 1$ -@ 4$ ^@ '@ G) .* R% 6$ N% S% ~@ (@ >, P* X% }- W% g> U% x= J' b$ X% i@ D *# $ i) q, r, q, x, s, s, t, y, t, x, u, s, s, |) x, x, x, z, u, u, x, s, z, u, s, s, y, z, A, v, x, x, u, x, z, x, x, s, s, s, x, x, q, B$ '. ;! A@ x@ ). (* =. =% x@ )& P )= z@ )& $% H@ &. .= 2# 2# @. U C$ L@ O R S P T D$ P C$ ` 2& +% J E$ S z I M J w @% ^# I ", +"$ # ]& > # > . $ + & ' S$ N$ - ^& = > R- & . # M$ Q$ # > . H= > ] | ; 2 { V@ { | ; [ ] ~ 1 $# ## Y@ ) `@ ~ ;# ] } ^ ] ! } 2 [ d J= { ) ~ 6 i W@ [ / Y@ : { *# &# } $# 6 8 } ## } [ } } c e $# == _ =# b a N' $# e a 0 -# e {# e ~# L= g c ,# 2, ~# [& o g n C; _# r `$ n h r 0 [& r r m `$ q m t w I G z z G I p ^# `$ w N J O A M x E; x I G M z 7* I Y Q@ I |# P@ P P d- E$ Y L@ E$ S J C$ G$ X d- U Y . z@ y@ #. E@ .. #. @. X +. #. =. )= .. E@ (* 0# )= ;. 5# &. )& =. &. 5# &. ). x@ v{ b# ,& S' z@ ,. 5# /. {. D~ '. +~ &% ~] |. &% w{ 7! {] 7& t@ P= f{ g{ -% '! h# s@ {= j# g# 0, 9; l~ l~ 9; 8. U' f' ]= ]= n# v' {> g' a; !! ]] w> a; @~ c. Z- {% K! Z- Z- K! h. ^] h. h. f. ^> h. F~ l* g& g& W' (% ,) '{ p* ,{ W= L! z> z. k{ E{ `- l- m- m- m- A> 0! L~ [> /] (] q~ 0~ M~ q~ C> z! O; ~' E# {' C> M! F# x' y' _] x' ]' H# !{ :] x) |> .- 1> ^' .- H# d; d; ^' q- <] F{ q- f; M, F{ 3{ z& q- 3{ ]~ ]~ (! f% [] y) y) ~{ C' C' *+ *+ *+ ~{ C' _! ~) `{ ~) _! Q~ j' -- b= S; /+ }] A) %, %, b= b= k' %, b= c= %, b= k' k' A* }+ k' -~ %, ]{ I& +! i! ;- >- g, .) .) l' L{ ]) l' i, e= G* G* %$ G* i, u~ ^) e= >~ 6> %$ G* f+ G* ^) &, /) 6> u% ;$ ;$ g+ l; l+ l+ ;$ ;$ l+ l; n+ l+ ;$ ;$ l+ l+ |] 2' y% t+ }! =, /{ t+ s+ '$ u+ '$ |! y% s+ u+ u+ w~ R, B+ B% A+ k, B+ B% B% B% B% B- B+ C+ A+ C+ B+ D+ J+ C+ C- O+ J+ C+ E+ M+ L+ L+ L+ a> /- P+ L+ E% E% /$ S+ R+ T+ T+ R+ R+ R+ V+ G% .@ `; W+ W+ W+ @@ @@ W+ X+ @@ @@ H% H% #@ @@ #@ +@ [$ &@ %@ #@ }$ }$ *@ &@ #@ =@ V, S> 1] *@ 2$ '@ I% >@ * )@ T% G) G) R% ^@ P* W% P* !@ !@ W% ^@ 4@ d$ 4@ d$ !@ /; |@ u@ C ] ], `, 6' 5' +' r, s, x, s, s, z, x, u, H) s, v, z, x, s, x, t, u, v, u, u, x, u, s, x, u, x, A, u, y, x, s, x, x, x, s, s, v, s, v, 6' 2& ^. ^. ,. !. (* &. !. A@ &. !. 4) A@ ,& >. &. 5# V> R V> E@ F; G@ E@ C$ R E@ E@ 2# 1# Y D$ 2# Y P@ }; H J P@ A z O@ Q@ G x I I ", +"]& [* V@ & . 0' > . = }, ; . > . ^& # . ; T@ # N$ - ; T@ - 1* | ; ' ] 2] { ) - ] Z! ; | | ) 2 ) ~ 2 & U$ { ( ~ ] 7 *# X@ ( ## ) W@ ## ;# ~ d ( / 1 ( ~ 2 4 3] N' d U- 7 6 7 -# 4 9 Y@ $# :& J= X$ &# 2 3* '# b a c{ i 9 -# a ,# c 0 a ~# e a r p 2, n h c f h h n p _# `$ X$ `$ ^# Y$ Z$ Y$ ,> `$ Z$ w G w G B `$ m {& ^# F= z N w N M D D z I I z F B P@ |# K@ m) ` 1& W |# E$ J E$ L@ H$ H L@ C$ M L@ C$ H C$ K@ 7# H 4# #. z$ 4# +. 4# 4# P B$ $% .= *. #. A@ ,. $% $% >. $. *. =. +. e- b# b# x@ &. .. x@ ;. &. &. D~ '. /. ~. ~. /. S' '= >' &% 3~ 4] 5] >& /* != `> e* ., ,% , P= P= s@ P= 0, e# P= l~ 9; I! 0, f# 9; g# f' f' 7) i{ j{ y{ ]= !! ]> #~ q) q) w> c. {% Z- K! h. K! Z- h. K! h. l* g& r) F~ l* l* W{ W' W' p* W' h' 6] I~ 7] l- L! p~ W= N) 8] A> [= A> A> m- ') 9] ') ') 0! 0~ 0~ ]! O; O; 6% {~ r~ z! { b~ F# Q; r~ D> =] ^! c! b! 0] a] ^' 1> .- d; d; 1> 1> d; 1> s& 9) ^' 9) f; q- ^' f; +- f; q- ]~ F{ s~ .; N! e, 7= 7= *+ *+ @{ @; C' G{ C' *+ @; `{ S# @{ B' ~) S; Y# <' <' b] D' b= %, %, k' k' %, %, k' d= k' %, k' ] _~ c] i! ]{ d= 6+ .) i! -~ l' d] g, 7+ 5+ ]) i, u~ .) R! e= ^) e= L{ ^) G* e= e= ^) 6> k! ^) +) k; ^) U; l; ;$ k; k! ;$ z- l; l+ l+ ;$ l+ l; l; ;$ @) ;$ A- l+ @) ;$ l! >$ y% y% A- V; s+ t+ s+ s+ t+ t+ s+ w+ w+ u+ z+ z+ B% B+ B% A+ B+ B+ A+ C+ A+ B+ A+ A+ C+ B+ B+ _) C+ A+ S& Q& #) E+ C+ E+ L+ O+ Q+ S+ L+ /- S+ /$ L+ Q+ R+ R+ R+ T+ T+ V+ V+ T+ T+ Z+ Y+ W+ V+ Z+ W+ W+ W+ X+ W+ @@ `+ Q> +@ #@ #@ +@ #@ *@ %@ %@ ~; }$ ~; D- > 1] &@ 4$ e] >@ 4$ >@ *@ >@ * .> R% ]@ s= ,@ * I- (@ * +* 9$ +* 4@ Q* !@ 9@ V% 2@ ^; X% '. c{ f] % z~ z~ =) s, s, 8' u, z, x, t, u, u, x, x, x, x, =) g] x, s, x, x, x, y, y, z, u, v, s, s, s, u, y, u, s, y, x, y, }) s, s, x, v, 6' N ). ~. = B= -. ). x@ &. )& L) ). 5# >. z@ -. (* =. (* ,= z@ )= B$ 2# 4# X R G@ 2# 2# Z ` M@ L@ +% K@ P ` Q@ P@ P@ H$ F= A w z x ", +"]& o! . $ > . S$ . ^ H= S$ Y! - ^ `@ > U@ + - - V@ | ; . % - N$ ^ 5- > + ^& U@ ] N$ ] N$ | | N$ | , | ) - ~ ~ | | %# ~ ## } $# X@ } : { _ ## & ## 6 X@ } } I= V$ } ( : $# [{ ># g b ( -# b 6 ~# ,# $# 7 a &# ~# c n a 7 =# g 0 o [& a L= ~# ~# e e Y$ o e a c C; n r h ~# ^# p ;= ;) r u h p `$ D p G w ^# w Z$ ,> G m M O@ N= G I C ^# I O@ L N P@ h] J J O U I 3& P@ T J J D$ T ` K@ H Y 3# ` Y I@ @. J .= I@ L z$ 5# 7# . C$ .= H V .= y@ +. 5; X +. x@ ;. *. 5# =. $. A@ $. ). A@ y@ '. b# a* !. S' +. &. '. !. H! {. {. !. D~ /. |. ~. =% 1~ 3~ +~ *% 9& d* k~ -% , P= , P= h# e# 0, e# j# '! 9; I! l~ f' k# ]= 9; 7) k# v' 1{ i] ^= !! j] Y~ h* q) V' e. Z- Z- Z- k] h. h. h. K! K! K! g& H, K! H, l* U= h' G~ ,{ p* l] m] W= ,{ l- l- k& W= l- [= A> z. m- m- A> ') n] ') 0! a, a, C> ]! |= H. q~ ]! 9~ r~ ^! Z) b~ F# 1> b~ b~ :] H# H# 1> o] d; d; .- 1> 1> 1> 1> d; .- 1> ^' d; 9) f; t* q- f; f; f; ]~ f; M, Y{ N! f% p] ~) 7= @; c) @; @; @; ~) C' C' C' @; _' C' C& @; q] l% Y# r] D' 5> D' %, Y# b= %, k' %, k' %, %, /+ %, %, k' s] g, 5+ _~ 5+ 7+ e~ g, #{ .) d] i! .) .) +! .) .) t] e= e= >~ ^) ^) K> %$ G* e= ^) k; ^) e= k; )- k! ;$ ;$ u] j+ ;$ |' g+ l+ @) l; l+ ;$ ;$ @) @) n+ M& ;$ n+ ;$ n+ l; y% t+ y% n+ x+ t+ '$ o+ i= s+ i= w+ u+ u+ x+ A% B+ B+ B% B+ B+ B% B+ A+ B+ B+ B% B% A+ B+ B+ B% B+ A+ ;; S& E% L+ E+ E+ M+ O+ P+ O+ E% L+ /- Q+ Q+ L+ S+ T+ S+ V+ R+ T+ T+ R+ (- V+ V+ W+ .@ V& Z+ W+ W+ @@ Z+ @@ @@ M* v] +@ +@ +@ Z& #@ @@ %@ #@ &@ U, w] x] > %@ >@ $@ =@ *@ 4$ -@ -@ )@ !; S% R% * R% ]@ * U> * T% }@ ^@ {; W% P{ P{ 3@ P{ W% y] 5# h > + ^, 6' v, s, y, t, u, u, x, t, z, s, u, x, u, x, s, v, =) y, u, s, x, y, x, u, x, s, y, x, s, x, u, y, s, s, s, v, z, s, x, x, H) v, `$ !. -. {. x@ A@ {. B@ ). d# C@ 4- A@ 5# #. E@ +. 4& E@ X T E@ H@ J E@ R )= }; J Y P #. H M@ S M P@ H Z J z H }# K@ 1& I H$ ", +"]& H= !, R@ V@ # # $ # & z] ; . Q$ V@ & > > . V@ R@ - *' }* - > ; ; > ^& ] U$ . & X@ | P$ | ) 4 2 *# R$ & 2 ~ > ~ 2 | { &# 2 / /& [ ] +# J= 1 { ~ ( ~ W@ } , 6 9 -> == $# $# 7 q> ~# a 6 7 /& == e e 8 $# 7 6 e 7 8 &# [{ g g ,# Y> , 8 e 8 a a K= a ~# ~# !# 6 c o 2; p 4* r p ~# s K= h o 0- m D p `$ ^# y u `$ D B N w z 5* z D Q@ 2; W) s D A O@ L J T O@ O E$ |# O E$ J A P O T H T s! J C$ X J L D$ H D$ Y Z 7# C$ D$ y@ ,= E@ P A@ +. E@ 8# C$ @. E@ A@ Q' A@ ,. +. z@ 5; !. =. 9# *. x@ ;. b# ). ,. %% {. [. T' ^. &% {. /. /. ^. &% 3~ 3~ &% |. A] 3~ -{ >' -% P= 7! , '! , a& j# '! j# '! g# ;% ., j# n# n# f' ]= f' 7) y{ ^= {> ]= a; /= Y~ !! w> Z- Z- {% {% {% K! l* Z- Z- h. B] f. g& K! K! H, l* l* H, H, W= ,{ )' p* I~ W= h' z> @, H~ z. z. m- A> A> N) A> ') [= C] l{ ') t) 0~ ]! q~ 0~ 9~ 9~ { {~ O; =] =] S. =] x' r~ H# H# H# H# .- .- d; !{ d; d; .- d; 9) ^' d; ^' ^' t* f; q- 0) q- q- Z{ ]~ O~ f; Y{ ^~ D] *+ *+ v& E] y) C' @; F] b) *+ *+ b) P! ~) 7= P~ d~ W# b= d~ R) b= G] %, Y# b= %, Y# %, b= %, %, %, k' /+ %, .! B* 1+ c] 2+ 7+ g, g, .) .) g, 6+ -~ ]) i, K> .) l' ^) e= ^) G* ^) R! G* >~ e= e= ,- %$ e= |' g+ 6> /) 5{ /) j+ ;$ |' &, |' l+ ;$ l; l; ;$ L> l; l; C) ;$ >$ ;$ l+ n+ y% t+ }! r+ x% y% t+ w+ x+ w+ o+ u+ w+ u+ i= ]$ B% k, B+ B+ B% A+ B+ A+ C+ A+ B% B+ B+ A+ A+ A+ A+ ^$ ;; C+ E% L+ k= A+ C+ k= O+ E% O+ P+ P+ C- M+ Q+ R+ S+ S+ /$ S+ V+ Y+ Y+ V+ R+ X+ W+ X+ X+ V+ V+ @@ X+ Y+ X+ @@ <$ &@ &@ +@ +@ Z& +@ %@ +@ +@ %@ &@ e] *@ W, &@ *@ 7$ !; *@ *@ *@ -@ `& `& Q% s= T% R% R* +> ~@ 9$ (@ V% :@ H] }@ b$ b$ 1@ 9@ R* |@ 4# e & ], z~ q, q, s, s, x, s, =) x, u, v, t, s, s, s, H) x, s, s, x, y, s, x, s, u, u, x, z, x, s, y, x, |) u, A, s, v, q, s, s, x, s, H) 6' I] {. !. &. z@ ;. ). '. &. -. =. -. z@ z$ 7# -. z@ A@ (* 7# G@ 5# 5# E@ R +. X C$ H@ 1# P@ L@ P@ O S I I H Z N J H$ N= A G b- G ", +"V@ k) ]& R@ * + $ & # & # N$ ; N$ $ + > + !, # > ; ; H= X@ %= U@ > & h) `@ ^ - $= & U@ %= ; | [ 2 ~ - | { ) S$ ) | 2 2 [ /& [ 8 < # ## W@ | %= ~ | { } *# &# 4 ( 6 ( } ) V$ i &# 7 J] 2* q> /& 8 6 i ~# e b 8 g 6 8 e q> 2* 1 K] e X$ 8 e 0 ~# h i n Y$ ,# e o h r `$ r 0 ~# Y$ n Z$ c r 6* o )> N ^# ^# `$ Z$ G z z N I t /# w G A w /# A I N D N Q@ P@ Q@ T H E$ L@ S 8* J H H$ E$ P@ L@ E$ P X O@ P@ X L@ P X 7# T 4# E@ .= Q' z$ z$ R' A@ . )= #. z$ +. O= (* e- G@ !> )& )& A@ &. 5# 9# H! '. b# 7, o) x@ '. 6, '. 0# '. ~. =% &% w{ ~. 5& 6& '= +~ /* 8& e* L] {] M] *% P= , '! P= , e# '! '! , 8; g# 9; ;% g# k# k# 7) k# y{ 1{ i{ i{ {> @~ !! V' N] j{ B{ Z- Z- K! K! K! g& {% c. h. Z- g& g& l* r) l* F~ W' W' W{ b; `~ I~ h' 8) p* l- l- [= L! {! [= O] m- m- A> m- A> L~ m{ m- A> P] 9% ]! 9~ =] n{ O; O; {~ ^! H. r~ Q] =] M! b! b! .- .- H# H# R] d; d; H# .- 1> 2{ 9) ^' 9) 9) ^' q- q- t* e; ;] f; ]~ f; f; 3{ 3{ S] ]~ ~{ z) &~ T] O! @; @; @; @; @; C' C' I{ C' U] c~ V] W] r{ _' h! <' 5> l% k' _~ _~ _~ k' k' b= k' _~ %, k' ] :~ _~ X] i! d= Y] ^{ g, +! ]) +! g, ]) ]) ]) ,] .) .) ;~ ^) R! >~ e= e= i, k; ^) e= @! k! e= ^) k; 6> e= .] Z] l; k! l; ;$ l+ l; l; ;$ @) ;$ @) l; l+ l; l; ;$ n+ l+ l+ A- |! |! >$ 2' i= |! t+ i= i= s+ w+ w+ u+ w+ k, A+ B% w~ B% B% B+ B% B+ B+ B+ `] A+ B+ E+ A+ A+ A+ B+ B+ B+ B+ Q& ^ C+ D+ ^$ P> L+ L+ O+ R+ /- O+ G% /$ T+ R+ T+ Y+ /$ R+ T+ t{ T+ T+ Y+ .^ V+ Y+ Y+ X+ W+ W+ Z+ @@ `; X& f~ +@ W+ +@ +^ @^ +^ +@ +@ +^ w] !] %@ &@ w] > w] S> -@ 7$ u{ C! W, '@ '@ (@ 5$ R% ~@ ,@ <@ +* /@ !@ 9$ }- [@ }@ S* :@ /; a@ 2# 6 > R@ 2! q, q, s, r, v, |) x, y, z, y, s, s, v, x, s, r, r, v, s, t, z, 8' x, x, s, u, x, s, s, t, v, t, u, z, u, s, r, x, s, s, r, v, v, @# A@ x@ '. x@ ^. A@ {. ). x@ ). !. ). ;. -. -. ;. I@ 9* +. (* $. z@ C$ H L@ L@ Z X H@ M L' P J C, }; P@ J J Q@ M M z I 2& P@ {& ", +"$ + R@ R@ ]& # #^ . > > =' S$ $ ]& k) ] - $ `@ V@ |* > * Q$ - ] & > ; ; Z, ] - U$ < | { [ ] %= ~ ~ Z@ ] | { | 9 ^ < [ { W@ X@ W@ ) +# ^ / $# N$ &= } 1 &# ( } *# 3* $# a 7 9 &# a' &# : -# $# 7 [ ## { e 8 7 6 b 7 7 e 7 ( a c a 6! 8 b n L= a' g c L= 2, h 9- X$ ~# F! h r L= r % e h h ^# p Y$ y G t ^# @= w w C N G z m F= 4* ^# G G I O@ K@ A %> I Q@ E$ L K@ J |# E$ M N |# L J J S L@ D$ P@ T I@ J T @. B$ X S 2# W }; ,= +. 4# z$ !> +. )= E@ =. >. >. . ). >. !. $% .. *. $% #. x@ &. 5# 5; !. b# '= '= ). x@ {. b# %% ). 5; 3~ 3~ {. 5; +~ ^. ^. '& $^ 1. d* P= ,% e* P= {= {= , '! , , 6) j# 8; U' 9; 6) f' ]= n# y{ 7) %^ y{ !! f' !! !! ^= i* {> !! (= c. h. Z- Z- {% h. {% r) r) r) K! g& l* r) l* r) H, W' H, H, D{ &^ h' )' *^ W= H~ N) A> {! A> A> A> m- A> A> 0! A> ') 0! 0! )) H. 0~ )) )) =] { {~ Z) n{ {~ |= =^ Q] -^ v) y' ;^ >^ c! .- a] .- 1> .- ^' 1> !{ 1> 1> 9) t* ^' ^' q- f; (! f; f; ;] f; Z{ f; f; N! s~ ;] ^~ ,^ H{ O! z) C' @; C' @; C' C' C' C' ~) I{ =~ `{ W# D' d~ '^ r{ %, b= %, k' A) k' %, k' _~ %, %, _~ k' :~ ] w- 1+ s] B* )^ -~ e~ .) >- g, >- l' .) !^ R! l' .) ^) ^) G* ^) e= i, ~^ +) e= e= 6> >~ ^) e= ,- e= }' &, @) )- @) @) ;$ l+ ;$ ;$ ;$ l; l+ l+ l; @) ;$ ;$ n+ l+ l+ l+ A- }! }! y% u+ t+ t+ w+ h= V; t+ s+ i= w+ x+ B% B% B+ B- B% `] {^ A% B+ A+ C+ B+ B% B% A+ B+ C+ E+ E+ E+ A+ O+ M+ C+ D+ 0> P+ L+ O+ O+ R+ S+ Q+ L+ L+ S+ T+ V+ V+ V+ F% T+ V+ Y+ Y+ Z+ _$ T+ .@ Z+ +@ @@ @@ @@ W+ @@ M* H% +@ +@ #@ ;@ +^ $@ %@ &@ p' %@ p' !] !] U, p= 7$ =@ &@ =@ )@ 5$ ,@ S% ~@ '@ r= 7$ R% I- 9$ ^@ |- !@ !@ }- P* W% h> +* |@ 7@ N 7 > ]^ ], *) q, s, s, s, x, z, z, x, x, s, s, s, }) x, #' x, x, A, v, x, s, s, s, x, y, z, u, x, x, s, s, s, s, v, y, u, |) x, s, 6' r, w, ,, 4- &. '& 5# !. ). B$ V> e- >. C@ =. 5# z$ +. !. A@ 5# E@ B$ (* .. F@ 5# 5# C$ H T P L@ L@ X J M 3# Y Z H A Q@ S 8* I M@ P@ I ", +"] > X! # . H= . > = S$ ; ; + . - ; ] | ; S$ # > & ; ; ; ^ [ ^ - ) > %= ; ] 2 | U@ N$ ~ > S$ `@ ^ ( 2 { $# < { J] / W@ / ## { 1 / ) 4 } $# / [ 6 /& Y@ Y> 4 { 4 $# / 7 } W@ 7 $# e 7 d a 7 6 ,# b V$ ) V- } $# 7 0 e a i {# $# b a L= ~# c ~# n p c n h n Q{ `$ m w _# p Y$ n /# 1; Y$ % G :# w `$ G O@ z G w G z ^# w G b' w I [# G E; M A h] E$ Y A J J P@ P@ A T T :* L@ I@ L@ L U P T D$ R I@ D$ I@ Q@ L L@ 1# L@ )= Q' +. ,. @. 5# A@ $% >. +. X (* #. 6# &. 6# >. z$ +. ). *. >. ,. !. -. =% %' b# %% 3~ /. ;. ~. &% &% {. {. ). /. =% 1~ ^. ^^ *% 9& 6& 9, -% P= '! P= , 0, g# '! I! e# 0, ., g# T{ ., ;% ^= {> @~ 1{ g' ^= !! i{ !! !! i* &] !! ^= (= Z- {% Z- Z- Z- Z- h. h. h. h. K! g& l* l* r) l* H, W' U= (> G~ ,{ /^ l- l- H~ `- [= p~ m- m- ') m- ') z. Z= q~ )) <> 0~ 0! X' M~ ]! 9~ {~ ]! M~ 9~ 0~ {~ {~ (^ r~ -^ v) F# n{ :] v) _^ 0] b! F# H# 1> 1> ^' ^' d; 9) f; F{ ^' F{ f; 0) f% F{ :^ ]~ ]~ f; ;] ^~ ^~ 3{ Y{ z) f; <^ ~) ~) @; ~) C' ~) C' @; C' P! ~) {{ I{ l% r{ R) V] r{ b= %, b= b= [^ k' k' b= %, u- %, k' b= k' %, X] i! -~ ]{ }^ i! g, i! .) 6+ 5+ l' l' K> !^ l' ]) G* e= G* G* e= R! i, ,- e= >~ M{ k; G* ^) G* G* ^) v~ |^ 6> k! ;$ ;$ l; l+ l; ;$ l; @) l+ ;$ ;$ l+ @) l+ )- ;$ l+ ;$ |! y% |! h= t+ s+ u+ u+ w+ s+ i= u+ u+ w+ ]$ A+ B+ 1^ B+ B+ B- B% B+ B% A% B- A+ B+ C+ B+ A+ A+ E+ E+ C+ S& L* T, C+ D+ E% /- Q+ L+ /- P+ R+ Q+ Q+ O+ S+ V+ V+ R+ T+ T+ V+ T+ Y+ Y+ Y+ Z+ @@ @@ @@ W+ .@ @@ #@ W+ W+ @^ #@ #@ +@ #@ %@ &@ #@ &@ %@ &@ %@ f~ C! -@ U, )@ '@ 1$ W, q= S% 5$ r= )@ ]@ 6$ 5$ N% N* 5$ {@ ^@ W% ^@ ^@ b$ @> f$ J' 3@ m@ G 6 1) 2^ z~ 5' ^, v, =) H) y, u, s, y, t, x, s, 6' |) v, s, s, z, x, z, z, x, s, s, u, z, s, s, v, x, s, x, x, x, H) y, s, A, x, s, x, s, 6' ), #. A@ ^. d# A@ A@ l> %% B$ !. -. -. !. 3^ &. B$ 5# A@ A@ B$ 4- A@ B$ .= G@ L@ P Y V X P@ P@ L@ T O E$ S P@ P@ x P@ E$ z P@ I A ", +"+ > R@ $ T@ $ # > # ; S$ > + !, > U$ > ; 5- > V@ & ^& V@ V@ - & $= |* ] Q$ U@ U$ { ] & > ] ) ; ; | ] 6 ( ) ;# { b{ ## $# { | [ T- 2 *# W@ +# ) ## ) [ [ } { W@ / ( / < } b :& $# $# 2* 7 7 ~# ,# a b j o [ D, | $# a e a ( 7 c i 7 J] e n ,> n j n s> Q{ Y$ % Y$ g c n 9- h `$ p m m w w o _# ^# s y Y$ 2; D C K C w C ^# ^# G I I F= N t N A I |# E$ |# P@ L@ |# n> E$ T A O T z; M O I@ J T P S z; L@ L P@ P E@ P z$ #. ,= I@ #. $% I@ .= 5# =. z@ z$ 2# Q' ;. ]. v{ &. &. A@ !. 5; +. C@ !. ). p, b# ). X) '= !. b# D~ D~ x@ &. '. {. /. 3~ ~. %% b* v! &% 4^ >' e' 1. 5^ -% A] 6^ 7^ X- , , '! '! 9; f' j# 6^ 8^ g' f' 7) a; ^= 9^ a; y{ j{ y{ m~ 8! w> m~ 8! 8! {% {% )! {% h. K! Z- 0^ K! K! H, g& l* r) H, W{ ,{ F~ s) (> b; W= W= 6] l- l- p~ O] 8] A> m- [= m- m- A> L~ t) K~ 0~ 0~ l{ |= 0~ ]! 0~ 9~ C> {~ ]' 1= ^! {~ Q] (^ Q] =] c! N~ R] !{ H# a^ H# 1> ^' 1> ^' d; d; 9) ^' d; d; b^ t* ]~ f; ]~ f; f; q- f; ]~ F{ N! e! Y{ 7= 7= S] ,^ C' C' C' C' @; *+ C' @; 4{ P! =~ ~) P! A* %, d~ V] %, A) %, k' b= %, %, k' %, %, ]{ _~ k' 2+ _~ _~ >- g, w- k' j! i! +! 7+ l' >- i! .) ]) !^ c^ .) l' u~ ;~ e= e= ^) R! ^) ^) G* ,- )- ,- >~ k; ^) >~ e= @) ;$ k! ;$ |^ n+ @) ;$ @) l; l+ l; l+ l; ;$ )- ;$ ;$ ;$ ;$ ;$ y% t+ t+ 2' {$ t+ t+ w+ w+ i= s+ w+ u+ w+ u+ k, B+ B+ B+ B- ]$ B% B% B% B% B+ A+ A+ A+ B+ B+ B% C+ A+ M+ M+ E% M+ C+ E+ M+ L+ /- L+ O+ P+ S+ R+ O+ /$ L+ T+ R+ V+ R+ V+ V+ Y+ V+ F% f) Y+ @@ X+ Z+ [$ +@ Y+ W+ f) :- <$ @@ d^ W+ @@ +@ <- #@ +@ %@ }$ ~; *@ I% W, *@ D- >@ e> *@ [- (@ (@ q= R% '@ R% 5$ V% T% {; }- {@ 9$ b$ d$ !@ }@ f$ X% |@ q@ % *# V! R@ `, [) +' s, v, x, x, s, x, z, 6' s, s, x, s, s, x, u, u, y, y, u, y, y, x, x, y, u, r, [) s, q, u, r, v, u, z, s, x, u, s, x, v, 5' e^ D@ &. x@ /. /* =. ,& F@ A@ (* 5# 5# x@ 0# 7# B$ .= _* @. ,= R 9* z$ G@ R C$ V H L@ T S G@ P@ |; P@ S A N M@ M@ +% M Q@ Q@ b- A ", +"+ V@ ]& ]& # ; > V@ + # . # $ $ . S$ S$ ] ] - + V@ - 2 ; N$ ; > ] ) ] ~ A; { & . H= ; | ) X@ ~ ; ## { X@ | d [ ^ ] [ ## N$ ] # [ , { < ,# { W@ / ( e [ X@ $# ( ,# &# 7 b $# _ } a } b e ># ># 7 b 8 ~# 6! i g o 3* 7 q> } g ># e [& c s> n Y$ 0 8 Y$ s> c{ ~# h c ;= n ^# `$ t ^# 4* m C p (# p ,> ^# D D w ^# m f^ ;) N I Z$ w I N #= D C P@ A 8* M E$ T #= C$ U H$ P@ z J J L@ T Y I C$ 4# J #. z; T L@ P 0* M@ I@ H@ D$ #% 4# C$ 5# Q' [, . 6# 5# 5# . $% ;' . &. )& R #. ;. A@ . !. !. !. ). )& (* /. =% x@ b# T' =% =% %% ,& /. &% ~. &% D~ >' 9& /. v@ ~] |. k~ 2~ {] g^ ~= _. P= 6^ P= e# '! I! '! g# f' l~ 6) h{ f' ]= n# 7) f' ]= {> A{ 1{ j{ @~ A{ 8! q) A{ 8! Z- h. Z- {% Z- h. h. h. h. r) H, l* H, V{ H, V{ 8) H, /% *^ `~ /^ W= *^ *^ H~ 8] @, {! ~! A> m- [= ') ') ') m{ <> ]! 0~ m{ q~ 0~ ]! M~ ]! ]! 0~ 9~ =] 9~ 6% 9~ M! =] Q] R] a] b! v) 1> /! _^ 1> 9) .- H# d; 9) 1> 9) q- q- 9) F{ :^ q- f; ]~ ]~ ]~ ;] q- ;] (! N! P) y) @; ,^ y) @; @; C' C' @; ~) h^ @{ C' `{ i^ /~ @{ Q~ b= l% q{ Y# b] j^ %, %, k' %, k' _~ _~ b= %, :~ _~ k' f, w- -~ e~ s] d= i! >- i; t] g, g, ]) k^ u~ ^) t] .) u~ l^ l^ G* e= e= ^) e= ^) >~ k; k! ^) e= e= G* ^) ;$ l; l; l; l+ l; l; ;$ l+ l+ @) ;$ ;$ @) ;$ ;$ l; ;$ l+ l+ ;$ >$ |! y% >$ W; y% t+ t+ i= w+ t+ N> w+ u+ w+ j= B% B% m^ B- B- B% B+ A+ A+ B+ B+ B% A+ B+ B+ B+ D+ A+ B+ M+ E% O+ F+ A% E+ O+ L+ Q+ ^ P+ T+ S+ G% L+ T+ R+ R+ R+ T+ Q+ V+ T+ T+ Y+ _$ V+ @@ W+ Z+ W+ +@ W+ @@ Z+ @@ W+ q; +@ #@ &@ +@ %@ &@ #@ #@ #@ *@ &@ ~; =@ >@ =@ 5$ 2$ >@ e] Q% =@ '@ M% R% R% O% a$ !@ R% R% ,@ 9$ g> f$ }@ 8$ }@ !@ !@ w$ r ~ + *) 5' [) v, x, v, x, s, v, u, u, s, s, -! s, u, y, z, y, v, =) x, v, s, x, s, s, s, u, 8' u, s, x, u, t, H) s, s, }) s, H) r, x, =) v, s, N 5# {. !. ,& 0# {. x@ '. ;. x@ &. &. %. 9* B$ *. A@ E@ A@ B$ #. .= X $> D$ O Y S J M@ T H$ J@ T +% a- P@ A %> B, N A N Q@ I ", +"+ + !, & # & Q$ $ > * & ' ; $ * * ; $= U@ }* - ; S$ N$ > . > & ; | - - ]& ^& [ | (& ; U@ ] N$ N$ 8- ~ ] ) - { N$ < 4 } 2 [ 1 [ [ ) 4 ~ 2 ~ $# 6 @# / 2 ## d { d $# 0 8 $# < a 7 7 ## j $# 0 V$ V$ 6 V$ '# '# e a c j 7 0 ,# 7 0 e ~# o ~# e |& o ^# ,> Z$ o n t' Y$ n^ h h c t' ,! n D r m 4* p I m Z$ 4* Z$ ^# o^ x C G D z I I {& C C #= z N J S A E$ H H |# J J L O@ M O H L@ J P I@ 3& O J d- X U d- G@ T E@ +. E@ T =. G$ $% A@ .. z$ W }; $% %. +. &. G! Q' 5# ;. ,. 9# b# *. 4- F, !. F, ). 7, C@ b# !. %% {. /. 1~ ^. &% ^^ 3~ D~ |. 6& -{ 3~ p^ >' k~ q^ r^ p^ P= P= A] , , ~= 9; , 9; 9; 7) h{ 6) ., f' 6. f' @~ s^ y{ y{ a; i{ y{ q) m~ #~ i* !! &] B{ c. h. h. r) Z- 8! Z- h. h. h. W' r) F~ 0^ F~ s) W{ I~ )' h' h' W= H~ *^ l- t^ z. O] H~ @, p~ m- m- [= m- 7~ |= q~ 0~ <> /] 9~ 0~ O; 6% ]! 0~ ]! ]! ]! z! 9~ x' Z) N~ a] u^ v^ d; b! :] o] w^ 1> 1> ^' .- d; d; 9) f; F{ ^' Z{ ;] f; ]~ ;] ]~ ;] ;] ]~ ^~ s~ x^ e! C' S] y) O! ~{ *+ *+ @; ~) ~) ~) C' C' P! ~) Q) y^ z^ k' %, d~ A) b] A) k' k' A) b= %, k' k' %, k' k' %, b= A^ ]{ ]{ g, 6+ s] .) i; e~ t] #{ e~ -~ t] 7+ ]) u~ t] u~ e= ^) G* ^) e= R! k; k; ^) >~ k! ^) ^) ^) ^) ^) l; l; l; )- @) ;$ l+ @) l+ |' |' |' l+ l; l+ l; l+ l+ l+ l+ n+ B^ n' s+ D) O& D) t+ s+ h= i= '$ s+ y% i= w+ '$ B% {^ R, () B- B% B+ B+ C+ C+ B% B% E+ A+ C+ E+ A+ 0> T, E+ M+ E% E% C+ D+ M+ O+ O+ Q+ Q+ P+ P+ E% Q+ Q+ R+ T+ R+ T+ T+ Y+ V+ F% T+ T+ Y+ U+ X+ +@ Z+ Z+ @@ @@ p; @@ #@ @^ X& d^ #@ &@ %@ +@ %@ %@ $@ <- V, =@ *@ *@ >@ > C^ I% *@ q' * r; >@ (@ ,@ 5$ R% N% * /@ W% !@ P* 8$ /@ c$ :@ (; !@ E@ o ~ # V! g] x, r, s, 8' v, z, s, H) z, H) x, z, =) s, s, x, s, v, s, s, s, z, z, s, s, s, s, v, s, 7' z, s, v, s, s, s, 8' v, t, @] 5' }) v, v, D^ x@ /. {. '. &. e- ;. ). &. =. )& ,= =. 5# 5# z@ ,. .= 5# z@ .= z@ z@ 2# J@ E$ Y H E$ L@ H P J A I P@ z M A M H M A I )> ", +"Z, + # > = & > = . T@ & $ $ $ . & > | ] & > . ' > . # > & ; ] . . & Q$ ] | | ~ | ( ; ; W@ { ~ ] ^ Y@ Y@ [ { [ ## 2 6 ) ) } 4 < $# d 4 < 6 } ) W@ -# 7 d 6 Y> } D, &# $# { $# 6 ,# : 7 ,# 7 &# c V$ 8 a 7 g ~# e 6 } V$ a 0 c L= h h e L= l !# W$ [& c c{ p ~# ]# r K= K= s n g c{ Y$ w 4* % ^# Z$ {& z w O@ H$ z t N z I G C z I A M M Q@ 8* S P@ H H$ L H E$ 3# I D$ O P@ P T T y@ T 4# E@ 4# @. E^ 7# L@ G@ .= R P H 4& .= W .= O= P ,= . e- *. 5# A@ ,= &. 5; 5# F^ 9# !. 0# &. z@ b# {. /. X) 6# %% !. =% %% '. /. &% 3~ &% /. G^ |. 3~ 6& ~. /* g- P= p^ =% 4] e* , ~= g{ , '! j# j# e# 0, I! g# T{ 6) k# 9; a; 1{ 1{ y{ 7) ]= ^= y{ y{ H^ A{ i] N] A{ {% Z- B{ K! K! K! f. K! K! r) r) H, H, ,) r) V{ F~ V{ C{ s) h' '{ l- H~ 7] W= H~ k{ ') H~ {! [= 0! A> I^ ') m- ') ') ') l{ l{ 8~ K, 6% ]! { 9~ =] =] 9~ =] Q] Q] =] Q] b~ Q] /! }> %~ w^ N~ d; 1> 1> d; 9) ^' 1> ^' 9) J^ Z{ ;] f; ;] f; [] ;] ]~ ]~ ]~ O~ ;] K^ H{ O! C' @; G{ C' *+ *+ 7= C' ~) *+ C' C' V] L^ M^ c~ @{ r] A) K{ j' b] b] A) f, %, j^ %, %, b= %, %, k' _~ k' s] k' w- g, X] ] s] g, e~ ]) l' e~ N^ l' t] -~ G* .) ]) i, e= ^) G* ^) ^) G* G* >~ ^) k; k; ^) e= 6> ,- v~ O^ P^ )- l+ ;$ ;$ ;$ l; l; ;$ |' /) l; l+ ;$ l+ ;$ )- l+ l+ |! t+ y% |! t+ t+ s+ s+ s+ i= u+ y% t+ w+ u+ N> N> R, m; {^ S, B% B% B+ ]$ B+ B+ A+ B+ C+ E+ D+ B% E+ C+ A+ A+ O+ E% C+ C+ l= Q^ E% L+ /$ P+ P+ L+ /$ L+ R+ R+ T+ V+ R+ V+ V+ X+ T+ V+ Y+ .@ +@ Z+ @@ @@ W+ @@ +@ _$ +@ @@ c> @@ #@ %@ +@ #@ %@ =@ &@ p; o= R^ [- %@ *@ `& $@ C! * q= )@ 1$ ]@ o= 5$ R% r= }@ N% /@ v; b$ {@ d$ /@ b$ }@ W% 6@ P h ) R@ g~ ^, v, r, s, s, s, s, =) v, u, v, s, s, r, v, x, s, v, x, s, x, v, v, v, v, s, s, s, s, s, s, +' 6' r, s, s, s, s, r, s, s, H) x, +' ^, K= &. {. (. !. ,& ;. ). v{ x@ 5# !. 5# !. )& +. +. 5# [, A@ A@ z$ z@ ` D$ z$ P H P S M@ M@ J L@ H +% K@ Q@ M@ :* @% P@ +% G I I ", +"R@ 5- - T@ Q$ + % V@ + [* $ Q$ . > $ ' N$ ^& N$ 1* N$ U@ %= N$ & ; X@ ] ~ ; ] > ~ - > ] / { | 2 J) 2 { { { | | ~ ) W@ V~ [ $# ] U$ ) | -> ## ) / < *# { / ) < { *# *# 1 / b | : < U- ( : $# == $# &# d } 7 7 7 ## 6 e e 9 } 7 6 F! n a c 0 n C; 6 S^ `$ p 6! (# e C; n o `$ 9- ~# p r ^# c g j /# F= m ^# F= m 1; I ^# x O@ C {& F= %> D Z$ E O@ I E$ G :# O@ I J 3# A M@ E$ P@ Y E$ J O T^ P@ T 4# X L L@ Y C$ U^ B$ L@ P 1# C$ X @. 4# 7# 4) ,. ;. +. O= 5# L@ ;. =. A@ 5# )& B$ +. &. =. *. ). )& 0# &. 5; V -. A@ V^ {. %% 1~ '= '= '= &% 3~ {. 7, d* 3~ W^ &% &% -' e' $^ 7! H; 7! k~ P= , -% , P= j# 9; P= 0, '! l~ l~ X^ 0, f' {> 7) n# ]= ^= q) q) y{ y{ y{ m~ j{ q) N] ]> {% {% h. h. h. K! F~ Z- K! K! l* g& W' V{ H, V{ '{ (% '{ C{ H, Y^ H~ H~ p* o~ l- A> 8] 8] @, [= 0! A> A> A> A> ') 9] <> <> q~ 6% 9~ ]! =] 9~ =] =] =] =] =^ Q] Q] b! x' {' x' ;^ x) x) /! d; ^' .- d; d; d; ^' d; d; ]~ F{ 9) Z{ ]~ f; (! ;] f; ;] Z^ ;] `^ ;] N! x^ v& @; @; *+ C' @; *+ *+ C' @; @; C' C' 7= 7= Q) @{ V] / <' d~ b] {{ D' Y# k' k' Y# k' _~ _~ k' k' %, k' _~ _~ B* >- w- %, d= g, i! >- .) >- g, l' >- ]) ./ .) .) .) e= l^ e= ;~ >~ ^) G* e= ^) e= )- e= G* 6> ,- &, .] /) @) ;$ l; l; l; @) l+ ;$ ;$ ;$ ;$ |^ ;$ l+ ;$ l; l; l+ ;$ y% t+ y% t+ h= s+ t+ t+ i= t+ t+ u+ w+ i= i= w+ ]$ K* +/ E+ B+ B+ C+ A% B+ A+ C+ B+ J+ B+ B+ A+ C+ R& ^$ ^$ M+ Q& C+ D+ E+ >; O+ O+ O+ L+ P+ P+ Q+ L+ O+ R+ S+ V+ V+ Q+ V+ X+ T+ _$ @/ V+ Z+ @@ W+ W+ W+ @@ @@ @@ +@ [$ #/ %) @@ #@ #@ #@ %@ }$ %@ > Z& =@ V, %@ '@ p= >@ Q% *@ $/ '@ L% )@ /@ T% R% )@ (@ H- |~ 0$ ~@ 9$ /@ 9$ }@ W% |@ +] H@ a & + g~ [) 6' %{ r, 8' s, s, v, }) s, s, s, s, z, x, s, x, s, 6' 6' v, }) =) s, =) x, v, v, s, s, v, q, x, s, s, =) x, x, s, q, s, v, 6' x, =) @# ). {. '& d# -. v@ =. A@ L) !. ). {. !. +. x@ &. G! @. +. B$ +. #. L@ J@ V }; E@ H H P J S |; L@ H$ 1# +% M +% S M I M z I ", +"+ Q$ + & ; 2) > M$ R@ > V@ Q$ ; & . > Z, > U$ ^& ) { ' > V@ ; ; & - ; $ ; ^& ^ ) ( { N$ ; Z! 2 ## [ T- | ( ) (& 1 ~ 1 ) ; 2 { ) : [ / / W@ ~ ~ } { 1 $# d ## ,# ( : [ } { e _ 6 $# == ( e } -> 6 $# $# 6 } j V- c V$ c L= r X$ L= j ~# ~# L= h L= ~# r 6! Y$ h % O' Y$ p n D m `$ ^# n^ o n D m m `$ `$ `$ N M= F= w %/ y {& F D m G w M G I D N M A L@ T K M@ S Y L@ O 8* 3# d- T L I@ T Z X J T 0* I@ 4# Q X I@ I@ L >) z$ +. y@ .. e- E@ z$ @. +. W A@ +. A@ ;. ;. 6# -. ). *. %. x@ '. A@ &/ ). ). {. 7, x@ {. A@ H! '. &% &% =% ). 1~ 3~ ~. 3~ &% e' != &% 9& t@ */ >' g{ , *% , '! j# ;% P= '! , 0, ;% I! =/ h{ @~ v' {> U' v' 1{ i{ 1{ j{ H^ q) /= U{ -/ ]> Z- K! Z- h. Z- K! r) Z- V{ Z- g& l* W' F~ F~ F~ ;/ h' G~ >/ b; `~ 7] W= W= H~ H~ @, p~ l- p~ A> A> 0! A> ') ){ 0! 0~ 0~ <> ,/ '/ 9~ 9~ 8~ z! 0~ Z) ]! =] r~ N~ R] R] a] n{ n{ N~ n{ .- d; )/ w^ d; 9) d; 1> d; 9) d; d; t* 9) J^ Z{ ]~ ]~ s~ ]~ t* f; J^ ;] Y{ e! P) ~{ C' C' 3> *+ G{ C' @; ~) y^ C' C' !/ _' C' Q) :! `{ <' r{ d~ K{ A) 5> k' b= ] k' %, k' %, `' %, _~ k' ] ] B* s] i! Y] .! ~/ e~ {/ e~ #{ e~ e~ ]) N^ L{ e= t] l' u~ i, >~ ]/ ^) >~ e= e= ^) ^) +) +) >~ )- )- G* U; /) l+ k! ;$ s{ |^ l; ;$ ;$ ;$ l; l+ ;$ |' ;$ n+ l; @) ;$ ;$ ;$ y% y% y% s+ u+ t+ y% s+ u+ u+ ^/ N> u+ u+ i= u+ M> B- B- B+ A+ B+ A% B+ A+ B+ B+ _) C+ B% B+ E+ B+ ;; E+ E+ E% A+ B+ C+ E+ C- E% O+ E% L+ P+ R+ /$ Q+ R+ S+ S+ R+ Y+ Y+ Y+ V+ Y+ Y+ Z+ W+ +@ W+ Z+ W+ @@ #@ @@ @@ d^ +@ |$ @@ +@ +@ #@ %@ =@ %@ %@ &@ $@ >@ 1$ *@ q= > u{ N* )@ * '@ Q% ~@ R% d> !@ 5$ O% !@ P* /@ g> 0$ W% ^@ b$ b$ =* J ( ; R@ g~ ^, z~ q, s, x, s, s, v, s, H) x, s, r, v, +' q, v, x, x, x, s, s, s, z, x, g] r, x, v, s, q, q, r, v, s, 6' s, s, s, v, v, z~ 6' -! 6' - =. p, x@ ^. D! ). &. ). w$ &. &. &. A@ 8# d# E@ 5# #. .= .. P P @. 1# I@ D$ X H T P 1# H L@ P@ H$ H$ M@ |# 7* |; S J S N 2; ", +". # V! V@ S$ . . # ; S$ . > & U@ | & . `@ | N$ - ^ { U@ Q$ ; N$ ^ Q$ > V@ ; | ; ; ~ U@ T@ . ; | 2 X@ 2 { Z@ ) , ] } | R$ 2 `@ ] 1 2 } ( 7 ) { [ [ +# : 1 { d ## 8 } { 1 d : i 7 [{ $# 6 6 c d [ Y@ &# -# c &# e J= n 0 o e 0 &# n a' c c s> Y$ g i f h ~# h m % 9- n q `$ Z$ l D r Y$ 4* b' m /# $] 4* m /# G ^# E N N /# E N m z H O@ F= E$ A A H S P@ A A |# M J T H H I L@ T H E$ T O= T L X C$ L@ P L@ C$ T 2# s! E@ +. ,. L) . $% e- z$ z@ ;. >. z@ v{ >. 5# )& A@ ). $. $. b# ;. F, ;. 9# ]. '= ). %. '. ;. x@ %% '. b# +~ 5& /. u> {. =% 3~ ~. D~ |. &% 9& H; 3~ `> 5^ ~= -% -% '! 7^ j# l~ '! I! I! 9; s^ 6^ 6) U' v' y{ j{ H^ H^ @~ ]= // ]= j{ A{ ]> m~ A{ {% h. h. K! K! Z- K! r) r) h. r) l* H, W' F~ F~ C{ V{ b; F~ h' I~ '{ l- 7] H~ l- ~! @, 8] ~! O] m- m- m- ') 0! 0! ') 0~ 0~ <> <> (/ ]! 9~ 9~ 8~ M~ { b~ { _/ b~ =^ Q] Q] u^ u^ N~ 2{ _^ w^ b^ .- _^ ^' .- x) ^' d; 9) ]~ Z{ ]~ F{ ^' ]~ ;] Y{ f; ]~ ;] ]~ ;] M, O! H{ O! ~{ C' *+ ~) C' C' @; C' @; y) z) i^ C' ~) r{ :/ V] r{ K{ V] '^ r{ b= k' k' k' k' k' b= %, _~ _~ %, _~ _~ B* B* i! g, X] _~ +! i! +! >- i! i! t] .) +! G* u~ .) u~ u~ e= %$ ^) i, k^ ,- e= ^) 6> ,- ^) %$ M{ ^) }' |' @) j+ |' l; @) @) l+ @) l; ;$ l+ l; |' ;$ ;$ A- l; l; ;$ l; >$ t+ y% y% i= M> ^/ t+ u+ i= u+ M> B+ B- m; B- C+ A+ B% C+ B% B+ A+ C+ B! A+ B+ C+ E+ C+ J+ C- T! A+ C+ D+ S& O+ L+ L+ L+ S+ R+ Q+ L+ Q+ V+ S+ /$ V+ V+ W+ T+ T+ Z+ _$ @@ +@ W+ Y+ @@ Z+ #@ W+ +@ Z+ +@ |$ !] d^ +^ p; +@ ~; ~; %@ %@ %@ *@ I% `& `& >@ `& Q% r; >@ t= 2$ )@ (@ S% N% N% I- O% /@ [/ u; 0$ :@ 4@ !@ P* p@ H$ / $ ], 5' 2! r, v, v, v, s, s, 5' s, g] x, s, s, s, x, s, @] v, s, s, u, x, v, v, s, v, x, }) =) v, @] +' s, s, v, r, v, 6' 6' v, v, 5' v, v, x, <* 5# &. 5# ;! {. x@ &. ). *. z@ 5# ;. -. =. z@ .= z$ +. $% &. G@ C$ .= D$ I@ H@ 4# 2# H L@ Y T Y Q@ O I N@ M@ w 3; Q@ S A z n! ", +"+ ; + % > & & V@ & . $ > & & Z, = = Q$ > U) ] & > ; - Q$ & & & N$ > N$ X@ - Q$ ~ ] ## } X@ 2 ^& X@ ; > | ) N$ ~ [ | ~ | W@ *# ( ] # 4 e { 2 { ## %# J= < } $# ## 6 b &# a 2 } &# 8 b 6 6 9 d } 1 5 9 a $# 6 3* J= '# h e h ,# 7 a ,# ~# s> n W$ 7 p n Y$ n Y$ p 0 r h p y Z$ Y$ c Z$ h t b' Z$ ^# w w % G w 6* G F= y O@ G I )> ~& M n! I M= Q@ w I A Q@ 3) 3# O T G$ J S L 3# L@ 1& E$ J ` C$ L@ s! I@ Y 7# R W H R 9* t> 4# $% @. +. @. 0* R >. &. .= A@ )& A@ A@ =. v{ R' ;' v{ ;. *. ]. ;. !. !. 9# '. 6, '= b# '. b# v{ ^^ '= /. =% 3~ 5& /. ^^ W^ ~. &% W^ ~. 3~ u' H; -% 7! -% -% , , , j# 9; '! I! 6^ '! I! I! 6^ h{ =/ 1{ 1{ y{ y{ {> N] A{ !! @~ m~ 8! X~ i{ B{ 8! Z- h. K! Z- K! r) r) r) K! g& H, W' F~ F~ }/ F~ l] `~ |/ W= G~ H~ *^ I~ l- 1/ C] p~ 8] ~! ') m- m- A> ') ') 0! K~ =] 0~ ]! <> 9] 0~ 0~ q~ 2/ =] ]! Q] 9~ u^ =^ =^ Q] u^ u^ N~ x) 1> x) 2{ d; d; d; ^' ^' 9) 9) ^' d; Z{ F{ ^' F{ q- +- 3/ 3{ 3{ ]~ 3{ ;] 3{ ^~ N! s~ S] C' C' ~) @{ C' C' @; @; C' ~) y^ P! ~) :/ y^ @{ '^ '^ V] '^ r{ r{ %, k' _~ k' _~ k' %, k' _~ _~ ] %, 4/ g, i! i! B* _~ N^ e~ #{ N^ l' d] -~ .) 5/ R! a+ .) .) u~ e= >~ G* >~ e= e= ^) ^) +) G* M{ ^) e= e= e= k! @) l; +) l; 5{ ;$ ;$ l; l+ ;$ ;$ ;$ ;$ l+ l; A- ;$ ;$ h+ ;$ >$ t+ t+ t+ N> n+ y% t+ s+ u+ t+ t+ s+ w+ s+ s+ M> B+ B- B% B% B+ B% A+ B+ B% B- B+ K* C+ A+ A+ A+ E+ J+ C+ E+ O+ A+ A+ A+ C+ E% L+ /$ L+ /- /- S+ /$ Q+ S+ R+ S+ T+ R+ V+ V+ Y+ Y+ Z+ W+ W+ @@ Z+ Z+ W+ @@ @@ +@ _$ #@ +^ 6/ [$ }$ +@ %@ <~ %@ %@ %@ &@ +^ e] &@ =@ )@ 7/ t= >@ '@ s= * ,@ C! 6$ r; 8$ 8/ +* 0$ }@ }- ~@ 4@ b$ P{ 4@ q@ w [ > R@ *) q, v, q, v, z, s, =) x, u, s, r, v, q, v, 7' x, x, s, v, s, +' r, v, g] q, q, q, =) s, v, t, x, x, x, 7' x, 6' ' x, s, A, 6' v, r, g] V! X {. ^. 5& {. ). A@ -. [, '. -. .= e- &. &. z@ >. V z@ ,. 4& .= 4# $% V $> P J C$ J D$ H S H K@ E$ Y H$ ` P@ A M O@ G G ", +"+ V@ $ . ] !, + # [* o! . - ; T@ $ ]& $ > & P$ `@ /& ] N$ ; 2 N$ N$ ; N$ & ; & | ^ ## ( - ~ X@ N$ | | /& & & R$ ~ ] | ~ ~ 2 { ) 2 ^ { ] [ ;# & W@ Y@ / +# / [ $# $# [ g ~# ( / < J= ,# J= &# 8 < ( q> ,# 6 $# e e j 8 D, 6 7 W@ 7 6 {# a ,# 9 7 0 X$ e n a r X$ s> h a h s> p p Y$ Y$ `$ _# h u 1; h D ^# h m I G M w E y I G O@ 6* N H$ I |# M A C P@ O@ T L@ |# O@ J T L@ L@ H 3# T I O@ I@ P T 4# Q@ L H@ I@ >) 2# Y )= W E@ @. ,= W =. *. +. C$ $% .. z@ A@ C$ B$ *. A@ ;' v{ 9/ &. ;. =. z@ ). =. 0# b# v{ D! ;! b# 1~ =% '= 0/ 3~ b# != ;! L] '. /. &% w{ w{ w{ &% &% p^ -% e' -% H; P= g{ ~= '! '! '! '! '! P= I! I! l~ a/ 8^ s^ 1{ 1{ {> y{ b/ H^ y{ y{ y{ H^ V' B{ c/ &] B{ Z- {% c. h. h. K! h. r) r) 4~ V{ K! F~ C{ V{ d/ V{ '{ e/ *^ h' *^ W= Y^ D{ f/ g/ [= h/ 8] ') ') ') [= m- ') 0! 9] ]! 0~ 0! 9] ]! ]! ]! Q] =^ =] =] =] =] 9~ Q] Q] i/ -^ { Q] v^ 2{ w^ /! z' d; 1> 9) ^' 9) 9) ^' ^' f; 9) d; F{ q- ]~ 0) ;] s~ ]~ ;] O! [] j/ ^~ S] S] C' C' (~ F] *+ C' ~) ~) C' @; C' @{ ~) C' C' @{ d~ A) k/ l/ r{ [^ k' _~ %, %, k' k' %, %, b= k' ] ] s] i! e~ i! m/ ] >- #{ e~ #{ l' N^ >- ]) .) .) u~ t] .) >~ G* ^) i, ;~ ^) l^ ^) e= e= ^) 6> ^) ^) >~ e= /) l; ;$ )- )- /) g+ P, l; l+ l; ;$ ;$ ;$ l; >$ l; l; ;$ ;$ ;$ ;$ >$ t+ t+ y% r+ i= t+ s+ w+ w+ s+ N> u+ w+ s+ n/ w~ B% B% B% B% B- B% A+ A+ B% A+ C+ A+ C+ B+ B- m; E+ B% E+ E% Q& A+ C+ D+ k= O+ O+ L+ S+ a> P+ Q+ Q+ R+ R+ P+ P+ V+ .@ .@ R+ Y+ Y+ _$ W+ W+ @@ +@ +@ W+ W+ #@ %@ #@ #@ @^ R> &@ &@ > #@ *@ %@ #@ *@ 7$ $@ -@ $@ >@ !; *@ *@ '@ ]@ 5$ ~@ u= R% {@ {@ t; 3' /@ !@ ^@ /@ P* n, |@ =! x@ ^# ) Q$ R@ J$ q, 6' q, s, v, x, =) v, v, s, s, x, v, =) s, v, v, s, s, x, v, q, v, 6' g] v, s, v, v, v, s, s, s, x, v, [) 6' t, H) =) s, 6' +' v, s, s' S (. (. /* ). ,& ). !. &. {. $. A@ e- E@ .= _* V D@ $% 7# R C$ P Y L@ C$ ` ` T P@ Y Z T Y P@ Y P@ U 1# N@ Q@ G F= z P@ ", +". # ~ ; . + > * ' - # . . & + ]& ]& ; | - ] ] S$ [ ; | | | ; & - - ) U$ ~ < [ > ^& ; | X@ 2 { ; & ~ { ) ; | ; *' $# | N$ 2 < < { N$ | { Y@ $# Y> +# ) / { Y@ } &# 2 < } Y> a 8 &# } $# d a j 6 a j i V- Y@ i a 8 k ~# j L= Y$ L= b 8 a o/ ~# ~# n Y$ s> |& n s> p m r n^ c w r ]# h p _# Z$ 4* ^# `$ }& p ^# p m D N H$ M 3# C /# E$ O@ P@ I @% 8* L J >) L@ A I M P@ L@ S H M P@ 4# Q J J I@ P %> L L@ }; W G@ 4# V I@ z$ #. . .= @. (* z@ E@ .. y@ !. >. =. )= !. )& ,. . ;. !. v{ 9/ ). =. ,. p, p/ S' %% ). '= q/ {. '= %% r/ !. 3~ 1~ D~ u! '. -{ 5] |. e' 3~ &% w{ *% 8& s/ 5^ g{ 9, t/ 6^ u/ I! h# 0, 0, '! I! 9; 6^ I! 6^ f' 7) ]= i{ v/ 1{ 1{ y{ y{ 7) a; 8! ]> A{ Y~ h. h. K! h. r) K! r) K! K! r) r) F~ r) r) K! w/ r) s) W' h' W= W{ l- E{ 8) H~ ~! 6~ h/ 8] 0! L~ m- 0! 0! l{ ') K~ 9] /] <> 9] q~ ]! ]! 9] (/ =] 9~ ]! 9~ 9~ x/ y/ z/ R] u^ /! o] a] !{ A/ a] ^' ^' d; .- 9) ^' 9) d; 9) 9) Z{ 9) ;] ;] f; O~ f; 3{ ;] [] O! Y{ K^ H{ O~ ~) ~) ~) b) ~) @; C' @{ ~) ~) @{ B/ ~) C' (~ Q) d~ / c~ '^ / C/ [^ Y# k' k' b= k' k' _~ k' }+ _~ %, _~ D/ }+ i! D/ k' _~ l' i! >- N^ #{ d] ]) .) l' u~ !^ .) E/ ^) e= ./ ^) >~ e= ^) ^) ^) e= f+ e= ^) ^) ,- F/ *, g+ /) k! l; '] |' l; l; |' l; l; l; l; l; ;$ l+ l; l+ @) A- y% |! y% |! G/ N> |! y% u+ s+ t+ M> N> i= u+ j= B% B+ B- B% B- B% B+ B+ B+ B+ B+ B% B% A+ B+ H/ A+ C+ E+ C+ M+ O+ M+ F+ F+ D+ k= L+ O> S+ S+ S+ Q+ G% L+ P+ S+ S~ T+ V+ V& R+ V+ Y+ Y+ +@ W+ Z+ V& @@ Y+ W+ #@ @@ +@ '; |$ |$ }$ #@ #@ +@ %@ *@ &@ &@ I% Y& &@ e] > *@ >@ Q% q= U% N% d> )@ ~@ r= * d> ^@ P* u= ,@ 9$ Q* e$ |@ f$ {. _# | # g~ *) q, q, 6' 5' |) u, x, @] v, s, v, s, v, g] s, z, s, u, s, v, +' q, 6' +' x, x, s, x, s, s, A, x, H) x, s, 6' r, v, v, s, r, v, r, v, s, q, N= ~. ,& '& d# x@ E@ {. A@ &. z@ !. A@ .. 5# A@ $% z@ 5# @. E@ V L@ L@ 7# P E@ 2# Z D$ I H S S H$ b- A A b- A 8* S N@ x z ", +"# . + . + . + I/ * # R@ V@ . S$ $ > ~ ; & > > S$ 1* # | & S$ N$ Z! ; S$ ~ [ ~ - ~ & ; ; * 5! . 8- Z@ } 4 5 ## `@ { `@ | `@ J/ `@ / } [ { { 6 X@ &# 6 ) [ ) [ [ ] 2 ) J= 8 8 } $# 6 a +# d c Y@ 6 e b /& 6 g &# 7 L= L= ~# L= 0 c ~# K/ ~# 0 ~# L= n [& e a L= p n |& L= h ^# 1; ]# Z$ p }& q C p p Z$ c p c{ 4* m B ^# 2; m N z {& M O@ L/ M/ N/ O/ P/ }# 1& T P@ H #= T L M J P E$ @% 3# Q U J O@ H I@ I@ @. T U T X C$ I@ T D$ #. G$ #. z$ .= $% +. L@ z$ $% +. =. O= )= z@ ,= =. )& 0# )& &. %. 9/ C~ !. >. 7, p, b# x@ 5; &. ). x@ {. /. '= D~ w{ ^^ '= &% &% -{ w{ Q/ W^ w{ 3~ R/ k~ g^ g^ M] 9, S{ S/ , '! '! 9; '! , 6^ g# I! X^ 6^ %^ 1{ y{ H^ j{ T/ j{ j{ y{ 1{ N] y{ {% q) U/ w> K! h. h. w> K! K! K! h. K! F~ K! l* r) K! r) l* W' W' V/ p* ,{ ~! W= 7] o~ 8] O] N; l- L~ L~ m- A> m{ ,/ ') ') m{ m{ 9~ ]! { |= 9~ 0~ ]! 9~ ]! Q] =^ =^ 9~ =] i/ Q] W/ =^ W/ ^! w^ 0] X/ 2{ d; !{ ^' d; ^' d; ^' 9) F{ ^' F{ f; ;] ;] N! 3{ ;] ]~ K^ ;] ;] H{ S] S] *+ *+ v& @; C' @; @; @; ~) ~) C' C' ~) y^ ~) c~ V] K{ b] Q~ Y/ [^ r{ b] _~ k' %, %, %, k' %, _~ _~ k' k' _~ .! s] Z/ s] ] >- i! i! #{ l' 6+ >- t] ]) #{ ^) l' ]) i, ^) e= >~ ^) G* L{ ^) ^) ^) +) +) ^) >~ )- %$ @! Q, @) l; l; l; l; ;$ `/ l+ l; ;$ l; l; l; l+ n+ ;$ l+ l+ y% A- =, g= |! s+ i= y% t+ i= s+ h= ( u+ s+ u+ u+ z+ ]$ ]$ B% A+ B+ A+ R, A+ B% B+ B% B+ A+ C+ B- o' B+ J+ A+ A+ S& O+ E+ D+ F+ k= L+ O+ R+ f) Q+ T+ V+ T+ T+ S+ V+ T+ V+ Z+ V+ Z+ Y+ Y+ .@ W+ _$ Z+ W+ p; p; W+ @@ +@ @@ +@ q; C^ %@ #@ *@ %@ #@ &@ &@ p= *@ >@ e] <- &@ *@ =@ *@ '@ Q% R% 7$ M% U% /@ s= '@ ^@ T~ 8$ }- R* !@ V% X% 7# g ;# . J$ *) [) 8' @] s, z, =) H) v, v, s, v, u, A, s, 8' v, %{ x, s, s, x, [) v, r, v, s, s, s, s, +' s, z, v, s, s, s, s, x, v, q, 5' s, [) v, s, 5' M= ^. x$ (. ^. ). x@ {. =. ). '. &. &. =. +. z@ B$ e- 4# >. .= E@ 7# H@ i~ G@ C$ U F$ Z 2# H P@ P@ H E$ 4, M S ` M S N I A ", +"+ # $ # Q$ .( # L$ & . * . * Q$ & S$ ] N$ & > & - . 0' . ; N$ | > H= o! ^ N$ | `@ U@ ; N$ E! ] . X@ 2 | ~ N$ | | - ] U$ 4 ~ ^ | U$ { ) { | X@ | } } 6 W@ $# d < &# $# 6- 1 b { < ## } &# &# 7 -# : 7 0 b } < b -# *= 6- q> ~# c L= n ~# {# O' s> ># e r [& g e c o p ;= ]# ~# [& Y$ n /# ^# Z$ !# ^# 1; m y o h w % `$ y G ^# x z B O@ n! P@ +( @( #( $( %( I N z D I O@ Q@ 8* H$ E$ H |# J G$ T ` L@ E$ 4# X L@ P C$ 3# V H T I@ U X &( *( =( -( ;( >( ,( '( )( !( #. $% G$ ~( *. )& %. *. 4- *. B@ z$ !. A@ {( ]( ^( /( (( _( :( <( [( }( |( 1( X) /. D~ /. /. %% 1~ w{ &% &% W^ e' >' H; e{ 7! 2( 3( 4( 5( P= '! 8^ '! 0, l~ I! I! j# h{ 6^ 6( 7( 8( 9( 0( y{ y{ 1{ y{ H^ H^ v' q) ]] a( b( c( d( e( r) K! K! K! K! K! F~ r) K! l* l* F~ F~ V{ G~ `~ W' h' f( E{ p* l- f( g( h( m- ~! 8] A> @, m- 0! A> A> 0! m{ /] 9~ M~ {~ 8~ =] 0~ ]! 9~ =] =] 9~ 9~ 9~ Q] u^ Q] a] Q] W/ N~ ^' _^ 0] -^ 1> 2{ ^' ^' 9) ^' F{ ^' F{ ^' ^' J^ F{ f; O~ 3{ `^ ]~ i( ;] ]~ O~ S] S] ~) ~) z) U] ~) G{ @; @; C' ~) @; U] ~) `{ h^ i^ ~) @{ b] K{ d~ '^ j^ [^ k' ] _~ _~ k' k' _~ k' k' k' ] %, s] d] ] -~ ] :~ -~ i! +! l' g, {/ .) ]) #{ ;~ ]) .) t] u~ e= h, ^) e= >~ e= ^) e= ^) M{ >~ >~ k; k; v~ j( @) l; |' l; ;$ l; ;$ ;$ /) ;$ @) l; ;$ |' ;$ n+ l+ ;$ r+ ;$ >$ t+ t+ y% N> i= y% t+ t+ t+ N> i= y% u+ w+ u+ i= B% B% B% B+ B- z+ ]$ B- B+ B+ B% C+ C+ C+ A+ A+ A+ A+ E+ C- O+ ;; E+ D+ C+ L+ O+ R+ Q+ S+ V+ R+ Q+ /$ S~ R+ R+ T+ G% V+ T+ Z+ T+ X+ W+ Z+ f) @@ +@ W+ W+ @@ @@ '; %@ <- @^ %@ +@ #@ +@ &@ %@ %@ 1$ &@ *@ <- *@ 1$ -@ R% !; )@ R% 9$ /@ S% )@ * V% U% N% * }@ 9$ W% }@ |@ +] H e N$ ]& g~ ^, v, z~ 6' s, v, =) s, v, s, H) s, u, s, s, +' +' r, s, =) x, x, r, s, q, q, +' z, r, s, +' H) s, q, q, s, q, q, ^, e^ 5' ^, [) z~ +' 8' ^, '# *. p) (. ). ). ;. -. &. G@ A@ w$ &. A@ (* z@ z@ E@ B$ )& 5# 5# V H@ E@ 4# $> Y 1# 2# J J@ n> Y I Y Y 8* H Q@ I 8* E$ A A ", +"R@ > # . > [* V@ = > > + & > # H= | ; > > $= 5- N$ ; $ ] ] N$ ; > P$ > & - - Q$ ' ] N$ ; > ^& N$ | U@ U@ %= ; N$ ; [ ] { ~ [ 7 { { ) < 2 / { } } ) ## /& ~ / $# [ Y@ 9 7 { J= -# 7 6 6 &# ## &# b ~# 6 ,# k b c c Q{ a 0 n E, 0 [& j Y$ g 6 a e e ~# X$ [& r t e % c c p ,> 1; m D 4* w ^# /# ^# n m C m b' D C /# D I G P@ I >) k( l( #( m( n( G I M o^ P@ N Q@ H H A E$ #= T C$ 8* O@ H J d- d- L n> 7# E$ d- C$ r! . G$ o( p( #( #( #( #( #( #( #( #( q( r( s( =. +. 4- z@ z@ $% -. A@ )& e- t( u( v( w( #( #( #( #( #( #( #( w( x( y( z( 1~ -{ 3~ =% /. w{ ~] w{ 3~ e' 4] 5^ 3~ A( B( C( w( w( D( E( '! I! , a& j# '! '! '! 9; F( G( w( w( H( I( v' !! g' y{ H^ 1{ J( K( L( M( N( w( w( O( P( Z- K! h. K! K! r) r) F~ r) x! V{ F~ V{ G~ G~ W{ '{ H~ W{ Q( h( Y^ 8] 7] m- L~ 8] O] o~ ') 7~ ') [= I^ 0! 0~ 9~ <> { O; 9~ 9~ 9~ 0~ =] 9~ 9~ u^ =] 9~ =] Q] =^ =^ :] N~ x) 2{ w^ R( ^' ^' ^' 9) 9) w^ 9) 9) 9) Z{ F{ Z{ 9) f; f; ;] ]~ O~ Y{ ;] `^ `^ O! j/ @; b) h^ U] G{ o{ ~) y^ @{ ~) ~) !/ C' K{ y^ :/ b] @{ S( D' T( K{ b= j^ _~ k' k' _~ ] ] _~ k' k' _~ _~ %, ]{ g, ]{ B* w- s] U( g, i; >- #{ e~ N^ ]) -~ L{ !^ K> .) i, ^) u~ e= ^) i, ^) e= ^) e= +) %$ e= ^) k; e= }' l; ;$ k! l; |^ @) l; l; w% l; l; l; Z] /) ;$ =, l; ;$ =, l+ r+ t+ t+ t+ N> N> s+ t+ y% x+ w+ `] N> i= N> t+ M> B% B% B% B- m; B+ ]$ A+ A+ A+ A+ C+ C+ B- B+ A+ A+ I+ E+ E+ E% L* F+ E+ D+ E% O+ P+ O+ Q+ L+ T+ T+ /$ Q+ S+ T+ T+ Y+ F% Y+ Z+ Z+ V+ @@ F% Y+ +@ p; +@ +@ +@ +@ #@ [$ +@ V( +^ %@ &@ %@ *@ > > >@ *@ *@ >@ W, 1$ >@ -@ )@ !; r; T% ~@ T% r; R% H- 6$ 6$ q= 0$ ^@ {@ W( 9$ .& ` 0 ; + R@ ], =) 6' q, v, v, H) v, g] ' s, q, v, s, s, s, r, q, s, v, x, s, @] s, v, +' q, r, ^, @] s, s, X( q, q, v, =) v, s, s, x, t, 6' 6' q, [) ^, !~ x@ ). ). p, x@ A@ ). A@ 5& $% .= 0# x@ ,. 5# .= D! 5# +. .= ,= P 5# V J C$ J J@ U K@ H H 1# P@ +% M@ O@ O )> P@ A M n! I ", +"R@ . = # # # ^& . L$ ]& - > $ . > . U@ 5- ; . T@ ] & }* ; - Q$ > & - # S$ ; %= ; %= ] ; T- > { ] ] Z! ; X@ | & N$ *# X@ < , , $# | < 2 ^ 2 W@ { { b | 1 ## [ 6 $# i 6 7 6 d } 8 $# e $# 7 < e ~# a &# e i 7 7 b 9- $# ## 9- ~# a c n |& L= e ># j L= c -) h Y$ !# c{ h r Y$ j p p h O' m /# C ^# b' Y$ 2; m 4* r 4* G b' w x C G A P@ Y( l( #( m( Z( D G G |# 8* M E$ M@ T J S L@ L I@ J T H T I@ 1# d- O U 3# S X O `( _ ._ #( #( #( #( #( #( #( #( #( #( +_ @_ #_ . +. ;. ;. =. ;. 9/ ;' -. $_ %_ #( #( #( #( #( #( #( #( #( #( #( +_ &_ 3~ =% ~. &% 3~ 5& x@ 5& 4] w{ *_ W^ 2~ ,% =_ -_ ;_ #( #( >_ %] 6^ , , a& , I! 8^ I! ,_ '_ #( w( )_ ]= 1{ q) !! H^ !_ ~_ {_ ]_ #( #( #( #( #( ^_ P( h. Z- K! K! F~ K! ^% V{ r) H, V{ F~ d/ W{ ;/ W{ V{ W= W{ W{ /^ W{ 7] 8] /_ m- p~ 8] p~ I^ y! K~ ') ') 0! 0! M~ 9] (_ 9] ]! r~ Q] {~ =^ Q] 2/ __ u^ =] Q] Q] =^ =^ N~ :_ <_ %~ _^ :_ <] 9) 9) 9) 9) 9) ^' Z{ F{ Z{ ]~ F{ J^ F{ ]~ Y{ F{ `^ O! ;] 3{ 3{ e! [_ 3{ K^ G{ }_ }_ G{ ~) @{ @{ @{ C' C' C' @{ d~ h^ r{ ~) i^ %, |_ 1_ A) l% A) k' 2_ _~ k' ] 2_ _~ k' k' _~ k' b= :~ _~ _~ i! .! s] -~ e~ i! ]) #{ i! .) ]) .) e= i, .) G* e= >~ l^ G* e= u~ >~ >~ ^) +) k; M{ ,- k; ^) G* l; ;$ u] @) @) |' ;$ ;$ l; @) l; ;$ l; l; ;$ >$ >$ |^ n+ n+ l+ A- |! t+ s+ i= y% t+ i= u+ u+ u+ n/ N> u+ w+ k, B% K* B% R, B- +/ w~ B- A+ C+ R, B+ B% _) B! A+ R& ^$ E+ E+ E+ S& D+ F+ G+ k= E% L+ Q+ Q+ S+ P+ L+ /$ L+ R+ R+ V+ V+ T+ V+ _$ p; Z+ Y+ _$ Y+ V& +@ +@ #@ +@ +@ %@ &@ +@ |$ q; :- %@ *@ &@ %@ %@ ;@ *@ W, %@ *@ >@ >@ `& S> q= >@ I- )@ u= T% Q% ,@ R% U% S% R* e$ /@ /@ !@ *& N@ b V@ V! g~ q, q, q, q, v, g] 8' =) q, s, ^, 6' }) [) ^, 3_ 6' 8' v, q, 6' 5' e^ q, 2! e^ r, s, ^, q, q, q, [) g] r, r, 6' x, +' r, 6' 6' r, g~ z~ 6' # A@ !. 4_ !. ). A@ &. -. ). )& !. &. =. . E@ E@ B$ @. z@ ). D@ J@ 5# @. V L@ }; J ` U }; O H A O E$ z @% A P@ O I z F ", +" T@ H= . V@ > $ . 5_ ]& 1* $ . Q$ & > R- > H= Q$ W@ T@ ; . ; $ ; (& # - }* ] Q$ ] ; P$ ^ > ; ; ~ O$ 5- O$ $= ] N$ N$ ~ { / *# X@ [ 4 [ } [ 4 Y@ ~ ) J= ( ~ 1 } 6 &# d 6 { 2 ## 6 ( a 6 a &# ~# :& e $# k 7 c 7 =# ~# a ~# 9 a f c &# ,# n {# n c c c ~# L= h p c e e h h % Y$ Z$ n n h :# {& D ,> F= r h c{ ^# ^# p `$ N /# D I z C G 6_ @( #( 7_ 8_ z w M E$ M o> A J P@ L S 4# Y E$ H U d- C$ L E$ H P@ R P W X R 9_ 7_ #( #( #( 0_ a_ b_ c_ d_ e_ 7_ #( #( #( f_ g_ A@ +. e- A@ =. >. ,. h_ i_ #( #( #( j_ k_ [( l_ m_ n_ o_ #( #( +_ p_ ^^ =% ~. ~. &% &% /. 6& 3~ 3~ D~ w{ &% |. 5^ 5^ q_ #( #( r_ s_ P= '! I! g# I! '! '! t_ u_ #( #( v_ w_ H^ H^ 1{ 1{ y{ x_ #( #( #( #( #( #( #( #( ^_ y_ Z- Z- h. h. K! r) B] r) r) V{ V{ F~ V{ V{ V{ 8) d/ 8) W' `~ f( *^ z_ H~ I~ I^ p~ H~ A> A> A> 0! 0! ') 0! m{ X' A_ 0! /] =] Q] 2/ =] Q] Q] Q] Q] Q] Q] Q] Q] Q] u^ /! N~ W/ _^ B_ x) /! 9) d; d; 9) 9) 9) Z{ Z{ F{ 9) J^ F{ ]~ ;] ;] C_ ;] q- ;] ;] s~ a) D_ [] O~ G{ <^ ~{ ~) C' ~) ~) C' @{ ~) C' @; @; P! E_ Q) d~ `' `' F_ r{ [^ '^ D' _~ %, b= _~ ] _~ k' k' %, :~ :~ ] ] ] d] c] >] #{ ,] >- N^ l' d] N^ 7+ t] !^ R! ]) .) R! e= ^) ^) e= >~ e= e= ^) ^) k; M{ e= >~ e= >~ /) l; l; g+ l; s{ l; @) l; ;$ l; ;$ ;$ |^ l; =, l; l; ;$ ;$ ;$ r+ s+ |! t+ s+ u+ t+ |! N> u+ i= t+ '$ h= V; t+ `] G_ B- B% B- {^ `] B% B- B+ B+ B+ B% A+ B+ A+ B% R, J+ B+ C- E% C- C+ C+ E+ k= Q+ O+ R+ R+ N+ Q+ /$ G% T+ L+ T+ V+ Y+ V+ f) V+ V+ Y+ X+ +@ X+ @@ +@ W+ @@ W+ +@ #@ #@ $@ @^ @@ *@ #@ %@ *@ U, %@ %@ 7$ &@ m, *@ -@ '@ q= !; '@ ~; ,~ 2$ U, !; ~@ U% R% 9$ P* }@ /@ W% {@ {* ^# Y@ Q$ <{ z~ z~ z~ [) v, 6' r, =) [) 5' 6' ^, q, q, q, q, r, [) x, +' s, 6' q, 5' 6' r, ^, i) q, 5' %{ s, s, 6' q, g] [) [) s, v, r, 6' ' @] g] 5' ^, ^, V@ .= v@ ^. d# ^. A@ '& +. l> &. &. V> z@ *. 5# E@ .. 5# .= V E@ P P 1# ` 1# 1# Z H T . H H Z P@ P@ 3# S G q! J I I z ", +"+ [* + ]& . $= 2 . # k) # - # M$ & H= k) + ; & | $ = * - U@ & . * ; - & ; | Q$ S$ R$ V@ ] { /& { | | | [ 2 & `@ - 6 [ < 1 ] ~ < ~ Y@ X@ 1 N$ ) { | / ~ %# +# < 5 8 < R$ a ># 6 e 6 a 8 < 0 6 7 9 ,# } a n 0 e c a 7 o g i ~# ~# 0 ,# a L= L= e 6 8 o c K= n^ E, n 2, p `$ (# L= h h _# ^# _# m n h D B G G G ^# /# y w C 1& L/ H_ I_ J_ K_ z M E$ G n! |# P' O P@ U P@ C$ Y L T D$ L O@ P C$ >) 7# d- 2# P 4; L_ M_ #( #( N_ O_ P_ Y . =. .= Q_ R_ S_ #( #( 7_ T_ ,. #. !. (* #. 5# U_ V_ #( #( W_ X_ Y_ 0# ). 5; %% %% Z_ `_ : .: p_ {. =% D~ &% ~. 3~ 1~ L] &% 3~ D~ +: W^ W^ e{ p^ @: D( #( #( #: $: '! '! g# '! , I! %: &: #( +_ *: f' 1{ y{ g' 7) 1{ =: #( ]_ -: ;: >: ,: #( #( ^_ P( K! K! r) ^] F~ h. r) r) F~ r) l* H, V{ V{ W{ '{ '{ `~ W= ': `~ ): o~ 8] 8] !: ~: {: O] ]: ') A> y! l{ m{ m{ 8~ m{ m{ 9] /] ^: =] =] =] 9~ ]! =] =] Q] u^ Q] N~ n{ Q] =] o] <_ -^ d; :_ X/ F{ ^' 9) ^' 9) t* d; F{ ;] F{ J^ s~ f; ]~ P) 3{ ;] ;] ]~ ^~ O! (! [] O~ y) b) o{ S] S] F] C' @; ~) C' ~) ~) C' d~ (~ Q) `{ R) k' q{ %, %, A) A) %, _~ j^ %, k' k' ] k' _~ _~ k' k' _~ :~ e~ Y] ] >- #{ i! N^ .) i! -~ .) .) .) u~ t] t] e= ^) R! u~ ^) ]) R! k; ^) >~ +) k; e= G* ^) ^) @) @) P, ;$ )- s{ l; ;$ ;$ @) |^ l; ;$ ;$ |^ y% l; l+ l; l+ l+ l+ /: |! y% t+ i= t+ (: t+ N> '$ s+ |! i= u+ N> z+ `] +/ _: B% A+ B+ B- B- B% B+ B+ A+ B% A+ C+ C+ A+ ^$ R& :: O+ O+ E+ C+ G+ D+ Q+ L+ O+ R+ P+ L+ Q+ G% /$ R+ V+ V+ F% Z+ Z+ Z+ Y+ Z+ _$ _$ +@ @@ @@ +@ +@ @@ [$ +@ +@ &@ @^ $@ %@ &@ *@ I% @^ &@ =@ R^ &@ 4$ *@ u{ S% )@ 2$ Q% 7$ O* -@ R% 6$ G- T% ~@ P* 9$ u= :@ U% <: ^. `$ 1 > <{ q, 6' q, =) v, x, s, [) 5' r, q, s, z~ 6' g] t, s, 6' ^, +' r, +' ^, q, q, 5' r, 6' q, r, g] s, =) @] e^ +' [: ^, v, 6' q, r, `, [) 5' +' e^ R@ V {. {. {. ,& ^. !. &. x@ 5# &. (* !. ). -. &. z@ &. P z$ E@ . ` J@ L@ L@ T P P ` M@ D$ O H N A O S x O@ G G K z ", +"> V@ # L$ T@ $ & # . . V@ * & Q$ | H= $ & o! . & S$ ; [ ) ~ V@ ' H= H= ; V@ ' ~ %= > ; N$ X@ X@ ) N$ ; ~ N$ ~ ; N$ 2 { / *# X@ ( ^ [ D, { { Y@ { ) W@ { { ## 6 W@ a == 7 1 Y> j Y@ $# $# [ a +# } 6 k 7 Y> 6 8 } b 6 b 6 V$ 7 e e 0 8 j ># e {# ~# Q{ ~# a e -) g Y$ :# n p ^# Y$ Y$ o Y$ n y ^# ^# D % D 1; D w w :# 6* t M D G O@ x D 3; z I n! I M J }# J O@ M O P@ P@ Q@ 8* J 0* I@ L@ L@ J D$ P@ H I@ I@ .= T }: |: #( #( N_ 1: ,. #. E@ 2: ,= $% )= F@ 3: 4: #( #( 5: 6: B$ $% . ;. R' 7: 8: #( #( 9: 0: q/ ). %% 7, b# ,& a: b: c: d: e: %% {. %% D~ &% 3~ ~] 3~ [. 3~ &% +: 4] `> g- {= 7! f: w( #( g: h: 6^ u/ s/ l~ 0, i: j: #( #( k: l: 6^ @~ {> f' q) i{ m: n: o: p: X~ N] q: #( #( ^_ r: Z- h. Z- h. K! h. K! 4~ r) U= l* l* C{ V{ W{ W{ W{ `~ s: I~ t^ t^ Y^ t^ 8] !: m- A> o~ ') ') m- 7~ m{ 0! m{ 0! m{ 0~ 9~ 9~ ]! 9~ ]! (/ =^ =] {~ =] _/ =^ R] N~ :] =^ Q] =^ a] 2{ d; z' <_ d; ^' ^' !{ 1> ^' 9) 9) Z{ F{ F{ Z{ ;] ;] (! [] ;] 3{ 3{ 3{ 3{ }_ ^~ K^ D] ^~ C' @{ y^ t: @{ C' G{ b) C' ~) ~) y^ ~) y^ k/ y^ u: b= d~ y^ b] b] k' k' _~ k' k' :~ _~ %, _~ _~ k' k' k' ] e~ X] k' ] e~ i! d] N^ .) d] N^ ]) ]) ;~ ^) t] ]) l^ >~ u~ ^) >~ e= ^) >~ e= ^) +) +) >~ k; e= e= j( Z] u] j+ @) @) l; @) |^ @) l; l; l; l+ ;$ ;$ ;$ ;$ l+ l; 5{ C) A- y% y% A- /{ y% t+ y% u+ y% t+ h= u+ u+ N> w~ v: B% B% A+ w: K* B+ m; B+ C+ A+ B+ B% B+ A+ A+ A+ ^$ D% A+ Q+ O+ J+ C+ E+ P+ S+ T+ V+ T+ V+ Q+ O> Y+ T+ G% T+ T+ F% V+ W+ Y+ p; @@ #@ @@ Y+ @@ +@ %@ +@ @@ @@ 1] :- !] f~ %@ #@ v] #@ %@ S> >@ >@ =@ >@ =@ M% )@ C! Q% q= {@ x: R% 9$ R% 6$ 5$ ~@ V% ~@ u{ :@ [/ d$ ,. Y$ [ > s' g~ 2! ^, [) 6' s, =) q, q, 5' x, s, r, ^, 8' 6' q, q, v, e^ e^ ^, y: s, ^, q, ^, v, q, 6' z~ 3_ u, r, v, 6' q, 6' q, r, 2! s, v, *) *) z~ q, ], i) ` '. (. ). &. ^. b# !. x@ &. 5# A@ A@ B@ 5# A@ E@ 6, z@ O= R $% _* #. S P 2# V R L@ G$ P C$ L@ @% M M H$ O@ H$ #= A Q@ A ", +"# + + + $= $ U@ & S$ & > & & & *' > ; ] $ # & ^ ) { ] > ] N$ ] > | N$ ; - ]& N$ P$ ] @# N$ ^ 1 X@ ;# & N$ N$ ) } W@ 2 { %# } } { %= X@ Y@ [ { 1 2 < -# ) ( _ [ | / 7 $# V$ d b D, 8 6 7 : 7 a [& i ~# V$ 6 a e e $# g ~# a e } c ,# 6 &# 8 Q{ X$ n n r o L= o c Y$ :# z: h p h p Z$ w 4* D ;= t ^# z 2; Z$ Z$ (# % O@ ^# n! A I D 8* N@ w ^# A G |# B 3# 8* J L@ P@ +% d- :* P@ A: T E$ A d- Y E$ T G$ C$ P' L@ B: #( #( #( C: D: P' 9* X R V Q' e- 5# .. E: W_ #( #( F: G: 5# $% *. ,. H: w( #( .: I: 9# ). b# H! ;. )& H! %% {. 0/ !. %% J: 1~ =% =% 3~ w{ +~ &% /. 3~ W^ w{ -{ 3~ 4] k~ -% K: L: #( #( M: N: I! '! 0, , O: w( #( P: Q: R: 6^ 7) g' f' v' y{ S: y{ j{ j{ y{ j{ T: #( #( ^_ U: r) h. K! K! K! V{ V: V{ V{ r) l* F~ V{ W: W{ V{ V{ X: d/ p* 7] W{ *^ f( *^ !: I^ ') 0! A> A> ') ,/ ') m- A> m{ m{ 9~ ]! 9~ ]! =] ]! =] 9~ 9~ ^! n{ b~ =] =^ )/ n{ Z) =^ Q] )/ /! <] w^ <_ .- 1> d; 9) 9) 9) F{ ^' J^ F{ Z{ 9) ;] ]~ ;] e! f; f; s~ ;] 3{ `^ ^~ N! 3{ [] @{ C' ~) C' ~) @; C' @; @; ~) @{ y^ y^ ~) k/ y^ t: Y: Z: z^ b] b] %, _~ %, %, k' k' k' _~ c] _~ j^ k' ] Y] s] -~ Y] :~ N^ `: i! < ]) ,] < ]) l' ]) e= ]) l' ^) >~ i, ^) ^) e= ^) ^) e= ^) M{ k; e= ^) 6> >~ @! Z] @) @) @) @) ;$ l; l; @) l; l; l; @) l; ;$ n+ ;$ ;$ ;$ l; ;$ r+ |! t+ A- >$ y% t+ t+ w+ w+ '$ y% V; '$ u+ m; j= B% B- k, B+ B+ B- B% C+ C+ B+ B+ B+ E+ B% E+ C+ B+ I+ A+ Q& L+ O> F+ F+ P> /- R+ R+ /$ P+ S+ /$ G% T+ G% T+ T+ /$ V+ T+ Y+ Z+ Z+ Z+ X+ Z+ +@ #@ +@ #@ &@ &@ &@ %@ %@ q; p= #@ p; > #@ %@ $@ > e] &@ &@ .> !; '@ R% C! q' R% T% Q% 5$ /@ '@ q= N% /@ ~@ |@ ^@ l$ X f ~ + R@ V! q, ^, q, 6' v, x, [) v, v, @] s, 8' [) =) q, s, s, q, ^, ^, v, q, q, ^, q, e^ q, q, z~ ^, e^ 5' 5' =) x, 6' v, 6' 6' 5' v, ^, q, 5' z~ 6' q, ^, G ^. B= {. v{ '. ). x@ ). &. )& !. x@ C@ A@ z@ &. A@ G@ C$ 5# 4# R z$ D$ |; T L@ L' P X n> O K@ H Q@ H P@ I ` P@ M A 8* ", +"X! ; * $ = & ; Q$ V@ > > - - Q$ & ' & Q$ N$ & # Q$ > 2 | ^ ; ^ ~ N$ & *' ~ & { - ; ) & ^ ; N$ | 2 (& ; > Z! *# { ~ X@ /& 4 6 { 7 Y@ T- [ N$ ) : ## X@ < < 6 W@ d } < Y@ } } ( } 6 &# < 7 g V$ .< +< @< #< $< %< &< *< e =# o a [& q> 7 e ~# i _# n ,# h a n 9- i C; q r K] 4* ,> Y$ D o 4* 2; ^# ^# Z$ =< -< ;< >< ,< '< b' I w I D A z D G J O@ P@ F= N P@ M Q@ H$ T^ H P@ d- H O J L 3# J P@ L L H M )< X> I@ T !< ~< #( #( {< ]< . C$ @. Z #. C$ B$ .. C$ z$ ^< /< #( #( %_ (< $% . W~ ;' b_ #( #( _< :< 9# !. !. b# ). H! H! x@ x@ 9# H! 1~ X) << =% b# w{ &% H! &% /. 3~ &% &% ~. +~ &% b* *% *% [< +_ #( 7_ }< I! '! '! |< 1< #( #( 2< 3< '! 6^ 1{ a; 7) 1{ j{ y{ y{ j{ 4< H^ H^ T: #( #( ^_ r: h. K! h. F~ K! F~ K! V{ F~ K! F~ K! r) V{ F~ F~ V{ f( G~ H~ Y^ &^ 7] Y^ I~ g/ 5< ') p~ h/ ') A> 0! A> 0! 0! ') m{ 9~ ]! ]! ]! Q] 9~ =] 0~ Q] Z) ^! b~ 9~ 9~ Q] =^ u^ u^ u^ /! N~ 6< _^ o] w^ w^ ^' ^' ^' F{ 9) ^' F{ Z{ F{ F{ 7< ;] ;] ^~ q- ]~ [] ;] 3{ 3{ s~ a) `^ T] *+ C' @; ~) @; C' *+ ~) ~{ C' ~) ~) @{ y^ i^ E_ y^ E_ '^ z^ '^ b] _~ _~ b= k' _~ k' _~ _~ .! _~ %, k' k' g, ] Y] A^ i! }^ U( i! e~ #{ #{ e~ N^ ]) ]) K> .) ]) R! v~ u~ L{ >~ e= u~ >~ G* e= +) 6> ,- l^ k; ^) @! 8< ;$ l; k! |^ l; /) ;$ l; ;$ l; f= ;$ /) *, @) ;$ ;$ l+ A- l+ /: t+ }! =, 2' t+ t+ |! u+ u+ M> j= u+ o+ s+ ]$ 9< B% B+ A+ B+ B% B% B+ C+ A+ A+ A+ C+ E+ D+ C+ E+ J+ 8{ E+ M+ L+ 0> 0> A+ H+ P+ S+ O+ P+ S+ R+ T+ /$ V+ T+ V+ Y+ Y+ V+ V+ Z+ _$ Y+ Z+ Z+ _$ +@ +@ @@ W+ +@ +@ %@ %@ #@ 6/ q; %@ }$ %@ &@ %@ W, &@ $@ &@ &@ !; =@ -@ Q% T% *@ T% R% G- (@ ~@ w= ,@ )@ u= b$ @* R* .& H e 2 T@ V! V! q, z~ ^, q, q, r, 5' 5' q, q, s, =) q, 6' q, 5' =) 6' q, z~ q, v, r, 3_ ^, [) q, 6' q, 6' [) z~ @] ^, [) 6' r, q, %{ g] [) ^, r, [) q, q, q, ^, 0< v@ :. <. w$ x@ !. 5# A@ A@ ). &. A$ A@ &. *. L) z@ .. }; U G@ E@ +. R R H@ O G@ +% O H Y P }; P@ Z M M Y Y H$ z 3# ", +"]& . & & $ # k) + = ; + * V@ . # ^ . Q$ & ^& T@ . . N$ | ^ | ] N$ ~ X@ N$ | 5! | ~ N$ H= ; ; ; { S$ ; N$ | X@ ; N$ { ~ ~ / { ( 1 ## -# / 6 6 ~ [ 4 Y@ | } 7 V$ | 6 6 V~ ## } 9 ,# ( $# ,# 6 &# a< b< c< #( #( #( #( #( d< e< f< 7 i '# a 8 V$ g< h< h< h< i< h< j< h< h< j< h< i< h< h< k< l< r p m< n< i< o< p< q< r< s< #( #( #( #( s< t< u< b' 2; % ^# P@ I v< w< x< y< z< N@ ^# O@ A< B< x< x< C< D< P@ O T T H P T E< F< G< H< I< L C$ T J< W_ #( #( K< L@ .= E@ W e- z$ W F^ H@ W H@ y@ L< 7_ #( #( M< >. $% $. %. N< #( #( O< P< $. 9# %. *. *. x@ H! b# b# ^^ b# /. %% %% /. {. 3~ 3~ 3~ 7, 1~ 3~ &% /. Q< $^ v@ b* *% p^ R< S< #( #( T< U< I! I! V< #( #( ;_ W< l~ I! 8^ h{ g' N] y{ s^ y{ 1{ y{ y{ j{ i] T: #( #( X< Y< K! Z- h. r) r) r) h. F~ F~ F~ r) K! V{ V{ V{ V{ F~ L! W{ V{ '{ Z< 8) G~ Q( ~! `< `< ~: [ ') ') ') 9] 0! ') m{ ,/ /] ]! ]! .[ 9~ r~ Q] x/ u^ :] ^! .[ x/ =^ =^ u^ u^ 6< Q] =^ N~ _^ ^' <_ +[ F{ F{ ^' ^' 9) 0] ^' ^' 9) ;] Z{ Z{ 3{ 3{ H{ (! ]~ M, H{ J^ }_ Y{ ^~ j/ s~ O! @; @; @; ~) C' C' @{ y) z) C' @{ ~) `{ t: @[ ~) y^ A) T( y^ c~ D' k' k' _~ k' _~ k' _~ k' %, _~ #[ _~ k' ] $[ ]{ N^ _~ >- e~ e~ < t] e~ -~ t] ]) %[ ;~ .) i, R! e= ^) c^ ^) u~ ^) e= ^) ^) M{ +) e= k; k! v~ ^) '] @) ,- ;$ l; ;$ l; @) l; l+ /{ l; ;$ /) l; ;$ |^ ;$ ;$ *$ l; y% t+ |! A- r+ t+ |! t+ i= s+ j= t+ t+ s+ x+ s+ B+ B+ A+ A+ B% B+ B+ y+ B+ B+ A+ C+ C+ A+ C+ C+ E+ _) D+ M+ L+ O+ D+ E+ D% H+ P+ L+ /$ /$ T+ /$ G% F% V+ R+ V+ V+ Y+ Y+ .@ V+ R+ f) Z+ _$ %@ @@ @@ #@ #@ #@ %@ &@ #@ 1] @^ %@ *@ *@ &@ *@ %@ ~; =@ =@ T% 7/ !; ]@ T% C! `& S% 5$ R% ]@ '@ ^@ /@ U% /@ T% b$ b$ e@ O h { > R@ J$ 5' g] +' [) 5' %{ r, H) r, 6' `, ^, z~ 2! ], 3_ 6' z~ ], g~ &[ =) v, e^ z~ q, q, v, +' q, r, 6' 6' ^, 5' e^ *[ e^ 5' 5' v, v, q, q, *) *) q, *) _, '. %% '. B= ). (* ). '. b# 5# =. !. ). ,& -. =. B$ z$ z$ 7# #. R z; .= 5# }; L@ E@ H V Z Y H Q@ S P@ P@ M S A P@ A G ", +"% . + > =[ + T@ . = ; | S$ # # $ . + + * T@ & - ! ] ] | ; ~ & | ; ; & . > | U@ %= N$ ) { Z@ & ~ 4 N$ Z! | Z! | | / 4 | ( < [ 1 d } D, ( ~ &# } b &# ( 7 Y@ :& D, $# : ( } 7 ## a k -[ ;[ #( #( #( #( #( #( #( #( #( >[ ,[ g 8 7 7 e '[ #( #( #( #( #( #( #( #( #( #( #( #( #( )[ ![ n h ~[ {[ #( ][ ^[ /[ #( #( #( #( #( #( #( #( ([ _[ G ^# D F= w :[ <[ #( m( 8_ A Z$ O@ z [[ m( #( 7_ }[ A M E$ 4# P Y :[ |[ #( #( 1[ 2[ 0* 3[ L@ 4[ #( #( 5[ 6[ E$ L@ @. 7# 6# 5# B$ $% $% @. P +. 7[ q( #( #( 8[ 9[ )& ]. >. 0[ #( #( a[ b[ c[ V^ 9# 5; b# ). '= =. d[ X) %% 1~ L] '. e[ /. /. D~ %% '= f[ w{ &% &% $^ 3~ g[ $^ v@ k~ Q< h[ i[ #( w( j[ 6^ k[ l[ #( #( m[ a/ '! 6^ I! 6^ n[ i{ j{ o[ H^ j{ H^ y{ j{ X~ p[ #( #( ^_ q[ h. K! K! F~ r) K! V{ F~ r) F~ F~ V{ V{ F~ V{ F~ V{ r[ `~ s[ `~ &^ ,{ 8] Q( t[ o~ o~ A> u[ `< 0! ') A> ') ') m{ m{ y/ ]! 9~ y/ /] r~ =] =] ]! =] ]! 9~ Q] u^ 6< v[ )/ /! u^ 6< W/ A/ <] /! w[ x[ 9) 9) 9) 2{ ^' F{ Z{ F{ Z{ ]~ 9) J^ 3{ 3{ Y{ f; f; [] 3{ `^ }_ [_ [_ O! y[ ~) C' ~) G{ @{ ~) =+ ~) C' ~) @{ C' @{ !/ i^ i^ t: b] `' z[ r] %, b= _~ k' ] k' _~ ] ] _~ ] ] k' _~ :~ _~ m/ A^ %, X] e~ X] {/ t] -~ i! ]) N^ ]) k^ t] .) i, >~ ^) G* ^) l^ >~ e= ^) l^ +) u% G* >~ u% +) >~ O^ @) u] u] P, A[ l; l; @) ;$ ;$ ;$ |^ l; @) =, n+ l; ;$ ;$ ;$ t+ t+ t+ s+ A- s+ t+ t+ u+ i= y% y% s+ t+ u+ t+ `] B+ B+ A+ B+ B% B+ B+ B% E+ B+ C+ C+ B% B+ A+ C+ ^$ A+ C+ E% L+ M+ D+ F+ D% P+ E% Q+ /$ Q+ /$ G% G% /$ T+ V+ T+ V+ T+ V+ Z+ Z+ Y+ Z+ @@ @@ @@ @@ @@ @@ +@ %@ +@ +@ 1] B[ q; D- &@ *@ *@ '@ >@ *@ 1$ *@ >@ )@ 2$ d> *@ T% )@ C[ H- 8$ ,@ {@ |~ {; 6$ P* 8$ W% r$ J j ; . R@ 2! *) q, [) [) %{ D[ 5' v, 5' @] *) ^, 5' 5' e^ z~ *) ], q, [) q, 6' 6' ^, ^, 5' ^, [) q, 3_ e^ %{ q, e^ q, e^ q, ^, e^ e^ r, q, z~ g] e^ e^ q, q, / 0# (. (. >& c# ,& A@ &. A@ ). &. E[ -. *. .= .= +. 9* z$ F@ E@ 2# $> T }; D$ H@ C$ T H Y P M Q@ P@ J K@ M a- H A M@ .~ ", +"# . + ; R@ + > ; = > ] $ Q$ - . S$ # T@ & . & W@ *' | ] ] | ] N$ & & + > , . ) ~ %= ^ { { ~ X@ ; ; H= 2 2 ^& | 2 ~ : [ H= ~ == < [ < { $# 1 { [ } $# { [{ b 7 d &# $# : $# d ( b ># F[ G[ #( #( #( H[ I[ J[ K[ >[ $( #( #( L[ M[ ~# a e 8 N[ O[ O[ O[ O[ O[ O[ O[ O[ O[ O[ $( #( #( P[ _[ 6! n Q[ {[ #( ][ R[ #( $( S[ T[ U[ V[ m( #( #( s< W[ ^# s )> G ^# X[ l( #( m( Z( ~& I 1& H Y[ Z[ #( #( `[ } %> T O P 4, .} 7_ #( N_ +} T 4# P D: @} #( #( #} $} X V C$ 7# y@ #. z@ +. z@ .= ,. A@ A@ %} #( #( &} *} >. >. 9/ =} w( #( w( -} &. R' %. ). 5; '. ;} '. =% 1~ /. X) %% D~ 1~ =% =% 3~ f[ L] `> 3~ $^ W^ w{ $^ q^ f{ X) p^ , >} ,} #( #( '} )} !} #( #( ~} {} 8^ 8^ l~ 6^ 8^ ]} %^ y{ y{ y{ 1{ j{ y{ j{ N] p[ #( #( ^_ ^} /} h. Z- r) r) K! r) F~ F~ V{ V{ F~ r) F~ F~ >/ V{ (} C{ G~ f( L! e/ 8] H~ I~ o~ 8] g/ 0! _} :} 0! ') A> m{ 0! m{ <> 0~ ]! =] =] 9~ 9~ 9~ y/ =] Q] =] Q] =] Q] Q] R] ^! /! =^ =^ W/ 6< !{ ^' <} F{ 9) ^' 9) F{ F{ Z{ ^' J^ ]~ F{ 7< F{ ;] [] ]~ ;] `^ 3{ 3{ i( D_ ^~ [} y[ C' ~) C' [_ <^ b) C' @{ @{ @{ C' y^ @{ L^ y^ =~ 1_ '^ Z: k/ / A) j^ :~ _~ _~ C/ _~ k' _~ %, k' _~ k' k' k' ] k' ^{ ]{ s] i! e~ e~ l' .) e~ -~ ]) .) .) u~ ]) u~ e= e= e= e= G* ^) >~ h, ^) >~ }} k; >~ >~ 6> k; c^ l; l; k; l; /) &, 5{ |^ l; l+ l+ l; ;$ g+ l; A- G/ @) ;$ ;$ =, t+ t+ |! =, t+ i= y% s+ u+ u+ y% s+ i= N> i= B- B% B% K* B+ B+ A+ A+ B+ C+ A+ A+ B+ C+ A+ B+ D+ F+ F+ D% ~- C- L+ D+ n; |} R+ L+ Q+ Q+ O+ S+ G% Q+ F% V+ R+ R+ Z+ V+ Z+ X+ Y+ Y+ Z+ Z+ Y+ @@ +@ @@ #@ #@ +@ %@ #@ #@ 1] @^ &@ *@ &@ %@ p= &@ I% 4$ I% >@ e> Q% H- )@ * N% 8$ 5$ T% 9$ /@ {@ /@ 9$ O* :@ /@ 1} Q@ q> | = ], ^, [) q, [) 2! e^ ^, 5' [) @] r, g] *) q, 6' q, z~ 2^ *) ^, q, ], ^, r, i) *) e^ e^ e^ e^ ^, 2! q, *) 5' 3_ ^, z~ 2! e^ 5' %{ 5' e^ ^, q, e^ *) 6' - $% ^. 5# :. 9& ~. {. ). e- ). ,& .. 5# +. &. -. 4& z$ z@ B$ #. R E@ V P L@ L@ a- Y Z H J J@ P@ A M@ P@ S A Q@ I M@ P@ ", +"]& L$ $ = . R- # - + $ | ] $ $= . [* k) k) . Q$ *' ~ ^ & { | | ^ < ] # # 2 Z! T- 2 | ~ *# ~ , < h) Z! U$ S$ 2 ## Z! | X@ | ~ [ 4 } [ => 2 6 < ( j } } &# $# [ d $# ~ ( Y@ } 6 6 V~ Y@ == $# 2} #( #( $( 3} 4} ~# [& ~# 5} 6} d< #( #( 2} } 8 ~# e o a 7 j k s *= L= p n 7} 8} #( #( 9} 0} c n a} {[ #( #( b} c} d} e} G b' `$ f} g} #( #( h} z y m w x k( S[ #( m( %( O@ P@ W) Q H i} j} #( #( k} H L@ E$ A l} m} #( #( n} o} P@ L@ E$ p} q} #( #( r} @. s} ,. C$ X W E@ X +. 7# E@ A@ A@ &. t} #( #( W_ u} >. ;. $. v} w} #( #( x} y} z} e- 7, H! %. b: H! %% p, S' '. X) D~ -{ D~ '= '= /. L] e' w{ w{ w{ W^ $^ 3~ u' A} M] B} C} D} E} #( #( F} g: #( w( G} I! I! 8^ 8^ 8^ =/ t/ h{ m~ g' 1{ v' j{ j{ j{ i] q: #( #( X< H} U/ ^] Z- h. h. 0^ ;/ K! F~ F~ F~ K! F~ F~ V{ C{ H, I} `~ L! ,{ t^ Z< t^ J} [ H~ t^ K} L} `< Q( m- ') 0! M} 0! ') m{ 9~ 0~ /] y/ ]! 9~ Q] _/ x/ =^ =] u^ R] Q] 9~ Q] r~ u^ /! u^ R( W/ 2{ w^ A/ +{ d; d; ^' ^' F{ 9) ^' ^' ]~ ]~ F{ ;] 3{ ]~ K^ 3{ 3{ ]~ O! ;] [] s~ S] ;] y) /~ C' <^ G{ @{ @; C' ~) ~) @{ @; y^ P! C' Z: N} d~ D' u: O} [^ b] b= k' _~ P} ] :~ :~ k' k' k' ] :~ %, ]{ s] i! g, k' i! +! e~ i! ]) i! e~ ]) .) #{ i, t] t] !^ ]/ R! >~ ^) >~ e= >~ e= ^) +) k; Q} ^) u] >~ e= @! }} )- @) /) |' ;$ l; l; /) l; l+ l; |^ ;$ l; l; ;$ ;$ l+ ;$ >$ y% y% G/ /{ N> s+ g= s+ u+ s+ (: t+ w+ i= j= A+ B% B+ B+ B% A+ B+ A% C+ B% B+ B% C+ B+ A+ C+ C+ D+ ^$ C+ S& O+ C+ F+ >; /$ R+ Q+ S+ S+ S+ R+ L+ /$ T+ T+ Z+ Y+ V+ Z+ Z+ +@ _$ _$ _$ #@ W+ @@ @@ :- p; #@ &@ %@ %@ &@ c> !] #@ *@ &@ *@ *@ 1$ *@ =@ > `& R% T% )@ Q% N* G) !; .> S% ~@ U% +* O% ^@ s; S* _. m 6 { + ], ], V! q, 2! g~ ^, e^ [) 5' ^, ^, [) *) *) z~ [: `, *) *) *) r, e^ ], ^, *) 2! ^, e^ z~ e^ 5' 2! q, 2! q, [) q, ], *) ^, 5' q, q, ^, v, 2! V! *) `, # R q@ :. (. ^. (. F, ^. =. >. {. &. 5# 5# z@ A@ +. A@ &. z@ E@ +. z@ X 2# H@ H@ F@ L@ V C$ J Y S Q@ M@ A M A Q@ P@ K I ", +"]& + + & # $ + |* . & R$ ^& + > T@ + N$ N$ P$ > U$ & ; Q$ ; !, H= ~ N$ ] ] V@ # ) ) ) ~ 2 | ( & 1 2 | ~ 2 < { | ~ | 2 ] $# 6 -> ## 6 d } < d $# } 6 } $# } 7 < a Y> $# 6 b -# } a e R} S} #( #( T} U} $# 7 a i i V} W} #( #( X} Y} &# k L= s> ~# j o n Y$ c 7 0 Z} `} #( #( | .| e e n +| {[ #( #( $( @| ^# #| B /# p :# $| #( #( n< +( F= 8* z {& +( S[ #( m( %| w A P@ M L #= &| #( #( g} *| z N@ =| -| #( #( ;| >| L J T d- ,| '| #( #( )| #. 7# E@ U )= !& )= X 5# X X $% @. E@ !| 7_ #( 7_ u( )& =. E@ 0: ~| #( #( #( .: {| ]| ^| /| 0: !. !. {. %% ;} H! %% a: D~ u! 1~ /. 4] L] u! 1~ 3~ 3~ W^ w{ (| W^ 3~ b* 5^ q^ _| :| #( #( #( #( #( <| U< 6^ I! '! I! t/ [| =/ 6^ !! a; 1{ i] j{ 7) j{ H^ p[ #( #( X< q[ c/ B{ Z- h. K! r) }| || F~ r) r) r) V{ F~ C{ r) W: C{ `~ '{ l] l] 1| Y^ H~ t^ o~ 2| z_ 7~ p~ o~ O] m- 0! 0! ,/ ') ,/ 9] /] ]! 9~ 3| 9~ =] Q] =^ 9~ Q] =] Q] =^ =^ =^ u^ u^ =^ v[ 6< :_ _^ F{ w[ +[ 9) 9) ^' ^' F{ F{ F{ F{ Z{ f; Z{ J^ ;] 4| O! `^ ;] `^ O! 3{ ;] 3{ S] i( `^ i( z) @; ~) (~ ~) y^ @{ ~) ~) y^ I{ @{ ~) :/ Q) 5| :/ D' P! M^ [^ j^ k' _~ _~ _~ _~ _~ ] _~ k' ] 2_ %, k' c] c] Z/ ] -~ >- {/ i! -~ #{ e~ .) 7+ ]) #{ e= t] R! >~ .) ^) >~ ^) 6| ^) ^) ^) e= +) ^) >~ k; +) e= c^ P, ;$ k! |^ l; l; ;$ l; l+ l; l+ ;$ ;$ l+ l; ;$ n+ A- ;$ )- A- t+ |! y% 2' 7| t+ t+ |! i= s+ g= u+ w+ u+ s+ w~ B% B- B% B- B- B% M> A+ C+ B+ A+ E+ C+ E+ A+ C+ C+ C+ n; C% /$ M+ D+ E+ k= T+ R+ G% V+ R+ Y+ 8| Q+ F% Z+ V+ T+ Y+ f) Z+ W+ Z+ Y+ W+ #@ @@ @@ @@ `; p; #@ #@ #@ &@ &@ B[ !] #@ %@ &@ &@ >@ =@ *@ > Q% 7$ '@ I% -@ 7$ 7$ e> )@ O* M% I- T% V% H- {; w= 9@ z@ % 1 ] # ]& R@ ], e^ ^, 5' z~ 5' g] 5' ^, q, q, [) 5' e^ ^, z~ 2! q, ^, *) ^, ^, *) e^ e^ `, V! 9| V! e^ 5' e^ *) ^, [) q, e^ `, ^, ], ], q, z~ ], e^ z~ g] q, J$ ` D= v@ v@ >& !. A@ (* ). &. p, F, !. ;. [, (* +. #. z$ 5# G@ 5# V }; 1# P 1# H@ X T H J Y M P Y S Q@ G w G I G ", +"= > H= ; > # # & $ N$ ]& . & . Z, + & & & ' X@ & . H= - N$ ; | ) ) | - N$ ] . > - X@ ~ ) ## { & ] W@ [ < | N$ 4 X@ ## | [ { /& ^ %# { 1 6 6 ( 8 } | ~ $# } 5 a < 9 ( 7 D, } Y> ,# 0| #( #( a| b| 6 :& $# b e 7 ~# c| d| #( $( e| '# a L= e 8 7 &# L= ~# r -) ~# f| #( #( ][ g| c r ,# h h| {[ #( #( i| j| G 4* F= m 1; m k| ][ #( d< l| Q@ Q@ F= )> m| n| #( m( Z( I M N= w H n! o| p| #( #( q| r| H s| 5[ #( 7_ t| X> I@ d- L@ T u| 5[ #( #( 9_ 4; W C$ I@ ,. .. .. X a* 7# W #. !& #. v| 7_ #( w( =} &. =. $. %. w| x| #( #( #( #( #( #( _< y| z| A| x@ %% X) q/ !. %% 1~ a: ,& a: =% +: 1~ /. 3~ w{ W^ w{ f{ w{ 3~ 2~ q^ k~ w{ B| C| #( #( #( +_ D| '! I! I! 6^ 8^ [| [| =/ 6^ I! v' 1{ j{ y{ y{ H^ H^ T: #( #( X< E| c/ i] }| K! K! K! }| F| W' F~ r) V{ V{ F~ F~ C{ C{ F~ F~ W' Y^ G~ Y^ W{ `~ H~ o~ 2| o~ G| 7~ Q( p~ I^ A_ 0! 0! m{ m{ m{ .[ 9~ y/ /] =^ =] 9~ 9~ =] 9~ Q] Q] =^ Q] =^ Q] u^ u^ 6< v[ H| o] I| +[ A/ 9) ^' 9) ^' F{ F{ ^' Z{ Z{ ;] F{ Z{ F{ ;] 3{ &~ J^ 3{ [] }_ 3{ 3{ H{ j/ [] H{ @{ ~) C' F] J| @{ @{ @{ y^ @{ ~) @{ @{ i^ c~ h^ t: b= K{ u: @[ b] D' k' k' |_ _~ k' ] :~ ] _~ _~ k' _~ s] _~ i! s] :~ Y] g, e~ >- .) i! < t] l' t] ^) t] ]) ^) ^) >~ l^ G* ^) l^ ^) l^ ;~ +) s{ e= e= +) l^ ^) /) ;$ ;$ l+ l; |' l; l; l; ;$ ;$ ;$ l; l; l; ;$ ;$ ;$ t+ G/ A- y% |! |! >$ u+ i= y% y% u+ i= s+ '$ w+ s+ i= B+ `] B% B% B+ B% C+ A% A+ B+ B+ B+ A+ C+ C+ C+ B! D+ C+ E+ F+ Q+ L+ D+ F+ F+ K| R+ L+ G% R+ S+ G% /$ /$ F% Z+ V+ Y+ f) L| @@ X+ Z+ Z+ _$ @@ W+ #@ @@ +@ V& #@ #@ #@ #@ <- c> +^ >@ *@ &@ %@ 1$ S> o= -@ '@ >@ &) 4$ '@ 7$ 6$ T% T% U% O* R% S% (@ :@ W% |@ z$ q *# ; ], J$ z~ z~ q, q, ^, 5' z~ 3_ ], ^, q, r, g] *) ], g~ g~ ^, g~ 2! *) ], ], e^ ], g~ ^, V! ], 2^ e^ [) 2! *) e^ 2! g~ V! *) ], R@ g~ ^, q, *) *) M| V! Z d# q@ w$ {. !. ;. -. ). A@ %. '. '. !. 5# =. z@ +. .= V C$ D$ 2# E@ 2# P P J Y ` J@ E$ L@ T J J Y M I M +% A :# ", +"= N$ > + ; T@ %= & ] # $ $= - . . ; + # !, ; Q$ . & ^ . { ~ ~ ] *# ; & & ] N$ & H= | |* W@ ~ N$ | ~ N$ ] ## X@ ; N$ ] 2 | ) V~ [{ { ) 2 , ~ [ < $# 4 } } ( d [ $# d 1 d / 7 / ,# $# N| #( #( O| ># 0 ># b a 0 $# b ~# P| #( #( Q| j e ~# c o 7 a t' n a o R| s< #( #( S| T| L= ]# e n h| {[ #( #( U| h ^# @= m y V| Y$ W| X| #( 7_ Y| ~& N N O@ v< l( #( m( n( E$ P@ D G O@ I t> Z| `| #( 7_ 1 .1 |: #( #( +1 @1 I@ L@ r! Y L@ #1 W_ #( #( $1 R Q' X E@ L G@ !& E@ R O= .. z$ z$ V w| W_ #( #( %1 )& z$ %. %. %. &1 q( #( #( #( #( #( #( #( #( *1 =1 -1 x@ =% 7, 1~ J: '. ;1 3~ ). /. L] 6& &% ~] ^^ 4] *_ 3~ W^ w{ b* 5^ A} p^ >1 #( #( #( ,1 '1 '! '! S{ 6^ '! 6^ 8^ 6^ 6^ 8^ s^ H^ )1 j{ H^ H^ H^ T: #( #( X< Y< !1 // ~1 }| r) F~ }| }| K! K! r) K! r) F~ F~ V{ 8) V{ V{ C{ z_ l] *^ I~ {1 t^ t^ t^ t^ g/ I^ 5< ]1 I^ L} ') 0! ') I^ ') ') /] 9] ]! y/ .[ /] 2/ =] ]! Q] 9~ u^ z/ =^ u^ =^ u^ =^ u^ u^ o] w[ a^ :_ <] ^' ^' 9) ^' 9) ^1 F{ ^' ]~ /1 J^ 7< K^ ;] s~ `^ ;] s~ ;] `^ (1 T] _1 T] i( F] @{ ~) <^ F] @{ ~) ~) y^ I{ C' E_ /~ ~) :! ~) y^ :/ '^ V] Z: b] :1 k' k' ] k' %, k' _~ _~ _~ ] ] _~ k' :~ Y] X] k' <1 < {/ i! >- -~ m/ t] .) t] R! i, l' i, e= ^) e= ^) ^) i, u~ ^) >~ >~ u] +) >~ [1 ,- G* /) @) ;$ 6> l+ /) g+ @) @) @) l; l+ |^ ;$ ;$ l; >$ ;$ >$ y% n+ 2' D) |! t+ i= i= y% s+ '$ i= u+ j= u+ u+ t+ M> w~ R, B% B+ B% B% y+ B+ C+ A+ A+ A+ A+ A+ C+ C+ A+ A+ D% D+ M+ L* E+ D+ D+ D% N+ L+ Q+ L+ V+ R+ /$ /$ G% T+ _$ Y+ f) F% Z+ Y+ Z+ Y+ _$ Z+ W+ W+ @@ _$ +@ +@ p; +@ :- &@ e] e] &@ &@ *@ *@ *@ %@ =@ I% q= q= L% q= ]@ ]@ -@ V% {@ * }1 q= S% ,@ 9$ ^@ 6@ C$ m 6 ; R@ R@ g~ z~ g~ *) *) q, z~ ], ^, 2! *) q, *) z~ z~ q, 2^ 2^ 9| g~ ^, g~ ], V! *) <{ ], *) ], V! ], ], ], ], J$ s' ], ], 2^ *) *) ], q, e^ 9| e^ ^, [) i) |1 M= ^. v@ ^. w$ (. <. =. A@ x@ A@ ). *. A@ D! =. F; +. .. 9* )& G@ Y 5# @. R E@ P }; S I #= S 1# Y A M@ Q@ I Q@ @% A 2; ", +"+ . # > + + - . T@ V@ - X! * U@ 2) ; N$ . ; Q$ ' > S$ }, # |* ; ~ ~ ^ - > H= 1* # > ] N$ ~ X@ W@ ~ ) ~ ] | ) , /& 2 H= | { 5 ) W@ ; } ## W@ /& ( -> } } ## ~ ## 9 ( $# a $# 7 6 / $# ,# 11 21 #( #( 31 6 $# i [& D, 7 b 0 r 41 #( #( 51 8 0 j e 8 c L= Q{ n ~# 61 71 #( #( 81 91 }& /# c W! ^# ~[ {[ #( 7_ 01 Y$ n^ {& ^# `$ q `$ a1 b1 #( $( c1 A 4* I z d1 l( #( m( n( 1& G |# O@ M K E$ e1 f1 #( #( m} g1 #( #( h1 i1 H E$ D$ L@ Y D$ j1 m( #( #( k1 L@ y@ @. E@ P' O= I@ ={ H@ 7# !& l1 z$ z@ m1 W_ #( #( n1 *. =. . e- ). ;. o1 p1 q1 #( #( #( #( #( #( #( #( r1 s1 %% ;. q/ q/ L] '& d[ =% D~ 3~ &% w{ &% w{ '& 1( Q< w{ +: b* 7! 5^ t1 u1 #( #( #( v1 w1 I! 6^ ]} '! , I! 8^ 8^ X^ =/ x1 %^ y1 H^ j{ j{ o[ p[ #( #( X< z1 X~ A1 B1 F~ K! K! C1 F~ r) r) r) F~ V{ r) H, F~ V{ V{ F~ V{ l] t[ D1 8) `~ D{ H~ t^ [ `< 5< ,/ [= E1 ') m{ ,/ A_ 0! 0! m{ y/ 9~ 0~ 9] 3| x/ 6< Q] 9~ =^ Q] =^ =^ =^ u^ 6< 6< =^ u^ u^ a] _^ ^' :_ /! F{ F{ ^' F{ 9) 9) 9) ^' J^ F{ Z{ Z{ x[ 3{ 3{ `^ 3{ [] 3{ 7< `^ [] S] S] H{ [_ !/ B/ F] F1 @{ @; @; @; ~) ~) /~ @{ y^ ~) c~ !/ @{ b] @{ d~ A) j^ k' k' _~ k' ] _~ _~ |_ b= 2_ ] :~ ] _~ :~ e~ D/ >] N^ ,] d] N^ ]) g, t] l' t] ]) i, .) l' i, e= ^) ^) ^) !^ e= e= ^) >~ M{ u] e= +) )- l^ @! *, l; G* k! l; |' s{ l; @) ;$ ;$ @) l+ ;$ l+ s+ @) ;$ l+ ;$ L> A- y% t+ t+ i= w+ }! t+ u+ i= t+ w+ u+ N> t+ A% B% B+ A+ B+ B% o' B+ o' A+ E+ A+ A+ D+ C+ B% E+ A+ I+ >; E+ S& O+ F+ F+ D+ t{ Q+ L+ Q+ /$ T+ G% /$ G% R+ R+ T+ R+ V+ _$ +@ W+ _$ _$ _$ @@ Z+ +@ @@ %@ +@ #@ #@ &@ %@ %@ @^ $@ *@ &@ >@ >@ >@ > *@ 7$ *! )@ G- 6$ M% * !; '@ T% U% +* /@ ~@ P* _@ z= n> }& *# 2 # ]& ], ^, q, e^ e^ V! e^ g~ g~ V! V! J$ e^ 9| *) ]^ ], ], *) *) e^ ], R@ 2^ <{ R@ ]^ *) J$ ], ], ], S- ]^ V! e^ R@ ]^ V! q, q, J$ ]^ *) `, *) q, R@ J$ o D! u@ >& ^. w$ ). '. x@ !. *. ). ). ). 5# &. &. e- &. z$ z@ )= R e- &. G@ J H 7# J H Y |; x A H I H A M 1# P@ z ", +"]& 0' . . # > }* V@ . & # = > Z! ] $ > & & - $= =' ]& - # & ; - ~ X@ 2 . $= - & & ] 2 ^ ] U@ U$ ^ ^ R$ U@ } 1 X@ X@ N$ ( 5 `@ } %# / $# ;# 1 ( | ~ / [ ) } d } } 6 | $# } [ [{ ## G1 H1 #( I1 J1 K1 L1 -[ M1 N1 -[ O1 -[ P1 Q1 #( #( R1 a 0 7 9- *= '# e V$ e S1 T1 #( #( {[ U1 2, c Y$ c c r a} {[ #( m( V1 l /# ,> (# n ^# p W1 X1 #( #( Y1 w {& A {& :[ l( #( m( n( o^ P@ 8* N n! I m) O@ Z1 y< #( #( 7_ #( #( `1 J H$ J 5, L T E$ 2 m( #( #( .2 . G; y@ 8# )= V E@ E@ >! .= E@ +. $% =. +2 W_ #( #( @2 ;. A@ *. )& $. t( c[ $. #2 ]( $2 %2 %_ 7_ #( #( #( #( &2 *2 b# q/ X) H! b# %% x@ 1~ /. D~ w{ w{ =2 3~ 1( 7& w{ W^ g[ g[ A] -2 w( #( #( #( 7_ ;2 6^ '! '! 6^ 6^ I! I! 6^ =/ 8^ >2 v/ y{ y{ y{ j{ ,2 q: #( #( X< H} B{ '2 !1 B] K! }| V: V: K! r) V{ r) r) F~ V{ F~ V{ F~ W{ t[ V{ Y^ t[ t[ `~ z_ o~ l- f( o~ &^ 0! O] O] ') 0! 7~ A> 0! A_ ,/ 2/ 9~ =] y/ m{ y/ =^ =] Q] ^: =^ Q] u^ =] =^ u^ 6< =] u^ u^ =^ o] <_ _^ v^ )2 F{ Z{ F{ Z{ b^ F{ 9) F{ Z{ F{ !2 `^ ;] ;] `^ 3{ ;] `^ 3{ 3{ ^~ _1 j/ 3{ O! ~) ~) i( F] y^ C' C' C' C' C' @{ @{ ~) V] '^ ~) y^ [^ ~2 y^ S( D' 2_ k' _~ _~ k' _~ _~ _~ k' k' k' ] >] ] _~ D/ e~ :~ Y] ]) g, i! ]) N^ N^ t] t] ]) #{ u~ t] e= e= >~ e= ^) R! i, ^) e= >~ e= k! ~^ {2 ^) 6> ,- @! l; k! k! ;$ P, '] l+ ;$ l; l; l; g+ ;$ l; @) ;$ l+ l; l; l; >$ t+ y% t+ |! i= |! |! u+ u+ i= t+ y% u+ '$ ]$ A+ A+ B+ R, B% B+ A+ K* B+ C+ A+ A+ A+ D+ A+ E+ D+ C+ C+ E+ k= L+ /$ F+ F+ K| /$ Q+ /$ G% T+ V+ f) G% V+ V+ V+ _$ _$ p; _$ +@ _$ _$ @@ +@ Z+ #@ +@ +@ @@ #@ #@ %@ %@ R> w] e] &@ *@ #@ W, `& m, 1$ `& &@ R% 9$ r; * Q% )@ * 8$ '@ R% ~@ T% s= !@ p@ L@ ~# } ] + R@ J$ e^ 5' e^ 5' e^ e^ e^ e^ e^ ], J$ ], e^ 2! g~ ], <{ 2! ^, q, e^ )~ R@ 9| *) `, ], J$ R@ ]& J$ s' ], J$ J$ `, 2^ R@ V! 5' e^ *) )~ V! R@ *) ], ^, b l> E~ p) H! &. &. A@ -. ). ). '. A@ &. ;! A@ 5# F@ &. 6# E@ C$ 2# $> 4# C$ P P C$ V H +% S J @% S o> J S A M I z ", +"# ]& ]& # . 2) # $ & . . ; . ; [* $ & ; . > Z, 5! ] U@ & | ; ; - `@ ! ; ~ ; |* ] > # ^& ~ | ] | | U@ %= 2 ) X@ ] | & U@ Y@ ~ | 2 | [ ~ { { ## ,# } } | { ,# 5 $# b 6 [ $# Y@ d } ]2 I1 #( #( $( $( $( $( #( #( #( #( #( #( #( #( #( ^2 /2 e V$ *= 7 c ~# ~# n (2 $( #( #( _2 `$ s> p Y$ s> |& Z$ :2 {[ #( ][ <2 ^# p % {& b' Z$ Y$ [2 }2 #( #( |2 G z O@ ^# 6_ l( #( m( %| O@ z M A O@ L M 8* A 12 7_ #( #( #( 22 32 J A J L H@ J E$ 42 5[ #( #( 52 7# V O= @. V 4# O= @. E@ G; ,. @. . +. 62 +_ #( #( 72 +. A@ .. =. ;. !. ;. . *. 82 ;} H! 7: 92 02 +_ #( #( #( a2 b2 a: '= 1~ 1~ X) X) L] &% 3~ ~] L] /. +~ Q/ w{ c2 W^ *_ b* d2 e2 #( #( ;_ #( #( f2 g2 I! I! I! 6^ I! 6^ 0, 6^ 6^ =/ %^ j{ j{ j{ H^ H^ T: #( #( ^_ h2 ^] U/ ~1 B1 K! r) 4~ r) B] K! }| F~ F~ F~ V{ V{ C{ C{ G~ G~ l] 7] Z< e/ t^ &^ ~! 8] i2 (} Z< :} 6~ Q( ') 0! ') ,/ A_ ,/ m{ j2 9] ]! 0~ k2 9] 9~ Q] y/ x/ Q] =^ Q] =^ =^ u^ =^ =^ u^ =^ <_ N~ +[ 2{ w[ <] 9) 9) F{ ^' F{ 9) F{ Z{ 9) 9) 9) x[ [] ]~ f; &~ C_ f; 3{ Y{ K^ S] [] S] `^ ~) G{ b) o{ C' C' @{ @{ F1 y^ U] ~) @{ 4{ (~ Z: @{ '^ b] K{ '^ l2 [^ j^ _~ ] j^ ] ] k' _~ _~ ] ] B* _~ _~ s] A^ m2 P} >- d] e~ ,] < g, >- ]) .) #{ u~ ]) u~ ^) >~ i, e= ^) R! e= k; e= ^) G* +) +) e= k! >~ &, /) u] ,- l; P, C) @) ;$ l; |' l; l+ ;$ l+ l; A- ;$ ;$ r+ j+ 2' V; s+ y% V; N> s+ s+ u+ w+ i= m; t+ t+ N> z+ w~ B% B+ B+ B% B+ B+ B% B% A+ B+ B+ o' A+ E+ D+ E+ E+ E+ n2 k= O+ Z; o2 E+ |} S~ Q+ /$ G% V+ V+ T+ f) L| F% Y+ _$ Z+ Y+ Y+ X+ _$ Z+ Z+ _$ p; @@ +@ @@ +@ +@ <- +@ *@ %@ $@ E- I% %@ *@ C^ I% 7$ *@ *@ I% 7$ G- )@ =@ '@ V% O* 4$ 4$ T% U% 9$ ^@ ^@ p2 H j ~ & ]& R@ ], 2^ ], *) `, *) ], e^ e^ e^ 2! J$ V! J$ ], ], J$ J$ ], ]^ R@ R@ ]^ L$ J$ R@ R@ 2^ R@ J$ J$ R@ ]& R@ *) J$ R@ J$ R@ ], )~ R@ R@ ]^ ], R@ V! ], {, g~ W@ -. E~ {. x@ '& ^. w$ &. (. ;. z@ z@ e- =. '. =. A@ ;. &. G@ P .= 5# G@ 4# P Y H P M@ M@ 3; |; J Q@ #= A O@ P@ P@ Q@ q2 ", +"> # # + U@ > > & U@ . . & - > > ; ^ # Z, . > > 5- . }* & ; U@ ) ~ > ; - ; *# %= Z! .# ^ ] ] N$ > ^& r2 X@ ^ N$ 2 ; S$ R$ | }* |* ;# ) ) / | d ,# { 8- D, /& ; Y@ ) 6 : $# d i 6 ( } s2 I1 #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( t2 /2 8 V$ b a *= g s> u2 v2 #( #( w2 x2 L= Z$ L= s> Y$ y2 `$ ~[ {[ #( ][ <2 ^# h /# w `$ p ^# z2 A2 #( #( |2 /# z b' D 6_ S[ #( m( %( #= O@ A 1& O@ J w P@ O@ B2 C2 #( #( 7_ D2 T L T M@ Q T I@ J E2 F2 #( #( G2 7# E@ . X z$ d- L@ L@ 7# )= ,. =. E@ >. H2 #( #( 7_ I2 C@ !. >. ;. .. t( &. )= !. b# b: 9# ;. 9# J2 K2 L2 #( #( M2 N2 {. X) J: '= L] L] D~ D~ &% &% &% 3~ &% w{ W^ w{ W^ w{ O2 P2 #( #( Q2 R2 i[ #( w( S2 I! '! I! I! '! I! I! 1{ =/ 8^ T2 H^ y{ y{ j{ H^ p[ #( #( ^_ U2 !1 w/ A1 N] B] r) h. r) F~ F~ F~ F~ V{ d/ C{ C{ C{ V{ d/ d/ d/ `~ &^ {1 t^ W{ [ o~ ~! u[ z_ f( /_ ~! 0! 0! ,/ m{ M} ,/ I^ ,/ 9] 9~ 9~ 9~ y/ 9~ Q] x/ x/ __ Q] u^ =^ i/ u^ Q] 6< u^ 6< =^ 6< +[ 2{ 9) d; <] 9) d; Z{ 9) F{ Z{ F{ 9) 3{ F{ Z{ 3{ 3{ f; [] Z{ ;] `^ i( `^ 7< H{ S] H{ T] F] F] <^ b) G{ ~) y^ @{ ~) ~) ~) @{ @{ B/ Z: t: y^ {{ c~ k/ S( r{ A) _~ _~ :~ :~ ] :~ k' _~ _~ k' _~ _~ ] ] e~ g, k' w- ,] e~ d] t] < < t] ]) ]) >~ ]) .) >~ ^) u~ >~ >~ >~ ^) k; >~ l^ >~ k; >~ %$ k! /) M{ @! l; V2 ;$ l; l; @) l+ l; /) ;$ l+ l+ l; l; n+ l; l+ A- l+ ;$ t+ |! y% |! ;$ n' t+ u+ u+ s+ t+ o+ '$ u+ N> u+ C+ S, _: A+ A+ B% A+ A+ B+ A+ C+ C+ C+ D% G+ D+ D+ E+ D+ F+ o; Q+ W2 F+ D+ 0> S+ X2 /$ G% R+ R+ T+ Y+ V+ R+ S+ Y+ V+ V& +@ Z+ _$ Z+ Z+ :- +@ +@ +@ #@ @@ %@ #@ &@ #@ 1] c> E- R> &@ > [- Q% &@ p= $@ Q% (@ Y2 (@ -@ '@ /@ O% S% w= '@ )@ V% +* :. K ~# ~ ] R@ ^, i) V! ]^ J$ *) 2^ *) J$ J$ ], ], V! R@ R@ R@ ]^ # R@ R@ J$ ], ]& R@ R@ R@ ], )~ s' R@ {, R@ ]^ J$ ]& R@ ]^ ]^ R@ 2^ 2! g~ J$ ], )~ `@ &. :. O- v@ ^. v@ u@ A@ {. B@ p, &. ). B$ ). z@ )& B$ 5# -. X z@ V X 2# R }; O V J Z +% O +% P@ A Q@ M H E$ A +% ", +"L$ ]& L$ + > $ . ]& # $ T@ ; T@ U$ Q$ & - $ ; > *' > + ; # & - ^ ^& T- ] ] | U@ U@ ; - P$ Q$ S$ U@ ; ] ] ) ( `@ & X@ Z! %= | | ; ~ ) ( *# 2 Y@ $# Y@ ~ 5 ( a 1 [ [ J= Y@ 7 < $# b /& } Z2 I1 #( I1 `2 3 3 3 3 .3 .3 .3 +3 3 3 .3 3 @3 #3 j *= 0 L= c u $3 %3 #( #( &3 *3 a' X$ }& |& s> Y$ E, L= =3 {[ #( ][ -3 p w 1; w D m y ;3 }2 #( #( >3 `$ {& w C m| n| #( m( %| Q@ L O@ x O@ P@ I E$ M ,3 '3 #( #( #( )3 T d- I@ P L 4; O= E$ !3 ~3 #( #( {3 ]3 W W |# P C$ #. O= . d- 5# ^3 E@ /3 (3 #( #( N_ _3 :3 /3 =. $. B$ 6# ;. )& &. *. 9# !. H! 9# 9# <3 [3 w( #( #( }3 '= '= %% a: '= |3 ~] ^^ &% 3~ w{ W^ ^^ w{ 13 w{ W^ w{ 23 33 #( w( 43 53 63 #( #( 73 83 6^ '! 6^ '! I! I! l~ h{ =/ 6^ H^ y{ H^ v/ H^ p[ #( #( ^_ 93 N] A{ U/ A1 /} F~ V{ F~ F~ r) r) F~ r) C{ V{ F~ V{ C{ C{ V{ 03 d/ d/ `~ l] &^ e/ 8] a3 Z< e/ b3 I^ 0! ,/ m{ c3 I^ ,/ m- 0! 0! 0! 9] ]! ]! =] 9~ Q] Q] /] d3 =^ Q] Q] u^ =^ Q] u^ 6< Q] u^ u^ R( +[ a^ ^' d; F{ 9) Z{ F{ F{ F{ F{ F{ Z{ J^ 7< J^ ;] ]~ e! J^ `^ 3{ H{ `^ e3 }_ [_ f3 [] F1 @{ i( F] <^ C' C' @{ ~) y^ h^ y^ @{ @{ C' u: B/ i^ b] q{ Y: [^ 2_ %, Y# g3 k' _~ 2_ _~ :~ ] _~ ] _~ $[ s] m2 A^ X] s] -~ g, d] ]) #{ e~ #{ t] ]) u~ ;~ ]) l' e= i, ^) ^) ^) G* e= G* >~ ^) 6> +) >~ +) }} k! l; l; l; )- l; l+ @) l; ;$ ;$ l; l+ n+ |' l; l+ l; n+ l+ n+ ;$ |! t+ t+ y% C) >$ |! |! u+ u+ i= s+ i= x+ x+ u+ ]$ h3 C+ B+ B+ A+ A+ A+ B+ C+ D+ K* B+ B% A+ A+ D+ E+ D+ F+ D+ O+ O> G+ D+ i3 N+ Q+ /$ G% S+ T+ T+ Y+ f) T+ Y+ _$ Y+ V& @@ +@ Y+ _$ p; +@ +@ @@ +@ +@ @@ #@ %@ %@ &@ *@ !] E- D- *@ &) $@ Q% *@ &@ &@ 1$ I% '@ 7$ Q% j3 ]@ ~@ )@ 6$ (@ T% 9$ R* !. G e ; N$ + @ e^ J$ V! *) ], R@ R@ R@ R@ 9| ], R@ k3 R@ <{ $ J$ + R@ g~ R@ J$ R@ $ . ]& =[ G= R@ R@ R@ R@ R@ R@ R@ ]& R@ R@ R@ R@ R@ J$ J$ + 2^ 2^ . z@ d# ). c# (. '& w$ x@ x@ .. ). =. 5# &. 5# &. A@ +. .= =. +. )= G@ #. H@ 5# G@ X P ` L K@ P@ L@ P@ H$ U M H$ G Q@ +% ", +". # S$ & - Z, & > R- = . . & = ; ] ; . > Q$ O$ + . . & * N$ ; | ~ ; - | ^ %= N$ ; # V@ ~ 2 U$ ^ { > | ## [ ~ 2 %= %= X@ ( X@ D, 1 W@ 1 Y@ [ ) { 1 } b ## } { Y@ 6 3* [{ ## J= $# 6 ## l3 I1 #( d< m3 6 &# / : _ / 9 ~# d } e 6 7 8 $# V$ e j n c n3 #( #( m( o3 n h |& r r L= p a [& p3 {[ #( ][ q3 `$ w l b' 2, p _# z2 r3 #( #( >3 (# Y$ D t m| S[ #( m( s3 A n! ~& z E$ M z A t3 C2 #( #( #( #( h1 u3 T L J P T 7# J T v3 #( #( w3 x3 W G$ ` D$ H@ #. #. E@ F^ .. =. ,. y3 z3 #( #( A3 B3 C@ =. z@ A@ >. 9/ =. e- ]. v{ b: b: 5; b: 9# 7, C3 D3 #( #( E3 J: X) %% %% '= X) &% =2 ^^ (| 3~ w{ ~] W^ F3 w{ w{ G3 H3 #( #( f2 I3 g[ J3 K3 #( #( L3 6^ 6) '! 6^ 8^ 8^ v/ =/ 8^ M3 y{ j{ y{ %^ j{ p[ #( #( X< 93 A{ c/ N3 A1 o[ B{ Z- K! r) h. V{ V{ w/ V{ O3 d/ V{ C{ V{ V{ C{ t[ V{ e/ `~ t^ Q( f( /_ Z< o~ P3 5< m{ Q3 ,/ ,/ m{ ,/ m{ ,/ m{ M} A_ 9~ =] /] R3 3| S3 y/ y/ T3 u^ u^ z/ =] 6< v[ U3 v[ v[ 6< W/ +[ )2 ^' d; F{ ^' F{ 9) 9) d; 9) )2 F{ Z{ :^ Z{ 3{ ;] K^ K^ `^ 3{ K^ `^ ;] y[ H{ j/ `^ G{ @{ i( [_ [_ F1 ~) *+ y^ y^ ~) @{ K{ y^ @{ Z: y^ q{ S( Y/ ~2 [^ A) %, ] _~ %, k' |_ ] k' _~ _~ %, k' k' Y] ] e~ e~ >] V3 e~ d] < .) d] i! .) t] t] >~ t] k^ l^ R! ^) ^) ^) l^ R! e= ^) >~ /) 6> ^) e= ^) >~ ^) @) l+ /) l+ l; @) l; A[ ;$ l; l; @) ;$ @) ;$ ;$ ;$ ;$ y% ;$ |! y% |! |! N> /{ t+ t+ s+ x+ x% ^/ t+ u+ u+ w+ A% B+ B% B- B+ A+ B% B% C+ E+ C+ C+ A+ B+ I+ D+ C+ D+ E+ D+ F+ L+ P> E+ D+ W3 X3 T+ R+ S+ T+ V+ .^ F% Q+ Y+ V+ Z+ _$ V+ m= X+ p; Z+ Z+ Y3 p; @@ +@ #@ m, _$ %@ #@ %@ &@ <~ @^ p' =@ ~; #@ 4$ '; -@ !; 7$ 2$ =@ '@ >@ '@ s= ]@ T% '@ |~ u= ~@ x= 5# ^# 7 2 U@ + . # J$ * J$ % R@ R@ R@ J$ J$ V! ], + . + ]& L$ + R@ <{ ]& J$ R@ . ]& + > ]& R@ R@ 9| J$ ]& R@ R@ + ]& R@ ]^ J$ R@ R@ R@ > F@ (. v@ q@ {* b# %% (. x@ )& ). ). -. &. 5# 5# !. &. 5# B$ E@ V . P G@ P Y T L@ s! Y 2& T 1# Y K@ O@ S @% J @% x ", +"Z, . # + - & = . $ + & . * + > ] & $ # . H= + > . o! - . Q$ + ; > A; & $= %= N$ H= > 2) H= N$ `@ U@ ~ . ^ ~ W@ ~ { | N$ X@ N$ Z! N$ Z3 2 V~ 7- 2 { ~ ) } [ } W@ 2 W@ 2 < 4 $# &# < [{ 9 `3 b} #( $( 4 6 $# b 1 J= &# i i 6- e h j k e :& e 8 ~# n .4 H1 #( #( +4 @4 p n 0 ~# Y$ s> ~# `$ Q{ #4 {[ #( ][ $4 Y$ p m m ^# Z$ s> %4 &4 #( #( *4 w ^# ^# W) +( l( #( m( %( t N P@ O@ I M 3# A =4 #( #( -4 ;4 #( #( >4 Y[ L@ L@ T J G$ L@ U ,4 #( #( 7_ '4 W C$ T 4# E@ X 7# E@ +. .= 5# .. )4 !4 #( #( ~4 ,. 6# ;' +. z$ C@ ;. 6# b: %. ,. 5# 9# ;' 9# b: !. P< x( #( #( {4 J: '& ). u! '= '= /. &% ^^ 3~ w{ f[ 1~ W^ 3~ W^ ]4 ^4 &: #( 7_ /4 (4 _4 :4 <4 #( #( [4 }4 '! I! 8^ 6^ ]} x1 l~ =/ 8^ h{ =/ y{ y{ y{ T: #( #( X< 93 H^ U/ // |4 14 4~ K! K! K! r) V{ V{ w/ d/ F~ F~ V{ V{ V{ V{ d/ W{ d/ e/ >/ t^ t^ Z< 8] o~ &^ i2 P3 I^ 0! 24 ') ,/ ,/ L} ]: m{ m{ 9] 3| ,/ A_ A_ Q] =^ Q] Q] x/ =^ =^ Q] u^ __ u^ =^ 34 34 u^ =^ +[ w^ a^ 44 54 a^ Z{ Z{ 9) 9) J^ F{ !2 J^ F{ Z{ 64 ]~ 3{ s~ [] `^ ^~ ;] ;] 3{ S] x^ [] H{ ~) @{ *+ ~) ~) ~) @; ~) 74 y^ ~) c~ V] t: :! i^ 4{ S( b] u: c~ Z: r{ _~ Y# _~ _~ ] ] :~ ] _~ $[ k' .! s] _~ :~ 84 $[ >] Y] e~ X] i; ,] e~ ]) V3 ]) R! R! .) !^ ^) >~ >~ ^) e= u~ e= >~ >~ e= k! %$ e= e= e= )- .] s{ 6> k! @) v~ s{ @) ;$ l; l+ ;$ l+ U; g+ =, y% ;$ ;$ ;$ ;$ l+ |! y% y% r+ V; t+ s+ s+ u+ u+ m; u+ y% u+ E) A+ B- B+ C+ A+ B% B% A+ B+ B+ C+ C+ C+ A+ C+ C+ C+ D+ >; D% E+ L+ L+ F+ F+ 94 t{ G% /$ f) R+ Q+ V+ Y+ V+ V+ T+ T+ Y+ Z+ Z+ #@ +@ _$ Z+ %@ `; +@ +@ %@ +@ &@ %@ &@ &@ %@ e] E- *@ &@ #@ *@ W, &@ S> '@ >@ *@ (@ 7$ '@ '@ '@ 5$ r= 8$ I- V% 04 E@ N 7 2 > $ > > + S- R@ R@ @ g~ # S- + R@ = + + = + . + . + + # $ - - L$ + # * % > # + S- + J$ Z, + R@ R@ V@ !, R@ J$ + R@ R@ # R x$ <. q@ :. x@ (. (. '& '& *. ;! ;! &. -. ). v{ $% @. @. E@ E@ @. Z $> P F$ T K@ ` ` J T E$ T H P@ S P@ G I$ H$ ", +"]& Q$ & ]& J$ ]& + > * N$ k) + # # ; | & . T@ . > $= > $ H= ; + H= | W@ - ; > - ^& | & & N$ | > N$ |* ; N$ N$ U$ ~ - { X@ X@ 2 | ; N$ | > 1 | &= [ ) < D, { X@ W@ W@ Y@ Y@ { d _ 2* *# [ } a4 b4 #( #( c4 } b j a L= a {# {# 7 e e ~# $# 0 j g 8 8 d4 X} #( #( e4 f4 a' _# r 8 n s> E, i 1, )> #4 {[ #( ][ <2 Y$ w ^# /# #] ^# /# g4 &4 #( #( h4 N m D 2; +( l( #( m( i4 j4 A I I I 8* O@ k4 l4 #( #( m4 n4 5[ #( 7_ I< D$ T H L@ L@ C$ L o4 g} #( #( p4 q4 L@ L@ r4 #. H@ L@ #. 7# X #. ,. s4 #( #( #( t4 =. )= :3 $% &. ;' 6# ;. b: 5; b: v{ ). 6# !. !. 0# u4 v4 #( #( w4 a: '& '& X) x4 D~ w{ ~] ~] ^^ y4 q/ Q/ +: W^ W^ z4 A4 #( #( B4 C4 D4 ]4 E4 F4 1< #( #( G4 H4 I4 M3 6^ J4 =/ s^ 8^ M3 K4 L4 j{ 1{ v/ T: #( #( X< 93 S: -/ A1 N3 14 N] }| r) w/ r) F~ V{ V{ r) C{ V{ 0^ r) M4 >/ >/ t[ d/ `~ e/ t^ N4 &^ O4 o~ Z< `~ Q( I^ L} P4 h/ ]: c3 Q4 R4 S4 m{ ,/ 9] 9~ 9] m{ .[ =] a] r~ Q] =^ .[ =^ =^ u^ 9~ =^ T4 u^ u^ u^ R( o] /1 U4 44 V4 F{ 9) F{ F{ F{ F{ Z{ Z{ J^ F{ Z{ 7< `^ ]~ `^ 3{ s~ ]~ ]~ ^~ S] j/ j/ `^ ~) @{ ~) F] W4 y^ C' @{ F1 @{ @{ @{ `{ q{ y^ Y: y^ Z: r{ t: :/ '^ b] ] ] _~ :~ _~ _~ k' _~ _~ _~ _~ ] ] ] ] e~ X4 $[ Y] N^ e~ i! t] {/ N^ l' .) ]) ,] .) ]) l^ G* >~ L{ ^) i, ^) >~ G* ^) 6> +) ^) e= ^) k! @! |' 5{ s{ l; l; 2' ;$ l; ;$ ;$ l; ;$ ;$ l+ l+ >$ ;$ l+ l; g+ ;$ l+ t+ s+ y% u+ N> y% u+ u+ u+ u+ o+ u+ w+ x+ k, B+ A+ B% A+ C+ B% B+ B+ B+ B+ C+ C+ C+ B+ B+ C+ E+ C+ l= k= /$ X; F+ D+ D+ X3 /$ Q+ Q+ T+ R+ V+ Y+ Z+ Z+ _$ Z+ Z+ _$ _$ W+ @@ _$ Z+ '; @@ @@ #@ #@ &@ *@ &@ %@ *@ %@ *@ !] Q% >@ *@ >@ *@ &@ &@ -@ R% >@ =@ d> R% '@ d> d> T% )@ I- N% _; .= ^# j { }* & & $ = !, + L$ R@ # V@ # & > Q$ ; V@ * & ] U@ . % # & ] ' . > - T@ ]& + > # . + # # !, ]& > # + R@ R@ M$ + 7* = x$ (. s@ u@ B= {. w$ ). {. ). (* =. -. r4 A@ A@ .= >. 5# &. _* V R 4# V H@ J Y C$ L@ L@ Y P@ +% P@ N Q@ M@ Q@ A ", +"* H= & Z, . . R@ $ # ' # + # > ] - ; ]& # V@ ; ; . & & > | ) ~ %= R$ ] ^& U@ ; U$ ; H= ; . N$ - ] & ~ | ~ ; ~ 1 | %= U$ | H= | U$ | ( 4 { ] { { Y@ 2 ] $# d Y@ V$ $# 9 ~ %# Y> [ == 6 Y4 #( #( Z4 `4 : b } a 7 c {# ~# j 6 b ~# ># a V$ :& 5 .5 #( #( {[ J1 7 e ~# e i n^ 1; % ~# |& Y$ #4 {[ #( ][ 61 h h {& D D N N +5 r3 #( #( *4 G z G h 6_ S[ #( m( %| m) K G E K S @5 #5 #( #( $5 %5 e1 &5 #( #( *5 =5 L@ T T I@ L@ 4# -5 ;5 #( #( ._ >5 C$ X @. I@ s! 7# .= . E@ +. ,5 '5 #( #( )5 !5 $% =. 5# z@ >. 7# z@ @. ~( 5; =. +. ;. +. ~5 ;} >. {5 &2 #( #( ]5 b# X) X) /. 1( 0/ D~ ^5 ~] D~ w{ =2 W^ w{ +: F3 /5 w( #( (5 _5 H; _| 2~ x{ :5 <5 w( #( g: [5 t/ 6^ '! 8^ 6^ 6^ 8^ 8^ K4 =/ v/ H^ H^ p[ #( #( ^_ 93 }5 o[ A1 /} }| |5 4~ 15 V: r) F~ K! V{ V{ F~ F~ C{ F~ F~ V{ F~ C{ G~ f( ~! d/ 8] P3 a3 f( z_ a3 h( 25 L} O] o~ m{ L} M} A_ S4 3| ,/ 35 A_ 3| 3| 3| { { Q] Q] Q] u^ u^ u^ =^ =^ 45 T4 6< u^ 6< _/ o] 2{ <] :_ a^ 9) <] Z{ ^' F{ J^ +{ Z{ J^ ;] Z{ J^ ;] ]~ 3{ Y{ ;] 3{ 55 x^ ^~ O~ j/ }_ C' C' C' <^ 65 G{ @{ @{ F1 F] ~) U] @{ @{ h^ b] t: k/ T( y^ 75 b] C/ %, _~ k' _~ `' _~ _~ :~ %, _~ :~ ] ] _~ ] #{ i! _~ <1 >- e~ d] t] 3+ i! .) .) ,] u~ .) ]) u~ e= u~ !^ ^) u~ e= ^) ^) e= e= k! e= e= e= j+ G* 5{ @) v~ u% @) ;$ w% l; l; k! l; l; l; l; l+ G/ =, l+ l+ ;$ n+ l+ =, 1' t+ i= i= '$ t+ s+ t+ j= n/ i= x+ u+ 85 B+ A% E+ k, C+ B+ C+ A+ A+ E+ C+ C+ A+ B+ A+ E+ D+ D+ D% E+ Q+ O+ D+ F+ ^- S~ /$ L+ /$ Q+ V+ V+ Y+ Z+ V+ Y+ Z+ L| _{ _$ W+ +@ _$ :- _$ +@ %@ #@ +@ @@ %@ #@ *@ &@ *@ D- !] $/ &@ 95 *@ *@ =@ I% -@ I% -@ =@ '@ )@ 9$ 0$ (@ >@ -@ N% s= +& E@ p g | ; `@ S$ !, + # + $ ]& !, V@ ] |* S$ > - & 5- . & > | ) ; ^ { - ] O$ Q$ ] & & ^ N$ R$ $= . * ' S$ & 5- & Q$ Q$ ' - # ]& . + R@ S- c{ w$ k> q@ :. {* (. -. d# x@ (* x@ -. 5# .= z@ =. 4- 5# .= z$ B$ H Z S R D$ #. S T H@ L@ H C$ Z J I J A Q@ M@ @% ", +"= > - - Q$ ]& ]& ]& + L$ . * $ . + $ V@ $ $ $= V@ o! . U@ . > P$ ; { ] - > - S$ ] - N$ > > ; & S$ X@ ^ | 2 | - ~ 2 [ 2 ;# 05 X@ 2 N$ | ~ [ ~ 1 { [ ^ ~ { ( / } W@ } d Y@ d a $# 6 7 a5 $( #( I1 b5 d ~# $# 9 a a $# e 8 6 k 0 6 0 c5 ~# d5 I1 #( #( e5 r 0 L= a g ~# c m D p p m f5 {[ #( ][ g5 r K/ p h ^# ^# w h5 }2 #( #( >3 `$ z z ^# +( l( #( m( %( M I A F= i5 P@ j5 m( #( m( k5 Q@ S l5 m5 #( #( g1 n5 L@ Y T E$ P' W o5 W_ #( #( p5 q5 H r5 Y P a* d- C$ )= s5 t5 #( #( #( u5 )= e- ,. T 4- v5 w5 =. ,. x5 9# ,. 9/ 9# =. b: *. 9# y5 7_ #( #( z5 A5 x@ ). 1~ /. a: B5 W^ &% ^^ =2 =2 3~ H! 4] C5 D5 #( #( E5 F5 p^ 7! 5^ G5 s/ H5 I5 #( #( J5 K5 6^ 8^ 8^ 8^ 6^ L5 8^ M5 s^ j{ y{ y{ T: #( #( N5 93 H^ o[ ~1 o[ ^] O5 /} V: K! 0^ r) P5 r) r) F~ C{ F~ t[ F~ V{ d/ V{ G~ t[ t^ Y^ e/ `~ b3 Z< b3 Q5 t^ u[ R5 ]: S5 T5 L} L} ') ,/ ]: A_ c3 A_ .[ 9~ =] U5 =] { 9~ Q] =] 6< Q] __ u^ 6< u^ u^ 6< 6< +[ H| V5 b^ a^ a^ +[ 9) F{ F{ F{ Z{ ;] Z{ Z{ ;] J^ J^ 7< ;] 3{ ;] }_ W5 }_ X5 3{ W5 [_ j/ H{ s~ y^ ~) W4 F] Y5 U] @{ [} b) @{ @{ @{ @{ @{ Z: @{ t: '^ T( T( b] r{ A) k' _~ ] ] :~ _~ _~ _~ :~ ] k' _~ X] s] A^ >] :~ ,] e~ Z5 ,] l' d] #{ ]) ]) u~ u~ ]) ]) R! t] l^ >~ ^) ^) ^) e= ^) e= k; e= e= ^) )- e= &, &, ;$ ;$ l; ;$ |' @) @) /) s{ l; l+ ;$ l; ;$ l+ ;$ |^ l+ ;$ l; h+ s+ t+ y% n' D) '$ s+ y% s+ j= '$ '$ |! E) R, B- B+ B% B% A+ A+ B% D+ A+ D+ C+ C+ E+ C+ E+ C+ D+ ^- E+ O> L+ R+ G+ G+ G+ `5 Y+ /$ Q+ Y+ G% F% F% o2 Z+ V+ Y+ Z+ @@ _$ Z+ p; _$ p; [$ @@ +@ #@ +@ '; #@ %@ #@ *@ ;@ c> $/ *@ D- 7$ >@ ~; '@ >@ e> >@ -@ * >@ )@ w= -@ * Q% T% /@ o@ T `$ 8 ~ | ] & - > - }* . > T@ . > %= | > ; - & H= ! ^ X@ / R$ X@ X@ , ~ : { W@ ~ 2 *# ^ X@ { R$ 2 ; ~ *# ; ) & ; & . & . + > = V@ c t@ x$ w$ k> :. {* ). ,& l> )& &. &. =. V> A@ ). +. B$ 5# ,. @. V E@ ` 2# K@ Y }; Y T P H M P L@ H S #= A 8* I ", +". + & X! = . * + + # > !, & ]& Q$ ; ^& Q$ > # Q$ . S$ > & Q$ + | ) ; O$ ~ ) ~ /& X@ Z! Z! N$ # N$ N$ %= P$ N$ ~ ] ] N$ W@ ~ > 5! U@ ] 7- I= <& $# { ) # Y@ W@ ( 6 /& { | 9 &# 6 d 7 7 7 6 d 6 .6 #( #( +6 @6 5 ,# b 7 *= $# 0 0 #6 $6 %6 7 0 g &6 a| #( #( *6 =6 ~# c h L= 7 _# j s> s> `$ p Z$ M[ -6 #( ][ ;6 D z % o 4* % D %4 }2 #( #( >6 G w b' M 6_ l( #( m( n( c- x A N O ,6 '6 #( #( )6 o} H$ A |# !6 #( #( M_ ~6 T E$ W L >) L@ {6 ]6 #( #( #( ^6 /6 .= W C$ 4) V E@ (6 _6 W_ #( #( :6 <6 z@ A@ $% $% z@ [6 }6 |6 !( ]. %. )& %. %. %. 9# v{ 16 (( #( #( D3 26 %% '= x@ /. ^^ %% J: D~ 4] ^^ =2 ~] w{ Q/ f[ 36 w( #( 46 56 W^ 2~ b* 66 13 D4 '! 76 +_ #( +_ 86 , '! 6^ I! '! I! 8^ =/ M3 j{ y{ H^ T: #( #( X< 93 b/ o[ ~1 ~1 |4 c/ A1 r) F~ r) C1 |5 F~ F~ C{ V{ C{ C{ C{ C{ G~ V{ C{ C{ &^ a3 {1 &^ Z< `~ i2 e/ ): o~ 96 S4 E1 2| ') 0! ,/ A_ ,/ ,/ ,/ A_ 9~ =] =] A_ x/ 9~ =^ =^ =^ =] 9~ u^ =^ __ u^ =^ u^ v[ v[ R( W/ X/ 9) 0] 06 ^' F{ ^' d; J^ 9) F{ Z{ Z{ Z{ J^ 7< 3{ 3{ ]~ C_ 3{ i( 3{ }_ C_ i( j/ K^ S] ~) @{ [_ 74 74 B/ @{ C' @; @{ ~) t: ~) y^ Z: E_ y^ Z: Y/ y^ r{ [^ D' _~ _~ 2_ P} $[ $[ :~ :~ _~ ] ] _~ >] >] e~ e~ m2 -~ N^ e~ d] ]) #{ +! ]) ]) #{ R! ]) t] .) u~ >~ >~ ^) >~ ^) ^) ^) R! e= ,- e= ^) 6> e= >~ @! l; l; ;$ l; l; g+ l+ ;$ ;$ ;$ @) ;$ l+ l+ n+ l+ l+ ;$ -$ l+ n+ =, s+ y% 2' x% y% t+ s+ u+ u+ t+ i= w+ w+ k, B- B% A+ A+ B% E+ A+ E+ D+ A+ A+ D+ E+ G+ E+ B+ D+ E+ D+ D+ Q+ Q+ O> D+ F+ Q^ T+ R+ f) V+ V+ G% G% G% G% Z+ V+ _$ p; p; @@ @@ Z+ _$ _{ +@ @@ #@ +@ &@ +@ #@ &@ m, '; &@ c> e] $@ =@ I% Y& >@ *@ -@ `& 7$ Q% >@ >@ 2$ )@ )@ q= G- (@ -& }; _# F! 5 W@ X@ P$ ) U$ | U@ - > & ; N$ Z! ] ; 2 { ^ ~ /& { | | 2 7- ) } @# ## ) } { 2 4 == < | R$ } /& : ) 2 | ; ^ (& ; ] S$ Q$ & S$ . { a6 j- (. q@ b6 q@ '. (. x@ ). !. A@ b# b# C@ *. z@ B$ E@ G@ )& G@ L@ G! E@ P L@ J E$ A J Y M@ M O N 3# J J A M@ ", +"= * . R$ > + # . & U@ * ^ + > & & T@ }* . S$ ; . . S$ Q$ & T@ ; ; ; ^& V@ ~ 2 4 ^ | | & }* - ; ] ; U@ ; ~ ^ W@ | { [ 2 ] - & & ' /& ## N' d { 1 %# W@ ( 6 a < &# 6 ## c6 } < X$ &# $# &# d6 e6 #( #( f6 g6 h6 i6 a j6 k6 l6 m6 n6 d< o6 7 6 p6 q6 #( #( f6 r6 {# 8 e a L= L= n g l `$ m m L= M[ {[ #( ][ s6 `$ D m p m 4* % t6 }2 #( #( u6 `$ p `$ C v6 S[ #( m( %| M 3# O@ M M w6 #( #( x6 y6 n! 3# b- H z6 A6 #( #( B6 C6 T T T Y T L D6 ;4 #( #( #( E6 F6 G6 H6 I6 J6 K6 L6 7_ #( #( %_ M6 l1 ,. y@ $% 5# N6 O6 #( 7_ q( P6 Q6 R6 S6 )& T6 U6 V6 _< #( #( #( W6 X6 7, Y6 '. J: q/ J: 1~ D~ << /. ~] w{ &% 4] Z6 `6 #( #( 7 w{ W^ +: A} D4 .7 -{ u/ +7 @7 #( #( #7 $7 6) 6^ S{ =/ 8^ 8^ %7 &7 *7 =7 -7 ;7 #( #( >7 ,7 =7 =7 '7 )7 !7 X~ A1 A1 w/ w/ F~ C1 F~ ~7 C{ V{ K! r) C{ C{ `~ C{ d/ t[ >/ W{ Z< &^ f( a3 z_ 8] h( o~ Z< L} A_ S5 0! m{ m{ ,/ m{ m{ ,/ A_ =] .[ Q] 9] ]! =] 9~ Q] =^ =^ 6< u^ =^ __ u^ =^ u^ T4 u^ v[ :] !2 9) +[ I| Z{ Z{ Z{ Z{ Z{ J^ Z{ Z{ J^ 7< C_ J^ e3 C_ 3{ `^ J^ 3{ O! 3{ C_ s~ j/ [] D_ C' ~) D_ [} 74 @{ C' C' J| ~) ~) @{ E_ {7 u: c~ y^ `' @[ q{ S( r{ b] j^ _~ ] j^ P} _~ k' k' ] _~ _~ :~ ] s] s] 84 Z/ _~ V3 d] d] N^ .) {/ ]) ]) l' R! R! t] ]) i, ^) >~ >~ >~ u~ e= e= e= G* u] f+ l^ ,- ^) ^) v~ |' l; k! l; ;$ l; ;$ ;$ ;$ ;$ ;$ n+ l+ ;$ n+ l+ C) l; n+ l+ l+ t+ t+ g= r+ z% t+ t+ t+ x+ x+ t+ u+ w+ i= i= C+ B+ A+ K* A+ A+ A+ A+ A+ C+ C+ E+ E+ D+ E+ E+ G+ E+ n; ]7 ^7 L+ C% W2 W2 |} /7 F% G% Y+ f) V+ f) L| F% L| Z+ Z+ Z+ Z+ W+ W+ Z+ _$ _{ @@ @@ '; &@ #@ +@ +@ *@ &@ &@ >@ > w] I% ~; 4$ *@ >@ S> Q% H- *@ '@ >@ -@ '@ )@ Q% T% (7 T% <. S w o Y@ , ) %= *# *# [ ~ ~ | | ~ { 2 | 2 [ ## ~ ## ( { $# ~ $# [ &# a } a 7 g $# ( a 8 / a } b b 6 } Y@ %# $# } ( ; & Q$ # & ' > { -. (. x$ u$ <. x$ (. {. ^. {. ). (* -. ,& &. !. !. &. -. A@ [; E@ G@ G@ D$ E@ X P H$ H L@ T J 1& A ` A z I K@ I ", +"Q$ $ = . $ + ; . # & ; + - & Q$ # Q$ ] > ]& . # $ > - (& ; & ~ & S$ P$ ; | ] ^ - > | > { (& P$ ; | ; N$ ~ ] U) N$ , V~ - > N$ ) ] 2 ~ d } [ 7 [ 6- | [ a [ V) } } i [ 7 } k < : _7 :7 #( #( #( #( <7 [7 }7 |7 n6 $( #( #( ][ -3 c 6 =6 17 #( #( a| 27 37 37 37 37 27 37 27 37 27 47 l< h Y$ 57 {[ #( ][ 67 n^ _# m @= `$ % Y$ 77 r3 #( #( h4 2; C D 2; +( 87 #( m( %( O@ O@ A O@ 97 g} #( #( 07 %> a7 J P@ H H b7 g} #( #( c7 H H 4# W P T G$ d7 e7 #( #( #( #( H< f7 g7 h7 W_ #( #( #( M_ i7 #. +. .. +. A@ $. ;. O6 #( #( #( #( +_ o_ j7 k7 l7 m7 #( #( #( #( n7 o7 1~ a: >. 9# X) X) %% a: D~ /. /. =% ^^ D~ p7 q7 #( #( r7 s7 +: W^ W^ W^ _| =_ b* A] =_ t7 u7 #( w( v7 I! 6^ [| t/ I! w7 x7 #( #( #( #( #( #( #( #( #( #( #( #( +_ y7 o[ O5 z7 A7 K! B7 F~ 15 P5 V{ t[ d/ d/ d/ d/ V{ V{ C{ d/ &^ W{ G~ G~ [ &^ t^ 8] b3 ]1 /_ G| /_ E1 C7 ,/ L} ,/ m{ 0! A_ m{ y/ /] .[ S3 .[ =] =^ Q] Q] z/ Q] =] Q] =^ u^ u^ u^ Q] v[ u^ :_ w[ )2 +{ !2 D7 J^ Z{ Z{ Z{ Z{ Z{ 9) ]~ 7< F{ Z{ e3 `^ H{ ^~ `^ }_ H{ `^ `^ [} [] j/ K^ i( @{ o{ ~) F1 @{ @{ F1 [} C' @{ y^ y^ ~) (~ :! i^ L^ '^ '^ T( c~ [^ j^ %, ] A) A) _~ ] _~ _~ ] k' _~ ] s] _~ w- e~ ] t] d] {/ g, .) i! +! ]) ]) K> i, t] ]) t] >~ G* G* ^) l^ >~ >~ >~ >~ +) u] %$ ^) k; 6> /) /) l; k! l; g+ $ n+ |' ;$ n+ l+ >$ t+ y% s+ x% s+ s+ o+ N> t+ t+ t+ w+ w+ w+ k, B% B% R, K* A+ K* B+ B+ ]$ C+ E+ D+ E+ E+ E+ E+ D+ ;; D+ F+ k= /$ F+ ^7 `5 C% /$ G% V+ V+ Z+ Z+ p; L| p; _$ Z+ _$ Y+ p; @@ %@ _$ [$ :- p; %@ &@ #@ +@ #@ %@ %@ &@ >@ &@ @^ C! U, >@ >@ &@ I% +^ R% q= > '@ I% N* 1$ Q% I% ~@ ,@ ). J % ~# a ~# ( Y@ 1 1 &# &# Y@ :& : / < $# 8 7 b 6 _ ( &# 7 Q{ j ~# e c K= Q{ X$ !# a e L= 0 V$ *= '# 0 a' ,# b b g *= 7 } } $# *# } ] | ~ ] ~ 4& {* E7 k> x@ (. ~* :. v@ v@ z@ B@ A@ !. A@ ). +. @. *. 5# G@ (* L@ D$ X C$ X L@ @. 2# P Z P@ S S E$ I x N@ Q@ N ", +"# . = = k) Q$ . $ R@ + V@ !, > & . + # & U@ & o! V@ * . + . & > | & ' - . U@ ) - ] & > (& H= U@ ; U$ U$ U$ ' J/ ^ - / X@ ~ 2 { Y@ 2 2 N$ N$ ## : W@ [ ] $# [ 1 4 [ a ( < -# /& } } 8 a ( ># F7 G7 d< #( #( #( #( #( #( #( #( #( #( H[ H7 c O' I7 17 #( #( #( #( #( #( #( #( #( #( #( #( #( J7 _[ c ~# K7 {[ #( ][ L7 Y$ ^# w /# u K/ % l< }2 #( #( >6 /# I ^# t +( S[ #( m( i4 N P@ |# M7 N7 #( #( O7 P7 S P@ J 1& H H Q7 R7 #( #( S7 T7 P@ H |# T E$ L 3; U7 ~3 #( #( #( #( #( #( #( #( #( #( 4: V7 W7 $% .. @. 5# 7# e- +. X7 Y7 +_ #( #( #( #( #( #( #( #( #( #( #( :6 Z7 J: %% '& b# ;} u! |3 0/ J: /. a: ~. =2 ~] 3~ `7 i[ #( w( 8 +: +: +: 3~ W^ .8 5^ =_ {] +8 @8 #8 #( #( ~} $8 6^ 8^ =/ 6^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 o[ }5 b/ N3 V: |5 -8 M4 P5 C{ C{ d/ d/ t[ >/ C{ C{ F~ C{ {1 ;8 Z< >8 b3 ): Q5 ,8 '8 a3 )8 )8 Q4 L} :} I^ L} 0! ,/ m{ ,/ m{ 3| A_ A_ 3| A_ d3 Q] 6< x/ 6< u^ 45 u^ u^ =^ u^ u^ u^ 6< =^ <_ H| 2{ b^ a^ !8 b^ F{ Z{ F{ F{ Z{ F{ Z{ Z{ F{ 9) 9) 3{ ;] [] K^ `^ `^ `^ }_ s~ 3{ ^~ }_ H{ ~) ~) ~) ,^ U] C' G{ ~8 F1 ~) @{ @{ ~) t: u: '^ t: u: b] q{ u: [^ A) _~ _~ _~ _~ _~ ] k' _~ ] ] ] _~ ] _~ -~ 84 ] ]{ e~ e~ e~ .) #{ e~ ,] .) ]) .) u~ .) .) u~ e= >~ l^ >~ L{ >~ ^) >~ ^) u] e= ^) k; k! |' Q, l; /) ;$ ;$ l; n+ ;$ ;$ l; Z] l+ l+ l; ;$ l+ ;$ ;$ l; l+ l; l+ y% y% t+ i= i= t+ s+ i= u+ '$ x+ x+ '$ x+ x+ A+ A+ B% F+ C+ B+ C+ C+ C+ A+ C+ A+ E+ E+ C+ C+ D+ D+ >; F+ F+ /$ S~ W2 G+ {8 Q+ G% F% G% T+ V+ V+ V+ V+ Y+ Y+ Z+ L| _$ +@ @@ Z+ _$ p; #@ &@ &@ #@ #@ <- %@ &@ %@ %@ >@ e] e] %@ &@ %@ Q% r; !; ,~ ]@ 4$ >@ 7$ (@ )@ 95 R% ]@ n, &. }; w /# ~# ~# [& o e *= ~# e 8 g 8 2* e e e b X$ 9- ~# h c h c _# 4* r Z$ t w % m ^# Z$ t ^# `$ o p -) p Y$ 9- o h e V$ c a b i 6 | ## N$ # { $% -& q@ N- u@ B= s@ w@ w$ (. ^. x@ !. 0# &. .= z@ z@ z@ E@ z$ )= 2# .= z$ G@ 2# }; G@ T 4# L }; O J M Q@ z z B #= ", +"+ ; T@ X! # . # = . $ ]& # . > . # $ # # ; > # = ]& . Q$ > ; > ; ^& ] 2 H= # ) X@ ; U$ & & & ; R$ | | ; | ) 2 N$ ^ W@ | | 4 X@ 2 /& [ 6 X@ ( | => / Y@ [ W@ 6- 9 ,# 6 d b d 7 k d 6 ( 8 ]8 ^8 ][ #( #( #( #( #( $( /8 (8 _8 c s> `$ =6 17 #( #( #( #( #( #( #( #( #( #( #( #( #( )[ /2 C; 6 ~[ c} #( ][ q3 h p p 1; b' m G :8 <8 #( #( u6 Y$ w -= 2; [8 }8 #( m( n( A o^ G |8 #( #( '3 18 ~& P@ I K 3& E$ H |# 28 38 #( #( 48 o} L@ L@ r! D$ Q 58 P 68 78 88 #( #( #( #( #( #( 98 t5 08 @. X L) ,. .. e- C@ %. >. $. a8 b8 c8 q1 #( #( #( #( #( #( w( d8 e8 f8 9# 5; q/ %% J: d[ q/ J: 1~ f[ J: 0/ /. /. ^^ g8 h8 #( #( i8 j8 W^ w{ +: W^ W^ +: q^ =_ _4 g{ (4 k8 l[ #( #( >_ t/ 6^ =/ 8^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 A{ w/ !1 P5 |5 C1 -8 B] l8 ;/ V{ d/ w/ W: t[ d/ V{ t[ >8 t[ &^ Z< Z< Z< m8 n8 b3 D{ o8 '8 u[ 25 ]: S4 m{ 3| ,/ ,/ A_ ,/ M} S4 p8 ,/ ,/ ,/ 3| =^ Q] =] .[ d3 =^ 6< q8 34 u^ 6< v[ 34 v[ !8 <_ 9) F{ ^1 <} <] Z{ F{ 9) F{ F{ F{ J^ F{ J^ Z{ Z{ J^ 3{ ;] H{ `^ 3{ 3{ 3{ `^ j/ r8 K^ `^ G{ ~) C' j/ G{ y^ @; G{ F] ~) ~) @{ y^ @{ @{ c~ i^ F] D' T( P! r{ [^ 2_ k' ] ] _~ _~ ] _~ k' k' ] ] ] $[ >] A^ :~ _~ Y] i! i! e~ .) g, e~ .) ]) ]) V3 ]) .) ]) >~ >~ ^) e= e= e= e= ^) >~ G* 6> i, ^) k; k; G* @) C) k; ;$ l; @) @) ;$ ;$ ;$ l; l+ l+ ;$ ;$ h+ ;$ l; ;$ l+ l; ;$ y% t+ s+ u+ t+ t+ s+ u+ N> '$ s+ '$ s+ w+ C+ B+ C+ D+ D+ ]$ C+ A+ y+ C+ m; A+ E+ A+ E+ E+ C+ C+ D+ n2 D+ C% o2 `5 W2 W2 G% G% G% Y+ Y+ V+ V+ Z+ Y+ _$ G% _$ _$ #@ #@ +@ p; '; _$ p; @@ %@ #@ #@ %@ %@ %@ *@ %@ &@ =@ [- *@ *@ *@ Q% I% e> )@ M% =@ '@ *@ >@ >@ I% e> -@ |@ A@ P b- D ,> ^# ^# m h p c{ _# ]# m 9- r ^# `$ D y C C D w `$ z G P@ G I x I Q@ A P@ S P@ P@ Q@ S Q@ P@ N G {& w w D D D p m r h e e a [ : { ,= j@ ~* -& x$ E7 t@ 1. x$ x$ x@ '. x@ A@ B$ ). 5# )& E@ E@ *. G@ V E@ }; @. ,= H $> J P 1# H Y M@ 1# S M I A x ", +"= $ 0' + R@ Z, M$ $ $ $ = o! + + ]& . S$ Q$ .( # N$ > . > $ ; > > = - ^ X@ | ^ ~ > ^& | ] H= N$ ; > - & ] ! ] ^ $# W@ ] / { *# | | N$ ~ 6 D, ## } 6 2 J= W@ [ ( { 3* d } ,# 1 ( :& d => 7 6 6 Y> 6 s8 t8 u8 v8 w8 x8 y8 z8 I7 a e *= a h g A8 B8 C8 B8 D8 E8 D8 F8 E8 G8 G8 E8 B8 H8 I8 L= 6* c p J8 K8 L8 M8 Z$ ,> p p ^# ^# #= % N8 O8 P8 m| N % G G ^# Q8 R8 S8 T8 P@ P@ }# U8 V8 S8 W8 M E$ 3# M z M A z I L X8 Y8 Z8 `8 M I@ P I@ @. E^ V O= y@ G$ 9 .9 +9 @9 O_ #9 $9 %9 O= .. . X .. 4# z$ .= $. .. &. F^ Q' ;' 9[ &9 *9 =9 -9 ;9 >9 ,9 '9 )9 d[ Y6 !9 ~9 {9 a: %% B5 7, X) X) ^^ ^5 ^5 ^^ 5& ~] ~] ]9 ^9 ^9 /9 w{ w{ +: =2 W^ W^ w{ Q/ (9 (9 G5 _9 :9 <9 [9 }9 |9 s/ I! 6^ I! 6^ 19 29 39 }9 29 49 59 69 79 89 99 49 09 99 H} o[ 0^ X~ z7 a9 V: P5 W: l8 b9 c9 V{ d/ W: W: C{ C{ >/ d/ t[ Z< >/ `~ t[ |/ `~ G~ 7] d9 a3 h( 25 e9 S4 f9 g9 p8 ,/ A_ ,/ 35 h9 i9 j9 h9 M} i9 x/ =^ __ d3 x/ u^ =^ 6< __ =^ u^ u^ v[ v[ v[ v[ +[ w^ !2 A/ !2 F{ 9) Z{ 9) 1> F{ Z{ <] F{ Z{ J^ k9 7< `^ K^ [] 3{ i( `^ `^ [] }_ [} H{ ,^ G{ ~) [} F] G{ ~) @{ C' ~) y^ ~) @{ ~) y^ u: :/ B/ `' A) l9 A) [^ 2_ ] _~ k' ] k' ] _~ ] ] ] k' _~ ] :~ -~ w- _~ ] ]) d] e~ ,] N^ d] k^ t] ]) u~ t] ]) ]) ^) l^ !^ ^) ^) e= ^) >~ G* ^) u] +) ^) ,- ,- G* /) /) k; l+ ;$ C) l; ;$ ;$ @) l+ l; l+ |^ l; l+ l+ g+ l+ ;$ ;$ n+ y% y% u+ '$ '$ t+ i= s+ o+ u+ t+ w+ w+ w+ A% B+ R, G+ D+ A+ K* B! m9 E+ C+ C+ E+ I+ I+ D% E+ E+ D+ F+ D+ M+ /$ n9 G+ G+ ^7 N+ /$ Y+ Y+ Y+ V+ Z+ T+ f) p; _$ Y+ W+ '; %@ #@ p; p; %@ +@ +@ #@ &@ %@ &@ #@ &@ %@ <~ *@ +^ <- &@ *@ W, (@ e> (@ >@ >@ G- (@ (@ U, =@ >@ o9 b$ ^. C$ P@ P@ P@ P@ ` L@ S +% 1# H@ G A I S H$ M A S H E$ ` U J C$ E$ P C$ L@ }; 7# V F@ %. +. @. 5# .= .= B$ B$ z@ H 2# H@ 2# H ` a- T D Q@ x p r g e 6 6! L@ j@ ~* -& :. d# q@ ;& (. l> !. &. 0# 5# >. z@ ). x@ .. &. z@ )= E@ V L@ L@ T J H 4# Z P@ ` +% M O@ A S K@ b- I ", +"I/ Q$ . Z, p9 $ = = L$ > # & ^ Z, ]& + # + N$ ) N$ Q$ |* - . ; . Q$ Q$ Q$ U$ Z! ] & ] > }* ] | | X@ ; 2 & ^ 2 N$ ~ Y@ / ; < O$ ~ 1 N$ ( ## ] ~ ( *# d d | ] ) X@ } ## 1 T$ { : a ## ( =# 6 [ $# 9 5 / d } == 6 ,# e d &# e o } 7 Q{ V$ r j i e [& Y@ h Y$ o 8 8 L= n c ~# n s> L= X$ u `$ `$ E, Y$ D Y$ t t t h `$ G w {& ^# ^# A F= ^# G I w `$ G F= P@ /# m) %> I A S Q M O@ 1& 3; S |# a- I T Q@ d- Y 4# P@ 4# L@ P@ L@ V d- q9 @. 7# O= T @. @. r9 r9 r4 R .. +. ,. Q' =. =. =. ,= C@ =. )& B$ $. C@ . >. $. b: 9/ *. !. ,. A@ ;. b: &. 9# 82 Y6 q/ %% %% ;} X) X) a: /. %% 1~ 0/ f[ ^^ ^^ 5] W^ w{ W^ w{ W^ W^ =2 (| .8 F3 F3 s9 t9 u/ u9 I! v9 w9 8^ 8^ '! x9 I! 6^ 8^ =/ 8^ =/ 6^ v/ M3 j{ b/ o[ b/ H^ b/ y9 o[ b/ ~1 K! z9 A9 V: || r) || C1 F~ F~ V{ F~ F~ F~ d/ d/ >/ t[ `~ >/ G~ a3 >/ [ &^ [ ): a3 f( Q4 Q4 R4 )8 B9 3| S4 35 ]: 35 C9 h9 S3 S3 3| S3 x/ =] =^ 3| 9~ x/ x/ u^ =^ =^ v[ 6< v[ v[ 6< 6< D9 I| a^ 9) H| b^ Z{ Z{ ^' F{ ^' Z{ Z{ F{ J^ Z{ F{ J^ 3{ Y{ `^ 3{ `^ `^ `^ }_ C_ W4 j/ K^ <^ @{ ~) y^ ~8 E_ @{ y^ @; @{ @{ ~) P! @{ t: Z: h^ u: k' W] Y: b] b] A) _~ ] k' k' ] $[ ] ] ] :~ _~ _~ _~ _~ g, Y] s] d] e~ i! i! ]) ,] E/ .) .) #{ >~ ]) .) l' u~ G* e= e= e= ^) >~ l^ l^ +) M{ >~ +) /) i, H* P, @) k! l+ *, @) l; l+ k! ;$ l+ ;$ l+ l+ ;$ ;$ ;$ l; ;$ ;$ ;$ A- t+ y% t+ >$ '$ s+ t+ t+ w+ o+ u+ w+ )$ x+ B+ B% A+ C+ C+ C+ E+ D+ C+ C+ E+ E+ E+ D+ D% C+ D+ D+ G+ W2 G+ L+ G% D+ G+ D% (- T+ T+ V+ V+ T+ F% G% Y+ Z+ Y+ L| _$ _$ #@ #@ p; <~ <~ %@ +@ #@ %@ %@ %@ &@ %@ <~ %@ &@ C^ $/ > &@ 1$ R% * '@ >@ >@ l, C! -@ [- >@ Q% > +] m@ b# v@ F, x@ d# t@ ^. (. v@ {. :. s@ ). (. >& :. q@ v@ p, v@ 5& {. (. 9& 9& Q- :. <. v@ 8& o@ x$ q@ m@ E9 o@ {* W* -& q@ x$ 1. o@ :. !. v@ ~. F, A@ b# 6# 5# H S M A 2; 1; D P@ h$ f@ j- p@ u@ F9 :. ^. w$ 9& '& '& A@ V> A@ )& ). .= V =. .. 5# V ,. G$ |; S Y E@ P Y H$ Q@ O@ O 8* N@ A N J ", +"R@ . $ + 0' .( # . ]& > = # > > > # > $ - U@ & ' ^& Q$ > $= ; ; S$ S$ ^ ; . 2 ] T@ S$ ~ | H= ; & H= U@ ] ] { { ; ' [ R$ W@ 2 *# ~ G9 } 2 *# 6 } ) 2 W@ } } 1 4 6 7 ) { D, ,# } ( ~ 2 == 6 J= [ $# ( ~# [& d d 7 6 :& g 9 9 ~# 5 r e i 0 e j g c n ~# 8 0 n L= ~# c ^# 2, p ~# c Y$ ^# |& t Y$ n Y$ q t 4* m /# t /# b' 4* /# m A I w G z w I /# K |{ z A H$ c- O@ :* M |# H$ O@ H J L |# T D$ L@ |# |# C$ J L@ 4# P' 58 H I@ O= L r9 ={ r5 H9 R{ )= X X . !& #. >. =. >. z@ +. e- /3 r4 .= $% $. $. 4) 6# &. A@ ;' v{ Y6 b: b: 9# b: Y6 9# H! '= 0/ J: x4 r/ %% X) J: '. y4 ^^ =2 w{ w{ &% +: w{ F3 F3 +: W^ W^ F3 q^ 5^ W^ , I9 S{ 6^ 6^ _9 :9 t/ 8^ 6^ 6^ 6^ =/ =/ =/ L4 J9 K9 j{ j{ o[ j{ H^ b/ }5 b/ o[ X~ B7 z9 |4 /} V{ r) V{ F~ C{ C{ F~ t[ V{ C{ d/ C{ d/ >/ C{ >/ `~ Z< Z< Z< Q5 a3 h( L9 Q5 P3 Q4 L} u[ T5 c3 Q4 M9 c3 M} A_ 3| d3 S3 M} S3 T3 Q] Q] z/ x/ =^ =^ 6< 6< 6< v[ v[ v[ u^ 6< v[ u^ <} 54 Z{ I| N9 J^ F{ F{ Z{ F{ Z{ Z{ F{ ;] F{ C_ 7< W5 O9 3{ `^ 3{ O! ]~ `^ 7< [] j/ K^ [} C' @{ ~) F1 <^ @{ @{ ~) y^ @{ @{ y^ y^ @{ Z: y^ k/ k' |_ Y/ [^ C/ j^ k' _~ ] _~ _~ k' %, ] _~ ] k' _~ :~ ] i! d] Y] X4 i! e~ e~ N^ +! e~ N^ t] ]) >~ R! ]) ]) l^ ^) e= >~ e= G* e= >~ G* G* ,- G* e= k; e= G* |' l; @) 6> ;$ @) l; ;$ l+ ;$ l+ ;$ l+ ;$ n+ l+ l; l; l+ ;$ f= >$ t+ y% '$ l+ >$ t+ s+ '$ u+ s+ w+ u+ w+ x+ z+ A+ w~ C+ A+ A+ E+ E+ F+ D+ D+ E+ D+ F+ C+ D+ E+ D+ F+ G+ G+ G% G% {8 W2 P9 n9 V+ V+ Y+ V+ Y+ V+ F% f) f) Y+ Z+ Y+ &@ +@ @@ @@ p; p; &@ p; &@ %@ +@ &@ %@ &@ +@ &@ &@ %@ > E- *@ >@ ,~ q= '@ >@ > *@ *@ >@ '@ !; *@ Z& '~ & i@ Q9 *& w; (; T* 0$ c$ f$ @* |@ R9 S9 T9 r' l$ w; -* w; ;* 7@ 9@ w; 7@ +] 4@ S9 g$ 0$ 4@ n, R* ,@ U9 V9 w= 0$ W9 {; @* L- f$ v; 4@ 8@ X% 7@ y= S9 r' f@ )* *& q@ 9& &. F, z@ #. $% 6@ n$ l@ l@ {* -& (. u@ '. ). ^. &. e- &. ,= *. .= [, 5# @. .. ,= C$ E@ E@ ` M@ |# P D$ C$ Y ` K@ P@ S K@ M A +% ", +"$ Q$ + + = !, > . $ Q$ V@ # ]& T@ & Q$ H= ^ > H= U@ . > ^& N$ # 5_ N$ P$ Q$ - ] ; T- & | . U@ ~ < N$ S$ N$ N$ ; U@ & ~ N$ ~ | ! 4 | N$ N$ < 2 { 2 > ) ~ W@ ) ) { 4 1 { *# 7 [ ) Y@ J] d == { $# } i a &# i 6 k 6- 7 8 a 6 a X$ V$ 8 c a $# 6 ># L= g g D o n ~# j ~# n h a h Z$ n^ h Y$ n ,# Y$ ;= m 2, n p o 1; D D /# z /# ^# w {& n! C #= z x q w N D |# B M H$ E$ T E$ A I E P@ 1& M Y h] E$ O L L 3) d- s! O= J V }; C$ C$ P P' I@ 7# H 7# H@ J d- C$ . r5 X9 +. +. Y9 @. =. =. $. ;' ,. $. )& =. >. /3 ;. :3 Z9 5; ;. Y6 b: 82 5; b: ;} x@ '& !. A5 `9 X) X) '. X) f[ 0/ L] ~] ~] ~] 3~ W^ +: W^ +: w{ W^ W^ F3 +: +: 66 0 .0 C} +0 @0 6^ #0 .0 >2 T2 8^ T2 6^ =/ T2 $0 %0 K4 K9 b/ y9 &0 S: o[ }5 }5 b/ *0 H^ A9 P5 -8 =0 V: V: -0 15 F| C{ V{ F~ V{ >/ C{ G~ W{ V{ d/ &^ `~ &^ f( f( [ &^ Q( b3 a3 Q5 ;0 ]: L} )8 ,/ m{ 3| 35 R4 ,/ S4 d3 3| i9 35 >0 x/ =^ =^ .[ d3 __ U3 v[ 6< 45 =^ v[ 6< v[ v[ u^ H| +[ b^ A/ +[ a^ J^ F{ Z{ )2 !2 J^ 7< F{ 7< Z{ F{ J^ 3{ 3{ W5 }_ i( 3{ `^ D] 65 j/ K^ <^ ~) @{ C' @{ G{ ~) ~) @{ ~) ~) @{ :/ @{ P! Q) i^ t: Y/ #[ ,0 @[ Z: 2_ _~ _~ k' ] g3 ] _~ ] k' :~ :~ %, _~ _~ '0 D/ w- _~ e~ d] e~ #{ N^ e~ ,] ]) ]) G* ^) t] u~ >~ e= >~ >~ >~ ;~ +) k; >~ e= k! k; ^) %$ %$ ^) f+ /) |' ,- g+ /) ;$ |' l+ l+ g+ ;$ l+ ;$ n+ C) >$ n+ l+ ;$ h+ l; |! t+ y% r+ h+ -; t+ s+ w+ w+ '$ w+ u+ x+ y+ A+ C+ E+ y+ A+ A+ C+ E+ C+ E+ D+ D+ D+ E+ G+ E+ E+ D+ >; ]7 Q+ G% O> F+ F% 94 S~ U& Y+ Z+ F% Y+ f) ,; _{ Y+ _$ Z+ _$ p; p; #@ p; p; p; #@ %@ %@ +@ %@ %@ ~; *@ *@ *@ &@ $@ $/ [- &@ *@ K% *@ 1$ > V, >@ >@ *@ > K% +^ :@ )0 !0 ~0 {0 ]0 ^0 /0 (0 _0 :0 <0 [0 }0 |0 10 20 30 40 50 60 70 80 90 00 a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0 n0 o0 G_ Z; p0 q0 r0 s0 t0 u0 S> $@ > G- q= w= 5$ 4' V* z= v0 w0 7@ {* +] h$ =* l@ m@ <. x$ w$ ^. v@ :. ^. %. x@ 5# &. . )& A@ .= ;. 5# z$ E@ C$ T P@ L@ Y H$ H$ M H J O P@ P@ I A M ", +"* * . ' L$ $ + & $ 0' = X! ]& # $ # = Q$ . H= + & ' N$ Q$ H= o! | H= [* - ~ =' ~ . & ] ~ ; ) 4 ~ ~ ; ] ] > & P$ U@ [ W@ ~ H= W@ { ## ; ;# { ] 8- < < [ { 6 ## 1 ) $# ># x0 6 Y@ } } 1 c 6 9 6 i 0 2* 6 [ 0 k 6! n L= a >> ~# 7 0 3* Y> a h 0 e r e 8 c E, n K= r Y$ c n p % }& L= o h r m ^# Y$ r Y$ c h h Z$ 0- m /# D `$ w /# `$ m x )> z z z :# O@ K N M P@ M E$ w A |# L@ w |# M d- 3) E$ I@ C$ Y I@ T J T U 3; L@ C$ E@ T G$ G$ d- H X O= y@ 4# y0 @. n) +. $% $% E@ +. $. /3 $% z@ . ;' L) A@ z0 )& A0 Y6 v{ $. :3 b: Y6 b: Y6 Y6 H! x@ '= J: x4 %% J: J: B0 << ~] << 4] D~ =2 W^ w{ w{ w{ w{ 3~ w{ 3~ W^ +: W^ k~ +8 .8 C0 D0 6^ 6^ E0 F0 G0 J4 =/ H0 [| 6^ =/ 4< =/ =/ S: }5 o[ H^ H^ }5 }5 }5 o[ b/ }5 A9 }5 ~1 a9 I0 l8 P5 r) B7 C{ C{ d/ C{ d/ d/ C{ >/ C{ d/ C{ Z< i2 H~ Z< Q5 a3 J0 Q5 n8 Q4 E1 K0 A_ ]: L0 ]: m{ ,/ m{ ,/ A_ h9 35 M} d3 ,/ S3 =] Q] 3| A_ 45 u^ 6< v[ 6< 6< v[ u^ 6< v[ v[ D9 44 D7 )2 H| N9 /1 9) F{ /1 Z{ Z{ 7< J^ 7< J^ J^ C_ 3{ 3{ ^~ `^ }_ 3{ 3{ s~ K^ }_ S] S] <^ !/ @; @{ @{ @{ U] @{ ~) @{ @{ y^ t: @{ y^ r{ V] y^ r{ M0 y^ Z: N0 D' %, g3 ] ] :~ _~ _~ k' _~ _~ ] ] ] O0 X] -~ ] ]{ t] d] ,] l' i! g, t] .) t] ]) t] ]) R! ^) ^) u~ >~ i, u~ e= >~ ^) e= k! G* e= G* +) u~ }' }' k; l+ ;$ ;$ ;$ ;$ P^ @) Z] l+ l+ l+ h+ t+ n+ l+ l+ l+ ;$ =, t+ s+ s+ r+ u+ t+ t+ s+ t+ t+ s+ u+ !$ w+ w+ x+ A+ K* C+ E+ E+ C+ E+ D+ E+ F+ E+ E+ F+ D+ F+ F+ |} |} F+ k= G% G+ F+ G+ C% G% F% F% Z+ Y+ F% F% f) Z+ V+ Z+ Z+ _$ #@ +@ d^ [$ '; '; %@ %@ #@ &@ &@ #@ %@ %@ %@ *@ Q% $/ 1$ V, >@ 1$ !; !; p= >@ >@ *@ &@ %@ P0 Q0 R0 S0 T0 U0 V0 W0 X0 Y0 Z0 `0 a .a +a T0 @a .a a #a $a %a &a Z0 *a =a -a ;a >a ,a 'a )a !a ~a {a ]a ^a /a (a _a :a . > !, . S$ # + & N$ T@ ]& | - $ . > $ # H= ; ; ] P$ N$ > V@ | ~ | 2 ] | { > ^& ; 2 ^ W@ ~ ; U$ ## ( X@ 1 ) *# 2] N$ . X@ ## ~ ) == d W@ ( W@ } /& 1 } 7 q> } ( } b 6- $# i 0 &# $# } 7 ># ,# e a 6! d W$ r 0- 7 a L= 9 } e ~# e c r n Q{ g ~# c h ~# Y$ p n ~# p ^# m % p n D % n 0- h ^# `$ F= m m Y$ 4* 1; /# M= A m K M O@ F= ~& O@ I S M J z E$ E$ K M M 8* M A |# 3& J d- T C$ U ia L@ 4; C$ 3) O= O= G@ W ={ C$ T 7# W y0 ja r5 y@ 8# F^ G; C@ =. 8# ;' =. $% ,= =. Q' =. ;. :3 ;' /3 9/ Z9 Z9 9# %. b: 9# 9# Y6 b: Y6 '= %% %% X) X) r/ ^5 f[ ^5 ^^ ~] =2 ^^ =2 +: w{ W^ w{ W^ F3 ]4 13 +: F3 (4 +8 =_ ka la S{ 6^ >2 +0 8^ 8^ I! $0 ma I! 6^ =/ L4 L4 %0 j{ }5 o[ }5 na H^ b/ b/ *0 oa pa |4 }| -8 |5 -0 P5 V{ I0 l8 M4 d/ F~ C{ >/ >/ >/ C{ Z< t[ Z< Z< Z< Z< a3 &^ Z< Q5 Q5 Z< ): P3 R4 m{ 0! 0! m{ ,/ A_ ,/ 3| A_ S3 3| ,/ .[ S3 d3 =^ =^ d3 __ Q] =^ =^ 6< u^ =^ =^ u^ R( R( v[ !8 54 a^ qa I| /1 Z{ Z{ J^ J^ F{ F{ 7< J^ 7< C_ 7< `^ ]~ O! `^ `^ `^ 3{ }_ f3 W5 K^ _1 K^ @{ ~) F] @{ @{ (~ @{ @{ ~) ~) y^ y^ @{ @{ :/ '^ B/ @[ @[ y^ t: b] b] :~ ] ] _~ k' ] ] ] k' |_ ] _~ ] ] :~ i! >] _~ ]) e~ d] < k^ e~ e~ ]) ]) t] ]) t] ]) i, ^) ^) ^) ^) ^) ^) >~ e= G* ,- e= e= k; ,- e= ra .] Q, f= l; ;$ ;$ g+ ;$ l+ /) ;$ l; l+ ;$ r+ l+ m+ l+ ;$ n+ l+ r+ t+ s+ '$ w+ '$ '$ >$ s+ x+ '$ '$ x+ x+ v+ x+ A+ A+ A+ A+ E+ E+ C+ A+ A+ C+ E+ G+ G+ D+ D+ F+ >; |} sa k= /$ o2 F+ W2 W2 o2 G% C% f) F% V+ p; L| f) _$ _$ _$ #@ #@ +@ #@ +@ p; %@ %@ #@ &@ %@ %@ *@ %@ &@ &@ &@ 1] E- 1] &@ q' U, *@ D- >@ >@ &@ *@ &@ %@ @@ ta ua va wa xa ya ya za wa Aa Ba Ca Da Ea Fa Ga Ha Ia Ja Ia Ka Ba La Ka Ma Ba Ma Ga Na Na Ha La Ha Oa Ha Pa Qa Qa Ha Ra Sa Ta Ua Va Va Wa Fa Aa Xa Ya Za `a b .b +b #a @b #b $b %b &b *b =b -b 4@ e@ *& u@ a. u@ h# t@ v{ C@ A@ x@ 5# A@ 5# ). &. @. X )= F@ !> 5# T X L@ H J Y J@ Z P@ S J Q@ N= N |; A ", +"L$ J$ ;b [* ]& R@ L$ + - # R@ # ]& ]& 1) [* Q$ !, & V@ + ] . . U@ }* N$ k) ' . & U@ ; Q$ > S$ T- | ; ) 2 N$ ## > X@ N$ X@ .# %= ~ - ! ^ | | / { | *# , ^ ;# /& $# $# { W@ { W@ 1 } { [ { ( / { } $# } < < ( Y> d 3* 0 a a a < J] e &# ~# e a ,# a ~# $# b d 8 g h F! e V- 6 o d _# ;= 2, r |& L= `$ `$ h % Y$ b' F 4* 4* m t ^# Z$ 1; ^# G w w y /# w I ^# t [# w I A I H$ C z I H |# M P@ M 8* J U E$ I@ K) D$ T J C, E$ 4; T G$ L C$ >) r9 O= G$ I@ X R X a* a* . r4 @. r9 G; ,. $% +. )= +. A@ /3 /3 :3 y@ +. ;' ,. &. =. ~( &. ;. 9# Y6 >b 9# b: b: !9 b# J: x@ 0/ J: a: x4 w{ 1~ r/ ^^ a: =2 D~ ~] w{ w{ w{ F3 W^ F3 +: F3 +: +: ,b +8 'b )b C0 'b L5 I4 !b =/ _| =/ ~b =/ 6^ L4 M3 &0 L4 M3 L4 b/ o[ b/ %0 o[ b/ }5 }5 a9 c/ U/ B1 |5 P5 M4 l8 V{ V: F~ C{ d/ d/ C{ t[ d/ d/ `~ >/ >/ Z< &^ Z< &^ I~ z_ Z< n8 n8 Z< ): 2| g9 {b g9 m{ m{ ,/ A_ A_ m{ ,/ y/ 9~ =] .[ d3 3| =] =^ .[ S3 =^ U3 z/ 6< 6< v[ u^ v[ 34 R( 6< H| I| <] a^ 54 )2 Z{ Z{ 7< J^ J^ J^ 7< F{ Z{ Z{ J^ 7< }_ 3{ K^ `^ 3{ }_ 3{ j/ O! `^ j/ [_ @{ y^ J| (~ G{ M^ @; G{ W4 @{ @{ ~) @{ t: t: Z: @{ y^ b] y^ y^ C/ [^ A) ] ] j^ 2_ ] ] ] ] ] ] _~ _~ P} ] )^ X] _~ -~ e~ d] N^ .) #{ d] .) .) ]) k^ t] .) .) e= ^) e= e= e= ^) e= >~ e= M{ e= e= M{ ;$ +) H* S) |^ k; l+ l; l; l+ ;$ l; C) l+ n+ ;$ l; A- l+ ;$ h+ ;$ h+ l+ l+ s+ t+ '$ '$ 8> '$ o+ s+ w+ t+ s+ u+ !$ u+ !$ A+ C+ C+ C+ B! C+ C+ y+ E+ C+ C+ F+ E+ F+ D+ D+ F+ i3 F+ Q+ /$ G% F% ^7 W2 C% F% f) V+ f) T+ Y+ F% _$ p; V+ Z+ +@ R> d^ +@ +@ '; p; '; #@ %@ %@ &@ #@ #@ I% e] >@ 4$ >@ E- E- Q% >@ *@ &@ '@ *@ >@ *@ %@ @@ `; ]b ^b /b (b _b Ia :b .. 5# A@ W> &. 5# $% .= .= 7# V P z$ Z H P D$ H O@ P@ Q@ P@ I I N ~& I ", +"L$ 0' Z, Z, + . ]& L$ (& ' o! . ; & $ > T@ T@ V@ # & > # U@ ] N$ Q$ | H= $ ; ' S$ - > ; | ^ & | ) | N$ | ] S$ P$ | < ;# | ~ ) %= N$ 4 ; ~ I= ( # ~ 2 [ ) ( 6- / < Y@ [ 5 6 7 ) 7 ,# < ) 9 7 ~# &# 0 a '# ( < ~# $# 6 q> 6 e 6 6 ,# 0 7 b L= e 3] c n p {# Y$ 0 2, n h c n g h 0 n^ h h p C; E, Y$ ^# h 5* p `$ N {& b' m ,> #] w D 1; G w 2; w w D Q@ P@ O@ I E$ O@ P@ P@ H M J z P@ M H M@ E$ Q H$ S J J L@ M L@ O= P G$ r! P r9 X @. T 58 . y@ L X +. . +. @. .. 5# W e- ,. +. +. [, R' 6# ;. ;. $% ~( ~( v{ z0 <3 zb t( 6# 5; b# 9# d[ 7, 7, J: b# J: '. X) 7, Ab 7, 1~ y4 W^ f[ =2 W^ w{ 13 +: F3 F3 +: 0 Bb Bb +: F3 Cb Db Eb :5 6^ +0 @0 6^ 8^ 8^ K4 M3 E0 K4 8^ M3 L4 M3 H^ o[ b/ K9 ,2 b/ b/ }5 }5 -8 -8 B1 14 -8 B] F~ F~ W: O3 W: t[ W{ V{ d/ d/ d/ C{ &^ >/ t[ >/ Z< Q5 a3 a3 Q5 a3 Z< Fb a3 f9 {b {b ,/ S5 E1 ,/ S4 A_ ,/ Gb C9 y/ Hb 3| h9 3| .[ x/ __ T3 Q] =^ v[ v[ 34 =^ u^ v[ q8 34 v[ v[ H| 54 V4 +{ I| <_ Z{ ;] Z{ F{ J^ Z{ C_ Z{ C_ 7< C_ 7< 3{ ;] 7< 3{ [] 3{ `^ `^ 3{ T] [_ @{ ~) @{ !/ y^ y^ @{ ~) @{ ~) t: y^ @{ y^ h^ :/ i^ @{ `' C/ :/ :/ [^ t: 2_ _~ j^ k' 2_ _~ _~ 2_ #[ :~ ] k' ] #[ Y] e~ ] X] A^ e~ i! ,] t] d] ]) .) ,] ,] u~ ]) ]) R! ;~ ^) e= e= e= e= G* G* G* ;$ ,- e= G* G* G* .] l+ k! j+ g+ P, ;$ ;$ l+ l+ n+ l+ ;$ ;$ f= l+ n+ h+ l+ ;$ ;$ l+ r+ s+ i= r+ M& t+ s+ s+ '$ s+ x+ '$ !$ !$ '$ H/ B+ A+ C+ E+ E+ F+ E+ E+ C+ D+ E+ E+ W3 C+ D+ D+ Ib W2 F+ /$ /$ G% F% ^7 94 V+ Y+ Z+ Y+ Y+ Y+ V+ f) _$ '; V& _$ :- Jb :- #@ '; p; #@ #@ %@ *@ &@ &@ &@ &@ &@ %@ >@ #@ *@ I% W, >@ I% $@ I% r; *@ #@ #@ +@ %) Kb Lb Mb Aa Ba Nb Ob Pb Qb pb Rb Sb Tb Ub Vb 8b Wb 3b 3b Xb 6b bb pb Tb xa Yb Zb `b c |b |b }b 7b 7b pb pb }b 1b .c +c @c lb #c $c %c %c %c %c lb &c +c db *c =c -c ;c >c ,c 'c `a )c !c ~c .@ T% l$ m$ k@ =& w$ x$ u@ O- ^. ). &. e- &. $% 6# 3^ .= 5# 5# 5# C$ +. D$ Q D$ D$ 2# H 1# L@ H 2& 8* A b- Y G S ", +"$ ; > * ]& . T@ $ ]& ; Q$ = > o! = > + + > ; # Q$ !, ]& * U@ & . & {c . . & ~ N$ ^ ; ^& ^ $ & N$ & S$ /& 2 ' S$ { { | & | ^& ~ | ) { ~ *# | ) 7- ^ [ W@ 2 $# < [ 4 ) Y@ a 6- 9 ,# < ( e 6 7 $# d e i a &# ( 8 a q> 6 7 7 7 ~# k 8 b N' 8 ~# k ,# Y$ c [& L= h `$ Y$ ]c `$ L= n p n Y$ h `$ Q{ ~# D p m % Y$ 4* ^# :# t F= ^# D D ^# C z ^# M z D w G O@ N z P@ Q@ b' M@ M 3& O@ ` O@ z I |# P@ J z K@ L L 2& P' I@ J P 4# G@ L E$ H@ Q' r9 !> y@ @. G; @. Q' E@ ,. +. y0 #. L) L) )= )= $. =. A@ =. 6# >. 6# >. 4- V^ =. ^c A@ 9# Y6 b: 7, 7, Y6 Y6 >b d[ u! L] u! 1~ << r/ f[ X) =2 f[ W^ f[ B0 W^ W^ *_ W^ +: +: Bb F3 W^ +: W^ 13 v9 t9 /c (c I! _c !b :c / t[ C{ Z< d/ }c `~ `~ a3 a3 a3 &^ Q5 Q5 t^ ,8 |c Q5 Q4 S4 f9 3| A_ m{ S4 L} 3| L0 35 35 d3 h9 3| d3 x/ __ __ Q] =^ u^ u^ 6< u^ 6< u^ v[ v[ v[ v[ !8 !8 <] w^ 44 X/ 9) Z{ ^' ^' Z{ 7< J^ /1 J^ J^ 7< C_ `^ `^ 3{ `^ 1c i( `^ }_ 64 i( D_ C' @{ @{ C' y^ @{ ~) @{ ~) @{ @{ y^ @{ y^ B/ y^ '^ @{ L^ c~ 2c S( b] b] j^ :~ _~ _~ _~ _~ :~ _~ :~ _~ ] _~ ] :~ ]{ i! D/ Y] N^ i! i! ]) t] i! < ]) N^ t] i, .) .) R! G* ^) ^) e= >~ %$ G* ^) ^) k; k! ^) ^) e= G* U; ;$ l; l; g+ g+ 6> l; @) ;$ l+ n+ l+ ;$ n+ l+ l+ h+ l+ l+ l; l+ >$ '$ '$ >$ N& i= s+ )$ '$ w+ !$ '$ x+ w+ !$ A% C+ D+ E+ C+ D+ A+ D+ F+ E+ C+ E+ D+ D+ D+ F+ G+ F+ 3c m9 G+ Q+ o2 4c ^7 5c Z+ Y+ Z+ Z+ Z+ Y+ _$ L| Z+ _$ _$ T+ p; [$ W+ &@ @@ p; %@ &@ &@ &@ %@ &@ *@ %@ }$ *@ &@ W, $@ E- >@ *@ l, > 2$ *@ &@ %@ %@ @@ U+ 6c 7c 8c Wa 9c 0c ac bc cc dc ec pb fc `b gc Tb }b Wb 6b hc ic jc `b kc lc mc nc oc mc mc pc pc gc Vb |b |b 1b .c qc rc sc tc %c %c %c %c %c %c %c lb uc vc qb ya wc xc yc zc Ac Bc Cc Dc Ec Fc w= l$ o$ m@ :; `* s@ (. s@ (. F, %. ^. z@ 5# G@ z@ ;. i~ i~ E@ G@ R D$ Y H@ 1# Y M@ Q@ ` S P@ A A I z I P@ ", +". = V@ * ;b = = G= . & Gc - Q$ Z, ]& V@ o! ]& + V@ Q$ ]& > $ ]& . + . N$ & . Q$ S$ *' ; Q$ U@ - ! ~ |* - - Z! ] *# . N$ { ~ ~ & | ) ( ] Y@ X@ ( /& /& d 1 ; ) D, Y@ d 1 $# d d N' 9 } ( $# [ } &# ## a' $# &# $# D, 7 L= [& 0 b 9 V$ a 6 a ,# a e d c g ~# a ~# L= p c L= c s> h 0- Y$ L= Y$ Y$ y2 0 ,> z: c -) n n }& Y$ D 4* D D _# 4* w 2; /# F m 1; 4* 2; w w G I A I M D 8* J I E$ M |# G E$ L@ 3; J U J T Y G$ E$ 3) J I@ 4# V 4# J T H 7# G$ !> @. X z$ W ={ r4 #. ,. E@ 6# E@ C@ .= /3 . C@ W- 5# =. ;' Hc z@ 9# =. A0 t( Y6 Y6 Ic 9# b: 7, b: b: Y6 d[ '& << u! {9 << 0/ a: x4 X) q/ << f[ ~] B0 F3 +: W^ F3 ,b Jc F3 13 F3 F3 W^ #0 D0 Kc )b .0 8^ Lc Mc 8^ 8^ =/ M3 Nc t/ =/ %^ =/ L4 Oc j{ o[ /} M3 o[ ,2 A9 b/ o[ a9 z7 V: -8 a9 Pc Qc M4 M4 I0 Qc F| d/ d/ d/ t[ >/ >/ G~ d/ t[ G~ Z< Z< a3 o8 a3 Q5 P3 d9 Q5 a3 Q5 ]: o8 g9 ]: S4 h9 Rc M} A_ M} d3 A_ M9 A_ h9 x/ =^ d3 x/ u^ u^ _/ u^ =^ =^ v[ 6< v[ 6< 34 <_ <} Sc F{ Tc D7 9) F{ F{ 7< 7< J^ J^ F{ 7< F{ Z{ C_ J^ }_ 3{ `^ `^ T] 1c }_ i( `^ S] ~) ~) @{ C' ~) @{ ~) @{ @{ @{ y^ C' ~) i^ @{ y^ y^ :/ @{ :/ b] 2c Z: C/ b] _~ ] 2_ j^ _~ _~ _~ ] $[ _~ :~ ] _~ s] e~ e~ s] >] i! e~ e~ .) >- >- t] t] t] >~ K> l' ]) >~ e= ^) ^) ^) ^) ^) ^) ^) >~ k; e= e= *; G* &, ;$ /) s{ k! ;$ |' l+ ;$ l+ l+ l+ l+ ;$ n+ ;$ n+ n+ l+ l+ ;$ h+ n' t+ t+ |! r+ s+ y% t+ u+ u+ )$ '$ w+ x+ x+ '$ B+ E+ E+ A+ E+ E+ E+ D+ E+ E+ D+ E+ F+ n2 D+ D+ F+ F+ G+ Uc W2 G% G+ D+ `5 Z+ F% Y+ Z+ V+ Z+ _$ F% L| _{ Z+ _$ _{ +@ #@ +@ _$ '; +@ %@ #@ %@ %@ &@ %@ *@ }$ %@ *@ 4$ V, E- +^ *@ p= >@ -@ *@ &@ *@ %@ +@ ($ Vc Wc Xc Yc Zc `c d .d +d @d #d $d %d `c c Ob &d ab 7b *d *d d `b |b Sb ,d 'd )d sc gb %c !d %c ~d gb %c %c lb {d db ]d ^d /d (d _d :d T@ L$ + + & o! & ]& # V@ . S$ H= ; | ] ; & . ; T@ Q$ 2 ; & ~ - & ~ | ) 2 ] H= &= N$ /& }* 7- 2 2 X@ | 1 ~ ~ | ) N$ { 1 1 2 | ] ) ) | ) { 4 [ ,# $# ( [ b 6 6 2d *# : o 1 7 e $# 7 6! 7 h ( 6- a d ~# a 7 7 a a ~# c 6 a d 0 c a e ~# g e e K= !# % ~# % h p n s> ^# o c ^# p m q `$ w `$ % z m `$ `$ {& `$ N -= :# m % |# C N n! F= ~& o^ I o^ E$ M M P@ N E$ I@ J L t> L@ T M Y |# G$ 0* U L@ d- L@ H E@ 58 3d V 4d +. 5d r4 r9 5d 6# 5# =. +. ,. ,. R' +. e- R' A@ R' :3 v{ =. ;' :3 =. =. b: Y6 6d 9/ b: 5; 9# b: b: X) J: 7d b: H! '= 1( ^5 f[ X) J: f[ Jc ~] W^ +: w{ w{ +: F3 13 w{ *_ W^ F3 +: D4 _9 Q< 8d :4 6^ E0 t/ K4 =/ M3 8^ K4 J9 M3 j{ 9d L4 &0 j{ H^ 0d y9 H^ o[ a9 }5 }5 }5 !1 a9 }5 ad A9 P5 M4 F~ b9 bd cd d/ d/ C{ C{ d/ >/ `~ t[ d/ t[ Z< b3 ): dd &^ Z< Q5 ;0 ed P3 )8 {b M} P3 S4 m{ ,/ M9 fd h9 h9 S3 gd ^: S3 T3 d3 =^ d3 T3 i/ hd <_ u^ v[ 45 45 6< 6< 6< v[ !8 44 +[ D7 ^1 44 /1 !2 J^ 7< 7< F{ 7< 7< 7< J^ 7< J^ 7< }_ `^ K^ 3{ K^ 3{ W5 `^ `^ `^ i( }_ G{ @{ f3 U] ~) y^ y^ @{ ~8 y^ @{ @{ y^ y^ @{ c~ B/ u: S( t: :/ [^ id ] k' ] 2_ P} k' ] ] k' k' ] :~ ] _~ Y] 6+ >- 4/ i! e~ #{ -~ t] e~ e~ N^ ]) .) ^) ]) .) ^) ^) !^ ^) ^) G* u~ k; ^) e= +) 6> ^) v~ k! e= e= g+ l; j+ 6> l; l; l+ l+ l+ ;$ l+ l+ l+ ;$ =, l+ l+ n+ h+ h+ M& x% t+ '$ o+ h+ s+ s+ u+ i= o+ o+ )$ x+ !$ x+ y+ C+ w+ C+ E+ D+ E+ D+ D+ D+ E+ C+ F+ E+ F+ F+ D+ F+ F+ ^- o2 T& F% C% W2 W2 o2 V+ Z+ _$ _$ V+ f) F% _$ p; _{ Z+ p; +@ <~ %@ p; +@ p; :- &@ &@ %@ %@ %@ %@ %@ &@ *@ &@ &@ U, &@ &@ *@ *@ >@ >@ ~; #@ Z+ Vc O> jd kd ld 'a Zb md nd od pd #d qd rd sd td ud ab ic sb *d {* u@ x$ 7; !. !. ). -. !. 4& *. &. . A@ A@ +. @. 5# 1# &' Ld P G@ X J s! Q@ M |; J S S Q@ G ", +"+ = $ $ ; . > . ]& R@ . = > ]& X! o! ; > - - $ ; H= > ^ *' U@ ^ $ . T@ H= Z! # & ; Q$ %= ] 5- ^ ] | | ; | | & N$ ) ] | N$ 2 { < ) U$ ( P$ Z! P$ W@ | H= b{ W@ { ~ ~ Y> d $# < N' '# a B; 2* ( { $# o 4 c b [ e ,# M' K/ d e ~# g a *= 7 L= L= n q> o 7 ,# o c e K= 8 a ~# c L= c{ C; 0- Z$ m |& `$ h r r Y$ ~# D p p r @= D Y$ m F= N G m x 2; `$ C ^# F= G A `$ S O@ I z O@ M U^ M O@ c' P@ 8* ` J o^ P@ J T M@ ` H L@ T L' S I@ G$ C$ O= C$ !> O= q9 W @. E@ G@ . r5 /3 =. $% z$ a* G; /3 =. $% /3 >. $% =. A@ A0 A0 x5 =. /3 >. b: b: b: Y6 b: b: Y6 b: B5 r/ J: '& `9 r/ X) L] ~] r/ =2 L] L] =2 ^^ W^ W^ 3~ F3 W^ w{ w{ W^ +: +: 2~ +: Md Md ka 13 Nd G0 D4 _c K4 ]} L5 Od Nd K4 M3 &0 &0 L4 K9 j{ Pd }5 b/ }5 a9 b/ Qd A9 -8 ad a9 P5 a9 =0 0^ O3 M4 C1 C{ C{ C{ C{ C{ t[ t[ t[ `~ >/ >/ &^ &^ Z< {1 &^ Z< b3 S5 ): '8 S5 Rd M9 Sd ,/ 0! ,/ A_ Td Rc 3| S3 S3 Q] S3 3| 3| 45 45 S3 S3 __ u^ =^ =^ =^ v[ v[ 6< v[ 6< v[ !8 H| 34 F{ <} D7 J^ Z{ 9) Z{ J^ Z{ 7< C_ e3 C_ C_ }_ `^ `^ (! `^ W5 `^ `^ }_ }_ `^ S] j/ <^ F1 [} F] @{ @{ @{ @; @{ @{ y^ @{ @{ @{ !/ t: t: Ud :/ 2c y^ Z: b] b] ] _~ :~ ] :~ k' _~ k' _~ k' ] _~ _~ _~ X] d] 4/ X] i! i! +! .) ,] e~ l' ]) l' i, K> t] u~ ^) >~ ^) e= G* l' k; e= ^) k; k! 0+ ^) G* u% ^) &, '] ;$ k! l; ;$ l+ l+ ;$ ;$ ;$ ;$ l+ l+ l; z- -$ ;$ n+ h+ ;$ s+ t+ t+ '$ n+ M& '$ o+ u+ w+ w+ !$ v+ !$ x+ x+ ]$ E+ C+ C+ C+ D+ E+ E+ D+ F+ F+ F+ F+ F+ W2 F+ F+ E+ n2 W2 ^7 f) o2 F+ Ib 4c T+ Y+ Z+ Y+ f) V+ f) L| L| Z+ Z+ _$ #@ _$ +@ %@ #@ _$ :- &@ %@ *@ %@ &@ %@ *@ *@ &@ *@ *@ R> &@ %@ &@ %@ %@ *@ *@ +@ X+ Vd o' Wd W0 Yb Xd td Yd Zd `d e .e .e rd qd +e @e wc 8b sb 0c #e $e =d %e &e &e nc *e *e =e mc nc rc wd =e -e ,d -e ;e Ad rc =d gb lb >e rc &c &c rc ,e ,d 2b 'e )e !e ~e {e ]e ^e nc /e (e _e :e m, |@ 7@ *& j@ o@ x$ w$ = 5& ,& /* &. &. G@ A@ -. .= .= A@ B$ X 5# C$ 2& P T J@ T ` S Y P@ Q@ 3; Q@ A H S ", +"$= + $ . k) $ # * X! - . ]& k) > ]& U@ . N$ & S$ ; ]& . / H= S$ ^ U@ + ; Z! ] - [* . . S$ ; ~ $# W@ ; W@ ~ ; - - - U$ N$ 2 ) X@ ; } { { ~ [ [ X@ 1 < } ) ; ~ { D, ~ [ [ 6 j 6 $# d : Y@ d 7 a b 0 d &# 6 V$ $# *# ,# n $# ~# 8 i -# g 6 L= L= 3] g {# {# ~# e c 7 Y$ 0 h 8 Y$ h ;= m Z$ s> ,> `$ p G D n m Z$ ^# }& m n^ Z$ % /# z z 2; :# N ^# ^# w /# t I ^# P@ G z O@ N J Y E$ C, S z M / >/ t[ >8 >/ &^ `~ &^ Q5 a3 a3 n8 Q5 S5 |c |c S5 |c c3 c3 7e Sd 35 A_ S3 8e d3 35 /] y/ 3| A_ S3 d3 Q] T3 T3 T3 6< =^ v[ 6< 6< 34 6< 34 v[ V5 34 54 I| b^ H| V4 9e J^ F{ F{ F{ d; )2 Z{ Z{ 7< J^ C_ 7< }_ 3{ K^ J^ 3{ }_ ;] ;] 3{ H{ [_ T] 65 G{ !/ @{ F] E_ @{ @{ y^ y^ y^ F] ~) h^ ~) :! @{ y^ b] F1 u: C/ [^ [^ ] :~ :~ :~ _~ ] k' _~ _~ ] _~ $[ :~ _~ e~ ]{ _~ e~ e~ g, < #{ g, >- t] ]) R! R! t% l' i, ^) ^) %$ e= R! e= G* ^) e= +) G* ^) ^) u% %$ +) /) ;$ n+ j+ ;$ l+ ;$ l; l; ;$ l+ ;$ l+ ;$ ;$ l+ n+ l+ l+ ;$ n+ s+ t+ '$ A- n+ s+ t+ '$ w+ u+ o+ x+ x+ w+ !$ 0e B+ D+ A+ F+ E+ A+ A% E+ >; E+ W2 F+ F+ F+ F+ D+ 94 S~ W2 G+ o2 (- 5c W2 P9 Z+ Y+ Y+ L| F% f) _$ L| L| L| _{ p; _$ #@ #@ +@ m, p; #@ ae %@ &@ %@ S> &@ &@ *@ m, S> &@ W, U, *@ &@ &@ %@ =@ +@ W+ W+ be ce de ee fe ge he Gd ie je ke le me ne oe pe qe re ac &d jc se fe =d nc nc nc nc te ue ve Ad we xe -d we Vb `b ye Ub ,d oc rc ze &c ze &c @c Ae nb ob Be Ce De Ee Fe Ge He Ie Je Ke Le Me Ne Oe @@ n, a@ W* *& m@ -& {. :. w$ /* v@ !. &. x@ ;. 5# E@ )& 5# P X 4# 1# Y H J H 2# O P@ A S A N I H$ I Q ", +"$ = = ]& - . . . . . . - $ ; . # + > ; z] . $ !, ' - Q$ . > ; $ > . T@ ] Q$ ; | | | O$ { Q$ 1 1 | 2 | 5! - ] ) / ~ ## [ { } [ } { < | ## /& *# ~ /& [ 2 } [ / { 6 ,# | } $# 6 } < ) W@ } == } 6 $# 7 k $# a 0 6 a d 0 6 0 0 n L= n a ~# K/ `$ ~# *= g j 8 f 8 e h h s> c ^# p ^# ^# Y$ ^# Y$ % D r h ^# Y$ L= w m /# z 5* A G /# m ^# I /# E; N |# Q@ A M I |# S M |# w H I O P@ T J P L E$ H O= T I@ E$ L@ O= W H I@ D$ n) ja 58 W y@ E@ R y0 4; a* a* +. G; Pe /3 $% ,. ,. /3 .. ;. A@ 6# ;' =. ~( :3 A@ ;. ;} Z9 ~( Ic 82 b: Y6 9# Y6 {9 b: A5 X) q/ b: J: ^5 Qe r/ ^^ Re f[ ~] 3~ 3~ +: w{ +: +: +: 13 13 Se }e }e 13 13 13 t9 [e [e Te :4 :9 Ue Nd $0 / d/ Q5 Q5 >8 a3 Z< &^ a3 )8 b3 d9 |c {b Q4 Ye o8 c3 c3 m{ 3| ]: T3 i9 S3 d3 >0 Ze d3 v[ U3 T3 j9 U3 `e 34 6< 6< v[ 34 V5 f .f 34 Sc Sc )2 +f 54 06 a^ Z{ J^ C_ J^ J^ J^ J^ ;] 9) F{ Z{ 7< 3{ T] `^ }_ `^ }_ }_ y[ K^ [_ T] W4 74 F1 r8 J| F1 @{ ~) @{ E_ @{ !/ y^ 5| y^ S( i^ y^ c~ Z: V] [^ C/ j^ k' k' _~ _~ _~ _~ ] ] ] _~ _~ _~ _~ :~ g, D/ ] e~ e~ e~ i! .) #{ -~ ]) ]) N^ ^) t] V3 i, >~ R! >~ ^) G* K> e= e= ^) %$ u% k; ^) ,- G* k; /) U; U; |' ;$ l; w% l; l+ ;$ g+ n+ ;$ l+ l+ n+ l+ l+ h+ l+ n+ >$ '$ -; s+ J* o+ s+ s+ x+ w+ w+ x+ x+ !$ x+ w+ A+ B+ C+ D+ D+ E+ F+ F+ F+ D+ F+ D+ D+ G+ @f G+ W2 C% W2 W2 o2 /$ ^7 ^7 o2 Z+ Y+ Y+ Y+ F% Z+ _$ F% L| _{ Z+ _$ _$ [$ :- #@ `; '; p; [$ %@ p' &@ %@ +@ &@ &@ &@ >@ D- *@ $/ %@ *@ *@ &@ ~; #@ @@ U+ #f $f %f &f ;c Hd *f =f -f ;f >f ,f 'f )f !f ~f sb {f ]f ^f /f (f {f _f :f oc mc %* X* j- -& ~* a. (. c# <. (. -. =. ^. -. (* W~ A@ e- ,= !> @. G! L@ 4& 1# L@ L@ Y P@ P@ Q@ 8* P@ P@ L@ P@ J ", +"& = ]& = . Q$ ; . . o! = T@ - ]& . ; $ - U@ > . + . > ; V@ & $ > $ S$ & U@ N$ Q$ ] > ; U@ ; ] U@ & & 5- > ; ] | N$ H= | %= ^ X@ [ Y@ ] *> *# Z! %= N$ Z! 1 { %# : } ( [ [ } 7 Y@ V~ e D, $# b Y@ 2 ## &# [ d a $# d } ( 6 2* a a 0 c ,# 6 r e ~# a' a o {# Y$ ]# 8 c e i h &# c {# ^# p p ~# L= p D -) Y$ % % 1; r s> `$ % 6* D ^# m C % /# Z$ ^# /# :# C p ^# G z S I n! P@ J A I M S M w H >) E$ T +% T H 3) O H T L@ E^ r9 W @. V t> V O= n) 4# r9 ja ja bf H9 8# cf y@ r4 a* !& A@ ;. a* =. df )& 5# /3 $% $% A@ A0 /3 ;' z0 v{ ]. ~( ef b: b: Y6 Y6 *. b: B5 J: J: ff x4 r/ 0/ r/ x4 0/ ^5 a: f[ W^ F3 W^ +: F3 +: Md 13 13 }e +: F3 F3 F3 }e [e gf [| t/ 8^ E0 ~b ]} ~b H0 hf L4 %0 L4 if if %0 H^ H^ jf }5 a9 a9 a9 oa oa b/ a9 V: A9 Qd W: =0 6e Qd I0 d/ t[ t[ >/ }c >8 t[ Z< >/ >/ n8 a3 &^ n8 n8 Q5 Q5 P3 P3 n8 Q5 n8 c3 {b o8 c3 Q4 L} A_ K0 Ze Td M9 A_ 35 kf T3 x/ u^ x/ j9 T3 T3 34 v[ u^ T4 .f 34 34 34 34 D9 44 D7 b^ <} Sc ^1 F{ J^ Z{ Z{ J^ 7< J^ J^ 7< 7< J^ J^ 1c }_ 7< }_ 3{ `^ W5 W5 }_ [} j/ [_ S] F1 D_ F] @{ y^ ~) ~) y^ ~) y^ @{ ~) !/ :/ lf y^ mf b] k/ c~ [^ [^ k' :~ $[ g3 :~ :~ _~ k' k' ] k' _~ _~ ] N^ w- ] i! 84 e~ e~ ]) ]) N^ ]) .) .) u~ i, ]) l' u~ >~ l^ e= ^) R! e= ^) ^) +) k! G* G* 0+ G* G* .] Q, H* ,- l+ w% Q, -$ ;$ ;$ ;$ l+ l+ n+ n+ l+ l+ -$ n+ -$ n+ l+ s+ '$ s+ J* ~$ o+ '$ !$ x+ x+ o+ )$ x+ v+ x+ B! C+ C+ D+ C+ D+ C+ E+ D+ F+ F+ D+ D+ F+ W2 W2 W2 G+ G+ W2 /$ G% G% L| f) Z+ ,; p; _$ Y+ Y+ Z+ f) nf _{ '; _$ p; p; :- &@ %@ %@ '; +@ @@ &@ &@ #@ %@ *@ &@ &@ &@ 4$ D- [- !] %@ &@ }$ &@ %@ #@ .@ of pf &b qf rf sf tf uf vf wf le xf yf ^d zf Af Zb Bf Cf {f (f (f Df Ef oc ue kc vd vd vd {f vd vd $e ,e Yb `b Tb Tb Ff Vb Ub ,d Gf nb {d {d Sb Hf 9b Vb If Jf Kf Lf vf Mf Nf Of Pf Qf Rf Sf Tf Uf &@ }@ $* 0@ A= o@ -& q@ w$ ^. d# p, x@ -. A@ !. &. *. &. 8# >. E@ z@ X F@ 4& F@ J L@ P H$ M@ H$ I P@ T 4, S 7* ", +"%= > $ . * & ; $ $= + + + U@ = $= . U@ Q$ > V@ * $ & > Q$ + ^ . Q$ V@ * # P$ S$ P$ .# R$ N$ ~ > > & ; & N$ ] ; | 2 X@ ;# 1 ~ > & | [ ) > { { %= | { [ 2 | < 2 ~ [ -# +# 8 : 1 ## 4 4 6 ,# Y> 6 3* d } 8 } 1 } ,# i ~# b e 6 j k c h 4 a Y$ k 6 6 6! n L= s> h n ~# 2* [& n p X$ e g L= h `$ m s> 4* |& ;= D ^# Y$ N 4* % Y$ _# 2; G 4* z D m /# w F= A z F= E$ Q@ 3; O@ I P@ S O@ O T N@ P@ P@ E$ >) P@ L@ L' T :* T L@ O= O= L@ J L@ Vf T 0* V y@ L G$ y0 . r4 r5 y@ ,. @. @. ,. !& A@ G; a* F^ A0 /3 +. A@ =. /3 )& ;' /3 ~( v{ v{ b: $. 5; b: Y6 H! d[ b: >b X) J: a: J: J: J: J: x4 J: =2 ^5 Re =2 =2 +: W^ F3 +: +: W^ +: F3 +: +: }e [e Wf [e Wf Wf R: [| $0 Xf H0 Yf / d/ t[ d/ >8 >8 >/ Zf a3 o8 Q5 Q5 o8 n8 o8 n8 n8 a3 Q5 Sd M} Sd Ye fd `f Rc g 3| h9 .g S3 h9 M9 3| __ =] =] S3 d3 d3 6< v[ 34 u^ 6< v[ 6< 6< 6< 34 +g @g /1 I| H| ^1 F{ /1 Z{ J^ J^ Z{ Z{ Z{ C_ C_ C_ `^ C_ `^ `^ }_ r8 W5 `^ #g 1c r8 S] [_ W4 F1 f3 F] F] @{ ~) C' @{ @{ @{ @{ t: h^ M^ / y^ t: Z: l/ J| [^ C/ [^ j^ ] _~ :~ _~ ] ] _~ k' _~ k' k' :1 X] e~ e~ :~ X] e~ e~ e~ ]) -~ -~ .) k^ ^) ^) ]) ]) R! e= >~ ./ e= ^) ^) %$ L{ e= %$ k; e= G* G* ^) e= Q, }' 6> )- &, U; l+ l; |' L& ;$ l+ ;$ h+ h+ n+ l+ n+ n+ n+ n+ s+ s+ '$ r+ N& s+ '$ '$ w+ !$ !$ v+ !$ !$ !$ v+ A+ C+ K* D+ E+ E+ E+ F+ E+ F+ D+ F+ E+ G+ W2 W2 F+ W2 G+ $g G% G% G% f) Y+ _$ V& _$ Z+ Z+ ,; p; _$ p; p; _$ <~ '; @@ +@ +@ #@ _$ '; #@ &@ >@ &@ %@ &@ &@ *@ *@ %g 1d m, E- U, >@ <- &@ #@ @@ U& &g *g =g -g ;g >g ,g 'g )g !g 4f ~g {g ]g se se #e ^g ^g /g Cf (f ^f (g _g ub *e we :f ve $e ve $e $e vd X% >* t$ ~* u$ u@ x$ q@ w$ ). x@ &. &. ). $% 4& B$ $% .. X F@ E@ .= P R $> X +% H ` L@ O@ L@ A I Q@ I ", +"= R@ > # = ]& $ S$ ) > = . ] . #^ > # + - & . > ; ] N$ ] { . 2) ] . + S$ ' . Q$ ] - ] ; - N$ ] | ) f] } A; N$ N$ & *# | ~ ; & ] 4 8- | ] ] ; ^& | ~ P$ < *# 7- 7- 2 0 7 2 Y@ ## $# $# : j b ,# d [ 7 Y> Y@ 0 *= n 0 g *= 9 a a ,# L= [{ ,# ~# j ,# ,# 8 bg cg dg eg T1 T1 fg ~# Z$ c p Y$ n y p {# `$ C; n p n n r p h p 2, % r `$ m w z {& ^# G ^# G ^# z N I m) w I 3& A H$ z O@ J >) E$ H T J P@ O@ J L 3& M@ d- L@ G$ Ld T L 0* 4# L@ P' I@ G$ O= W r5 y@ 8# E@ y0 r9 y@ E@ y0 ,. $% #. x5 @. $% A0 a* F; e- =. $. )& ;' =. x5 ;' 82 b: gg 82 9# A5 82 7, d[ X) x4 b# r/ 7, X) r/ Ab Ab ^5 hg ig jg kg lg +: +: y4 +: +: F3 13 +: F3 F3 F3 t9 mg [e }e t/ ng og pg H0 ~b x1 ~b ~b Od &0 H^ qg %0 qg y9 a9 }5 }5 }5 a9 A9 }5 a9 Qd ad A9 cd A9 Qd Qc 03 c9 ad 03 }c }c C{ rg >/ }c J0 a3 >/ >8 a3 a3 a3 n8 a3 n8 a3 n8 n8 n8 n8 Ye Rc Ze sg 7e o8 Ze 35 35 T3 M9 T3 d3 >0 kf T3 __ 45 T3 d3 x/ __ 34 v[ 6< =^ 6< 6< 6< tg 6< <_ Sc b^ )2 44 +{ 7< Z{ 7< 7< C_ 7< 7< J^ 7< 7< 7< e3 e3 3{ H{ W5 }_ `^ }_ `^ K^ W5 S] [] [_ /~ [} [_ [_ @{ C' @{ F] 74 @{ t: t: @{ F_ t: :/ y^ Z: @[ F_ Z: [^ ug j^ k' %, 2_ _~ _~ k' j^ k' :~ k' ] B* B* w- i! .! X] Z/ +! e~ +! -~ e~ l' .) %[ i, u~ .) R! >~ u~ i, e= e= u~ vg k; G* ^) g+ k; e= u% &, +) S) S) f= j+ l+ l+ l+ ;$ ;$ '- l+ l+ l+ g+ l+ n+ n+ n+ ;$ l+ l+ '$ '$ '$ o+ h+ =; s+ '$ '$ x+ i= )$ !$ x+ !$ v+ D+ F+ C+ D+ D+ E+ D+ D+ G+ F+ D+ P& G+ G+ W2 G+ W2 n2 `5 ]7 o2 G% L| f) f) 94 F% _$ _$ _{ _$ _{ p; _$ wg p; _$ p; #@ #@ &@ #@ #@ &@ '; $@ %@ *@ 1] &@ D- *@ &@ ~; p= -@ E- E- &@ #@ &@ %@ X+ $) xg yg Sf zg ve Ag Bg Cg Dg Eg Fg Gg Hg Ig ]g jc Jg Kg #e Lg Lg Mg Ob Ng (g (g Ef _g _g *e *e vd Og Bf Mg zf #e zf *d :g :g fc 7b Pg Ha Xb Qg Rg Sg Tg Ug Vg 1g 2g 1g Wg Xg Yg me 6g Zg pb `g h .h U& n, X% >* j@ ~* {* (. q@ d# x@ ). '. D! 4- B@ &. +. &. .= B$ C$ G@ 4# L@ V ` 4# 2# H P@ D$ P@ L@ E$ %> Q@ A G ", +"p9 ]& $= $ ]& J$ + . = . ]& & Z, .( # # L$ ]& - U@ . Q$ & %= H= ] ' & ~ S$ ; H= T@ # > > > ] ] $= |* ; U@ ; ~ | ' H= P$ H= 4 %= { S$ & ] W@ ) 7- [ ~ ~ N$ /& X@ 4 | / D, <& Y@ &# Y@ Y@ q> / { +h @h #h #h $h %h 6 d } $# 8 $# j 0 ,# g &h *h =h -h ;h L= ~# Y> ~# 6 >h ,h 'h #( #( #( #( #( )h s> 0- |& {# n |& L= `$ m -) c Y$ Q{ Y$ p p p ;= m w 2, % % h 6* D /# }# ^# /# A ^# N /# /# w z 8* E$ N@ I z P@ Y L A E$ O@ J P@ L !h ~h {h ]h ^h ^h /h (h _h :h b A5 '= X) r/ B5 |3 2h 0/ y4 ;1 3h 4h #( (5 5h F3 F3 F3 +: F3 13 F3 +: F3 }e Wf )b 13 6h Wf 8d H0 [e 7h ~b H0 :5 ]} 8h H0 L4 y1 9d &0 x1 S: b/ y9 b/ na 9h b/ A9 a9 A9 A9 A9 a9 a9 Qd Qc t[ rg 0h ah 03 }c d/ C{ t[ t[ >/ >8 >/ >/ >8 &^ Q5 Z< n8 o8 Q5 bh b3 Q5 o8 Ye Sd 35 L0 C9 Td 35 fd Rc 35 Rc M} A_ i9 ch T3 d3 T3 =^ S3 S3 6< =^ =^ 6< u^ v[ 34 34 34 34 34 D9 w^ /1 a^ Sc Z{ J^ 7< 7< Z{ 7< J^ C_ 7< `^ J^ C_ }_ 4| 3{ W5 }_ `^ `^ ;] `^ }_ f3 i( f3 M^ G{ D_ W4 Y5 (~ ~) ~) r8 J| ~) ~) y^ P! @{ u: t: 2c u: u: u: b] b] 2_ ] ] C/ k' :~ :~ k' k' _~ _~ k' X] s] s] -~ D/ 5+ >- N^ e~ >- .) e~ N^ l' t] ,] ./ ]) l' ^) ^) K> ^) ^) K> +) ~^ ./ ^) k; )- G* k; ,- G* H* Q, g+ )- l+ ;$ ;$ |] j+ ;$ l+ l; l+ l+ f= h+ l+ h+ n+ l+ n+ i= w+ '$ '$ =; =$ '$ s+ s+ )$ s+ o+ )$ !$ !$ 9> v+ D+ C+ E+ E+ E+ E+ C+ E+ E+ F+ F+ F+ G+ W2 G+ G+ dh (- 94 G+ C% Q+ (- f) eh R+ T+ Y+ p; _$ f) _{ _{ _$ _$ p; <~ +@ +@ p; %@ #@ %@ <~ %@ %@ &@ &@ %@ > %@ >@ &@ *@ %@ e] $/ v] %@ #@ +@ W+ $) fh gh hh ih $c jh kh lh mh )g nh oh ph qh Ig rh sh sh se th ]g sh ^g sh se {f uh vh %e %e wh xh yh zh Ah ud ud ud Bh Ch 4b Dh 6b Eh Fh Gh Hh Ih Jh Kh Lh 5f 1g 2g Kh Mh Nh Oh Ph Qh Rh _f Sh Th Uh O{ .* |@ .& y; D= q@ k> p2 {. !. /* x@ )& x@ .= -. E@ !. $% .= G@ @. @. V B$ $> E$ +% O K@ Q@ T K@ M S 8* I x ", +"= 0' $ $ $ o! ]& & $ & = = Z, - + X! - & . = . + = T@ N$ Q$ ] ; - > h) & + + # . U@ ^ ^ ^ ; ; [ ; ] ^& ^ 2 ; & H= | P$ & ; | { , ] ~ ^ [ 2 1 ( ~ 1 ~ } Y@ 7- } } a 1 } $# 2 -# Vh #( #( b} Wh &# Y@ 6 ( 2* 7 a i 6 Xh Yh #( #( Zh `h c 0 i h 8 i m( #( #( #( #( #( #( .i g n r L= c{ o n Z$ c{ h % h n^ s> % L= y `$ w 1; m `$ s `$ `$ /# z 2; `$ % A G G m m ^# G z :# M I M O@ P@ O@ L A z I A T +i #( #( #( #( #( #( #( #( #( #( N_ E6 @i #i L@ q9 C$ X9 n) r4 r4 a* !& a* 5d @. G; $i 6# =. R' %i ;' A@ . ;' |h /3 /3 e- $% A0 A0 9# 82 Y6 b: b: 82 >b &i ~( *i B5 r/ J: A5 J: 1( f[ Ab x4 3h 4h #( (5 5h 3~ 13 F3 ,b +: 13 +: F3 F3 }e [e [e Wf =i =i -i ;i >i ,i [e Ue Nd 'i )i H0 L4 L4 L4 L4 M3 %0 ,2 }5 b/ !i ~i a9 a9 a9 a9 Qd Qd A9 a9 {i P5 F~ ]i Qc 0h P5 >/ d/ >/ rg >/ >/ t[ d/ t[ J0 a3 Q5 a3 a3 Q5 n8 o8 S5 P3 n8 Q5 o8 M} g9 p8 Rc M9 Rc M9 h9 h9 y/ A_ 3| M9 S3 T3 x/ Q] __ T3 T4 6< 6< 6< 6< 6< 6< U3 34 Sc v[ .f 44 Sc ^1 Sc ^1 ^1 7< J^ J^ Z{ J^ Z{ C_ e3 }_ J^ }_ 3{ `^ 3{ 3{ 3{ }_ 3{ 7< }_ i( [] 1c [} X5 y) f3 W4 F1 ~) @{ @{ y^ t: @{ O} y^ y^ u: M^ !/ '^ Z: 75 ~2 [^ A) ] ] :~ P} :~ ] _~ ] ] _~ ] ] :~ k' w- w- :~ -~ i! i! i! .) >- i! -~ .) -~ G* +! .) u~ h, ^) ^) %$ G* e= e= u% ^) e= )- G* G* ^i G* e= H* P, l+ j+ l+ l; n+ ;$ n+ n+ ;$ l+ n+ l+ n+ l+ l+ l+ n+ h+ O& /i t+ s+ o+ O& h+ r+ )$ x+ )$ s+ '$ !$ !$ 9> v+ D+ F+ F+ D+ D+ E+ P& (i F+ F+ F+ Ib G+ 4c G+ W2 W2 5c _i W2 F% F% n2 F% f) G% _$ Z+ L| Z+ Z+ p; p; p; _{ p; '; '; +@ _{ +@ %@ %@ '; #@ &@ %@ >@ %@ [- %@ *@ &@ *@ *@ &@ $/ I% *@ %@ #@ @@ ($ :i f si ti ui vi wi U+ r; 6@ X* xi ~> -& u@ q@ (. d# x$ A@ -. -. {. z@ A@ A@ B$ -. $. .= 2# T ` X> Y @% K@ H K@ L@ P@ M@ S K@ P@ A ", +"V@ 0' = Z, X! .( $ o! - $ . > = V@ !, =' Q$ ; # . Z, . H= %= . = ] ]& > ] . . { & N$ ~ U$ ~ ; S$ ~ - |* U@ - *> /& H= P$ X@ > *# W@ ] . ] T- } { { ~ ~ 7- X@ 2 X@ ( d { 1 1 { ## 2 d 6 G9 ,# yi zi #( #( Ai Bi i [{ 1 a 6 ,# Y@ ## Ci $( #( m( Di b [& ~# ~# ,# s8 L[ #( #( H1 Ei .5 Fi Fi Gi !# K/ _# `$ L= n z: p p L= Y$ n^ L= m `$ 2, % C w h t I ^# G 1; w w n^ <, z O@ 4* ~& w `$ M S ^# P@ M N I J M O@ M P@ P@ I L Q c7 #( #( #( #( #( #( #( #( #( #( #( #( #( ._ Hi Ii r9 r9 . r4 .= y0 G; .= E@ O= r5 $% $% =. 5# ~( =. $% R' :3 /3 F^ /3 :3 x5 Ji Ki Ic 9# Y6 9# 82 >b Y6 Y6 ;' ~9 {9 ;1 x4 d[ {9 J: ;1 ~] Li Mi 4h #( (5 Ni Se F3 W^ F3 Bb +: F3 13 #0 13 F3 }e [e [e [e Oi #( #( Pi 8d 7h +8 K4 ng Yf x1 Od 'i x1 Qi Oc Ve S: }5 Ri *0 }5 {i na a9 }5 a9 A9 A9 =0 Qd 0h Si W: {i =0 d/ d/ V{ c9 t[ t[ t[ &^ Z< >/ &^ Q5 Ti a3 Q5 O4 Q5 Ui P3 n8 n8 Vi Td Wi p8 S4 M9 Rc i9 Rc 3| M} Rc 3| >0 S3 T3 j9 u^ 6< d3 U3 6< u^ 6< 34 j9 `e V5 v[ D9 34 !8 H| D9 9e I| I| b^ 7< F{ J^ Z{ 7< F{ J^ C_ C_ C_ 7< J^ 3{ `^ H{ `^ `^ W5 3{ W5 [} [_ H{ i( 65 G{ i( @{ t: F1 @{ @{ @{ y^ y^ t: t: y^ u: 2c k/ :/ [^ u: 2c b] j^ k' k' _~ j^ %, %, ] ] _~ _~ ] _~ _~ _~ X] w- _~ ] #{ i! i! {/ N^ -~ -~ .) t] #{ i, 7+ ]) G* ^) e= ^) G* e= u~ ,- G* G* +) +) G* ,- ,- e= H* ;$ l+ j+ g+ l+ f= l+ l+ ;$ h+ h+ l+ l+ ;$ l+ l+ n+ n+ n+ =$ O& M& '$ s+ =; h+ =; o+ !$ !$ !$ Xi x+ w+ !$ x+ !$ 0e E+ D+ D+ D+ 0e Yi D+ 94 F+ W2 G+ W2 G+ G+ G+ 94 o2 C% G% G% .^ G% F% L| _$ _$ f) @/ L| _$ p; Z+ p; _$ _$ _$ p; [$ +@ #@ #@ '; %@ &@ $@ &@ *@ &@ &@ &@ *@ *@ &@ &@ p= C^ %@ #@ +@ X+ Zi `i j .j +j @j #j me $j >f %j 4i 5i 5i &j Ch *j ic ic rh sh se Lg se sh th ]g se se ]g sh ^g =j ^f -j ;j >j Mf ,j 'j )j !j ~j ~j {j ]j ^j ^j /j (j _j :j * j- m@ ^* :. N- = v@ ~. '. -. A@ &. &. 5# 4& z$ (* +. P L@ P E@ F@ P K@ +% M J@ C$ J@ H K@ P@ S :# ", +"# p9 0' = # = = = . }* . # . > T@ & ]& - = = $ > # . S$ + . > $ + * ] S$ ; =' *' H= | | 7- ] | ' ; ~ ] - & ; ~ ] X@ | 2 ; (& | | ~ } [ 2 W@ { P$ /& ~ X@ /& $# 1 => d } / Y@ 7 ~ 4 D, 8j $( #( $( 9j i &# ,# e 0 D, Y@ G8 >[ #( #( 0j 0} k k e c 7 aj d< #( d< bj @4 ~# L= e n ~# r r Y$ s> r L= n^ n n h Z$ /# cj D w m <, Z$ `$ m @= p ^# Z$ b' w x m w z p y /# G 2; z 1; A A n! N O ` Y E$ L M M@ M J dj #( #( '3 ej ~3 E6 ~3 88 fj gj #( #( #( #( #( F< hj T !> @. r4 G; . r5 r4 $% $% ja a* A0 $% $% =. /3 ;' /3 A@ +. ;' =. t( ;' df &i /3 b: b: Y6 9# Y6 82 ^5 Y6 A5 82 << ^5 2h << J: x4 =2 ij 4h #( (5 5h +: 13 W^ F3 W^ 13 }e 13 mg F3 Cb mg }e [e }e Oi #( #( jj 1e kj ng >2 [| +8 ma lj &0 ng mj %0 ,2 a9 }5 H^ ,2 }5 }5 Qd Qd Qd Qd Qd w/ B7 A9 nj Qc c9 rg }c W: >/ 03 c9 >/ oj d/ >8 &^ >/ Q5 n8 a3 n8 Q5 a3 Ye o8 P3 n8 Zf Ye Rd ]: n8 Ye R4 R4 Rc 35 S3 M9 8e 8e d3 ch j9 d3 d3 __ >0 d3 v[ U3 `e v[ V5 34 6< 6< 6< 34 34 +[ 44 /1 J^ <} .f F{ 7< 7< Z{ J^ J^ Z{ 7< 7< C_ e3 e3 W5 }_ `^ f3 `^ K^ }_ 1c e3 T] W4 [_ [_ W4 F] W4 ~8 F] @{ ~) @{ y^ y^ y^ Ud t: y^ S( J| y^ b] S( V] [^ [^ _~ _~ _~ ] ] k' :~ _~ _~ _~ _~ ] ] ]{ d= >] w- m2 X] e~ i! e~ .) N^ i! < ]) #{ .) e= .) i, e= e= ^) e= e= u~ e= G* ^) ,- G* e= ^) G* G* %$ )- l+ ;$ )- ;$ w% g+ h+ ;$ l+ l+ n+ h+ n+ n+ h+ n+ n+ O& n+ *$ h+ o+ '$ '$ m+ pj )$ o+ x+ x+ !$ !$ !$ !$ !$ !$ 0e D+ F+ F+ D+ D+ (i D+ D+ Ib G+ G+ E+ F+ W2 G+ 4c 5c 4c ^7 G% Y+ f) L| L| _$ Z+ _{ Z+ _$ _$ p; _$ p; p; p; '; '; Y3 _$ #@ #@ %@ %@ &@ > &@ *@ &@ %@ >@ V, *@ %@ %@ > c> qj +@ [$ V& 6c rj 6j pc sj tj [j uj vj wj xj yj 5i 5i zj Ig *j jc &d sh sh sh ^g Aj Kg #e #e /g /g /g se Kg /g 7i {f {f Bj Cj :b Dj ,f Ej Fj Gj (j (j ]j (j (j (j (j 4f )j Hj Ij Jj Kj Lj Oh Mj |i ]e Nj Oj Pj Qj ta )@ f$ d@ d@ j@ d# d# = (. ,& x@ F, A@ '. B@ 5# !. R $> 5# ;. 5# H@ V G@ C$ L@ H T P@ 1& K@ m) J M@ P I G ", +". + 0' = + + 0' * ]& = & ; S$ J$ + * $ - = ]& T@ . . Q$ N$ - - & ] R$ 0' ~ Q$ U@ H= Q$ > ] S$ ~ U@ [ > ^ R$ ~ 5- ; N$ ) - ^ X@ %= ; ; X@ 2 { | | ) | 2 { 2 | 8- } 5 Y@ 1 } $# 9 } ,# 6- | 4 Rj Sj #( #( Tj Uj J= Vj a U- [ e %< #( #( -6 Wj e n C; 8 7 {# Xj $( #( Yj Zj ~# 7 e c h n m 2, r c L= c a -) Z$ p n t p 1; % 1; 4* ;) p t w G A % /# w C ^# N /# /# ^# %> I A I I A A E@ +. a* H9 &k r9 L) =. 5d y0 e- $% >. =. =. /3 A@ ~( /3 $. /3 9# Z9 =. $. $. 5; p/ 9# gg b: >b 0/ b: Y6 82 J: X) x4 x4 r/ x4 ^5 ij *k #( (5 Ni =2 W^ W^ W^ +: 13 13 F3 F3 13 13 }e 13 13 [e =k #( #( jj E0 -k |e =/ =/ H0 hf E0 M3 M3 Od !i ;k ~i }5 b/ >k }5 }5 }5 A9 {i A9 Qd Qd Qd {i {i 0h ,k }c c9 }c }c >8 >8 >8 >8 'k J0 a3 >8 J0 n8 >8 n8 o8 Q5 Z< o8 n8 o8 Ye Zf )k C9 `f Ye M} 3| S3 3| M9 Rc Rc 8e j9 .g 35 d3 d3 45 j9 T3 34 34 34 .f v[ .f 34 V5 34 !k V5 ~k Tc {k 9e D9 <} J^ J^ J^ 7< ]k 7< 7< /1 e3 3{ C_ J^ `^ W5 3{ T] }_ T] `^ }_ W5 W5 j/ ^k j/ W4 F] W4 G{ 74 y^ ~) @{ y^ h^ y^ t: y^ @{ c~ u: B/ 2c [^ L^ u: [^ C/ /k k' _~ _~ ] :~ ] %, k' ] k' k' s] s] s] g, X] _~ w- e~ d] +! ]) i! d] ]) ]) .) e= l' l' G* e= G* e= e= K> e= G* >~ %$ ^) ;~ e= G* %$ G* f= n+ ;$ u% n+ Z] n+ l+ ;$ ;$ z- n+ n+ h+ l+ m+ n+ h+ k+ n+ n+ M& =; )$ )$ M& (k '$ o+ '$ x+ x+ s+ )$ v+ 9> v+ 0e D+ E+ E+ G+ D+ F+ F+ F+ Ib G+ G+ G+ Ib W2 W2 G+ W2 G+ (- o2 G% 8| F% V+ Z+ Y+ p; p; Z+ _$ p; p; p; <~ p; <~ '; _$ p; &@ &@ %@ <~ #@ &@ &@ &@ *@ &@ *@ 7$ %@ m, *@ >@ *@ 1] #@ W+ U+ of _k :k f ak bk ck ]j (j _j dk (j (j _j ]j oe ek fk gk hk ik jk kk ]j lk mk we %b nk 6c .* X% d@ :; ~* a. u@ s@ h# (. d# x@ !. A@ v{ p, >. e- .= +. =. +. @. E@ C$ 2# 1# G@ 1# J S }; A S z |; I N@ ", +"V@ T@ (& & |* & * $ $ & $ ; V@ + ]& + Q$ L$ * Q$ o! & Q$ V@ & H= & H= ; & + ~ > | | & . N$ H= N$ U@ N$ ~ ; > | N$ [ ; | & T@ ; P$ N$ ; 5 { X@ < | U@ ~ ~ { | V~ 1 { 2 %# / } Y@ [ d ,# 9 Y> { c5 ok d< #( #( pk $# 3* k 7 ># qk rk #( #( sk ~# i K/ 0 e c e tk #( #( uk r c g h ~# h s> c s> ]# e K/ n L= |& ^# vk s> t p % Z$ % ;= {& <, D z m s> w w w w E; A D % F= G w 8* G w J P@ O@ S Q@ 8* 7* M J Q x E$ L `j #( #( wk xk T G$ P' H L 4# C$ P yk f7 #( #( #( zk Ak C$ O= 4# r4 X9 r9 Bk ,. r4 G; ,. /3 =. =. =. =. 9/ ~( ~( Ji v{ >. =. /3 c[ ;' 9# Y6 Y6 Ck 82 Y6 Dk Y6 82 82 1( ;1 r/ ff J: J: f[ Ek 4h #( (5 Fk =2 =2 W^ +: +: W^ +: F3 Jc Gk 13 }e 13 13 [e Oi #( #( Hk / J0 Pk a3 Q5 >8 Q5 ;8 n8 n8 a3 o8 o8 o8 o8 n8 C9 Qk o8 R4 o8 `f Rc M9 m{ M9 Ze .g Rc A_ M9 h9 d3 T3 d3 __ gd T4 V5 V5 v[ 34 v[ .f !k .f .f .f V5 44 Rk 9e +g 44 !2 C_ F{ F{ J^ Z{ 7< J^ 7< C_ J^ e3 3{ 3{ 3{ [] `^ W5 }_ }_ T] `^ K^ W4 K^ X5 j/ F1 [} r8 ~) ~) ~) ~) @{ y^ C' y^ q{ u: @[ @{ t: [^ 2c M^ [^ b] [^ ] :~ %, _~ :~ _~ _~ k' k' _~ k' s] c] m2 e~ e~ ] _~ i! g, -~ .) #{ i! ]) ]) .) i, .) .) u~ ^) 0+ e= e= K> K> %$ %$ G* ^) ,- G* %$ 0+ e= ,- l+ ;$ f= l+ g+ l+ l+ l+ ;$ w% m+ l+ n+ l+ k+ h+ h+ h+ m+ h+ h+ h+ s+ )$ )$ F' )$ )$ o+ w+ u+ x+ 8> 9> !$ v+ 9> F+ D+ E+ F+ F+ W2 F+ (i D+ F+ G+ F+ F+ W2 G+ W2 G+ ^7 Sk 4c ^7 F% F% f) Z+ _$ _$ Y+ Z+ '; _$ _$ '; '; '; <~ _$ +@ _$ #@ &@ %@ <~ '; V, &@ %@ &@ > > p' #@ ;@ *@ >@ ;@ 6/ f~ +@ U+ P+ Tk Uk Vk Wk Xk 4f ri Vg Yk Zk `k 5k 4i 4i Xb l *j &d Jg sh sh Lg se th #e .l {f {f {f ^d {f /g =j #e se /g ^d +l @l #l hi pe $l (j dk ii _j dk %l 'f &l *l =l -l ;l >l ,l jk 'l )l !l ~l {l 9g ]l ^l &@ 4@ 7@ A= -& o@ _. {* ^. (. /. /* &. A@ 5# &. 6# $% 5# /l $% z$ X K@ L@ L@ P X E$ P@ A J J P@ P@ S A N@ ", +"R@ ]& - # ; # . + o! # - T@ $ o! = - Q$ 0' . . $ + Q$ ; ] . > $ U@ U$ # k) T@ & ^ N$ T@ H= H= > ; 8- | ] - X@ ^& ) | H= & > X@ 2 1 ; [ ~ 2 ) W@ { ) d 4 | | 8- { ~ D, &# d d [ 6 d 6 Y@ 1 e (l _l #( #( :l ~# r ,> m c |l 1l 2l 3l 4l m s> `$ b' % 4* D G `$ C Y$ /# G T8 5l 6l h| X[ N= w z I w K M A H$ N P@ J J E$ O@ E$ |# J I E$ J `j #( #( wk 7l J 4# C$ S G$ L@ E^ V O= 8l 9l #( #( #( 0l I@ O= y@ @. 8# Q' .= ,. =. $% al bl cl !( dl g_ ;' ;. ~( ,. /3 6# >. z0 A0 Ki 9/ b: b: Y6 el fl gl hl il jl r/ r/ r/ r/ Y6 L] ;1 ij 4h #( (5 kl W^ =2 =2 F3 F3 F3 +: F3 13 }e }e }e }e 13 :4 Oi #( #( jj ~b ll Nd =/ ml K4 ~b 8h hf %0 ng ;k nl ol pl ql rl ql sl A9 a9 tl Pd Qd A9 A9 0h Pc I0 Lk ul oj vl oj ul }c wl xl yl zl Al Q5 >8 Pk n8 Q5 >8 Ye Q5 Q5 o8 d9 n8 Vi n8 o8 K0 fd Bl Rc M9 Rc 8e c3 M} 8e Cl T3 i9 T3 S3 x/ u^ Dl d3 j9 U3 45 6< v[ El 34 34 .f .f 34 .f I| 9e ]k +{ 34 )2 7< J^ 7< J^ 7< C_ J^ C_ J^ 7< 3{ `^ `^ T] W5 `^ }_ 3{ W5 W5 }_ j/ 1c [} ~) y^ F1 r8 Y5 E_ y^ 74 y^ y^ @{ y^ @{ y^ :/ @{ Ud 2c @[ k/ u: [^ b] k' ] ] ] _~ _~ _~ ] _~ _~ _~ _~ ] _~ X] e~ ] ] -~ i! i! k^ .) g, #{ .) l' +! i, .) l' K> G* e= ^) e= K> G* G* ./ G* +) G* ^) u% )- k; Q, Q, H* *$ ;$ l+ n+ n+ h+ l+ n+ l+ l+ -$ l+ h+ m+ n+ l+ k+ =; o+ s+ '$ o+ o+ 8> )$ )$ x+ x+ Yi )$ Xi Fl Gl v: E+ E+ F+ D+ F+ n; E+ n; F+ D+ F+ G+ G+ sa G+ G+ 4c ^7 ^7 $g F% G% f) f) _{ _{ _{ p; _$ Hl _$ _$ _{ _{ _{ L| '; p; <~ #@ #@ #@ '; <~ %@ *@ &@ *@ v] &@ %@ #@ :- *@ #@ %@ B[ B[ M* Il .@ yg Jl Kl Ll Ml $j Nl bc Ol Pl sh Ql Rl 4i oh 6b ph l Ig Ig sh sh sh Kg sh 7i (f {f ^d {f .l Sl Kg sh sh 7i Cf ac Tl Ul Vl &l 4j hi )l [j _j _j _j _j 3g Wl Xl Yl Zl `l m .m Yg 'f je +m gb @m #m $m *@ 4@ $& e@ :; l@ N- -& d# {. >& >& u@ x@ $% z@ &. A$ 5# z@ E@ X T $> H G@ 7# T O= H@ A P@ E$ M q! P@ +% J ", +"R@ # $ ]& > . . + Z, . 1* ; T@ * ]& * R- ]& ; . Q$ = & - & . ^ ; . > Q$ N$ | . ' P$ & P$ P$ H= ; X@ H= ] - ## ] *# X@ ; N$ Q$ N$ 2 N$ X@ ~ { W@ / [ ) 2 / ~ ~ { X@ N$ X@ ( / ~ 4 6 } 6 Y@ %m => 1 [ &m H[ #( #( *m ( 7 d =m b} #( #( -m L= ~# a 8 a ;m >m ,m 'm #( #( )m !m ~m {m ,m ]m s> ~# 0- g K/ C; ]m ^m Yj H[ m( /m (m _m :m ]) ]) d+ G* ^) ^) K> i, %$ e= e= 0+ K& K> G* u% G* %$ S) Q, h, l+ ;$ l+ l+ ;$ n+ n+ l+ m+ h+ h+ ;$ l+ l+ h+ l+ m+ M& M& o+ '$ )$ 9> !$ 8> v+ 9> !$ )$ 8> v+ 9> v+ (i E+ G+ D+ D+ G+ G+ D+ F+ 4c G+ F+ G+ W2 Uc F+ W2 ^7 P9 W2 F% L| f) L| L| f) _{ _$ _$ Z+ Z+ L| _$ _{ p; _$ nf Z+ Z+ #@ %@ %@ <- <~ %@ '; *@ D- *@ S> &@ &@ &@ &@ %@ R> +^ @^ X+ X2 .n +n @n #n $n ^e %n &n *n =n -n ;n oh Rl 5i 5i 5k >n 7k 7k Ig &d Ig jc ]g ]g ^g ^g 7i 7i se #e jc sh sh ^g se Sl ]f wc ,n 'n )n &n ]j ii [j _j _j hi _j !n ~n {n ]n ^n /n Hj Nh (n _n Eg ^e ti `g :n ; . = ; > ]& $ > & $ # T@ + > . = X@ ] S$ . | & $ ; . Z! & %= ; ~ ( & %= & ; | %= { ; ; ~ ~ ~ ) ) [ ~ ~ ; { Z! Z! ; 2 X@ N$ 2 ( 1 ) } 6 a / 4 2 a }n #( #( |n 1n } 2n 3n #( #( X} 4n a e 6 M' j 5n #( #( #( #( #( #( #( #( #( #( 6n j g h Y$ 7n e5 |n #( #( #( #( #( #( #( ][ 8n 9n Z$ m 0n `$ x /# an bn #( #( #( #( #( #( #( cn dn L/ E$ I /# G w z ~& :* J E$ J Q@ |; H %> A M@ +i #( #( 5m 6m L J 4# I@ L@ L@ 0* d- 2# V X en #( #( W_ fn r9 . ={ .= H9 r5 L) gn O< #( #( #( #( #( #( #( i_ hn 9[ A0 A@ $. =. |h ~( in jn kn #( #( #( #( #( #( #( #( &: ln x4 mn r/ r/ nn *k #( (5 Ni B0 Bb B0 F3 F3 on pn h8 #( #( qn rn sn tn #( #( #( #( #( #( #( #( #( #( un Oc ma )i if M3 vn wn #( #( #( #( #( #( #( xn yn Pd Qd Lk zn Mm zn Mm An #( #( Bn Cn Dn En #( #( #( #( #( Fn Gn Hn o8 Z< J0 n8 Q5 n8 Ye o8 Vi In o8 bh Ye ]: Ze Zf Bl Bl d3 ch Jn h9 8e h9 d3 T3 S3 i9 >0 u^ U3 T3 Kn 34 6< 34 v[ `e .f v[ 6< 34 34 .f H| qa 55 Ln Mn J^ 7< J^ 9e 9e C_ C_ J^ e3 3{ J^ C_ `^ }_ j/ W5 3{ `^ `^ `^ `^ ^~ [_ }_ h^ @{ F] #g ~8 74 @{ B/ @{ t: @{ y^ @{ K{ B/ ~2 :/ U] Y: lf k/ j^ A) A) ] :~ _~ k' ] _~ ] `' _~ k' _~ _~ :~ k' e~ i! >] ] >- Z5 i! .) i! g, ]) l' >- a+ i, l' .) .) u~ e= >~ i, K> G* %$ G* G* )- G* e= G* %$ G* '- S) |' )- ;$ l+ ;$ l+ l+ ;$ m+ n+ h+ y- y- l+ n+ n+ h+ m+ q+ o+ '$ Nn )$ M& !- '$ )$ 8> 9> !$ )$ !$ v+ !$ 9> 0e C+ G+ F+ G+ G+ G+ G+ G+ G+ On G+ W2 `5 4c _i f) W2 W2 4c F% f) Y+ f) f) Y+ Z+ p; '; f) L| _$ Z+ p; L| '; <~ <~ #@ %@ +@ &@ &@ %@ &@ %@ m, >@ `& 7$ &@ &@ ~; &@ #@ M* 6/ g) Fc Pn Qn Rn Sn Tn 3f Ih Un Vn Wn Xn Yn Zn `n 5i Bh Ql o Rl 5k 6b 6b bb *j ab &d &d Ig sh ic .o Ig *j ab .o Ig &d sh /g fe td +o @o Vl |k #o _j (j _j (j $o %o &o *o =o gk ~n ^n -o ;o >o je +m ,o Z0 'o )o W+ |@ $* o$ :; -& a. u@ 5& ~. t@ {. !. {. p, z@ E@ $% B$ -. 6# z@ +. X }; G@ ` ` C, Z H A M D$ o> M Q@ E$ ", +"- $ Z, + 0' . $ k) $ 0' . S$ + $ . & Q$ U@ . + $ R@ o! Q$ ; ; $ }* . . [* . . | H= o! ] U@ & ] & N$ ; ; - *# 2 ; ^ ; Q$ H= o! ; =' & | ) ; - N$ 4 { ] 5 1 V~ Z@ ~ 2 <& ( ) 1 ( 1 } [ $# b 1 6- J= !o ~o #( #( _l 5 {o $( #( $( ]o =# ~# d o {# ~# 5n $( #( #( #( #( #( #( #( #( #( ^o g a C; /o (o #( #( #( #( #( #( #( #( #( #( _o :o m D m % m 8 Fb Q5 Q5 Q5 po Ye Vi Vi Vi o8 Ye Ye Td Rc Sd Cl qo `f K0 8e ro so to T3 d3 S3 S3 d3 45 uo j9 gd T3 U3 vo 34 R( V5 34 v[ V5 34 Rk <} wo 9e xo yo Sc J^ 7< C_ Z{ J^ Z{ C_ C_ }_ C_ 7< zo `^ `^ e3 T] }_ K^ }_ }_ }_ T] [_ j/ j/ Y5 [_ ~8 F] ~) @; y^ @{ ~) @{ @{ u: y^ y^ b] y^ u: S( :/ k/ A) b] A) k' _~ _~ k' k' ] k' _~ _~ _~ ] _~ X] g, g, ] w- +! >- g, .) #{ i! d] l' .) #{ G* l' l' i, ^) ^) G* L{ %$ G* u% G* G* u% ,- e= k; %$ G* e= Q, S) 0+ n+ n+ C) ;$ l+ l+ h+ h+ h+ n+ n+ n+ n+ r+ n+ n+ h+ n+ '$ s+ '$ =; h+ pj )$ o+ v+ 8> Ao o+ v+ 9> Xi v+ y+ n; E+ G+ (i F+ F+ F+ F+ F+ G+ W2 sa _i ^7 f) F% P9 4c G% L| L| L| F% Z+ Y+ Z+ Z+ Z+ _{ '; '; p; p; p; p; '; :- %@ &@ %@ S> %@ %@ %@ &@ p= %@ &@ S> *@ *@ &@ &@ *@ q; G' of Bo Co 'd Do Eo +m Ml Fo =n Go Ho Io Jo Ko Lo ud Ql Mo Ch ud 7k Xb 6b Xb Wb 6b 7k ph ph l 7k Dh 5k 6b 6b ab &d ]g ^g /g $e No Oo Lh |k Po Qo dk (j &l Ro So To gk Uo Vo Wo Xo Yo Zo `o p .p +p @p #p $p H' %p o$ i@ &p j@ u@ :. >& B= E~ ^. '. !. ). &. '. ). E@ z$ 0# z@ . V 5# 4# C$ P P H T J A S b- Q@ A z ", +"T@ $ L$ + = p9 > ]& ' $ . Q$ Z, ] > > . - . $= > = > > # Q$ ; # ] N$ > T@ & ; - $ Q$ . ' H= T@ - ; H= N$ Q$ ; W@ { ~ ) | V@ Z! X@ ~ { 2 X@ ~ / 2 , | W@ ( D, ~ d $# d /& ( 6 } [ 6 < ( ## Y@ !# 6 $# *p #( #( d< =p -p #( #( ;p >p j ~# } 7 a j ,p 'p )p !p #( #( ~p {p ]p ]p ^p /p m ~# `$ (p 7_ #( #( c} _p :p

M 3; J o^ I$ L bp #( #( wk 9 3# Q L@ J I@ O= J O= I@ r9 q9 cp dp #( #( ep O= O= q9 ja 5d fp 4: #( #( M2 gp hp ip jp kp lp #( #( m7 mp V^ =. /3 x5 np (( #( #( a[ op pp gm qp rp sp _( W_ tp r/ r/ r/ x4 up 4h #( (5 Ni f[ Jc =2 +: vp wp w( #( 4h xp 13 }e yp zp Ap Bp #( #( Cp Dp Dp Ep Fp Fp Gp H0 'i H0 Hp Ip #( #( ]_ Jp Kp Lp Mp Np *8 #( #( Op Pp Qd {i Qd A9 I0 Qp w( #( Rp Sp #( Tp Up Vp Wp Xp Yp #( #( Zp `p Pk o8 a3 ed a3 n8 o8 n8 Ye Ye n8 Ye Sd Rc Td Vi q Cl h9 .g q so .q h9 3| T3 d3 T3 j9 `e kf gd j9 q8 V5 34 34 V5 34 V5 .f v[ vo V5 Sc V4 +q yo ^1 J^ J^ Z{ 7< 7< 7< Z{ 7< J^ `^ 7< C_ }_ 3{ 3{ }_ ;] 3{ `^ W5 W5 [} j/ j/ [_ <^ <^ r8 @{ y^ @{ ~) Ud y^ @{ y^ t: h^ y^ Z: u: t: r{ :/ y^ [^ C/ b] k' _~ ] %, _~ _~ _~ k' _~ ] _~ k' X] g, e~ Z/ Y] ]{ >- +! N^ ]) -~ i! -~ .) .) i, i, t% .) G* G* e= e= %$ %$ e= 9+ h, %$ ,- ,- G* G* %$ 0+ Q, S) @q j+ n+ g+ l+ n+ l+ l+ n+ h+ l+ *$ ;$ h+ =; n+ n+ h+ n+ =; s+ ,$ '$ !- )$ )$ )$ 9> v+ #q Ao v+ Yi Yi v+ G+ D+ D+ G+ G+ G+ D+ W2 4c G+ W2 4c 4c $q P9 4c f) T& ^7 F% L| f) f) f) 5c _$ _$ p; p; p; Z+ p; <~ <~ <~ p; p; p; %@ &@ *@ #@ '; %@ &@ *@ >@ %@ &@ &@ %@ &@ %@ %@ +@ W+ %q /- &q *q =q -q sf ;q |f >q Wn ,q Ho 'q )q !q ~q Ja oh 4i Ql Dh 5k 5k Ql 5k 6k 5k 4i 5i 5i 5i 5i 5k 5i 5k 5k {q *j Ig se /g ^f ]q Tl ^q /q (q _q (j :q %o * a. l@ {* w$ C= >& %% (* +. z@ E@ 5# +. z@ $% &. .. +. +. 5# P M@ P@ K@ Y Q@ J S P@ @% P@ M 3# ", +"= = * $ T@ M$ & + * . . Q$ Q$ > ; & V@ $ o! & }* z] * - * . * > P$ ; ; - Q$ > # ; `@ *# X@ ~ Q$ [ | ] S$ N$ W@ 2 > N$ ~ V@ | 2 & ) { ^ | < / { ~ ~ W@ | | N$ Z@ *# 2 ( { ) < $# 1 6 } d [ 6 ,# aq bq #( #( cq #( #( d< dq 6 ,# j a 3* ~# ># ~# 0 j )h #( #( eq o 6! 6 [& n Y$ s> fq gq #( #( hq iq e ~# r s> |& c jq kq v6 p `$ D l< lq #( #( mq nq p B :# {& I oq y< #( #( pq qq w w M S K z M I H P@ n! M O@ d- M dj #( #( rq 6m M@ T G$ D$ P 58 4# T 4# O= P sq tq #( #( uq vq r4 ja ja G: wq #( #( xq yq ,. 6# .. $% $% zq Aq #( #( Bq Cq =. /3 b: Dq +_ #( 7o Eq Y6 b: <3 b: Y6 82 Fq Gq Hq A5 x4 ;1 L] Iq 4h #( (5 Jq =2 Q/ 3~ Kq Lq w( #( Mq Nq Oq [e [e [e 13 13 Pq #( #( jj Qq Wf Rq =i =i Sq )i Yf ma Tq #( #( +_ Uq Vq if >k a9 Wq Xq ]_ #( #( Yq {i Zq cd a9 }5 `q w( #( #( #( r .r rg t[ t[ >8 +r @r #( #( #r $r Q5 n8 n8 Q5 n8 o8 Ye Bl Bl %r Ye Vi Td `f Ye o8 c3 Rc .g `f i9 .g 8e T3 n kf El T3 j9 T3 gd El v[ v[ u^ 34 34 v[ 6< V5 V5 34 v[ <} !2 +{ 44 Ln J^ )2 Z{ J^ 7< J^ ]k C_ 7< `^ Z{ 7< }_ `^ T] f3 W5 `^ 64 W5 T] }_ [_ [_ K^ ^k ~8 G{ ^k (~ @{ @{ ~) r8 @{ y^ @{ @{ y^ u: c~ h^ c~ [^ k/ b] r{ b] N0 k' k' %, $[ :~ _~ ] _~ j^ ] k' B* d] i! e~ c] k' >- ]) i! #{ .) g, -~ -~ 7+ i, i, .) ]) e= e= %$ %$ G* G* G* 0+ e= e= |] ,- G* G* G* G* U; S) S) j+ l+ f= n+ n+ l+ n+ l+ l+ l; h+ n+ n+ h+ h+ =; k+ m+ =; o+ ,$ o+ o+ w+ o+ Xi v+ 9> v+ Yi v+ v+ 9> 9> 0e F+ G+ F+ E+ G+ G+ W2 W2 W2 G+ F+ G+ F+ 4c &r W2 _i V& L| L| F% f) F% _$ p; p; p; p; '; m, p; _$ p; '; p; p; %@ &@ %@ %@ %@ *@ wg <~ V, *@ >@ &@ %@ #@ %@ #@ #@ #@ @@ U+ *r =r 6j -r ;r >r ,r 'r )r !r ~r {r ]r ,q Xn ^r /r (r yj 5i 5i Ql 5k 5i _r _r :r !, + ]& Q$ . ~ & . > ; . . ; . # S$ + * #^ ; ~ =' ; U$ & . U@ | | H= H= & ] | - ; ; ; `@ ] ^& { X@ - } ( ~ ## 2 / { ~ W@ } / 2 [ 1 5! | [ 1 6 [ { < [ ^ V~ ) d a 6! 2d d ,# hr I1 #( #( #( #( ir _7 ~# ,# L= d d e e ,# c {# [l #( #( }l h h 0 c {# {# c jr #( #( d< kr g p L= _# A~ {# p ^# 2, l _# p Y$ lr c} #( 7_ mr G F= G /# A ~& N nr 7_ #( or pr M A S n! I P@ M@ S P@ 8* J J S :* H$ dj #( #( 5m qr M L@ d- 4# 4# P' G$ T L@ J L@ I@ rr #( #( sr tr q9 q9 r9 ur 8: #( 7_ vr ,. wr F^ 6# /3 =. A@ xr +_ #( yr zr =. A0 df -} #( #( Ar Z9 Br Y6 c[ >b >b >b 82 82 <3 82 J: r/ J: Iq 4h #( (5 Ni 2h Jc Cr Dr 7_ #( (5 Er F3 +: 13 6h 13 }e =i Oi #( #( Pi Qq Qq Rq s9 =i :c 8h ~b Fr Gr #( #( Hr Ir jf mj Jr *0 Ri Kr Lr #( #( Mr Nr Mm ad -8 {i lo w( #( #( Or Pr Qr 03 oj rg >/ Pk Rr w( #( Sr Tr a3 Z< a3 Q5 n8 n8 o8 o8 Bl %r Vi Vi Vi Rc `f Bl M9 h9 35 Ur 35 8e Vr >0 >0 n h9 S3 j9 __ >0 El U3 gd v[ 34 6< f 34 34 V5 V5 .f @g V4 9e {k <} ]k J^ J^ F{ J^ F{ J^ 7< J^ e3 C_ e3 }_ }_ `^ T] Y5 f3 `^ }_ T] }_ }_ r8 1c j/ W4 F] W4 ~8 G{ y^ y^ ~8 74 @{ y^ y^ V] k/ [^ y^ V] A) y^ T( [^ D' A) k' _~ j^ k' _~ k' ] _~ _~ _~ _~ Y] X] g, e~ w- ] V3 #{ i! g, l' #{ g, l' l' #{ e= i, l' K> G* U; e= G* i, G* k; ,- e= ,- 6> G* %$ f= u% %$ Q, S) g+ *$ l+ n+ w% m+ n+ '- C) h+ h+ h+ n+ M& h+ h+ h+ n+ !- x+ o+ o+ '$ x+ )$ o+ 8> Yi Yi v+ Wr Xr v+ Yr (i ~- F+ (i ~- G+ F+ F+ 3c 3c 4c W2 W2 G+ 4c W2 W2 W2 f) L| F% F% _{ L| nf L| nf _$ _$ p; '; p; _$ p; <~ p; '; &@ %@ *@ <~ %@ &@ <~ '; p' &@ &@ &@ &@ &@ &@ &@ @@ @@ +@ Zr `r s Mb .s Nj =f 6q +s @s #s $s 'q ,q %s Ho Io Yn &s *s 4i [r 4i 5i _r Lo [r xj =s Lo yj }r 5i -s Mo 6b 7k 7k Xb Ch ic &d #e ^d ;s yh >s rd rd ,s 's )s !s ]& L$ + > . + . X! Z, $ ; $ + T@ > [* > # # ^& S$ Q$ ; & > . > - Q$ . ) | X@ ] ; X@ | ] ; $ ; N$ - ) ) ( 2 > X@ ## - N$ ; | W@ 4 [ ( ## { R$ D, ] [ ( ( ## 5 6 $# [ ^ [ / < &# Y> Y> 9 J= :s p /8 #( #( |p 77 h D L= {# h ,# `$ C h h L= h % |s #( #( 1s 2s t w r G [# F= I 3s 4s #( $( 5s M z w I w P@ n! I O@ P@ #= J H >) >) dj #( #( wk 6s |# H ` J G$ r! Ld Y r! C$ L@ 7s 8s #( #( ._ 9s 7s r4 r4 0s #( #( as bs cs #. a* L) /3 $% =. ds es #( 7_ fs /3 A0 ~( gs #( #( ]5 t( gg t( Y6 >b ~9 ~9 82 Y6 >b >b J: r/ x4 Iq 4h #( (5 5h hs is js 7_ #( *8 ks yp 13 }e 13 F3 +: }e }e 63 #( #( Hk Wf Wf [e ls ms ns $0 )i os ]_ #( *8 ps qs rs ,2 qg !i 9h b/ ss ts #( w( us A9 {i Qd Qd lo w( #( #( vs Sm }c }c >8 oj Pk oj ws xs #( #( ys Pk a3 Q5 Ye o8 Vi o8 o8 o8 o8 Ye Ye Rd zs Rc Vi Rc c3 M9 Rc Rc Rc .g i9 S3 >0 .g d3 S3 45 j9 j9 45 El 34 V5 v[ f V5 V5 34 6< V5 ~k Sc J^ Z{ Ln N9 9e 7< F{ Z{ F{ J^ C_ 7< J^ C_ C_ C_ 3{ `^ [} H{ 3{ }_ }_ }_ }_ }_ ^k [} W4 [_ @{ F] b) As @{ y^ E_ J| y^ y^ t: t: P! i^ :/ L^ :/ c~ q{ b] [^ k' j^ k' _~ k' ] _~ :~ :~ ] _~ ] ] ] -~ w- i! 2_ Y] e~ i! i! .) l' 6+ #{ l' l' K> l' l' .) G* %$ G* G* e= G* j, +) %$ e= ,- u% G* |' *$ G* Q, w% n+ l+ l+ l+ w% ;$ n+ w% w% h+ -$ n+ h+ !- h+ h+ Bs h+ M& {$ )$ o+ )$ '$ o+ )$ )$ )$ Yi v+ Fl 9> Yi Yi v+ ~- G+ F+ W2 G+ E+ @f F+ W2 W2 4c W2 Cs sa 4c _i W2 _i F% f) Ds _{ _{ _{ _{ _{ p; ,; '; <~ '; Z+ '; nf Es p; <~ '; *@ &@ &@ *@ %@ '; %@ &@ %@ &@ *@ &@ %@ #@ #@ +@ +@ Il Fs Gs de Hs Is Js Ks Ls Ms Ns Os Ps Os 'q Qs Rs $s Ss Ts Us Vs oh 5i _r xj Ws Xs Ys 4i }r 5k Mo ph Ig &d jc jc 6b 7k 6b &d se {f Zs +l `s t .t +t @t )s )s !s #t To $t %t |j &t ]s &t *t =t -t /s $c /e ;t G% >t 6@ ,t && p@ o@ D= >& E7 ^. w$ ^. x@ 9# ). &. ]. A@ .= R .= 7# C$ H X E$ H P G@ Y M q! A H Q@ P@ M ", +"o! ; > & - $ ]& # # ]& J$ N$ * {c & %= $ $ V@ > > ; | & $ & > & $ ~ | H= ~ & Q$ ~ U@ & N$ & H= ~ > ~ H= - R$ ] R$ ^ *# | U$ ; V~ 4 | | & Y@ | N$ } 2 $# | %# , X@ ( { } } / 4 [ X@ [ 6 $# W@ 7 7 6 6- [ 't #( #( #( )t d ,# K= j 9 i 9 { e c Y> Y> [l #( #( }s } 0 L= a' o Y$ !t d< #( $( ~t !# 2, n n h _# 0- p ^# % `$ 4* $] h5 {t #( #( ]t w ~& D /# z ~& I 4* G ^t #( #( /t I E G N I H$ P@ z E$ 3& M n! H$ J >) dj #( #( 5m z6 |# T E$ U^ O= V O= O U r! n) O= (t #( #( '3 _t E@ ja :t b 82 ~9 x4 ;1 ;1 Ek 4h #( (5 4t 5t 8 &: #( +_ 6t 7t 13 +: on +: F3 13 13 }e Oi #( #( jj }e }e s9 8t Wf 9t 0t )i at #( #( bt ct L4 Kk if !i Jr >k dt et ft #( #( gt Qd tl Lk Mm lo w( #( ]_ ht Sm }c }c 03 oj >8 >8 >8 it #( #( jt Pk >8 o8 o8 o8 Q5 n8 n8 Ye bh Bl Vi sg Sd M9 Rc Cl 8e Rc .g kt .g i9 Rc d3 >0 .g j9 i9 x/ T3 d3 U3 v[ `e 34 34 __ vo V5 V5 .f V5 V5 @g U4 /1 7< <} lt ^1 7< e3 zo 7< C_ C_ e3 C_ Z{ C_ zo }_ }_ N! W5 W5 }_ `^ W5 1c r8 [_ T] [_ ~) y[ ~8 ^k r8 y^ F1 y^ @{ y^ {7 E_ t: J| c~ t: 2c [^ mt Ud b] b] j^ k' k' k' g3 ] ] %, Y# k' k' k' k' >- _~ g, c] ] ]{ -~ i! .) l' g, i! .) .) ;~ K> 7+ .) .) K> G* %$ G* G* i, G* G* e= ,- *$ G* 0+ ,- 0+ }' w% h+ j+ l+ l+ '- z- l+ f= w% n+ n+ n+ h+ h+ m+ h+ h+ q+ h+ q+ nt )$ )$ o+ v+ v+ '$ )$ v+ v+ x+ #q Yi Yr Yr ~- W2 F+ F+ 4c F+ G+ W2 W2 W2 W2 ot 3c _i sa 4c 4c P9 f) F% f) f) f) .^ L| $g _$ _$ p; p; <~ Z+ '; p; <~ <~ '; p; <~ %@ %@ %@ 4$ m, %@ &@ &@ %@ &@ %@ %@ #@ #@ @@ Z+ pt qt rt st tt ut vt wt xt yt Ms Qs Os Os Os Qs %s Ps zt At Bt `n Ja 5i 5i * ]& ]& * = $ $ = | | $ R- $ - . $ | . > Q$ ; Q$ $ ; # & T@ ] Q$ & ~ Z! ' 1 %= & P$ ) N$ Q$ N$ X@ 2 U@ 2 }* U@ *' =' Q$ T@ | ] ; { > 2] { | { W@ { 2 Y@ 2 } /& /& ,# } < 2 Y@ ( | 6 6 d 6 Mt Nt #( #( #( f6 Ot k 7 e 1 ,# 6 d V$ Y> 6! a .i #( #( Pt 9 g s> L= c Y$ Qt #( #( Rt St `$ D s> Z$ L= p r s> 4* Z$ n % b' Tt &3 #( 7_ Ut p F= m m p 4* t /# I Vt #( #( Wt z C G I ~& /# O@ P@ I O@ H$ M M L@ c' dj #( #( rq Xt G$ d- L@ T T Y T L@ 2# U V r9 Yt #( #( N_ Zt y@ ja `t 4: #( 7_ u r9 r5 =. $% .u $% =. $% $% -} #( #( +u /3 F^ =. @u &: #( +_ }t #u gg Y6 >b ;} 82 d[ `9 >b ef x4 J: ff Iq 4h #( (5 $u %u (5 #( w( &u *u 13 13 Se 13 }e Se Wf on Wf Oi #( #( jj =u Wf -u ;u 7h =u >u Yf ,u #( #( 'u hf jf qg qg jf *0 !i )u !u ~u #( #( {u ]u zn Mm Lk lo w( #( ^u /u {i oj (u _u oj oj Pk Zf :u #( #( 0 .g Jn j9 Cl |u d3 n >0 d3 __ 45 45 45 `e gd 34 .f v[ !k 34 V5 V5 34 V5 V5 44 Sc J^ Rk Mn !2 7< J^ C_ +f Z{ C_ C_ Z{ `^ 7< e3 C_ 1c [_ W5 1c r8 }_ 1c }_ zo S] r8 X5 74 r8 r8 ~8 1u ^k ~) @{ y^ y^ !/ t: J| h^ c~ '^ k/ Z: Y: k/ S( @[ b] A) _~ k' ] g3 _~ _~ ] _~ _~ _~ ] Y] Y] 6+ w- d= }^ 2u i! ]) ,] i; w- >- l' a+ G* G* .) l' a+ G* K> e= G* a+ %$ %$ G* ,- u% %$ %$ %$ G* %$ U; l+ g+ K& n+ u% f= h+ h+ -$ n+ k+ h+ l+ h+ m+ n+ h+ q+ M& =; )$ o+ '$ '$ !$ 8> '$ 8> v+ 9> 3u Ao Yi Yr Yi 9> G+ W2 F+ W2 F+ W2 W2 G+ W2 W2 G+ G+ 4c sa W2 P9 ^7 Q+ L| f) P9 F% L| P9 ot _$ @/ '; p; '; <~ '; p' <~ '; %@ '; p; %@ %@ *@ m, %@ p; &@ &@ &@ &@ &@ *@ 1] @@ @@ W+ R+ 4u 5u Qa 6u Hs 7u 8u *n 9u 0u au bu bu Ps Os Qs Os Ps Ps cu du eu fu 4i oh 4i _r ud ph Dh Ig ]g sh jc Kg ^g /g /g /g /g gu ^g Ng {f hu iu ju [q )s ku lu Et }q mu nu ~n nu |j ]n ou pu qu ;o ru su tu @p uu vu p= g$ n$ 1} o@ <. a. t@ m@ c# ~. {. ). ,& '. A@ V> =. ). 5# 7# L@ F@ V P &' T J 3# P@ H H H H P@ I A ", +"p9 p9 + $ # # - . 0' $ # [* ] & + . ] $ $ . . & Z! . Q$ ; ; - > - ]& . $ ; & *' V@ V@ (& > ~ & ] ; U@ Q$ U@ `@ & ] { V~ | N$ ] H= N$ J) H= N$ [ ) | { { 7 2 [ ( { Y@ I= ( 2 6 == d d a { } ( Y@ i p6 0j #( #( #( #( #( wu a e 6 d k o ~# d g ,# 9 )h #( #( eq a A~ L= ~# n 8 xu #( #( yu zu s> -) c C; h b' l !# r D |& b' t Au d< #( 7_ Bu Cu Cu Du Eu Fu Gu Hu Iu Ju )6 #( #( }2 Ku M Q@ {& P@ B M K N %> M 3; d{ P@ t> +i #( #( 5m Lu J U H L@ Q Y t> L' X 4; T X Mu #( #( M_ Nu Ou r9 Pu N_ #( 7_ d_ Qu Qu Ru Su Su Tu Uu Vu Wu Xu w( #( Yu Zu ,. $% `u v #( #( #( .v +v @v #v $v >b >b 82 82 9# B5 ;1 r/ up 4h #( (5 %v i[ #( 7_ &v *v Re Se W^ on =v Se Se Oq 13 }e Oi #( #( Hk Wf /c Qq =v -v =u ;v >v ,v #( #( 'v Jk if !i nl if )v !v Ri Pd ~v #( #( {v ]v ^v Qd Pc lo w( #( /v (v _v (u :v ] _~ :~ k' k' k' k' k' _~ d= g, g, i! ] s] g, +! g, l' 6+ i! l' l' K> i, .) l' ./ e= %$ G* ^) K> %$ ,- G* %$ +) f+ G* u% %$ e= &, g+ l+ 0+ l+ ;$ n+ l+ ;$ l+ l+ n+ m+ m+ h+ m+ n+ h+ m+ o+ o+ o+ M& '$ o+ x+ 8> )$ Xi 8> !$ )$ 8> 8> 9> 9> 9> G+ D+ ~- 4c G+ W2 G+ G+ W2 W2 W2 4c P9 4c On _i W2 f) V+ L| L| L| L| L| L| '; p; p; _$ p; p; 9v @/ '; <~ '; '; '; +@ #@ #@ +@ &@ %@ *@ &@ %@ &@ *@ &@ %@ +@ X+ U+ Fs 0v av bv cv dv ev fv #n >q 0u Qs Qs Os Qs Os Ps Os Os Os Ps gv hv iv jv xj _r Ql ud Ch Ig ]g Mg 7i (f /g 8k 7i ^f fe kv Cf lv $c mv nv ov pv qv ku rv * $ T@ ] $ }* - S$ . U$ S$ & Dv . * . . . Q$ S$ T@ Q$ $ $ ; N$ | H= & ' U@ | R$ ^ %= ~ ^& ~ Ev 2 N$ { ~ 2 1 N$ | 2 ~ 2 ~ [ ^ { 4 X@ d 1 ~ | ( /& b 7 V~ { $# 6 V~ 6 Di m( #( #( Fv #( #( Nt Gv ,# b 7 d a i d c 3] L= [l #( #( }s ~# A~ ~# o |& ~# Hv #( #( 3 V} r h 2, ~# `$ p Z$ 9- L= `$ r V| C J_ m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( q| qq F= M z I I G 8* I M P@ S E$ O@ a- +i #( #( rq z6 P@ d- 3d 4# d- Q 3; Q G$ d- L@ V Iv #( #( Jv Kv r4 O= Lv W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( Mv Zu ;' /3 /3 Nv !4 #( #( #( #( #( Ov Pv Qv Rv >b Y6 82 >b ff << Iq *k #( w( M2 #( w( Sv Tv W^ Re Se W^ on Se }e Uv on [e }e Oi #( #( Hk [e 8d Vv Qq =i =u Wv Xv Yv #( #( Zv ma jf >k Jr !i !i `v Pd }5 w w( #( .w +w {i {i Mk lo w( #( @w #w $w :v ul vl rg oj ul J0 %w En #( &w *w >8 'k n8 n8 Q5 Ye o8 Ye qo o8 Vi =w Vi qo 8e qo -w ;w kt >0 ch .g >0 ch kf Vr ch d3 gd j9 45 gd El El 34 .f V5 U3 V5 34 v[ V5 34 .f V5 <} Z{ Z{ >w >w Z{ C_ Z{ J^ 7< e3 e3 e3 7< 7< 7< 7< 3{ 3{ T] W5 }_ [} W5 }_ T] [} f3 W5 T] j/ C' 74 W4 ^k @{ ~) @{ @{ @{ y^ @{ y^ @{ '^ c~ B/ S( ,w 'w / [^ 2_ _~ _~ k' k' _~ ] _~ k' %, _~ ] b= _~ Y] i! g, _~ s] 5+ i! i! 7+ >- i! 7+ .) .) i, a+ l' 7+ G* ^) G* G* G* G* G* G* G* %$ f= f+ e= G* %$ %$ )w l+ g+ *$ l+ n+ n+ n+ l+ n+ h+ h+ m+ h+ m+ m+ h+ h+ M& '$ !w !- '$ )$ )$ 8> 8> o+ )$ Fl v+ Yr 9> Yi 9> 9> m9 F+ E+ G+ G+ F+ G+ W2 W2 W2 G+ 4c ^7 4c 4c _i 4c F% f) ~w L| P9 f) L| L| p; _$ p; '; p; nf {w p; '; '; '; p; <~ '; %@ #@ %@ +@ '; &@ %@ +@ +@ %@ %@ %@ +@ @@ .@ ]w ^w #b /w (w _w :w vt = + # ]& . > + Z, ]& L$ $ $ > - Z, . Q$ $ . & - Q$ & ; ; U$ . & 2 ] H= Q$ ^ ; H= { & Z! ; > S$ P$ 2 . ] | T- N$ ~ N$ %= ^ 2 W@ ~ | { U@ ; ) ~ N$ ] { d ## { V~ *# < /& [ ( 7- | / Y@ { a4 jw #( #( kw lw S} #( #( mw nw $# a ,# a e ># ~# c 0 [l #( #( eq 7 L= 7 0 L= |& ow #( #( pw p 2, h L= c `$ (# Y$ 1; p `$ Z$ 4* n qw m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( rw sw n! Q@ G I I J P@ F= D J H J 1& M c7 #( #( wk z6 M D$ 0* tw G$ L@ J 0* O= C$ O= uw vw #( #( ww xw r4 r4 yw W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( zw Aw :3 /3 A0 Bw Cw Dw W_ #( #( #( #( #( w( Ew Fw ~9 ~9 ~9 >b x4 Ek 4h #( #( 7_ #( #( Gw Hw x4 Iw Re W^ Oq on }e on 8t Oq 13 Pq #( #( jj =i =u Qq =i Qq Jw Kw Lw Mw #( #( Nw ma Jr if Ow dt ;k Pw na Qw Rw w( #( Sw Tw Mm Qd Lk Uw w( #( Bn Vw rg zn 0 .g .g >0 Rc ch ch i9 d3 T3 j9 gd j9 .x T3 6< f 6< v[ `e f V5 V5 v[ .f .f +x 7< Z{ +f !2 J^ 7< J^ F{ 7< J^ C_ C_ J^ }_ C_ C_ }_ 1c T] K^ }_ `^ 1c `^ K^ W5 65 T] W5 [} F] [} ^k W4 F] @{ y^ @{ @{ @{ y^ @{ y^ u: :/ t: @[ [^ t: S( b] b] ] ] 2_ k' _~ k' _~ _~ k' ] ] ] _~ _~ -~ g, _~ k' 7+ -~ e~ l' l' g, #{ 7+ ]) @$ u~ 7+ K> G* e= K> %$ G* b+ G* u% k; e= g+ ,- %$ %$ %$ G* H* v% '- *$ n+ k+ h+ l+ n+ n+ w% n+ n+ @q n+ @x q+ m+ =; o+ 8> !- )$ '$ o+ 8> x+ 8> 8> Xi v+ Yi Ao #x Yi 9> Yi m9 (i F+ E+ D+ G+ G+ 4c @f @f 4c P9 P9 5c 5c $g L| _{ _$ _$ nf L| nf Z+ p; '; _$ '; <~ _$ _{ :- p; ~w '; p; #@ %@ %@ &@ %@ %@ <~ &@ p' %@ &@ %@ &@ #@ #@ W+ X+ &g $x 8q Eo %x dv &x *x Qs Ns au Qs Os Qs Qs Qs Qs Qs Os Qs Os Os =x -x ;x >x ,x 'x )x !x ac {f /f ]f /f Af Df ~x {x ]x ^x /x Kf (x _x :x 7w ov le |q > ' ~ Z! ; ^ . o! Q$ ^ H= ] U$ Z! & *> N$ ; | - . | ] ! X@ N$ Q$ U@ H= T@ I= { } ) ] 2 } ) ^ +# 6 ( { / ( ) 1 & ~ ( Y@ $# { X@ 4x $( #( I1 5x a 6x #( #( e6 7x $# 0 &# $# 7 a' 8x a 0 [l #( #( eq n h !# n a' r 9x #( #( w2 0x Y$ e c h s> h m ^# `$ Y$ Z$ y L= ax m( #( d< bx cx mr mr mr dx mr ex ex fx fx gx gx hx x ^# F= #= w A H :* o^ M :* b >b ~9 `9 up 4h #( &: Ax w( #( 7_ Bx Li y4 ,b Re 13 +: F3 F3 F3 13 [e Oi #( #( Hk =u =i =u ;u Cx =u Yf Dx Ex #( #( Fx ma 3e if if qs rs qg %0 if w w( #( .w Gx Mm {i {i Hx w( #( @w Ix :v Jx >8 Pk Kx ul 0 >0 Vr n j9 T3 gd j9 El gd 34 34 V5 V5 v[ 34 V5 34 V5 V5 ~k Ux ]k ]k @g Vx ;] J^ 7< 7< e3 C_ Z{ C_ C_ C_ C_ C_ `^ }_ [_ W5 `^ }_ [} W5 }_ W5 [] [} @{ y^ y^ 8v W4 y^ @{ @{ 74 F1 @{ @{ t: y^ y^ t: t: B/ A) @[ k/ ~2 b] C/ j^ k' _~ ] k' k' %, _~ %, k' %, k' k' 5+ w- w- k' %, >- i! .) 7+ >- g, .) l' 5+ G* a+ l' 7+ G* a+ %$ %$ G* e= ,- ,- G* G* *$ 0+ G* G* G* Wx '- Q, U; j+ m+ -$ n+ h+ h+ h+ n+ q+ n+ q+ m+ h+ h+ m+ q+ )$ m+ o+ )$ o+ p+ nt 9> 8> Fl Xi v+ v+ 9> 9> Yr Yr Yi (i G+ G+ G+ G+ W2 W2 4c W2 W2 4c _i ^7 Xx _i _i L| P9 f) f) F% L| L| _{ _{ _{ Z+ _{ '; '; <~ _$ <~ m, m, '; <~ '; %@ %@ %@ p; p; m, '; *@ %@ +@ @@ +@ X+ U+ ta Yx Zx `x y .y +y :w @y Ns Ns Qs Qs Qs Qs Qs Os Qs Os Os Os Os #y cu $y %y &y *y =y -y _x ;y >y ak ,y 'y )y Hh >o qd le !y ~y ke p e 7w ov >o |j !s sv {y To sv ]y gk vv |j ^y /n /n /y 4f )j -f (y _y ge :y }$ n, 7@ *& =* O- = $ # = o! > $ [* [* ; > !, > > . - ; | & ] N$ U@ & . > N$ H= | - ; > . ^ ~ H= - $ Q$ P$ ^ | `@ P$ > N$ | ^ ^ ~ U@ | d ; 05 ; N$ ~ { ~ , / ~ 2 4 => ~ { { ) 4 ^ ) ) ~ d ( }y |y #( #( 1y 2y q> 3y Tj #( #( 4y 2n /& a 6 a e ~# ,# Y> [l #( #( }s n r s> 2, 7 q> xu #( #( Yj 5y n n !# c{ h Z$ -) h h L= }& Z$ E, 6y ][ #( m( 7y m 2; [# G 4* N /# 4* F= A 8* G F= G 8* Q@ I z N J P@ P@ U o> O@ O@ S E$ +i #( #( 5m 8y T J J t> T H t> U d- O= d- 9y 5[ #( #( 0y 58 r9 r9 ay .: #( W_ by y@ wr R{ al +. y0 %i bf cy B$ :3 F^ $% =. |h /3 =. /3 dy /3 dy /3 ey fy gy _( 7_ #( #( hy iy jy >b ky up 4h #( (5 ly my #( #( g: ny Iw Iw 8t Se F3 F3 +: 13 *_ }e =k #( #( oy Wf Wf =i [e =u Qq =i py qy #( #( ry sy ty ;k jf rs dt >k uy vy wy #( #( xy ]v Lk Lk Qd Hx w( #( yy zy Ay Ay By oj Ay (u [v oj Cy |v #( 1v Dy Zf Pk J0 Bl Ye Vi Vi Bl Bl Bl Vi Ey Bl Bl q q so 4v Bl 8e 8e 8e qo q q >0 gd |u ch kf gd gd El gd Fy T3 `e .f .f El tg 34 34 34 V5 .f Tc +x N9 !2 .f 7< 7< C_ 7< 7< J^ J^ C_ C_ 7< C_ J^ W5 3{ s~ K^ `^ W5 H{ }_ }_ f3 f3 _1 F1 @{ @{ <^ [_ J| y^ @{ @{ ~) Ud B/ t: y^ Ud t: t: @{ u: [^ V] u: [^ N0 _~ j^ k' k' k' _~ ] ] _~ _~ ] k' _~ >- c] g, u- k' .) >- e~ +! .) 6+ 7+ .) ]) ;~ i, 7+ l' b+ i, e= %$ %$ %$ e= G* G* G* ,- ,- G* G* u% ,- %$ Gy )w f+ -$ Q, h+ h+ k+ h+ n+ h+ m+ I* m+ h+ h+ h+ h+ !- !w '$ )$ o+ o+ 8> v+ Xi Fl Fl Yi Yi 9> #q 9> Yr Yi ~- F+ n; F+ W2 G+ W2 _i W2 W2 4c 4c W2 Hy _i L| ^7 _{ _{ f) L| L| _{ L| L| nf p; '; '; '; <~ _$ '; '; m, <~ <~ <~ *@ %@ %@ %@ <~ m, %@ *@ %@ &@ %@ #@ W+ ($ ta Iy Jy Ky Ly My &x Ny @s Qs Qs Qs Qs Os Qs Qs Qs Os Os Os Ps Qs Ps gv Oy Py %y %y Qy Ry !y 6g 6g Sy pv Ty Uy Ml 7w 7w Vy Wy Xy p je e Yy Zy Zy ni )s &o }q }q sv e @z #z <- :@ 0@ $z i@ l@ (. O- = t@ = {. 5& &. &. x@ !. &. E@ 5# @. .. @. .= +. R I@ Z H |# ` P@ P@ P@ A P@ A ", +"1* $ L$ ]& . V@ = $ * = $ & . . $ o! > $ Q$ $ > . - # [* $ & Q$ & N$ o! ; $ | $ ~ . 2) U$ - # ] & . & > & ; - & ~ ## R$ R$ S$ N$ | [ ] *# | N$ ~ | ] ## } } | { $# 6 2 ) [ 5 | { ( { } / %z #( #( -6 &z 6 6 6 *z $( #( $( =z 6 ~# a 6! e 5 j 7 -z #( #( eq k a Y$ ,# o ~# *z #( #( <7 St j L= c r p r n n p Y$ -) Z$ p +| or #( $( ;z p Y$ y t n^ ^# @= c m w {& A z F= A N >z I I O@ :* G |# I a- 3; J 3; +i #( #( wk z6 T O C, G$ T H T U I@ I@ U ,z #( #( 7_ 'z @. &k U^ )z !z #( 7_ ~z bf r5 cf a* {z y@ %i r4 /3 +. /3 .u df A0 /3 |h |h A0 |h x5 x5 |h Bw ]z ~9 ^z /z w( #( W_ (z >b >b ^5 up 4h #( (5 Ni _z :z #( #( r_ 0 ch kf n .q T3 j9 f !k gd Fy `e El V5 34 f 34 34 .f ~k V5 ~k Rk Ux N9 +f I| 34 J^ 7< J^ C_ J^ 7< e3 7< }_ C_ C_ zo }_ W5 i( }_ W5 s~ W5 1c W5 T] [_ F1 @{ @{ ~8 ^k F1 F1 ~) @{ @{ @{ @{ t: Ud Ud @{ 2c {7 u: [^ k/ M^ b] b] %, ] ] _~ _~ ] k' _~ _~ %, _~ k' k' >- 4/ B* -~ _~ l' .) i! 6+ l' 5+ i! .) l' #{ K> l' l' 7+ G* %$ G* e= G* b+ %$ G* G* K& f+ h, 0+ ,- u% n+ -$ h+ u% K& *; h+ l+ n+ m+ h+ h+ n+ m+ h+ h+ bz q+ q+ !- Fl 8> )$ 8> )$ m+ pj !$ 8> Xi 9> v+ Ao m9 cz dz cz (i G+ G+ G+ 4c W2 W2 W2 W2 W2 4c Ds _i ez 5c P9 fz L| nf nf L| L| Hl _{ _{ _{ '; '; Hl p; p; '; p; <~ m, m, m, <~ %@ &@ #@ >@ %@ <~ %@ #@ %@ #@ #@ #@ W+ S+ @f gz st hz iz My jz *x kz Qs Qs Ns Qs Ns Qs Qs Qs Qs Os Os Ps Ps Os lz mz Py %y %y nz |w oz pz qz rz sz tz uz Vy Vy vz wz wz wz je p /x xz wf 7w gi fk #t }q To ]y =o |j |j ^n yz cw dw zz 'l Az ^s d Bz b Cz Dz b$ h$ X* l@ l@ o@ q@ E~ w$ x$ ^. *. (* ). z@ A@ &. V .= 5# V J@ R V P P S J K@ J S J@ M H$ H$ N ", +"V@ 1* Z, = 0' V@ $ * . 0' * $ # . L$ . = . + S$ . = ; $ + . . H= ; & N$ Ez & T@ ; S$ . Q$ > | > ; H= . U@ | {c . ; U$ 2 ~ N$ X@ & U$ | 05 2 ~ H= ; [ { N$ [ W@ { X@ 1 1 I= 4 2 5 9 /& 5 [ W@ 7- Fz Gz #( #( Hz _7 V~ 7 k >p Iz #( #( -p Jz c i n ~# 7 {# ,# [l #( #( }s |& ~# c n ]c Q{ Kz d< #( $( :m 0- h h |& Y$ ~# Z$ Y$ Y$ ~# |& Y$ r Lz Mz #( #( Nz c m }# C G ^# r F= A G F= I N A N G O@ A I A c- z O@ G O@ Oz H O@ bp #( #( wk 8y T I H J |# G$ J J L@ G$ Pz Qz #( #( Rz Sz O= C$ I@ Tz Uz #( #( d_ y@ wr Ou al Vz . /3 Wz Xz /3 Yz F^ A0 =. /3 |h |h A0 /3 |h /3 Zz `z x5 Ck Br A .A #( #( +A @A ~9 7d Ek 4h #( (5 Fk 2h #A $A #( #( %A &A Li Re Se *A =v F3 Oq Uv ym #( #( Pi [e Wf Wf }e Qq Qq Qq =A -A #( #( ;A >A ,A 'A )u )A ;k !v ~i !A ~A #( #( {A ]A Mm {i {i lo w( #( ]_ ^A {i zn ul }c }c :v oj [v /A #( #( (A Ye _A Vi Ye =w Nx Q5 n8 Ye n8 Ye Ye Vi Vi Ye Ye Vi qo qo qo Cl 8e i9 35 Cl Jn 35 .x gd .q kf j9 j9 45 U3 gd .x El v[ V5 V5 f ~k 6v ~k ~k 34 Rk <} Vx 9e <} Vx J^ Z{ C_ 7< J^ 7< J^ J^ J^ C_ 7< C_ C_ }_ H{ }_ W5 T] W5 `^ }_ T] [_ T] [} J| y^ T] E_ @{ ~) ~) y^ @{ @{ t: E_ t: J| @[ t: B/ t: C/ Ud Ud [^ k' ] _~ _~ g3 _~ `' ] ] _~ k' k' _~ s] i! g, 6+ -~ _~ 5+ >- i; 7+ 5+ g, #{ 7+ l' :A K> 7+ 8+ a+ %$ G* e= %$ 0+ G* G* G* G* u% j+ %$ 0+ 0+ 0+ j+ m+ m+ i+ h+ y- L> h+ l+ k+ '- h+ m+ q+ m+ =; !- h+ =; o+ )$ !$ 8> o+ v+ Xi Xi 8> )$ Yi pj Xi )$ Yi Yi Yr Yr m9 W2 G+ W2 G+ 4c W2 4c 4c _i 4# V C$ @. P Y +% A J Y |; H A 8* 7* ", +"+ + + Z, = V@ > k3 $ !, $ $ = Z, $ > . + $ ^ [* $ V@ R$ $ . > & . . $ & ; ' | | ] ; H= > & Z! N$ X@ H= ## & ' N$ U@ ] ; U@ Z@ | ] ; X@ ~ 2 Z! ( 2 ; *# | W@ 1 %# 6- [ ~ J) N$ { ( d Y> ( { oA pA #( #( qA rA d W@ e 0 a sA d< #( #( 2} tA a 0 } e 3* {# uA #( #( eq e 0 ~# 8 e 0 U} -p #( #( eg #3 7 p q ~# k m p Y$ h % h vA Y$ wA #( #( xA yA % p (# D N `$ m I M /# z ~& m) n! I z )> Q@ z I z m) 3; M I S L c7 #( #( 5m 8y Oz n> T G$ L@ d- L@ T G$ zA AA #( #( #( K< 7s 58 q9 0* r9 BA #( #( CA DA bf EA wr r5 {z df Wz df ,. F^ A0 |h /3 /3 |h A0 A0 /3 /3 A0 |h |h A0 :3 Br Fq FA #( #( GA ~9 ~9 Y6 HA 4h #( (5 IA x4 r/ JA KA #( #( <| LA Re Se ms on Se on Iw Dp #( #( MA Qq =u Wf =u NA Qq Wv OA PA +_ #( En QA RA Pw SA !i >k !v >k TA ts #( w( UA VA WA Lk XA Uw w( #( #( YA Mm Lk :v A7 [v ul [v ZA `A #( #( B J0 J0 n8 J0 Ti Vi o8 Bl o8 Ye Ye o8 qo qo =w Ye Bl fd Rc q q `f ch to ch .g gd n T3 n j9 T3 gd j9 T3 j9 El gd V5 .f V5 V5 !k V5 V5 ~k .f ~k Ux I| Vx ^1 +f Z{ J^ J^ C_ J^ C_ J^ Z{ J^ ]k 7< 7< C_ `^ }_ }_ W5 }_ }_ `^ 1c [_ [_ [_ }_ G{ @{ o{ ^k r8 y^ @{ F] [_ y^ y^ @{ y^ {7 B/ y^ y^ y^ [^ lf Ud b] [^ k' _~ k' k' k' ] k' k' k' %, _~ _~ Y] e~ i! g, B* k' >- 5+ i! >- l' #{ >- l' .) +! K> a+ ]) G* G* ^) G* d+ 0+ G* %$ G* G* G* G* %$ 0+ d+ 0+ g+ n+ n+ i+ *$ h+ h+ n+ h+ n+ h+ ({ h+ m+ m+ l+ o+ q+ n+ Xi 8> 8> p+ )$ o+ )$ v+ )$ Fl !$ Yr v+ Xi 9> Yr Yr .B &r G+ m9 G+ W2 W2 G+ G+ 4c _i 4c $q P9 _{ 4c _i _i $g ~w _$ L| _{ L| nf p; '; <~ '; '; <~ '; _$ <~ '; <~ <~ <~ p; %@ ;@ %@ %@ +@ %@ m, %@ %@ +@ @@ V+ a> +B @B ]d #B iz $B %B &B Ns Ns *B =B bu bu Qs Qs Os Qs Os Os Os Os Os Ps -B mz %y nz nz nz nz nz ;B Wy wz xz >B ;B ;B &y nz nz &y &y eA wz wz !y ,B !g 'B To &o ^n nu gk nu vv [x hk 2q `y )B 1i !B ~B {B ]B 3b ^B /B (B l$ =* A= k> -& O- C= >& w$ !. +. A@ !. V> ). E@ .. .= X G@ 7# C$ D$ M@ 2# L@ O P@ ` A M I A P@ A ", +"L$ ]& R@ $ + > U@ . Y! ]& J$ = . > L$ Q$ o! + . $ $ $ * 0' M$ ; U@ H= Q$ ] ] *' (& $= N$ | N$ - N$ }* N$ U@ V@ Z@ H= & ~ X@ ; > ^& ( [ ## { 2 H= =' 2 ) ~ J] ] ## { ~ [ T- &= ) ) 1 4 [ 5 { ) ( ( _B H1 #( #( :B } &# d ,# 3* Y> .i #( #( }s $# {# Q{ c :& a h }B #( #( s< |B c s> ~# A~ Y$ s> y s> c{ ^# /# ,> s> 1B d< #( #( 2B /2 s> D N b' C F= M A A 3B L/ z z x O@ ^# M w z I w |# M I P@ U +i #( #( wk 7l J L 3# E$ O@ L@ L@ L@ 4B G2 7_ #( #( 5B =5 O= O= 6B 58 y0 7B N_ #( #( 8B 9B a* r4 H9 0B al !& G; ,. .. aB bB A0 dy F^ cB |h A0 dy dy df |h dB A0 eB fB gB #( #( hB 82 >b jy HA *k #( (5 $u ;1 2h 2h iB 46 #( #( jB kB Se on on }e F3 on lB #( #( >i Wf ;u Wf [e Wf =u Qq mB nB oB #( #( pB qB ,A qg if >k rB sB tB #( #( uB vB vy wB XA zn Hx w( #( #( xB yB zn zn zB Ay oj Jx AB w( #( Sr BB 'k 'k Pk Q5 'k Ye az Vi Ye o8 Bl Bl Bl `w CB q x x Cl Ye Bl q qo qo .g `m DB EB FB El ch kf j9 j9 Fy .x gd T3 V5 !k .f f El V5 v[ .f .f V5 Rk wo Mn 7< Sc +f 64 C_ e3 J^ J^ C_ C_ C_ C_ C_ 7< K^ }_ `^ i( GB 3{ }_ W5 1c [_ _1 [_ T] /~ F1 J| f3 ^k M^ y^ @{ 74 @{ y^ @{ @{ 75 O} :! M^ y^ c~ @[ y^ [^ C/ b] ] k' _~ _~ k' %, _~ _~ ] k' k' ]{ i! g, g, 5+ ] >- 7+ e~ i; l' g, e~ 7+ .) l' i, b+ l' %$ ^) 0+ G* e= G* G* %$ %$ 0+ G* ./ d+ %$ 0+ 0+ f+ h+ l+ n+ *$ h+ v% h+ h+ m+ h+ h+ -$ HB h+ =; 8> !- m+ !- )$ p+ 8> o+ 8> o+ 9> 9> 8> !w 9> Yr ~- Xi Yi 9> Yr G+ G+ G+ W2 G+ W2 4c _i W2 _i W2 4c 4c [A ,; _i P9 f) ~w Xx L| _{ _{ ~w _{ <~ '; p; <~ <~ p; p; '; <~ m, <~ m, '; '; &@ &@ #@ #@ #@ <~ &@ %@ #@ @@ T+ ^l IB JB =e KB LB MB vt >q NB kz au *B au NB Qs Qs Qs Os Os Os Os Os Os Ps OB 8A Py 0A nz nz nz nz nz PB &y nz &y eA 0A &y &y &y &y &y &y >B Wy /x (x wf QB ` A #= P@ I 2& H$ ", +"# = . # . # > . J$ + + . . - * 0' > U@ $ $ * = = . $ ; & . = # ) 5- %= + & > S$ %= Q$ Q$ V@ Q$ ' Q$ & Q$ . ] ) Q$ [ [ 2 ] ~ | %= ] { *# > | } *# O$ ## Z! *> { [ X@ ;# *# 8- X@ Y> } ) *# WB XB #( #( YB ZB 6 $# 6 < 6 $# } `B C #( #( .C } j a 6 e e [l #( #( eq ~# ]c X$ ~# ~# 0 q +C cq #( #( @C #C n s> n t 4* O' -3 $C v6 p Z$ p g4 %C #( #( ][ &C *C ^# >= D w 2; z +( =C -C ;C I I z K@ z q! M z |# I M c' T |# J `j #( #( wk 7l T L J J T J >C ,C 8m #( #( #( `| 'C 58 O= 58 7s r9 7s )C !C #( #( .: ~C bl r5 cf $i R{ {C ]C g_ ^C /C (C _C :C A0 - ]) i! >- l' .) +! 7+ 7+ 7+ G* i, i, 0+ e= %$ 0+ 0+ e+ %$ 0+ K& 0+ 0+ K& u% G* )w l+ *$ h+ y- -$ h+ ({ q+ h+ h+ *$ q+ m+ h+ !- q+ m+ bz !- ({ 8> 8> Xi 8> tC Fl 8> Yi 9> &r Fl G+ Yi Yr Yr Yr F+ W2 G+ F+ 4c G+ W2 W2 4c $q _i _i $g P9 uC L| _{ ,; L| L| L| L| ~w p; _{ nf p; '; '; <~ <~ p' '; nf <~ ~w <~ <~ >@ %@ *@ %@ +@ <~ _$ @@ Z+ R+ vC wC xC %c yC zC (w AC BC CC *B au *B *B bu Os Os Os Os Os Os Os bu *B *B DC EC FC %y nz nz PB &y &y &y %y nz GC HC *y PB PB PB &y &y &y PB PB Ry (x HC qd nu IC IC IC vv JC Nh pi {s `y pi KC ik LC Lh Pf MC kc Xd NC ;@ X% m$ -& {* {* ;& o@ :. a6 !. d# v{ >. *. 5# 5# &. 5# 5# V n) $> F@ T T 4# O @% O J@ P@ I P@ K@ I ", +"# . + # = = > . > Q$ $ ]& = > 0' + & & Q$ > > $ = $ ] & ; ] . # ; ^ S$ ; > & Q$ U@ Q$ ; ; - o! | N$ | . , ; |* /& ~ & S$ ) ] - - *# X@ > N$ N$ ~ ~ { V~ [ 6 2 [ ( 2 { ^ } } N$ ~ OC I1 #( $( PC ## 1 b d => Y> 6 ~# a QC #( #( H[ RC a 0 L= h i SC #( #( Pt ~# |& ~# b 8 ~# A~ n TC 7_ #( #( UC VC WC XC YC ZC 51 _o _o m< `$ p r `$ *3 `C #( #( 7_ D .D +D @D #D $D R[ S[ m( 5[ s6 N B z G O@ I z N M P@ >z E$ J M L dj #( #( %D &D k} *D =D -D ;D >D ,D 7_ #( #( #( M_ 'D n5 O= 58 6B ia 58 7s H9 )D 4: #( #( 7_ !D ~D {D fp ]D ^D /D (D W_ .: _D =. _C |h :D #( D3 b ~9 jy 3C 4h #( (5 Fk 5D 2h hs Iw 6D 7D +_ #( 7_ 8D 9D *A 13 Oq *A 0D Mq #( #( aD bD cD dD eD fD =u Qq NA gD hD #( #( En iD jD kD lD tB P: #( #( mD nD 5z 5z Qw zn Mm Uw w( #( oD Yp w( pD qD rD sD tD uD #( #( Sr vD >8 'k 'k Zf wD 3v Jx Zf =w o8 Ye %r Nx qo Ye qo Vi qo q q Bl q Bl qo x .g Vr kt Vr Vr |u xD yD n Fy j9 gd El gd gd !k 34 34 f !k 34 .f .f ~k .f V5 Mn ]k ]k zD AD C_ J^ 7< Z{ C_ J^ 7< e3 J^ C_ zo 1c }_ }_ j/ W5 }_ `^ j/ 1c W5 f3 W4 r8 r8 E_ !/ ~) y^ @{ y^ @{ ^k ~) @{ y^ @{ t: ~) :/ y^ @{ Z: A) q{ S( b] `' k' _~ k' k' k' _~ ] ] k' _~ b= d= k' k' A* ^{ k' B* +! g, i! .) >- w- .) t% 7+ l' l' 7+ l' K> b+ G* %$ %$ e= d+ %$ h, 0+ *$ G* %$ u% 0+ d+ Wx -$ h+ h+ n+ m+ h+ n+ n+ h+ h+ h+ m+ m+ q+ q+ m+ ({ m+ p+ q+ BD Xi Xi Xi CD 9> Xi 8> Yi 9> Yr D+ Yr 9> Yi Yr D+ G+ D+ G+ G+ W2 G+ W2 4c 4c 4c _i $g On _i $g f) f) L| _{ [A nf nf _{ nf p; p; p; L| <~ m, '; <~ <~ <~ p; p; %@ &@ +@ %@ %@ p; +@ _$ &@ Y+ T+ ]w DD Mb ED Is FD GD HD ID NB *B *B au *B NB *B bu bu bu bu NB bu bu *B *B JD EC mz 9A nz PB PB &y &y &y &y PB vz KD cA nz PB *y &y PB PB *y PB LD >B PB MD wv ]y sv ]y gk &t hk pu ND OD PD QD ;o RD :x SD Ac TD +a UD <~ VD Y% p@ x$ ^* :. q@ :. >& ^. =. $% V> 5# A@ (* 4& z@ 6# H@ }; M@ C$ P P 7# H K@ S H$ Q@ M@ Y Q@ A ", +"> Z, $ 1* T@ . Q$ > * $ + ]& ]& + $ $ $ . = Q$ $ > . Q$ Z, - & - Z, + $ | =' & 1) ] ; ; ' & . > ; o! ; N$ U@ X@ ] ] ; ^ ; ] U@ ~ 2 Y@ 2 ;# *# [ Z! | [ ~ /& | , [ ## ] Y@ } { 2 4 | WD XD #( #( YD ZD } Y@ , } x0 i j ( a `D j< #( #( E _7 /& ,# ~# $# [l #( #( .E ~# ~# L= 0 0 p e m +E @E #( #( #( #( #( #( #( #( #( #( v2 #E m Y$ ^# h p WC or #( #( #( #( #( #( #( #( #( #( #( ][ $E O@ E; A 8* j4 I G A |# O@ z o^ z Q@ d{ +i #( #( #( #( #( #( #( #( #( #( #( #( #( #( %E &E 58 58 4# O= O= ia 58 O= n) X *E !z #( #( #( #( #( #( #( #( #( #( #( .: _D A0 _C A0 :D #( #( #( #( #( #( #( #( #( #( #( =E -E jy ~9 ~9 ;E >E *k #( (5 Ni ff ;1 x4 ^5 =2 ,E 'E #( #( (5 )E on F3 on Se !E ~E #( #( #( #( #( #( #( {E ;v =i Wv ]E ^E /E #( #( #( #( #( #( #( #( #( N( (E _E :E 5z a+ c+ 7+ a+ G* G* ^i %$ K> 0+ %$ %$ %$ i+ u% G* f+ f+ d+ d+ l+ h+ *$ n+ m+ n+ m+ N& h+ l+ 5E ({ m+ ({ q+ q+ ({ h+ =; ({ ({ BD 8> 8> Fl 9> 9> 8> Fl Yr Yi Pn Yr Yr Yr cz G+ W2 W2 W2 On W2 _i On _i On _i 4c f) ,; Xx _i L| _{ _{ L| f) nf '; _{ _{ p; '; '; _{ 6E _{ p; '; ~w %g wg '; p; &@ *@ %@ #@ %@ p; _$ +@ Y+ U+ O+ 7E a 8E Is .y 9E HD NB 0E au *B au *B *B *B *B *B *B au *B *B *B *B *B bu DC aE Oy %y &y PB &y PB PB PB Yy >B MC *y *y *y PB PB PB PB *y PB nz PB Qy bE cE dE ]n gk IC ^n Wo ^y Kj eE Wg fE gE &l . > + = . S$ & T@ $ ]& V@ - # $ ; k) $ # $ V@ Q$ U@ & ] U@ ~ Z! & ] ] . & ; | { ~ Z! | ~ 4 ## { 1 ! | N$ 1 ( ## ~ { { ^ { 4 7 d N$ < D, *# *# Y@ 2 kE $( #( ][ lE 4 D, ( | ) } 4 6 [ d ## mE #( #( b} nE a i ,# 8 uA #( #( eq 6- C; 0 n ]# oE e r r pE qE b} #( #( #( #( #( #( #( m( rE sE D m /# q m Y$ tE uE #( #( #( #( #( #( #( #( #( s< vE wE /# I H$ F= m) %> xE E; E$ P@ h] 3# E$ P@ 3& bp #( #( #( #( #( #( #( #( #( #( #( -4 yE zE AE G$ BE O= O= P' T 58 r9 58 O= C$ r4 CE 88 #( #( #( #( #( #( #( #( #( w} DE EE F^ FE |h GE q1 7_ #( #( #( #( #( #( #( #( HE IE jy 82 82 >b ef hl *k #( (5 JE 2h KE r/ 2h LE Se om S< #( #( 4h ME on on 8C ;u NE qy &: #( #( #( #( #( OE =i NA Qq Qq -u PE QE #( #( #( #( #( #( #( Mr An RE SA _E vy SE TE UE VE w( #( WE XE YE |v #( #( #( #( #( Wm ZE `E Zf Zf J0 qt Xi %F 8> 8> Fl Yi Yr Ao Yi &r cz Yi &r W2 W2 W2 4c 4c W2 4c 4c 5c $g _i F ,F au *B *B *B *B *B *B *B *B bu *B JD JD *B *B JD DC 8A Py 0A PB PB *y PB PB *y 'F eA bA cA cA *y *y PB PB &y &y &y 0A )F At !F sv ou ^y sv gk bw ou `y ~F {F yv ]F (j ^F dc /F A@ ). -. &. 3^ z$ T E@ B$ !> V Z O J C$ T H M x M@ H S ", +". ]& Z, + = X! $ . # ]& + - + . $ . ' $ L$ ; $ V@ ] M$ + * $= . $= & $ . > % + & > ; ; ] ; Q$ }* ' * . S$ S$ %= ## N$ | X@ ~ P$ ] ) ~ ] %= 2 { X@ ( ; U@ ^ X@ ) 2 Z3 ## ~ [ $# /& 2 _F :F c L= s> {# L= h ~# ,# 4F ^o 5F H1 $( {[ 5F 6F 7F 8F s> }& h k `$ ]# ~# t 9F 0F aF bF d< #( s< o< cF dF eF M= E; o^ I 3# /# +% ^# F= z F= 3; P@ G n! z M fF gF hF iF iF iF hF jF kF lF mF nF oF L@ r! pF Y P' 58 7s 7s qF O= r9 58 58 O= q9 ja rF sF vw tF N_ #( M_ Aq uF vF wF |h _C ja ,. dy /3 xF ^D yF zF yr W_ +_ &2 AF BF CF eB ~9 b: 82 >b ~9 DF EF FF GF HF hs Qe << 2h hs Jc IF JF KF xm LF MF NF on 8t on *A OF PF QF ~E RF SF SF TF Qq NA OA Wv UF UF VF WF ;A XF w( YF ZF `F G .G ~i `v VA Qw +G WA vy @G w( #( WE #G $G %G &G *G +_ =G -G ;G >G [v 'k !w h+ h+ )$ 8> !w 8> 8> 8> Fl Yr 8> Fl Yi Yi 9> (i ~- Xr #x #x W2 F+ ~- W2 4c W2 W2 4c 4c On On '; _$ ^G ;@ #@ #@ p; Z+ T+ /G (G _G :G Is yC KB #n + Z, = . + $ M$ ; ]& # $ L$ . # = $ $ U@ . Dv & . > . > > # > . > 05 S$ & & & = & U@ ' Q$ ] X@ | > | ~ | ] 2 1 ; ~ U@ | ] ;# ~ ; ~ ; & - ~ N$ ) : &# ~ [ 5 ( 8- Z! ] ;# d [ e ( D, J= a !# 7 ( ( 7 ># ,# 7 0 8 8 6 M' a a i 6! e a 6 z: [& X$ c a h L= a' p `$ 0 r i ~[ 6G 7G 8G ~[ m L= m Z$ L= Z$ ^# 1; m Y$ `$ D /# 9G 0G aG bG cG dG eG w b' I x I $] M w z A P@ E; A :* J O@ O@ 3& P@ M A E$ U^ J E$ J O J P@ O J I@ L@ L' 0* I@ O= 58 58 G$ O= T n) O= r4 ja r9 r9 r4 58 fG gG hG iG jG kG lG =. R' ,. |h mG /3 A0 /3 A0 /3 |h nG oG pG qG rG sG Yz tG Br gg >b uG jy >b jy >b vG vG ;1 hs 2h @A x4 2h Jc LE x4 LE Se Uv Se Se 8t 8t Oq ;u Re }e [e [e =i Wf 8t =u NA NA Wv [e NA wG Wv ;v xG yG zG AG BG CG rB ml ~i ;k Qw DG EG :E FG Hx w( #( GG HG IG JG KG LG MG NG OG [v Jx PG 'k [v [v QG Nx - 7+ g, 5+ t% l' g, 7+ t% K> K> .) 7+ G* %$ %$ K> %$ i, G* G* 0+ 0+ K& *$ G* d+ 0+ d+ 0+ k+ h+ k+ -$ h+ n+ h+ m+ h+ ({ m+ m+ q+ q+ q+ !w BD m+ )$ )$ !w !- )$ Xi )$ Yi Xi Fl qt cz Yi (G #x &r m9 cz m9 G+ W2 4c _i 4c 4c _i 4c W2 _i L| uC P9 On ez nf _{ L| nf _{ f) F% L| nf ~w p; m, <~ '; m, '; <~ m, '; <~ '; '; ~w o= D- %@ +@ _$ _$ T+ Q& XG @B Da zC yC MC YG * ~* u@ -& ^. >& v@ '. x@ A@ -. z@ &. A@ +. @. ,= P D$ V P ` P@ I L@ 4, P@ +% A N@ |# Y ", +"= # $ Q$ > @ !, & $= & > L$ . + $ ]& + X! L$ = ]& V@ ] - l) > # Z, . ' % + & . & ; Q$ $ ] . Z@ ( W@ P$ Q$ Q$ =' . & f] | X@ > & | ^ S$ /& > ] ~ ^ { X@ } | &= 4 4 == } *# ## { 5 < ( ^ V~ ,# ## Y@ { d ## Y@ J] } 0 => U- [ ,# 6 7 b V$ 7 6 a e i ~# c k c a 0 a h c h 0 0 n n k h h |& q Y$ -) n p r h y % p Y$ Y$ w /# ^# ,> ^# 1; t t w ^# K /# ^# h t Q@ P@ F= M D z A G |# E$ P@ F= P@ a7 A J C, 3# Q@ M L L T P@ I T A: 3d r! tw 3d L U E^ E^ O= 7s 0* G$ V 58 r9 r9 r4 O= @. @. ja ja wr G; %H &H 0B %i $i Vz F^ F^ /3 /3 Ji A0 |h |h |h `z A0 dy *H Yz dy dy Br ~9 ~9 ~9 >b ~9 jy ~9 vG ~9 KE hs 2h KE =H Qe 2h Se hs ;u on ;u =v Oq 8t ms -H ms 13 bC 6h Qq -H Ik NA =u =u =i Wf ;v UF ;H >H ,H 'H )H !H ~H {H ]H ~H ^H /H (H FG _H :H %$ a+ G* G* f+ 0+ 0+ j+ d+ d+ f+ e+ d+ g+ k+ I* k+ m+ h+ m+ n+ k+ m+ -$ m+ h+ m+ m+ !w q+ =; !- Xi ({ !w Fl Fl Xi Yi Yi v+ Fl v+ Yi Xr n; Yr &r dz Yi W2 4c 4c _i _i W2 4c 4c 4c 4c P9 ^7 $g 5H 6H uC L| f) L| _{ _{ nf p; nf nf ~w '; _$ '; '; <~ <~ <~ p; m, <~ <~ +@ #@ :- &@ %@ '; Y+ L+ 7H 8H 9H 0H aH bH cH dH Rs [w =B }G eH au *B *B *B JD *B *B *B *B *B *B *B JD *B *B *B JD JD EC 8A Oy 9A nz PB *y *y fH `G `G `G PB PB nz %y 9A mz aE OB Ps Qs ]e bw sv |j ^n vv vv ^y gH wv hH 8w ri .z [j iH jH kH ui lH mH R> }@ =* nH j@ m@ 0& m ^# ,> s> L= ^# p /# 2; 2; I /# /# [& /# E I w A }# I I Q@ E$ K a- I O@ M J J H$ d- L M@ :* U L t> |# d- J |# |# 3& J T H I@ K) 0* qH O= O= O= 7s 4# H9 O= q9 @. rH q9 &H bf @. Ou sH $i cs W- |h L) ,. =. A0 F^ Xz /3 =. A0 Yz A0 Yz Zz Yz :C dy eB >b >b ~9 >b 82 jy tH ~9 tH vG x4 x4 2h uH 2h 2h LE IF LE vH 9C wH Se ;u 8t on on ms -H xH ;u =u yH zH =u [e =u AH BH OA OA fo CH DH EH 'A FH GH ~H HH CG IH RA !i .G Pd VA :E JH w( #( WE KH Zq XA zB JG zn zB XA - i! i! 7+ e~ 5+ t% 3+ 5+ K> 7+ 7+ %$ K> l' K> G* a+ %$ u% G* %$ f+ u% 0+ K& K& d+ Wx LH m+ i+ I* m+ m+ h+ m+ 5E 5E ({ q+ ({ m+ !w q+ q+ m+ !w ({ Fl 8> Xi Fl Fl Yi Yr MH Yi cz Yr @f NH Yr cz Yr &r G+ _i W2 _i 3c 4c _i 4c _i _i 4c _i $g ot P9 $g Dz _{ f) nf nf ~w ~w %g ~w <~ <~ '; nf ~w _$ m, S> <~ '; <~ #@ %@ [$ #@ #@ _$ V+ ta E% OH PH =e %x .y QH RH SH TH Ps UH VH *B *B *B *B *B *B *B *B JD *B JD *B *B *B *B *B *B JD JD |G 8A mz FC 9A 0A nz PB &y &y nz 0A 0A 9A FC WH XH DC Os Os Os su cw YH |j vv ZH tv `H 2G 2G xv I me .I _j Ih +I @I #I $I %I +@ V% 7@ >* p@ h# ^* _. :. v@ x$ E~ v@ .= ). x@ ). A@ 4) e- 5# G@ X J S +% ` P@ S J T Y E$ N Q@ ", +"$ ;b ]& R@ M$ ]& $ $ ]& $ & + ; V@ = > . > 0' = > = $= . k) > - Q$ Z, ; > Q$ Q$ > > + $= R$ N$ & Z, H= 2 N$ P$ S$ ^ ~ | ) ] ; & ] - | T$ ^ S$ |* # ) { ] ) X@ { ) ; { ) { [ Y@ [ X@ [ 4 4 7- 5 ( ## } 9 e $# d +# a 1 $# 3* $# 6 9 a e ># i ~# 6! ># c L= V) e a e &I ~# n Y$ h C; j h |& r `$ c s> !# ~# `$ ~# p p y C; ^# b' L= p m s> c I ,> Y$ D E N N w G w G E 5* I z I c- |# |# w F= P@ P@ z M A P@ ` m) H$ *I T H T M .~ r! r! Q J d{ V 0* tw =I E^ qH 58 58 58 58 ia -I 58 7s q9 rH 0* q9 ja Ou {z EA Wz Ou ;I A0 F^ >I ;' A0 |h ,I dy |h |h Yz |h dy dy *H Yz Yz 'I >b uH ~9 >b ~9 ~9 jy jy vG vG hs 2h y4 )I Qe hs hs ;1 !I ~I wH wH Uv 8t Oq Oq ms wG {I ]I ^I =u -H =u Ik NA OA /I NA /I Wv (I UF 'H )H rB _I :I - i! .) l' .) %$ b+ 7+ @$ 0+ K> b+ 0+ %$ %$ 0+ %$ %$ u% *$ %$ %$ f+ 0+ 0+ @q h+ h+ q+ h+ q+ m+ q+ m+ ({ ({ ({ ({ q+ ({ ({ q+ q+ ({ !w Xi 8> 8> Xi 8> cz Yr Yr Xi Yi cz Yi n; cz dz 4c 4I G+ W2 4c W2 4c _i _i _i _i P9 P9 On f) _i 5I nf 6I _{ L| 7I [A L| _{ nf nf <~ <~ '; <~ wg p; <~ m, <~ m, m, p; '; #@ +@ +@ Y+ Y+ P+ 8I 9I 0I mc ;r Is aI 7A bI cI #y bu CC CC *B *B *B *B *B *B *B JD JD *B au au *B *B *B *B JD JD JD |G XH aE mz Oy FC FC FC 9A 9A Oy Oy WH 8A EC DC JD bu Qs Qs )r dI Uo ^y bw cw ^y ]n cw 2G pu {F eI eI :q fI +m y 0b gI hI @@ N% X, U* >* -& w$ s@ <. /* /* {. '. &. $% *. A@ .= E@ #. B$ Y J #. M@ ` L@ J J J I Y H@ P@ #= ", +"0' ;b L$ L$ . = + # L$ ]& |* $ L$ ]& $ = V@ = 0' > & > ] - # o! & ' . ; - . . - > # 8- > V@ > > $ o! ; Q$ ~ 2 | N$ ; ~ N$ ^ ] ; N$ 1 ) , . - 2 2 Q$ U@ { -> *# V~ / | d 4 } 5 [ X@ X@ 5 4 1 ,# [ 7 1 b ( 6 e ,# $# d e 1 7 a k &# 7 0 0 ~# &# $# g ,# a e 7 D, ~# L= 0 ~# L= ~# p L= 0 r i [{ c [& n A~ n n^ -= p ,> m Y$ n D m Z$ y s> ^# N /# /# z G ^# G G A w E$ O@ c- H$ N I F= P@ J O@ F= 3& I 3# A E$ J iI E$ H U jI r! d- U Q H 0* H I@ tw tw tw 6B 58 E^ n) E^ q9 58 r9 rH 7s ja r9 1o Ou {z EA bf Wz kI lI =. _C mI Wz _C |h ,. dy A0 A0 dy |h A0 Zz nI dy dy oI pI jy 82 Y6 jy >b ~9 qI vG vG Ab 2h LE ;E wH x4 2h Li rI hs Re sI Uv *A on ms -H tI 8C -H 9C =u uI zH OA ;H UF Wv =u Wv =u vI wI ;v ;H ty >k VA 1z IH xI yI VA zI RA AI - g, 6+ 5+ l' 5+ i; t% t% b+ a+ @$ i; %$ 0+ 0+ 0+ G* a+ 0+ 0+ %$ e+ i+ f+ %$ f+ d+ d+ 5E m+ h+ -$ m+ m+ m+ m+ @x q+ ({ q+ q+ m+ q+ q+ !- q+ BD II Xi Xi Xi Fl Xi Xi Yr 9> Xi Fl Yr #q 3c m9 Yr @f &r 4c 4c _i 4c 4c On On On _i _$ L| _{ $g @/ On $g :- _{ _{ L| _{ _{ wg JI wg _$ '; p; p; ~w p; '; <~ S> '; <~ p; p; +@ Y3 +@ @@ Y+ xg o; KI LI MI (w bH NI Go OI PI QI -B RI VH *B JD JD JD JD *B *B *B JD *B JD JD *B *B *B *B JD *B JD JD JD DC EC EC XH 8A 8A 8A 8A aE XH EC DC JD *B *B bu Qs Qs Ny SI o@ <. C= >& 5# %% ^. ). z@ 4) 5# }; z$ D$ L@ F@ L@ Y P Y O H S S M I P@ A ", +"+ L$ L$ + = 0' # $ + > U@ $ & $= $= & > Y! + + X! $ & & ; ]& V@ # $= S$ = ; Q$ Q$ V@ U@ S$ H= V@ %= Q$ ) $= > 2 & N$ N$ | N$ > ^ & H= . ] | T- %# D, | - > | Q$ %= W@ ) N$ d d => ## W@ 1 } { } X@ <& 5 7- { X@ d $# b 6 ## 9 7 0 x0 8 d 6 $# 6 0 ( } 0 0 d e a : a e 0 a n [& a ~# L= i c h L= _# n ~# L= ~# |& h `$ q ^# Y$ L= r m h F ^# t 4* ^# @= z I 2; w w % 2; G N {& |# F= M F= A I I 1& a- m) G O@ F= a7 M h] J T L M J L H H T r! T U^ 3d E^ tw G$ I@ `I 0* `I 0* P' 58 58 58 7s r4 @. q9 q9 Ou J y0 cs .J +J G; ,. @J #J 5o Wz |h ,. cy dy dy Yz |h |C Yz Yz |h Zz Yz 9o $J eB ~9 ~9 ~9 jy @A jy tH @A ;1 =H r/ wH 2h IF wH Uv hs %J IF wH hs %J Se 8t Se {I ~I uI &J =i wG AH Wv Wv Qq OA /I wG OA OA ;H UF *J *J VA IH =J CG RA gC Qw FG VA :E -J JH w( #( ;J >J XA JG zB zB JG 1I 1I Ay CI qC ,J Ww ,G Nx Jx ,J -w qC -w 'J RG az Vi qo az q Ey qo q 3E Bl q x q qo q x )J x q HI ch x n ch n .q |u gd Fy !J gd gd kf n El 6v vo f 34 .f .f ~k ~k .f Mn Ux )2 Rk yo +x C_ C_ C_ C_ C_ C_ C_ C_ 7< 7< C_ C_ }_ }_ f3 W5 }_ W5 7< W5 f3 [_ [_ W5 F1 ~) ~) @{ W4 J| @{ t: y^ y^ ~) @{ :/ !/ B/ c~ M0 B/ A) y^ y^ [^ b] A) ] %, k' _~ _~ _~ ] k' l% k' _~ _~ ]{ 6+ u- w- 5+ i! t% g, g, l' 5+ 1+ 7+ 7+ a+ b+ 7+ 7+ b+ %$ e= 0+ 0+ G* e+ %$ %$ G* %$ *$ u% 0+ ~J 5E fh {J 5E m' I* m+ ]J m+ ({ ({ q+ q+ q+ q+ m+ ({ BD q+ ({ )$ )$ 8> Xi Fl Fl 8> 9> Fl Fl qt .B cz 3c II cz &r Yr W2 4c 4c 4c On W2 On _i On ot L| L| f) (B ~w 6I <~ <~ <~ <~ <~ m, %@ m, S> p; p; p; &@ +@ +@ _$ V+ vC ^J /J %a (J ;r _J 9E :J -B 6J ;* l@ *& q@ s@ x$ w$ !. d# -. ). e- . &. &. =. #. V B$ P X P P ` P P@ H K@ K@ P@ S E; ", +"# .( ]& . ]& 0' + = # ]& # S$ & ^ $ 0' R@ R@ * $ . & & . $= $ Q$ ] T- + = & $ ; [* V@ . H= ~ ~ | & & $ ! { R$ & S$ ; [* ^& $# ] ) %= S$ { : ) N$ R$ N$ ] ) ; /& 1 ( /& { ~ W@ /& ~ [ /& ( /& | ( { { ( b [ ## 6 5 6 Y> [ [ < 7 } 0 {# 5 } 0 i e o ,# X$ e 6 6 a F! e i e 6! ~# 0 A~ g i h n 0 a n ,> p `$ l t p h Y$ ,> 1; Z$ ^# /# t m h w m D G n D G E; {& z BD qt Fl Fl Yi dz Fl qt Yr Yi oJ pJ <~ <~ nf '; p; %@ m, S> S> '; m, '; #@ @@ V& Y+ vC qJ rJ sJ tJ uJ QH vJ Wn @s qb Aa $e wJ Ps CC *B *B *B *B *B *B JD JD DC DC JD JD JD JD JD *B JD JD JD JD JD JD *B JD JD *B JD *B *B *B *B *B *B *B *B *B NB Os yt xJ nu ]y IC nu yJ $t ou dw zJ 'l .I AJ BJ :x 3J =F Yb 0I CJ DJ *@ f$ 0@ t$ ;& x$ O- o@ w$ '& [, W> {. v{ 5# l> W~ . E@ #. R 2# 4# 2# $> ` Y ` M A G Q@ z Q@ ", +"# V@ M$ $ & ]& ]& + = p9 L$ > S$ + Q$ . V@ Q$ U@ - ' . `@ ]& ; %= - * T@ N$ # $ > & Q$ & & ; & # ; (& - . H= U$ U@ %= 8- H= N$ H= Q$ } J) { | U$ 1 d { ] ; | | H= N$ ~ ## $# ~ R$ | & ~ X@ Y@ 4 1 X@ ( } | 1 -> 7 6- ( Y> ,# 5 c D, { a 6 a 0 i 5 ( [& a 0 6 a 0 k ,# a c h 0 q> 6 L= {# 0 ~# ~# 0 e 0 1; c n r c{ w n^ `$ % L= f 0 Q{ ^# Y$ % m p 1; w m Y$ z w F= G F= E; N I F= 3# z Oz A O@ |# G A P@ E$ H$ T J E$ d{ +% T >) T J T 1# 3d G$ U^ tw 58 G$ 5, 4# I@ 3d `I 0* 7s 6B 7s 58 6B q9 r4 r9 rH @. Ou ja ja ja {z r9 cs F^ Ji Wz 5o |h :3 #J |h dy dy A0 EJ ]z Yz 9o :C tG Yz 8J jy 7d >b jy ~9 jy vG jy FJ ff GJ IF IF 5D Qe wH IF Iw hs IF wH HJ ~I ~I wG HJ tI zH zH tI &J IJ uI Qq Wv NA NA OA Wv JJ {H CG KJ Pw .G 1z =J Pw .G 1z LJ MJ :E }I =J (H @G w( #( NJ |I zn zB zn zn XA $w JG zB JG 0 |u |u j9 gd Fy Fy .x .x PJ f 34 V5 !k ~k .f 3H ~k ~k .f yo +g N9 AD yo ]k Z{ J^ 7< e3 C_ C_ C_ 7< W5 7< 7< T] 3{ `^ `^ W5 `^ `^ zo i( r8 [] X5 1c F] y^ @{ J| QJ W4 ~) @{ 8v @{ @{ h^ @{ V] @{ / 5| y^ 5> z[ r] k' b] A) _~ k' [^ _~ %, _~ %, d= d= %, _~ _~ g, k' ^{ 1+ 5+ 5+ 6+ @$ g, t% g, 6+ 7+ t% 0+ G* a+ c+ %$ e= b+ G* a+ t% 0+ 0+ 0+ 0+ d+ *$ F* 0+ RJ &$ 0+ m+ h+ m' m+ fh {J SJ q+ m+ q+ h+ ({ q+ q+ HB BD MH !w 8> 8> HB qt Xi Fl Yr Yi qt .B qt cz 9> .B TJ dz m9 NH W2 4c m9 4c _i _i 4c W2 On On 6I uC P9 _{ _i P9 On _{ _{ _{ nf ~w '; ~w nf m, m, '; <~ m, '; %@ <~ '; <~ '; '; %@ [$ Y3 F% T+ /- Gy UJ Ca VJ ti ~d YG WJ EC XJ YJ ZJ `J #y K *B au JD JD *B *B *B JD DC DC JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B *B *B *B *B *B JD *B au *B au au au bu yt .K ^n ]y nu ]n ^y tv ]n dw pu +K Zo @K #K $K %K ;r nc &K *K ^l > |@ e@ *& h@ l@ E7 d# d# w$ {. '. &. A@ -. 5# $% z$ .= G@ V .= |; H Y L@ L@ J N@ S +% S P@ K@ ", +";b ]& L$ 0' ]& ]& ]& = V@ L$ $ > + ]& = > $ & 5- > 0' ; ; Q$ . |* > $ ]& ] Q$ H= & H= $ Q$ Q$ > %= ; ~ ; T- O$ ; Z! ) Z! & ~ ; > X@ { X@ ^ 2 U@ O$ ~ ] N$ ; > . ^ | 8- , ## { ~ | [ { ) *# ## d I= } ~ /& 9 5 / U$ } 0 d d } ,# x0 } N' ># 9 ,# V) == e 6 L= j a' a c d ~# ~# A~ Q{ e a ~# c j [& c Q{ ~# 0 h L= % ]# ,! 2; Y$ o m 1; s> F n^ u p /# ^# G I t Z$ D z z B :# B I I M I N m) =K O@ M z M O@ M M E$ 3# P@ J h] S U E$ E$ >) t> E$ d- L@ G$ 3d 0* O T G$ T L ={ 58 C$ 58 6B 7s 58 qH q9 ja r4 ja Ou r9 ja Ou EA al &H -K _C lI #J Xz ;K Xz Wz Xz /3 |h .u A0 Yz Yz eB tG |C dy 7J Br 9J ~9 jy vG jy vG vG >K IF [z [z 4C ;E 9C ,K Iw vH 'K ~I 9C ]I yH *A *A {I 9C ]I Ik ^I NA BH )K OA Qq NA NA BH UF /I 'A !K ~K ~H JJ .G {K ]K bJ }I !u =J _H -J wB zy ^K /K 7z zB Lk 1I IG (K 1I Lk zB 1I 1I DI Jx qC _K EI qC qC qC QG qC qC Jx F QG wD :K -w x !G az Ey 'J q q x qo x 0+ a+ d+ 0+ %$ G* %$ 0+ d+ d+ j+ d+ d+ f+ -$ %$ '- f= i+ q+ q+ h+ HB m+ q+ $F k+ HB }K ({ q+ q+ HB ({ MH qt !w Fl Xi 8> |K |K Yr Yr cz 1K cz Yi 2K m9 4I _i 4c _i 4c 4c 4c $q On _i On On 3K _i _{ _{ ot On _i _{ nf _{ L| nf nf wg nf wg ~w '; '; '; '; '; %@ m, <~ Es p; <~ Z+ #@ V+ T+ a> 4K 5K [f aI hE 7f 7A [w 6K |G |G |G [w #y CC VH 7K *B *B JD *B JD JD JD JD DC JD DC JD *B JD JD JD *B JD *B JD JD JD *B *B *B *B *B *B *B *B JD JD *B *B *B au 8K 9K 0K ]n vv tv [x |j tv 2G pi ik ;o =t Ph 7w De aK _f a /a bK +^ 9$ o$ f@ cK o@ -& :. s@ {. {. !. &. C@ A@ +. 5# T R 2# A@ 4& T P O ` ` Q@ S J K@ P@ P@ M@ ", +"= ] + p9 .( R@ ]& * & $ ]& o! # V@ * . - %= = > = ] T- . > . . {c $ & ; *' ] # Ez | U$ ; S$ # o! > $ - ' H= & { H= & V@ V@ ; ~ ) 5- & | ; ] & N$ { 5- ; | & ; ( { { N$ 2] ~ 2 [ | / 7- ~ N$ 5 /& $# { 2 ) 5 } d d Y> 0 ,# 6 9 ,# } e k J] 7 +# 6 ~# L= a h a' 0 ~# 3] n e ~# 0 a L= ~# L= ~# e a n ]# `$ D ^# ^# _# n 4* :# % r Y$ L= p % ^# z w p r D }& F z w %> F= M A I A w M I A M P@ Q A: E$ ~& A: E$ T J L L :* L I@ L@ L =I G$ 3d O Q S G$ 0* I@ P G$ O= O= 58 58 6B 7s 6B &k q9 C$ q9 r4 ja r4 J r4 &H cf %i >I r5 dK 5o {C |h df :C dy |h A0 |h Bw Yz 9o eK dy fK |C Ck eB tH vG jy vG tH jy ~9 KE !I !I gK >K hK *A ~I iK 5D 'K wH ~I ms *A yH 9C ~I ]I jK kK NA Wv NA OA =u lK /I UF NA lK mK !K ,H EH nK ty ty !K oK }I .G pK 1z pK 1z 5z - d= %, ^{ 6+ s% 6+ g, 6+ ;- i; 6+ I& l' t% .) d+ t% $$ a+ d+ 0+ 0+ d+ d+ d+ 0+ d+ d+ K& f+ d+ d+ &$ e+ ~J bz m+ m+ m+ h+ q+ -$ h+ ]G ({ ({ ({ q+ h+ ({ ({ q+ !w Xi Fl qt Xi Fl 8> qt Yr Yi qt cz &r &r #x m9 &r uK @f W2 _i 4c _i 4c 3c _i _i NH ot On 7I f) On vK ot [A L| _{ _{ L| nf ~w _{ nf <~ <~ m, m, <~ ~w %@ '; p; p; _$ p; _$ p; Z+ V+ Q& wK PH xK 5A yK My l BK Yl [x pu wv 2j KC 'l QB >o %K yC rc CK DK EK FK U> 6@ X* X* -& F9 B= '& (. ^. x@ x@ )& !. &. 5# X G@ .= )& 7# @. C$ 2# Y Q@ H N@ K H@ #= I A ", +"p9 = V@ # 0' ]& ]& 0' # + = 0' = # V@ # V@ S$ . !, > # * k) o! $ . N$ @ Q$ . $ > S$ # $ ; # > Q$ & # N$ & - {c Q$ ~ $ N$ ] ; S$ ; | U@ | ^ `@ 2 N$ *# 2 2 T@ ~ 8- ~ S$ ~ < , } *# ) { Z@ { +# ( 1 7 } ( N$ 2 1 $# ( V$ 7 | J= &# 5 c ># -# 6 b 0 a k 0 ,# 7 a' X$ a Y> 7 ~# ]# V$ n L= ~# 0 h h l i c h 0 p `$ m h r Y$ `$ `$ ]# % ^# s> GK F= #| /# ^# 2; D I m F G w {& F= B A B E; ^# M O@ M I {& M M 8* M I 1& S S J O r! J G$ t> t> G$ G$ G$ J ` O tw qH 4# H O= @. O= 6B 7s 58 r9 58 ={ 58 @. ja rH Ou ja rH r9 cf .J HK 5o ,I IK dK ,. |h F^ cy |h dy %i Yz *H Yz Yz Zz Yz Yz Yz 8J JK jy ~9 uH tH uH tH jy KK hs LE uH 5D 0J wH hs LK 8C ~I IF ~I ~I 9C yH MK yH NK )K OK &J /I ;v PK =u OA UF OA OA ;H UF Pw ;H Pw QK Pw RK bJ 'A JJ IH 1z 1z IH 1z /H SK TK FG XA zB zB DI UK JG VK WK 1I XA JG Ww Ww 0 !J .q j9 gd Fy n T3 El Fy .x V5 V5 D9 !k V5 V5 V5 V5 ~k ZK Tc ~k +f +f !2 7< J^ 7< J^ 7< 7< 7< 7< e3 7< 7< C_ 1c W5 S] `K }_ K^ }_ }_ }_ i( W4 [} [} y^ y^ @{ 74 E_ @{ ~) y^ ~) !/ @{ ~) @{ y^ Z: y^ P! / u: Y/ D' [^ %, k' k' _~ j^ j^ |_ _~ %, b= %, _~ %, d= k' B* i! g, 6+ @$ g, i! .) 6+ 6+ i; t% 8+ d+ a+ t% c+ 0+ 0+ 0+ 0+ %$ %$ %$ G* d+ &$ m+ f+ 0+ f+ j; LH fh m+ ({ q+ h+ h+ ({ HB q+ q+ q+ ({ q+ h+ q+ q+ !w ({ Fl qt .B BD Xi Xi .B Yi dz qt Fl Yr Yr G+ L (i 1K &r _i W2 4c _i On _i G+ 4c ot ez 3K _{ P9 :- .L On P9 $g L| _{ ~w _{ v] wg nf ,; 6E '; <~ ~w ~w '; p; m, <~ <~ p; _$ (- Z+ S+ /- +L /e yK NI %c @L #L Ps Ps =B JD JD JD Os DC JD *B JD *B JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD *B *B JD *B *B *B *B *B *B *B JD *B *B *B *B $L %L 0K |j |j {n Ht &L [x *L Ro 1i xf =L ii |i -L .y ;L >L /b ,L `; U% 3@ ;* g@ -& q@ (. ,& q@ w$ )& =. z@ r4 &. z@ G@ .= P V P G@ L@ H P Q@ 8* A 1& J I I P@ ", +"0' = Y! + L$ # > .( R- > > ]& = # T@ Z, = + . $ > = $ = S$ U@ - & [* o! S$ > Q$ $ > # Ez $ P$ + ] ~ $ V@ H= & { | ; ' ' . & H= 2 P$ ~ ; { ) ] J) ~ N$ ~ | 4 ) { ~ ] 2 | ) T- ~ | 1 ,# | a ( /& 1 4 $# / ,# 6 6 6- $# e ( k !# D, j k ># ,# 0 !# 4 0 7 k a 7 c g i ,# n n g K= h 0 ~# L= ~# s Y$ Y$ h % n 2, 2, Z$ n /# 2; /# n^ /# Z$ m % C z w N t t y w C K }# Q@ w z z P@ O@ A z E$ M P@ P@ P@ :* |# M b- O@ L :* d- T E$ G$ T T 0* L@ T 3d 3d E^ BE 4# 0* G$ O= 7s 58 58 q9 58 7s q9 r9 Ou ja q9 ja Ou Ou Ou &H lI ;I Xz lI dK A0 |h A0 _C {C dB A0 Zz Zz |h :C Zz 9o fK fK GJ JK qI uH 'L jy vG tH )L qI )I 2h ;1 IF 5D wH ~I %J wH ]I {I ~I HJ !L zH 9C ~L {L {L zH zH ]L =u zH Wv Wv OA Wv /I UF OA !K !K ]K bJ ^L }I Pw !K /L IH -J LJ .G 1z pK (L _L :L Fl qt 9> cz 2L qt Fl W2 NH 3L 3c 4c NH 4c W2 4c On 4L 4c 4c _i On 4I 5H nf L| L| 5c On uC nf P9 wg m, wg nf _{ 5H _{ nf m, '; S> '; p; p; p; <~ o= _{ _$ Y+ G% S+ O+ 5L a 6L 7L 8L 9L ]r CC Os Ps =B JD *B bu Ps =B =B DC 0L DC DC *B JD JD JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B JD *B *B JD *B *B *B *B *B *B *B JD JD JD Qs aL ^y bL |j bw RB yz [x cL 2k dL :q I eL |i fL Is gL hL iL jL U+ .* 3@ .& l@ l@ -& v@ c# (. ^. {. A@ ). ,. 5# +. X .= Y P T 1# C$ H$ O@ J J P@ S +% G A M@ ", +"]& J$ * # + = !, $ # % > $ = S$ & = 0' $ T@ = $= = $ > S$ & ; S$ ^ Q$ . ] & Z, = ]& . T@ $ ; {c > $ ' - ] N$ Q$ ~ & * > Q$ H= 2 @# ~ [ ; | ~ - ~ ^ ] X@ & { | ( ~ ] ~ R$ [ { [ { { Y> ( } 2 *# a [ 2 | 4 { W@ $# W$ 6 6 *# c ,# 9 i 3] ,# a L= ># a ,# kL L= L= ~# 6 a 0 e 6 L= o r X$ [& e L= h V$ ,# p m `$ q Y$ s> s> `$ ^# C m m K 4* ^# z 4* Z$ F Z$ /# w z I N /# I I m) z {& N O@ S E$ a7 N O@ P@ n! A M P@ Q T 3; d- T T 0* d- L Vf I T I@ L 4# tw ia 0* 58 C$ 58 58 q9 r9 lL 6B r9 mL r4 Ou q9 r4 ja nL {z HK Wz Bk `z &H HK #J _C A0 _C Wz tG dy Yz Zz |h Zz oL ]z |C |C 9J 82 ~9 jy <3 GJ jy jy pL vG ef @A KE 8C tH qL wH ;u IF ~I IF hK MK rL 9C MK yH ~I ]I PK HJ &J wG ;v OA ;H sL UF /I /I tL ;H sL ,H JJ ]K uL -J ]u JJ bJ GH 5# ). *. F, e- $% 5# 4) I@ P 1# S L L@ ` E$ S A H$ K@ S S ", +"k3 + ]& V@ * M$ = V@ R@ ]& # # + . ; = $ & - = . + * = = Q$ + . S$ > & U@ $ # * > * = ] # > & & ; ; ~ H= V@ ; $ Q$ . - X@ N$ > ~ 5 ) ] 1 | N$ Q$ ] ) ; ^& > ~ ;# | ] ## | W@ ~ N$ ~ d | < ## X@ 6 Y@ / &# 7 a Y@ 6 c < $# } o ~# Y@ 8 3] 0 7 7 a i a 0 k c ,# n ~# L= h 3* ~# n p j ~# r -) -) ~# 0 n u q _# u `$ `$ q m Y$ ^# p m C ^# {& :# `$ w `$ ^# w W) I %> 2; z c- P@ A A %> O@ J |# OL I ` E$ M I I >z A |# O@ P@ A: L@ t> E$ J U Q L d- G$ 4# 0* tw O= O= 58 7s qH 4# 58 q9 rH O= ja q9 ja ja ja J J PL sH QL PL ;I Wz lI QL 5o `z Yz dK dy dy dy Zz dy Zz Zz :C RL 9J eB SL vG vG tH vG tH TL uH UL ;E KE KK uH KK qL IF %J ~I ,K VL ]I ~I HJ WL 9C wH ~I ;v XL ;v yH -u NA tL UF ;H ;H NA ;H ;H ;H /I UF YL nK JJ oK [I QK nK ZL IH 1z TE ^H vL /H -J 1z yI XA zB DI `L CI DI JG 1I JG DI 1I M QG sK Jx ,G qC QG 'G 'G .M 'G qC rC :K :K +M @M xL :K Bl ;w q q #M -w q x CB rC `w x x Tx Tx $M sC Vr T3 kf gd T3 n El El Fy El Fy .f ~k .f !k .f ~k ~k .f .f Ux yo ~k ]k qa Rk ]k Z{ )2 J^ C_ Z{ e3 7< 7< e3 C_ e3 e3 1c W5 O~ }_ }_ W5 [} [_ _1 [_ 1c #g ~) ~) (~ E_ @{ ~) y^ B/ @{ C' ~) y^ V] V] i^ :/ ~) u: S( z[ / b] b] A) k' _~ %, b= _~ %, b= %, k' %, %, %, b= d= 6+ k' f, 3+ 6+ g, 5+ i; g, 5+ 8+ t% c+ l' t% j; 0+ 0+ d+ 0+ d+ b+ d+ d+ d+ e+ K& f+ e+ 0+ I* e+ ]J h+ $F &$ q+ m+ h+ h+ q+ ({ 5E HB HB ({ q+ MH ({ 1L qt Fl Xi Xi .B .B .B Fl dz |K Xi .B NH On pJ 3c NH 4c 4c W2 4c 4c _i On On ot _i On On uC L| uC @/ 5H 6I s0 L| '; ~w nf ~w nf nf '; '; '; m, m, m, '; #@ m, <~ <~ p; Z+ T+ Q& 1A %M &M aH *M =M -M #y [w Xn Os Ps *B *B JD [w Ps UH ;M Wn JD JD JD JD JD JD JD JD JD JD JD JD JD DC DC DC JD JD JD JD JD JD *B *B *B *B *B *B au au au *B >M Ls ,M 'M tv vv ^n ]y |j 2G )M 2j ND ;o Zo me Ph |k !M mk ~M {M iL ]M ^M +^ |@ /M W* W* -& (M (. '. u@ v@ A@ !. )& !. -. &. +. G@ +. C$ O H Y S 2# P@ S H$ K@ 1& H$ A ", +"L$ . L$ # + = L$ > 1) = # > > Z, > # S$ & $ X! = > = + ]& > . 5- > . o! Q$ ; & Q$ ; & S$ ] ; . N$ & U@ Q$ - ; | & V@ ] & & N$ | & ; 7- ; ] 1 ; ) ; ^ 1 , Q$ Z! X@ 2 ~ < ## 2 / ^ , J) [{ ;# 7- | 2 4 | d J) D, $# } J] e 6 } Y@ { } k N' ,# c [& 0- 6 7 a b k h h c h h 7 h L= L= `$ s> 0 L= h ~# r L= e /# Y$ m v h % (# p E, z 4* s> G ^# 1; n^ `$ Y$ ^# G z x `$ w D o^ A I G I S Q@ I H$ n! M P@ A D J H$ A: P@ T T Q U G$ H Q E^ 2# 3d 3d U^ 0* 3d P tw 0* O= tw qH _M tw rH 7s 6B O= :M rH q9 ja Ou {z PL PL sH sH 5o HK Vz y@ k' |_ %, k' %, k' A) .! _~ Y# b= b= %, B* 6+ u- d= ;- s% 6+ @$ 8+ @$ 6+ t% 7+ ;- b+ c+ c+ 0+ 0+ d+ 0+ d+ d+ d+ d+ d+ 0+ &$ Bs 0+ 0+ i+ &$ d+ 5E h+ I* q+ m+ HB }K q+ ({ }K HB 1L ({ HB ({ MH qt bM BD bM BD Gl qt Fl Fl cz Yi Fl Fl dz 1K M jM wv bL bw $t [x eE ^y Mh kM ik uj `o _n _n ,r lM mM nM oM 5G pM +^ '~ ;* A= m@ q@ v@ :. O- ^. {. A@ A@ +. 5# (* ,= E@ 4& R F@ Z 3; 1# P@ J }; H M A P@ Q@ Q@ ", +"+ # ]& + $ ]& 5_ & + $ > + = ; - > Q$ $ $ $ L$ . }* $ %= & ; . > & = # > - > U$ ' 2) Q$ ; . & - U@ X@ Q$ Q$ N$ | U$ > . & Z! N$ Z! ~ / . ; R$ 2 R$ ] 2 P$ ~ ' & | 7- ; *# /& 8- X@ < V~ == ~ } 4 < ( ) N$ Y@ ~ { 4 [ J= [{ : 7 6 a a i b e ~# ,# 8 8 {# ,# 6 ># a ~# 7 e c a j 6! A~ n n c 0 `$ 0- ,> l Y$ h % s> Z$ p t m {& qM :# t 1; p p 2, m ^# /# p N G G D A w o^ G I .~ P@ O@ A j4 m) O@ :* M z z M O@ O@ P@ Q T Q T t> |# d- pF I@ r! A: L I@ jI 3d 5, I@ E^ 0* 7s O= 7s mL 58 mL 58 7s {z @. Ou 7s ja sH J bf Ou rM sM EA &H tM Wz dK Ji |h Wz A0 A0 Zz |h dy |C Yz Bw eK Zz eK 'I vG vG uH jy vG tH vG vG uM KK uM !I 2M IF ~I ]I wH wH vM hK wM xM yM yH )K HJ yH yH lK zM ]L lK AM /I lK OA /I /I OA ;H UF ,H EH BM *J HH KH .G .G 1z ^H .G pK 1z G S ", +"R@ # $ pH > |* $ 0' & M$ # T@ # Z, $ . ; $ * M$ X! Z, $ . Q$ T@ & Gc [* # . $ ; > > T@ $= & > ] | ; Q$ V@ ; N$ U@ | S$ - ~ ; ] H= o! 2 %= ) S$ %= N$ P$ ~ ~ ; R$ 2 & } Z! { *# ) ;# d 2 ) ( ) 1 6 6 ( Y> 4 d q> V~ +# 1 } b a $# '# ,# ># q> b d e a a ~# 0 [& d $# $# a o 0 0 ~# L= ~# 2* h ~# L= Q{ {# `$ c h s s> ~# ^# m q t Y$ m `$ Y$ p t 2, % v p 2; Y$ D F= m w w G ^# G G {& G I I G N %> M m) M P@ I I A H n! Q A: P@ E$ 1# L 3) r! d- U^ S J r! r! A: @N #N 0* 4# 7s BE 58 E^ 58 7s 7s $N 58 r4 q9 Ou rH Ou Ou kI Ou .J %N &N sH Wz 0B &H #J _C |h @J Ji |h *N dy Ji Yz Yz 9o eK Yz RL =N vG >b vG tH uH tH tH tH uH 2M 2M rL 2M KK IF -N 9C ;N !L ]I yH PK >N ~I {L HJ ]I ]I uI wG )K /I aJ OA Wv UF Wv ;H UF ;H bJ JJ mK bJ ]K -J ;k 1z -J 1z (H IH fJ pK (H FG ,N .! f, 1+ 6+ i! 7+ ;- 3+ $$ t% b+ 0+ 8+ 8+ d+ 9+ 0+ d+ d+ 0+ d+ %$ 0+ e+ m' &$ F* m' m' F* {J ({ q+ I* ({ ({ n+ ({ q+ ({ q+ HB HB 1L ({ BD Xi Xi ({ HB Xi Xi qt qt bM .B dz Yr qt 2L cz 4I 4c pJ oJ On On 4c 4c ot 5H On On ot On ot ot 5H nf _{ @/ ot 5H $g L| [A L| ~w ~w nf ~w ~w <~ <~ '; <- S> m, Z+ p; '; _{ f) xg ^N /N (N 8L MC _N :N . 0# z@ )& &. B$ Ld 4# L@ L@ O Q@ H Y A J E$ A K @% ", +"L$ M$ ]& ]& + # + $ . # + # $ $ T@ $ A; ]& * R- + . [* V@ # Q$ ' $ . > U$ %= & ^ ; $ $= ' & | ; 2) =' & & & - - . Z@ ; > . > %= ] > ~ | | U@ *# { 4 ~ T- J= 7- X@ N$ *# N$ N$ 2 { ^ $# Y@ J= $# ( ( 1 7 4 ( 6 } ,# ( } N' } 0 7 ,# ,# B; b V$ ># a 0 7 $# b a' 8 6 a' 7 ,# {# c p 0 ~# e ,# ~# V$ ~# {# ,> % r o ~# n 2, ~# n h /# b' m `$ p q p! v c{ Y$ C D w D )> F= D w 2; I P@ 7s r9 rH 7s q9 7s @. ja {z E@ ja ja %i {z bf PL sH Vz Vz _C ,I >I 5N #J Yz Zz Yz dy Yz Yz |C Yz 6N |C 7N 8N qI tH vG 9N tH jy tH uH KK gK hs KK KK 4C ~I vH qL yM ]I 8C zH tI rI yH yH wG ~L BH 0N BH /I aJ aN /I BH ;H UF UF bJ JJ oK BM BM bN BM vI 1z RA .G :E .G /H CM ^H vL cN dN 7M eN fN WK 1I 1I 7M VK gN hN `L WK EI ,G rK iN sK QG 'G OJ 'G 'G :K jN :K :K 'G :K 'G #M @M .F `w kN `w x RG CB x x rC .F CB kt TG YK Tx lN Vr n Fy EB gd gd !k !k !k Fy .x Fy V5 .f V5 !k !k 34 AL ~k V5 6v Sc Vx J^ Rk mN 9e AD e3 e3 e3 C_ 7< Z{ e3 C_ e3 C_ C_ W5 S] nN e3 [] }_ 3{ i( K^ H{ T] r8 F1 ~) h^ 74 @{ U] @{ @{ y^ @{ ~) :/ y^ V] B' E_ V] `' `' K{ b= c~ D' A) k' k' l% b= %, %, }+ u- B) %, f, |+ s% g, 6+ f, .! @$ I& 6+ 7+ t% s% t% $$ a+ b+ 0+ t% oN d+ d+ d+ d+ d+ e+ &$ K& e+ K& i+ m' F* 5E &$ pN qN ({ 5E |L HB q+ }K ]G q+ MH ({ JM HB HB BD Fl bM bM 1L qt Xi qt Fl |K .B Yr cz qt |K .B NH On 2K 3c 4I 4I On _i On On ot $q 5H ot ot rN 6I uC uC Hl On ot 6I 6I _{ _{ <~ nf wg D- wg %g <~ <~ S> m, '; '; <~ p; L| G% /7 Q& sN #a tN vJ uN -q Vn Io Xn Os Qs wJ #y =B au *B JD =B JD JD |J >M DC *B DC |G |G |G DC JD DC JD DC JD DC JD DC JD JD JD JD JD DC DC DC DC DC JD JD JD *B *B JD JD vN wN xN JC JC Gt /n /n yN 2J 2J *t Zo +K uj `o Jf 1N cH kb %a zN AN Y+ 6$ |@ +& -& h# x$ s@ :. ^. ^. p, ). )& 4- .= (* z@ E@ E@ G@ E@ L X R M@ 3; Q@ E$ P@ K@ M G ", +"+ L$ ]& BN $ . ]& L$ L$ . $ $ # # $ > $ U@ . # . * M$ # * = $ $ k3 & U@ S$ [* & S$ & # ^ ' ; & Z@ 2 N$ |* $ * Q$ & & W@ Q$ | X@ *' . Z@ /& ) H= > ) X@ ( ^ ~ O$ CN | 7- } 2 N$ { %= & { ( [ { d 2 7- $# ,# 6- ~ [ /& $# { d $# J= 6! J= 6 ,# Y> 7 < ,# a $# b e 0 e ~# n q> } k {# n A~ n ,# k e c g {# n c a c 0- n C; K/ Y$ l Y$ % `$ q % ^# D 1; C w F= % m m 2; w 4* C w N N w A O@ z 2; Q@ F= I E; F= q! N I O@ Q 3; T Y L' T G$ U^ H G$ qF L H d- E^ T `I E^ O= DN EN 6B @N @N 58 7s 6B 7s 6B q9 @. r9 {z {z Ou {z Ou EA FN Ou .J nL >I GN ,I bf HN dy Vz IN 9o dy dy A0 Zz |C eK oL dy |C FJ JK tH pI JK tH 2M uH vG tH [z [z 2M 2M qL [z vH %J yM 9C JN wH ~I VL 9C HJ HJ zM zM Cx kK ,H dJ KJ sL Qq bJ ;H ~K ;H bJ JJ ;H nK bJ nK SA 1z eJ [I fJ 1z 1z 1z -J vL KN gN LN MN NN NN ON DI CI PN QN !N qK RN SN sK rK SN _K :K QG }L :K QG :K QG :K 'G 'G OJ }L F #M .F qo F ;w x kN <~ _$ _$ p; p; f) S+ E+ XN b YN ZN >e `N O .O 'q Os Qs Qs Ps [w JD *B JD Ps Ps RI *B =B DC JD DC EC XH EC DC JD DC DC DC JD JD JD JD JD JD JD JD JD JD DC DC JD JD *B JD *B JD JD JD JD CC yt yv Yo Yo [x ou dw 2G 2J +O Yg @O #O ;o Az $d $O tt %O &O *O =O ($ 4$ o$ m$ -O r$ O- >& c# v{ {. ). +. +. %. (* =. A@ R X V z$ X G@ S P J n! S J J E$ J ", +"L$ R@ + $ . + Z, L$ ;b $ . > }* > > . 1) U@ > }* - > Q$ ^& $ $ ' ] $ & $= U@ ' T@ | 2 ; > Q$ * # . T- N$ ; S$ & ' > # Q$ . = | - & H= X@ ~ %= > | { { ## /& | ^ - & X@ 2 ] { ] ~ [ ## : W@ : [ ~ ## == d ( 6 : ( ## 1 ( ,# D, 2 6 i $# 6 a 6 2* ,# i d &# ,# a k i i ~# 0 c i i ~# L= c p c X$ h Y$ r 0- Y$ c Q{ 7 (# G @= ^# p m ]c % 0- V| F G #] w :# {& :# 6* m Q@ B A A F= G A A I G z 3# P@ m) ;O H$ n! P@ L 3; T a- M >O U d- J 3d r! G$ J 0* 3d T pF 0* T 58 tw O= 6B EN 7s 7s 7s 6B 6B r9 Ou FN r4 ja {z Ou {z J PL {z &H &N EA Wz ,O dK Wz A0 'O )O Yz dy 9o |C dy |C Yz oI 6N 6N !O eB KK jy jy tH uH KK jy uM uH uM gK KE KK ~O !I 8C {O uM yH ]O wH 9C ^O yH HJ aJ xM {L OK )K OK /O BH Wv ~K UF (O bJ /I bJ bJ JJ ;H bJ {H .G 1z _O =J 1z -J -J LJ :O x$ q@ ^. c# !. p) ;. x@ z@ #% z@ z@ }; . &' #% .= T L@ P L@ A K@ S A M@ Q@ ", +"# ]& ]& ]& = Z, ]& ]& + > = o! T@ . Z, ]& $ . > = > > . - * {c & P$ . + > S$ > ' U$ ' Q$ > U@ & P$ ; %= > ] ~ $ + - & > > + N$ P$ > ; ~ X@ ~ Q$ ~ ; { ) } V~ 2 | ; ; N$ ## | ; { | 6 6 / { 4 1 2 } *# ( { | d [ 6 [ ,# d $# e b 9 d V$ d 9 } 0 ( a e 6 $# c L= r {# 6! *= M' n L= C; ~# n L= 0- Z$ ~# h p 0 n ]# 1; p ^# {& % `$ Z$ Y$ }& 4* z ^# m F G ^# b' N w N M c- I I F= x |# c- O@ A |# A A o^ O N@ I :* H 3; | + k) S$ & S$ ' . & S$ & $ . ' & *' %= ] ; . R$ %= Ez R$ | > Q$ * & ; U@ $ o! ] ; | N$ ; | { > Q$ | ) ~ ] ; +# { 4 ; P$ %= 7- < / ; | | { / 7- [ ~ ~ &# ( /& { N$ X@ d 7 b [ 9 0 a ,# 7 ,# c ,# k 6! ~# L= 6 i 0 9 i 8 j o a 6 o {# 2* 0 6 a *= 1, p n h {# n % Y$ n 2, o Z$ {& w q r `$ m 1; ~& G D /# {& % m C `$ $] A B M G 8* F= I M O@ E M d{ 1& O@ Oz J M d{ A: Q L ` SO *I T J H L@ U^ G$ L@ G$ G$ #N U D$ qH 58 tw O= 58 @N 6B 7s 7s 58 6B 6B 6B TO {z J UO Ou -I {z Ou wr #J EA I A0 Yz A0 Zz eK Yz VO 7N 5N |C !O tH >b tH tH KK uH tH uM uH uH 2M qO 4C WO uM 9C *A iK HJ ]I =v XO xM 'K XL zM HJ yH NK ~K Wq UF AH /I ]K ,H JJ ;H ;H nK ;H OA UF vO nK ^H vL YL wO wO 1z LJ YO vL pK YO ZO `O !N P .P DI qK +P VK qK !N DI `L DI qK 5O iN CI 'G 'G QG 'G OJ 'G QG .F :K 'G @P #P OJ ;w :K Bl .F CO `w CB P >e -F sf Kt HL #y Qs Qs Os =B =B Ps Ps JD JD JD *B =B Ps RI 'q DC JD JD JD JD JD *B *B JD JD *B au *B JD au au JD JD JD au 7K 7K 7K LO @y au JD JD JD *B JD *B NB yt ,P ]n [x ^y ou ]n tv ^y `y 'P jk )P !P me qd mh ~P =M Ca {P ]P #f <~ 4@ ,* i@ -& m@ -& v@ w$ = A@ A@ ). =. 4# 5# 4) E@ L@ .= G@ H H J@ }; S J T 1# N Q@ C, ", +"+ V@ + + $ $ + + = ]& $ = . X! - . $ & ^& k) * # |* Q$ . T@ $ ; . + ; - + . $ U@ ] $ N$ & & ' S$ & . . S$ H= * > . S$ . %= ; N$ X@ | - ^ 2 P$ %= N$ 4 2] Y@ d 1 N$ =' 8- %= 2 2 ) [ ## < } W@ ## W@ x0 { -> ## Y@ ## 5 } b 9 ( b / d -> b D, b 7 ~# 6 6 a e ## 7 $# 7 ># n a a p h ~# 0 L= L= p o ]# 3] ~# L= h p n 0 Y$ p ~# @= :# Y$ _# ^# m 4* b' Z$ 1; B G }# u w z z F Q@ I G F= n^ I N O@ c- O@ I O@ A M M Q J :* M :* T E$ Oz h] O@ L L@ tw #N 3d ^P 0* P' U U^ 4# 4# BE E^ &k 58 qH 58 58 7s 6B 7s 6B 6B :M Ou 6B rH J Ou {z Ou .J &N .J Wz sM Wz nO IN A0 {C dy dy Zz Zz Zz Zz |C *H Zz fK oI pL uH ~9 uH KK KK 2M KK 9N KK sO uM /P /P /P (P rL *A _P 'K {L )K yH {L )K HJ {L VL 9C tL )K sL tL dJ ;H bJ aJ :P Vw ]K ;H

6+ J> s% 5+ u- 6+ 6+ .) ;- 1+ I& l' 7+ %$ b+ 8+ 8+ ~J %$ e+ e+ e+ F* e+ d+ 0+ e+ RJ Bs e+ m' F* 8P pN q+ HB ({ q+ ({ ({ 1L BD 1L HB 1L HB MH MH Fl BD bM HB MH |K qt .B .B qt aO dz |K |K 4I 4c &r $q _i On UN On _i _i ot ot 5H ot On ot 5H On uC _{ $g JI LM JI nf _{ 7I wg nf nf wg nf 7I '; <~ '; '; _$ '; V+ /$ C- 9P 0P _N aP ;L bP ]r Ps Qs Qs Os Os Os Ps Ps =B =B JD JD JD =B #y UH JD JD JD JD DC DC DC DC DC DC DC JD JD JD au *B JD JD *B *B *B au au kz iM 7K ,F JD JD *B *B DC *B yt +e ]n ]n ^y dw gH ou dw 9r Oh cP +O UI .e 4j Fe dP eP fP gP hP iP +^ X% '* :; m@ j@ x$ w$ {. A@ x@ ). &. )& . .= *. @. D$ J@ =. }; G@ P S J P@ K@ ` J z M ", +"M$ # ]& $ > + ;b ]& V@ jP 0' M$ . + ]& . L$ ]& > 1* * > # . L$ ]& }* H= ]& R- $ & - > Q$ ' ] . & = & %= > !, . & Q$ ] ; A; . ' | N$ S$ N$ Z! ] & %= & X@ T- | 5- 1 6 2 { X@ X@ - | X@ 2 | 2 W@ 2 b{ < : 7 < / ## /& ~ /& 6 <& 6 < 5 [{ 6 e < a [ 4 0 6 J] } 3* 7 c *= 0 e h h c o 0 t' 6! a o e q> ~# c ~# X$ _# r K= Z$ j % m q % m % }& _# h 4* ^# p :# {& (# w C G z N b' x I A A F= I Q@ I B c- H$ I o> I M h] M P@ 3# O@ E$ S c' L :* 3& G$ L@ G$ 3d G$ kP r! d{ I@ 0* qH lP E^ qH 7s EN 7s 7s 58 58 58 $N 6B q9 y@ r4 HK {z r9 bf Ou &H ,I {z dK PL mP dK @J /3 >I oO Zz Yz Yz Zz 9o nP Bw |C |C oI oP uH jy vG KK tH uH tH uH uM 2M /P qO 2M /P 4C pP &J qP rP >N yH MK OK XL HJ HJ {L XO sP KJ 'H UF BH NA ;H tP QK 3M uP dJ vO BM ]K bJ ZL =J {K .G -J LJ -J CM 1z ~. ,. z@ E@ @. E@ L@ J@ P ` D$ H L@ Y M@ S z J I A ", +"S- ]& + R@ > $= J$ L$ M$ # . Z, Gc # Q$ - + p9 # S$ Q$ + $ $ M$ $ . p9 $ X! (& . & & # S$ ^ & > > & & * ; H= $ %= ^ | N$ ) | N$ %= Z! | { S$ ; Q$ P$ ~ X@ ~ - { [ - [ | N$ & & Q$ | ^ | Y@ 1 [ 6- 2 } < ) { d 2 ~ 7 [ $# == 6- 6 &# 7 7 a $# d c ,# ,# [& ,# a c c 0 ~# ~# 2, e 0 z: W$ n ~# K/ k i L= c z: p h Y$ h 4* Y$ V| n V| ^# % Z$ `$ ^# t D ^# ^# C /# o/ ^# m 4* m w w W) ^# A j4 N I w x z I P@ #] J A |# Q q! o> 3# o> 3; S r! A: S U DN L@ K) #N U^ =I tw 3d G$ tw #N #N `I BE 7s 6B O= 6B 58 7s 58 mL E^ 7s ja E@ -I Ou J ja Ou {z QL MP lI NP FN dK Wz |h |h OP 'O Zz |C Zz 7N |M fK RL Zz |C PP vG vG 1M |M 9N KK QP uH uM uH uM KK /P uM uM /P NK WO qP 4C ]I ]I {L {L ]I XL )K 0N RP tP aN >H wG cJ dJ Wq aJ 3M uP ;H cJ cJ ZL YL nK 5M 5M SP pK LJ vL -J LJ 1z o Jf =Q bH -Q &K ;Q >Q X+ ,@ .& g@ -O k> x$ h# v@ (. A@ &. z@ &. -. z@ .. .= V ` S ` 2# J H E$ M H H$ S |; A ", +"+ - + ]& $ + R@ L$ + # + 0' > p9 + U@ $ 0' #^ . ; $ $ > * * - H= & + ' . . ] o! ,Q - ^& H= $ > . # . & k) & > ]& & ] T@ & | # ; | ; =' N$ & N$ H= | %= | [ ] { %# 2 N$ ~ { W@ X@ 2 7- { [ |, ^ , ] ^ $# 2 d ~ 7- 6 ,# d [{ 5 ,# $# < e d 0 6 7 0 a 3* ,# ~# [& 8 9 i ,# a e n !# r ~# s> `$ n {# *= 2, h s> ^# r m _# |& }& 4* r % w % F u Y$ B [# m _# ^# I b' }# % n^ D m ~& w W) I m I x {& M A 8* O E$ Oz E$ G O@ O P@ |# L D$ J i5 P@ A: d- T 3d 3d G$ G$ L@ U^ 'Q )Q 3d !Q tw O= 58 O= mL O= 58 6B 7s E^ 6B Ou ja J q9 {z J Ou Ou HK QL S; k/ D' b] k' <' %, %, %, %, b= Y# f, A* %, k' 1+ i! s% s% }+ %, 2u 6+ 1+ +$ I& s% 1+ 3+ 8+ t% e+ J& t% e+ e+ e+ e+ d+ F* CP e+ 0+ d+ F* I* CP &$ HB ]G 2Q Q 5E HB 1L 1L HB }K ({ ({ HB JM 1L HB 1L qt .B HB MH |K |K |K aO .B |K aO 1K 1K |K On _i $q $q o$ -O l@ l@ :. ^. ,& >. x@ 5# .= ;. +. E@ +. z@ 4# H H$ L@ P@ P@ P@ Y H O@ S Q@ Q@ ", +"]& V@ + = 0' ]& Z, Z, ]& + ]& !, + + ]& ] ; pH .( - V@ X! ; T@ Q$ X! $ Q$ 0' ]& - $ & ^ U@ = {c & 5- ] Q$ > | 2 N$ Z! > ^ Z! & > ' > & H= U@ | X@ Q$ 5 N$ Z! { { N$ ^ ) ~ N$ N$ & . Z@ W@ [ N$ 2 { ## ~ [ d ) d q> } /& d ( d d ) ## ( 6 ~# ,# a 7 0 [ 7 c ># ~# ,# {# a X$ q> 7 0 0 -# c n r n c _# {# [& c *= r n `$ ~# V$ h !# p p n ^# #] /# t h m B w n h -) (# m /# N F= F= b' w I I 8* G I N w P@ z H$ O@ M 1& ~& M h] |# M A: 3& O S P@ U |# U^ Q U^ U^ G$ L@ 3d pF DN G$ Vf tw tw E^ 7s 7s mL 7s 58 6B mL mL mL 7s ja {z r9 {z J ja FN cQ dQ / d~ :/ r{ D' k' %, b= b= k' b= Y# d= B) %, b= 1+ s% 5+ 1+ g, 1+ 2u ;- s% $$ 7+ 3+ 1+ I& t% 8+ 0+ d+ J& d+ d+ d+ e+ d+ e+ e+ e+ F* d+ F* RJ CP F* ({ .Q qQ rQ ]G ({ ({ HB 1L q+ ({ bM BD HB 1L MH bM qt |K Fl qt .B .B bO dz Fl qt dz UN 1K sQ pJ 4c 4I _i tQ On _i On On On ot ot ot ot ot LM LM 5H dM nf _{ _{ HO LM LM ~w Es S> nf nf nf ~w '; '; S> <~ p; _{ F% P+ NH uQ vQ wQ xQ iE yQ zQ AQ Ps Xn Qs Qs Xn Ps Ps Ps #y #y bu *B *B =B Ps $s UH |J JD JD DC JD JD JD *B *B *B *B JD *B *B *B *B JD *B 7K au *B JD BQ au 7K 7K au 7K 7K + + + > . %= & o! Q$ $ = ] ; . ^& Q$ [* . - ; S$ Q$ ; ; S$ . N$ | H= > = T@ > Q$ T@ H= | X@ | N$ X@ S$ ~ { { ; ~ { ~ => | | ~ ] Z! { d { | d ~ 6 [ W@ X@ 1 ( X@ /& V~ | } ( &# 7 *# 7 $# } k ( 1 g n ,# 8 ~# ~# e 7 ~# L= ~# k L= c Y$ ~# s> i 0 C; {# L= r c{ {# :# r 0 `$ n Y$ p n Y$ h D y2 ^# ,> y2 t b' ^# ^# m `$ b' % ^# z 2; G c- M G C O D$ U^ tw 4# `I G$ qF 3d 0* qH 58 !Q qH 6B 7s TO 6B 7s 6B 7s rH @N r9 r4 {z Ou Ou FN {z {z HQ HK sM lI Wz eQ .J Wz dQ :C &N 'O |C Yz Zz dy Yz fK dy |h nP EJ fQ uH uH pL IQ JQ uH KK KQ tH gK uM uM hQ uM hQ LQ 'K hQ hQ iQ &J ]I ~L )K yH )K zM zM XL MQ uO mK OA ;H 3M ,H NQ JJ bJ #w nK OQ YL {K PQ pK ^H SP -J CM ^H M JD au au *B *B R 5Q au *x Az .R ou `l ou /n |N xv /n +R @R ar 5g Az #R MD EQ MC kb $R %R &R T+ L% 3@ 0@ ~* -& s@ w$ 7; A@ ^. ;. &. =. &. &. G@ C$ E@ V D$ T I O P@ S J J Q@ M J I ", +"J$ = $ V@ + # [* + $ $ + $ # E! = + . > P$ ' - . . . = Gc ; . }* Q$ = }* & + & ]& - > S$ ' $ ; $ Q$ ] k) 05 . ; + ; H= ; N$ | H= N$ ; %= > ; ~ ; ; | X@ ~ ) ( { ; { | 4 & 2 J) ; ) ) } [ ~ [ } } 4 ) 6 d 1 4 6 e ,# 7 ,# V~ vk 6 Y> k ~# 7 } e ~# k 7 h a 0 0 6- 8 e 6 f {# ,> p s> s> h r L= n t k l s> s> 2; `$ 2; l Y$ ]# t ;) 2; `$ m Y$ Z$ n % w m s> ^# G b' Q@ z w I z |# 8* 2; 1& F= c- F= M E$ d{ J A O@ L c- J C, Q E$ L c- r! 0* >O 3d 3d G$ DN tw tw O= O= `I @N 6B 58 58 *R 58 7s &k -I 6B 7s -I {z {z J ja J {z J MP kI Ou dK Wz cQ HN =R IN cy -R Zz Zz *H 5N Zz nP |h nP fK fK PP 1M ~9 pI ;R tH tH KQ 2M KK uM KK /P /P uM _P /P rL >R hQ ,R ^I &J 'R {L {L )K XL )K /O RP aN (O ~K aJ OA /I nK JJ ;H nK nK NQ bJ

05 | . $ . ] S$ N$ ) & N$ & ; 8- S$ ; N$ P$ [ | ] ## X@ ' N$ {c U@ [* ; 4 6R ~ ) { N$ ) & 1 ) ^& 1 ## O$ | ## ) / } < $# < < } 5 { 3] ,# : V~ i 8 5 [ ,# 8 0 c Y> 0 b 6 {# 6 7 0 [& e V) } ~# s> Q{ Y> h n p ~# {# `$ h Y$ `$ e Y$ `$ s> `$ 4* 2; h Z$ D m p t m {& Y$ y ^# 4* F= D w w ^# % G I z w z M I A 7R O@ d{ E$ M M E$ J O@ M O 3; 3; |# o> t> qF #N 3; L 'Q 'Q G$ G$ 0* 3d L@ I@ E^ BE !Q @N 7s mL 6B 7s 6B 7s rH 58 6B mL ja J ja ja {z cQ {z kI EA sH =R dK sM lI mI [M `z 8R {Q |C dy |C |C Zz 9R |M 0R 6N =N pL GJ aR oP tH KK uH !L uM >R /P qP /P uM hQ /P rI hQ hQ bR {L tP )K HJ XL zM RP )K MQ 9C aN aN CH aJ nK ~K ]u :P JJ vO nK vO YL

> |* Q$ = # $ Q$ }* > $ . ; . Q$ > T@ . ; ; . o! . > 2 & 2 Z! S$ *# & 2 N$ P$ | ] T@ N$ N$ ; & | ^& 4 Y@ ] 1 / 05 { ) ; - ( /& ] | [ ) `@ $# ~ a 6 ## } 6 | D, 5 ( d ( b $# 6! ,# / 1 6 d D, 7 ~# ,# ~# ,# 6 M' a e 0 ]# 0- 0 c n !# 0 |& L= h ]# s> h c 0 h p q D p (# m m t u 4* b' `$ G /# B ^# m N E; ^# w N /# Q@ A m z 1& >z A Q@ AR I M M d{ O@ H$ P@ M M r! L E$ M@ J *I O r! 3; #N I@ 3d G$ 0* d- DN 0* qH `I _M tw 6B 7s 6B ia 58 q9 -I 6B q9 rH Ou Ou {z {z {z cQ IK EA bf &H MP mP HN {z dK mP Zz BR CR dy dy fK Yz Yz DR fK ^Q |C EJ IQ 1M IQ oP uH uH vG 2M KK uM rO qP WO KK rO uM _P WO _P iQ ER yH XL zM ER )K XL zM MQ XL FR Wq ~K GR RP Wq ]K dJ Wq HR ]u IR JJ nK

M DC JD *B JD DC [w =B |J 5Q DC JD JD *B JD au au *B *B *B *B *B *B JD JD JD JD JD JD au JD JD JD au LO 7K LO 7K *x `R wv `y pu S KL pv .z .I uj uj @K me qd ^j fI !M .S sf +S fr @S Fc ,; y] o$ r$ t$ -& t@ d# :. ^. D! +. 5# !. V ,. F@ E@ L@ H 5# 4# D$ A H$ S M +% I O@ z ", +"]& #S ]& k) T@ # $ L$ M$ .( L$ = + 0' ]& # ]& ]& . S$ * & U@ > Q$ # ' Z, - ; |* Q$ ; # | ; & %= =' ^& $ . S$ ; . Q$ . $= =' Q$ . & ; P$ ; =' N$ > | $= o! P$ N$ H= ] *# Q$ ] 2 +# [ 4 4 X@ [ ( , X@ ## | ~ ~ N$ ~ } { N$ ( ) ## 2 ( ( ~# { 1 q> Y> } ~# k c 6 6 ># 6 a W$ *= z: e ~# k ~# ,# i c ~# ># a r 0 7 s> 0 0 _# r n h ~# n ;) s> `$ p m p `$ w n^ p 4* b' `$ V| p Z$ r 1& m :# C I 2; `$ 8* I $S 7R z Q@ }# T^ c- 8* E$ E$ P@ E$ i5 |# m) E$ Q M L T >O U d- pF 3d r! =I 0* 0* K) 3d #N 3d E^ tw tw 7s 7s 58 tw 7s 58 7s 6B 6B J J sH J FN Ou {z sM {z J dK %S &S *S QL eQ 8R 'O 5N =S dy Zz Zz |h 0R 6N |C -S ;S 0R >S /Q 2M 2M 2M 2M KK uM uM 2M qP WO WO vG aR uM WO uM qP ,S 'R 'S {L MQ HJ zM {L MQ RP MQ )S RP BH (O 3M uO NQ JJ PQ uP Vw QK YL vO nK vO (H /L YL (Q 1z vL _Q KN KN KN $r !S :Q ~S [Q 1I {S ]S AO zO qK nQ CI `L hN TQ _K 5P qK 5P ^S :K fR @P 'G #P /S OJ :K OJ fR 7O FI 'G az )J (S `w #M FI CB q q `w `w F %Q JD JD JD JD JD *B JD *B JD JD *B au 7K *B JD JD JD au *B *B *B JD *B JD 3S LO 7K au Ms 4S jA /n )B 5S ;o 4j |i 5q =t @K (n 4q 5g Az 7w .p 6S Kt YI Jl 7S pM #@ 4@ 3@ h@ -& u@ b# /* ^. !. x@ =. &. &. e- B$ G@ _* G@ L@ Y L@ O P@ M S I A A P@ b- ", +"# 0' ]& V@ + = #^ .( # # 8S .( > .( L$ . + . - & . ]& > . = = & *' Q$ ! . $ - & ; N$ ; | $ Q$ }* ; 2 > Q$ =' A; U@ & S$ ; U@ 9S | N$ ; ; { | S$ N$ | | { ^ | ] ^ /& / 6- ~ ) X@ N$ 5 X@ 2 2 | W@ ;# N$ ~ ) W@ { W@ } b } *# ( d Y> { 6 } $# 0 i a 6 7 b ># 6 a V~ 6 6 ~# q> 0 [{ 0 7 ~# n |& q ~# ,# n h ~# ~# b' n n Y$ ~# u Y$ p n p c r Z$ p `$ Z$ G D p :# M= w G m m F= z F= m 1& I z A F= ~& N@ A O@ 0S 8* 3# E$ |# H$ I a- 3& r! 3; T O A: Q 3d pF 0* C, =I `I 3d pF G$ ^P 3d 0* qH 6B @N 7s 58 7s $N 58 7s 7s q9 {z ja J {z J Ou Ou aS PL bS J dK cS Wz Wz sM ~Q >I 6N dS 8R *H dy 7N Zz |C |C fK pI nP ^Q fQ tH vG eS tH qP vG 2M vG uM 2M uM uH WO >R 2M {O hQ hQ hQ >N yH yH XL zM {L HJ RP fS XL XL AM mK aJ uO FR ]u cJ Vw uP cJ nK JJ JJ

G iS KR qK !N NN qK !N WK DI _K VK VK TQ TQ XP TQ _K jS }L iN iN }L OJ :K 'G |Q OJ }L }L #P ZP 'G rC (S kN `w #M `w x CB d fr uS vS Z+ 4@ wS :; ;& h# u@ v@ (. %% =. !. 6# A@ >. z@ .= X H Z 4# 2# E$ E$ P@ O@ +% ` M O z ", +"]& p9 0' !, ]& . ]& + + BN + - $ ]& ]& + + & # # L$ L$ . > o! & N$ & - ] $ . ] $ ~ %= U@ ; Q$ > o! & - > *' H= ; Q$ =' > ] ' Q$ ] Q$ . ~ & Q$ & & X@ | N$ W@ 2 b{ J= ~ < ~ X@ ] X@ 6 [ | ) [ W@ { { d / [ { < ( 1 X@ => $# xS d 5 } d } 6 } 0 W$ W$ d o ~# 6 e ,# 6 a ,# i k e a ,# o {# h h {# L= 6! Y> r p Y$ n ;= ,> c s `$ _# Z$ h ^# p 2, p `$ D m F= t w F % G `$ ^# w b' E; M z G z M O@ %> I E A M h] J n! n! J A: O 3# P@ O@ T C, |# qF pF G$ G$ ^P #N L@ tw pF yS zS 4# qH 58 ^P 7s 7s 58 6B TO 7s AS HQ HQ rH HQ Ou ja Ou -I BS {z %i CS Wz cQ &N Wz DS ~Q GN IN IN ~Q Zz 5N EJ |C nP 6N eK pL nP 7N =N KK ~9 9N uH ~O uH uM (P sO ES 9N 2M hQ /P rO _P hQ _P _P 'K ]I XL aN )K jQ FS GS AM ]I bN RP uP GR HS dJ IR FR aJ HR IS nK vO vO JJ [I JS CM wO vL KN q NB JD JD JD JD *B JD JD *B JD JD DC *B au au au >q BJ YS xv gO cw 1i yv ZS $j !P {F {F `S 4g .z )n 2f T .T xK oM +T @T P+ O% 9@ g@ p@ m@ t@ /. q@ T' A@ !. l> 5# 5# &. 5# 4# L@ H@ X P A Y ` b- Q@ M S M @% ", +"J$ L$ p9 J$ I/ + = . + ]& + # . I/ ]& $ = > S- + . ' U$ ; $ & - Q$ ' ^ & Z, ] o! ; > - > . . . & & & Q$ {c . #T Q$ S$ ] ; > `@ . U@ R$ - . > ~ 2 ; N$ J= N$ W@ & | { W@ { => | O$ { | ) 6 ;# ] ## V~ ~ %# 7- } N' 5 4 &# ( ( 8- d ## a d 6 b 0 0 ,# d c 6- 7 ,# a a q> c ~# 6 ~# a 9 o K/ ~# p Y$ `$ ,> e 1; r p s> ,> 4* p Z$ p Y$ s> h ^# q C Vj p Z$ ^# ^# D w % t w I q2 G Z$ $T w K {& z z z G >z n! I M M J T^ m) d{ #= J J 3# 3& d- J 3& L T G$ #N #N #N #N ^P 3d 'Q 3d `I qH 3d _M qH 58 $N $N 7s 6B mL $N mL $N -I Ou ja -I :M J {z {z J PL %T FN Wz DS eQ dK @J |C @J Zz 6N |C |C |C |C |C /Q nP 6N 6N pI jy vM 1M LQ 2M KK JQ {O gQ KK qP &T WO _P hQ iQ hQ hQ 'K ]I FS aN VL zM zM XL AM ER cJ :P aN Wq uP NQ #w QK bJ nK QK Vw

T _S qQ 1L 1L 1L HB HB HB ({ HB JM 1L 1L !- 1L JM JM nS Fl Fl |K |K |K .B |K aO aO |K |K ,T UN uK aO dz vK On 'T ot LM uK On ot LM 5H On LM ot 5H LM LM HO LM ~w ~w wg LM ot wg wg ~w S> ~w ~w ~w _{ f) .^ S+ )T !T ~T vt YR aI 1N Ho Qs Qs Qs Qs Rs NB *B *B Os bu bu JD *B Os #y #y JD JD JD Ps JD |J 5Q JD JD *B JD *B *B bu =B Ps Os {T BQ *B JD JD JD *B JD *B 7K au au JD *B *B 7K uR yt mi 0r |N {F |x ]T 8w )B XM pi qu zz iH fO ^T .( . ; L$ ]& = # + > $= . ' > T@ + $ > S$ Q$ ! ; ; > . S$ U@ ; > & Q$ ^ . Q$ ' ; . > ; Q$ $ ; | Q$ > N$ Q$ ] ; > (& | ; ~ N$ ; X@ 2 ^ 4 W@ ) /& { 2 *# , N$ # 8- | < Y@ 8- [ W@ 1 ( 5 ( /& 9 D, xS } 6 6 7 6 } c ~# d i ( a [ ]# ,# a V~ $# e ~# ,# 6! ~# a [& ~# Y@ Z$ 2, 2, ]# L= n h Z$ Y$ -) @= ]c `$ r 0 (# h p p y /# p q ^# :# F= p /# V| w w N w 5* F= $] M A F= G M 2; 1& M ^# K z z d{ |# |# 3# ` d{ Q |# r! T O M 3d ^P #N 3d #N 3d 3d G$ pF r! #N tw E^ EN 3d qH 6B 7s 58 $N mL $N $N 6B ja &k J ja 6B {z J {z FN cQ mP FN sM &S lI dK :T Yz 8R CR *H fK Zz fK Zz 6N nP |C nP fK oI tH gK KK KK 2M uH !L x$ w$ :. gT F, W> A@ A@ A@ >. -. .= .. V X J H S A %> P@ Y P@ I Q@ ", +"0' ]& # L$ ]& ]& ]& ]& # . > + + $= + L$ . X! . L$ R@ $ L$ ]& ^& $ $ > ; o! - ! - & & ^ ; U@ ] ; Q$ > $ Z, . ~ ~ ] [ N$ | ' ; & & %# . & T@ ' ' | & & & h) ) ~ $# [ 7- U$ 4 | X@ | 2 [ Z! 4 ~ ( $# 2 T$ # == W@ 6 6 { d | [ { J] c6 6 *= d a ~# D, 0 d 0 6 e J] ~# ~# ,# a 0 ~# {# h 0 a j e Y$ p ~# `$ L= 0 n l h n^ r q s> ^# ~# ]# h Z$ :# `$ t Y$ D C m m % ^# w G :# G N ^# N F= O@ M 8* w z M M P@ M Oz x Oz E$ 3# o^ O@ S 3; O 3# P@ O@ P@ A: 3d d- U^ 3d #N G$ tw tw 0* U^ tw tw qH _M 3d @N 7s 6B 6B 6B 6B 7s 6B 7s q9 hT :M Ou rH rH J FN Ou J R mT KK uM WO hQ /P {O uM qP 0N nT hQ /P 4C tP XL RP ER XL )K zM RP XL oT aJ IR AM uP Ix Vw pT Ix uP ]u nK YL

T 4T 4T }K ({ ({ JM HB Bs ({ 1L lS lS lS xT 1L ({ JM lS bM |K |K qt |K aO .B aO aO sQ |K |K |K yT sQ TS ^R ot _i ot ot UN LM 5H 5H LM 5H 5H 5H LM zT LM ot 6I ~w s0 wg s0 LM _{ _{ ~w '; ~w nf _{ L| f) o2 E+ AT BT @I CT _J DT jM )e $Q Qs Os bu Qs =B JD *B Os Os Qs bu JD Ps =B Ps Ps JD *B *B JD JD *B *B JD JD JD *B au *B =B Qs ET NB 7K *B DC JD JD DC JD JD JD JD JD JD bu JD *B bu Wn FT cw /n kh GT HT IT JT 'l /y KT LT 1j ,B QB ,f 3g MT MC kb Sh NT OT S+ S> |@ e@ ~* u@ {* t@ w$ ). '. 0# v{ .= .= z@ R @. 7# .= G@ #% C, H M M N@ S M@ P@ H ", +"0' #S R@ $ = ]& . $ ]& ]& $ 0' * ; $= = $ V@ . . . $ . * . T@ ]& o! $ o! $ ^& . > ]& $ T@ S$ R$ ; . ' - = & U@ N$ ; %# $ ; > > T@ . . > H= o! U@ ' N$ ; ' { ; | N$ { [ 1 U@ { ] | & - | | { R$ 2 $# ( ) | 5 < { [ ## 1 X@ } ~ q> J] ( ,# 5 d d 7 j 6 $# d ~# 7 e ~# ,# 7 e a k n L= a' h j |& p h 0 A~ X$ n `$ r s> q _# s> u ]# :# u 4* {& D p o m ^# /# 4* /# ^# ^# p Y$ D G m D 8* m M G 8* N T^ 3# I Q@ PT A A Q QT =K M M@ L :* i5 3# E$ n> O r! H qF 3d #N 3d RT G$ d- L@ #N K) qH 7s `I tw O= 7s @N 7s mL 7s $N $N $N AS 6B ja ja q9 FN J J {z FN bf ST R WT WO qP uM /P qP ~L pP WO pP [T {L XL )K MQ aN tP RP :P AM KJ Wq Wq AM Vw AM JJ ]K uO cJ Ix PQ XT vO YL hJ }P YT ZT vL KN /+ b= k' Y# b= %, k' ] k' u- b= Y# |+ u- %, s% s% |+ I& 3+ 3+ ;- $$ 8+ |+ $$ $$ .$ e+ $$ $$ _S CP F* F* _S _S _S m' qQ QS 8P kS RJ SR 1L lS 1L 1L 1L HB 1L 1L lS JM JM JM bM lS lS xT cO .B |K $U |K qt |K %U 1K bO |K aO bO aO sQ uK &U _i tQ oS &U ot ot ot 5H ot 5H 5H ot LM 5H LM 6H Es nf nf ~w *U LM ~w S> [A _{ nf _{ 7I ^7 W2 k= =U Ga Tn +s .y md @H -U ,q %s Qs Os bu *B *B JD JD Os Ps =B Ps Ps Ps Ps JD DC |G DC |G .H OB ;U [w |G |G bu |J DC *B @y >U `Q #s JD JD JD JD JD DC DC DC JD |J kz WJ DC DC DC $L 2g Mh =L ,U QD KC 'U DQ {F ]T KT )U 'P )j !U 4f fI ,r ~U =M {U %R ]U P+ =@ 4@ m$ o@ -& {* 4_ '. ). 5& A@ &. =. .= 4& 5# ^U E@ S D@ P L@ L@ J H G b- A K@ x ", +"0' 0' ]& ]& ;b R@ L$ . 1* $ # + # ]& + <{ J$ T@ + + > $ > 0' L$ + & $ - - = . > R$ $ $ & . ] . Z, [* P$ 5- Q$ > N$ ; | & & H= N$ $ ; $ ) { %= ] { 7- | H= ## | Q$ N$ Q$ ) ) ) W@ 1 | 2 X@ N$ - { X@ *# ~ { | ) ( [ 4 W@ W@ ## } ( } 4 B; } V$ $# 9 7 d Y@ 7 q> 3] c ~# 6 a Y> ,# 0 n ,# 3* a a a n {# L= h [& r |& ,> h W$ m p L= L= g r m m /# C W$ Y$ ^# 0- Z$ `$ ^# /U Y$ Y$ C t z m D w 8* w 1& G I ^# O@ z N 8* Oz T^ 8* 3# 8* c- O@ 8* SO c- *I J O T O *I O L 3d 0* T (U L@ G$ #N 3d 0* 3d qH qH _M qH mL 6B 7s $N mL 7s 6B -I 58 7s Ou {z Ou HQ FN FN J _U J cS DS HN GN %T HN 'O ^Q dS |C Yz Yz dy |C 6N fK /Q sO nP >S tH vG ~O TL uH ~O 9N X, 0@ j- u@ o@ >& >& !. d# *. -. (* A@ .= C$ J R H L@ Z ` P@ P@ 1# H A z N@ b- ", +"# 0' L$ R@ p9 L$ [* # * # $ + # L$ 0' $ $ = . ]& . Z, T@ + M$ Q$ T@ $ # + Q$ . S$ = L$ - > Z, ] & & ~ > N$ & ; ]& Q$ > ; & Z! | . Z, & | . | H= ; H= 05 X@ | ! | H= ~ ~ 4 ) ) 1 W@ V~ ] X@ Z! Z! ( 8- & 1 } / [ [ ( } 6 /& $# ,# ## 6 6 } &# 7 Y@ 7 c M' : ~# a 0 0- o W$ D, i c 6 L= W$ a 0 c {# 0 h c 2, {# n s> n p n c r ~# 4* m L= Z$ Y$ c L= Y$ 2, B ^# y2 2; r ^# z w w Z$ z b' z O@ z M c- G I 1& T^ G c- c- H$ P@ m) O |# E$ O Q O O@ O T T L i5 U hU iU ^P 3d G$ pF 3d #N G$ @N _M qH @N @N mL mL jU mL $N 7s 7s kU mL 6B BS HK :M mL AS BS J cQ PL q #s au vN iM QU DC *B `Q LO BQ au LO RU *B au au au *B 7K SU Xk TU TU Nf z WM eE /n jA UU kk ;o VU ,l WU Hj Jh +H EQ XU YU Zx ZU `U +^ n, X* -O ~* {* (. H! ). ,& z@ 5# +. @. .= .= i~ G$ V P 1# L@ J P@ A I H$ I Q@ z ", +"- = ]& J$ J$ ]& [* R@ L$ I/ ]& $ + J$ . 0' + $ $= Q$ k) . V@ # . $ $ S$ = # - 0' > T@ Q$ = Q$ Q$ Q$ ; > Q$ & - R$ N$ ; > X@ ~ N$ > ; . $ $ | ; & Q$ ; ] ~ ; X@ ~ ~ ^ 2 { ; ~ ~ | X@ ( ^ N$ | d | /& /& ^ 5 ( ] V~ [ , 6- -# } ) } d D, V~ ( 7 0 ># 1 a 0 n s> k g d c o } d o ~# ,# 0 e ># e h k n o p h s> Y$ 4* ]# l n n n^ w 5* {# Y$ h n h `$ #] z )> F= G w G G w m w a7 1& T^ G F= z N w N 1& V M M |# #= d{ O@ 3# |# 3; M c- P@ SO |# T r! T |# E$ L@ #N 3d 3d U^ 3d 3d #N G$ #N ^P 3d @N .V ^P mL 7s mL 6B 6B $N UO mL mL $N J J Ou ja FN J J {z dK J iT #J +V =S dK |C 'O 8R |C 6N fK 6N Yz @V fK ^Q pO #V 0R $V %V >R 2M sO KK KK 2M ~O VT mT _P J IR >V [P KN }P ,V !R 'V )V 1T QQ UP UP YO UP UP UP ~S !V ~V VP `T sU _K yO yO wU {S PN _K XP xU {V jS ^S }L OJ :K :K }L rC }L fR OJ }L ]V }L }L RG FI HM CB x ;w `w `w x `w `w x Cl yD CB ^V yD yD .x yD +F Fy Fy El !k .x /V Fy V5 V5 ~k V5 V5 .f .f UG 34 .f wo +f )2 {k Sc /1 J^ C_ Z{ J^ 7< 7< J^ 3{ C_ C_ 7< 3{ W5 `^ `^ }_ C_ `^ 3{ `^ ;] j/ i( ~) C' G{ C' @{ ~) @{ C' @; *+ C' ~) ~) `{ @; Q) C' g! Y# <' r] r] Y# /+ b= b= `' %, b= %, %, s% |+ _+ /+ A* s% 1+ |+ 1+ s% 1+ z* p% $$ t% $$ `# 4+ oN 8+ c+ F* 8+ $$ d+ CP CP F* F* CP CP CP _S pN 1L |L QS .Q HB 1L JM 1L lS lS 1L lS xT lS MH |K JM xT aO aO |K |K bO |K .B .B (V bO FU CL aO 3U UN _V |K UN uK ot oS 5H 5H ot ot ot 5H LM LM HO 5H LM LM LM LM uC nf ~w s0 6I ~w nf <~ '; nf _{ L| O> UR :V xe o .e .z -y 8V 6S eP /e 9V 0V 1] ^@ w; >* ~* D= q@ ,& ). ). !. &. &. e- R .= #. 5# H J |# P Y L@ S S A P@ I Q@ ", +"V@ + + M$ R@ # ]& ]& + # = & ]& L$ = ]& . ]& ]& + $ = ^& $ [* $ = - * 1) & + . Q$ . * > & + & T- Q$ =' 2) U$ ' O$ $ & ; |* # > & * ~ > ; > . [ | ' & 2 X@ 7- 2] ) | | | ## N$ 2 ) U$ | & /& ; | <& X@ } Y> 1 : < { 9 b } /& ( 0 5 X@ < Y@ 1 6- $# ,# i 6 0 < 6 } k $# ~# 0 {# i i k 7 n ~# m Y$ h r ,# n p n m p c{ Y$ ,> ;= 4* u t V| m n r -) s> p D {& 2; G {& D D T^ /# q I z ^# G z P@ x N z 3# M P@ V 1& J M 0S 3# h] P@ E$ r! aV A: P@ E$ G$ H L@ G$ ^P #N G$ U^ U^ G$ G$ 3d #N `I ^P `I bV lP 7s 7s mL 7s mL $N cV mL 7s 7s {z FN J -I aS J FN J IK &N IK #J MP %T dV IN A0 mP fK 6N nP fK fK 0R 0R fK nP 0R nP eV $V tH uH 2M fV vM /P /P >R gV hV iV uM ,S WO qP ER jV kV lV RP RP mV Vq aN RP GR RP GR Wq Wq uP HS uP Ix HR Vw Ix Vw KH [P nV #G

q@ O- :. v@ ,& {. e- )& z@ X 5# $% H@ 1# P H Y J n> K@ 2& A H G A ", +"+ M$ + p9 ]& 0' ;b L$ 0' ]& = $= = = + > $ $ . 1* 0' ]& o! * * . & ; + 5- V@ $ $ & Q$ ' |* - $ H= ~ ; S$ - . $ ; & %= N$ ] ] =' T@ Q$ ; ~ - - 2 %# 2) ' & | { ^ ] { X@ | | { ] ) N$ 2 { ] | Z! 1 *# [ ( Y> W@ 2 7- $# ## 5 } 7- B; } 5 { ,# ## d V~ ~# 5 ,# 2* 6- i 7 o ># L= ~# 7 a ,# [& n ~# 0 c 6! z: 0 Q{ o ,> 4* Y$ % L= c ^# :# /# p ;) % `$ a t :# 2; ^# w B w /# z 1; G N {& p }# B m 1& O@ x w A 8* N G M M n! A HV 3# 3# M E$ J M o^ L 3# d{ T K@ r! 3d L@ G$ 3d #N 3d ^P #N #N #N #N _M 3d _M tw @N 7s 58 6B 6B mL -I mL 7s 7s FN J :M AS aS {z ja _U kI eQ cQ GN HN iT dS dS Zz -R IV 6N 0R fK 6N pO fK jT 0R nP JV 9R QP KK TL KV pO LV R 2M hV >R kV &V _P MV ~L MQ RP NV XL XL MQ GR HS GR Wq OV pT =V Vw =V IS aN =V hJ HR YL PV pT YL QV RV KN SV ZT JR YO UP qT QQ !R QQ JR ~R ~S VP yO yO ~S +P +P ON zO +P VK TV OR yU jS qK iN :K OJ :K :K fR }L #P }L ]N OJ }L fR )J }L ]N qo kN CB q `w x W ,W -& h# = = /* &. {. &. E@ H@ @. 5# 9* T P V H@ T P@ S M #= H$ P@ A F= ", +"$ !, $ ]& ]& M$ ]& L$ 0' .( l) L$ $ [* + 0' - > ]& * . # . - Q$ $ + |* ! = > . Q$ = & Z, . $ # = & | & N$ ; U@ & %= (& N$ # Q$ | Q$ + ] ~ ; | 'W ~ ] Q$ ) N$ & Q$ N$ & ) %= > ] ~ ~ J= 4 S$ /& 4 | | 9 /& < [ d 2 } Y@ [ ~ $# ( } N' V~ Y@ %= d ,# ~# V~ e a 0 3* J] Y> L= c ~# 6 L= k c 6 h a 0 6! n c 0 ,# L= 7 Y$ h V| ]c ~# r `$ h /# 1; n p -) h ^# :# `$ n Y$ 4* {& :# G m ^# O@ ^# D {& % w f^ F= M I M P@ G I T^ 0S c- M O@ M U Q@ )W O Q E$ d{ E$ qF ` L |# qF Y d- G$ d- pF #N G$ ^P 3d #N lL G$ lP `I E^ @N mL EN 7s AS 6B mL O= $N BS rH ja hT HQ Ou FN FN BS !W cS sM dS sM dS =S 6N |C dS ~W |C |C nP jT fK #V pO lU JV {W IQ eS >S ]W ^W /W (W KK ~O _W mT 2M uM :W rP M |G RI 0L au *B yt Hj eE /n xv xv gW |N cU hW kh DQ +e 4f xf %l .e &n Ih nd Do _N ;a iW jW @@ 6$ o, kW x$ b& d# w$ :. !. A@ !. 0# +. 9* T X F@ R X C$ P P P@ J P@ H$ I H$ A ", +"= $ # L$ <{ V! ]& k) $ 0' T@ 0' M$ + = L$ !, V@ ]& 0' # $ ]& . ; > R@ ; > S$ > N$ o! = V@ ]& > . ; = N$ ] U@ . T@ ] * ] ; & [* ] ~ U$ > ; | Q$ ; | H= ] S$ X@ | 2 | N$ | U$ N$ R$ ) / & *# N' ) ] < 05 N$ 2 ( ## | [ /& 6 ) V~ } ## 9 d } a } { Y> b J] $# 7 0 n b 7 d 0 e ~# ~# n a c e n ,# 3* 0 h e 0 0 L= ~# L= Y$ p s> )# K= Y$ p `$ Z$ `$ Y$ |& u t 4* _# K/ -) 2, w 2; E `$ #] {& }# z m n^ G z D #] I G M I o^ o^ c- 3# T^ 3# 0S c- c- |# Oz 3# d{ J |# #N H c- G$ 'Q L@ C, G$ 3d tw pF U )Q _M #N pF #N 4# _M `I tw $N mL 6B mL 6B 6B TO mL $N 6B {z HQ mL J {z J _U cV DS DS CR CR _U Wz ~W fK dS mP |C Zz 0R nP fK nP pO lW pO 6N KV oP mW DR DR nW oW WT pP >R J *T (Q _Q qW nV 1T UP lQ _Q UP ~S 1T QQ lQ UP 2E yO yO 2U }U rW +U sW tW +U FM 5P PN jS xU yU yP }L :K yP @P OJ OJ }L yP }L OJ }L {N 7O .F 6O (S Y# b= b= %, Y# %, %, b= b= %, H& Z# A* %, |+ |+ |+ p% p% _+ .$ D* |+ 1+ D* #$ |+ J& CP F* F* CP *P _S CP _S CP CP CP e+ >T uW qJ SR JM XV pN JM HB JM 1L JM JM BU 1L JM 1L lS DU nS xT 7W :S aO |K qt .B aO aO aO aO bO 3U $q sQ ^R 3U bO bO uK 5H _i /R /R ot HO 5U HO 5H ot LM ot LM LM LM 5H s0 nf ~w nf @Q ot uC _{ f) _$ P9 k= vW Be Is wW WS yQ xW )r }V Os Xn Jo Yn ZJ YG yW YG 5V zW 4V AW 4V 5V -M BV 4V BW &x YG 4V #n 6f dW 4V 4V YG 4V 4V }R }R }R }R CW 4V 4V 4V 4V 4V #n YG BV jz W W Fo >M DC =B |J Ms dU /n jA /n jA WM JT 9T ju $W DW !P p :x ji #j $K EW FW GW XI `a %a HW g) IW 1@ e@ =& t@ :. (. ^. d# -. >. G! A@ 5# O= E@ H M J O 1# S M O H +% Q@ 8* 1& ", +"+ ]& + + <{ J$ + p9 + + R@ $ # S$ $ ]& > + . @ > . $ $= = . & . # $ > * $ * ] $ L$ ; ; ] N$ ~ > # $= & & N$ ; N$ . ; ; [* * ; N$ . $= P$ N$ U@ N$ X@ ; ; N$ 4 ] ~ ~ H= N$ { / [ 4 : { 7- *# 7- a V~ { ;# } 9 d Y@ Y@ } 6 /& } 2 *# X@ { 6 8 Y@ ,# $# g K/ ,# D, x0 e D, 9 e -# ~# c 6- {# L= k r o r L= ~# Y$ Y$ n 2, A~ c h L= 2, 4* ^# w _# |& ^# t C t h q q % w @= /# b' w 5* ~& {& x z JW B KW 8* #= O@ 8* 8* 8* A P@ 0S c- 8* 8* 8* 3# |# A 8* 3# LW *I E$ c- MW Vf G$ L@ 3d 3d 'Q d- r! G$ DN K) 3d NW #N $N 6B qH mL 6B 7s $N *R 58 mL hT 6B $N :M FN hT J J _U cQ J QL . 7# ,= 7# 5# 9* M@ L@ Z H H L@ P J@ I O@ H$ A N ", +"+ L$ ]& * ;b L$ M$ R@ L$ ]& + + + X! + . ;b $ > = J$ V@ * - ^& - ]& L$ . $ $ > # $ . ; ] S$ . . - . S$ $ *' ; | ' = ] N$ + ; ; Q$ *X . { | . ] o! $ ; & ] / H= 7- ] 2 *# ^ | | { | ~ X@ ~ 7- J) | { 2 X@ ~ ) 6 / d ,# ~ } ,# 9 { a } Y@ d $# 8 a a ~# D, ,# : 6 c ~# ,# +# c L= 8x ~# n ,# g h L= p n Q{ n ~# Y$ `$ tA K/ r u V| Y$ q Z$ 4* `$ ~# `$ q t 2, p t :# F t :# D /# N m p G A % G K #] z G G 8* n! O@ M M M n! =X 3# QT O@ 3& Q@ SO >z J |# P@ E$ E$ r! I@ G$ 3d tw U^ `I L@ pF `I G$ !Q #N qH _M E^ -X 7s $N $N $N tw $N mL 6B $N $N J $N $N {z J _U J cV MP lI mP &S iT ~Q CR Zz 'O IN fK |C fK fK 5N Zz ;X lU >X lW ^Q mU mU >S ,X DR /W rP ~O mU VT 'X )X ,S :W MV ER RP ,R zM XL Wq MQ XO GR zM Wq AM uP HS !X Vw nK uO RP Wq HR >J YL

J OQ OQ *T =T vL SP #G uL ~S QQ 1T 1T pV 1T ~S [U ~S qT UP +P `T MS {S +P NR +P @U +P +U ~X 5O iN xU XP ^S yP OJ {X }L OJ 'G }L :K fR :K OJ ]N OJ .F FI SG CB )J 7O FI x 0 n i9 xD Fy El `e .x El gd !k V5 .f .f !k .f ~k tg ~k V5 Mn Tc J^ /1 ^1 34 9) Z{ J^ 7< ^1 F{ Z{ Z{ 3{ 7< J^ 7< 7< `^ [] K^ ;] 3{ ]~ 3{ 3{ S] s~ O~ H{ ,^ z) C' C' C' @; @; @; @; C' @; 0= `{ Q) B' C' 4> ]X W# g! <' /+ b= Y# b= %, %, %, b= ) Z# c= ) |+ p% |+ `# p% |+ |+ .$ D* p% D* 3T .$ +$ CP CP CP d+ _S CP CP _S F* CP CP CP _S >T RJ CP }K ^X qJ IO JM HB CU 1L HB lS JM lS lS lS lS |K DU 7W 7W 7W |K bO aO aO bO bO 3U bO bO 4L /X aO ^R UN ,T _V &U vK /R /R 5H 4L LM /R vK tV tV HO HO LM 5H HO 5U s0 wg JI Es 5U oS $g L| ,; W3 Cs (X Yb _X 9U :X =. A@ z@ A@ &. B$ V Y P@ J H O H$ J H S F= M M@ ", +"]& ]& R@ = ]& ;b R@ L$ ;b + + # + L$ > + $ = # = $ + }* !, ]& $ Q$ ]& 0' V@ ; $ % # $ S$ > = $ & & $= | ; = . - U@ ; ; U@ Q$ . S$ $ ; ~ ; . > S$ Q$ H= W@ 2 | | H= | U@ N$ 4 ; 2 ^ N$ ~ Y@ { # 2 ] } 2 } 2 %= / 7- W@ d Y> $# } < ~ Y@ [{ d b B; < e !# 5 $# a ,# a 0 d ~# L= 0 ~# 0 L= *= 3] 0 E, q 0- n e tA c c ~# c 0 n u s p Y$ F Y$ p `$ ~# Z$ 8 Y$ c q 4* % m t w B I c- m #] w O@ n! w n! z w I n! O@ c- T^ M I O@ O@ V Oz U d{ >z A: c- A: E$ A: >O qF pF U^ G$ 3d ^P `I `I #N ^P 3d )Q )Q tw _M @N _M )Q E^ $N $N mL AS @N 9X 6B 0X 6B AS Ou J :M kI _U _U J J MP QL cQ ~Q iT HN dS 8R @V cy nP |C fK nP aX |C fK pO nP pO nP DR bX !O nW cX IQ /P 2M ~O PW gV ,S ,S hQ ,S ~L dX ER hV eX )S tP XL RP Ix HS AM GR oT HS :P Vw AM HR Ix Ix *T

Y# Y# q] ) /+ /+ b= k' Y# %, Y# b= ) 2+ p% <+ `# `# `# |+ `# `# `# `# RR `# RR D* RR `# .$ jX CP CP CP 4W *P CP CP QS _S CP _S QS _S QS .Q 1L XV kR BU kX 1L 1L 1L xT xT lS 1L lS JM :S bM lS CU xT aO |K |K bO |K aO aO |K 3U 3U FU 3U UN UN bO 3U lX LM 5H 5H 5H 5H LM LM LM 5H 5H 5H HO LM HO HO tV HO nf LM _{ s0 5H 6I _{ 94 G+ Yr mX _f nX XR oX xW eO $Q pX XR fW 2X +W BV YW fW jz -M -M dH BV @W fW jz 2X -M @W YG -M zW YG 5V zW 5V fW W 4V 4V cW 4V 5V 5V 4V }R 5V CW }R 4V 4V BV |X fW -M `W qX |X BV yW rX Ny sX /n jA xv eE pu )B jA Ro gW *t 2k 5g tX uX sz #d ke 7g vX -F Hd wX xX yX =@ 3@ 0@ :; l@ -& 4_ ~. ). -. ). e- z$ $% zX E@ .. 4# H@ O= >) D$ ` H P@ M@ P@ K@ Q@ ", +"]& + <{ # + ]& + ]& . # + V@ + M$ + > ]& # k) Q$ ]& - > ;b - > T@ 0' L$ ]& . - > . Q$ > # o! U@ P$ . & . * H= > & S$ $ S$ Q$ & N$ . & & ; 5- N$ ^& ^ Q$ ) { ) Q$ { ~ Z! ~ , X@ N$ W@ T- ; Y@ ; 2 < ] } Z! H= [ X@ } ;# { } W@ ,# a a /& X@ 7 ,# -# V$ 0 7 8 e a Y@ 1 a ~# ~# e e {# ,# i M' b k ~# b ~# ~# g C; 0 L= }{ c {# 0 ~# 1; `$ h h ;) y K/ w Y$ m `$ p `$ ^# u t t z #] z G #] I w w w 2; M O@ m N@ 8* JW n! A M N 8* 3# c- 3# O@ E$ 3# d{ d{ 3# L i5 aV Q A: AX *I BX G$ #N 3d #N MW #N #N ^P `I #N pF _M qH EN qH EN 6B 6B 6B jU 6B AS $N mL CX -I Ou {z HQ AS hT {z DX cS Wz ST EX dS dS EX [M |C mP ~W |C 6N nW nP fK @V DR 0R 0R pO oW mU mU DR >X FX WO ~O sO fV 'X qP hQ _P MV :W dX -V :W &V ~L dX {L GX Wq HS HS MQ GR oT =V HS HR HX IS pT IX IS =V IS pT

+ $ ]& ]& ]& > ]& R@ ]& Z, T@ $ # # V@ > * ^& # ]& = & o! $ . = . > > %= (& . = # ] Q$ & . $ ^ $ (& ~ ~ | ~ . & ) & { | N$ H= 1 *X X@ ~ / U$ ) Y@ [ 5 1 2 } } 2 V~ { 1 ,# d { / Y@ 7 ,# 6 4 $# 1 *# } ( 5 7 ## V~ a [ J] e L= a e 7 d i a' $# e L= 7 ~# t' ~# `$ X$ M' Y$ ~# p q g p r c q % t n `$ `$ p s> % /# G `$ 2; w /# 2; {& ~& /# /U z /# G t I /# 1& z G O@ G n! K a7 Q@ 3# |# |# 1& 0S J Q =X G A: Q SO 0S WX XX YX yS L@ r! #N tw E$ G$ )Q 3d pF 3d 0* ^P @N EN `I qH AS 6B mL $N kU hT mL :M HQ AS Ou BS CX UO ZX :M FN _U CR sM %T dS iT `X ~Q |C [M -R |C fK nP 0R 6N 6N 6N pO >X ^W cX LV LV IQ lU fV sO uM /P /W T VQ qJ JM SR 4T JM lS lS JM JM lS JM lS lS JM 7W .B aO lS xT aO aO 3U bO .B bO aO 3U -Y bO _V /X 3U ^R ^R ;Y ,T &U 5H &U 4L &U 5H vK 5H LM >Y 5H 5H HO LM HO LM ot 5H JI wg _{ dM uC _i ^7 ]7 ,Y 'Y 7f )Y ~P !Y 7T 7T ZQ ~Y cv +W {Y 2X +W ]Y jz fW jz fW +W ^Y fW fW W 2X {Y hM fW ZW -M ZW BV 2X -M zW 5V +y /Y +W -M zW AW YG #n dW 4V }R NU zW cW zW (Y 5V 2X fW FL fW -M W aI _Y GT JT jA $W Mh +K )B WM QD hO KC !P 5g $j :Y ^F 3g cr ]& = Q$ > . V@ + = > A; S$ = H= $ = & ! ~ $ . = . & > $ Q$ U@ ] ' N$ & ' | * ] & # U$ ) ' ~ Z! 'W W@ ; ; S$ N$ N$ 4 %= Y@ 2 D, W@ { 6- | 2 } Z@ Z! Z! ## & ) 2 { /& N$ 2 0 7 6 ## 5 $# ( e } } d j 6 [ 6- ,# e n n k ~# q> ,# c a d b c o !# 7 0 q `$ h L= ~# ~# r _# L= Y$ `$ r _# Z$ s> 1; u p 4* % 4* G `$ t p /# {& 1; {& F= G >= ^# G A m N 8* I a7 8* q! m) O@ M P@ 3# }Y /# c- T^ P@ O@ i5 d{ E$ M O@ d{ *I MW MW 3d L@ G$ .V #N U `I RT L@ G$ #N ^P qH -X -X `I 6B EN 7s mL $N TO mL $N AS J Ou ja aS AS CX aS AS HK |Y BR 1Y eQ dS CR 2Y HN =S |C dS kT fK fK DR nP nP pO nW FX lT pO nP sO fQ DR ^W DR 3Y 'X >R 'X gV mT _P hQ _P _P zM GS -V )K 4Y ^O GR XL GR Wq oT RP AM HS GR HS AM IS pT HR HR pT PV 5Y IS

J |T XT 6Y Y# Q~ /+ Y# /+ Y# /+ Y# (+ Y# Y# /+ G& p% _+ b= `# `# `# |+ aY p% `# oN p% aY bY D* |+ z* D* CP F* _S _S QS F* _S _S QS QS _S _S 6W NX CP cY GO dY TR JM 1L lS JM xT lS BU xT xT lS |K aO xT 7W bO aO |K aO bO aO ,T 3U ,T 3U ,T 4U bO 3U UN yT 3U ;Y On r0 'T /R 5H LM 5H LM HO >Y LM HO LM LM tV HO tV JI ~w wg Es 6H uC BL n2 8= eY VW fY gY hY ~e H= 2 ^ | 'W X@ 2 ~ 2 N$ ~ } [ V~ 4 X@ | *# { X@ 8- [ ( *# d ) a $# 6 < 6 $# 5 k q> { I= a $# ~# 2d $# ,# ,# e K/ Y> ~# e L= e ~# 6 c c L= 2, ~# ~# r Y$ {# _# n _# q n 2, u s> p /# B p u ^# n^ `$ :# B D :# t % z /# z G % x a7 z I D G I F= $T HV c- W) 8* 1& M |# JW |# c- >z M 3# S L Q@ U P@ i5 oY L #N G$ r! G$ DN #N U^ pF RT 3d ^P ^P #N ^P ^P @N 58 lL EN 7s $N TO 6B mL hT mL FN {z :M HQ FN AS CX FN cQ pY ST dK sM &S qY =S =R dS EJ oO BR nW nP 0R rY pO 0R 0R >X |M lW sY tY OW uY cX ^W vY wY (W cX 'X mT _P hQ xY MV yY zY GR dX nU {L AM {L .Y XL HS Wq OV HS MQ HX oT HR pT HR IS [W [W #G IS PQ >V [W nV [P F; -. 0# !. C$ @. G@ X T J P@ L@ Y 1# P@ z c- Q@ H x ", +"L$ . V@ $ L$ J$ R@ = = `Y $ ]& J$ $ ]& ]& # V@ $ X! . # L$ . . . X! > Z, X! o! > k) . $ > U@ & > & $ U@ . ; ; & ' $ & > ; > U@ N$ ; ^ S$ . ~ ) X@ ; ; I= & ~ H= ; & N$ ;# & ; N$ *# ] | 1 2 1 ) 4 ; ; 2 H= X@ 5 [ ## /& { 8 ( { /& b ( 7 ( d X@ 6 b V$ e a d 0 d d e 7 7 6 k ,# ~# ># r ~# L= ,# n L= {# n ]# Y$ h `$ r r h C; Z$ u 1; u :# ^# y m m ^# D 2; w w % #= z #] /# t :# F D z I w A #= Z c- w w M 7R I 8* x O@ M 8* M d{ QT 3& O SO SO E$ qF Q .Z D$ A: L@ ^P #N H 3d #N #N ^P +Z #N )Q BX EN C$ DN `I mL mL 6B 6B 6B $N rH {z ja cV mL BS BS AS FN kI |Y cQ J XT -Z [W =Z =T SW ;Z JX AY -Z qT pV >Z @; `) A! S# (+ b= {+ X# W# Y# b= Y# Y# (+ /+ ^+ c= _+ `# c= -- _+ p% s% `# o% #$ `# D* `# #$ D* D* p% 3T _S F* 5W _S 6W GY QS F* QS _S CP _S QS .Q _S pN JM lS kR BU 1L lS JM 7W xT !Z xT xT xT xT xT DU ~Z IY IY :S 3U bO |K aO aO 3U 3U UN 3U 3U JY ,T yT ,T ,T On {Z LM KY zT LM LM &U tV HO LM 5H tV LM LM &U 5H s0 wg wg ot Es On tQ Xr ]Z xa ^Z dc (w Vn CT @L aI 7L NI NI 7L Do 7L YR QY 1X 1X gY gY ^Y fW fW fW 1X yW +W 1X YR fW fW fW 2X fW fW -M -M -M |X fW YW BV 5V AW YW zW BV 5V YG #n 5V cW RH -M -M hM +W fW YR /Y /Z (Z _Z %W LT LT pu Ro 6V )B cU :Z ar ;o fE (j >f +H * u@ O- = {. '. '. -. 5# &. $> L@ }; C$ J@ L@ J L@ Z S L@ E$ M E$ H$ A ", +"L$ Z, V@ + L$ L$ R@ L$ L$ # # ]& ]& T@ + # > ; . L$ . V@ ]& = T@ T@ & U@ V@ + X! U@ . Q$ ]& $ $= $ ; ] Q$ ; [* - Q$ . . Q$ V@ ] ; o! ] P$ {c ^& . $ ~ N$ X@ & ] { X@ N$ ; S$ & [ 2 N$ | ) H= N$ U@ ) ~ [ 6- ( ; H= ~ { } 7- 2 W@ } } 2 ; 4 ( $# 9 b 7 Y> ( $# ( $# } 6- 5 Y> ,# d e ~# Y> ~# n k c ,# 0 ~# 8 k r Y$ K/ L= n |& c{ ,> h `$ 2, ~# t 4* 2, ,> q 1; p F= n^ $] q p G |Z 1Z ^# {& G E /# xE I G w I t O@ I F= n! z n! 2Z O@ I M 1& ~& |# 0S d{ n! S O@ Q d{ *I *I A: J BX 2# BX L r! qF H #N G$ 3d G$ 'Q ^P +Z ^P @N qH DN E^ AS mL 7s mL $N -I 6B $N mL hT AS FN BS CX AS _U 3Z cQ aS 4Z FN T QS 6W BU xT XV gZ JM lS lS lS 7W xT xT xT xT 7W IY bO nS xT 7W (V 3U bO |K ;Y bO bO 3U aO 3U 3U _V JY lX hZ 3U ^R lX 5H LM 4U LM HO r0 LM 5H LM HO tV 5H 5H HO 5H dM LM 6I nf nf $g sa L iZ jZ kZ lZ mZ [V PY nZ 6u @L NI NI /Y #Q NI gY 7L Do Kl 9L 7L Kl Kl YR fW yW 6A YR ^Y +W 1X {Y yW jz jz BV -M +W YW YW |X -M 2X -M -M -M @W dW BV -M #n cW cW CW BV 5V -M fW hM WS MC Bg Wg (j oZ %W KT /n /n LT |x 2J hO ar (Z :q ]j uX pZ qZ vX IU XI we za rZ d^ {; w; f@ m@ o@ d* {. 7; A@ [, A@ &. (* ^U F@ V E@ G@ 2# M@ M@ Y H P@ I I F= N@ ", +"]& L$ & . = k3 # ]& = E! + 0' = ]& # = . . > 0' # = $ 0' . > ; # # . L$ > . > $ . & . $= & > ] $ $ Q$ ] - k) & %= U@ + ^ ; & N$ ; ; N$ > ^ ~ H= . U@ & ; ## Q$ N$ H= N$ X@ N$ ; ; ~ ] { / 6- ~ ; X@ | { X@ 2 2 2 a ) ) / 6 ~ ) 6 5 <& /& /& ## ,# V$ a e 0 a ~# ,# ~# ~# Y> j o {# ~# e ~# h V$ a L= o n c g r o _# A~ _# p {# q -= h c vA 2, L= w ^# p :# B 4* 4* G /# w b' ^# w 4* G :# n! A a7 8* I ~& I M M 8* z A A c- H$ M O@ 3# E$ Q E$ }Y A: *I L A: J qF U^ G$ r! >O qF U^ #N 3d )Q G$ G$ )Q )Q RT 3d sZ EN qH EN EN 6B mL 6B mL *R mL $N hT CX 7s AS $N $N _U ST pY cQ ST cQ tZ HN |Y BR [M uZ vZ {Q |C fK 6N nP 6N nP DR nW ^W lT _W uY oW wZ nW _W vY pP &Z ^W xZ yZ hQ :W qP MV :U zZ 9Z *V 0N zM AM HS NV =V oT AM HX NV RP }T pT uP PV HR IS IS HX #G OQ PV AZ nV =Z XT gX qW nV $ $ R@ ]& + L$ 5_ $= V@ . S$ S$ ]& + L$ 0' . # U@ k) U@ U$ ]& L$ . . H= . |* Q$ S$ !, U@ ' & ; > . - ; H= Q$ T- . 2 2 H= . `@ %= > N$ [ ~ N$ - S$ ' . 2 ; N$ . %= & ) | H= & ~ /& | D, *# { ~ Z! X@ d { 6 [ : } d } ~ { 7 d 1 /& $# ( { } 5 Y@ d ~# 5 ,# a c a L= ,# a d 7 e 0 0 c c ~# h n a u 0 tA 2, 2, Q{ `$ ]# p ^# m Y$ ]# u `$ p -) 1; w {& p B /# p C ~& /# /# w w N O@ I T^ N z z A z ` Q A: L L L BX 3d pF oY 3d WX )Q #N #N )Q #N `I ^P 3d ^P mL E^ tw #N 7s $N mL mL $N rH AS $N AS AS AS .` AS hT hT FN +` FN aS mP _U ~Q ` OJ }L fR OJ fR :K OJ OJ :K RG fR 7O ;w x CB `w FI q +. E@ @. L@ L@ P S I I z %> Q@ B S ", +"# $ + # # L$ k) V@ > = L$ + M$ = $ & = * . > L$ . ]& ]& H= & # T@ - Q$ > $ - !, Q$ A; > 2) Q$ | H= & S$ ; Q$ - P$ N$ ' ~ ] & ; T@ H= ; ; > & =' ~ ; > ] | Q$ { X@ ] - N$ ] Z! ; 1 ; 2 T- 7- +# { V~ / %= ( &# 1 *# { $# 6 4 { [ ## [ [ 7 } } { &# V$ *# ( 7 6! ,# 6- a a V- 0 ,# 0- 7 {# c ~# {# K/ r ,> n n Y$ [{ c 5` ]# c r /# p ~# t p Y$ c `$ p r % Y$ p -) `$ w w t G p w /# F= m I ~& I D A %> I N b' T^ H$ A =K O@ A 8* V c- |# c- O c- 3& >z c- L L L 3; L T G$ 6` Q |# BX )Q 3d tw 3d ^P #N )Q )Q @N qH tw `I EN hT sZ $N mL 6B -I $N hT AS AS cV hT 7` cV -I CX cQ .` 8` tZ iT HN 2Y #Z 5Z @V @V =S nW nP pO jT nW pO 0R sO LV ^W oW ,X oW DR _W cX 9` ES FX 0` a` 8Z PW gV yZ eX &V :U :W b` FS c` OV d` e` HS =V }T oT AM HS HX PV IS HR pT HR [W PV |T nV nV XT pT f` gX aZ lQ (+ /+ /+ ~+ /+ =- (+ E* p% fZ #$ <+ C* `# p% i` `# :+ i` 3T z* :+ D* 3T i` jX CP CP F* 6W QS QS QS 6W _S _S _S QS j` j` dY NX BU CU k` CU qJ CU xT xT xT lS lS 7W 7W l` 3U m` 7W l` -Y |K aO ,T aO ,T bO hZ ,T ,T yT n` bO 3U yT 3U ,T MZ 5H 5H ^` o` HO LM 5H LM tV LM LM tV LM >Y LM tV HO nf L| L| W3 p` q` r` WU s` t` ,o [` u` |` aP aP 6u QH /Y aI aI @L NI NI (w (w PY 7L lM #Q NI NI 7L 7L NI #Q gY SY lM Kl 1X YR cv fW YR Kl 1X yW 2X -M zW 2X ZW YG -M YG -M BV ZW YW vt ZW fW -M +W OM v` ]j WY w` }j +R x` w` y` xv pu 2j *t lY !U dk gi 5q !l ZQ &x WS Kt Fa z` A` B` a@ t$ b. q@ (. (. 5& ). ;. ;. z@ z$ V 4# $> J P L@ T S S 3# K@ S G E; Q@ ", +"k) E! ]& + . ]& Gc = + . L$ # L$ = + # # + $ # + + + U@ $ = * T@ # ]& + & S$ - # + S$ $ $ > Z3 ] . > > U@ # ] U$ H= + R$ . & & H= =' > H= ; %= { ~ H= U@ & > ] ; =' U@ 4 X@ 2 | ^ ( { ; J) U$ U$ { ~ 2 ( ## 2 N$ } d d Y> V~ ) [ a 6 3] } ( *# N' <& 6 ,# -# k k e k ,# Y@ c } a' ~# z: ~# h s> n 0 c i o ,> ~# % ]# |& L= % K/ Y$ } Y$ :# o g _# `$ _# w 4* Y$ Z$ C` t p ^# :# C }# n! I W) m 8* G /# N 1& E; I $S n! C b' 3# JW 8* E$ E$ 1& M M E$ M HV L d{ M E$ A i5 L L@ 3d hU r! T BX RT `I G$ #N )Q 3d )Q 3d ^P )Q 7s `I _M $N EN mL $N mL 6B hT AS .` AS {z BS D` hT hT E` cQ +` _U mP |Y =S =S =S 5Z HN fK F` G` pO pO DR 0R pO pO pO pO oW nW DR H` cX oW ^W _W &Z gV 3Y &` 8Z gV 'X 0 +F EB .x El j9 El El El f f .f V5 gd f V5 .f V5 ~k ~k V5 V4 +{ +f <} C_ Z{ J^ Z{ Z{ Z{ J^ F{ J^ J^ Z{ J^ 3{ 3{ `^ ^~ ;] 3{ Y{ 3{ ]~ `^ H{ x^ }_ S] *+ @; C' @; @; *+ @; *+ *+ z) 3> *+ @; @; P~ *+ Q~ /+ /+ ~+ I> ~+ (+ Y# ~+ (+ X# (+ ~+ #$ :+ p% ~+ #$ `# p% p% :+ :+ :+ 3T jX `# z* oN FZ E* wT CP _S _S 6W QS j` j` QS QS j` j` S` k` QS VQ HZ lS qJ GZ BU xT xT 7W CU JZ 7W IY !Z 7W l` bO 7W IY IY ~` bO bO 3U bO 3U ,T ;Y 3U UN 3U 3U UN lX ;Y hZ ^R 5H 5H LZ o` tV LM ot LM LM LM ot LM LM LM 5H WN 5H nf L| f) ^- T` Cf U` V` W` * m@ b& C= >& gT -. A@ x@ (* z@ .= }; J P D$ S P O P@ E$ Q@ H Q@ x A ", +"]& 2^ ]& $ # + ]& $ = #^ k) # % + o! # - S$ . $ . * # V@ & = $ $ . $ > . > S$ > V@ $ # + 5_ & o! | $ & . & ] . S$ X! ! P$ * & H= $ ' ^ > Z! H= S$ ' { ; $ H= T- X@ Q$ | N$ ] ~ ~ 2 X@ { 2 1 ~ V~ | 2 2 X@ 4 { 7- 1 2 a ~ | 2 V~ *= Y> } &# } %m | d ,# ,# a ~# a k 0 0 h 0 0 c L= e r 6! a c n {# ~# V$ a c n k 0 p ~# ^# L= K/ u r p Y$ ^# b' ^# 2; Y$ 4* :# ^# w c{ 2; [# z F= z G p /U I n! w M I F= JW .JX aZ pV UP , .!V ~S ' .pV pV qT ) .! .cZ , .cZ cZ ) .cZ [U cZ MS XP {S {S 2U @U yU XP yU 5P XP }L yP :K #P fR fR OJ }L :K 6P }L rC ~ .fR 7P CO ;w `w HM #M x HM T ] .!Z xT IY 7W xT ^ .lS 7W IZ 7W 7W DU sV IY l` ~` aO bO 3U bO bO 3U ,T ;Y yT ,T ,T n` lX / .;Y JY LM LY HO LZ LM HO HO LM HO tV tV LM LM HO HO HO 5H f) L| F% F+ ( .xa Rh [V _ .: .< .tJ }` |` u` |` aP RZ nZ MC [ .QH aI (w NI (w (w (w NI (w @L NI 7L (w @L (w NI (w NI (w 7L 7L Kl Kl YR } .YR 1X YR 2X fW 2X fW fW -M -M fW YW vt 2X dH -M jz jz } .aI /Z _j &n .X ~B )n * `* E7 (. x@ -. x@ F, z@ E@ @. C$ T #% L' T P@ S 8* H H$ H$ 2& Q@ L@ I ", +"]& L$ L$ $ # . + <{ L$ ]& # L$ 5_ ]& 5_ V@ V@ + + # $ $ . ; $ $ U@ Gc > |* > $ + > S$ & . . & = > . = Q$ & . 5- > | & & > . 8- H= S$ ; ] ; %= & H= N$ Z! ^ ; ; ) N$ & ] H= N$ 2 | R$ 7- ## ~ 2 | 4 2 | /& { ( $# == <& } { R$ 1 6 Y@ ## 6 ,# N' &# 6 ( } ## b 7 ~# L= a a ,# W$ a tA e h ~# c a k ~# c n K/ 0- L= Y$ ~# h {# `$ n p L= n 0 h h #| % ,! h F p m u p N /# G 1; B `$ ^# G ^# $T 2; I b' G I x z I I Q@ E; c- A q! 8* I I O@ 5 .M SO 0S I E$ E$ Q P@ SO SO BX U^ *I qF 'Q DN ^P tw `I #N 3d 3d RT RT lP 7s -X tw #N $N mL 58 AS jU $N mL CX $N 0X hT :M $N CX aS BS 1Y 6 .7 .#Z sM #Z @Z dS CR jT nP 8 .nP 9 .0 .|C pO |M DR DR mW oW _W ,X nW a .^W oW bX J [P XT qW PV SW nV HG f .g .6Y h .1T 7Y i .qT qT ~V [U cZ cZ $Y ~V ~V $Y j .DZ sT sT OR sT EY jS jS jS 5P ^S @P }L :K @P yP }L :K }L fR @M RG CB xL FI }L 1Q q CB CB ;w q . > . ; S$ $ ] Z, $ S$ Q$ T@ > > ; ; P$ ] Q$ > ] $ ] =' & ^ & %= %= U@ ; > Q$ 2 2 & S$ ~ ~ ~ ] H= N$ 6 ) ] ) : .# /& X@ | ~ *# ## 6 ) ## 4 Y@ ## [{ / &# W@ 6 d 7- 2 1 } d $# $# 6 7 6 a c o k k 0- 0 L= a ,# j 7 0- 0 6- ~# q q Y$ a 6! }& n ~# n t Z$ /# 2, p ^# p q 4* ^# p Y$ D {& D Z$ z w z w {& z w .^# A I A z I $T z A o^ I A O@ 8* 3# M 1& x .y .=X 3# 3& z .3& A .L r! J qF 3# L pF #N DN =I 3d =I 3d 3d #N ^P RT )Q #N EN lP -X sZ AS $N AS $N mL AS hT AS 6B .` -I 3Z E` HQ _U J IK 4Z %T ST dQ ~Q =S $ .B .fK aX ~W 6N ;X pO 6N 6N _W C .pO ^W DR oW PW ^W ^W cX nW 3Y D .mT %Z E .hV 'X 8Z d .MV zY GR F .zY pW GR HS RP }T RP oT Ix }T G .}T }T HS L` [W [W JX JX [W pT nV nV nV nV -Z OQ AZ f` AY pV pV UP #Y UP !V pV qT 8Y [U cZ cZ cZ }U {S H .{S ,Z sT AO 2U +U jS 5P xU XP 5P yP 5O iN yP }L fR :K OJ fR OJ #P RG LX rC )J #M ;w CB #M x `w `w $ V@ $ + 1* + > ] Q$ 0' ]& 1) = ]& [* $ = * > |* $ ' Q$ = . > ' & }* z] & ~ W@ Q$ $ %= U$ . T@ & & & ] & Q$ | | & ^& ] & | ~ ; & | %= ' ; | > 2 +# | P$ | ^ Y@ D, ~ [ < < { /& &# : 9 d J= [ } { d d } } 1 == 5 3] e } 7 } N' ,# a 0 tA k g a ~# K/ h e c ,> 0 n 0- m h V) ]# ,> ~# 0 p :# m 4* % 2, w Y$ % y 2; :# q ^# B ;) Z$ N z {& I G z T^ c- z G q! O@ z F= M Q@ z .c- 3# 8* 8* c- >z L 3# r! 5 .J A: 3# 3d U^ G$ d- .V ^P bV #N ^P )Q ^P Z .)Q ^P @N 7s bV bV 6B $N mL $N 7s AS AS AS mL .` cV HQ CX {z ST :M #Z ` .MP ST sM ~Q .....5Z uZ pO CR aX jT nP pO fK +..@..DR DR nP wZ _W oW ^W oW nW #..PW RE xZ yZ & .yZ & .8Z )X -V $..4z 4z 4z oT oT %..&..AM PV HX AM HX HX }T HX }T IX IX JX pT PV JX PV qW nV qW *..gX gX AY oV f` pV qT !V BZ #Y qT ..(+ (+ =- /+ (+ Y# X# /+ |+ i` { .(+ C* p% `# :+ :+ p% p% i` k .:+ D* L .:+ QS CP _S VV QS QS ,..6W QS _S S` QS *Y 6W j` HZ GZ RS '` '..CU lS xT xT IY IY xT 7W IY )..l` (V (V !..l` IY aO 3U ,T 3U 3U 3U 3U 3U ,T ,T ;Y 3U n ./ .,T 4U 5H LM HO o` HO tV tV MZ tV tV LM LM ot LM LM ot ot Xx P9 )..~..ti ;r .S Bd {..$n ]..XI JP -r S .^..-r -r u` ;r aK -F -F -F MC nZ #B nZ aP nZ nZ nZ @L V .U .NI @L (w #Q NI NI 7L #Q 7L PY YR #Q YR 9E YR 1X 1X 1X 1X 1X +W Do 7u jz jz +W jz } .} .nZ /..(..3g 3g _..~B :..t ..X ]j ji w` kh !U dk [j Vl <..2 .[..} ._J }..#c bk |..1..V% 0@ s$ (. <. C= ). ). '. ,. =. *. . i~ V W |; X M@ H A S H$ A M A I ", +"]& L$ ;b + + ]& [* 0' + > = 0' + ]& = + . $ + . $ 0' V@ & $ = $ . . ; > Q$ & > . U@ & U$ $ & - ; = o! > 0' H= > > . > | & & U$ Q$ + | N$ & H= ; $ N$ ] > . U@ %= Q$ N$ 2 N$ | ~ | X@ | | ) ; ) { { ^ { [ 2 I= X@ } { 5 d { V~ W@ $# Y> } ## 6 4 /& ( J] q> a 6 7 6 ,# j e 0 a e 0 e n a ~# g a 0 6 h L= o h y2 n h n r #] p Z$ Z$ n^ w p m ^# w 4* :# /# B F= m /# )> z /# {& @= b' 7* I w 1& O@ I A j4 z G G n! 8* c- 3# 3# 3# M y .a7 |# Q 3& Q MW oY U YX r! qF G$ qF qF #N ^P ^P ^P ^P #N RT #N +Z #N .V EN @N !Q _M -X $N EN hT 6B AS $N $N $N hT $N $N hT $N aS 2..@Z 3..4..X ,X nW cX PW oW _W nW _W 6..7..8..0` 8Z yZ 8Z yZ -` -` 4z zY d` 4z -V ; .oT 9..HS oT 0..=V G .L` =V =V oT HX IS ;Z IS [W PV nV AZ qW qW qW f` > .|T lQ f` UP [U ~V BY [U [U !V a..BZ [U ~V ) .cZ rW }U U rW @U sW XP PN @U jS @U jS yU yU yP b..OJ +M 6P :K 'G xL }L OJ 'G )J Ey 'G rC RG `w q ;w `w CB CB CB qo q ..~+ ~+ /+ U# ^+ ^+ ~+ m% C* i` k .J .E* :+ p% ,` i` i` i` E* =Y :+ E* 3T bY k ._S 6W _S 6W S` jX QS 6W c..QS 6W 6W 6W '` 4u dY gZ JM qJ CU 7W !Z xT IY 7W xT IY !Z d..IY (V bO 3U !..l` ~` 3U ,T ,T 3U 3U 3U hZ 3U ,T e..JY ,T lX n .JY f..{Z HO o` o` HO LM &U tV LM LM HO HO 5H 5H LM On ez 94 g..h..FD SZ i..~P j..Ac k..zC lA S .JP S .S .-r u` -r l..m..Hs -F #B cH #B #B nZ nZ nZ 8g @L @L V .@X aI aI (w NI NI n..#Q PY (w YR 7L #Q Do } .cv cv +W 1X Kl cv TZ o..ZN p..Do p..q..r..#B s..^F &n )n & {. =. A@ ;. 4) E@ ,= 5# G@ T J@ S H H@ P@ O@ P@ +% K@ N ", +"]& 0' 0' + ]& ]& > $ + + }* - # # M$ Q$ > R@ V@ + + $ & . $ - # = 1* & $ Q$ > ]& > . ^& $ = ' & $ o! %= . N$ 0' > . & > k) > ~ P$ H= ] T@ & P$ | ; H= X@ U$ (& ; | 5- X@ | ; U@ X@ ( { X@ R$ *# J) { | ^ } ## ! | 1 4 1 ( X@ { < 6- /& 6 d 1 7 $# d $# == d d { Y> d 6 5 a Y> ~# d 0- c d e 0- 3] k ,# n 2* a' 0 n 0- `$ 0- q % L= `$ Y$ `$ ,> n y..Z$ Q{ s> Z$ V| `$ t /# Z$ ^# w b' z../# B B t w E G a7 I G A F= G A I 1& I c- O@ M >z |# c- S n! >z c- )W h] A..|# ` d{ B..L 3; *I G$ G$ ^P #N G$ ^P G$ ^P tw )Q ^P ^P #N .V 58 qH _M _M -X EN 6B AS 6B hT AS mL $N hT $N hT hT AS hT C..hT ` .4..&S pY D..dS #Z =S 5Z kT kT B .^Q pO aX +..0R jT nW pO FX nW tY ^W DR _W oW ^W cX & . @; @; *+ *+ *+ v& ~{ =+ 7= =+ D& *+ @; C' S# W# Y# <+ ~+ ~+ (+ (+ (+ (+ ~+ /+ H> z* :+ :+ J..J..:+ :+ :+ p% p% :+ { .jX { .,` 3T l .bY 4W _S 6W QS QS S` K..6W 6W QS j` 6W QS j` j` m .L..CU JZ HY M..!Z CU xT JM 7W IY 7W 7W xT IY ~` aO IY IY IY bO 3U ,T 3U ,T 3U ,T 3U ,T ]` ,T 3U ;Y n .lX lX HO LM LM 4U LM HO 5H HO HO tV LM HO ot 5H HO ot 4c @f N..O..Nj P..Q..R..Wk S..Kt ]..PM tJ p .[` p .S .S .}` }` }` 2x -F -F aP -F -q aP cH aP nZ @X @L NI @L tt @X PY NI q .NI NI U .PY #Q 7L 7L NI vJ SY 1` 7u 1X Do YR 7L ZN FL WS cv ZN ZN 7L aK T.. * + # * > . * + $ V@ ]& ]& Z, . R@ # Q$ . Z, k) $ . $ S$ > ; %= U@ %= N$ Q$ [* $= S$ ; ] . V@ }* & ; ] $ ; ; % ]& ' & . Q$ - O$ 2 { T- ] < | R$ 2 2 ~ Z! | N$ W@ =# / S$ U$ ) 2 ~ ( 8- 2 $# ## 6 ( : < ) ## a d X@ 5 D, 6- 0 i b e a e 6! d a k J] ~# h V) ,# n L= a c n 6 n 0- K/ vA p ~# ~# s> n ,> h :# `$ ,> % w y n D % % t ^# :# C B 1; N C Y..I n! z A ^# 2; I A M Q@ x O@ I O@ T^ 8* n! |# M c- PT 0S M z .Z..|# A: |# d{ 3; 3; L qF YX oY BX qF G$ 3d #N #N )Q ^P ^P #N ^P _M _M #N NW -X @N 6B hT 7s AS hT hT mL hT $N AS 0X CX hT BS :M 4Z pY ST #Z tM qY dS 5Z B .`..6N +.$Z 0R jT nP nP .+.DR ^W ^W nW lU _W cX cX oW nW ++.@+. .JX L` gX gX nV JX JX f` nV !V *..&+.f .6Y pV , .*+.[U [U ~V [U ~V cZ qT }U }U [U }U =+.+U +P dR 2U tT 5P 5P XP yU xU yP OJ @P jS @P 6P fR OJ fR }L #P .F {N }L x jJ SG ;w CB x q CB `w `w CB CB Tx ch TG CB Jn .q n n +F gd Fy El j9 j9 gd T3 `e V5 V5 U3 f .f 34 V5 .f V5 <} +g Rk Sc U4 F{ 9) Z{ 7< Z{ F{ F{ 7< F{ ;] Z{ 2{ Z{ ;] ]~ k9 `^ f; O! ;] f; ]~ s~ e! O! ,^ *+ 7= @; 7= @; *+ 7= *+ =+ =+ *+ @; _' 9= -+.7= a= (+ (+ k% ~+ (+ ~+ ~+ (+ ~+ ~+ (+ ^+ { .:+ :+ m% `# :+ i` i` ]R ,` z* jX FZ :+ p% jX { .{ .6W 6W VV QS 6W j` QS QS 6W QS j` j` j` j` qJ dY CU xT 4u L..xT xT xT 7W 7W IY 7W l` xT l` xT (V 7W l` l` %U ,T 3U ,T ;Y 3U ,T hZ ,T lX ,T ;Y hZ ^R yT e..&U LM HO o` KZ ot LM tV LM >Y HO tV LM zT 5H ot On ~- ;+.zf _J >+.~P @H /d Bz $n $n 7f 7f PM PM lA p .p .p .}` 2x }` -r ,+.u` '+.|` -F -q |` nZ nZ 6u NI tt 6u )+.NI @L nZ @L NI tt PY @X NI q .NI NI 7L 7L #Q #Q lM 7L 7L 7L WS TZ Do q..TZ 7L ;r iH )n !+.ji ji :Y dk :q hi .X ~+.~B {+._j !+.]+.Fe 2 .Gd ^+.%x Nj PM MI qb /+.(+.]; a@ xi m@ u@ v@ {. {. A@ ). )= G@ X B$ }; H T S T J +% |# H M G z #= ", +"]& L$ # + # $ ]& ]& . 0' + > V@ ]& + = + # Q$ - $ $ . ]& V@ + . 0' > [* ' > & = ]& V@ + . $ - ~ * ; V@ ' o! ]& Q$ > R$ | ]& Q$ > # & N$ > Q$ N$ ^ . H= > ~ N$ Q$ S$ & & U@ ; *# ~ | $ Z! P$ { Z! ] /& ~ [ & , [ X@ V~ { | { ~ ~ 5 1 [{ 3* J] $# 7 7 Y@ 6 ( d d ,# 6 7 ,# } a ,# 7 W$ ,# {# *= ,# a c 0 0 8 ~# 0 ~# ]# a `$ ]# Y$ #| c{ p n 4* Y$ p `$ p n^ `$ Y$ :# t m /# p u 4* N 2; B N #] G$ ^P )Q RT 3d ^P EN lP RT lP @N lP qH -X 7s CX 6B AS kU 9X $N $N AS CX CX .` AS 3Z HQ 3Z :+.pY dS cQ EX dS <+.5Z [+.6N kT }+.jT 6N 0R DR 0 .nP |+.pO nW DR _W C .^W ^W a .1+.2+.& .3+.4+.mT =` :U eX d .jV 9Z $..b` mV 0..J` }T 5+.6+.HX HX IX L` oT 7+.}T |T HX > .qW N` nV IX qW JX qW pT gX gX ;Z oV 8+.&+.9+.BZ , .lQ !R , .#Y ~V F> =+ ]+ /+ a= ]+ ~+ >..~+ (+ ^+ ^+ /+ ~+ a+.:+ :+ a+.(+ i` :+ p% b+.:+ :+ { .FZ bY i` c+.{ .d+.3T 6W =Y j` QS *Y j` j` _S 6W j` 4u j` k` j` m .e+.f+.g+.HZ CU 7W h+.IZ lS l` !Z l` 7W !Z IY DU DU IY IY (V (V ,T ;Y ;Y aO hZ ,T ;Y lX 3U JY i+.j+.yT hZ ]` >Y r0 HO 1..LM HO HO ot tV HO HO tV HO LM On On Xr k+.`c >+.l+.jY jY m+.n+.8E o+.,o 7f 7f 7f PM JP p+.[` JP }` q+.}` S .}` '+.|` Hs T .-q RZ nZ @L 6u aI aI @L aI nZ nZ nZ aI aI nZ aI tt @L NI @L PY PY aI 7L (w PY (w (w jY jY jY WS _ .tt >+.r+.&n &n )n s+._j &n :q dk [j hi .X t+.dk u+.Uy Lf .p Jt RH KB ]B zC tN Ff v+.w+.)@ 3@ X* ~* {= ~. {. !. A@ .. z$ G@ n) 4# T H }; E$ S 1# +% S H P@ Q@ x O@ ", +"+ R@ [* k) # L$ k) 0' V@ = ;b V@ # 0' 0' R@ L$ ]& # V@ > 5_ ]& # ]& $ > [* = . |* . Gc # > ; * V@ ' = * U@ Q$ P$ !, & =' $ - . # ^& Q$ 05 [* $ Q$ H= [* & > & !, ; 2 W@ N$ & & N$ > | ) P$ ; ~ ]& %= | | ] ^ 1 { 2 { D, J] { $# 2 ( ( 2 } $# /& J= W@ D, : ,# $# 5 } -# ,# } } {# 1 ~# 0 d d ~# a 0 ]c L= 6 a c L= L= 6 a 0 ,# ]# c k X$ a n ~# ~# r ^# t L= /# p m Y$ ,> p $S p F= % p w :# G 4* ^# B /# B z I I z @= w K z 1& O@ O@ A 8* 8* K 8* c- M }Y x+. V >z c- H$ QT E$ Q Q *I P@ y+.L G$ 3d qF tw pF pF ^P ^P 0* #N )Q _M r! +Z EN qH #N 9X 6B 6B $N AS 0X hT mL AS $N AS CX HQ AS BS .` 2..4Z z+.|Y 7 .4Z CR ...iT A+.kT fK `..;X pO nP nW jT 0R B+.OW nW nW C+.|+.oW _W ^W a .%Z gV 8Z D+.E+.& .8Z F+.0` E..=` zY 4z pU F+.K` e .G..F+.}T }T =V F..; .HX HR L` IX HS PV pT [W [W G+.nV PV nV f` f` H+.gX SV gX gX I+.h .UP !R [U ~V BY [U J+.qT cZ H..8Y H.. U 2U PN {S DZ K+.sT @U jS XP xU yP yU 5O yP XP #P #P fR }L ^S ^S fR 6P ZP 1Q )J 7O (S Ey `w #M `w rC `w `w CB `w `w q Tx kJ kJ to EB |u EB |u AP El El >0 T3 Fy j9 v[ V5 V5 f V5 v[ v[ 34 34 V5 44 V4 b^ <} <} Z{ Z{ J^ Z{ F{ Z{ F{ Z{ F{ F{ J^ Z{ Y{ f; [] s~ ;] f; f; ]~ D] P) N! N! ]~ y) C' 7= *+ b) *+ 7= =+ *+ 7= 7= *+ *+ {) 7= -+.S# d) ~+ g! ]+ ~+ ~+ ~+ L+.~+ ~+ ^+ ~+ ~+ z* :+ J..U# M+.:+ i` N+.i` :+ J..{ .3T i` d+.3T ,` S` _S 6W k` QS 6W 6W j` 6W k` O+.6W k` j` k` j` GZ IZ !Z L..e+.IY IY L..7W xT 7W 7W IY 7W l` 7W bO (V P+.!..~` ,T ,T ,T 3U ,T 3U ,T yT lX hZ hZ Q+.lX ^R n .tV lX HO KZ tV >Y MZ HO tV HO 5H HO tV HO ot 4c * t$ s@ d# '. B$ z@ +. 3^ r4 @. $> &' 1# H Z M@ J P@ M@ A P@ N@ N I ", +"+ # 1) ]& ]& J$ $ 0' ]& # = ]& # ]& 0' + + k3 $ T@ $ ; = . ]& * . # $ Q$ ^& $ Q$ . T@ ; + V@ A; [* # ; . P$ ] - & & . > > ^ R$ ] Q$ - # $ 5- ] ' S$ U$ & > & ^ | Z! *# ; ] ^ ; | { ; H= N$ ] Q$ ; ] { ] ^ ( { T- ## | { { } < $# ) / 1 6- Y> a ~ a 6 b e d } k 6 6 a 7 e ,# i 0 Vj 0 ~# ~# ~# 7 k 0 t' 0 0 o r X$ n Y$ 0 _# o ,> Z$ ^# s> Z$ p ;= ~# ^# |& m ^# n^ t t /# `$ F= Z$ Z$ ^# /# w I m 1& ^# n! }# C Z$ AR 8* I Q@ #] M 8* V I .@.=X V M M 3# AX z .oY SO A: A: d{ r! oY BX A: #N 3d 'Q `I 3d #N DN U^ E^ _M BX RT 9X EN 7s EN @N 6B AS mL $N AS $N cV $N $N hT hT hT +@.hT @@. J #@.$@.%@.|Y %T CR 7 .qY CR jT &@.$ .nP DR nW *N mU IQ pO DR ^W *@.^W ^W =@._W cX #..yZ 8Z -` E+.gV d .%+.& .%+.8Z -V oT e` -@.c` fS ;@.AM >@.}T HX HX oT IX }T IX IX HS pT IS ,@.[W PV JX nV qW AZ AZ *..gX gX AZ '@.gX AZ 7Y ~V , .[U 8Y ~S H..qT ~S H..cZ ~V 8Y H .iJ yO 2U sT yU P` @U XP {V yU 5P ^S yU #U fR fR fR OJ #P OJ }L OJ OJ )Z OJ }L FI CB x CB #M `w `w CB CB rC x x `w Vr XK i9 $P n El |u |u j9 El T3 gd Fy j9 f 34 V5 f `e 34 34 v[ V5 34 D9 <} 44 F{ U4 F{ )2 J^ 9) F{ F{ F{ J^ F{ Z{ Z{ F{ J^ 3{ `^ ;] ;] ;] ]~ ;] 3{ ^~ &~ N! ]~ 6= *+ ;+ h; j/ @; z) @; 7= =+ =+ 7= 7= _' {) x* 9= {+ (+ (+ ]+ ~+ (+ )@.(+ (+ ^+ ~+ (+ (+ !@.,` i` H> b+.i` _+ ,` i` i` :+ { .3T ,` :+ E* M .FZ QS QS QS QS j` j` 6W j` j` j` j` O+.j` k` j` NX L..gZ L..4u xT IZ e+.!Z xT 7W IY IY IY !Z !..,T (V l` P+.!..;Y e..;Y bO 3U ,T ,T ;Y hZ ;Y ;Y ;Y n .e..;Y ^` / .HO ^` LZ tV 5H LM LM HO tV LM LM LM 5H 4c ~@.{@.ti ]@.^@.tf tt ~U n+.Eo _N 8E Ac o+.7f 7f ]..PM PM PM tJ tJ tJ tJ S .}` ^..}` S .l..}` u` RZ nZ aP -F cH '+.aP aP nZ nZ nZ nZ 6u @X nZ nZ nZ aI @L nZ _ ._ .X+._ ./@._ .jY MC TZ _ .nZ (@.5w ii (j _j (j fE Wg w` dL Wg fE ]j Jh Lf &n iH lk Ee _@.Js tt dv iz 8E we :@.<@.r; f$ [@.X* x$ (. }@.x@ ,& ;. (* 4# V L@ H@ H H Z 3; E$ H J K@ I N H$ I ", +"R@ ]& L$ J$ + ]& I/ R@ R@ + .( ]& # = [* + R@ J$ . # . U@ + 1) + ]& M$ $ [* ]& > > $ & # = . . U@ N$ & ; . S$ o! ), o! = . N$ ^ > | ~ Q$ U@ & Q$ S$ ^ Q$ U@ . ] z] ~ ; N$ ; *# & N$ | { N$ ^ | .# N$ 2 ~ ~ X@ ~ } Y@ 7 5 [ 2 [ X@ 2 ~ Z! &# < } d [ 7 q> } [{ { N' ( 9 } ~# e a ~# k i c {# c n 0 n a L= 8 Y@ ~# L= ]# h 7 h {# c Z$ % n `$ h Z$ ,> p 1; r D c /# :# o `$ `$ u w w `$ w `$ F= w ~& F= z w I E; /# O@ D 1& AR n! AR JW N O@ >z O@ O@ c- c- c- AR c- >z QT 3# ` U A: qF L qF *I yS r! oY ^P ^P 3d 3d )Q )Q ^P BX `I )Q EN sZ sZ 58 |@.@N 7s mL mL 1@.2@.$N :M hT hT 3@.AS HQ CX CX _U kI tZ 4Z 4@.DS e@.,` i` i` i` :+ bY f@.fZ p% bY f@.i` =Y S` 6W 6W j` ,..6W 6W QS 6W 6W XV QS '` g@.HZ HZ L..sV h@.^ .7W g+.7W xT 7W BU !..!..IY !..l` bO l` l` i@.;Y ;Y ,T 3U ;Y ,T 3U ,T hZ n .hZ JY ,T n .;Y zT / .HO HO KY HO MZ HO HO HO HO HO LM ot _i W2 j@.k@.zC l@.0k m@.mk ZV ;c 8L tN _N _N _N n@.k..o+.]..PM 7f ,o lA tJ ,o XI JP S .JP bP V+.V+.u` u` RZ |` |` T .-F |` RZ #B aP aP nZ nZ nZ nZ nZ 6u #B MC 4G nZ 4G o@.4G _ .4G nZ .s _ ._ .#B p@.3g ]j &n _j hi q@.`` w` Wg Wg kY dk |k sz |i 5X ,r r@.s@.bb S..t@.LB 8E nc hL u@.%@ :@ A= j- w$ u@ x@ x@ )& A@ &. A$ @. O= M@ H@ 1# J S E= P@ Y S G Q@ I x ", +"], R@ <{ <{ J$ # 0' $ L$ > # L$ k) > [* + ;b $ 0' . U@ ' k) |* > = ' $= ;b L$ T@ $ X! > > > > > . }* ; T@ U$ - & R$ R$ > & & ; * ] ' Q$ # ; Q$ V@ . Z! > ] 2 2 & Z! N$ | U@ R$ { [ ~ N$ X@ 2 ] ~ [ <& /& < [ [ $# 4 J] [ ~ 2 ( | X@ ( ( 9 } : { 5 d ( d d : 6 5 6 Y> 6 Y> e d a a 0 L= K/ L= } ~# e j n a c n s> L= a 6! K= n s> t m u h 2, `$ t Z$ q D :# p <, t m t n `$ 1; B ^# t :# 1; D ^# G B 2; {& 1; a7 F= 1& a7 T^ I F= z O@ T^ .@.3# =X T^ v@.d{ d{ QT v@.y .i5 T J Q BX BX G$ qF BX ^P qF #N ^P ^P RT G$ )Q RT )Q .V sZ @N NW 1@.6B 6B 1@.hT w@.$N $N :M hT CX CX $N x@.$N CX y@.aS pY +` HN pY z@.CR D..qY @` DR BR ~W A@.6N pO oW nP B@.sY cX ^W nW oW %Z cX cX a .%Z &` & .C@.8Z 8Z D@.*Z d .* .8Z E@.d` -V E@.F@.M` zY HS K` }T =V }T IX }T }T HX Vw AM IX [W qW nV ,@.qW nV qW qW SW 9@.)V AZ @Y f .qW G@.! ., .H@.I@., .qT ) .~V BZ 2E {S cZ 8Y 2U ) .sW 2U rW +U 2U XP @P XP XP jS yU yP }L XP @P }L #P fR h` RG OJ }L )J fR )J 7P #M ;w CB Y tV LM 5H 5H ot #x N@.7a uJ YN O@._d X+.jY vV %c T+.P@.sf _N Q@.8E Kt 7f 7f 7f ,o PM PM lA lA ,o tJ [` S .[` S .S .R@.S@.-r }` l..-q u` RZ RZ 8g #B #B nZ nZ T@.6u MC nZ nZ nZ nZ nZ #B #B nZ MC KB MC #B ;r aK U@.3g ii ii (j Wg ii `` w` fE /y kh (j Ih &n 5X Lf MT V@.W@.X@.Bz aH }..MI mc Ma Y@.Z& 6$ .& {* [y 3. ^. {. z@ A@ B$ B$ .= V V Z@.V P H H A K@ P@ A Q@ b- H$ ", +"+ J$ ]& J$ R@ ]& = ]& # + ]& jP . ]& # + + $ 0' + . # = > # + $ $= L$ J$ + Q$ Q$ - ; > . + > > = U$ U$ ' ; b{ Q$ + ^ . ; & %= N$ H= ^ %= ~ & H= 2 ; [* & H= 2 & ] ] U@ H= %= ) X@ Q$ [ N$ 2 X@ ] [ `@.1 2 d _ , `@.## ] X@ 5 *# /& 6 } 6 [ / D, 2d 6- 4 Y@ $# X@ } } < {# 0 9 Y> } 6 z: ,# ]# ]# |& 0 ~# 0 a {# n e c `$ 2, c X$ L= c L= % ;) V| p 4* Y$ 2, ^# w V| :# h G {& m p p s> 4* Z$ w m w /# F= b' ^# I I z JW A $T {& #.O@ 3# P@ n! 3# a7 2Z 0S 8* |# 0S 5 .T^ QT Z..i5 Z..A: ` Q MW BX G$ r! L 3d #N #N )Q ^P )Q #N #N )Q `I #N ^P E^ bV +@.EN 6B jU AS AS $N 6B AS CX CX mL E` HQ $N .` |Y pY cQ @@.GN pY 9 .5Z qY =S dS vZ Zz 5Z 6Z uZ nW wZ uZ .#..+.cX DR B+.#.._W %Z oW *` *` PW = .8Z d .* .d .E..+#.& .+#. Y NV ;V E..@#.qU G..HR ##.L` HS L` G .IX }T L` }T }T }T qW qW PV > .nV PV qW gX AZ AZ f` nV BZ f` f` 9@.BZ J+.#Y $#.!V QQ [U ~V cZ ~S 2U 8Y %#.$Y &#.sT wU TW hX 2U g` XP xU OR xU xU #P yP iN @P OJ #P RG *#.#P }L rC rC }L OJ )J LX qo x HM x `w x `w x `w x x Tx `w CB Vr n Fy yD n gd j9 El f 45 El `e 34 .f V5 v[ 34 6< V5 V5 v[ 34 44 Ln !2 ^1 ^1 /1 F{ J^ Z{ F{ ^' Z{ 9) F{ ;] F{ J^ ;] ;] Y{ F{ f; 3{ O~ 3{ ;] f; N! Y{ s~ v& *+ =+ *+ *+ 7= 7= 7= 3> ;+ *+ 7= D& ! `) `) D& %; ~+ d@.]+ ^+ ^+ ^+ (+ (+ ~+ U# ~+ J .:+ i` J..G& i` i` ,` ,` :+ i` 3T 4W FZ K .jX M .f@.M .=Y 6W 6W 6W j` 6W k` k` k` O+.O+.k` k` O+.=#.-#.l` ;#.>#.d..l` 7W IY IY 7W l` l` l` IY !Z ~` 3U i@.h+.P+.3U bO ,T e..3U ,T 3U ;Y lX ;Y ,#.;Y / ./ .zT KY HO HO HO LM HO tV r0 {Z 5H HO LM ot _i W2 '#.)#.bH !#.~#.l@.{#./@.0k gb #c sf MI P@._N _N 8E Kt iz Kt 7f ]..PM PM PM PM tJ JP [` S .bP JP S .R@.R@.l..-r -r -r u` R@.R@.-r Hs aP RZ u` |` 8g aP KB -q KB #B aK #B |` KB |` ;r |` ]#.l+.Ed #W _j .X Wg `` MO `` `` dL oZ _Z dk li 3g ^#.+H v` ,B cr 1x ^Y y @I U+.>e Fa /#.^G S% .& p@ :. '. b# ). -. -. E@ P G@ . E@ P }; L@ T Y ` M #= z N@ E$ M ", +"= = # . R@ ]& E! ]& + # - # R@ ]& + 0' $ $ ]& #S ]& ]& . ' + . L$ 0' . # X! $ . $ + * V@ ]& # V@ ^& = |* R$ $ ; ^ S$ # ; . $= = | z] S$ ; U@ | & U@ o! & # & 7- 'W ; ] N$ & ; ; & ~ X@ N$ | %= P$ { Y@ { ~ ^ { [ W@ 1 4 ## 7- X@ ( 2 -> } 6 ~ ( [ ~ [ 7- ( { /& ,# 3* } a L= 8 6 6 !# i a 0 0 {# 0 ~# 0 c o Y$ !# c 2, L= K/ p |& Y$ s> |& % r `$ r c{ p `$ Z$ b' `$ D b' p Y$ C; ;) $S 2; ^# F m w B z z a7 z #= z z A A {& 8* z I N@ 8* c- $T 1& c- c- }Y PT (#.>z iI Q Z..=K 3# E$ 0S _#.:#.yS 3d BX 3d BX ^P ^P #N RT +Z ^P ^P RT YX Z .@N sZ <#._M $N $N mL $N $N $N AS CX .` $N 4..-I 3Z CX aS |Y FN @@.#Z 2Y [#.CR z@.~Q nO B .0R }+.pO aX %` $Z }#.;X wZ _W DR oW %Z nW a .C .=@.cX a .8Z & .gV 8Z d .%+.%+.xZ +#.nU |#.6+. .G .G .Vw }T JX qW nV qW IX [W nV I+.JX JX AZ JX I@.AZ JX )V 8+.Y LM 5H HO LM ot Ib 7#.*d 8#.}i 9#.l@.S+.0#.tf )d %c a#.MI P@.P@.U+.P@.P@.8E 7f 4A $n ]..PM ]..]..7f PM PM [` JP _w Tn }` S .}` S .}` }` -r }` u` -r b#.-r u` |` u` c#.]#.-q _J -q |` ;r -F KB ;r 2x c#.(@.R@.2x Ed d#._j :q `` =L %W kh fE WY }j MO e#.f#.g#.^e |g Ug ,r h#.)e 7L GW iz _N !d 0H xX L N% l$ >* -& {= :. ). *. A@ l> x@ z$ X .= L@ P $> 1# Y K@ 4, b- H$ M I N ", +"R@ 0' R@ L$ L$ L$ J$ 0' #^ .( + R@ ]& ;b + + ]& $ $ R@ ]& # V@ # + $= # . > + Z, L$ > $ Q$ > # $ # = V@ V@ = > > o! . ~ ' = Z, # > N$ S$ Q$ . | . = o! & & 1) ^ }* & & }* Q$ ; ] N$ > ] N$ i#.2 H= Z, 2 | X@ | [ ; { &# 8- | } 5 <& d $# 6 a [ 9 4 [{ $# } [ 7 $# 2 a ,# 5 6 a c6 } J= {# e i g ]# c } ~# n k h Y> ~# c k ,# 0 s> 2, p ~# L= ,! r % Y$ L= |& 1; ^# D L= Z$ :# m #] ^# 4* z G :# w D ^# B ~& z I z 1& q2 z w I I I z 8* I 8* V V c- >z 3# Oz PT v@.>z aV T^ SO J SO c- i5 YX j#.BX E^ U^ k#.k#.#N ^P G$ ^P RT )Q ^P )Q ^P )Q bV sZ # .)Q 6B AS $N hT AS AS $N CX CX hT CX AS #@.hT aS 4..:M #@.ST G` ` .l#.m#.pY CR =S kT ;X 6Z pO DR pO %Z DR $ .n#.pO _W oW _W _W a .a ._W &` gV 8Z yZ yZ o#.%+.* .a` %+.0` I` |#.QW p#.0..q#.}T HS >@.G .L` AM }T r#.L` G .IS Ix [W [W gX nV qW =V gX gX 9+.9+.f` JX qW @Y f` gX &+.aZ ~S ~S pV [U cZ }U }U cZ qT `T 8Y }U sU U 'Z eR CZ vU =..jS PN @U tW XP yP ^S :K :K OJ 'G OJ :K }L OJ RG xL FI #M OJ q RG q ;w 6O a= 7= C& e, S# x* ^+ $; ~+ ^+ ^+ ^+ ^+ U# ~+ ^+ ~+ L+.J .N+.M+.U# b+.f@.i` ,` ,` i` i` s#.QS K .jX M .N+.S` 6W j` 6W QS l .j` j` j` 6W XV k` c..6W k` k` HZ xT t#.HY IY 7W )..] .!..^ .P+.l` ^ .7W l` 3U ,T IY !..!..,T ,T ,T -Y ,T e..,T ,T hZ {Z KY hZ hZ u#.hZ 6#.v#.tV tV KY tV n .{Z LM LM 5H LM sa _i w#.Yb 8#.:b ^@.x#.x#.m@.y#.>e !d z#.ED ED sf P@.P@.U+.P@._N Kt 8E Kt 7f ]..7f ]..lA PM PM ]..PM zC tJ lA }` }` S .S .A#.}` }` }` }` S .-r 2x (@.l+.(@.u` GW 8#.S+.}` u` (@.p@.2x Is 2x 2x hz B#.tS _j fE +R LT WM cU LT GT C#.=L dk [j Mf Vg mi [j VZ .d D#.cv yC ,o ]..rc 1b E#.F#.1$ 7@ >* u@ 5& '& ). A@ .. .= =. C$ }; K@ 4# 4# M@ H H H$ Q@ ~& P@ J I I ", +"]& L$ = ]& L$ ;b $ # R@ = ]& $ + ;b > # L$ ]& . $ 0' + [* + # 0' ]& + $ + + $ . * !, & + & $ 0' Y! & [* & ^ S$ 0' `@ S$ k) $ = . . ' $ . ^ ; ' 2) > . . U$ ] { N$ > $ > W@ - & | X@ | ; N$ ^ | ~ [ d | 2 ) ~ - ~ X@ 1 { I= d 6 } : &# 6 } 6 3* J= ,# $# D, 7 6 ,# 3* Y> k e Y> ~# ~# &# n n 6 c a g h _# 0 n r n L= ># p n n Z$ ~# 4* `$ Y$ ;) `$ s> q n y p `$ G#.1; ,> % 2; {& `$ z D @= t G I E C D 1& 8* z /U z w z G A n! c- c- c- M P@ O@ :#.H#.d{ Q AR Q y .>z SO Q T _#.I#.qF 3d 3d BX (U #N 3d RT #N )Q )Q ^P ^P ^P 3d Z .)Q qH _M lP $N hT hT AS $N AS hT $N CX AS AS aS AS .` J#.FN K#.:+.ST tM ` .B ....D..=S @` pO L#.jT M#. +.vZ L#.N#.3Y nP _W ^W wZ oW *` *@.H` &` gV * .yZ & .d .%+.d .E..E..%+.E@.zY qU |#.-@.F .-V GR O#.HX HX }T HX IX }T }T IX P#.G .Q#.> .gX L` nV JX gX f` JX JX AZ JX f` R#.nV f` f .UP lQ qT qT [U S#.~V H..[U ~V U ,Z {S sT tW 2O ,Z T#.2W PN jS @P 5O 5P :K U#.@P @P #U :K fR 'G }L }L OJ 'G FI OJ fR .F ;w q CB i` M+.L+.V#.K .,` :+ :+ i` ,` 3T jX i` M .l .,` K..j` j` j` QS _S j` j` O+.6W 6W j` j` j` O+.h@.L..IZ !Z =#.W#.X#.l` Y#.l` l` l` l` IY 7W IY ~` bO Z#.l` Z#.~` bO ,T `#.;Y hZ ,T hZ hZ n .KZ hZ / .n ./ .;Y KZ LM tV KZ ^` n .tV HO LM 5H 5H _i uK $.&e ]B .$.+$.@$.U@.S+.Js !d rc zd [R [R 8L #$.Eo _N sf sf _N P@.Kt Kt $n 7f Kt ,o 7f PM PM ]..]..JP PM Tn S .[` XI S .hz S .S .}` S .2x Is 2x 2x 2x 2x S .S .A#.l+.2x 2x tu }` hz 2x *f ~#.$$..X dk `` 8w |N jA xv QD gW DQ `` ~+.ji . X! # }* . ]& T@ . Z, > T@ Q$ # ; U@ > {c > [* 0' U$ U$ > ]& & $ > /& | > & ^ ~ & ] ; ## H= ] R$ & ] ~ N$ ~ ) N$ ~ ~ o! o! X@ 2 ~ P$ ^ [ 2 : [ ) [ { ~ < [ ) -> < /& } { 6- Y> : ~# a 6 ># a ,# ( a i 7 V~ 3* 7 a 2d i ,# ;= n n c ~# ~# ~# ># a L= o _# 0 i k tA c{ Y$ o/ ^# h m s> n L= }& D q h 1; #] :# /U F= w p ^# /U G /# B {& G w G a7 G F= 8* O@ F= $.`I +Z _M EN <#.!Q AS $N mL AS $N CX hT hT +@.CX CX aS E` CX ,$.'$.DX BR 3Z CR ` .)$.EX #@.qY =S DR 0R B .$ .!$.M#.;X 0 .sY DR a .^W cX %Z a .yZ _W *` ~$.%+.gV ~$.& .* .{$.d .8Z E..F+.RE ; .pU zY qU J` }T }T ]$.r#.G .=V F..oT HX JX G .^$./$.> .G .JX gX PV nV JX PV AZ &+.f` gX gX JX bZ f .!V , .@Y 7Y 7= *+ O~ f% *+ =+ =+ g% e, (' $- =+ {+ 8= G> 7= D& j% ^+ Q# ~+ ^+ ^+ ~+ )@.^+ L+.~+ U# e@.i` ,` d@.!@.,` N+.d+.N+._$.:+ f@.l .:$.,` d+.L .<$.*Y j` =Y dY k` ,..j` O+.k` j` 4u =#.j` '` h@.-#.L..xT ^ .[$.IY IY Y#.l` l` l` l` l` !..l` !..~` -Y P+.!..i@.;Y 3U hZ ;Y ,T hZ hZ ;Y / .]` hZ j+.n .}$.;Y KZ HO tV ^` w../ .MZ LM LM HO ot @f |$.1$.yK 2$.3$.zc < .4$.m@.Pf ;c ze gb %c 5j a#.a#.#$.ED sf P@.P@._N sf Kt $n o+.Kt Kt ]..]..,o 7f ]..zC PM ,o [` [` PM _w lA [` [` Tn *f hz S .lA bP S .tu l@.=F hz 2x *f *f hz 2x Tn Tn Tn Ed _d .X :q kh DQ xv eE pu pu QD |N ni hW 5$.(j gi Wg ew ii Uy 6$.~Y KB zC 8E gb qb rb 7$.#@ g$ >* -& v@ '& F, ). !. &. )& V V U X H T J P O@ S M a- G A I ", +"5_ = 1) J$ k) + # k) + L$ + # ]& = & ]& k) # R@ L$ <{ # . $ # # Z, $ |* . = ' S$ X! # U$ $ Q$ ' |* # = & N$ ' > > T@ + $ ; ] Q$ 2 & > > & & ] U$ ] U@ | N$ N$ Z! & %= & ) X@ X@ ) & H= *# | N$ U@ & ) 4 { { { } $# ( } { 4 ## ## } d 2 *# 3* 7 ,# ,# 9 } } ( 4 d 5 2 4 0 6 6! 6! i i W$ c K/ tA 6! h n k a {# 0 ,> L= i e (# s> ^# Y$ L= Z$ 4* Z$ 4* 4* L= h h ~# s> 2; m t /U ^# Y$ :# n! G Y$ F= N a7 /U t /# 1& N= N ;O 8$.$T 8* I 8* T^ O@ T^ 3# 1& z JW Z..z v@.>z }Y Z..P@ |# iI aV Z..(U oY *I BX 3d ;$.pF #N #N #N Z .^P ^P ^P RT #N )Q 9$.EN -X 0$.RT mL AS 3@.$N AS CX $N D` 3@..` CX 3Z .` J#.+` aS pY @@.y@.cS a$.=S )$.#Z 0 .5Z DR ;X +.b$.0R nW aX c$.aX cX 0R *` #..C .xZ *@.d$.e$.d .8Z =` *Z d .E..%+.p#.C@.f$.* .6+.g$.b` mV h$.HX RW i$.i$.HX HS L` 5+.7@.Q#.HX > .> .L` f` gX JX > .AZ AZ ;Z j$.JX AZ k$.AZ f` f` nV , .w H| :^ F{ Z{ Z{ Z{ J^ F{ F{ Z{ Z^ ^' 3/ ;] ;] (! O~ ]~ Y{ M, Z{ Y{ Z{ S] Y{ M, N! ;+ ;+ $- 7= 7= ;+ =+ $- -+ g; ;+ D& !+ =+ r- {+ d) O, V# E& ^+ ~+ ~+ ^+ (+ ^+ ^+ U# U# b+.k .{ .M .b+.,` L .N+.,` l$.k .jX ,` i` c+.m$.,` K..O+.k` 6W k` n$.K..QS j` n$.k` HY j` 6W o$.L..] .IZ !Z O+.p$.l` IY l` IY P+.l` P+.P+.!..!..!..3U 5#.l` -Y -Y ,T hZ ,T ;Y hZ e..e..e..n .lX hZ M@.6#./ .e..yT >Y f..LM HO {Z HO LM WN /R c ~#.r$.s$.t$. - X! U$ . p9 L$ # * > . V@ ; = * . [* . & . $ > ' Q$ * T@ > ; | ; 2] N$ Z3 Q$ R$ ] & Q$ ^ > & N$ ; U$ X@ ) { R$ N$ T@ ' /& %m Z! 05 X@ T- 2 { { D, ( { [ U$ .# X@ 1 2 /& 1 ( 1 6- 5 7 7 9 { 6 a ## { *# 3* $# N' [ k c6 ># b ,# c a j L= c ,# !# ,# h [& o g {# i ~# y2 Y$ % n `$ ^# r u n ~# `$ o p m % ^# :# {& /# L= ^# F= w ^# G F A$.#] I ^# N a7 A n! $T I A 1& n! AR 2Z M o^ O@ T^ c- d{ d{ >z >z >z M 0S H$ }Y Q *I :#.B$.oY A: >$.r! (U .Z #N #N )Q )Q RT )Q RT )Q `I ^P EN -X 9X RT -X $N D` AS $N AS AS AS hT E` hT 3@.0X E` aS +` pY |Y y@.l#.C$.%T 5Z qY B .D..pO kT 0 .z@.uZ nW %` N#.6Z oW +..a .a .uY D$.E$.a .a .8Z 8Z d .& .d .-@.* .* .%+.%+.E..F$.-V f$.G$.F$.|#.H$.I$.G..HX > .Q#.HX =V HX L` G .L` qW gX [W gX gX J$.nV gX IS pT qW &+.9+.9+.f` f` qW [U h .! .K$.! .#Y 8Y [U =+ j% ^+ ^+ ]+ ~+ U# ^+ ~+ /+ U# L+.U# L+.e@.:+ i` L .M$.i` ]R ,` ,` ,` V#.jX V#.M .l .c+.:$.:$.6W k` j` 6W j` O+.O+.k` j` O+.j` O+.k` n$.h@.m .d..l` n$.p$.IZ IY IY ^ .h+.!..!..l` l` l` !..{` 3U P+.P+.-Y ,T 3U ,T ,T ,T e..e..e..lX e..hZ ^` 6#.n .hZ n .HO lX tV >Y tV tV tV LM On Hy N$.O$.(y >c 3$.>c P$.Q$.0#.R$.S$.Yb xe >e T$.~d %c a#.a#.T+.Eo sf MI MI sf P@._N 8E (J (J $n $n 4A 7f $n 7f 7f ]..PM ,o ]..VJ lA PM lA PM ,o < .,o lA lA l@.lA zC U$.lA *f lA ,o ,o ,o < .< .$n 4$.`` w` C#.DQ QD pu pu eE /n jA xv DQ GT fE `` dL w` `` 3g -L vX QH Hs ,o uN YI V$.ZI m, b$ -* N- x$ }@.). x@ &. . A$ G@ F@ D$ ` P |; |; S N@ M@ A Q@ A N O@ ", +"R@ R@ = = G= V@ L$ = = * ]& ]& + G= $ # = . R@ # + # # . ]& > . # = o! 5_ Z, 0' + - . 0' ; & * = ^ S$ $ & > Q$ | ^ S$ $ = $ ; & ; - *' { > N$ - U@ N$ & ] N$ P$ ] ] X@ ~ | | X@ O$ > .# & | H= U$ H= > I= | { ## Y@ 1 2 { 2 | .# d ## { ~ == ( } ) 5 $# a ,# 7 8 } 1 a ># Y@ g 7 7 V$ W$ a a ,# n ~# ~# a a ]# k e ,# L= K/ c 2, L= ]# Y$ 1; ,> 4* u Y$ L= Y$ D `$ b' t w 2; :# {& /# /# m m m 6* /# w 1Z @= m G N 1& n! T^ M 1& c- O@ n! n! I I O@ V =X z ..@._+.O@ Z..Oz y .O 3& O iI i5 iU aV A: )Q 3d *I BX W$.)Q )Q ^P RT Z ..V Z .^P #N EN EN 1@.9$.EN 9X Z .AS AS $N CX $N AS .` hT E` y@.aS aS pY ` .|Y '$.cS X$.D..Y$.[#.Z$.CR vZ aX $ .L#.pO nW sY +.`$.nW _W 1+.#..nW *` %.% .#..C@.xZ * .8Z 8Z d .d ..%.%+.E..-@.-@.qU f$.+%.G$.pU 7+.G..NV e .H$.Q#.=V }T IX L` G .> .G .Q#.L` qW Q#.[W f` qW QV PV pT JX 9+., .h .f` f ., .8Y f .@%.~V cZ [U cZ ~V $Y `T ~V #Y qT #Y OR %Y %Y xU ON _K XP 5P XP XP ^S yP OJ OJ }L }L :K :K OJ #P OJ }L CB }L OJ x SG x `w x rC x x q qo $%.D& %%.~+ j% ~+ ^+ ^+ %%.^+ ^+ ^+ ^+ U# ^+ e@.N+.M .b+.i` ,` i` i` i` ,` M .l .:$.i` :$.s#._$.K..O+.j` )T j` k` &%.j` n$.O+.OX j` k` O+.*%.=#.p$.l` !Z =%.[$.l` ^ .IY l` l` !..W#.P+.P+.l` i@.3U !..-%.i@.hZ ;Y ,T i@.hZ hZ e..u#./ .e../ .;%.>%.n .u#.e../ .6#.tV HO LM HO HO LM ot 3c ,%.'%.$B ]B )%.!%.~%.l@.{%.]%.^%.Zs mc #H -d $c %c %c %c #c /%.tN (%.ED 6L P@.P@.P@.U+.=M 8E XY Kt 4A (J iz $n k..PM ]..]..$n ]..,o ,o ,o ,o < .~#.lA < .,o ,o lA < .7f VJ < .~#.~#.< .< .7f Ac 4$.WY fE UY DQ )B pu jA xv )B WM JT _%.:q (j ii (j w$.ew :..]e :%.WS uJ @I ED TD rb <%.(B ~@ m$ -& m@ s@ ). ). %. +. z@ L@ P Z J J E$ K@ 8* 4, I Q@ S K Q@ x ", +"L$ % L$ L$ + ]& L$ L$ ]& + ]& + # V@ $ = + . . ]& V@ . $ . > # - + + # = > S$ ]& U@ $ # ]& . Q$ . o! - S$ & . . k) . Q$ [* & & $= | - ^ & $ > - S$ Q$ ; Q$ . U$ * . Q$ ] | Z! ) ) X@ | ] ~ | | { ~ 1 [ 7- { [ 4 [ Y@ ( ( [ Z! | { { ( $# ( < $# { { 2 d } &# ) b 0 2* ,# ># ~# 0 d j ,# ~# !# e ~# W$ a ,# i !# k ~# p c a L= p Vj h s> L= h ,> n^ Z$ q 4* ^# q t m 2; ^# <, t p Z$ :# w w w w N a7 n^ {& z QT y .SO Q A: iI *I Q oY *I *I BX `I U^ k#.[%.@N )Q )Q #N +Z ^P RT RT ^P -X sZ 1@.bV 0$.AS $N 0$.hT $N hT AS hT hT hT E` cV 3Z E` C.._U ` .7 .}%.#@.4Z Y$.Y$.EX CR G` nW jT 5Z |%.N#.sY sY <+.|+.^W *@.1%.cX #..*` E .2%.E$.E .d .d .& .8Z * .d .* .* .]$.-@.RE )X 3%.F$.5+.0..}T -V 4%.7+.^$.G .> .L` }T [W > .G .> .L` PV gX 5%.JX qW nV AZ J$.SV OQ g .6%.AY 1T 1T 7%.pV 8%.)V qT [U ~V 8Y `T }U cZ ) .sU $Y P` P` 2U +U %Y PN 9%.^S @P 5P yP OJ Q` OJ +M fR :K :K :K :K }L #P #M ;w OJ rC RG GI `w Px qo x Tx kt x TG kt kt Tx yD x kf ch j9 |u Vr n El gd gd j9 j9 gd U3 45 u^ 6< `e V5 34 V5 34 34 v[ I| )2 +{ I| Sc F{ F{ F{ 9) 9) ^' Z{ F{ Z{ 9) F{ q- -] f; 0) ]~ ]~ ;] F{ ]~ O~ e! &~ s~ =+ 7= =+ 7= =+ ;+ ;+ 6= 7= 7= =+ =+ 9= S# ;+ r- 9= !+ 3#.E& y* y* 0%.%%.(+ ~+ L+.s- ^+ L+.L+.b+.N+.d@.a%.,` ,` _$.N+.N+.L .bY { .N+.f@.l .M .b%.f@.c%.k` k` ,..c+.S` j` k` O+.j` O+.O+.*%.O+.L..IZ IY d%.h@.IY l` !Z !Z l` h+.l` l` !..!..e%.i@.5#.P+.-Y 5#.hZ i@.hZ ,T hZ `#.hZ lX u#.]` f..>%./ .u#.e..f%.6#.tV HO g%.MZ {Z HO 5H $g h%.(f fv i%.,c zc ,c _d j%.k%.l%.m%.vd rc gb !d ~d ~T !d z#.kb a#.a#.#$.MI 6L Bz MI sf 6L =M sf U+.8E 8E 8E 8E Kt $n ]..7f 8E R .7f 7f Kt < .< .< .n%.7f 7f 7f ,o o%.iz iz n%.7f < .$n iz Ac hE p%.`` fE %W KT WM WM KT QD q%.%W UY kY r%.Wg (j dk WM Yg rd lk [N ZN yC @I yK 0H Fa s%.7I V% m$ :; w$ w$ {. x@ !. *. X L@ @. G@ H S Q@ S 1# H$ Q@ N S Q@ G /# ", +"]& J$ # ]& ]& + ]& + 5_ 1) + + $ $ # L$ 1) . $ = # + L$ = # V@ V@ $ & . = ^& $= + o! $ # + $ U@ S$ A; + L$ . L$ V@ V@ = Q$ . $ . & ; T@ P$ > & Q$ ^ & H= | ; ' U@ ; [ . | | ( N$ { 4 ; 4 7- ~ | 2 ] /& ## } *# 4 <& ) ) 2 { Y@ | *# P$ | *# *# *# [ 7 [ 6 1 a b e D, 6 6 M' i i Y> ,# V) ,# ,# L= q> L= n 0 0 !# tA o Y$ L= n r ,> K/ t' 2, h p e n n ~# c |& 1; :# ^# 2; t {& 4* ^# D % t G ^# w $S G w K z D B 2; C G w z E; M A Q@ V Z T^ >z H$ c- 3# 8* >z V 5 .t%.A: H u%.t%.oY SO *I iU (U *I yS 3d k#.BX #N RT #N ^P )Q bV ^P ^P RT +Z -X -X $N bV -X $N D` CX 1@.AS AS .` hT E` E` HQ y@..` .` aS $@.pY ` .D..4Z ` .5Z #Z qY z@. +.jT z@.z@.v%.F` vZ $ .w%.x%.uY *` a .oW #..a .a .#..{$.{$.I` * .yZ d .+#.* .%+.+#.%+.p#.+#.F .G$.y%.f$.7+.1#.F@.HX =V > .G .IX L` H$.G+.IX > .IX nV pT qW AZ AZ JX f` 9+.8%.SW JX AY f` aZ f` BZ H..I@.G@.!V 8Y ~V ~V ~{ &+ =+ &+ =+ ;+ =+ =+ D& &- $%.&+ ,+ %%.%%.T# U# U# U# ~+ z%.U# L+.U# L+.L+.b+.N+.N+.U# i` ,` i` N+.N+.,` jX E* N+.N+.c+.c+.N+.A%.c%.k` j` K..&%.O+.O+.O+.k` O+.O+.k` O+.n$.] .B%.IY e+.OX )..C%.Y#.^ .h+.l` !..l` !..l` !..!..hZ l` P+.-%.hZ e..,T e..e..,T ;Y hZ e..n .hZ e..u#.|~ n .u#./ .MZ HO w..D%.HO ot On 4I E%.Yb F%.mk :b Ac tb G%.H%.I%.J%.K%.Tb nc nc rc -d L%.jb %c %c a#.%c tc T+.M%.#c tN P@.U+.MI sf sf _N _N P@._N o+._N _N o+.8E R .7f Ac Ac k..$n 7f iz 7f 7f $n < .>c 7f R .$n iz $n $n $n Ac sf p%.fE _%.UY y` %W y` UY y` UY ._%.MO `` (j ]j _j /y TI nv cr 1N 7L Tn LB N%.YI `b O%.nA [~ 0q m@ s@ B= c# ). +. 5# A@ #. 4# P V T Y H K@ +% I z P@ 1& #= F ", +"]& # # J$ L$ ]& R@ + = = ]& # = ]& + + L$ + ]& # V@ Z, k) + > . # & . . ]& # . X! = > Q$ > & > T@ + = T@ . Q$ U$ & ; & $= H= S$ | 5- S$ !, P$ 2 N$ ; N$ & `@ | & ; ~ H= 05 > X@ & ~ { & ^ N$ N$ ] 2 X@ 2 X@ 2 4 1 6 X@ / J= 2 } } ## 2 X@ ( { 2 V~ 4 d d 6 } *# ,# a 6 a ,# k 0 z: a a a 9 [& ,# n j L= k e a' z: c{ |& L= h h {# 0- q p 5* -) Y$ _# ,> r s> ^# V| Z$ t t Z$ h p 4* {& F= t 6* {& 2; 1; #] z Y ^` tV tV HO ot c o+.Ac Ac 7f hE _N 8E 8E $n $n YN YN _N S..n+.*&.:q _%.C#._Z C#._Z UY UY C#.%W C#.9T w` WY (j hi GT uj ,f IP md WS aH S .=&.Yb ~d -&.;&.>&.o$ u@ -& v@ d# ^. A@ E@ G@ G@ V }; I@ L@ 1# M@ +% S P@ A Q@ +% I F ", +"]& L$ L$ $ ]& R@ + ]& L$ + $ 2) L$ + . p9 # > I/ ]& + + . > }, # & > $ . + L$ |* > Z, V@ - P$ - . > . # # o! $ ~ > ; $ > & > 2 > { ; ; & =' & S$ > & ] . ' ; | ; U@ ) & 8- ^ & - ) P$ N$ { H= P$ 7- 2 7- d [ 2 4 J= 6 d } X@ 2 /& { 2 <& : 7 5 6 b } 4 0 q> } D, ## d 6! 6! [& W$ a ,# i ~# n o 7 a' c k L= g ~# L= o c n 2, h c `$ n {# K= ;= n `$ m p % Y$ $] V| ^# n :# w F= 1; m K D b' #] 4* z #] /# G z M= M I I Z z z 2Z ,&.F= M q! $T V '&.z . V V .@.c- Oz d{ z .*I A: *I A: A: B..k#.#N XX )&.oY )Q ^P #N yS )Q )Q ^P RT RT _M )Q `I !&.9$.0$.AS hT ~&.{&.0X AS 4...` E` hT 4..BS 4..AS E` ]&.|Y ]&.D..[#.^&.dS ^&.F` 5Z ;X aX z@.0 .0 .6Z /&.N#.w%._W _W a .cX #..%Z #.._W %Z 6@.{$.d .d .xZ {$.d .E..%+.RE (&.p#.@#.3%.]$.;V y%.r#.sP c` _&.G..L` IX IX L` HX > .IX > .IX qW f` gX gX gX f` &+.AZ JX gX 9+.aZ aZ aZ )V I@.) .[U Y HO 5H [&.}&.]B ZV |&.uJ !%.fw 1&.W@.s .)f 2&.;s /w nc nb nc rc -d #H ze ~d %c %c a#.a#.a#.M%.ED #$.ED #c 3&.6L _N sf sf sf S..YN tN sf =M YN }i sf Ac Ac Ac 8E Ac o+.Ac Ac _N YN _N =M sf S..sf sf }i vV 4&.^j `` +R UY 5&._%.6&._Z y` JT %W C#.r%.`` (j ii KT kM fE dU 3R ZM Is ,o Kt iE ~d zf 7&.O% 1@ j- :. O- 5& '. b# )= R V T O= $> Y H S H$ b- I I Q@ x I A ", +"L$ J$ J$ G= J$ = + k) ]& . ]& = ]& V@ # 0' p9 # . $ ]& ' $ ' - S$ . $ + L$ ;b ]& 1* $ . Q$ . S$ - > ] > > ; R$ S$ U@ > H= ; H= # Gc > | N$ ^ # $ # { Q$ & { P$ ~ ) Q$ S$ Z! | Z, X@ ~ U@ H= { ) N$ 2 %= ] Z! | %= 7- 1 [ 4 ) { 2 *# 2 X@ } { 2 d J= ) 6 { / a $# ( -> 5 1 ( 6 *# a' 0 7 Y> K/ ,# 0 a' c ,# 0 ~# b Y> n s> h n 2, 0 n^ c ~# h W$ p ~# 4* -) ,> /# ,> Y$ @= G ,! w p W$ ^# E t m w B Z$ w /U a7 A$.2; G A /# JW z F= 1& a7 a7 T^ Z a7 A T^ T^ V 1& V V O@ z ..@.|# A: 5 .iI A: 3; J 8&.aV SO BX .Z (U qF #N ^P )Q ^P +Z ^P 3d +Z +Z )Q EN 9X {&.<#.0$.6B $N 9&.0&.1@.~&.1@.CX CX .` a&.$N 4..hT y@.y@.pY |Y b&....4Z 5Z D..5Z 5Z c&.0 .$ .z@.}+.M#.=@.M#.w%._W ^W #..a .++._W 6@.*` #..a .{$.8Z d .%+.* .d&.* .* .%+.e&.- .-@.g$.+#.c` pU f&.r#.0..I$.IX HS > .H$.Q#.> .L` G .}T G .G .PV JX f` 9+.5%.9+.AZ JX AZ I+.lQ AZ 9+.'@.)V !V !V 7%.g&.~V [U qT cZ UP ~V qT cZ ~V H .dR ,Z ,Z tW yO dR hX @P TQ yU OJ }L fR :K :K 'G :K 'G OJ }L fR :K q #M 3I `w Px qo `w Bl q CB x q x qo x GI .g h&.Cl kt Vr j9 n j9 >0 j9 `e 6< j9 kf gd 45 V5 v[ v[ 34 34 v[ v[ 34 v[ !8 D9 b^ 9) :_ )2 F{ F{ F{ ^' +{ 9) F{ 9) ]~ ^' ^' 9) f; ]~ s~ ]~ 0) f; q- q- f; Y{ .; f% +; 7= ;+ =+ ;+ 7= =+ =+ =+ ;+ =+ &+ !+ D& ;+ r- Y' i&.U# T# U# ^+ ~+ U# ^+ y* j&.^+ ^+ ^+ L .Y%.N+.a%.N+.k&.l .N+.N+.,` _$.N+.,` K .Y%.l .M .l&.k` j` k` O+.O+.k` k` m&.k` OX OX n$.&%.O+.p$.p$.n&.IY OX [$.IY l` l` !..l` !..!..!..P+.!..`%.;Y :&.o&.-%.hZ e..u#.;Y e..hZ ;Y e..hZ e..e..u#.e..6#.u#.u#.>%.>Y D%.D%.>Y 5H UN p&.q&.VW yQ r&.4G !%.@$.|&.s&.t&.u&.v&.w&.Sb ve mc nb nc rc -d gb >e #H %c %c %c %c ED M%.#c ED %c T+.sf P@.MI MI S..MI tN T+.S..=M S..x&.3&.8E _N .T _N S.._N _N Ac YN sf sf S..~%.S..Bz y&.ti vV z&.ii :q kY }j A&.B&.C&.1 .kY JT %W C#.r%.D&.E&._j cU eE w` ^F $O ZV KB n%.eP 2N Oj V$.F&.(@ 9@ {* w$ v@ ). -. X +. E@ 7# J@ E@ Y P H Z +% Q@ P@ K@ G z M A ", +"% ]& R@ G= .( = + <{ J$ + ]& ]& . & V@ M$ + + . + L$ # . . > + + + . - > #^ . ^& + 0' - > %= |* . Q$ $ U@ . - $ ~ ] & . ; X@ . | =' Q$ T- U$ N$ V@ ] S$ Q$ R$ Q$ N$ ] [ { Z! 2 Q$ 5- } *# ; Z! ) U@ ~ X@ ;# ~ ~ ~ 7- 1 { W@ ~ ## ; V~ ( /& } [ ## 4 6 ) X@ D, _ V) 7 9 e 6 6 5 d a ( ,# ,# ( [& a ,# ~# q> e a' {# h 0 L= r ,> [& 2, n h ;= r n r ,> 0 ,> `$ Y$ ,> 1; V| p F ^# p u n^ ^# B m t B {& G E C` N 2; z I G /# 8* E z 1& 8* I T^ JW n! 8* M c- KW Z c- .@.O@ o^ t%.0S Q 5 .3# L SO B$.B$.B$.:#.k#.#N r! WX ^P ^P `I RT Z .Z ..V G&.RT ^P +Z H&.9X H&.+Z 9X w@.7` hT AS CX $N E` CX CX CX AS CX CX .` z+.|Y pY 4Z ..l#.B .B .l#.B .<+.F` jT <+. +.^&.I&.J&.K&.b$.a .a .uY L&.#..%Z xZ a .#..E$.gV & .* ..%.%+.o#.E..+#.]$.]$.+#.D@.c` - .NV 4%.M&.L` K` 9..}T IX M&.L` HX G .G .HS 7+.L` qW nV qW Q#.f` gX gX AZ N&.O&.nV lQ AZ gX HG !R 1T H+.)V P&.cZ qT cZ qT [U sU $Y cZ sT NR g` 2U 2W ON zO 5P 5P K+.XP TQ ^S fR 'G OJ OJ fR OJ OJ fR OJ :K rC #M :K qo #M RG qo qo q q x `w )J q `w x Tx ch q q Vr >0 T3 .g T3 gd gd `e gd T3 j9 T3 V5 6< 34 `e v[ v[ 34 v[ V5 v[ R( 06 F{ +[ 06 F{ 9) 9) ^' F{ 9) F{ ^' ;] Z{ ^' F{ f; q- f; ]~ f; (! q- ^' 9) f% u& +- .; 7= =+ ;+ *+ 7= ;+ ;+ ;+ =+ =+ ;+ 9= =+ ;+ r- &+ A& ^+ ^+ J@.^+ (+ ^+ U# ~+ U# U# L+.L+.e@.M+.,` a%.M+.N+._$.,` N+.,` _$.k&.i` Y%.K..:$.f@.f@.O+.O+.&%.O+.n$.O+.k` 6W k` O+.m&.O+.Q&.O+.[$.] .R&.Y#.[$.-#.!..!..l` l` !..l` P+.!..!..!..i@.e..i@.Z#.S&.i@.hZ hZ hZ hZ hZ hZ hZ u#.e..>%.u#.>%.u#./ .e..e..6#.HO HO /R 5H uK T&.U&.x$.V&.e Hd Aa =*..* 2@ l@ -& ~. ). x@ R A@ C$ &. V C$ }; 2# H M N@ +% H$ A P@ I M /# ", +"R@ + ]& 5_ + + $ ]& ]& ]& + + . + $ V@ # + + # # R@ # = R- % > > $ V@ > $ 5_ - > .( Z, . & # V@ > > Q$ * ] > $ |* = > > $ . . > $ . & ; Z, $ ^& | ; > & ; ; ; . | ~ . { [ Z! . ] *' Z! | N$ ; & N$ | N$ [ ~ [ 4 : { ] ( [ [ 2 /& d D, [{ ,# < } a e 6 < j } $# b $# ,# 0 :& ~# vk 7 ,# W$ ~# h ~# 0- ~# ,# o o 0 p q h K/ L= r % ]# p r c{ Y$ h 2, 1; n Y$ Z$ Y$ `$ /# Y$ D /# /# {& :# z F= 1& {& G z {& G z 1& 1& 4* w z B A 1& n! c- I =X K c- O@ 3# c- PT A..5 .y .-*.c- L ` ;*.-*.>*.iU I#.qF #N ;$.BX pF 'Q ^P ,*.,*.3d ^P >$.#N bV Z .sZ mL 0$.1@.0&.'*.D` +@.'*.CX CX AS hT )*.AS aS .` E` a$.pY #@.]&.7 .@Z tM B .l#.!$.F` !*.lU ~*.L#.aX A@.x%.{*.0 .%Z _W ++.U%.=@.a ..%.U%.#..6@.d&.yZ ~$.xZ ]$.F$.]*.+#.-@.E..E..@#.4Y p#.]$.^*.;@.G .y%.0..> .IX L` }T =V IX IX IX G .Q#.5%.PV pT [W 9+.JX f` &+./*.AZ AZ pV qW AZ AZ SW pV K$.7Y , .~V 8Y ~V 8Y [U 2U 2U 2U }Q {S @U sT NR jS +P (*.5P _K _K TQ yP fR iN OJ fR #P :K 'G OJ QG OJ .F q _*.QG q F 6O q qo #M q Tx x x qo q q kt ch HI YK kf j9 .q >0 gd j9 Kn uo T3 j9 `e U3 v[ 34 :*.U3 v[ v[ 6< 6< 34 +[ 34 b^ +{ +{ b^ 9) d; 9) d; 9) d; 9) ;] 9) 9) F{ 9) q- z& d% f; M, ;] q- t* u& /' +- M, $- ;+ =+ ;+ ;+ &+ &+ =+ 7= -+ -+ y& !+ !+ <*.'+ &+ L+.L+.J@.U# ^+ ~+ L+.L+.L+.L+.L+.L+.j&.[*._$.b+.}*.N+.|*.N+._$._$._$.1*.N+.s#.2*.M .c+.5T K..6W ,..k` n$.c%.O+.O+.O+.O+.n$.O+.n$.|$.|$.] .p$.)..^ .p$.h+.!..IY f+.!..l` P+.!..P+.!..-Y 5#.,T P+.3*.e..;Y ;Y e..u#.u#.e..n .;Y >%.>%.hZ e..e..6#.f..4*.<&.HO tV o` 5H UN 5*.;j o..6*.7*.Vk 8*.,g j%.s&.9*. *.0*.a*.b*.ye vd +c nb nc nc rc =d -d sc xK -d !d %c jZ tc a#.#c a#.a#.a#.a#.c*.c*.c*.n+.n+.ED S..d*.5j T+.T+.Ac sf sf Bz tN S..MI S..S..ti kH vV yK a#.e*.e*.f*.g*.hi Wg WY w` +R h*.i*.j*.8w JT JT 8w HP kh }j dL k*.tv cE l*.Ks /T p..dv 7f y$.1b La ML %@ X% i@ {* (. ). z@ +. (* G@ T P Y M@ O Y M P@ M S S m) @% I w ", +"# =[ I/ =[ # L$ + = + . ]& + [* + ]& ]& S$ . $ 0' !, ]& k) # # = + # . $ k) . V@ * # S$ $ Z, |* & Q$ > U@ S$ Q$ Q$ ] ] Q$ - = . - . ; $ ~ & - S$ $ Q$ > V@ > o! X@ 2 { { > H= | U$ ; ; ^ ] ] ~ ~ N$ X@ Q$ 2 Z! W@ | X@ } { 2 } / ~ ~ } ## | 8- [ 6 ( ( Y> ## ~# q> 6 ## < d 6 ( d b a K/ e e 0 ,# a m*.9 c ~# a' c z: e e ,# r v r n n h 0- `$ % L= `$ ^# m L= #] n^ q F 4* `$ w Y$ t }& 0- /# /# /# :# F= w {& $S ^# E G /# 1& N a7 8* ~& z..n*.T^ %.hZ >%.hZ e..e..i+.e..u#.6#.i+.;%.v#.>Y HO tV vK r0 D*.Df Q..bc E*.1&.S+.y#.R$.Y&.F*.G*.H*.I*.J*.Vb [f >d te +c +c mc nc rc )d rc -d >e gb gb %c %c tc %c %c #c [R 5j $c [R a#.[R [R kH ti [R 8L n+.YN S..tN Bz ED ti kH ti n+.[R [R [R [R a#.[R [R :f K*.]j :q fE w` L*.M*.N*.Qo O*.KT ni (Z +R }j dL +R P*.Q*.wv gE Kf 'r *n Is zC MI 1b Wa R*.6E c$ S*.(. d# &. -. A@ }; H@ Z D$ L@ P }; D$ H$ P@ P@ K@ G I @% Q@ G ", +"# K$ + + % # = 5_ R@ + L$ + ]& ]& ]& $ + 0' 0' + + 5_ ]& J$ L$ ]& # + T@ . $ |* [* L$ U@ $ T*.= = + $= & > 0' = & $ $ ; . Q$ U$ ] & & *# & P$ U@ ] Z! | ] > . |* & H= ; & ) %= ^& [ & & ^ & N$ ) | N$ ~ 1 2 7- ( [ /& ) | 2 ] ) } Y@ /& X@ ( ~ 5 6 3* q> ( a 6 $# -> { Y@ a j 9 ( $# Y> 0 8 ~# a M' K/ b V~ a 0 c{ 0- s> h n 0- W$ c ~# ,> s> L= 2, h s> ;= 1; c{ #| _# Y$ `$ :# @= 1; m :# 4* :# b' U*.F= {& B z w [# G a7 /# n! 1& z A I O@ O@ I T^ M T^ 1& #= T^ V AR V c- 3# V V (#.y .L |# L oY qF *I A: (U oY #N BX oY #N 'Q +Z RT )Q DN )Q G&.RT )Q RT +Z EN 9X 9$.bV 3@.hT D` 6B E` CX AS AS 4..hT CX :M 9&.a&.y@.pY pY |Y `X !*....$ .0 .5Z B .z@.N#.$ .s*.<+.V*.C ..#.W*./&.oW #..U%._W ++.*` ++.*` ++.d .]*.X*.C@.E..-@.x*.%+.%+.F$.+#.+#.Y*.D@.F$.Z*.e .;@.G$.[W 7+.HX H$.7+.L` Q#.L` nV > .> .X%.gX 8@.G+.AZ f` f` AZ f` &+.AZ AZ 9+.HG )V `*.S#.qT =.~V 8Y ! .) .~V cZ ~V O` sU U NR wU 2U NR VK +U TQ Q` 5O TQ 5P ^S yU jN OJ OJ }L }L }L }L :K OJ ;w FI ;w qo q F CB q x qo x `w q x q x qo .g I .DB Vr .g .q .g ch AP d3 45 T3 S3 T3 T3 u^ 6< 6< v[ =^ 34 v[ V5 !8 u^ 54 /1 9) A/ 54 F{ ^' 9) F{ d; F{ ^' d; 9) F{ 9) F{ 9) f; M, q- q- ]~ t* t* q- q- 0) @- R# ;+ &+ g% v& =+ &+ &+ &+ -+ &+ =+ =+ Y' Y' h; '+ h% E& a+.y* L+.L+.j&.L+.j&.j&.U# L+.L+.L+.M$._$.L .U# ,` i` N+.i` N+.k&.i` l .,` f@.c+.c+.k&.4#.O+.k` O+.n$.k` O+.OX OX n$.n$.k` OX n$.j@..=.L..P+.[$.Q&.] .!..!..!..7W !..P+.Z#.-%.P+.Z#.Z#.;Y S&.+=.Z#.hZ hZ hZ e..e..hZ hZ u#.e..u#.e..u#.e..@=.u#.#=.g%.tV tV KY zT $=.yh %=.&=.*=.==.,g -=.s&.;=.>=.G*.G*.,=.'=.)=.vd vd Ad vd +c {d mc nc nc rc rc gb rc #H ~d %c ~d $c %c [R %c 8L T$.T$.%c [R [R [R !=.5j [R [R n+.T+.[R [R n+.$c [R [R [R [R $c $c $c yh yh ~=.{=.]=..X ]j WY fE `` !n ^=.w` x` y` dL _Z kh w` `` MO dw [x eE QD xf MT Jt aI Is 8E YI 3b /=.f) }- e@ u@ D= ). ). !. 5# G@ Z 1# T H L@ Q@ 1# K@ Q@ M@ A M O@ S I ", +"0' # # J$ ], K$ ]& L$ + % ]& <{ J$ J$ + # [* = =$.# E! k) + . # . # V@ . + ]& V@ ; = > . $ = . $ ]& U$ ; ]& & & > - . U@ Q$ $ ^& $ o! & ; ; > ] & & ' - ; ; ; . . & ) & N$ 2 | | ) | o! [ { | ) { | X@ [ 2 ( Z! 4 `@.{ /& 6 d 4 2 } X@ { [ $# &# [ D, D, 7 $# 1 7 d 5 a } ( 6 Y> &# 6 N' g 0 Y> ~# e 0- ~# c e i ~# c !# c tA ~# Y$ 1; h _# ,> m ^# % % t Y$ t t t 2; 1; `$ /# /# 2; ^# F= :# D #] F= t {& E z G w 1& 8* O@ E; T^ I KW 1& .@.O@ 8* 1& 1& T^ V c- |# c- .@.5 .y .>z :#.L J SO iU oY aV SO 3d j#.k#.(=.#N )Q RT +Z _M #N _=.RT Z .RT Z .+Z AS +@.sZ CX sZ hT $N .` hT CX .` E` .` 4..AS :=.9&.4..3..tZ pY Y$.Y$.<=....B .B .<+.z@.$ .z@.[=..#.c$.sY V*.}=.|=.a .a .1+.a .cX ++.* .e$.#..++.& .E..d .* .G$.]$.d .* .F$.-@.+#.-@.]$.G$.1=.2=.G..(&.K` e .M&.H$.e .IX L` PV > .> .> .5%.I+.f` JX AZ AZ I+.9+.9+.JX f` 9+.AY &+.aZ )V UP , .K$.[U ~V ) .BY cZ ~V 8Y sU [U BY 1U 3=.P` MR 9%.DZ qK {V TQ jS ;T @P yP 'G :K 'G :K QG fR OJ OJ :K }L }L F #M az F q x ;w qo Bl `w q Cl q x x Td CB so Vr .g .g .g ch T3 4=.x/ __ d3 gd gd u^ v[ v[ v[ v[ V5 V5 54 !8 6< Sc d; /1 w^ +[ b^ ^' 9) F{ ^' 9) F{ d; ^' ^' ^' 9) 9) f; f; z& f; q- t* q- (! 0) d% u& v* ;+ =+ $- y& =+ ;+ -+ ;+ z& ;+ &+ g% =+ Q# =+ 5=.-+ 6=.U# E& T# L+.L+.U# L+.j&.j&.^+ L+.j&._$.k&.7=.L+.a%.1*._$.,` ,` _$.,` 8=.m$.V#.m$.4#.9=.m$.,..O+.k` )T O+.0=.n$.OX n$.O+.n$.n$.OX o$.o$.a=.P+.Y#.OX R&.Z%.Z#.l` P+.P+.P+.-%.Z#.Z#.S&.Z#.i@.5#.-%.:&.5#.,T e..,T u#.u#.>%.hZ >%.n .MZ |~ u#.@=./ .IW NL >Y MZ LM NZ b=.c=.d=.s .e=.Ag f=.g=.h=.i=.j=.j=.G*.>=.k=.Sa `b [f vd vd vd Ad l=.l=.wd nc rc =d >e gb >e ~d ~d gb %c yh %c vV jZ [R [R [R [R [R [R [R [R [R e*.e*.[R [R [R [R [R [R yh $c $c yh yh yh zh -d $e m=.dk dk fE `` !n MO kY r%.C#.C#.kh +R fE :q `` `` 2G /n 2G jA n=.:..YZ +y MC LB Yb Da o=.]- a{ >* ;& v@ ~. ;. 5# E@ X L@ H P S P@ J E$ M 7* P@ M I I G G ", +"J$ + # J$ )~ =[ 5_ 0' L$ R@ ]& L$ L$ 0' # = ]& $= # ]& = $ . ]& V@ ]& ' . . . + $ Q$ - + #^ P$ Q$ M$ $= - [* - ^ = & > . . + ; S$ S$ ] ; & 5! ] ; ; ! ; = & # ^& $ ^ > & ; ) & Z! 4 R$ | 2 N$ & N$ > P$ X@ %# H= { | ~ *# ; { ~ | | 1 W@ *# ~ Z@ ~ } 2 D, 4 { [ / ( 6 a { -# 9 9 ## 6 e a ~# 6 0 ,# 7 c c ,# e i o !# a ~# L= Y$ e 0 e z: p s> `$ u c{ _# p |& q L= % Z$ ;) `$ /# p #] q /# @= D {& B ^# {& 2; {& {& T^ F= @ .#= I A z G T^ 1& T^ '&. Z JW 8* AR c- V V 0S =X p=.d{ c- A: 8* 3& Oz 0S AX (U A: A: qF ^P B$.I#.I#.)Q RT )Q p*.YX q=.RT ^P Z .sZ H&.sZ 1@.bV 9X $N hT AS hT AS CX .` E` E` q*.AS |Y 9&.E` z+.|Y z+.pY ...r=....CR ` .<+.<+.8 .$ .$ .c$.v*.vZ %Z s=.t=.u*.1+.u=.*` *` *` E$.d&.6@.*` 6@.d .v=.E..%+.w=.C@.p#.-@.]$.+#.]$.%+.p#.;@.W%.r#.HS y%.7+.> .HX G..M&.}T L` Q#.> .X%.> .JX J$.JX X%.&+.x=.f` 9+.JX JX f` !V f` aZ AZ 7Y #Y y=.[U !V ~V cZ cZ qT cZ sT sT [U #Y {S 2U sW VK ,Z TV OR iJ 5O TQ _K #U :K iN 'G fR QG }L OJ 'G 'G |Q :K #M FI pC `w SG qo q F `w Bl x q q `w Tx `f x `f qo .g Vr j9 j9 .g j9 d3 T3 j9 T3 2H j9 45 v[ 6< v[ 34 34 6< 6< =^ 34 H| 06 <] z=.a^ 9) Z{ 9) ^' d; 9) ^' 1> 9) ^' F{ F{ q- q- s& F{ f; +- f; q- f; f; #+ .; @- R# &+ ;+ ;+ ;+ (' =+ &+ &+ ;+ &+ P# ,+ =+ <*.>+ J@.d@.U# z%.i&.~+ i&.L+.j&.j&.j&.L+.L+.A*.M$.N+.i` A=._$.N+.N+._$.k&.M$._$.k&.B=.b%.m$.8=.s#.C=.&%.O+.n$.O+.0=.Q&.n$.D=.n$.[&.n$.OX E=.>#.p$.R&.^ .^ .g+.R&.l` l` P+.Z#.P+.P+.P+.Z#.F=.Z#.;Y ;Y P+.:&.Z#.hZ ;Y hZ hZ e..hZ e..u#.>%.6#.6#.6#./ .@=./ .e..@=.v#.zT G=.PX _X s&.H=.I=.J=.K=.L=.;=.M=.j=.N=.O=.P=.Q=.|b R=.[f gc ,d S=.Ad Ad +c ;d nb T=.nc &&.rc rc gb )d jZ ~=.-d yh yh [R yh %c jZ yh %c [R [R e*.[R yh [R [R [R [R [R $c e*.yh yh jZ +l >e -d -d =d $e U=._j dk :q `` WY fE _Z y` y` .fE V=.&*.WY &W :q 1G W=.ou /n ew ov X=.=Q jz Is /w Y=.Z=.`=.W9 d@ s@ O- &. . A@ =. G@ X C$ Y J S H$ S P@ #= z I z z w G ", +"L$ =[ + + L$ K$ =[ 0' L$ L$ ]& ]& + # > # ]& V@ + ;b = $ $ = + + . k) $= # ]& $ . $= # . $ > T@ $ > ]& . > # . Q$ ; U@ S$ & & ; ; -.; Q$ ] ; S$ . ] 2 N$ ~ b{ $ | N$ Q$ N$ . | ~ [ R$ { X@ > W@ ; ~ N$ { { [ 2 7- { | J) [ 2 1 2 $# 2 [ ( *# ( 6 4 D, / &# => { D, $# $# { 6- b } } d 6 Y> k d Y@ b !# n ;= g i 0 6! e ># o ~# z: 9 0 ~# s> Y$ p L= h Y$ 0- r Y$ `$ q Y$ D :# C 2, Y$ t ;= D /# b' u #] w z F= b' G z I a7 z 1& #= .-.F= JW #= T^ ~& $T M AR AR 8* V c- .@.1& v@.HV 0S A: 0S ` v@.5 .AX A: *I *I BX +-.I#.+-.yS .Z ^P 3d )Q yS )Q +Z )Q R%.G&.@-._M !&.+@.RT -X 1@.CX .` # .hT .` 4..E` E` hT aS a&..` a&.E` ` .pY 4Z Y$. ..5Z D..M#.0 .$ .t*.#-.0 .#-.OW #...#.$-.t=.#..%Z %-.#..*` *` xZ a .E$.&-.d .E..%+.d .o#.E..p#.*-.]$.%+.+#.J` 1=.=-.F$.;@.oT 5+.}T IX HX IX G .HX G .--.Q#.G .[W qW AZ f` qW f` f` &+.f` 9+.9+.9+.f .8+.AZ AY lQ ~V ) .I@.a..#Y 8Y 8Y ~S ~S , .sT U .U +P +P sT 2U OR 2U AO yU iN @P TQ @P 'G 'G OJ fR QG OJ RG fR :K OJ :K RG |Q %r q 3I 3v Bl )J q x q qo q q q q kt kt `f ch Vr El j9 ch d3 j9 gd 4=.T3 gd j9 U3 v[ v[ 34 v[ 34 6< v[ 6< 6< H| D9 X/ A/ w[ ^' <] ^' 9) d; ^' F{ d; ^1 d; 9) ^' 9) ^' q- q- ]~ d; f; f; q- q- (! /' e; $- ;+ ;+ ;+ &+ &+ -+ -+ =+ &+ -+ -+ Y' >+ %- ;-.6=.A& L+.j&.>-.,-.U# ^+ L+.U# ^+ L+.j&.j&.b+.k&.,` a%.|*._$.N+.N+.'-.K@.N+._$._$.5T m$.4#.)-.V#.n$.n$.n$.0=.OX n$.O+.n$.O+.Q&.n$.n$.n$.n$.R&.p$.C%.!-.Y#.R&.!Z P+.~-.l` Z#.-%.P+.Z#.Z#.-%.e..e..:&.{-.Z#.hZ e..e..u#.e..e..u#.@=.e..6#.6#./ .6#.6#.u#.>%.@=.MZ &U ]-.^-./-.(-._-.:-.<-.[-.,y }-.|-.1-.2-.3-.4-.5-.6-.Be Sb ye S=.S=.Ad =e +c +c nb lc nc rc rc nc =d -d ub jZ -d +l $c yh yh T$.#H :f [R yh e*.e*.[R [R $c $c e*.%c $c $c #H yh #H #H =d =d rc nc wd Bf 7-.Wg :q `` .+R +R C#.C#.+R =L dL w` 8-.C&.fE dL $W 9-.ou zJ DQ _j Lf Gd dW (w >e 0-.|b a-.NL e@ s@ x@ o) x@ &. . B$ T L@ M@ S J N@ 1# A I A B P@ A G w ", +"R@ L$ !, K$ 5_ + K$ ]& <{ R@ R@ ]& 0' ]& V@ 1) + ]& # ]& $ + + ]& Q$ + & $ + V@ > $ . # Q$ Q$ - + $ ^& . . | S$ . = & T- - . # =' ; | ^ o! & $ | ] . ] S$ ' ; Q$ (& ~ . $ Q$ | { Z! { ~ S$ - { ; | R$ N$ S$ ~ { X@ &= H= 2 U@ ) *# 4 @# Y@ 7- *# | X@ [ ( 2 6- [ } { ,# 6 6- b ,# 6 a b Y@ 6 d d 0 b 3* !# 6 s> 3* a k L= 0 i L= ]# [& ~# ~# ~# K/ c h k q K= s> m o :# m p m m Z$ 4* % ^# % G F= /# 1; w G F z m /U a7 n! z C a7 K T^ z z 1& c- KW AR .@.8* O@ T^ V M .@.n! d{ c- Z..:#.b-.:#.o*.*I *I qF A: p*.I#.I#.BX c-.(=.YX ^P #N ^P RT )Q ^P Z .@-.G&.pF @-.d-.e-.-X sZ AS hT CX {&.E` 4..4..hT E` 4..E` f-..` E` 9&.4Z $@.pY Y$.!*.qY ...^&.B .g-.#-.$ .S%.$ .0 .aX [=.h-.i-.1+.=@.1%.*@.%Z xZ ^} E .j-.{$.o#.+#.%+.p#.k-.o#.* .-@.p#.X*.E..-@.eX F$.l-.6+.L` _&.h$.L` }T HX HX H$.Q#.Q#.X%.X%.}T 5%.[W [W > .5%.gX 9+.9+.AZ I+.I+.AZ +Y 9+.AZ 6%.H@.! .qT #Y cZ [U `T sU ~S qT {S [U cZ 1O $Y MR 2U jS hN yO XP sK jS XP rK 'G OJ yP :K rC }L }L fR :K OJ -w .F jJ Px q GI RG -w q ;w q Bl x `w q Cl qo .g Vr >0 d3 ch kf j9 Vr j9 j9 U3 n u^ j9 T3 u^ u^ v[ v[ 45 u^ 6< 6< 6< u^ +[ :_ u^ b^ 0] !{ 1> ^' d; ^' ^' ^' 9) ^' ^' ^' ^' ^' 9) t* q- F{ f; +- q- t* +- t* #+ .; g% (' =+ 7= =+ (' &+ ;+ ;+ &+ P# -+ B& A& g; m-.n-.A& d@.L+.y* L+.L+.j&.L+.o-.3#.L+.U# j&.|*.N+.k&.j&.a%.N+.,` k&.)-.k&.k&.k&.)-.N@.m$.4#.p-.9=.&%.&%.O+.O+.n$.0=.OX n$.n$.n$.n$.OX OX q-.OX ] .e%.P+.r-.s-.f+.l` P+.Z#.P+.P+.Z#.Z#.P+.P+.e..e..:&.-%.+=.hZ >%.e..e..e..e..>%.u#.u#./ .>%.>%./ .@=./ .e../ .f..^` t-.j*.u-.4-.v-.w-.x-.;=.|-.9*.y-. *.z-.A-.k%.B-.C-.Va D-.E-.Yb ob S=.ob pc pc +c yd nc nc nc nc nc =d rc =d =d -d jZ #H yh -d jZ -d e*.#H jZ yh $c $c #H #H $c [R ~=.-d jZ yh ub rc -d nc =d *e ve $e F-.:q fE kh kY _Z _Z _%._Z .w` Wg *l +R !n w` 8w aw tv |j Nh QD ne Ih cr 1N ZM 8L G-.Ma H-.6$ m$ m@ d# x@ &. .= E@ z$ T |; ` K@ H C, H J P@ Q@ x N z M w ", +"J$ #S + R@ L$ + jP 0' J$ L$ 1) = # L$ . + > # # L$ # ]& $ ]& + [* L$ + . ; . ' S$ $ . $= + > $ . k) > U$ & . . ; ; ; . ; o! & 2 ) N$ - S$ |* & ) ] Q$ ; & ' { ; & H= R$ ; ~ 4 | [ & [ & N$ | ~ N$ | 7- %= X@ | [ | $# 2 ( ## $# 6 $# 2] { R$ $# V~ /& { / B; 1 ~ 5 7 { ># 6 &# { 7 7 0 ~# 3* ,# 6! 3* ~# d ~# c{ L= e n h n Q{ L= g c h C; {# n h t' n `$ p |& q ^# `$ /# /# D s> 4* ,> /# G {& 4* w B G z G .[W JX X%.gX I+.f` X%.f` f` AZ BZ JX 9+.6%.7Y 7Y lQ 7%.[U ~V ~S [U ~V S#.2E sT }U 2O {S NR {S P` 3O NN 5P iJ :K 5P TQ 'G @P yU :K }L 'G :K OJ :K QG OJ #M F jJ 'G `w !G RG Vi RG RG Bl q Cl q qo q so 35 Cl so fd kf T3 to to d3 d3 Kn U3 j9 i9 kf `e 6< u^ gd U3 v[ 45 6< /! 6< R( /! D7 a^ <_ 2{ a^ ^' 9) ^' 9) F{ ^' ^' 9) 9) 9) f; t* f; +- f; f; t* t* s& q- q- 0) s& $- g% d% f% -+ &+ ;+ &+ )+ &+ -+ -+ Y' -+ -+ T-.U-.V-.U# V-.$; j&.j&.j&.j&.j&.y* A*.^+ j&.M$.N+.M$.A*.M$.k&.k&.)-.k&.1*.)-.m$.:$._$.8=.8=._$.W-.8=.O+.n$.n$.OX D=.OX OX OX n$.O+.n$.Q&.|$.Q&.n&.h+.!..F=.e%.P+.f+.!..P+.Z#.Z#.S&.!..P+.-%.-%.5#.-%.X-.-%.:&.e..>%.u#.e..hZ u#.>%.6#./ .6#.@=.e..6#.>%./ .MZ r0 Y-.Z-.`-. ;..;.+;.@;.#;.xJ $;.%;.&;.*;.=;.P=.-;.;;.>;.,;.Vb Ff [f ,d ,d ve =e ve nb nc mc mc wd =d =d -d =d +l -d -d yh #H -d +l #H +l +l yh $c #H T$.#H #H #H yh jZ $c #H ub =d rc =d =d nc nc Og wc li :q `` dL .w` w` w` dL kh `` ';.hi WY fE WY x` ^y |j ]n 3q XM );.4f )g De * . = > + Q$ = - k) $ & U@ Q$ $ # $ ; . - & N$ U@ ; H= Q$ > ] > > > $ ] ! & Q$ ] ; ] ; ~ ) Z! R$ ; S$ ; ^ U@ ; | & [ X@ ~ U@ ~ { ) 4 [ /& 6 [ W@ { | { Y@ { ~ { ( [ 3* d &# N' Y> } ,# k *# ~;.5 i } {;.q> 3* 0 a ~# a D, c n K/ o h {# >> {# 9 c s> n Q{ _# s> c{ Y$ L= 1; q p u s> t y..,> $] F % w y ,> % F= w G a7 C` F= B I w N G 4* x I F= z I V 5* JW /U HV ;O n! c- P@ $T 0S 3# M x .5 .oY aV *I Q :#.-*.SO iU iU ];.3d 3d BX .V +Z )Q )Q Z ._M ^P RT RT G&.RT bV _M ^;.RT AS $N $N 0X /;.CX a&.hT AS a&.AS .` 4..a&.4..K#.7 .pY #@.iT #@.<+.B .<+.F` c&.$ .6Z N#..#.0 .(;._;..#.H` D$.#..#..*` L&.++.& .*` {$..%.w=.%+.* .xZ %+.E..:;.E..+#.d .E..6+.+#.p#.+#.6+.1#.]$.9..}T HX IX }T =V > .}T L` L` 5%.G+.<;.gX JX AZ f` gX qW JX [;.AZ I+.9+.I+.gX @Y 8Y #Y };.[U [U [U rU qT 0 i9 S3 gd U3 T3 T3 T3 v[ v[ 6< =^ u^ 6< v[ u^ u^ 6< u^ o] 06 9) :_ X/ ^' 9) ^' d; ^' F{ ^' ^' ^' 9) 9) 9) q- q- c% f; t* t* t* f; t* t* .; #+ O# %- u& e; ;+ =+ ;+ -+ ;+ -+ -+ -+ &+ &+ -+ n-.<*.&+ A*.L+.1;.A*.L+.A*.U# L+.j&.B*.j&.L+.a%._$._$.B*.'-.b%.k&.)-.N+.k&.k&.m$.:$.2;.8=.C=.m$.k&.8=.&%.n$.k` n$.n$.Q&.O+.n$.Q&.n$.OX n$.|$.OX [$.n&.P+.)...=.!-.f+.h+.!..Z#.-%.Z#.S&.+=.-%.Z#.5#.5#.Z#.+=.:&.e..e..u#.>%.3;.>%.e..@=.6#.@=.u#.3;.6#.4;.v#.i+.lX 5;.6;.7;.8;.9;.0;.a;.b;.c;.d;.N=.G*.G*.e;.f;.*;. *.g;.Wb db Vb h;.i;.E-.ob =e pc te {l nc nc rc nc nc =d nc rc -d =d -d -d #H -d -d +l jZ #H $c zh #H -d ~=.#H +l #H ub -d =d =d nc *e we nc _f fe ue tS (j fE dL .kh fE WY :q w` _j X .ru (j Wg dk C&.j;.PD dw /n k;.KL (j fI MT JU #B xe 0H l;.]; & s@ v@ -. F@ 5# +. .= 2# 2# U E$ H +% N@ P@ Q@ Q@ %> w ^# D D ", +"`Y I/ I/ $ I/ $ L$ R@ + 0' L$ }, ]& L$ ]& .( # ]& # T@ o! ;b > + $ ' !, ]& $ V@ ' & Q$ ]& !, . . - %= ' & # & N$ > . !, - > A; $ ! & & M$ ; R$ o! > U$ & ; ^ ; & . X@ 2 | | S$ . ^ ( ;# ~ S$ ' ; | 2 P$ ~ | 4 / } ~ ) N$ ~ 2 ~ < d 1 1 ( ) N$ [ 2 ) 4 ( ## / 5 $# 0 ,# 2 ,# tA [ &# 3* b 0 ~ ,# W$ 0 tA d {# |& ~# 0 {# n !# n 0 n a K= h p c m ^# m s> ;= n Y$ K/ `$ p ^# 1; q Z$ D p F= :# t 1; {& m t w m z {& M= F= a7 /U z W) z w .Q#.Q#.PV f` gX qW JX 9+.gX f` f` AZ &+.AZ f` aZ #Y 0 x so .g .g S3 kf .g T3 j9 __ __ d3 j9 T4 6< 6< tg v[ u^ 6< 6< 6< 6< 6< o] B_ +{ :_ a^ b^ 1> d; d; ^' ^' ^' d; d; ^' !{ (! d; t* f; d% q- t* t* t* t* q- f% /' u& e; g% d% ;+ ;+ ;+ &+ &+ -+ &+ P# ;+ -+ Y' -+ T-.-+ x;.,-.y;.1;.U# j&.U# U# L+.L+.A*.A*.a%.,` 5T b+.z;.)-.)-.N+._$.)-.s#.W-.p-.W-.C=.C=.4#.m$.8=.l&.OX OX OX n$.D=.n$.n$.OX Q&.OX n$.Q&.Q&.Y#.p$.h+.~-.a=.f+.-%.P+.-%.-%.P+.-%.Z#.!..-%.A;.:&.hZ +=.+=.:&.u#.e..e..>%.>%.u#.u#.u#.@=.u#.i+.>%.3;.R* i+.e..o&.B;.C;.D;.E;.F;.G;.H;.I;.J;.K;.H=.xJ j=.D;.j=. *.L;.M;.N;.:g Vb Vb E-.Ub ob [f vd pc vd we ,e {d nc =d rc rc =d =d rc =d =d #H rc #H -d -d -d ub #H =d -d #H -d wh O;.=d =d nc =d =d Q$ ; - & Q$ > > U$ - U@ ; ' & ; | o! . > N$ Q$ ^ & Q$ [* ; & =' ^ . {c ] ~ & } ~ > | [ | ; | 1 ( X@ Z! 2 8- ) ~ 2 { Z! $# d : I= 7- 4 d ( N$ < 1 a a 1 ,# : < 5 6 [ Y> d ,# 0 b 6 ,# !# a L= 7 ~# !# i L= h a e L= n r ~# n n ^# k ~# o 1; o h k q Y$ s> r `$ m t m {& q :# % z b' 2, G :# :# F z F= z )> w a7 n! I x I O@ T^ .@.F= M c- #= H$ .@.O@ V Z V 3# .@.c- c- d{ SO y .i5 A: A: oY 0S U;.Q yS )Q y+.,*.(U +Z yS #N Z .^P )Q )Q _=.+Z 9$.1@.1@.<#.H&.9X V;.6B W;.<#.X;..` hT 4..E` E` 4..E` 9&.+` 4Z l#.` .f-.z@.4Z S%.Y$.s*.z@.Y;.F` M-.Z;.0 .K&.I&.I&.A@._;.@..1%.s;.L&.*` 6@.d .xZ E$.&-.o#.`;. >.E..+#.%+.G$.]$.]$..>.;V -V oU S-.y%.W%./$.l-.+>.H$.e .L` }T HX }T --.G .5%.pT G .[W f` @>.qW f` I+.9+.gX f` AZ AZ g .gX AZ &+.[U #>.BZ ) .[U qT ._K PN %Y TQ ]S iJ jS 5O yU XP :K OJ }L 'G 'G OJ 'G :K :K #P qC 3I Ey ;w |Q Bl 3I Px Bl Ey 3I qo `f q qo -w x >0 ch TG Jn i9 .g j9 kf .g kf S3 45 6< 45 d3 =^ x/ u^ u^ 45 v[ =^ v[ 6< 6< 6< +[ :_ <] +{ +[ a^ w^ d; d; F{ ^' 9) 9) ^' 9) d; z' 9) s& q- $+ 1> t* q- t* q- t* H# u& .; .; ;+ x& =+ ;+ -+ ;+ -+ $- g% P# %>.-+ !+ >+ &>.-+ *>.U# >-.1;.A*.A*.A*.B*.j&.j&.A*.=>.=>.[*.k&._$.[*.'-.k&._$._$.k&._$._$._$.b%.:$.->.8=.A%.m$.&%.n$.=#.n$.n$.D=.n$.n$.n$.n$.Y#.OX Q&.n$.OX p$.)..h+.F=.;>.e%.P+.P+.S&.P+.-%.Z#.>>.P+.-%.+=.hZ 5#.-%.+=.o&.e..>%.u#.u#.e..u#.|~ @=.6#.NL >%.u#.e..MZ ]` ,>.'>.Y&.G;.)>.!>.~>.{>.]>.^>.$b />.(>.G*._>.*;.*;.v&.Rg :>.<>.zf |b Vb Vb `b Yb gc Ad ve [f {l yd nc =d nc nc =d nc =d =d =d =d -d +l jZ -d -d #H jZ =d =d -d ub %e xe &e nc nc =d nc mc ue ue kc kc Tl :j :q dL dL +R _Z _Z %W UY UY kh +R !n Wg Wg WY GT ou [>.k*.J=.}>.ji =t .e :..|>.[X LB 1>.2>.3>.7@ ^* ^. A@ )& F@ X J P Y ` L@ A P@ b- 8* M C z {& A ~& z ", +"R@ K$ L$ 0' ]& ]& + ]& . J$ ]& @ ]& L$ . ]& Q$ ]& # ]& = . # = # ]& . . V@ $= > # - |* Q$ U@ - M$ L$ > - $ . E! = V@ U@ & ; | U$ - $ ' S$ . > ; ] U@ S$ . . H= ^ ] & { U$ (& R$ | Q$ | | ) P$ X@ ~ ; 2 { 2 [ { 2 2 { / ~ 8- } 5 Y> +# 1 2 1 } Y@ ## 2 } 5 V$ b ,# 6 a < 6 3* 5 ,# 2* 2d d ## 8x ,# q> b ,# ,# ~# ~# s> h Y> c c a r 0 ,# o n 0 ,# ~# n^ ,> Z$ c{ Y$ u s> _# q /# 4* Y$ q Y$ :# 2; w B /# @= w 4* {& w G {& z F= /U z F= I M w Z 1& I O@ A A O@ T^ c- c- c- V 5 .4>. V =X z .i5 B..>z ` hU oY *I (U *I #N )Q qF yS I#.iU +-..Z +Z @-.+Z RT q=.Z .RT 1@.9X hT bV G&.0&.UO 7` 3@.hT .` $N CX 5>.9&..` 0$.6>.E` ]&.a$.pY #@.^&. ..7>.5Z #@.B .8>.c$.!$.9>.0 ..#.0>.B+.P-.0>.|+.U%.a>.#..a .*` %+..%.&-.C@.C@.]$.`;.* .E..%+.E..-@.E..1=..>.G$.b>.R-.F .6+.N` 6+.+>.M&.7+.L` HX 7+.oT /$.Q#.5%.c>./$.JX f` JX qW JX gX f` AZ AZ --.nV oV h .HG 9+.' .cZ [U ~V qT [U cZ ~S UP UP {S $Y [U 8Y [O xU sT DI PN VK TQ 5P 5P _K sK }L :K 'G QG :K 8M :K 'G :K qC 3I q jJ wD qo 3E jJ qo RG q qo qo Vi q q Cl Cl .g Vr Cl T3 .g Vr T3 kf n S3 T3 T3 T3 3| __ __ u^ 6< v[ 34 6< 6< =^ 34 u^ +[ 44 <] 2{ /! +[ a^ d; d; d; d; ^' 1> ^' %~ 9) ^' ^' ^' s& t* f; q- c% t* ^' t* t* .; u& #+ R# &+ &+ -+ &+ P# P# P# P# -+ -+ -+ U-.Y' d>.e>.Y' z%.U# z%.j&.j&.A*.j&.A*.j&.j&.j&.j&.B*._$.)-.'-.|*.->.k&.K@.k&.N+._$.k&.f>.2;.2;.g>.C=.m$.h>.OX n$.OX OX OX Q&.[&.Q&.OX .=.Q&.O+.OX [&.a=.s-.h+.d..s-.i>.P+.!..l` Z#.-%.Z#.+=.-%.+=.-%.hZ hZ X-.j>.o&.hZ hZ u#.u#.e..hZ >%.3;.>%.,@ ,@ >%.6#./ .>%.k>.l>.m>.n>.o>.p>.q>.r>.s>.t>.u>.v>.w>.j=._>.j=.j=.*;.i=.x>.Sa pb Vb Vb Vb Ub gc gc [f Ad ve {l {l nc nc =d =d nc nc nc =d -d =d -d -d -d -d =d nc =d =d =d rc =d &e y>.y>.xe nc lc *e .|j [x zJ }x A>.jk eL >o B>._@.Is /%.C>.D>.a@ 0& F, -. +. >. C$ E@ V J@ }; ` J I S w I N 7* x 2; G F= ", +"+ # I/ 0' 5_ 1) + J$ ]& + + ]& R@ R@ ]& k) + [* BN R@ $ $ 0' # . ]& L$ ]& L$ > + + ]& . . # $ Q$ [* > $ = S$ = > - # $= ' !, . ; %= & & ; $ Q$ Q$ & . T@ S$ ; . | | ] . Z! ~ P$ N$ ~ ) | 5 | .# ; 2 X@ Z! ) | | 2 { ## ~ [ } /& d ( $# 6 [ 2 6 4 V~ 1 ( /& Y> 7 2* 5 1 9 Y> 6 $# d d } ## ,# 9 0 ~# 7 d 2* b k ~# ~# ]# d a n c n ~# i e ,> h p ~# v q ;) ~# 4* p Y$ `$ t V| [# `$ `$ p t w F= G b' #| t `$ 2; '&.B G E '&.1& 1& z F= z n! E JW c- G KW T^ O@ Q@ T^ 8* V c- V 0S .@..@.>z Z..aV z .b-.y .oY B$.I#.p*.aV E>.^P *I F>.iU RT zS RT RT 9$.RT RT #N ^P Z .H&.sZ H&.!&.w@.CX E` 0&.2@.$N AS .` E` 9&.,$.G>.9&.E` E` H>.4Z #@.|Y <+.z+.z@. ..~*.$ .$ .0 ..#.$ .v%.<+.pO I>.W*.D$.C+.6@.#..*` 6@.E .++.E$.j-.J>.X*.K>.d .L>.E..* .G$.E..D@.M>.N>.G$.F$.%+.b>.}T 1#.+>.H$.HX HX IX G..IX > .IX Q#.> .Q#.O>.f` X%.f` X%.AZ 9+.AZ f` JX nV AY +Y g .AY )V [U , .7Y BZ ) .UP qT qT [U ~V .ON ON XP 2U TQ _K TQ iN 5P iN /S ,J 'G :K }L 'G QG :K 3I 3I Ey ;w jJ 3v Bl x q qo 3I Bl qo qo qo n8 Bl q 8e Vr M9 i9 `f ch d3 ch i9 T3 T3 T3 45 j9 d3 =^ 34 6< 34 6< u^ u^ 6< =^ 6< u^ W/ w^ ^' _^ o] _^ ^' ^' d; ^' ^' 1> d; ^' ^' 1> 9) 9) d; q- t* t* d% c% q- s& $+ +- @- +- R# ;+ -+ &+ B& -+ -+ -+ ;+ 4= &+ &+ P# Q>.-+ 9= &+ 6=.U# z%.T# j&.j&.A*.B*.B*.j&.B*.B*.B*._$._$.'-.B*.'-._$.k&.->.k&.k&.)-.)-.)-.R>.)-.S>.T>.8=.n$.OX n$.n$.k` Q&.OX Q&.Q&.Q&.OX Q&.[&.Q&.n&.R&.C*.f+.;>.;>.Z#.-%.P+.-%.+=.+=.+=.Z#.Z#.U>.:&.u#.u#.U>.j>.>%.>%.{; >%.V>.e..3;.@=.3;.R* 9$ >t <&.n .v#.W>.X>.Y>.Z>.`>.q>. ,.q>..,.8;.+,.@,.4-.*;.e;.*;._>.#,.$,.%,.Sa fc |b Vb db Vb i;.[f [f ob +c Ad ve we mc nc nc nc nc rc =d =d -d =d -d -d =d rc ub =d =d =d =d nc nc nc &e xe nc mc :f ,.,,.',.h$ 3. w$ ). ). A@ E@ 2# P Y ` E$ K@ Q@ M A H$ +% I K G w B ", +"+ + 5_ J$ ;b + + ]& L$ # % J$ L$ R@ ]& ]& L$ + k) # 0' . . $ M$ # = ]& + + k) $ - . $= $= > - o! > U@ k) Q$ U@ & > & $ & o! $ # N$ & ; %= N$ > N$ > . ; - & ' N$ & H= 4 ) N$ 2 { ; N$ %= Z@ I= X@ N$ %= `@ [ X@ 4 / 2 ) } ( { N$ ) ~ 2 ## $# ## | 2 3* $# X@ 2 { 7 Y> V~ 7 0 /& : 1 ## ) 6 5 5 V$ 0 a ~# ~# k 6 6 ,# 6! 0 ~# s> 0- 0 n e {# t' n ~# L= b' 1; L= Y$ `$ 4* _# V| `$ n Y$ /# ^# 4* #] w F= % G F= {& w ),.:# Y$ G z w G ^# B a7 a7 n! w a7 z Z 8* T^ a7 =X !,.o^ O@ T^ |# 8* o^ V I-.x .t%.~,..@.SO Q y .|# aV I#.I#.iU B$.YX {,.j#.(U YX )Q #N )Q ],.`I ^P )Q RT )Q +Z q*._M +@.+@.bV AS J#.3@.1@.+@.CX AS CX 9&.E` :=.E` E` ^,.4..]&.4Z 3../,.s*.N-.~W z+.N#.z@.0 .M#.(,.T%.O-.mW _;.}#.@..Q-.1%.*` #..*` *` d&.L&.E$.E$.o#.w=.* ._,.* .p#.p#.+#.+#.- .RE F$.@#.1=.c` HX ^$.i$.J` RW r#.HX H$.7+.X%.M&.IX > .G+.HX L` qW AZ 9+.AZ :,.9+.AZ x=.-Z <,.9+.:,.[,.JR 7Y lQ +Y +Y pV ~V [U ~S ~V cZ VP $Y {S VP DY AO !N xU ON hN iJ SN fR TQ _K }L :K OJ 'G 'G 'G :K :K 'G PR 'G rC 3I 3I Bl 3I F q qo Bl qo qo },.Sd Vi q ch so Sx .g |,.Rc T3 T3 >0 T3 T3 T3 u^ d3 A_ 45 __ `e 6< 6< =^ u^ =^ 6< 34 v[ <_ /! X/ X/ v^ a^ 1> d; ^' ^' 9) .- d; F{ ^' b% ^' +- d; t* t* q- t* N# t* t* #- s& (! c% g; g% -+ O# x& &+ &+ &+ 4= u* P# h% P# >+ 1,.e>.<*.2,.L+.j&.3,.A=.U# L+.B*.A*.^+ j&.j&.j&.'-.k&.,` 4,.j&._$.k&.k&._$.k&.)-.k&.)-.b%.S>.8=.g>.S>.D=.5,.Q&.n$.n$.5,.n$.Q&.Q&.Q&./` .=.OX Q&.6,.R&.7,.-%.S&.;>.`%.Z#.+=.Z#.+=.-%.+=.Z#.Z#.-%.+=.o&.hZ -%.:&.:&.u#.>%.e..u#.u#.V>.u#.>%.u#.<&.8,.>%.6#.>%.9,.0,.a,.~>.o>.p>.b,.c,.d,.)>.e,.f,.N=.>=.j=.&;.=;..K xJ g,.h,.i,.pb |b Vb Vb E-.Yb [f ob Ad pc {=.Zs {l wd =d =d &e oc =d rc =d =d -d -d =d =d =d zh -d =d nc =d xe nc nc + <{ G= . $ 5_ Q$ + . + . - V@ # Gc $ %= & $ Q$ - [* # > U@ ; . + . . - ; ' . ^& + Q$ N$ U@ & P$ > =' & ~ ! N$ U@ ~ & X@ ( 2 H= %= Q$ ; Z! +# 2 8- ~ | X@ ( ; X@ X@ { [ 2 | $# $# $# ## <& } 7- *# Z! < } I= d V$ 6 4 } a a d 6- d 7 ,# 4 [{ e 9 7 W$ ,# N' b ,# e 0 0 c c h c c 0 0- `$ ,> m ,> p ,> n p -) Y$ `$ n^ #| % /# m q s> :# /# 2; G ]# 2; {& F= F= C` F= {& B z F= 1& z P%.z $T a7 1& I .@.M c- O@ H$ =X c- =X |# 5 .y ..@.m,.c- SO iU :#.}Y >*.iU SO AX B$.iU BX .Z qF yS .Z 9$.)Q G&.RT RT ^P ^P )Q )Q ^;.Z .$N H&.EN hT -X D` '*.n,.CX E` CX 4...` 9&.3Z a&.4..9&.4Z ` .z+.`X s*.)$.F` !*.z+.0 .z@.N#.o,.!$.7>..#.|+.n#..#.1+.2%.s;.U%.++.++..%.U2 %.&-.E..p#.+#. >.x*.p,.-@.E..+#.-@.]$.S-.F .3%.c` > .M&.G..c` G..c>.G .L` > .H$./$.> .X%.5%.Q#.IX nV gX f` AZ AZ 8%.AZ q,.gX k$.&+.9+.JX lQ g .UP r,.7Y pV ~V ~V YO [U ~V ~S s,.sU qT +P TQ VK ,Z dR +U FM DI rK XP _K 'G OJ 'G QG qC :K 'G QG }L 'G |Q :K az Bl q qo qo Bl Ye Bl qo qo `f o8 x q `f Cl },..g M9 i9 .g S3 i9 .g d3 S3 45 45 45 x/ U3 U3 u^ v[ 6< 6< =^ 6< v[ u^ v[ /! /! -^ @+ /! ^' ^' 9) ^' ^' F{ ^' d; ^' t* d; 1> q- t* t* t* +- t* t* b% s& t* +- #+ s& $- x& @- B& ;+ &+ &+ ;+ -+ ;+ -+ -+ -+ >+ &+ m-.P# z%.A*.z%.t,.A*.L+.z%.j&.A*.L+.B*.j&.A*.9=.k&.u,.v,.->.N+.)-.A%.->.)-._$.S>.S>.C=.S>.g>.)-.8=.Q&.n$.n$.OX OX OX n$.5,.n$.Q&.Q&.Q&.OX Y#.F=.w,.-%.Z#.r-.6,.!..Z#.+=.Z#.Z#.-%.-%.Z#.x,.Z#.+=.>%.Z#.x,.X-.u#./ .4;.3;.@=.4;.@=.>%.3;.@=.>%.>%.3;.f..y,.z,.A,.B,.C,.D,.E,.F,.G,.H,.I,.*;.d;.`&.v&.P=.-;.P=.J,.t&.K,.7U L,.:g |b Vb Vb {g Ub ob gc gc Ad vd +c wd nc nc =d nc rc nc =d nc -d -d =d =d -d =d -d =d nc nc nc &e nc mc *e _f _f fe vd ^f Yb zf M,.N,.`` _%.UY C#.UY UY KT WM DQ y` UY 9T 1k dL GT [x nu .P,.aV *I aV &{ iU oY L SO :#.p*.oY +Z yS oY Q,.G&.)Q ^P )Q RT RT RT RT RT R,.S,.sZ 0X bV sZ hT 0&.w@.0&..` E` CX CX .` 4..E` :=..` 4..a&.4Z M-.f-.<=.#@.8 .Y$.T,.N#.$ .!$.#-.c$.U,.v*.K&.V*.A@.w%.++.U%.s;.*@.++.6@.d .6@. %..%. %.o#.-@.C@.X*.+#.E..* .E..G$.p#.RE V,.mV W,.G .<;.I$.F$.IX IX IX 7+.L` c>.X,.Q#.5%.X%.G .qW JX X%.8@.aN JJ nV x=.0@.f` f` AY JX f .+Y YO pV 1T [U #Y 1T oC ~V cZ ~S +P {S VP yO EY qK ,Z VK PN hN DI rK iN _K 5O }L QG ,G :K qC :K :K OJ 'G 3I RG Zf Bl -w q Bl qo Bl Bl qo Vi Rc Bl 3I q .g `f Cl Vr 8e h9 Cl S3 T3 Vr d3 d3 T3 6< =^ u^ u^ U3 v[ u^ 6< =^ 6< u^ V5 6< 6< 6< :_ _^ d; o] -^ .- F{ 9) ^' ^' d; ^' ^' 1> 1> 1> 1> q- s& c% b% s& |> s& d; s& c% e; c% d% O# R# -+ &+ =+ %>.P# P# h% -+ -+ -+ P# -+ B& <*.*>.j&.j&.t,.A*.A*.j&.A*.v,.j&.B*.B*.v,.B*.A%.k&.A*.Y,.k&.->.)-.->.k&.->.)-.g>.m$.)-.Z,.T>.W-.D=.0=.n$.OX Q&.m&.Q&.OX n$.OX m&.[&.[&.Q&.[&.p$.Z%.-%.f+.`,.n&.-%.P+.-%.-%.P+.Z#.-%.-%.-%.+=.e..-%.+=.+=.X-.>%.>%.>%.@=.P* 9$ 3;.u#.|~ / .>%.3;.%p '.N=.F;..'.+'.@'.#'.$'.%'.&'.Dt *'.=;.`&. *.G*.>=.='.$l -'.;'.qh i,.b*.|b db Vb E-.ye [f Bf Ub gc $e {=.nc ue :f nc nc nc nc =d =d =d =d =d nc =d =d =d =d =d nc '.Wg w` kY UY %W y` DQ WM KT KT JT %W C#.kh =L $W To ,'.6r |q bw ]n ou oi eE @O k,.|i !M aI YN ''.=* k> '& l> E@ $% }; H@ D$ d- E$ S H 7* x P@ I M I F= N D 1; ", +"I/ I/ # % *) J$ 5_ ]& X! 0' # 1) ]& $ R@ + # k) = . + L$ # # $ = - . . > > $ . > # T@ $= S$ # = ]& . & Q$ ; & = $ * & . ]& . & = & > N$ N$ $= . o! & - Q$ P$ | ; =' N$ ^& > | ; ; N$ ; | Q$ ; U$ ~ X@ U@ & Z! ) ] 2 ( I= 1 ~ ~ ! | /& { <& [ 7 4 $# ) { ( 4 { 2 ( ,# 2d } 3* 6 6 a U- ,# 8 } e ~# 6! d e $# c e e 0- e h j c 0 L= c{ n h ~# r n h 0- ># Y$ 4* % ,> r Y$ `$ 1; /# % `$ :# b' [# `$ /# :# $S F= `$ z..G z z m $S z F= G 1& C G 1& G 1& c- Z 8* V O@ Z o^ z ..@.m;.(#.5 . V H#.0S H#.aV Z..o*.B$.*I p*.aV oY iU y+.yS oY *I .Z )Q )Q RT ^P RT +Z _M G&.#N R%.bV 6B 3@.sZ $N 0&.hT {&.n,..` E` E` E` 4..E` y@.J#.a&.9&.9&.z+.a$.L-.<=....z@.)'.[#.!$.T%.F` !'.7>.Y;.A@.sY A@.[=.~'.#..#..%-.*` L&.%+.{'.E$.d&.d&.X*.E..p#.* .- .%+.E..+#.p#.-@.p#.+>.-@.-@.NV IX G..F@.HX > .> .> .M&.G+./$.J$.G+.G .5%.f` f` gX I+.]'.;H bJ ;Z O&.[;.k$.f .AZ h .6Y 1T !V lQ 1T pV qT [U cZ qT ~S +P +P sU zO .U qK {S +P _K hN M rK QG qK rK :K :K 'G :K qC rK 'G :K :K NS Ey az q q QG az qo Vi Bl q q Cl `f q qo 8e fd kt kt `f Ze 8e .g T3 kf >0 d3 d3 __ R3 Q] ^'.45 u^ u^ Q] 34 u^ =^ 45 !8 6< =^ )/ _^ !{ w^ X/ d; d; 1> 1> ^' 9) 9) ^' d; d; d; d; ^' s& +- +- b% t* s& t* s& c% u& u& .; .; 4= &+ P# &+ -+ h% &+ &+ P# %>.P# /'.('.P# _'.*>.j&.B*.t,.x;.A*.j&.A*.L+.L+.v,.A*.B*.A*.=>.)-.Y,.B*.->.k&.k&.k&.)-.:'.->.W-.T>.f>.T>.C=.m$.T>.5,.n$.OX 5,.0=.5,.OX Q&.<'.<'.Q&.[&.j@.OX Q&.r-.f+.E=.R&.;>.['.!..+=.-%.+=.+=.+=.-%.}'.+=.:&.u#.3;.|'.X-.o&.3;.6#.6#.1'.4;.2'.3'.6#.6#.3;.6#.4'.5'.6'.7'.o>.8'.9'..,.0'.a'.b'.0;.c'.2&.L;.*;.d'.e'._>.f'.-;.g'.h,.4b fc pb Vb Vb Vb `b `b [f ob [f vd $e ve ve $e = > > $ # V@ - N$ |* $ > S$ 0' A; - $ $ - ; $ > & ; > > ] > . ; > . & & N$ ; U@ & ; ; S$ S$ > > $ $ k) S$ Q$ | & . 05 S$ Q$ X@ ] S$ N$ ] > N$ 2 < I= 2 ~ | N$ 9 2 4 k $# Y> 1 6 ( d D, J] d } -# Y@ ,# 7 6 4 q> 0 ># d ( ~# 5 q> a 7 ,# ,# 0 0 K/ a !# a } ;= o V| }& ;= p n ,> X$ 2, 0 Y$ ^# q 2, Z$ t Z$ q m t D m t D Z$ 1; a7 b' F= {& D F {& {& 4* z '&.F= ~& I z AR n! 2; Z 1& n! z T^ O@ M Q@ =X Z V 4>. V x .t%.(#. V i5 B..(#.v@.A: (U *I oY o'.SO p'.(=.yS [%.)Q >$.+Z RT )Q +Z G&.)Q +Z H&.bV EN '*.R%.G&.w@.AS 2@.{&.q'.CX .` .` .` E` E` ]&.a&.4Z .` pY <=.4Z $ .#@.Y$.)'.9D $ .S%.T,.r'.s'.t'.8>.u'.v'.M#.w'.x'.a .#..%-.++.#..x'._,. %.x'.-@.y'.p#.* .]$.z'.E..* .]$.+#.+#.+#.F$.e&.F$.mV P#..>.I$./$.X,.--.G+.G .IX X,.5%.L` A'.G .5%.AZ Q#.qW Ix YL nK f` ,@.9+.6%.1T 9+.rU +Y f .!V ~S QQ UP @Y qT ^' B_ w^ d; ^' 1> ^' ^' 1> 1> d; d; d; d; t* s& s& q- s& K# b% t* b% t* u& M# $+ -+ -+ -+ -+ P# -+ -+ B& P# h% P# B'.Q>.P# C'.-+ Q>.j&.z%.Q>.t,.A*.B*.A*.A*.B*.j&.j&.A*.u,.->.->.B*.k&.)-.V#.->.)-.->.)-.:'.2;.N@.p-.8=.T>.->.5,.n$.Q&.[&.D=.D=.[&.[&.[&.[&.Y#.D'.D'.E'.[&.n&.6,.Z#.r-.`,.C*.-%.+=.Z#.Z#.Z#.-%.-%.+=.Z#.Z#.o&.:&.F'.G'.o&.>%.6#.3;.@=.u#.6#.3;.>%.>%.|~ @=.H'.I'.J'.K'.p>.E,.L'.M'.N'.O'.P'.Q'.R'.H*. *.e;.8;.S'.D;.`&.=;.T'.U'.Ga fc pb =. 3^ 2# ` P J D$ H J D$ E$ 8* +% S 7* M Q@ w G B ", +"BN 0' = + # = L$ # K$ + J$ R@ }, $ = ]& + ]& L$ + [* # ]& > V@ . k) Q$ $ ]& $= + = # . |* & S$ $ . $ V@ = . . |* $= S$ - * . $ ] ; $ ] H= Z, $ . Q$ 2) . k) ; > ; S$ Z! ] U$ 5- . ~ 8- | ; [ Z! 2 ~ N$ ; ^& ; S$ { { [ $# ~ & Q$ ) ~ I= ~ } 4 2 6- `'.d | 7 < 2 { 4 } &# J] &# 9 ( 6- V~ D, 6 6 b b e { 6 3* } ># a L= c g ]# c W$ 0- p `! ,# Y$ c c n^ ~# n L= % ^# ;= m Z$ r y ^# /# h ^# {& 4* 2, #] :# m b' @= 4* :# t E F= a7 '&.F= ).I O@ a7 A T^ AR $T n! T^ $T n! HV Z o^ T^ V .@.c- 5 . Z .).(#.SO -*.:#.(U A: oY *I (U Q k#.^P +).(U XX 3d )Q )Q )Q +Z RT +Z )Q )Q @-.+Z sZ 1@.H&.R%.@).#).3@.$).%)..` 4..E` ^,.E` .` 3Z 4..9&.]&.a&.` .<=.4Z !*.#@.B ....&).b&.7>.!$.$ .U,.Y;..#.=@.#-.*).=).w*.1%.L&.++.a .1%.&-.-).;).{$.p#.+#.&-.X*.]$.p#.* .p#.E..E..p#.6+.-@.F$.-@.;@.IX ]$.7+.H$.c>.5%.M&.G .X,.5%.L` H$.^$.G+.gX G .G .,@.}T aJ x=.9+.x=.AY (Q ;Z qW >).@Y #Y 1> F{ v^ ^' d; ^' d; d; d; d; 1> d; s& 1> d; t* t* t* (! t* M# b% |> s& K# u& /' + )+ -+ -+ u* 4= &+ h% -+ h% -+ h% &+ P# ,)._'.P# P# L+.B*.').}*.A*.A*.v,.A*.A*.B*.A*.)).4,.k&.)-.Y,.!).)-.)-._$.)-.)-.->.->.:'.)-.->.8=.A%.~).5,.Q&.OX OX Q&.Q&.Q&.[&.Q&.OX [&.E'.[&.E'.[&.[&.['.-%.6,.;>.C*.+=.-%.-%.+=.+=.x,.+=.+=.x,.-%.o&.o&.X-.+=.u#.>%.u#.@=.|~ u#.>%.{; 3;.3;.|~ @=.{).]).^)..'./).()._).:).<).[).}).H,.*;.-;. *.e;.8;.8;.8;.|).G*.H*.1).`c Be pb zf Vb Vb Vb `b c Yb Zb ^f $e te {=.;d mc nc nc nc =d nc nc =d nc =d =d =d nc nc nc nc nc T=.kc ^f vd vd vd vd ^f Zb Yb #e 2r +e QB dL kY _%.UY 2).2k +K KL Zo Mj uj =t dL ^n To To Q$ - & Q$ - N$ Z! X@ ; | %= ; & & ; |* Gc N$ { N$ Z! ) [ ~ H= | ) N$ { | . < ; X@ { 2 ; ~ $= { ( 1 { [ 2 { [ 3* 2 D, ## Y@ N$ -# 6 } 6- 4 $# } /& &# ,# V) ,# ># 0 e <& L= q> b ># ,# E, a L= j n 3* a K/ -) n p n *= n n n n m (# b' p _# m C t 1; p F t |& p ^# % E F= t :# ^# ^# 1Z z /# I F= z 1& 1& {& I 1& z N JW c- 8* 8* JW P%.>z AR V (#. V T^ V (#.o*.aV ` (U BX *I aV A: oY 3& (U yS [%.(U k#.K-.R%.^P )Q 6).Z .RT Z .RT RT >$.0$.9X H&.Z .7).$).CX 8)./;.CX .` AS 4..0$.4..'$.:=.9&.y@.L-.:=.#@. ..B .:=.F` 8 .9).s*.)'.N#.v*.t'.T%.0>.|+.`$.K&.u*.w*.*@.s;.*` ++.^} %+. %.j-.* .C@.8Z * .%+.+#.%+.+#.+#.E..+#.p#.c` F$.+>.0).1#.G .F$.(&.c>.HX a).^$.X%.M&.> .--.Q#.X%.gX f` x=.JX 9+.:,.pT AZ AZ I+.gX >V 6Y I+.*+. ^' 1> .- H# d; d; .- ^' d; ^' q- t* s& +- s& d; s& s& s& $+ +- `. #+ P# -+ &+ B'.b).P# c).P# b).h% h% d).P# *>.P# m-.h% ').A*.=>.>-.B*.A*.B*.A*.v,.A*.v,.B*.[*.)-.->.)-.B*.e).->.:'.)-.)-.)-.:'.->.:'.->.W-.h>.p-.p-.Q&.OX f).Q&.[&.Q&.[&.Q&.Q&.[&.a=.[&.[&.[&.j@.-%.-%.i>.;>.7,.Z#.x,.+=.-%.+=.x,.X-.g).X-.+=.+=.a{ 4;.X-.>%.u#.{; 3'.3;.>%.3;.3;.@=.3;.6#.>%.h).i).j).b,.k).M'.l).m).m).n).o).p).q).r).j=.S'.G;.8;.8;.s).|).t).F*.u).Xb pb zf Tb db Vb Vb Zb `b Zb gc :f mc Og vd ve *e nc =d nc =d nc y>.y>.xe nc lc . ]& L$ # $ = ]& . $ . . - # $ $ . = > M$ . $ > $= P$ - | U@ $ | > | > > - N$ & { & . U@ | ~ T- ] ] H= . & N$ T- & $ ^ X@ `@ & | U$ /& 2 ~ ] 2 %# H= 8- ~ 2 *# N$ $# ( 6- X@ { ,# Y@ 2 Y@ { < } } 6 Y> $# { J] Y> 6- ,# ,# } ,# k ,# } a z: d 6 6 e $# e e ,# k c ~# n s> Y$ K/ s> n {# ~# q 1; 1; h h r q ]c Y$ ,> n^ `$ @= 4* 2; f^ /# 4* `$ ,> B <, n^ w w 2; F= a7 z z z z a7 z 1& 1& JW z G O@ c- JW 8* T^ Z T^ 1& 2Z 4>. Z V 3# B).C).>z M I-.oY A: oY *I *I oY aV U;.YX D).(U U;.c-.#N ^P RT )Q +Z Z .3d Z .+Z Z .-X H&.G&.+@.{&.3@.w@./;.^,.D` CX .` 4...` 4..` .E` 9&.f-.z+.z+.f-.E).4Z 6Z N#.#@.!$.N#.$ .7>.F).t'.U,.A@.v%.t*.A@.u=.a .1%.*` #..e$.e$.6@.j-.G).d .* .p#.& .* .p#.* .p#.+#.-@.+#.]$.Y*.-@.V,.V%.L` I$.1=.> .}T G .^$.HX L` 7+.X%.R#./$.L` gX JX qW 9+.JX AZ AZ f` [;.f` AZ ZT JX 6%.[W 0@.~S ~S qT QQ QQ LJ H).:Q KS I).+P VK MR DZ +U J).OR +U SN DI TQ qC rK SN QG 8M :K qC OJ az ,G QG Jx fR 3I qo Vi 3v Ey qo Vi Ye Vi Ey Vi qo Td Td qo Td M9 h9 8e 8e M} .g i9 j9 8e h9 S3 d3 __ Dl S3 =^ S3 6< =^ u^ =] u^ u^ u^ u^ =^ W/ /! =^ d; d; 1> d; 1> 1> d; 1> 1> .- 1> 1> d; H# q- t* q- c% s& t* s& s& w& t* t* +- c% K).4= d% @- #+ -+ h% -+ -+ h% P# c).P# h% ('.L).d>.c).M).A*.t,.x;.N).B*.j&.B*.A*.B*.v,.v,.O).=>.->.|*.)).:'.)-.k&.->.->.)-.)-.g>.W-.:'.g>.h>.->.C=.5,.[&..=.D=.D'.Q&.OX [&.Q&.[&.[&.[&.P).['.;>.Q).-%.P+.-%.-%.X-.S&.+=.X-.-%.-%.-%.+=.+=.A;.|~ }$.R).S).F'.3;.6#.@=.|~ 3;.{; 3;.>%.T).i+.U-.U).V).+'.W).X).Y).Z).`). !..!.+!.@!.s).#!.$!.%!.&!.*!.=!.w>.-!. *.>j ;!.}b b*.|b |b Vb db c `b Zb E-.^f vd ue _f ac :f nc nc &e y>.nc y>.y>.nc iE _f _f nc *e $e _f !.^F :q w` =L kh dL =L (Z 7V (Z ,!.'!.=t .I fE 8w gk ~n - . * $ ] . > ' ] .# ^ Q$ > ] & %= H= ] . S$ U@ Q$ X@ | ] U$ o! ^ - + | 2 Z! P$ T- 2 ; ; ; N$ =' ) ~ Z! [ | 8- ) { (& 7- { ~ 5 2 /& Y> } $# d D, == } < { [ 2 $# ,# 0 $# 0 } 6 1 ,# b ( 9 3] 7 d m*.6! a {# K/ a a a b 0 c h z: i Y$ 6! 0 0 ,> h n c y2 ,! Y$ Y$ p r m b' ,> b' `$ #] :# `$ w #] G /# F= E $S {& F= a7 z w '&..*` e$.(!.~'. %.&-.E$.%+.p#.* .* .p#.E..u;.E..-@.p#.+#.y%.+%.]$.G$.> .IX Y*.Z*.H$.H$.c>.G..> .H$.^$.X%.Q#.Q#.G+.f` f` JX gX JX 9+.f` JX k$.PV 6Y AZ qW AY +Y I@.JR QQ UP YO $r |P SK _!.cR +P w;.J).FM WK |O ON _K (u QG _K 5O rK DI sK 'G :K ,G QG Zf 'G QG qC }L Ey !G F _A GI Bl qo Bl qo Bl Ye Bl q qo az Vi 8e >0 8e .g 35 i9 >0 d3 >0 d3 S3 d3 __ Q] x/ __ x/ u^ =^ 6< 6< u^ =^ u^ =^ 6< Q] W/ ^! <] 1> 1> !{ d; d; 1> d; d; 1> 1> .- d; d; d; d; s& c% d% s& ++ s& .- H# s& M# `. s& O# z& `. +- &+ )+ P# d).h% P# P# c).P# ,).P# _'.c).:!.B*..)).e).->.)-.->.->.->.->.|!.h>.->.W-.g>.9=.W-.1!.[&.[&.[&.D'.Q&.[&.[&.[&.<'.Q&.E'.2!.{-./` ;>.-%.+=.g).7,.-%.['.3!.Z#.X-.+=.X-.-%.X-.x,.3;.>%.|'.X-.|'.A;.>%.@=.3'.|~ {; @=.>%.i+.3;.4!.5!.6!.7!.9'.l).X).8!.6{ 9!.0!.a!.b!.G;.$!.e,.w>.c!.d!.e!.f!. ;.g!.,y `c i,.}b |b TD Vb Vb c {g Zb Zb {g vd ^f ^f ue . 0' R@ + > ;b # S$ ; ' ' o! ;b > V@ * o! |* ] . . X@ > $ T@ & - $ & Q$ & V@ ; H= Q$ $ ! N$ Q$ ' ^ Z! $ O$ Q$ ) X@ 2) P$ R$ | > ; 2 | < /& 05 l!.N$ ^ P$ ~ N$ X@ 2 ] ~ *# { 4 I= [ { J] [ } { X@ { ( ,# $# 5 I= k 1 4 $# vk x0 6- ,# d b a L= a a ,# a c k ,# g c i h K/ L= t' 0 6! Y$ m h 2, h r ,> b' Y$ c{ r Z$ t p `$ `$ :# :# w F= % #] b' 1; w t G F= z z F= a7 z 8$.a7 C` A$.O@ n! 1& M T^ c- T^ O@ JW KW V c- V c- 5 .4>.v@.z .iI y .aV :#.*I *I (U p*.U;.(U I#.+-.F>.(=.3d RT RT )Q +Z RT Z .^P Z .G&.>$.Z .G&.'*.G&.7).{&.2@./;.$).4...` E` .` E` J#.]&.4..o;.a&.L-.:=.4Z a$.$ .^&.z@.$ .z+.o,.A@.#@.Y;.T,.m!.n!.n#.I&.W*.t=.Q-.*` a>.L&.++.++.;).o!.%-.yZ p#.p#.%+.d .d .p!.* .]$.-@.%+.+#.f$.3%.+#.l-.G$.r#.i$.F$.M&.e .Q#./$.G+.G .^$.AZ ^$.Q#.--.JX gX PV <;.AZ ;Z AZ > .gX nV f .gX O&.RV @Y }W !R UP !R UP !R wP [O 5z uU )N zO yO VK iJ hN }Q UK CI nQ QG rK QG DI iN :K qC qC QG az pC pC Nx -w Ye 3I -w 2#.wD Bl Vi qo Ye Bl Bl Bl Vi Cl Td Ye Bl 8e i9 ch 8e S3 8e M} j9 S3 3| T3 =] =^ =^ 3| 45 u^ =^ u^ u^ u^ Q] u^ =^ N~ u^ =^ :] 1> d; .- d! .- H# 1> _^ 1> d; 1> .- d; .- ^' d; f; b% #- 1> s& q- s& t* t* d% u& N# @- 4= q!.c% -+ -+ -+ &+ P# h% P# %>.P# r!.h% L).n-.Q>.A*.B*.s!.A*.A*.v,.A*.A*.v,.x;.B*.B*.z;.->._$.B*.u,.->.k&.:'.->.)-.->.A%.g>.)-.)-.W-.:'.t!.u!.D'.n$.Q&.D'.1!.[&.Q&.[&.[&.6,.[&.E'.P).E'.['.-%.+=.+=.g).-%.S&.+=.X-.|'.+=.x,.+=.X-.X-.v!.j>.3;.!@ 2'.2'.^@ 3;.|~ ^@ <@ |~ 3'.3;.o&.w!.x!.y!.r>.#'.P'.z!.A!.B!.C!.D!.E!.F!.G!..;.H!.I!.J!.K!.L!.w>.M!.e'.N!.!f Sa }b pb |b db Vb c Zb Zb Zb vd vd ^f kc H O A S I I @% G z N 7* G M= ", +";b ]& #S I/ 5_ # K$ + ]& 5_ 1) J$ 5_ R@ L$ 0' ]& $ + = * + ]& . $= . = $= > $ + R@ ]& . & $= U@ ; - . Z, Gc ; > $ S$ H= $ + ; ' P$ o! ] U@ $ & N$ H= S$ U@ & + & X@ ; U@ U@ & & > > X@ | | ] N$ ) 2 ; ] ) { & ) | 05 / H= 05 ] X@ | { R$ 2 <& < 6 ~ 1 1 6- T- { ( < 5! { 4 ,# ,# 1 i / 6 ~ Y@ J] 4 /& x0 a e k d a n i ~# K/ ~# n n ~# Y$ p L= ~# c k h Y$ |& ~# n a ;= _# % m ^# #] 2; 4* v p {& 6* 4* % 1Z {& G w /# :# F= E a7 /U z E a7 A$.a7 z I O@ 1& 1& O@ A $T $T AR JW U!.x+.=X >z V (#..@..@.PT 4>..@.iU B$.y .A: I#.-*.V!.W!.SO +-.p'.U;.+).X!.Z .6).RT )Q )Q +Z RT +Z )Q |@.Z .bV w@.G&.R%.1@..` +@.1@.Y!.4..E` a&.4..a&.9&.9&.L-.y@.y@.s*.#@.<+.)'.4Z !$.`X ~*.i-.M-.Z!.Y;.7>.Y;.n!.n!.`!.N#.}#.U%.r;.~'.-).++.6@.x'.&-. ~.C@.*Z K>.%+.d .d .C@.E..p#..~.-@.]$.Y*.]$.-@.3%.e .7+.i$.1#.G..F..> .> .L` H$.HX }T G+.> .G+.qW nV JX gX qW #G SV AZ AZ gX 7Y AY aZ f .&+.pV pV UP 1T _Q QQ oC eN QQ CI DM yO FM NR PN EY +~.qK VK +U qK ,G ,G _K QG :K ,G rK :K -w az QG 'G QG pC Ey _A !G )G Bl RG Bl qo Vi Vi Vi `f Rc Ye Cl M9 i9 >0 M9 Td h9 Rc >0 .[ 3| d3 d3 __ u^ x/ .[ d3 =^ @~.u^ a] =] u^ u^ u^ z/ )/ :] .- !{ H# x) R] 1> .- 1> 1> 1> 1> 1> 1> -] d; 1> 1> b% ++ s& M# s& M# s& s& 1> #+ c% 4= P# &+ d).-+ d).h% #~.h% h% c).P# h% ('.*>.$~.m-.h% ').B*.%~.N$.A*.B*.B*.A*.B*.B*.v,.B*.B*.e).->.k&.e).:'.->.->.)-.~).->.->.T>.&~.m&.g>.Z,.->.T>.OX [&.D'.Q&.*~.[&.Q&.Q&.[&.[&.Y#.[&.D'.=~.-%.>>.7,.-%.+=.X-.Z#.-%.+=.+=.X-.X-.x,.+=.X-.-~.;~.>%.a{ f%.f%.!@ 3;.3'.6#.|~ {; V>.>~.,~.'~.)~.!~.~~.L'.P'.{~.]~.^~./~.(~._~.:~.<~.<~.G;.[~.}~.|~.1~.2~.3~. ;._>.4~.3i 0c pb zf |b Vb .jA QD Ro @R VU ~j fL a~.W> ^. B$ Y E$ ` L@ Q@ O S O A A I m B G C G C 2; G ", +"R@ #S I/ =[ #S 5_ K$ K$ L$ 0' 1) + ]& ]& ]& # 0' 5_ % + ]& ;b Q$ $ + 1) $= # = . $= > $ = . . # . V@ $ . . > U@ U@ Q$ ]& * $ Q$ . U@ ; P$ U@ > - S$ N$ ; & T@ $ N$ R$ 2 & ] & & ; X@ ] H= Q$ - | N$ { | T@ U@ *# 2 H= ; ; H= .# { | ~ 2 Z! 7- 7- ] 2 7 : Y@ /& J= 5 6 /& 2 ( ( ( ( a d D, } 6- a : 1 Y@ Y> ( q> e a a 5 j g a' 6 0- z: ~# 0 z: L= }& L= h h h a c b~.~# c p L= r m #| q p :# t Z$ m t t t ^# F= {& q /# 4* Y$ w F= /U F= E z a7 n! a7 z $T 8* O@ 8$.'&.A z m;.KW n! H$ H$ c- V c- c- 5 . V 4>.4>.0S i5 W!..@.:#.-*.aV iU iU iU yS c~.I#.BX [%.9$.+Z G&.+Z #N RT RT Z .Z .+Z G&.lP 1@.G&.+@.{&.hT +@.<#.d~.hT 9&.E` .` a&.CX ]&.9&.H>.:=.<=.z+.#@.Y$.#@.<+.!*.e~.0 .)'.Y;.Y;.U,.U,.i-.`$.f~.n#.W*.L&.g~.et U%.++. %.J>.6@.6@.xZ & .d .d .%+.& .* .E..* .+#.E..-@.+%.h~.p#.3%.G$.7+.4z b>./$.e .L` Q#.M&.IX Q#.G .HX IX L` PV IS Q#.G .gX [W JX [W qW G+.6%.oV JX f` f .!R pV YO UP BZ QQ UP vL qT eN [Q }Q +P TW P` |O NN DI CI zO qK SN iN qK QG iN ,G 'G 'G 'G Jx ,G wD 'G Zf 3v Ey 3v Bl qo qo o8 Vi Vi Vi Vi qo c3 Sd Bl Cl 8e h9 8e `m h9 M9 Rc 3| d3 h9 3| d3 =^ .[ x/ __ u^ =^ Q] =] 34 =^ =^ =] =^ =^ W/ =^ <] ^' 0] a] .- .- 9) 1> 1> .- H# 1> d; .- 1> d; t* b% b% M# t* M# b% T. s& #- #+ u* -+ P# P# -+ c).P# P# P# -+ P# c).$~.h% i~.h% j~.h% k~.x;.A*.N$.A*.A*.B*.A*.B*.B*.B*.A*.B*.S>.->.:'.e).k&.)-.:'.:'.->.:'.e).)-.:'.|!.T>.g>.u!.->.*~.Q&.OX Q&.Q&.Q&.Q&.D'.D'.D'.[&.E'.[&.P).-%.6,.i>.-%.+=.X-.Z#.+=.-%.+=.G'.X-.X-.+=.x,.+=.x,.{; f%.X-.X-.2'.9$ |~ ^@ {; 9$ 9$ 6#.l~.m~.n~.@'.()._).o~.p~.q~.r~.r~.C!.s~.t~.u~.Z>.<~.v~.w~.x~.=;.S'.y~.8;.e;.z~.6b Be pb pb Ob se #e {g Yb Zb ^f vd vd :f xe yh +l rc nc nc nc ^# ^# ", +"G= p9 G= 0' 0' = + # = 0' + K$ + ;b R@ # 0' 0' ]& + # 0' ' $ ]& 0' + + 0' L$ $= . ]& + # $ $ + ]& # + > |* & $ - S$ . $ # # . - $ 2 ; T@ U$ | U@ ' 0' + V@ o! & - Q$ ; & ] ' Q$ ^ ~ $ > N$ 05 S$ ) * | ## : 8- ~ 2 { H= d ) | } N$ X@ X@ X@ | d ( 6 ( } ~ ( ( d 2 { 2 $# 2d j } 5 q> ,# J= &# 7 3] ,# 3] V) ,# 9 5 9 &# L= e b e n ~# W$ 0 {# c L= r 2, 2, s c L= a' ,> 4* L= r Y$ u ]# Y$ m 4* F= ^# G ^# {& ;) :# 4* {& z b' w 1Z F= $S F= '&.z z a7 a7 #.T^ c- T^ a7 H$ n! O@ 2Z n! 1& Z .@.M V >z v@.4>..@.I~.5 .Z..W!.I-.p=.aV A: oY A: A: *I y+.J~.(U u%.+Z Z .bV R%.)Q )Q +Z lP RT RT '*.G&.sZ e-.Z .n;.1@.hT {&.#).E` .` 6>.L-.9&.9&.4Z o;.a&.K~.f-.4Z s*.~W [#.!*.8 .s'.0 .z@.s*.U,.7>.U,.U,.Q-.P-.{*.K&.L~.a>.a>.L&. %.++.U%.{$.*` d&.d .M~.]*.E..* .p#.+#.p#.]$.I` @#.G$.+%.+#.-@.V%.|#.}T q#.c>.M&.IX N~.H$.HX M&.Q#.IX IX PV nV [W > .G .gX qW qW gX gX qW f` RV qW aZ oV ZT 1T 1T 0 .g h9 A_ h9 h9 A_ __ u^ Q] Q] __ 45 u^ Q] =^ u^ Q] 6< =^ =^ u^ 6< )/ w^ .- 0] 0] .- .- 1> .- .- .- d; .- F# t* 1> .- s& d! s& M# b% b% T. s& L# s& M# P# g; -+ &+ P# 4= #+ h% h% P# P# h% c).P# P~.Q~.R~.B& 3,.x;.B*.t,.j&.)).v,.B*.)).)).v,.A*.v,.e).!).:'.S~.u,.:'.~).->.->.:'.:'.:'.W-.p-.->.Z,.8=.:'.T~.[&.n$.Q&.[&.Q&.Q&.[&.[&.D'.OX D'.E'.[&.2!.U~.s-.-%.X-.X-.-%.+=.Z#.+=.+=.+=.2'.X-.X-.X-.X-.f%.{; f%.2'.H] 3'.{; 3;.{; 9$ H] V9 V~.W~.X~.@'.#'._).F,.p~.m).Y~.Z~.A!.[).`~. {.~>.<~._-.P=..{.+{.@{.#{.E;.D;.&;.${.Sa zf |b ^& . . - - . . > + . . - & N$ Q$ ; N$ | | & {c T@ + Q$ ; S$ & X@ N$ ] N$ 2 `@ ; 2 T- ] H= { > ~ 2 X@ 1 8- ) ) Q$ ^ ~ { ( | N$ | 2 W@ ( < ( } } : V~ $# d } $# ( 6 6 6 6 <& 3* 7 ,# 0 q> 6 a a Y> Y> i {# ,# c5 ,# d k 7 a n 0 K/ ~# c n L= Y$ % v r ),.p r q 1; ,> b' 1; h p r $S w q {& :# /U {& ;{.u w G 2; D ^# /# a7 #.G '&.z F= E $S '&.1& $T z K N V 1& AR n! 8* O@ c- 0S z . Z o*. V (#..@.P,._#.aV }Y L aV >{.*I E>.I#.oY {,.I#.k#.J-.G&.RT Z ..V RT #N RT R%.G&.9$.R%.lP +@.G&.+@.w@.3@.0&.$)..` .` 8).4..9&.d~.y@.:=.a&.4..,{.` .K#.r*.<+.^&.!$.S%.!$.N#.<+.v*.<+.t'.7>.U,.P-.|=.W*.|=.*@.U%.'{.*` U%.6@.u;.6@.~$.){.8Z d .b` =` d .+#.E..+#.b` ]$.]$.G$.+#.l-.]$.h$.'@.h$.+>.c>.M&.X,.^$.X%.G .,@.G .> .> .IX > .9+.AZ JX JX JX gX Q#.gX 9+.f .oV oV BZ rU @Y !R !R [U KN UP QQ oC lQ `T TV zO yO {S VK WK CI VK `L FM sK QG 'G Jx qC OJ Jx :K ,G 'k qC !{.Zf qC 3v 3v Zf Vi 3v }u Ye Bl o8 o8 )k Bl qo Rc Ye Vi 2#.Tx M9 .g i9 >0 8e x/ S3 Rc d3 x/ __ u^ =] Q] =^ Q] u^ =^ u^ =^ 6< =] b~ c! =^ /! -^ _^ x) a] _^ d; d; d; 1> 1> 1> .- d; 1> 1> 1> b% ++ ++ M# b% b% b% ++ b% .- .- #- E> 4= P# c).t& u* d).$~.h% P# P# h% P# P# h% c).~{.{{.,)..u,.S~.^{./{.~).Z,.:'.:'.T>.|!.:'.Z,.g>.:'.u!.*~.1!.Q&.E'.E'.D'.[&.[&.E'.D'.[&./` E'.2!.`,.s-.g).+=.({.-%.+=.+=.+=.x,.X-.X-.2'.F'.2'._{.3;.3;.a{ x,.4;.:{.{; T).{; |~ 3'.V9 <{.[{.}{.k).8'.|{.1{.2{.3{.Y).p~.4{.5{.[).6{.7{.8{.9{.0;._>.0{.3~.y~.$!.0;.I*.a{.7U Ig 0c zf Mg {g > = . . # - > $ V@ + $ * V@ * Q$ ; & Q$ $ & Q$ . *X > U@ [* > ; ' & ^& }* . S$ S$ & }* | H= P$ N$ N$ Q$ ; H= ; 2) - ] S$ X@ ~ ) H= ) [ J) { g{.X@ ) 2 1 / 4 +# | , [ 3* [ Y@ 1 &# /& ( 8- 4 6- < &# q> d ## i 0 a *# 6 ># i Y> ,# 3* a a 6 d ,# a 8x n ]# n 0 L= c y2 0 2, 0- c n^ h _# c{ ;= p m s> h `$ h w t 4* :# q w q :# {& z G /# ^# 2; F= F= t w ).z B a7 @ .a7 I 8* AR I E; p=.AR 8* z 8* .@..x ..@..@.4>.0S >z Z..I#.A: A: oY *I oY I#.oY ,*.y+.k#.+).RT ^P )Q #N RT )Q ^P +Z RT Z .Z .9X 7).H&.|@.{&.1@./!.{&.CX .` o;.4...` o;.a&.y@.4..E` 3..4Z ` .f-.h{.8 .` .0 .!$.)'.z@.v*.c&.7>.i{.m!.}#.n!.n#.j{.(!.++.-).*@.1+.*@.p!.8Z xZ K>.d .-@.* .8Z * .E..E..-@.* .E..* .G$.+#.k{.F$.1=.r#.^$.1#./$.M&.7+.r#.X,.> .L` 7+.> .G .L` Q#.AZ AZ PV 9+.nV JX PV qW JX PV ZT lQ +Y QQ lQ UP [U UP UP YO b! 1> H# F# 1> 1> %~ d; d; ++ t* b% K# N# ++ b% ++ b% ++ ++ + `. l{.h% h% -+ -+ P# h% h% h% h% h% -+ -+ P# ('._'.-+ ,).=>..S~.Y,./{.:'.~).Z,.~).:'.->.m{.Z,.:'.m{.n{.~).Z,.*~.[&.[&.Q&.D'.D'.D'.D'.D'.[&.o{.E'.p{.ha q{.3!.-%.X-.7,.r{.X-.U>.X-.x,.X-.X-.|'.A;.({.2'.a{ 3'.s{.<@ ;~.3;.9$ t{.u{.<@ !@ #; ^).v{.w{.8'.x{.o~.y{.z{.8'.A{.8!.B{.a'.(: C{.D{.0;.+{.e,..;.8;.G;.G;.0;.D;.E{.Nb Ig *d zf Ob xa # = # Q$ . $ # ]& $ $ V@ > # $ + = $ $= ; > $ $ $ > > %= ; & > . S$ S$ - U$ %= & ^& ' & Q$ U@ Z! b{ N$ Q$ N$ T- | N$ ^ . ; ~ N$ J) ( 2 2 Z! `@ | X@ ) { J) { N$ ( Z! 1 { | &# ) Y@ } &# *# *# X@ { $# /& } ( $# 6 } d } } 6! $# } a' a 6 6 : a {# 6! ~# j { i 0 0 0- k k ~# c _# o 2, 2* % s> Y$ ,> H{.2, `$ % h p ]# t m p 4* /# G Y$ {& $S |Z C ^# w F= '&.z F= /U B 1& z z z w 1& JW n! a7 #= n! c- I{.T^ Z .@.JW JW 1& .@.v@.Z..JW J{.5 .x .5 .iU B$.oY A: oY B$.W!.iU +-.BX K{.k#.^P ^P ^P G&.^P )Q +Z RT +Z G&.+Z Z .1@.w@.H&.0&.e-..` 0&.7` .` .` 4..9&.E` a&.+` :=.4..4..` .<=.#@.L-.E).<=.$ .r*.L{.z+.Z!.M{.U,.U,.N{.0>.t=.Y;.O{.L~.%Z #..Q-.L&.#..#..E .a .{$.M~.d .%+.8Z .%.+>.]$.X*.G$.F$.%+.p#.+#.4Y F$.h$.P#.=V r#.NV HX IX HX H$.L` HX ^$.L` H$.IX nV qW nV qW JX qW nV PV JX f` HG , .!R QV PV @Y UP YO ~S QQ YO 0 8e 35 35 35 S3 3| d3 T3 .[ S3 45 9~ u^ =^ u^ u^ u^ Q] =^ u^ Q] _/ /! 2{ s& 0] R] 1> .- d; .- 1> 1> y' ^' H# .- .- s& T. t* + b% ++ b% b% ++ b% `. I# O# h% h% P# -+ P# B'.-+ P# u* h% h% T&.P# *>.h% L).d>.').B*.M)..v,.S~.:'.~).Z,.:'.->.:'.S>.u!.:'.h>.g>.~).~).1!.[&.[&.[&.D'.D'.[&.E'.D'.E=.o{.2!.T~.=~.Q).3!.X-.X-.6,.Q).+=.+=.X-.-%.x,.x,.2'.ha }'.x,.X-.f%.f%.P{ Q{.f%.{; a{ x,.R* 3'.R{.S{.T{.().().M'.z!.z!.U{.P'.V{.`~.W{.X{.|! Y{.Z{.F;.0;.`{.G;.b!.9;..;.e,.2~. ]..].9b Lg zf /g Zb Zb Zb Zb ^f *e _f ue nc nc _f nc nc rc nc ub xe =d =d =d =d nc nc nc nc &&.nc {l lc # L$ > > . > + L$ + . ]& . 1* $ = > > . # T@ & > ] U) > ' . $ . # $ ; . = H= ; ~ > > X@ R$ ; & ] | U@ H= N$ } *# ~ N$ | | ~ /& Z! +# { 7- Z! X@ , | [ ## d $# } { Y@ 2 4 2 X@ ( } ,# 2 < $# 6 Y> 8 V~ V~ 6 7 ~# 6 ,# 0 8 V~ {# a j s> a $# 0 L= 0 e &].n n h ]# ,> Y$ r p p! s> p 2, ;= 4* ;= q `$ m G D `$ C ;) p Y$ E /U F= D @= C F= $S '&.*].z /U z {& /U .Y;.Y;.;].Y;.t*.>].,].{*.sY #..1+.*` L&.6@.a .*` L>.e$.& .d .& .d&.R-.E..p#.-@.-@.* .]$.-@.S-.G$.J` HS X%.F..9..M&.wl /$.H$.L` HS > .HX G .G .G .nV nV nV G .JX [W gX PV JX nV 1T H# H# H# .- .- 1> .- .- .- b% b% ++ s& ++ b% .- T. ++ L# M# N# E> 4= u* 4= l{.l{.P# c).h% h% c).c).h% ('.,).)].d>.,).v,..)-.!).!].->.->.A%.:'.~).->.:'.m{.Z,.|!.~].m{.u!.[&.D'.Q&.D'.p{.D'.D'.E'.{].=~.g).2!.E'.{].>>.Q).]].+=.-%.X-.X-.]].x,.-~.X-.R* G'.U9 a{ f%.A;.s{.^]./].(].|'.a{ 0$ ]; _].}- :].V).T{.<].9'.#'.[].}].|].1].1].h= 1].2].y% o+ 3].<~.<~.4].<~.D{.b!.n>..;.y~.J;.5]. l *d zf /g c Zb Zb ^f ue _f ^# G w ^# ", +"R@ I/ L$ I/ G= I/ I/ 5_ + K$ I/ L$ R@ 1) # ]& ]& = ]& k) % J$ = L$ + [* =' . $= }, + ]& > k) k) 5_ I/ . $= + > $= - $= S$ - . U$ - $ = > = Q$ ] & S$ * * & ' ] & P$ & ; ) ; U@ ~ & & & - X@ ] | P$ P$ | N$ { |* ; X@ | Q$ ' 2 +# $# [ [ ## < / |, X@ 2 d : /& X@ 1 { 6- `@ 6- D, *# ( 1 1 { [ $# 7 3* 3] d ,# 8 8 } ,# a 6 ,# a 5` 5 9 a k c k {# 0- c ]# c r L= r c L= Y$ ]# _# Y$ 2, p n `$ h ;= c s> y /# 1; t Z$ 4* 1; w *].G w t /# {& t 8$.z 4>..@.4>.B$.z .P,.5 .B$.:#.I-.y .c- _#.-*.0].BX oY (U )Q oY Q%.#N #N )Q )Q RT Z .+Z +Z RT Z .R%.G&.H&.G&.q*.|@.!&.D` R%.^,.4..4..9&.d~.o;.a&.9&.o;.9&.:=.pY a$.z+.<=.Y$.#@.!*.9).<=.S%.T,.<=.m!.Y;.i{.t*.B@.a].A@.Q-.#..*` _W %.#..#..%Z 6@.e$.b].d .8Z +#.p#.+#.p#.-@.]$.E..%+..~.p#.-@.]$.9..M&.V%.g$.G .G..c].=V L` G .L` pT L` /$.G+.PV nV gX AZ PV nV SW IS qW qW JX aZ JR pV JR vL YO JR .C'.('..t!.~).Z,.h>.~).Z,.m{.|!.D'.*~.[&.D'.D'.[&.D'.p{.2!.P).e].;>.E'.f].e].E'.x,.x,.}'.X-.X-.X-.x,.X-.-%.|'.2'.t{.a{ f%.f%.x,.}- a{ F'.R* g].9$ @=.P* %p h].i].+'.j].|{.k].l].m].n].V{.o].X{.7| h= p].E) q].r].s].t].<~.n>.<~.u].I!.H!.v].w].ic zf zf #e xa (f vd kc iE _f nc nc nc nc xe ub nc zh =d zh ub =d *e ub %e %e *e nc =d nc nc !.Qo 8w Gj x].DQ LT hW k;.'l &l y].TU 5g me me Az z].#t }q }q &o &o $].gk ]n `l OD A].}x B].KT JT kY ]j Dg C].{. R X P @% H S Q@ |; N@ @% S 8* G z N G ^# F= 1; 1; ", +"I/ BN I/ 0' I/ BN ]& ]& K$ # L$ L$ J$ # + ]& ]& + L$ = + # [* # p9 = + ]& k) + = ;b = > .( $ ]& = > > & ; . . [* U@ ' & |* . P$ - U@ N$ o! ] $= - * & . Q$ R$ U@ N$ $ R$ R$ S$ ; . S$ %= T- S$ U@ ; U$ S$ | =' ] ' X@ ~ & %= | %= ) { J) H= ~ W@ | } H= 2 $# { N' ( &# D, 5 +# 7 Y@ ## 2 } 3* [ 7- Y@ } ,# } d ,# ,# 9 0 a } 6 $# a k a 0 0 ~# !# 0 0 L= p h k K/ L= !# C; a' 0 *= h p 1; Y$ n t h {# 1; 4* p % -= b' r ^# /U ^# :# 2; 2; F= #] {& B z $] a7 a7 z ..@. V V (#..@.v@.t%.x .QT B$.y .z .D].oY E].-*.oY oY #N (=.*I #N #N RT RT ^P +Z RT +Z +Z G&.G&.G&.Z .R%.G&.Z .F].!&.!&.$)./!.4..4..E` 9&.E` 9&.4..4..a&.:+.#@.#@.z+.^&.^&.$ .s'.~*.N#.s*.T,.Y;.7>.G].v%.}#.g~.A@.K&.H].*` #..++.#..6@.#..++.++.*` * .d .d .~$.E..]$.p#.-@.+#.+#.]$.;@.f$.-@.V,.i$.7+.W,.HX IX G .L` L` HX HX IS Ix > .HX HX IX qW N` nV IS *T [P pT f` PV |I H# s& 1> ^' .- .- ++ ++ b% K# .- b% b% T. s& Y. K# %+ .+ .+ N# l{.5= l{.c).K].c).h% c).h% c).c).('.c).)].('.%~.)).B*.L].B*.v,.B*.A*.B*.B*.)).v,.v,.d].:'.:'.M].S~.->.->.->.~).~).)-.N].u!.:'.:'.g>.5,.D'.D'.Q&.D'.E'.E'.D'.E'.E'.E'.2!./` q{.2!.O].E'.X-.+=.g).x,.U9 x,.x,.x,.|'.x,.U9 2'.x,.v!.+=.V>.^@ !@ H] ;~.2'.A;.4;.H] P].Q].j].R].S].T]._).U].z!.V].4{.W].0!.5{.w+ i= `] P^ X].Y].Z].<~.7'.`].u]. ^..^.y~.+^.-j *d se .%e xe =d nc nc nc =d nc =d nc *e nc kc @^.ju #^.$^.Nf /y WM cE %^.Dt &^.Mj *^.;o UI UI =^.bL 5r 6r 5r 6r &o =o ~n ^n aw ou -^.;;.cU Jj y` dL _j ;^.>^.x$ F@ X L@ G@ J L@ S J A K@ O@ K Q@ 7* F G 1& /# t 4* ", +"jP ], ], <{ #S <{ J$ I/ ]& K$ 1) J$ jP ]& ]& + 0' R@ ]& ]& ]& J$ ]& = $ ]& V@ ]& $ V@ V@ = = V@ # $ R@ + + $= # V@ V@ E! S$ S$ $ = - U@ > !, > > X@ ] U@ ; $ * R$ *' ^& U$ H= . ^ Q$ Q$ > ^ > > U@ *' & ; U@ H= ; ; X@ ; { N$ | N$ ; X@ | ## g{.X@ ~ ## 2 Y@ X@ ~ /& ( $# O$ / 4 4 $# $# } < 8- ( /& 2 [ 5 e D, d ( a L= < d ,# ( < d ,# 7 a 0 8 n {# V- n 0- h r n r h r 0- ;= z: ]# q ,> 0- ^# -) h ^# W$ n t % ,^.p /# ^# t {& m F w w w q 2; F= w F= /U z z z AR ).F= AR F= Z 8$.n! JW z n! JW _+.>z V KW .@. V (#.5 .x ..@.z .'^.)^.:#.aV QT j#.MW ;*.B$.I#.(U .Z !^.(U _#.^P _M ^P )Q )Q ^P RT Z .G&.Z .7).+Z 3@.R%.G&.G&._=.+@.0&.^,.q*.E` 9&.9&..` 9&.y@.9&.E` ]&.b&.` .a$.r=.z+.<=.#@.<=.)'.#-.N#.#-.T,.t'.~^.K&.r;.}#..#.m!.%Z #..#..%Z 1+.++.6@.++.L&.d&.%+.K>.%+.* .E..* .w=.l-.p#.]$.]$.mV mV -@.3%.G .wl mV =V AM L` G .> .Q#.> .Q#.HX G .f` nV qW JX JX nV X%.>J |T PV SV _Q {^.}P }P |I _Q lQ ^ .- H# .- .- 1> K# s& s& K# R; T. T. b% T. M# b% `. `. + b).u* ^^.b).P# -+ h% c).w* $~.#~.c).('.h% /^.R~.k~.]{.B*.').B*.(^.)).v,.)).d].)).d].v,.v,.e).->.|*.!).:'.:'.t!.t!.~).->._^.:^.:^.u!.1!.m{.T~.Q&.n{.E'.D'.E'.2!.p{.E'.=~.E'.Q).ha E'.O].ha +=.}'.+=.]].<^.g).2'.X-.2'.X-.g).F'.2'.F'.e$ F'.F'.^@ :@ <@ b$ e$ a{ ]; [^.}^.|^.1^.2^.3^._).M'.X).U{.4^.[).5^.6^.B!.h= u+ 0!.7^.8^.9^.<~.Y].0^.u].a^.I!.G;.0;.b^.Ig {g Vb E-.Zb kc vd $e nc mc nc nc wd =d -d =d ub ub -d #H ub ub rc #H ub %e >e =d nc ub =d xe rc nc *e mc A~.c^.d^.=L e^.f^.$W i'.g^.h^.i^.j^.KL +O 'l +K +K AK lu k^.=o &o 6r To ]y nu ]n ^y dE l^.%&.xv kM UY kY _j vf m^.{. %. B$ D$ M@ Y T J H N@ z I N w w ^# P@ x t C t ", +"L$ =[ ], ]& 5_ ], #S 0' = X! * 5_ I/ ]& = * L$ 0' 5_ ]& 0' L$ ]& + ]& ]& ]& + + V@ . #^ L$ > H= o! % # ' V@ > & > . S$ ; ]& > . . z] & ' ] . > S$ U$ - . H= = U$ & . ~ - $ H= & . & ; > X@ ; ; Q$ X@ 2 ; ; X@ X@ %= U@ ; { | ~ - N$ | 2 [ ] & 8- H= Y@ : ( 1 $# Y> ( &# ## 6 [ 2 ## 9 ( <& 6 == d } &# ,# 6- 7- 0 q> 7 8 !# i # ,# 6 a L= 6 i ~# n W$ |& k C; z: n c{ n c{ `$ ^# c q Y$ p r L= n ,> -= 4* m V| 2, :# )> #] Y$ t $S w F= |Z /U #] z F= w G z a7 a7 a7 AR z I T^ n! O@ M M z .c- |# .@..@. V c- c- c- 5 ..@.4>.y .4>.*I aV SO oY B$.-*.B$.;*.:#.(U #N (U *I ^P 'Q ^P )Q RT )Q RT RT _=.+Z R%.e-.9X '*.H&.1@.{&.q*.7` 0&.4..9&.3@.4..CX 9&.9&.d~..` :=.a&.:=.` .o;. ..s*.T%.9 .U,.n^.T,.v*.N-.m!.G].0>..#.|=.t*.~^.%Z #..U%.++.*` % .{'.++.o^.E .%+.%+.* .8Z * .+#.E..v=.+#.F$.p#.p#.g$.p#.h$.HS M` 0..}T IX }T =V H$.--.> .e .L` IX nV IX gX [W !X OQ nV *T =Z [W *T ,V =Z HG AY #G KN QQ YO UP 0 Q] =^ d3 /] Q] =] =^ =^ Q] =] 9~ R] =^ =^ u^ u^ c! H# x) >^ H# .- F# H# 1> H# .- F# H# b% T. T. .- b% ++ + s& }> b% s* ++ t* K# K# s^.s* N# $~.h% h% c).P# c).h% h% $~.t& P# $~.T&.d>.t^.('.]{.u^.k~.v,.v^.v,.)).v,.)).v,.v,.)).e).~).w^.!].!).~).~).:'.~).~].n{.n{.1!.OX D'.1!.u!.T~.1!.D'.D'.E'.2!.x^.E'.P).R).+=.x,.D'.p{.{].2'.({./].X-.X-.y^.R* 2'.2'.x,.X-.x,.x,.;~.;~.H] b$ <@ 2'.<@ W% R* a{ !@ m$.z^.A^.<].().B^.|{.X).l].a'.C^.D^.l).y{.2].|! s+ 9!.E^.F^.G^.)>.8^.Z>.H^.I^.G*.J^.K^.L^.0c Bf E-.`b Zb iE iE ue $= # J$ V@ = $ $ > = # $ S$ $= . > > = - 1* $= = = ' N$ & - - i#.& ; N$ $ ^& ] T@ ; - ' > (& $ & R$ ; | S$ ] ; U@ H= P$ | { b{ | N$ }* ; | | ) 2] H= { ~ 2 R$ X@ Z! } ## [ | 6 d { $# < *# 4 { | 7- { N$ <& :& $# ,# 2* 3* Y> a 6 6 } V~ d } 6 ># tA *= 8 6- L= s> h ,# K/ k h n n^ h s> ]# _# n h c Y$ m `$ `$ 1; ^# b' 2; 1; ^# Y$ :# 2; /U p F m /U #] % w .4>..@.P^.p=.Q^.aV AX y .>*.p*.aV -*.B$.iU BX ^P oY k#.3d bV )Q RT +Z ^P +Z G&.R%.Z .Z .Z .hT H&.e-.{&.+@.hT 0&.3@.E` 9&.E` /!.E` 9&.4..o;.L-.a&.]&.z+.<=.!*.s'.S%.$ .s*.n^.7>.N-.#-.t=.U,.8>.W*.R^.K&.W*.1%.#.._W *` ++.xZ 8Z C@. %.d .* .8Z ~$.d .* .-@.p#.G$.8Z ]$.+#.F$.+#.p#.f$.K` 7+.nV F..}T Ix G .}T HX =V HS IX IX P#.JX 8@.IS HR KH pT >J >V ,V qW *+.AY YO JX {^.qT YO QQ ++ ++ b% b% ++ ++ s* K# b% T. .+ s& Y. Y. `. R; L# s* c).c).h% h% h% c).l{.c).c).c).c).c).h% h% t^.S^.v,.v,.T^.T^.)).d].v,.v,.)).v,.)).v,.M].t!.:'.:'.U^.~).:'.:'.~).~).m{.~].u!.E'.D'.Q&.5,.u!.n{.2!.E'.E'.2!.[&.2!.E'.V^.e].]].W^.2!.{].X-.X^.Q).+=.x,.s{.2'.X-.|'.@* X-.2'.R* 2'.R* R* R* f%.f%.<@ 3' 3' a{ f%.X# Y^.Z^.F!.`^.P'._).P'.y{.[). /.z% ./.'$ x+ !$ !$ y% '$ B^.`>.+/.@/.#/.7'.)>.e,..^.e,.$/.zf {g Yb {f %/./.~. +. i~ S M@ J M H$ I A G G z G N b' D :# M= m ", +"L$ ;b *) BN J$ 5_ .( I/ #S [n 1) K$ 0' J$ L$ 5_ K$ L$ J$ # = L$ J$ V@ V@ + ]& $ [* = # |* . L$ = . = # 1* > . # > |* & # > > o! & > Z, . . ]& ; S$ + Q$ . N$ ^& V@ - N$ ; P$ > - & $ $ S$ 2 2 > Ez ^ -.| | ) ; Z! { 1 N$ N$ ] ; 4 / ) N$ 4 [ X@ ; > { } *# 1 N' ~ ## ( ,# $# 2 d 6 ## *# a Z! 6 ( } ( ># 0 7 6- b ( a $# 6! ,# a q> !# g a 0 e |& n d ~# L= n 2, n^ Y$ h n^ h Z> 2, h ]# }& V| b' Y$ Y$ [# @= Y$ /# p /# #] 1Z '> G F= W) D m /# /U z $S w a7 ).z a7 z z a7 a7 8* T^ ,/.I 2Z 8$. Z O@ n! 8* .@. V .@.M 4>..)..@.(#.JW H#._#.aV _+.B$.-*.aV B$.-*.I#.yS '/.aV k#.oY )Q )Q +Z RT +Z )Q +Z R%.G&.+Z H&.9X w@.R%.<#.0&.hT 4..E` E` D` .` 4..E` o;.4..a&.a&.4Z :=.s*.#@.!*.~*.<=.z@.r*.#@.Y;.7>.7>.7>.8>.T,.#-.P-.u*.)/.x%.C .PW _W ++.#..*` {$. %.d .M~.d .b].%+.p!.E..d .E..]*.E..-@.p#.+#.mV ]$.Y*.(&.}T K` K` }T N~.IX HX =V }T IX IS HS IX IS pT PV N` wl PV =Z XT nV SV gX JR HG #G QQ ..'.1/.1/.0^.2/.2/.`].9;.3/.4/._b A~.Yb $e _f nc _f nc =d nc %e ub -d -d #H #H yh yh yh 'c )%.yh )%.yh )%.)%.)%.yh &/.#H jZ =d wh ub =d ^f 5/.ew 8w ni 7V 6/.Ro qu gO eE 7/.'B 1i ND [q #= N z 2; t ", +"R@ L$ <{ =[ G= ]& 0' I/ J$ <{ = # + I/ p9 + # + J$ # $ ;b + + ]& [* + [* . ]& $= V@ . + - $ + V@ $ ]& # . ; ; $ $ . = Q$ [* Q$ = L$ . 2) %= & * . & ] }* | | ; H= U@ R$ | . %= & ; ^ Q$ ; N$ ] ^ *' U$ %= ~ 2 2 2 %= & ~ N$ Z! ) ~ /& ) V~ ~ 2 ) ## Y@ ## ## 4 } *# [ &# ># B; ( } { 6 /& Y@ } a ,# d $# 6 6 7 6 3* ( 7 i e z: L= e n a k s> 0 n n !# s> c c n v n ;= `$ Y$ n m p Y$ `$ % 4* :# /# `$ m t F 4* D @= p 1; w ^# C z F= :# G G F= z z K 1& E E z '&.1& 8$.8* T^ Z V c- M V V c- Z V .@.4>..).t%.x .z .E>.aV L >*.B$.oY *I iU I#.(U yS J-.YX K-.a/.)Q RT RT Z .RT 'Q #N b/.+Z 9X sZ Z .R%.H&.{&.q*.^,./!.d~.CX CX hT .` 4..J#.3Z 9&.E` 4Z #@.z+.c/.h{.!'.#@.N#.9).s*.n^.U,.~*.t'.7>.T,..#._;.t=.i-.wZ a .C .E$. %.*` h2 K>.{$.* .%+.%+.E..* .& .d .%+.p#.-@.+#.b` |#. Y 1=.RW d/.IX HX oT 8@.2=.L` [W IX }T }T }T =V [W L` gX qW nV PV pT nV O&.nV qW PV PV oV }P ~S |I lQ 1T G UP LR 3P cN 1O 1I 1I CI 1I XA UK XA ,G JG Jx .- v) H# H# F# F# .- F# F# F# .- T. F# ++ Y. b% R; s* b% L# Y. ++ L# Q. K# .+ ^^.^^.R; .+ 5= c).#~.$~.$~.c).c).c).R~.Q~.f/.R~.R~.R~.v,.)).g/.^/.d].d].)).)).)).U^.d].v,.//.f>.~).h/.i/.t!.n{.~).t!.t!.j/.t!.n{.m{.1!.2!.D'.<'.E'.D'.k/.E'.E'.p{.E'.2!.2!.l/.x,.m/.p{.n/.R* s{.x,.X^./].2'.]].X-.x,.2'.R* R* x,.R* !@ @* <@ <@ !@ J- !@ 3'.4@ o/.p/.q/.p).r/.s/.x{.z!.t/.|! |! l+ 9> Fl Fl dz _i F+ F+ )$ u/.v/..'.w/.#/.<~.H^.0^.7'.G;.x/.}b ^f vd _f *e nc &e *e rc xe ub ub -d -d $c *e yh +l e*.)%.)%.)%.y/.'c ~=..$.e*.~=.yh ~=.=d ub #H ub =d {g z/.A/.w$.B/.#].7].7/.wv eE `y k;.C/.D/.2q E/.F/.#t #t #t To &o =o IC G/.0K aw RB eE eE |N |N JT 9T WY (j 3g NY H/.~. G@ ` S 1# S P@ +% z K@ M I C A G D t ~& D C ", +"V! <{ I/.s' 2^ 0' 0' I/ L$ R@ I/ 5_ =[ 5_ 0' ]& * + L$ 5_ + ]& #^ L$ R@ # + }, # ]& ]& . & & $ ; > # V@ J/.+ = S$ Q$ # # . $= . = - }* ' $ $ Q$ & - . * > - ; $ Z! V@ > $ ] %= > T- | & # T- R$ Q$ ~ |, & $ ] P$ H= ] [ ~ 2 ; H= N$ ~ 2 ## | | Z! /& 2 { Z! ( ## { } { } &# ,# D, d a ( } d 6 } ( 6 Y> d a a a /& 6! k j 7 -> } k L= c a 0 s> L= {# e K/ Vj e }& 0 r Y$ % K/ `$ K/.Vj h m `$ q q 4* D `$ m t w m `$ [# m s> w w :# $S E F= :# z a7 w z '&. #.$S 1& 1& 1& 1& L/.$T T^ m;.O@ n! V c- c- O@ JW c- .@..@.(#..@.4>.5 .iU aV A: ` :#.:#.oY *I oY (U yS K-.BX +-.+-.#N RT )Q _=.)Q +Z RT +Z Z .Z .-X R%.G&.+@.3@.3@.3@.0&.,$..` 4...` 9&.E` 9&.:=.E` 9&.y@.pY ` .b&.M/.M/. ..5Z Y;.......8 .N/.v%.S%.)'.0 .N-.N-.N#.M#.^W %Z 6@.*@.a .E .a .++.yZ d .'X gV * .E .% .d .]$.d&.& .O/.zY dX -V P/.d/.HX }T HS IS M` G..L` HX HX oT }T G .=V =V Ix HR pT pT nV PV 5Y pT qW ;Z nV HG XT Q/.#G !R .K'.)>.`].H^.H^.H^.+(.@(.]f Zb ^f ue (.,(.v@ G@ 9* Y T S M@ P@ B P@ I I I I D `$ G C 4* 4* ", +"BN <{ p9 ], =[ + I/ I/ ]& I/ 0' + K$ 5_ 0' ]& # # 5_ L$ 5_ L$ L$ = ]& R@ [* # > = $ S$ S$ $ . # # ]& V@ Q$ [* # > > = U@ # & ] . 2) U@ S$ Q$ * U$ Q$ ; %= ^ > ] > ^ X@ N$ S$ { |* =' U$ $ # ; Q$ ; N$ `@ | = N$ ' P$ ~ ~ ) *# , 2 R$ { ^ xS 7- < X@ H= ( 5 *# } } ( 4 1 ~ d $# 6 k 6 ( ( a 3* Y> 6 &# a 6 == 6 0 b ,# k ~# a ,# 3* 2* k a *= s> s> 6! !# 9 e Q{ n p r c Y$ s> 2, K/ ,> A~ h p n q m #| ^# Y$ |& t @= #| _# ^# /# ^# /# w C D /# u B F G /U w a7 G @= z w I I KW a7 8* =X .@.1& .@.1& V V 2Z V c- .).4>.v@.v@.AX 5 .J AX I-.aV MW *I '(.WX oY oY k#..V WX yS )Q )Q RT +Z RT +Z )Q Z .+Z G&.EN sZ w@.lP 9X hT hT +@./;.CX 0$.AS E` 9&.4..,$.3Z Y!.W;.` .:=.)(.M/.M/.s*.S%.<=.s'.N/.v%.c&.0 .0 .$ .c&.K&.@..#-.t*.I&.1+.U%.r;.*` ++.#.. %.d&.%+.K>.d .d .d .+#.* .+#.E..-@.]$.|#.; .3%.G$.e .5+.G..}T K` }T P#.=V G..IX HX > .HX Q#.PV Vw IS PV IS wl PV 5Y nV qW OQ PV HG UP }@ R* H] b$ !@ :@ :(.<(.[(.}(.|(.1(.2(.P'.z!.3(.y% s+ o+ dz 9> Fl 4(.On _i 3c L Xi 5(.n~..'.`>.w/.6(.`].0^.7(.x-.8(.^f P;.(g nc &e %e ~=.ub ~=.&/.yh yh yh )%.9(..$.$(..$.$(.:b :b :b 0(.e*.[R a(.:b .$.!=.)%.@^.3$.$c -d td H*.7V Jj b(.c(.~F wv eE 2G 2G `y ~F 2G d(.e(.f(.f(.l h(.WM KT JT QD %W }j `` dk ii ^F i(.j(.z@ ,= C$ P@ P@ U H$ I |{ N B N m `$ /# `$ t Z$ ^# t ", +"]^ #S jP J$ G= BN p9 I/ 0' I/ + R@ BN 1) 0' 0' # Z, K$ 0' + ]& ;b = ]& + # 5_ . > Q$ Q$ ' $= ]& L$ # * . V@ + Q$ . - S$ Y! ]& $ . k) & U$ - ,Q . ; = & & . P$ H= | X@ & | ] & + - ; ' ; N$ Ev U@ ^ | S$ ; ] Q$ ; U@ 2 ) T- ~ N$ X@ [ 2] ; # 2 P$ 1 [ | 4 => ( 7- ~ f] /& d 1 d $# 6- V~ d } 6 D, V~ [ 5 ( 3* 3] } $# 0 7 6 $# 9 q> 6 6 q> d ,# e 0 k 6! K/ 0 ~# ~# L= ,> W$ ~# n h n^ ,> `$ ~# n ,> ,! m /# p 1; n b' ,! /# m /# w $] xE w 2; 2; B C` $S z B '&.F= w w @ .F= z z A$. #.$T F= 8* V L/. Z 1& O@ M .@..@.4>._+.4>.5 .:#..@.3# Z..Q SO p*.MW iU aV k#.SO oY b-.,*.3d ;$.(U RT RT +Z )Q RT +Z RT Z .+Z G&.G&.Z .|@.<#.0$.+@.1@./!.w@.3@.CX /!.9&.L-.E` a&.a&.4..o;.f-.:=.9).=].c/.k(.l(.c/.k(.9).v%.M#.!$.7>.N-.s*.P-.x%..#.K&.L~.m(.%-.s;.n(.*` {$.d .o(.E$.E$.%+..%.L>.E..* .* .E..* .%+.p#.+#.g$.3%.c` F .G..e .y%.HX IS IX 7+.HX HX G .G .qW IX IS nV [W qW JX gX nV PV #G

J 5M -J 5M |I 8 o8 n8 Ye Vi Q5 o8 Ye a3 o8 o8 4v |c Td ]: Sd Td ]1 M} O~.R4 ,/ ,/ ,/ /] ,/ 9~ ,/ 3| /] =] r~ 9~ =^ Q] Q] =] =] Q] Q] D> D> =] Q] ]' .- H# y' H# v) H# F# 1> S. F# F# H# Y. T. F# F# .- ++ Y. L# ++ Y. Y. U. s^.Y. .+ T. Y. R; c).~/.$~.c).$~.$~.~/.l{.$~.#~.c).c).s(.c).t(.]/.L].d].T^.%~.v,.)).d].)).)).d].d].)).d].M].t!.n{.u!.u(.:^._^.n{._^._^.n{._^.v(.n{.E'.2!.E'.D'.p{.n/.2!.E'.p{.p{.2!.p{.P).t{.]]._/.p{.w(.y^.V/.R* 2'.ha ]; x,.J- v!.x(.H] v!.H] g> J- ]; R* s; s; b$ y(.z(.}(.A(.|(.B(.C(.o~.V].3(.D(.A- '$ 9> dz Fl bO .F(.6(.6(.2/.0^.)>.b!.h^.Zb vh 0' + > + # . > $ > . > + - & =' |* + $ o! | . > U$ N$ ; X@ %= U$ S$ S$ > %= o! & T- H= Q$ S$ | ; ) S$ ; $ ^ ] ~ 8- ~ N$ U@ 2 R$ 7- { [ xS [ W@ | ( ~ { 1 U@ 05 *# | ; /& Y@ $# 7 1 a' V~ 4 8 $# Y@ D, $# N' ,# 6 a 8- 0 ># q> 7 a Y> } a 7 ,# a q> 2* c z: ~# ~# 0- 0 ~# c &].n L= |& 2, Y$ A~ c i ,# ,> r n q Q(.Y$ Z$ b' s> /# 4* 4* q $S 4* 2; G /# t E /U F= G C` E t *].z C` z AR a7 1& x 8* a7 AR 2Z c- Z 2Z .@..@..@.t%. V .@..@.x . V =X p=.y .(U I-.H#.*I *I oY iU oY I#.k#.RT iU (U a/.)Q +Z )Q Z .+Z RT RT G&.+Z +Z 3@.Z .|@.R%.e-.{&./!.3@.{&.AS hT .` 5>.L-.4..,$.a&.o;.L-.:=.<+.r*.,{.k(.M-.T,.U,.R(.8>.i-.G].m!.U,.t'.>].w'.U,.}#.*` 1%.x'.S(.L&.++.{$.++.#.._W %+.C@.]$.E...%.E..8Z E..E..+#.* .p#.I` F .E..F .;V e .qU >@.HS ,@.=V =V L` G .HS HX r#.HX pT nV nV qW pT IS KH

H# ++ U. b% T. Y. F# T. Y. .+ .+ Y. + #~.T&.U(.c).$~.#~.#~.#~.U(.#~.#~.Q~.('.$~.V(.W(.i~.X(.}!.g/.v,.d].X(.d].d].)).U^.d].U^.//.:'.N].m{.Y(.t!.n{._^.Z(.n{._^.`(. _.E'.2!.2!.2!.2!.V^.O].E'.E'._/.2!.2!.V^.p{.t{.]].p{.2!.O].+=.R* 2'.2'./].V/.R* 2'.R* J- R* J- ((.R* J- :@ R* ]; !@ @* P# ._.r>.q/.+_.@_.#_.z!.$_.%_.s>.5^.s+ Xi Yr Yr UN ^R ot On 2K On v+ &_.*_.p>.F(.`>.`>.w/.K'.Z].=_.lv ub xe %e %e &/.xh yh )%.e*..$..$.:b 9(.:b x&.9(.H(.x&.9(.;c ,c H(.:b ~%.x&.H(.:b .$.)%..$.e*.@^.+l -_.;_.>_.,_.'_.)_.!_.~_.^y [x ou dw ou {_.]_.^_.9w 9w #t |* . S$ - > $ ^& S$ = N$ . S$ . | $ . . ^ T- ; > & Q$ X@ ] R$ ; ] & & ~ ^ N$ H= ; U) 2 ~ - 2 P$ ~ | 2 N$ U$ | ; U@ X@ N$ ] | *# [ [ | { ) ) D, 1 6 5 } } ># ( : d :_.## $# Y> $# :& ( ( ,# ,# b a ,# } ~# i 7 7 V) z: c 0 k k ~# 0- r !# 0 ~# ~# z: s> E, s> c h n `$ s> `$ Y$ q p `$ b' % `$ q s> p w u #] E /# % /# E 2; /U (# '&.F= a7 /U z a7 a7 z n! 1& JW z AR .@. Z O@ 1& V c- c- .@. V 4>..@..@.x .v@.v@.5 .*I Z..I#.i5 *I *I -*.*I <_.(U +-.[_.(=.,*.^P RT )Q RT RT ^P RT +Z Z .RT |@.G&.H&.'*.+Z e-.q'.CX $).AS /!..` CX 0$.9&.J#.a&.9&.X;.a$.r*.Y$.X;.}_.|_.r=.)'.9).Y;.t'.Y;.I>.1_.I>.2_.g~.m!.{*.U%.3_.L~.L&.*@.6@.++.%Z oW nW &` xZ %+.& .%+.* .E..-@.d .%+.E..-@.o#.jV pU b` 4z 0Z HR K` =V HR }T HS 0..}T }T =V M` =V !X PV nV IS pT [W HR =Z >V

V #G YO QQ LJ QQ S. S. F# H# F# F# F# O. H# Y. Q. F# H# T. W. R; Q. ++ F# Y. ~/.5_..+ R; U. $~.T&.$~.$~.K].$~.#~.$~.#~.$~.~/.#~.c).]/.6_.7_.8_.]{.U^.M).}!.)).)).)).v,.d].d].d].U^.M].9_.9_.t!.Y(.0_.a_.t!.t!.N]._^.`(.x^.2!.2!.E'.D'.2!.e].b_.c_.2!.2!.p{._/.V^.W/.n/.e].3!.e].t{.R* 2'.X-.R* H] R* x,.x,.2'.2'.@* 3' d_./; [/ 0$ n, R* 2'.4' :/ e_.7!.f_.g_.h_.x{.y{.i_.j_.k_.>$ 8> '$ qt cz .B bO $q ot 5H tQ On l_.m_.*_.F(.n_.o_.`>.7'.`].p_.,n ub %e ub ~=.'c yh .$.e*..$.:b :b :b ;c H(.,c }i _N Ac YN YN Ac tb }i ~%.x&.}i ,c :b !=.0(.e*.e*.q_.r_.s_.t_.R!.`y ]n u_.^y tv ^y [x ou vv v_.]_.w_.O(.O(.x_. - ^& = . - . $ ; > - & & ^ . > | Q$ . - N$ $ o! & # ; }* ] ; N$ ; - ~ | & Z! *# ~ Z! [ [ [ ; [ 8- X@ Z! [ N$ | { X@ ( } < } [ $# Y@ Y@ Y@ 3* [{ ( 6 1 } d $# 6 b d 6 9 < 6 6 k } e J= 6 k 7 3] c a 0 L= k h h n L= Q{ h Q{ n Y$ 0- n % s |& `$ c{ c q Y$ n^ u ,> v r ;) C {& ^# /# G D @= G F= t F= F= z F= #] a7 z a7 1& z I Z I KW ). V Z T^ a7 JW T^ JW c- t%.4>.4>.4>.0S v@.>z (#.B..aV iU *I d{ iI iU (U aV aV ^P .Z E>.yS ^P )Q )Q )Q +Z +Z +Z )Q G&.+Z 1@.G&.+Z 7)._=.R%.$).0X 3@.bV o;.CX .` d~.E` E` E` ]&.o;.f-.E_.#@.)(.X;.F_.X;.)$.i-.9D N{.!$.v*.m!.I>.1_.G_.u=.H_.j{.I_.et L&.L&.#..xZ _W _W DR *` 6@.8Z * .o#..%.%+.p#.%+.E..+#.E..mV -V pU Y J` oT M` NV 0..HS IS > .=V L` L` [W [W }T HX PQ KH pT }T IS PV JX *T

Y. T. W. L# Q. T. U. Y. Y. Y. Q. ~(.5_.J# .+ J# M_.$~.M_.s* l{.$~.$~.#~.$~.#~.~/.#~.t^.8_.V(.{/.T^.g/.)).)).N_.)).v,.d].d].d].U^.d].d].X(.t!.j/.~).N].~).O_.0_.(/.N].9_.`(.P_.x^.2!.1!.D'. _.1!.f].Q_.{]._/.{].p{.l/.n/.p{.n/./].@* ^].2'.@* :@ x,.2'.t{.2'.<@ e$ R* W% R* <@ W% W% W% }- P* g> n, R_.S_.T_.p).U_.V_.X).{~.$_.@) l; V; )$ 8> m9 pj cz .B 4I 4c On zT $q 8> T{..(.p>.`>.p>.o_.`>.F;.W_.X_.zh xh yh )%.!=..$.!=.Y_.:b :b x&.~%.~%.Z_.he Ac zc !%.$n >c $n >c !%.tb tb zc hE x&.`_. :.Y_.a(.3$..:.A/.6/.+:.@:.u_.^y #:.cw ^y AK tv fk $:.%:.&:.*:.=:.-:.`y bw ~n ;:.:.,:.'. +. X +% +% O@ I D G G D G /# C ,! m w 2; ,> ", +"L$ R@ R@ J$ L$ BN G= I/ I/ I/ G= 0' I/ I/ * =[ 5_ = 1) 1) ]& ]& V@ ]& L$ $ V@ ]& + * $ . . R@ |* 1* > $ V@ . ' V@ . ' ]& # = $ $ $= ' S$ > > + $ $= . $ }* U@ & > . # > Q$ ] ; P$ T@ ~ ^ o! | + U$ ) 1 U$ S$ . . =' & | ; ^ | ] & 2 2 [ R$ %# X@ H= | N$ { X@ ( 1 ## / < d 7 ( 1 -.( d { 6 ( { ( ,# <& 6 6! 6 &# 6 a b ,# 6 6 6! 3] Y> a 0 L= 8 0 n 7 L= 0 c ~# 0 e ~# ;= n 0 a o _# n 2, L= V| u ^# s> `$ q t s> D /# $S z C 2; E w G b' 1Z F= a7 G z /U F= z '&.'&.t K T^ a7 2Z a7 2Z a7 V T^ JW a7 JW .@.4>.J{.v@.2Z 4>. V M 4>.(#.4>.t%.x .5 .oY *I k#.*I (U *I XX y+.(U a/.)Q RT #N RT +Z RT ^P Z .RT Z .!&.G&.RT F].G&.':.+@.CX '*.E` hT CX 4...` E` .` +` o;.:=.#@.<=.)$.3..^&.M-.<=.):.<=.!$.B .t*.<=.t'.m!.2_.H_.f~.!:.t=.r;.*@.a .#..#..*@.nW DR _W {'.d .O/.%+.{$.X*.* .* .8Z p#.I` P/.RE 4Y I` @#.oT 7+.;V >@.HX ;@.HS HX }T }T }T =V }T M` HR HR AM HR PQ IR |T *T

.u].3:.td ;g [R .$.a(.;c $(.~%.H(.4:.!%.k..lA !%.!%.!%.>c >c Q$.@$.~#.< .o%.o%.Ac tb !%.Ac YN 5:.!#.:b 6:.7:.gE R!.xN 8:.u_.JC ]n ^y tv tv vv 9:.0:.a:.b:.`H c:.Fa _` )g 3j tv ^n uv vv [x ou eE pu |N KT $W .kh =t WY ~j +m _*.{. E@ E@ |; P@ S E= I C t N G C D t `$ /# m w ", +"*) G= BN 9| jP jP ]^ I/ 0' I/ I/ I/ 0' 0' + # ], ]& + # 5_ J$ # .( $ + 1) . . + . k) $ }, & . ' $= + + 0' V@ Q$ $ U@ . > $ # > . $ - * = Q$ # $ (& - U$ [* Q$ $= U@ > S$ ; N$ & W@ H= . ; ; ' | 4 %# > ~ { 2 N$ ~ | Q$ ; ^& { 2 | } ; ~ 2 H= X@ ; & ## { : ## I= *# d 6- / { 6 < d d 7 ## } } 7 } 7 7 7 $# 7 6 [{ b c6 7 n 5 6 a 0 0 b ~# L= L= 6! j L= k {# c 2, ,> ,> t' 0- n ~# p s> Y$ m Q(.`$ ;= s> % w 2, % 1Z C w C #] :# F= G :# E #] E .4>..@..@.e:.QT x .5 .AX iI oY iU I#.A: aV A: BX X!.I#.oY +-.G&.RT )Q )Q )Q )Q RT G&.Z .Z .G&.Z .R%.Z .e-.0&.hT 0&./!.q*.4..W;..` 4..a&.4...` 4..` .4Z `X ` .7 .B .#@.`X ~*.!*.N#.8 .S%.T,.T,.m!.f:.s;.g:.a].a>.a .*` *` *` _W cX +..cX #..{$.%+.p#.& .%+.* .K>.%+.* .p#.E..@#.-V p#.E..mV oT G .3%.i$.HX 0..AM AM HS HS GR Vw =V HR pT nV [W |T vO HR YL FR JJ

8 Q5 Ye n8 n8 n8 n8 Ye o8 n8 Q5 n8 n8 Sd R4 o8 Rd c3 |c M9 R4 M} K0 ]: 9~ ]! ]! y/ =] 9~ 9~ =] Z) 9~ 9~ ]! =] 0~ 9~ 0~ y' S. D> 9~ `= F# F# S. S. F# S. F# O. F# F# O. S. F# L# S. S. U. Y. Y. Y. Y. Y. T. h:.Y. J# r& p- 5_.~/.c).R/.t& #~.#~.R/.U(.#~.U(.#~.$~.i:.f/.j:.k:.]/.]{.U^.U^.u^.U^.d].U^.d].U^.X(.U^.(:.O_.9_.:^.Y(.l:.(/.a_.`(.:^.~).`(.n{.P_.x^.2!.p{.k/.p{.p{.E'.O].2!._/.2!._/.e].W/.m:.4'._].t{.t{.t{.x,.x,.t{.J- R* |- b$ H] !@ J- X% |@ !@ W% a{ @* H] &* n:.o:.T{.v{.7^.1(.X).z!. (.@) ;$ n+ y% y% z- qt UN hZ p:.-P j_.*_. ,.p>.*_.*_.F(.6(.q:.r:.L%..$..$..$.;c H(.x&.Ac Ac Ac o%.>c fw +$.s:.o%.~#.^@.l@.^@.l@.@$.@$.< .t:.>c o%.$n tb ~%.~%.!#.I(.u:.v:.7].w:.x:.y:.^y ]n |j ^y u_.i!.$:.z:.A:.N(.B:.C:.;c 4:.A/.AK cw |N gH |q nu 1q ^y AK .R S {F KT (Z KL dL ju D:.E:.A@ V C$ P E$ K@ Q@ A Q@ z #= /# 4* {& G m Z$ p % ", +"L$ J$ jP 9| I/ #S I/ R@ L$ ]& 5_ I/ I/ L$ 0' = + ]& ]& R@ + ]& @ # T@ L$ L$ Z, + $ $ $ = ]& - + ]& $ V@ $ Q$ & ' H= H= $ - . . & E! = > > > =' - & * + S$ }* + > - U@ N$ . $ o! J) ^ $= & N$ Q$ o! ) Q$ ' Z! ) ; ] | . Q$ 4 Z@ 2 4 | { ~ [ *# ; g{.{ Z! [ < /& F:.) : 7- 1 2 I= 6 +# d Y@ 1 8- X@ d ( ## 6 *# d /& $# 3] q> 7 a Y> 0 ,# a e 0 k 3* 0 |& ~# a n L= h |& 0n ,> h 0- 0 Y$ h q p 1; r Y$ 0 q m s> /# t p Y$ m /# w ;{.w /# /U :# G /# /U #] /U /U F= E '&.1& '&.a7 z I {& 1& 8* AR V 1& c- 8* T^ I 1& V O@ m;.4>. V c- .).v@.-*.SO A: SO iI y .G:.>*.SO p*.H:.I#.[_.zS (=.+-.^P R,.RT )Q )Q )Q )Q +Z Z .Z .G&.Z .+@.'*.3@.{&.+@.AS $).4..D` q*.E` .` 9&.}%.]&.+` ]&.z+.z+.` .9&.I:.<=.!*.9 . ..B .!$.S%.7>.T,.Y;.J:.>].w'.K:.a]._;.%Z a>.*` a .nW nW a .E .& .u;.8Z L:..%.E..8Z %+.d .E..c` p#.|#.p#.p#.mV L` L` -V |#.HX e .IX =V }T L` =V }T L` pT IX IX ]u HR IS HR IS YL cJ *T QV GH 1z _Q LJ YO .G :L }P !/.-J vL wL LR 8 'k n8 o8 Q5 n8 a3 n8 Q5 n8 o8 n8 Sd o8 S4 J_.o8 R4 Q4 A_ ,/ M} ,/ M} 9] ]! 9~ 9] ,/ =] 9~ =] M~ 9~ 9~ =] 9~ =] ]! 9~ (^ a~ H# D> H# F# D> F# S. F# a! H# Y. O. O. J. Q. R. - Q. S. W. Y. T. Z. L# Q. Q. Q. ~(.M:.X. + R/.R/.c).~/.K].N:.h% #~.U(.#~.M_.$~.s(.t^.s(.](.O:.]:.T^.d].P:.N_.U^.X(.U^.d].)).d].U^.Y(.Q:.a_.t!.9_.O_.0_.a_.~]._^.(/._^.n{._^.`(.2!.2!.E'.x^.k/.Q_.R:.2!.p{.l/.l/.e].g).W/.n/.n/.t{.U/.m:.::.W% t{.R* 2'.W% e$ H] R* !@ x= R* |@ J' d$ 4' e$ S:.T:.U:.A(.V:.k].W:.l).p~.t/.|^ t/.-$ =; >$ /: |K 3U aO X:.$q ot &r u+ )$ Xi Y:.C,.~>.*_.*_.D,.F(.Z:.`:..$.$(.Bz }i ,c tb zc zc !%.>c Q$.Q$.~#.~#.fw 9#.l@.l@.U@.p@.A#.0k U@.l@.~#.< .< .o%.+$.tb P$.~%.Y_. <.6].hW 8:.!_..<.tv ]n B:.dw kh +<.@<.#<.@<.$<.%<.&<.*<.=<.-<.;<.hA |j mu 6r mu ~n ^n Wo 3q eE DV )B /y 7V kh `` ><.,<.!. R D$ Z M@ M 4, Q@ N N M t `$ N N C Y$ D m ", +"R@ ]^ I/ BN #S #S I/ R@ R@ L$ I/ 0' 0' 5_ ]& * # 5_ p9 ]& # + + # + ]& ;b # # ]& ]& + + + # Q$ + = & & S$ ' S$ o! #^ . |* > > U@ U@ = + |* |* $ > - $ T@ U$ & > > R$ ; N$ U@ U$ (& H= Z3 - = & & U@ ] f] T@ | 2 | ' | %= Z! | N$ 2 ## 8- { | Q$ Y@ Z! N$ - | | N$ N$ ~ 2 ) [ X@ / $# } ( D, D, [ / d ( d 7 ( /& ~ D, V~ [& 7 ~# ,# ~# k V$ 5 0 ~# <& 0 g 0 !# i s> n n j k s> K= n n n V| c{ h 1; p q s> n y h 1; ;) `$ t p ^# 4* ;{.G `$ *].w @= F= z F= D F= /U :# F= F= ).a7 N 1& '&.1& N@ I V c- V $T 8$.c- V 2Z '&..@.t%.o^ T^ x .t%.z .AX B$.iU i5 4>.'<.B$.iU iU aV iU A: +-.k#.+-.,*.@-.+Z #N )Q )Q +Z Z .Z .RT R%.R%.R%.1@.G&.0&.0&.3@.'*./!.CX E` hT a&..` 9&.9&.4..9&.` .f-.#@.z+.)<....!*.B .$ ....z@.S%.)'.!$.)'.!<.t*.'{.m!.W*.@..a .C+.1%.++.nW _W a . %.d&.++.8Z d .& .%+.d .%+.%+.8Z * .p#.E..f$.f$.RE RP AM IS -V d/.=V oT IX > .=V HR HR [W HX ]u Ix Vw IS PV HR IS *T SV

c$ /<.(<._<.:<.U:.`^.W:.B{./~.<<.`/ E^.l; MH Fl 8> .B |K UN dz /X uK Yr 9> m9 On |^ m_.F(.D,.[<..(.*_.o_.}<.-_.zc Ac !%.!%.!%.Q$.< .< .@$.@$.U@.^@.U@.S+.U@.S+.S+.l+.aK >+.2x U@.p@.0k 8*.lA ~#.fw >c zc tb }i |<.B].1<.2<.3<.4<.]n |j ]n ~F 5<.6<.7<.8<.#<.$<.9<.0<.9w 0w a<.b<.!s #t * }* + Q$ # # Q$ = ]& $ & *' - > ' . > > o! Q$ ^ Q$ = U@ > Z, - . N$ $ > ; ' & U@ & H= > + . X@ ] & Q$ ] ] & ;# N$ & o! R$ U@ ; Z! | W@ N$ ) W@ X@ : - N$ 5! 2 | | N$ /& d X@ 4 { *# $# } 2d b 6- J] , 1 { 5 6 } -# 6 b Y> } 7 d ,# a k 9 b g q> 3* z: q> k {# 3* Y$ n a ~# k ~# h z: d<.,> e<.h l r h 1; 2, s> s `$ 1; y ^# /# m D 4* D y }& *].2; /U a7 G /# #] F= C` z G a7 '&.'&.a7 $T a7 a7 T^ c- T^ V H$ a7 Z V c- 4>..@.v@.(#.4>..@.t%..).x+.t%.(#.B..A: z .x .-*.I#.WX oY (U oY #N yS oY ^P ^P ^P ^P ^P ^P )Q +Z +Z Z .G&.+Z R%.'*.Z .!&.0&..` 1@.8).AS .` hT /!.o;.4..9&.4..E` a&.` .pY ` .f<.Y$.#@.......Y$.z@.z@.$ .g<.c&.1_.1_.T%.T%..#.w%.%Z a .%Z ++._W *` #..6@.++.% .& .8Z * .%+.* .8Z 8Z 8Z * .%+.* .p#.eX zY AM AM HS }T }T IX }T G .e .oT GR Ix pT }T Ix IS }T HR HR Ix IS XT [P OQ *T

8 J0 oj Pk J0 J0 Q5 n8 Z< Q5 n8 n8 Z< J].Q5 Q5 L9 a3 S4 R5 Q5 {b 0! 0! ,/ A_ 0! 0! <> 0~ 9~ q~ 9~ 9~ q~ =] ]! ]! {~ { 9~ {~ z! 9~ ]' F# F# H# D> S. .- O. O. F# S. J. F# F# O. S. T. F# S. Q. F# Q. Y. Q. R. Q. T. Z. W. R; h<.i<.^^.U(.#~.#~.~/.U(.j<.M_.#~.$~.#~.j<.k<.9,.i:.8_.](.l<.k:.X(.X(.)).m<.U^.U^.d].u^.d].U^.X(.n<.o<.:^.9_.~].n{.t!.0_._^.]<.p<.v(.`(._^. _.E'.p{.2!.E'.p{.l/._/._/._/._/.t{.U/.U/.:@ /].R* @* t{.R* q<.R* W/.e$ R* }@ J- b$ 3' W% :@ P* U9 d$ R* ^].c= r<.T{.s<.Z/.t<._).l).V].3(.3(.u<.=, y% BD Xi qt aO dz UN bO |K qt NH F+ @f v+ `^.k).k).q>.D,.C,.v<.w<.x<.!%.Q$.< .< .Q$.l@.0k U@.U@.U@.0k p@.m@.(@.y<.l+.m@.l+.aK 0#.y<.l+.l+.l+.$$.l@.@$.l@.< .t:.n%.tb z<.A<.}x 2G B<.C<.B:.vv .<.D<.E<.F<.8<.G<.H<.#<.I<.^_.ku J<.K<.rv # + $ > + $ . ]& = * P$ & V@ T@ . ' > ]& N$ > $ > > $ ; U@ & S$ ; ] ] . H= X@ | $= > Q$ ~;.' & N$ ~ > - ' | ^ | ~ N$ ; ~ ; 2 2 Z! | | 8- | { O<.X@ 2 X@ X@ { X@ 2 : { | $# $# ~ } 7 6 ( V~ d N' 9 3* ,# a 6 < 7 6! Y> 6 ~# 6! ,# 6 6- ,# 8 ~# ~# c a e e 0 ~# e h 0 L= c{ n^ `$ s> 2, t' K/ ]# b' b' 4* `$ /# 4* Q{ G#.~# u % 4* w :# :# w D D w G $S F= F= '&.'&.w C` P<.A$.'&.a7 1& AR JW N AR Z V $T T^ .@.O@ T^ 2Z 4>.4>.(#.4>.4>. V 4>.~,..@.C).*I B$.o*.-*.<_.:#.U;.B$.iU XX _#.I#.+-.+Z ^P RT RT RT ^P +Z G&.R%.+Z |@.G&.H&.+@.!&.0&.^,.CX 0&.0&.CX .` mL )*.J#.4..:=.+` 4..)(.]&.a$.f<.Y$.l#....5Z <+.z@.z@.^&.t*.^&.U,.Q<.t*.^W 0 .n#.*` 1%.%Z n(.a .++.& .% .++.C@.%+.%+.d .& .d .* .E..{$.8Z * .E..P/.J` E..; .5+.=V oT =V HS HS HS oT }T uP HS AM uP HR nV pT HR Vw Ix pT QV

J [P vL }P / &^ J0 >8 Q5 n8 Q5 Q5 n8 a3 Ye a3 a3 o8 L9 b3 ]: B9 d9 ,/ :} m{ 0! c3 m{ ,/ <> /] ]! 0~ 9~ 0~ 0~ 0~ ]! ]! z! ^! e/.9~ ]! ]! D> O. O. D> O. E# O. H# S. S. F# O. O. Y. S. ]' i' S. Y. T. S. R; W. .+ X. - Y. U. i<./<.R/.W. J# R/.U(.#~.#~.j<.M_.R<.#~.U(.U(.S<.U(.N:.T<.S^.U<.V<.(:.(:.^/.d].n<.X(.U^.U^.X(.X(.Y(.X(.Y(.Y(.a_.9_.a_.(/.9_.0_.(/.`(.`(. _.W<.X<.Y<.x^.x^.E'.p{.x^.p{.p{.p{.l/.n/.|- _]._{.n/.p{.l/.@* _].b$ b$ ]; !@ @* |- W% P{ |- d$ b$ 4@ P{ f$ Z<.e$ `<. [.3^.Z/..[.t<.[]._).y{.+[.;$ @) y- t+ h+ h+ o+ M& )$ bO UN ^R qt Xi Yi NH n; oJ Y{.k).s>.D,.D,.@[.#[.$[.%[.< .l@.l@.$$.S+.U@.S+.S+.>+.m@.(@.aK ]#.0#.]#.tf ]#.0#.4G &[.]#.#B aK m@.p@.$$.U@.l@.l@.fw < .>c *[.7].eE cw tv C<.yz ]n 0K =[.-[.;[.>[.A:.H<.0:.$:.,[.'[.)[.![.8~. V@ k) $ }* S$ *' # o! ;b [* & . Q$ $= > . $ H= N$ N$ Q$ ] N$ | . Z, P$ $ ; & ; Q$ 1* N$ o! Z3 > & ; V@ S$ 4 ~ ~ Z! | ~ | 05 U@ & Ez & [ 2 H= ] r2 S$ [ } 2] ~ ( 'W Z! 2 X@ | ( } /& /& : ## / < } d d d 2 } ## 6 x0 ( V~ 3* ,# 6 d b a M' } 7 k e 6 d *= 6 0 0 a n K/ c ~# 0- L= L= h r Y$ ,> 1; ;= % #| m 0- t ,> o/ q L= p q ;= t :# G w t :# 2; E 1Z #| '&./U /U a7 /U a7 z '&.T^ '&.P%.KW #= T^ ,/. Z !,.O@ c- .@.M n*.m;. V .@..@.{[.3# )^..@.PT v@. ` I-.(#.;*.-*.B$.(U -*.iI 5 .][.(U (=.^[.Z .+Z ^P )Q )Q RT +Z G&.Z .e-.Z .0$.+Z R%.R%./[.q*.^,.$).7` CX hT 4..5>.D` ]&.+` 4..o;.9&.` .z+.#@....` .Y$.B .z+.z@.S%.)'.6Z U,.t'.[=.vZ $ .N#.K&.w*.%Z s;.#..++.gV xZ #..*` %.8Z %+.%+.8Z & .%+.* .]*.%+.f$.qU 0..F .RE =V =V =V d` HS IS ; .oT IX HS HS Ix Vw HS }T [W HR HR [W Vw Ix vO YL uP SP ]! 9~ 8~ 0~ |= 9~ z! { =] ^! (^ y' a! S. M! { S. J. H# S. J. J. O. S. S. F# O. S. F# F# Y. - S. W. T. - R; Y. R. X. ~<.W. 5_._[.R/.U. I# .+ $~.R/.R<.R/.U(.T<.:[.U(.U(.S<.T<.f/.](.<[.[[.6_.X(.n<.X(.d].d].d].}[.X(.X(.Q:.Q:.n<.Y(.G=.0_._^.`(.`(._^.P_.^<.P_.P_.W<.P_.p{.p{.2!._/.2!._/.e].l/._].e$ t{.Y<.t{.L- ^].@* d$ P{ R* R* @* !@ <@ 4@ W% @* R* d$ }- }@ W% 2@ y] |@ |[.1[.E,.T{.2[.`^.|(.V].|^ n+ J* !w =; bz l; V; o+ qt Xi Yi UN aO .B Xi 4I -P $q bz E,.s>.[<.b,.3[.4[.e,.5[.l@.]@.6[.>+.>+.(@.c#.;r KB 4G r$.0#.r$._ .#B 7[._ .4G Vk _ .SZ _ .4G tf tf >+.(@.U@.0k U@./F zC j^.8[.=l [x |j 9[..<.bw |j 0[.a[.b[.b[.0:.#<.#<.0:.#<.$<.c[.d[.#t f f[.Oc 5# }; H@ H$ O@ M G z N= I F= G p z m ^# G `$ ", +"*) 2^ BN BN L$ I/ R@ I/ I/ J$ J$ ]& I/ I/ 0' #S R@ + ]& I/ = M$ + ]& $ + ]& $ = ]& + ]& L$ $ $ 0' ]& > # 1) . V@ = k) + + . 5_ # U@ - . + > . S$ ] ; ; > P$ $ & ] S$ %= > # Z3 # . S$ & ] ] . . > > o! ^ ; U@ H= ~ R$ S$ ~ U$ ; { 1 | & N$ { { X@ / X@ X@ 1 1 ;# ^ ( Z! 1 [ Y@ ( D, 1 Y> $# 7 Y> ( ( => i /& ( ( &# a k 1 0 Y> 7 9 b } 6 ~# V~ k tA ~# 0 n a 7 s> {# ~# ~# ,# g e h `$ {# n _# L= L= Y$ 4* q b' ^# s> ^# p -) `$ `$ t D y 1; m ;) /# F= G 2; {& B F= a7 .5 . Z .@.B).o*.(#.-*.0].aV B..p*.A: iU *I Z..J-..Z k#.BX Z .)Q 3d )Q +Z G&.Z .R%.Z .R%.-X sZ G&.G&.G&.R%._=.G&.'*.7` hT CX hT ~&..` G>.9&.CX 9&.y@.` .` .f<.l#....[#.z@.)$.z@.T%.U,.T,.T,.U,.t=.#-.M#.c&.K&.*@.#..1+.*@.6@.=@.E .1%.m(.++.& .%+.* .8Z 8Z %+.p#.d .E .E..|#.zY fS oT 4z oT oT 0..RP HS GR HS }T qU =V =V pT =V HS IS nV IS IS HR IR uP nK *T *T nK -J -J 1z -J 1z -J LJ }P LJ :L ^H BI BI _H fJ `L zn Lk JG XA XA Lk XA XA zB Ay oj ul [v 8 J0 >8 J0 Q5 Pk Q5 n8 a3 n8 n8 a3 a3 Q5 n8 n8 Q5 ): 25 ,/ I^ E1 g9 R4 ]: ,/ m{ ,/ 0! 9] 9~ 0~ ,/ 9] 0~ 0~ ]! 5% P] 9~ 0~ 9~ ]! C> (^ O. O. S. c, S. L. S. O. O. D> S. O. S. S. J. S. S. H# Q. Y. T. ~<.T. R. Q. Y. Y. W. i<.Y. i[.j[.r& J# ~<.#~.#~.#~./:.#~.R/.$~.#~.~/.j<.k[.:[.s(.^:.l[.k:.m[.U^.n<.n[.X(.X(.n<.X(.Y(.Q:.u(.o[.l:.~].P_.G=.p<._^.n{.P_.P_.W<.x^.^<.W<._^.2!.2!.p{.m:.2!._/.4'._/._/./].t{.n/.@* m:.m:.((./].n, @> ((.W% e$ R* J- @> d$ n, _].R* }@ W% ((.p[.p[.q[.r[.v{.<].s[.t[.u[.+[.3(.!- FO RS .B @) j_.r+ aO .B Xi 3U 1K Xi V; u+ x+ m9 Ib cz h_.m_.q>.v[.w[.w/.F;.Q=.l+.;r l+.(y o@.r$.4G 4G 4G 4G _ .X+.y#./@._ .=f /@.mk =f /@./@._ .mk SZ X+.l+.tf y<.6[.S+.p@.]@.x[.,_.y[..<.vv 9[.z[.z[.X'.A[.n0 B[.H<.7<.G<.C[.0:.8<.D[.,[.E[.F[.#t ", +";b *) 2! L$ I/ I/ ]^ 0' <{ J$ 2^ L$ R@ G= ]& J$ # $ + ]& 0' Z, # K$ ]& L$ ), + # # ]& k) * # $ ' > # & ]& = $= ]& L$ V@ > $ # > U@ > $ - - 2) > U@ =' ]& > = + $ ; & & ; ! > ; R$ > ] ~ ; X@ | > ; N$ ~ & o! > | U@ Z! N$ Z! 2 [ | ; | | { 2 | ) /& ~ N$ ) N$ 1 ) 'W { 2 5 6 U- J] 1 $# d 6- { d == 1 $# 5 j 6 4 6- 6 } e 7 q> ,# /& 6 a a k L= g h {# j 3] n h e 6 n Y$ c % }& s> h c n |& m p #| ^# p b' /# /# Y$ m 4* ^# ^# :# % ,> D /# <, #] /U G .I-.4>.t%.{[.4>.I-.B$.oY t%.K{.oY -*.BX SO (=.J[.(U oY ,*._M #N )Q yS Z .RT G&.G&.+Z Z .bV G&.7).e-.G&.q*.0$.0&.^,.4...` E` $N 4..9&.z+.a&.4..4..]&.Y$.:=.K[.EX 4Z 5Z c&.!$.!$.U,.U,.7>.m!.9).K&.x%.T%.#-.C .a .1%.L[.*@.++.M[.#..#..++.8Z b].& .& .%+.d .%+.* .* .8Z b` RE pW AM P/.GR AM N[.IS oT oT oT AM OV IX L` }T HR =V IS Vw Wq Vw JJ YL pT YL [P nK vO KH }P 8 Pk Z< Pk J0 &^ Z< Z< a3 Q5 Q5 Z< Q5 ed Rd d9 Sd m{ b3 E1 R5 R4 ,/ 0! A> m{ m{ 0~ 0~ /] (/ 0~ ]! ]! ]! /] 0~ ]! 0~ 8~ 0~ ]! M! ]' S. O. J. S. O. S. S. O. O. Z. O. Q. R. O. S. Q. Y. Q. O. 3= S. T. Y. X. p- P[.Q[.M:.R[.X. Z. ~<.U(.U(.j<.U(.S[.l<.j<.#~.h).h).j<.U(.](.U(.8_.](.k:.N_.u(.d].n<.n[.X(.X(.X(.0_.u(.T[.0_.9_.9_._^.P_.`(.`(.`(.`(.`(.`(._^.P_.X<.P_._/._/.2!.n/._/.p{.^<.l/.l/.U[.U/.m:._].%p n/.@* n, _(.v= W% ${ e$ e$ :@ ]; d$ e$ V[.n, [@ f$ 3' 2@ W[.X[.Y[.T{.Y^.Z[.`[. }.G,.t/.6> .}.+}.AU n+ m+ 8> bO UN bO ,T .B cz Nn w+ N> x+ o+ v+ t/.E!.@}.#}.$}.w[.%}.&}.&[.4G 4G o@.SZ _ .Vk _ .Q . d *}.=}.} .NO -}.=}. d W` W` kA W` X+.mk =f _ .4G 0#.4G &[.m@.c#.A#.;}.,_.>}.9[.bw ,}.uv ^n hA '}.)}.!}.iP ~}.!}.{}.H<.b[.8<.0:.0<.J<.lu [q #t 5r &o .wv xv QD LT Zo UI `o ^}./}.)& @. S S I A Q@ w #= G N N C Z$ ^# % p c{ ", +"(}.J$ *) BN #S BN BN BN #S J$ J$ I/ I/ 0' I/ 0' 0' + * I/ I/ = # T@ ]& k3 + + ]& + # + # # ' ' S$ ' ' . # + 2) > . #^ 2) S$ ; U@ > > > $ . ] [* $ . & & S$ }* N$ H= ; T- ~ P$ ; U@ H= | . S$ ; H= N$ ; { X@ ~ 05 > S$ ~ ^ ; ~ U@ R$ [ H= N$ ^ U@ ] 2 J) <& | S$ ~ [ ~ 2 [ Y@ } ( 7 5 2 Y@ N' Y> } 5 7 7 D, 2 3] [ 7- V~ 3* k !# &# d k 6 d ,# ,# 8 Y> ,# 0 L= e n n ]# r r L= 2, h ;= h % {# p o K/ Y$ b' 4* 4* 1; 4* ^# w 1; @= 6* ,> w u /# p :# w t a7 /U F= /# E '&./# /U /U a7 A$.a7 AR z _}.JW 1& '&.A$.O@ ;O M m;..@.T^ p=.:}._+.(#.4>.AX 4>.(#.4>.SO :#.C).x .-*.iU oY oY *I p*.BX p*.(=.)Q BX #N RT R%.RT RT Z .G&.Z .+Z +Z 9X '*.e-.1@.$).3@.#).{&.E` E` hT AS AS .` Y!.+` <}.4..4Z y@.z+.3..`X [#.G` c&.M/.7>.a$.2_.U,.7>.7>.U,.I&.t'.[=.}#.*@.a .#..a .*` a .d&.M[.++.8Z d&.& .%+.* .E..yZ C@.%+.8Z %+.RP zY b` fS J` &..; .=V jV HR AM }T IX =V =V HR :P HX =V HR Wq IS IS pT [W KH vO PQ YL OQ ^H LJ {K 5M {K LJ LJ pK .G 8 }c Pk >8 Fb n8 Q5 a3 &^ Z< n8 Z< a3 n8 a3 u[ ;0 z_ ): n8 e9 K0 O] 0! ]: 0! m{ ,/ m{ ]: ') O; ]! 9~ 9~ 0~ 0~ |= C> 0~ 0~ 0~ q~ ]! ]! 5% M! O. S. D> O. O. O. O. O. O. S. O. J. Q. S. i' Q. Q. R. Q. Y. Y. Z. O. Z. i<.P[.i<.~<.J# X. S. R[.U(.[}.U(.#~.j<.:[.:[.U(.j<.}}.S<.i[.j<.N_.s(.](.T<.(:.8_.X(.n<.|}.n<.X(.U^.l:.G=.n<.1}.0_.2}.a_.P_.P_.`(.`(.`(.P_.P_.W<._^.`(.Y<.W<.R:.p{.4'.l/._/.n/.m:._/.n/.e$ l/.l/.4'.t{.t{.%p x,.e$ |- @* :@ 1- 3}.1- e$ _].2@ e$ 4@ 6J <@ |@ m<.4}.5}.o:.z^.6}.7}.8}.$_. (.t<.9}.0}.j_.!w Xi a> n}.o}.;[.o}.0:.b[.!}.8<.E/.&<.p}.;l lu fk To 6r 6r q}.vX F%.r}.7Q ,l @O +O s}.. .s@.t}.A@ E@ P J z Q@ x /# w C b' m % Z$ ^# D ,> `$ ", +"<{ J$ ], J$ BN L$ L$ 2^ #S I/ 2^ BN #S p9 I/ 0' 0' 0' 1) # + = + = 1) + ]& Z, # = + . + 0' . + + [* $= V@ L$ + V@ [* S$ . ]& L$ + = . > > $= & . (& U$ U@ > 0' ; Q$ | ; ' *' $ U@ P$ H= Z! ; S$ . - { 05 Q$ ; N$ 5- ! [ N$ ~ |, N$ 5- W@ [ X@ R$ | H= ~ | { N$ ^ [ xS ) | 2 | 2 'W *# X@ / Z! ( [ d [ < 3* d $# ( ,# d < 7 8 } /& 6 7 a 0 i tA 7 [{ 3* 0 ,# a K/ 6 C; 0 c s> {# n h s> c Y$ ~# j `$ |& ,> n Y$ h `$ q b' p 2, s> ;) ,> t C 4* /# <, G 4* C F @= B F= F= m a7 {& E /U F= z z a7 C` F= Z 8* $T A$. Z c- c- c- =X .@. V V 2Z m;..@.8* 4>.4>..).4>.SO SO A: *I iU A: oY oY L (U (U ,*.k#.yS +-.^P RT Z .+Z +Z RT +Z Z .+Z Z .R%.G&.{&.R%.'*.3@.CX {&.7` E` hT AS hT E` a&.9&.L-.E` ` .pY @@.4Z l#.` .|Y $ .)'.!$.t'.7>.Y;.Y;.M-.n!.0 .t=.[=..#./&.a .*` #..%Z 6@.*` 1+.a .*` {$.* .yZ %+.& .d .d .8Z d .* ..Y O/.oT F+.b` AM }T RP NV u}.oT oT RW oT oT HS Wq uP uP uP HR pT Vw Ix Vw Ix nK vO bJ hJ GH 1z wO wO v}.LJ .G -J TE CM HH 8 Pk >/ Fb Ti >/ >8 a3 n8 a3 Fb Ti a3 dd O4 O4 n8 Q5 o8 Q4 ]: m{ A_ m{ 0! 0! 0! L} ,/ 0! 9] 0~ 0~ ]! 0~ q~ 9~ 9~ ]! 0~ O; z! 9~ C> O; E# O. F# D> J. O. O. F# O. J. P. J. S. O. J. Q. R. Y. R. Y. Q. w}.X. Y. Z. p- X. X. Q. i<.h<.Q. r& /<.[}.j<.#~.N:.#~.N:.U(.U(.S<.j:.N:.x}.y}.6_.O:.l<.^(.z}.m[.X(.X(.X(.U^.X(.n[.9_.n<.X(.0_.o[.G=.`(.`(.A}.P_.X<._^.`(._^.x^.`(._/.W<.^<._/.p{._/.4'.l/._/.n/.4'.4'.m:.e].m:._]._].m:.e$ J- d$ d$ 4@ d$ m:.B}.B}.[@ /; d$ b$ J- P{ P{ AL C}.D}.E}.F}.G}.H}.k_.3(.|^ l+ w% bz I}.q+ BD 3U ,T nt cM x+ Ao Ao K}.L}.q>.D,.[<.C,.M}.x).-}.R..f}.-U .S .S .S ^+.+z hY j..j..vX N}.vX RX kZ O}.RX {r ~P .S f}.dP d d /@.|&.Vk P}.tf Q}.R}.!_.S}.B:.|j ^n hA T}.~}.vC a> vC ^l ^l U}.H<.;[.;[.7<.V}.W}.d[.&o & H= U@ S$ P$ N$ N$ Q$ N$ ; Q$ %= ^& - ] P$ X@ X@ ; N$ R$ =' = ; N$ T- | ) P$ | [ - . ~ | ~ N$ H= ~ 7- N$ [ H= ] [ 2 Z! | 7- { ~ 4 N$ < ## / ( 6 d D, +# 6 d $# ## 4 ## 6 Y> 3] U- d ,# a a 7 e 0 0 Y> ,# 6! ~# c tA 7 j ~# 0 n 0- L= }& s> {# _# h s> h 0 ,> p K/ L= p p 4* p t ,> 4* @= w )> b' t ^# D 1; #] #] '> #] /U #] w 2; a7 '&.z F= F= H[.AR A$.'&. ).KW a7 H[.T^ JW .@.A T^ '&.2Z KW .@.I[..@..@.x .x .z .t%.iU '(.aV aV (U *I oY B$.I#.oY *I +-.y+.(U #N #N RT +Z R%.+Z +Z RT G&.+Z G&.0$.G&.w@.1@.3@.'*.4..2@./;.+@.E` hT hT hT o;.a&.f-.a&.E` z+.4Z |Y 4Z `X 4Z B .z@.<=.9).T,.7>.Y;.7>.c&.N#.I&.0>.A@.[=.C+._W r;._W %Z a .&` nW a .1+.8Z 8Z d .8Z 8Z yZ %+.d .8Z MV pU OV mV O/.N[.GR AM AM MQ AM AM AM oT AM uP Wq Vw HS GR Vw HR dJ Ix uP Vw

8 'k >8 t[ oj a3 >8 _u a3 &^ Z< a3 b3 Q5 J].u[ Q5 b3 z_ u[ A_ E1 u[ 0! ,/ m{ m{ 0! 0! m{ m{ <> ]! ]! 9] 0~ 8~ ]! 0~ 0~ 6% 6% M! 0~ 8~ E# O. J. p& O. J. O. S. O. O. J. L. J. i' R. L. #|.L. R. Y. Q. R. - Q[.i' - X. X. d, R. i[./<.P[.j[.i[.U(.U(.N:.j<.#~.#~.U(./<.U(.9,.$|.N:.O:.%|.V<.k:.m[.&|.n[.X(.n<.n<.n<.n<.0_.~].~].p<.p<.0_.9_.*|.0_.`(.P_.P_.`(.=|.(/.X<.-|.;|._/.2!._/.2!.l/.l/.p{.t{.4'.4'.4'.b$ W/.m:._].e$ _].x,.d$ 2@ 1- P{ ${ |@ b$ J- W% i$ R* S* f$ L- >|.,|.]).'|.Z/.)|.!|.E(.|^ l; C) M& (: E^.;$ qN :S e..(V FU ,T ~|.{|.L{ aO Nn 8> cz Ib 4c ]|.E,.k).m_.*_.p>.^|.==. 4* G ;) n `$ -= ", +"I/.jP J$ BN 9| BN BN R@ I/ 0' I/ ]& J$ J$ L$ L$ 0' ]& # 1) # + J$ ]& # # ]& * Z, #^ = + . [* $= Q$ * & > 0' Gc & + . ' $= ]& [* ; A; }, & > 05 ; N$ . # o! N$ 5- Q$ $ . $ ; (& - Q$ 5- 8- ] =' N$ U$ =' Q$ & ; - > S$ ~ N$ 7- ~ ; ] | ' & | ; X@ 8- 2 ; 2 } | ] ## | X@ 5 { D, 2 [ 6 5 $# &# D, j $# /& +# 7- { { ,# 6 ,# 6 7 ,# i 0 Y> a 0 3] 0 $# ,# L= ~# 3* k e c L= Y$ X$ ~# c L= ~# Y$ p 2, h n [& L= _# h h h b' Y$ t 1; #| /# w *].`$ b' b' y w s> )> w w z #] F= w F= A$.z /# z 6|.AR ).'&.z 1& 8* T^ 1& c- T^ Z 2Z n! P%. V .@.p=. V 4>..@.I-.4>.t%.7|.B).aV B..SO iU :#.B$.aV *I (U yS +).*I iU +-.+Z c-.^!.+Z Z .)Q d-.RT G&.R%.9X 9X |@.R%.7).3@.1@.#).'*.4..CX hT hT .` o;.@@.H>.9&.|Y z+.pY ` .`X [#.z+.5Z r=.Z!.v%.z@.8>.8|.t=.N#..#.v%.t=.A@.9|.%Z %Z 1+.%Z #..&` ^W _W 6@.d&.E@.& .yZ 8Z 8Z d .*Z )X * .F+.FS )S 4z 0|.OV OV RP GR NV :P AM MQ MQ :P Wq Ix uP uP Vw Ix Wq Ix HR PQ uP QK NQ nK ]u wO a|.gJ ZL 2P IH -J -J ^H eC (H / Pk >8 >8 >8 Q5 a3 Q5 a3 Z< a3 a3 Z< a3 P3 u[ Q4 J_.b3 E1 0! m{ ,/ ') ') 0! 0! <> q~ 0~ K~ ]! ]! 0~ ]! 0~ 8~ O; `= D> O; n& b~ b|.F# O. a! F# x' S. O. O. O. J. J. R. J. S. Q. Q. Q. Y. R. Y. ~<.Q. U. X. U. T. ~<.M:.9,.i<.c|.l[.#~.j<.~/.j<.j<.j<.[}.d|.j<.9,.d|.j<.e|.f|.<[.g|.X(.e|.n<.d].X(.<[.X(.o[.0_.9_.G=.h|.Y(.=|.p<.]<.0_.=|.p<.G=.P_.X<.`(.W<.P].P_.Y<.p{.^<.4'.l/.%p ^<.i|.e$ 4'._].|- n/.%p 2'.@* v!._].n, [@ 2@ f$ }@ 6@ 1- ((.W% |@ /; X, |@ L- j|.k|.l|.m|.:<.#'.n|.|^ o|.l; n+ h+ l; G,.s{ g+ f= p|.q|.r|.h0 s|.7-.t|.u|.v|.w|.Xi NH [).#q x|.@'.8'.y|.p>.z|.A|.: ./|.j%.V&.: .N}.N}.Rh (|.(|.Rh (|.N}.Rh Rh (|.B|.C|.D|.Sn XW N}.RX +z Wk f}.-}.@H /@./@.P}.E|.xN D<.C<.|j vv hA F|.G|./- O+ a> vC ^l n}.iP {}.#f !}.H|.#<.^_.ku rv F/.I|.d[.}q J|.I|.lu V}.iA dw HT ND JL SB ;o 5q i).!> 2# }; L A I z S z ^# B b' /# w ^# h r h ", +"]& jP L$ G= 9| ]^ 0' R@ G= 0' I/ BN R@ BN jP R@ ]& = + + K$ + I/ ]& # + L$ $ + $ = R@ ]& k) # + # + > # . + = + # + & > $ ' U@ U@ S$ . . A; . U@ > . .# ' | Q$ . - . - Q$ & U@ | H= ; %= N$ ] | ; Q$ ~ U@ H= ; | ~ | ] H= | { X@ | ) { ) X@ { ; ~ /& ) 05 { { { { 8- *# 2 < $# / 4 } { Y@ &# } Y> < J= ( ,# 0 a' ,# 6 6 k a ,# ,# ,# a d => 9 {# 0 6 0 2* h 0 L= ~# q> n h h |& r r ]# o {# 0- ]# c{ ~# Z$ 1; 1; q r s> h :# F= q /# @= :# $] p t C m [# G E {& z F= E B 2; z C).4>.B$.B$.I-.7|.iU -*.iU A: A: (U y+.+-.aV yS +Z )Q Z .RT RT )Q R%.)Q Z .+Z G&.sZ '*.+Z !&.G&.D` +@.0&.E` E` .` .` $N H>.:=.a&.a&.o;.4Z f<.` .` .D..<=.z@.6Z K|.N#.N#.M#.7>.n!.#-.#-.!$.t=.#-.|+.1%.a .1+.a .%Z a .oW _W E .& . %.xZ d .%+.%+.d .E..& .yZ 8Z .Y RP MQ |#.$..GR AM AM GR RP AM HS AM uP Wq HS Vw HS Vw IS Wq uP :P vO 0Z

/ >8 rg >/ >8 &^ a3 >/ >8 a3 Z< Q5 Z< Z< a3 Fb a3 Q5 Q5 S5 Q4 R4 R5 Q( 0! m{ m{ ') L} ') L} (/ )) ]! <> 0~ ]! k2 q~ q~ 0~ O; {~ |= H. 6% |= e/.a! J. S. 2= O. p& S. L. O. q& J. J. S. J. O. R. Y. - Y. R. X. ; R. L|.J# ~<.J# P[.N:.M:.M|.i[.U(.#~.U(.:[.N|.j:.N:.k<.x}.O|.i[.j<.P|.n[.e|.](.n<.n<.n<.n<.n[.n<.n<.Q|.J}.n<.*|.}[.P_.p<.p<.A}.S:._^._^.X<.X<.X<.X<.X<.P_.P_.`(._/._/._/._/.p{.Y<.l/.P{ 4'.%p ${ m:.n, W% /; 4' _].}@ d$ [@ 4@ _@ 2@ 2@ d$ |@ R|.<: X, :@ GV S|.T|.U|._<.V|.W|.y{.@) l; l+ m+ m+ l; t/.|^ 3(.X|.Y|.Z|.`|. 1..1.6!.H}.p_.;;.+1.Yi 4I Xr ^J @1.T{.k).y|.n_.7'.R$.K=.(|.t` K=.K=.Rh Rh +I +I +I #1.#1.+I +I #1.#1.+I $1.%1.B|.(|.N}.vX kZ RX 6f .S d /@.e}.X+.&1.*1.3<.C<.Y'.^n l}.T}..N Q& `U P+ a> a> vC o}.iP #f iP o}.b[.b[.=1.rv ku E[.-1.9w E/.;1.~s ;:.>1.tv BK It 2j ik Zo ke ,1.'1.I@ J S {& z K I N G D :# C G t _# Z$ r ", +"J$ jP p9 jP G= J$ L$ I/ L$ #S <{ BN I/ 5_ 5_ I/ G= J$ L$ 5_ =[ % 5_ I/ 5_ 1) 5_ ]& + = = + # . . % . X! V@ > = 0' V@ + > S$ . $ . > > V@ [* V@ ]& .( > & H= [* . $ & > H= Q$ . V@ ^ Q$ ; . =' & & & ; ; ] U@ N$ ~ ; Q$ ] | ~ X@ W@ Q$ X@ Z@ 2 ; 7- 2 4 [ { ~;.; | ( . X@ Y@ [ /& [ | ( < [ Y> q> a 3* 6 d d /& 7 6 { ## ># )1.a k q> 7 d 6! 7 6 0 e b !# M' g a 6! a ># L= ]# n L= h n ~# e {# 0 n c ]# p V| ,> ,> m 2, n^ q #] 4* % :# 4* t #] 4* F m $S F /U G /U {& F= G B z a7 z '&.a7 1& T^ 8* n! c- $T #= a7 ,/.c- V !1.c- V c- .@.(#.0S z .J{.I-..).-*.AX 4>.aV -*.I#.A: I#.-*.BX oY (U yS Z .)Q Z .+Z +Z +Z Z .RT +Z +Z !&.H&.CX +@.G&./!.#)..` 0&.n,.CX AS CX 0X AS o;.3..a&.a&.4..:+.D..7 .I:.!*.)$.0 .!*.S%.N#.S%.T%.#-.0 ..#.N#.t*..#.W*.%-._W #..a .1+./&.^W ^W #..d&.d .8Z * .8Z %+.%+.gV d .-` & .:W -` RP E@.AM oT AM AM RP RP RP AM AM AM GR RP AM MQ aN uP Wq HR IS PQ IR IR #w uP NQ

/ >/ Fb >/ >8 a3 &^ Q5 Q5 &^ a3 Z< Z< Q5 a3 h( I^ Q4 5< h( m{ ') ') 0! I^ ') ,/ (/ q~ q~ ~1.K~ q~ #, q~ 0~ ]! |= H. )) 5% G. M. z! c, c, O. S. J. J. S. J. L. O. L. O. Q. L. O. Q[.R. - P[.{1.P[.i<.X. - i<.X. i<.X. j[.j<.X. ~<.j<.i[.j<.]1.:[.^1.c|.j<.]1.y}.^1.^:.l[.}}.n[./1.1}.n<.V<.n[.n<.<[.n<.n<.<[.X(.u(.(1.h|.=|.=|.X<.X<.G=.`(.p[.X<.X<.P_.W<.4'.Y<.P].W<.2!.4'.P{ l/._1.2@ 4'._/.'~ v= e$ J- J- t{.b$ J- /].4@ l$ 9@ 2@ 4@ _].d$ ((.d$ |- :1.!@ $z <1.[1._<.}1.V|.M'.U{.;$ q+ m+ HB n+ n+ `/ z- h+ |1.11.21.31.41.51.61.h+ E(.=, X:.#x NH uK CL 71.81.k).1^.n_.H^.&=.+I K=.91.01.{B a1.TB #1.b1.01.bc #1.c1.c1.Pf d1.TB +I %1./s (|.(|.N}.[V u .u .RX .S R.. d xc e1.1<.!_.y:.C<.^n %t f1.O+ Q& n}./- P+ E% vC g1.^l {}.h1.iP ;[.;[.8<.D[.D[.D[.,[.=1.-1.0w i1.1|.y_.ou Yo Kj KC SB qi j1.WI x! B$ K@ H$ N 1& w N w N G F= ^# w t n^ _# ^# ", +"2^ <{ l) R@ L$ BN G= I/ I/ ]^ *) #S I/ I/ L$ BN I/ L$ L$ I/ ]& + + 0' = V@ % ]& ]& # L$ ;b ]& . + + $ + Z, ]& + |* + L$ ]& # = = & > . + V@ . o! $ $= > $ - > 2) k) $= + ; . . ; & > R$ Q$ & > Q$ & ~ P$ o! ' ] | ~ ) ] N$ ; > | 2 | N$ N$ ; ~ | X@ | | | N$ ) N$ ; N$ ## 2 ~ ; 2 } { { [ [ /& $# &# q> D, 5 d J] 6 6 5 d [{ 6 N' } ,# a d Y> 3* ,# d ,# g ~# 0 W$ b ~# 0- Y$ r L= p o Y$ h c e h 0 Y$ n Q(.Y$ Y$ Y$ L= q ,> n^ ;) #] Y$ q 4* V| p :# % #] {& w G /# 1; :# E z /# /U /U 2; a7 L/.1& 1& AR JW 8$.2Z z $T JW Z P%. V k1.4>.x+. V V .).QT J{..@.4>.J{.B$.I-.I-.>*.B$.aV E>.aV aV l1.MW p*.+-.RT RT lP )Q R,.)Q +Z )Q +Z )Q G&.+Z 9X {&.G&.7).'*.CX /!.{&.CX hT hT hT mL CX 9&.]&.E` E` ]&.`X 7 .K[.`X <=.S%.S%.[#.m1.S%.v*.0 .N#.N#.N#.I&.n!.b$.|=.d$.a .1+.C+.%Z %Z oW #..xZ E .yZ & .{$.)X n1.8Z 8Z -` d .9Z .Y 4z RP RE oT GR oT AM AM RP AM GR MQ GR RP AM oT :P Vw uP pT pT Wq nK Wq ;H UF YL

/ >8 J0 }c }c >8 t[ Z< >8 >8 a3 Z< Q5 Z< Q5 Z< a3 n8 ): Z< Z< ]1 R5 Q4 h( E1 7~ L} ,/ m{ 7~ ') m{ <> K~ ]! a, <> K~ ]! q~ C> q~ 8~ n& c, M. H. {' a! J. S. L. O. L. J. P. J. J. L. S. ; ; J. d, p1.Z. X. ~<.i<.X. i<.Z. d, r& q1./<.M|.j<.~<.L|.j[.i[.i[.j:.i[.]1.l<.l[.l<./:.]1.l[.O:.%|.X(.n[.<[.n[.V<.<[.n[.n[.n[.l:.n[.Y(.0_.G=.p<.=|.{).P_.X<.r1.*|.X<.P_.P].P_.^<.l/.l/.W<.Y<.l/.l/.l/._/.^<.s1.m:.m:.%p ::.J- @* %p W% }@ b$ |- J- |- b$ t{.S* 2@ X% `% B}.2@ 9@ x= t1.u1.v1.w1.x1.h_.l).t/.;$ q+ 1L ({ h+ m+ A- t+ bM bM bM %$ -%.~` .y1.z1.H;.s&.01.01.}k 01.Pf A1.B1.}k C1.D1.E1.E1.F1.G1.E1.H1.D1.A1.H1.I1.+I Yd Rh B|.[V J1.+y +z } .@H mk K1.8[.!_.j}.Y'.^n L1.M1.Kb /- vC vC a> vC ^l o}.Kb Kd $) Zi /- ^l !}.;[.G<.8<.$<.$<.^_.E/.ku F/.;l N1.Xl #:.]s *t kk `S bU O1.!. L@ H Q@ {& A A )> /# t D m m `$ q m t ", +"2^ 2^ J$ R@ R@ R@ BN 0' I/ G= BN I/ ]& ]& 0' L$ I/ I/ 0' I/ [n # * 0' 0' # # + J$ =[ 5_ ]& # R@ + ]& = + = . 0' V@ V@ ]& ]& > $ + > S$ ' ' - & ' $= - S$ |* & %= |* S$ U@ & S$ . U@ %= ; Q$ & ] Q$ %= & | ; - & Z! | > Q$ R$ { P$ Q$ & X@ 8- & W@ X@ ; [ W@ Z! { | > ~ { 2 J) [ 2 4 6 X@ [ { < { ( : $# V~ < d J] ( ( ( 7 1 6 6 c5 &# a &# 2* ># : ,# {# 5 0 ~# 6 c5 ,# a W$ L= ,# c 0- ~# _# Y$ L= r [& ;= o ~# n^ ]# ,! L= 2, d<.|& ,> q Y$ v /# /# 4* D w t G /# :# 1Z F= C` E .4>.o*.AX AX :#.(U -*.iU iU A: A: yS 3d (U (=.+-.)Q Z .RT Z .Z .Z .^P Z .RT RT Z .9X +@.3@.Z .w@.+@.hT 0&.E` q*.CX AS hT CX E` o;.4..4..4Z pY |Y y@.!*.<=.r*.$ .<+.z@.$ .N#.0 .0 .0 .N#.#-.@..V*.b$._W #..#..w'._W %Z oW _W a .*` E .yZ @+.& .8Z * .& .d .]*.-` fS zY )S D@.XL AM RP RP :P uP oT RP zM AM GR HR HR :P GR IS uP uP QK nK Ix NQ uO QK JJ JJ GH eC Pw 1z 1z RA -J 1z IH IH .G .G 1z / Z< Z< Pk >/ &^ Ti Z< a3 a3 Z< Z< Q( Z< Z< t^ a3 O~.L} S5 p~ ') ') ') 0! 0! 0! 0! K~ <> 0~ q~ q~ 0~ C> P; C> 0~ G. O; 6% 6% c, J. J. O. F# J. L. J. J. J. J. J. L. L. R. L. L. ; Q. Y. i<.q1.X. P[.Q1.3= i<.i<./<.Q1.M:.9,.Q[.^1.O|.j<.j<.U(.l<.:[.x}.7_.l<.]1.R1.e|.n<.X(.n<.n<.n<.X(.<[.X(.n<.n[.S1.n<.(1.9_.Y(.A}.*|.*|.A}.P_.S:.3>.P].T1.P_.X<.W<.l/.-|.P_.U1.Y<._/._/._/.l/.l/._].t{./].U/.|- _{.V1.'~ P{ i|.d$ e$ n, 2@ |@ X% b$ |@ 2@ X% d$ j$ d$ -+ W1.X1.w1.x{.Y1.z!.3(.q+ BD 1L ]G q+ m+ l+ X:.Z1.xT `1. 2..2.+2.n` |K bO bO ^R sQ DU ^R _i tQ @2.6{.#2.$2.%2.&2.*2.G1.F1.F1.F1.F1.F1.=2.F1.F1.-2.-2.;2.>2.=2.G1.,2.D1.G1.'2.)2.!2.#1.Rh (|.[V ~2.vX ^+.f}.{2. d ]2.b(.D<.4<.Y'.hA -[.^2.g1./- P+ P+ n}.iP H<.8<./2.P+ Fc Zi h1.n}.<|.pM !}.$:.%:.^_.O(.J|.E[.I|.p}.*o (2.W}.Ht KC _2.^T :2.<2.=. G@ I A I z N@ ^# ,> w ^# N ^# :# w ^# ^# ", +"J$ 2^ J$ <{ R@ ]& BN R@ ]& L$ BN I/ <{ p9 0' I/ I/ I/ BN I/ 0' + + # 0' 5_ # [n ]& ]& }, # ]& J$ V@ S$ ' V@ $ & [* $ V@ # # ]& # ]& . # . & [* > . . # # 2) ; U@ > & U@ X@ & %= U@ H= - . U@ ] H= 2] > |* ; [* & | & ; . U$ R$ ^ $ H= b{ X@ ; ] X@ N$ { ) | X@ { ; X@ ## ~ | [ ~ 2 2 ) 2 ( 1 Y@ | [ 1 ,# ( ( 3* 6 V$ d 6 *# : 5 < D, 6 b i d 3* 6! a } 6 a 6 a !# 0 !# K/ !# e K/ 0- c h n {# ,# _# ,# ]# Vj p K/ L= ,> q r p ^# b' 1; w /# `$ m :# Z$ 1Z D :# $S z /# E a7 $S $S ).1; a7 E C` A$.a7 W) E 1& [2.KW c- KW '&.$T T^ V T^ T^ c- 4>..@.c- _+. V V .@.(#.x .AX QT QT (=.I#.-*.iU iU aV oY A: YX }2.F>.^P )Q Z .RT +Z G&.RT )Q +Z G&.+Z 0$.1@.1@.|@.':.$).hT 8).3@..` .` .` CX hT AS 9&.H>.9&.y@.pY 4Z !*.<=.)$.!*.5Z !$.S%.0 .$ .0 .0 .$ .|2.0 .sY )'.#-.v*.%Z *` %Z /&.#.._W cX a .#..% .% .8Z %+.gV 8Z hQ ;` d .8Z -` zY -` &V RP AM RP RP RP pW AM MQ GR AM =V Wq Wq RP AM NQ ;H JJ {K :P bJ bJ bJ JJ YL JJ oK .G IH LJ 1z ]K 1z .G eC IH 1z eC IH /H [H {i Mm Lk Mm zn Lk Lk zn Lk Qd zB Mm }c }c ul >/ }c d/ >/ rg Pk >8 Z< >8 d/ >/ Q5 `~ &^ a3 Z< Q5 J].2| a3 [ a3 a3 ') Q3 O] 0! 0! A> ') A> ') m- K~ q~ q~ <> )) ]! C> C> 8~ q~ G. O; O; 8~ G. 2= 12.J. J. L. L. J. J. O. J. p& q& p1.R. ; J. ; R. Q. ~<.22.i<.i<. - i<.P[.P[.q1.!) P[./<.32.j<.j<.j<.j<.c|.i[.i[.42.y}.]1.l<.y}.n[.e|.n<.X(.n<.n<.n[.n<.n[.n<.n<.52.n[.J}.S1.o[.O_.=|.~].3>.P_.X<.U1.P_.X<.P_.X<.P_.W<._/.Y<.r1.W<._/.p{.62.l/.4'.P{ b$ |- 4'._].d$ b$ V1.<: K- b$ 72.e$ 1- 4@ f$ L- 9@ 8@ X% 1@ 9@ i$ 82.92.o:.02.u[.H}.a2.n+ 1L nS xT 1L }K q+ n+ DU }$.cY b2.]..c2.d2.|K |K aO ,T yT qt aO r0 oS ot L E^.e2.f2.g2.h2.i2.F1.=2.j2.=2.=2.j2.j2.k2.F1.;2.;2.l2.j2.=2.,2.;2.-2.,2.D1.m2.)2.n2.+I Rh Sn o2.vR p2.f}.-}.{2.q2.B/.r2.9[.s2.hA f1.~}.{- S+ /- ^l pM ^l ^l b[.A:.a> Fc #f h1.H<.t2.u2.;[.b[.H<.7<.D[.$<.9w ku I|.v2.A[.W}.2q ]s Lj @K 2` w2.+. J M@ S I N )> I w D p y n^ 1; /# t Y$ ", +"BN BN BN <{ J$ R@ G= BN #S R@ ], jP #S I/ L$ I/ 0' I/ G= I/ I/ 5_ 5_ $ = 0' }, # 0' p9 `Y $ 0' ]& V@ $= V@ . > . (& = + + = $ $= ]& 0' # . . 5_ . V@ |* H= - S$ H= > - Q$ & $= %= > > & S$ ; N$ ; U@ N$ N$ %= & ] | .# S$ ; . > | O$ P$ H= b{ T- %= & ] N$ ;# ~ { N$ U@ S$ N$ /& 2 2 R$ ~ X@ { &# ## d 6 => /& $# *# Y@ 1 [ $# ( ( D, ># 6 6 { J] ) < d N' 7 k 6 ,# a 6 a d Y> 0 6! e n 0 6! a 0 6! !# tA {# c Y$ L= }& n p r ,> ]# ,> ,> V| D Z$ ,> t t p ^# /# q /# w m $S |Z w z F= F= F= '&.F= E z '&./# z z G a7 F= a7 $T ,/.m;.AR Z Z V c- V V .@.c- 4>..@.4>.4>.(#.B..B$.SO :#.B..aV B$.B$.iU ;*.p*.iU BX _#.l1.^P )Q +Z +Z +Z G&.+Z +Z RT +Z RT D` 1@.{&.G&.1@.'*.1@.3@.3@.E` CX .` E` CX .` AS +` E` 9&._U z+. ..z+.#@.^&.l#.z@.<+.M#.p;.$ .}+.M#.):.!$.L#.T%.S%.!$._W %Z C .cX %Z %Z U%.*` a .d$.a .% .%+.& .E@.0` -` F+.%+.O/.O/.b` QW fS oT GR FS AM RP uP GR AM N[.zY uP N[.RP XL dJ bJ nK 'H BH sL BM JJ JJ BM JJ EH *J RA KN IH *J IH RA 1z 1z )H fJ MJ _H :E ]A Qd Qd Mm Mm Lk Mm Lk {i zn zn zn rg ul 03 We ul rg t[ >8 }c >8 Z< Z< t[ t[ &^ &^ `~ Z< &^ &^ Z< o~ a3 a3 Z< b3 (] O] h( ') A> A> ') m- ') m- a, q~ q~ ]! y! q~ n& 5% C> )) 5% 6% 0~ e/.O; n& S. 8% J. O. J. J. J. L. N. p& d, 3= Z. R. L. J. {1. ; - Z. 22.P[.d, {1.i<.3= q1.Q[.<{.i[.i[.x2.p&.i[.9,.^1.j<.x2.c|.y2.]1.R1.]1.y}.2}.n<.n<.X(.z2.Q|.n<.n<.U^.n[.z2.X(.J}.n[.0_.2}.A}.A2.*|.P_.X<.B2.X<.X<.X<.X<.X<.P].X<.s1.P].Y<.4'.l/.P{ 4'.4'.4'.%p 3}.n, d$ d$ 3}.P{ d$ C2.[@ e$ b$ b$ 8@ 8@ |@ f$ 8@ l$ 2@ L- X% D2.E2.p/.F2.k_.<<.j_.q+ JM nS GO q+ .Q ]G k+ ,T Q+.-Y +$ G2.H2.I2.|K 2.R2.S2.T2.R2.D1.U2.'2.V2.6*.B|.o2.FW u .W2.i.. d 'e B/.X2.Y2.z[.Z2.`2.{- o}.S+ S+ R+ Q& E% a> vC /- P+ a> Fc Zi .N I<..N !}.b[.h1.b[.@<.D[.^_. 3.Et }q .3.W}.hk .m *t ;o +3.@3.@. H@ Y I z G ,> I y D Y$ n^ `$ G w p g ", +"L$ R@ L$ p9 <{ J$ jP *) jP ;b BN 9| I/ I/ I/ G= L$ I/ I/ I/ I/ ]& X! % X! I/ + Z, 0' 0' # 1) $ + # # . . # . . Q$ V@ $= = $= . 0' # # L$ + + U@ ; $= $= ; H= $ ; h) H= o! & V@ . . $ > & A; ! $ | | . N$ U$ S$ . > ] ^& H= ] ^ X@ R$ ) ~ N$ ^ ; X@ { ) ] N$ N$ 7- N$ 2 1 X@ [ ## D, } ( ( } ## { 7- } 6 <& [ $# { d *# } 6 7 } ,# < -> k ,# 6 6! ~# a 8 6 ( ~# q> L= J] L= t' a 0- a K= W$ n E, n c{ _# 2, Y$ ,> s> h q p n ,> 2, 6* /# h '> m t :# t D ,> F= :# 2; $S ^# b' F= @= 1Z #] z a7 z '&.P<.n! a7 a7 8$.AR O@ KW Z '&.T^ Z .@.c- HV c- 4>..@.c- .@.v@. Z I-.t%.z .<_. V B$.I-.iI oY *I L iU ;*.A: yS y+.K{.I#.)Q RT +Z +Z Z .RT RT +Z Z .^P +Z R%.G&.G&.G&.7).0$..` '*./!.4..CX E` .` .` AS ZX CX CX ST pY 2Y <=.K[.[#.E_.qY ...)$.8 .T,.6Z 0 .!$.S%.v%.N#.`$.#-.|+._W cX 1%.|+.%Z %Z %Z _W %Z a .cX gV xY 8Z gV 8Z d .& .& .& .$...Y -` O/.GR FS jQ RP AM RP XL Wq MQ AM tP Wq (O dJ ;H ,H uO PQ bJ bJ #w {K }I bJ }I 1z .G IH rB *J RA :H 1z GH RA }I :E vy :E WA WA Mm XA Qd Lk {i {i Mk Lk Lk }c rg rg }c Qr >8 rg >/ >8 }c >/ d/ Z< d/ >8 a3 &^ Z< &^ Z< a3 Z< [ 8] `~ `~ [ #3.I^ g/ A> A> 0! A> ') 0! A> 0! q~ q~ K~ q~ #, <> )) C> )) q~ O; n& 9% G. G. L. J. N. J. N. L. 8% J. N. J. J. L. J. Z. p1.N. R. R. Z. P[. ; i<.i<.R. q1.3= !) $3.i[.i[.j<.[}.42.O|.9,.j[.O|.i[.42.]1.l<.}}.V<.e|.n<.l<.}}.<[.n[.z2.n[.z2.n<.n[.n<.Q|.<[.<[.%3.=|.A}.A}.G=.S:.`(.X<.P].P].P].P].X<.P].Y<.W<.X<.62.4'.l/.m:.l/.e].Y<.62.62.4' U/.%p b$ 4@ [@ &3.*3.L- X% P{ v; 4' 9@ f$ 9@ l$ b$ X% (; =3.-3.;3.:~.>3.k_./) HB lS ~` hZ l` !..n+ k+ 3U lX / .u#.p{ ,3.N+.FU cz qt |K Y{.qN .B .B l].().e_.'3.yf k2.k2.k2.)3.k2.)3.O2.)3.O2.!3.P2.~3.~3.k2.k2.;2.S2.{3.S2.R2.H1.-2.]3.^3.Rh C|./3.kZ +z ~U kA W` y~.(3.3<.9[._3.:3.u2./- U+ T+ V+ P+ pM vC vC ^l vC /- Fc of #f o}.;[.;[.B[.<3.N(.,[.D[.9w 3..3.[3.;1.[|.;(.&t It 'l Kf }3.8# C$ Q@ Q@ A I N {& G Y$ p ,! }& p r `$ h ", +";b R@ R@ L$ <{ R@ ]^ *) R@ J$ J$ 2^ BN I/ I/ BN J$ I/ I/ I/ I/ L$ + + + 0' ]& 5_ 5_ ]& J$ ]& #^ ]& # + V@ + # = # . |* # ;b V@ S$ o! P$ > + $ + & & V@ & [* + $ > - H= =' & V@ o! ] = & 2) > $ > > ] & & ) ; %= N$ | ; | R$ | P$ S$ ! & ~;.S$ & (& ~ U$ X@ I= %= | N$ { U@ X@ N$ /& ( < Y@ /& 2 1 W@ { 9 } d 1 $# d k Y@ 2 } ( J] 1 $# # $# 0 6 k ,# N' i k J] 6 k ~# !# z: W$ c ]c L= n n n -) y2 6! _# Y$ A~ o ~# h z: 1; Y$ b' `$ % q cj h ,> n^ /# F [# Y$ 1Z )> :# 4* D b' z w '> [# .!$.$ .0 .S%.s*.}+.$` N#.A@.oW oW _W #..%Z %Z _W _W 7Z %Z PW & .[T *Z & ./ rg >8 d/ t[ d/ Pk &^ a3 Z< Z< Z< Z< a3 {1 ): t^ Z< h( 5< G| G| Q3 ') A> N) ') A> A> ') )) )) <> 0~ 0~ 5% )) )) H. q~ 4% H. G. 6% D. I. J. L. L. L. L. L. N. L. N. L. N. J. ; d, 53.q& N. ; i<.q1.22.q1.q1.q1.53.P[.q1.i[.i[.<{.[}.P[.j<.i[.63.j<.O|.i[.j<.l<.n[.n[.V<.V<.n<.n[.<[.n[.z2.n[.<[.n[.n[.<[.n[.z2.<[.S:.73.G=.X<.S:.X<.]<.P].83.P].P].P].X<.P_.62.X<.62.P].P{ 4'.W<.[@ i|.l/.62.<: b$ }@ n, 93.x= /; /; X, |@ W% 03.4@ X% |@ 9@ ^; 4@ 2@ P{ -* a3.b3.%_.c3.|^ t/.f= 1L lS 7W -Y C%.CU IZ I}.hZ lX }$.hZ d3.e3.i! SS Yi aO aO VN bO UN aO /X 5H LM _i 71.()..(.f3.g3.k2.O2.O2.)3.)3.)3.h3.)3.)3.)3.~3.~3.~3.k2.k2.i3.;2.S2.S2.R2.-2.m2.j3.n2.91.D|.C|./3.^+.f}.{%.Vk D;.k3.Y2.B:.l3..N n0 E% /- T+ R+ E% DL Q& u2.o}.pM 6c m3.A:.<|.n3.o3.!}.o}.p3.@<.8<.G<.D[.w_.^_.9w -(.q3.r3.s3.It 1j mi t3.A0 O S K@ ~& z 2; w w ^# m ^# ^# ^# 4* Z$ p ", +"8S L$ J$ 9| <{ <{ 2^ 9| R@ R@ I/ 2^ G= L$ ]& BN L$ 0' J$ R@ I/ J$ R@ L$ K$ 0' 0' 0' K$ 1) Z, M$ = = = + = & ]& . # . $ # 1* ]& 0' - & ]& # V@ =' P$ [* S$ & Q$ & # & S$ U@ & $ > ; ; H= ^& . ; > ^& ; o! . $= . > U$ Q$ N$ N$ & ; S$ U@ S$ ] ^ ; [ | H= 7- /& ~ ~ & ~ N$ 4 ) | X@ 1 2 I= 2 8- 2 X@ } ) 1 [ < 1 5 /& [ 5 6- ( } 6 a } j $# $# 0 a 6 a 7 ,# ,# ,# 6 a 5 Y> 0 0 7 a Y> 0 ~# 0- Y$ L= 0- t' 0- 0 ]# 2, ]# c{ xE 2, xE m 2, t 4* b~.p ,> /# ;{.4* 4* `$ ^# :# w 2; F= E C F= $S a7 '&.'&.{& a7 A$.a7 a7 '&.'&.a7 a7 8* AR AR c- Z Z HV $T T^ (#..@.c- o^ c- (#. Z PT n! B.. ` SO SO I#.;*.oY aV B$.:#.-*.XX l1.(=.u3.+-.Z .Z .Z .RT +Z Z .9$.RT +Z Z .^!.|@.3@.Z .'*.D` n,.w@.E` hT a&.E` 4...` 9&.3Z CX 4..]&.:=.l#.z+.......#@.~W r*.4Z ~*.6Z 0 .6Z N-.T,.M#.nW 6Z v3.^W H` D$._W _W %Z #..a .w3.*` 3Y &Z &Z 6..% .hV / >/ >/ t[ >/ t[ t[ t[ a3 Z< G~ a3 `~ &^ a3 Q( f( a3 h( k{ A> 0! 7] m- A> ') m- ') A> m- <> q~ q~ q~ ]! 4% q~ P; D. )) 4% G. 2= 12.D. G. L. L. J. L. 8% y3.N. L. J. L. N. N. L. d, r& !) - z3.22.i<.22.i<.P[.X. _[.P[.P[.$3.j[.A3.i[.B3.M|.i[.O|.P|.p&.C3.U(.D3.R1.]1.]1.E3.<[.<[.<[.z2.<[.n[.<[.<[.z2.z2.z2.<[.F3.z2.]<.G=.]<.P_.P].*|.T1.P].U1.P].P_.X<.P].T1.G3.l/.P{ P{ l/.l/.62.l/.W<.V1.^; m:.|@ n, 4@ d$ 2@ |@ |- 6J d$ X% 8@ X% H3.9@ 6@ [@ 6@ d$ I3.J3.K3.L3.M3.j_.j_.*$ 1L 7W N3.O3.1L xT (V 7W 5#.hZ hZ P3.,T Z%.i@.bO ^R 3U 7<.lu Et X3.0:.,[.b[.iP <|.h1.Y3.H<.!}.#<.^_.9w 9w Z3.`3.s3.KC It 4..4.(4 E@ P@ P@ Q@ z I 4* {& ^# ^# p -) ^# h p Y$ ", +"<{ <{ *) ]^ J$ <{ <{ ], BN 9| I/ 2^ BN L$ #S jP G= I/ I/ I/ L$ ]& = 5_ K$ K$ I/ #S % + # * # + L$ $ 1* . .( ]& .( + ]& [* # = + . Q$ $= +4.. H= T@ N$ S$ H= - & ; H= $= . - + . ; . N$ & + & R$ U@ U@ . ] Q$ $ ~ ~ N$ %= ] %= S$ ^ Q$ Q$ H= { ~ U$ ^ Z! X@ ^ N$ ) ; 2 ~ Z! ) Y@ ( 2 Q$ N$ [ [ Y@ { [ / $# : [ 7 } &# 4 6 } ~ } k ,# ~# d } ,# k 3* ># k $# 6! [{ ( ~# L= ,# ,# 0 a 0- Y> L= |& h h ,> |& 7 n L= ]# r ;= s> `$ m 1; 4* t b' ,> s> m t 4* D Q(.`$ D C {& #] D Z$ 2; w G F #.F= /U z z '&.'&.'&.a7 '&.A$..t%..@.t%.I-.AX i5 |# H#.0].W!.U;.oY *I -*.oY yS y+.+-.oY .V +Z +Z RT +Z +Z RT +Z G&.Z .D` +Z {&.R%.3@.{&./!.+@.$).+@.CX o;.E` .` E` 4..3Z 4..9&.L-.K#.<=.o;.~W #@.S%.z@.#@.~*.9 .$ .!$.!$.S%.N#.tY [=.#-.oW oW _W oW cX %Z _W a .cX a .$+./ t[ d/ t[ t[ >8 t[ d/ >/ `~ G~ I~ C{ a3 `~ `~ 8] `~ f( 8] b3 L} :} E{ ') 0! A> ') A> 0! m- a, )) )) #, K~ #, 5% G. 6% q~ G. D. )) 6% G. L. N. L. L. 2= 2= {1.12.2= N. L. L. L. {1.d, p1.$4.q1.d, i<.P[.L|.q1.q1.53.Q1.!) P[.q1.q1.%4.M:.q1.9,.c|.]1.R1.p&.l[.E3.R1.n[.R1.E3.&4.z2.<[.n[.z2.<[.<[.<[.z2.n[.*4.<[.z2.z2.k>.*|.*|.U1.3>.]<.X<.P].3>.S:.T1.P].P]._/.<: 62.4'.4'.4'.P{ 4'.4'.b$ c$ f$ ,~.|@ @* @* b$ d$ i$ ** /; 3@ l$ 4@ 1@ |@ X% o, `% R|.f$ P. =4.-4.2[.;4. (.j_.>4.k+ xT IY lS qN JM l` ,4.'4.u#.n .,T 3U ;Y 3U 1K yT ^R bO 3U 3L |K dz /.U H J F= z I w Z$ m 6* `$ h Z$ ,> Y$ n ", +"J$ <{ <{ 2^ 2^ <{ L$ <{ *) ]^ I/ I/ L$ L$ jP BN BN I/ I/ I/ J$ I/ I/ I/ K$ 1) I/ ;b $ + # # K$ + 0' = # ]& 0' $ ]& 1) L$ > - Q$ = V@ T@ > $= $= $ = ' |* $ . . . ' Q$ ; Q$ Q$ - S$ $ > & S$ ; & R$ Q$ Q$ . ] Z! 2 H= N$ . ' ~ | > U@ %= P$ ^ ^ P$ %= 2 X@ H= ; R$ N$ *# } 4 ~ : 7- { ) | 5 2 2 { ~ ; } 5 ( $# d / } $# 6 } ( 6 2 Y@ a 6- 3* 1 Y> V$ 6- e 6! tA $# ,# !# a !# K] n 7 {# 8x s> -) {# r r s> 2, n L= r V| 2, r % xE V| V| 4* p vA 4* t C #] /# % }4.[# w w F $S t 2; G 2; /U /U C` a7 z z E '&.AR '&.a7 a7 $T HV AR AR T^ 4>.T^ HV V c- (#.1& p=.4>..@.t%.e:.k1.|4.AX ` 3# Z..iI B$.-*.:#.A: oY (U qF XX (U ];.^P )Q ^P RT RT +Z +Z +Z +Z +Z Z .sZ +@.e-.G&.{&.3@.CX {&.CX hT a&.4..9&.E` .` y@.E` 4..9&.:=.#@.` .4Z ...!$.B .` .)$.Y$.<+.z@.$ .N#.0 ..+.#-.#-.N#.7Z _W cX cX a .C .%Z oW cX _W 3Y 'X @+.E .d .%+.&V nU gV &V Vq GS GR nU RP )K XL GR 4z Wq KJ KJ HR RP MQ Wq dJ cJ pW GR OV uP Wq bJ bJ UF )H EH EH *J eJ *J ]K RA eJ >k vy :I IH HH ~i Qd 14.vy _E Lk {i Mm Mm Lk A9 Qd A9 Lk Lk 24.Qc Xe Mk 0h ]i t[ t[ >/ >8 C{ t[ Z< t[ d/ `~ Q5 Z< ;8 {1 &^ `~ Y^ *^ `~ ~! i2 5< A> H~ A> 0! ') m- m- m- A> a, )) 0~ #, X' #, n] P; G. q~ G. G. 6% G. D. 9% N. L. 12.O. J. N. L. N. J. J. N. L. h:.N. 8% q& !) 22.q1.P[.d, i<.Q1.3= q1.Q1.Q1.$4.32.i[.O|.34.44.P|.l[.c|.i[.[}.x}.D3.T[.E3.R1.R1.&4.54.}}.<[.z2.<[.n[.64.z2.74.<[.z2.<[.z2.G=.*|.3>.3>.G=.X<.P].84.P].T1.P].T1.W<.T1.P{ p[.T1.X<._/.P{ 4'.4@ |@ P{ i$ e$ H3.c$ H3._{.^; _].b$ 2@ 8@ |@ 8@ 9@ 94.X% l$ 2@ 04.a4.]).b4.c4.d4.e4.f4.k! HB lS xT JZ 1L (V IY ,4.g4.3*.UN UN bO |K 3U 3U bO bO ,T 3U q0 |K UN dz aO UN uK .B u/.b,.h4.K!.h3.h3.~4.~4.i4.i4.~4.~4.~4.i4.~4.S3.j4.~3.!3.O2.j2.P2.l2.;2.k4.D1.)2.j3.A1.(|.Sn /3./3.RX W2.R..5[.l4.E<.>Q m4.n}.~}.n}.E% T+ V+ T+ P+ P+ Q& ^l n}./- pM vC #f n4.H<.D[.D[.I<.-1.o4.$<.8<.$<.-1.^_.f(.E/.p4.W}.#:.#:.ne q4.s[ #% 8* A 2; x G G :# D `$ 4* c `$ ,> u `$ ", +"<{ *) <{ 2^ J$ r4.*) <{ ], 2! J$ I/ ], L$ 2^ 0' I/ G= G= 5_ L$ ]& I/ 0' K$ # % <{ ]& # K$ I/ # # p9 1) + . $ # # + # $ S$ > . . > > # + ; & . $= U@ N$ > H= P$ o! X! > - Q$ . + . S$ ; . - [* ] ] > M$ & N$ N$ ~ 2 ; U@ o! $ ; ) ~ N$ N$ ) & /& ] ~ ; 2 ) X@ 2 | <& X@ | ~ 8- 1 , ## ## d d { ) ## ## 4 { 3* / ,# V) [{ } 6 7 } 7 J] 0 7 k /& d {# i b k i ,# 0 k a 0 L= t' ~# z: ,# [& L= !# Y$ K] {# L= 0 2, ,> n^ L= g % ,> h p b' C n^ L= /# `$ ^# 4* m t :# w F= P<.{& F= G F #] /U F= '&.a7 '&.E a7 a7 AR a7 8$.AR $T T^ '&.A T^ .@. V c- c- V T^ V .@. V V s4.4>.|4..@.y .Z..)^.A: SO iU B$.aV *I *I qF XX I#.oY yS >$.RT )Q )Q +Z RT )Q Z .Z .R%.G&.Z .1@.G&.+@./;.3@.n,.^,..` E` E` L-.4..q*.9&.]&.9&.` .:=.` .4Z f-.Y$.^&.qY S%.)$.!$.$ ....s'.M#.$ .$ .sY `$.N#.#-.^W wZ oW cX cX cX nW cX _W 9` gQ t4.vY 2+.hV eX yZ 8Z xY MV &V QW Q( @, O] I^ [= A> ') A> a, P; J~ 5% n& ') C> )) #, q~ #, G. G. 4% F. D. {1.v4.K. N. N. K. N. L. 8% w4.N. x4.22.Q. 22.x4.!) y4.q1.P[.{1.Q1.P[.q1.!) Q1.q1.Q1.Q1.t1.O|.A3.z4.x}.i[.i[.i[.x2.x}.l[.y(.y}.&4.R1.54.E3.R1.z2.n<.<[.n[.<[.z2.74.n[.z2.n<.z2.z2.3>.84.A4.3>.P_.P_.P].P].T1.T1.T1.P{ 62.|@ f$ Y<.L- W<._{._].<: x= 4@ v; d$ x= |@ _].d$ <: b$ 1@ f$ x= f$ X, 3@ 8@ l$ 3@ h$ `% B4.C4.D4.E4.F4.+[.V].)- lS xT JM xT HB nS xT IZ G4.H4.3U 3U ,T bO aO bO .B 3U bO 3U . . $ . # Q$ S$ ; . $ ]& M$ = Q$ . > & Q$ U@ # + > . . . & & & $ > > . S$ U$ & ; & U$ R$ | U$ H= & > ; ; & > N$ | X@ R$ > S$ Z3 N$ H= U@ & N$ { Y@ ; (& X@ ) | 2 %# 7- | { 4 X@ W@ } [ { *# /& 2 *# 6 } Y@ k V~ ( 6 a' 2 D, 2 1 7 b d $# } $# a 6! 3* d k Y> a ~# 6! 6! 6 n k a 0 ~# r a L= Y$ }& [& c n s> ~# ~# `$ 4* ,> 4* 4* @= y2 ^# m 2; '> 2; 2; /# E :# @= F= #] w F /U G w W) a7 I K '&.z '&.F= '&.'&.$T 8* $T c- c- V I{.N@ >z M m;. V m;.$T c- I-.4>.~,.v@.c- E$ I#.}Y L p*.B$.B$.iU iU p*.)Q 3d yS W4.RT lP +Z Z .Z .+Z RT ],.Z .Z .!&.Z .!&.Z .G&.CX 0$..` $).3@.E` D` a&.9&..` E` ]&.9&.+` ` .:=.`X z+.Y$.` .2Y z@.^&.S%.$ .0 .!$.N#.0 .)'.X4.3Y M#.N#.C+.oW ^W _W oW %Z oW oW _W cX DR >R VT mT yZ 'X 0` / rg t[ }c d/ X: d/ t[ t[ &^ `~ >/ `~ Q5 G~ {1 [ ~! {1 t^ Z4.Z4.6~ k{ [= `4.m- ') A> m- 0! )) ') A> )) 7~ 4% )) q~ )) K~ n- $, H. G. D. D. N. 8% L. 8% N. 22.J. 5.N. J. L. !) 22.{1.8% 3= 53.3= !) P[.p1.q1.P[.$4.Q1.P[.q1.q1.Q1.<{.D3..5.+5.i[.x2.D3.42.c|.l<.+5.P|.64.&4.E3.R1.@5.z2.n[.64.z2.<[.z2.z2.F3.n[.n[.S:.52.3>.#5.3>.P].U1.X<.P].T1.P].p[.p[.T1.Y<.P{ <: 62.4@ Y<.T1.62.3}.b$ _].<: |@ [@ 2@ _{.b$ p[.3@ R9 4' 8@ $5.2@ 2@ $* 3@ f$ 9@ w; %5.&5.*5.=5.-5.;5.>5.,5.*5.{2 xT JM 1L nS aO IY (V IY aO ,T .B %U hZ ,T bO bO bO ;Y 3U .B dz Yi Yr Fl 9> s+ '5.)5.!5.'j ~5.{5.i4.i4.i4.i4.i4.i4.i4.~4.~4.{4.j4.M4.~3.!3.O2.i3.;2.SD D:.B1.b1.m2.m2.]5.Rh Sn u .RX .S dP ^5./5.(5._5.Q4.n}.vC /- E% O+ /$ L+ V+ :5.<5.u2./- a> L+ X+ of {}.!}.8<.[5.tN }5.z:.|5.,[.$<.o4.-1.-1.9w E/.d[.0w E/.R}.3g 15.T K@ P@ D {& G G :# G c{ Y$ m D h c 1, ", +"9| J$ <{ <{ 2^ ]^ .( I/.|1 ]^ 9| 2^ I/ R@ <{ J$ p9 I/ R@ ]& ]& G= 0' I/ 0' % K$ ]& I/ # # # $ Q$ ]& + # V@ + Z, # $ # . 2) S$ 2) Q$ & Q$ ]& L$ V@ . V@ H= - > = |* S$ ' Q$ U@ > = ; ] > & ; S$ N$ . $= ; ; U@ ~ %= $ ; ; Gc - ; 2 S$ & P$ %= S$ > X@ ~ | & N$ / ^ S$ | ~ | 4 [ { N$ ;# X@ Z! ~ { 2 & <& } ( *# $# ## 2 1 6 J] $# d 6 a 4 6 6- ,# tA a ,# a < 6 V~ 6! a a q> 0 a k g j n c Q{ &].h c !# 0- _# K/ c s> Y$ c{ p s> p Y$ m b' ^# 1; 4* ^# |Z 1; w {& /# 4* :# /# F= u /U w /U G a7 '&.a7 z :# w A A$.a7 $T $T #] U!.I O@ .@. V V c- V =X K Z JW m;. V .@..@.4>.(#..@.d{ p*.aV *I aV :#.-*.-*.:#.p*.#N 3d +-.F>.RT ^P RT Z .)Q +Z RT Z .Z .+Z G&.R%.0$.RT +Z 7)..` /!.$).'*.d~..` E` o;.J#..` .` y@..` b&.]&.f-.#@.r*.<+.)$.B .25.<+.B .z@.z@.$ .$ .N-.N#..+.<=.M#.x%.pO cX cX oW oW oW oW cX cX oW FX VT 'X wY yZ hV gV k vy 9h {i vy 2I zn Lk Lk Mm 0h cd Lk {i Mm 0h 6e rg 03 Si We >/ F~ c9 c9 C{ C{ t[ `~ V{ &^ &^ X: &^ Z< &^ &^ b3 H~ Z< i2 O] G| `4.O] p~ m- z. [= A> m- 35.y! y! y! a, c; m- a, q~ )) G. G. H. G. 5% 6% G. K. N. N. L. L. N. 8% N. 8% N. L. y4.L. {1.y3.!) 53.53.q1.q1.45.B3.q1.34.Q1.Q1.Q1.34.B3.A3.A3.D3.55.65.x2.D3.p&.C3.O|.y}.P|.z2.64.@5.@5.75.64.z2.64.64.<[.85.<[.n[.64.85.64.<[.95.A2.P].05.]<.#5.{).p[.P].P].P].p[.P].4'.P{ P{ 4'.s1.62.T1._1.P{ <: b$ L- 9@ 2@ f$ L- 8@ |@ y= 8@ 9@ j$ |@ i$ a@ 8@ X, X% -* a5.b5.c5.d5.e5.f5.g5.h5.T:.i5.|L xT HB h+ :S lS xT l` IY -Y 3U hZ e..aO nS bO |K 1K aO )$ Xi v+ 8> '$ s+ g= j5.k5.l5.i4.i4.~4.K!.K!.K!.K!.i4.i4.~4.i4.~4.~4.E|.M4.S3.!3.O2.T3.l2.l2.S2.,2.U3.m2.]5.n2.Rh N}.Dd +y Wk .S m5.n5.yb o5.() p5.o}.vC L+ Q+ S+ T+ R+ S+ g1.{- Q& vC o}./- /- of U}.;[.q5.r5.s5.t5.@<.,[.,[.8<.^_.O(.e(.e(.e(.-1.O(.Wo k,.u5.H$ J Q@ G D w @= ^# D (# o (# `$ n c _# ", +"9| J$ ;b jP <{ R@ .( ;b I/ R@ R@ ]^ 0' G= 9| #S #S I/ J$ jP I/ BN G= ]& 0' 5_ # # 5_ 0' K$ # + + # # = = }, . % L$ > V@ # * . # > ' > # # . R- # 2) - > > P$ & . + N$ A; ] & ] $ = > = > 2) . ; %= H= X@ %= = ! | | | %= I= | S$ U$ S$ & ^& ~ N$ X@ X@ ~ ~ U@ ; 8- 5 ~ X@ { : ~ ~ [ Y@ 2 ## 6 Z! $# *# { 1 { d d : ,# V) } /& 7 3] Y> <& d : v5.w5.,# /& $# d k 6! K/ a k e 6 ,# a 3* e c L= c W$ j k L= o Y$ c g L= 0- ,> ;= e h p! x5.[# /# y2 /# t n^ ^# Y$ 2; F= F 2, |Z w $S G w ).F= z a7 z b' a7 [2.a7 z n! '&.C` U!.JW 8$. Z >z c- c- V c- :}..@.2Z 2Z z .4>.5 .x .H#.p=.Q aV MW 0S iI :#.-*.B$.-*.iU *I #N +-.(U I#.^P RT G&.G&.Z .Z .Z .+Z +Z lP bV D` w@.R%.e-.0&.0$.#).$).n,.CX .` 4..9&.E` E` pY J#.a&.3..o;.#Z z+.~W <+.[#.5Z #@....z@.z@.#-.z@.$ .B .0 .B@.N#.T%.C+.^W oW oW ^W ^W _W _W _W ^W ^W WT &Z gV 0` :W gV n1. 6~ m- m- m- #, y! a, X' t) )) #, J~ C. D. F. F. G. D. F. u) 8% w4.w4.N. 8% N. w4.N. L. 8% w4.!) p1.d, !) !) C5.P[.53.L|.B3.P[.Q1.Q1.q1.Q1.D5.$3.!) <{.x}.E5.O|.O|.D3.E3.F5.j[.G5.p&.H5.<[.54.E3.@5.54.<[.85.<[.n[.z2.z2.S1.S1.I5.k>.z2.J5.*|.A2.p[.{).*|.{).p[.P].A4.p[.T1.p[.4'.P{ 62.l/.X, <: P{ |@ ^; 2@ X, |@ 8@ `<.n, }@ l$ u; 2@ 4@ 6@ X% 1@ T* ** 5@ X% `<.K5.L5.M5.N5.L3.O5.P5.Q5.^) }.R5.-$ q+ q+ m+ n+ h+ m+ l` ^ .:S 3U ,T ,T bO Xi qt Xi 9> .B Fl p+ u+ N> y% |! 6{ Y).S5.T5.U5.~4.i4.K!.K!.U5.i4.~4.K!.i4.i4.h3.~4.E|.~3.P2.~3.k2.j2.;2.-2.T2.G1.b1.j3.)2.(|.Rh N}.vX RX ~U Bd V5.S}.W5.<5.X5.() t2.a> /- {- S+ V+ P+ R+ Q+ E% a> vC ~}.u2.n}.b[.h1.Zi 7<.)] o}.Y5.B[.7<.]_.$<.D[.#<.o4.9w E[.=1.O(.d[.0K Z5.1# 3# A x G }# w :# Z$ /# ^# Z$ r h h C; ", +"J$ 9| J$ <{ <{ J$ ]^ 9| <{ 9| 2^ BN I/ R@ ]^ 2^ #S I/ ]^ J$ I/ I/ L$ + L$ ]& K$ # 5_ + # # Z, Z, + L$ = # > V@ + + + # + # . $ = $= S$ + + > ]& k) V@ . # $ Q$ |* $ ; ; & Gc = > o! U@ & = > ; U$ > $ | | $ Q$ ~ ] & ; Z! | . N$ ~ H= ; ^ & ; ) N$ | ) H= Z@ ; { 2 X@ +# 2 05 2 7- 7- 7- ( d J) $# Y@ d } 6 7- d b k 4 2 d k 6 6 Y> +# 6 J] ~# q> e Y@ 5 k L= g ,# a ,# e L= ~# a L= n j ,# c a Q{ W$ r K/ c ~# Y$ ]# L= ,> Y$ E, Y$ ^# ^# G#.^# ^# t u `$ ^# /# D :# 1; D t |Z F z ^# K a7 a7 /U z )./U A$.{& A$.$T AR c- 8$.,/.:}.F= Z M #= T^ .@.4>. V t%..)..@..@.(#.`5.y .t%.B..:#.*I aV iI iU I#.*I qF BX #N k#.BX ^P .V RT +Z +Z RT G&.Z .RT G&.9$.H&.H&.0&.Z .{&.3@.9X F]..` CX .` E` 4..E` 4..3Z y@.4..@@.9&.2Y 4Z [#.<+.<=.5Z )$.Y$.p;. 6.nP 8 .$ .$ .N#.wZ N-.S%..#.cX oW nW cX oW _W _W C ._W ^W fV yZ %Z &` hV A> A> K~ y! 7~ A> y! P; #, #, n- 4% )) H. H. G. D. K. N. +6.5% D. D. 8% 8% O. 8% L. N. y3.8% z3.q& 53.$4.Q1.q1.q1.L|.34.q1.3= Q1.q1.Q1.32.A3.M|.D3.$3.@6.42.C3.x}.+5.%4.R1.R1.R1.64.54.R1.#6.@5.64.<[.85.85.64.64.$6.$6.k>.%6.64.z2.3>.r1.3>.C2.84.84.{).Y<.|@ p[.T1.p[.62.^; L- -|.1@ <: &6.|@ <: 3}.8@ u; 9@ 2@ 9@ 1@ 8@ 2@ i$ j$ 3@ X% 9@ 3@ 1@ 1@ 5@ l$ *6.=6.-6.L3.;6.>6.6| S) |' ({ .Q ({ q+ ({ q+ HB n+ l+ ({ TR HB 3U ,T .B |K cO BD MH ({ Xi '$ t+ i= M& y% |! 71.6{.f2.,6.'6.i4.i4.K!.i4.i4.K!.K!.K!.i4.i4.~4.h3.)6.O2.~3.S3.P2.i3.>2.R2.G1.b1.c1.n2.%1.!6.(|.vX vX :w .S dP ~6.{6.]6.^6./6.^N B[.{- vC E% Q& vC pM L+ a> n}.S+ E% g1.S+ /- a> $) vC 7<.n}.iP ;[.#<.D[.D[.#<.o4.,[.,[.$<.O(.(6.^_._6.:6.<6.Q@ K@ A p G /# /# G w % ^# h p c ~# r ", +"<{ J$ J$ 9| 9| J$ R@ |1 8S <{ BN R@ G= I/ G= V! G= I/ G= R@ L$ 0' I/ I/ 5_ L$ ]& K$ + 0' ]& K$ # ]& ;b % # ]& # # . 0' J$ ]& V@ > . $= . #^ . H= $ + 1* ,Q 9S Q$ ; & N$ > S$ > H= H= - . 0' ] > . %= ; Q$ $= $ = Q$ Q$ [* & = N$ ~ z] ; & ] ] U@ U@ = X@ / > ; ~ 2 Z! { | ) | X@ | N$ | | | 7- 1 7- ~ W@ ( ## Y@ $# 5 } / Y> Y> < 7 5 } ## Y@ X@ 7- j /& &# q> 0 Q{ {# ~# $# $# V) 6 ( e e ,# a ># !# K/ L= o a K/ {# {# b h ,> ~# 0 L= 0- n r }& 0- r % `$ $] % ,> ,> m u 4* ^# w w m t w 2; F= {& F= G z C` #] z AR ..@..@.c- .).v@.(#.:#.aV AX A: *I A: iU oY oY *I yS G$ oY (U #N )Q )Q RT Z .RT ^P Z .RT +Z 1@.Z .Z .<#.Z .+@.+@.0$.D` D` .` E` .` 9&.4..E` E` 4..E` a&.o;.` .` .4Z Y$.<=.qY S%.#@.B .5Z uZ ;X }6.$ .N-.B+.)'.0 .M#.^W ^W ^W ^W oW cX %Z cX cX oW FX gV &` 9` a` xY yZ gV gV hQ ^O ER _P bR jQ )K KJ zM )K zM )K XL GR BH XL tP ,H tP dJ UF /I /I bJ UF Wv ^L RA bJ CG Pw CG |6.rB :I dt 16.~i )u >k !i 9h {i WA {i Pc ^v A9 {i Mm Qd A9 Qd ad I0 6e O3 rg ul Ok W: c9 t[ C{ C{ d/ C{ C{ t[ d/ &^ Z< `~ t^ `~ `~ Z< &^ &^ a3 f( t^ 26.[= H~ E{ A> A> A> A> [= z. y! O) m- [= #, 4% )) #, 4% D. #, F. C. F. F. 9% N. G. v4.8% N. w4.w4.12.N. L. 8% N. 8% z3.z3.y4.22.55.z3.q1.34.p1.q1.q1.Q1.Q1.53.Q1.A3.36.46.+5.56.66.76.86.E3.C3.+5.R1.]1.&4.54.E3.E3.E3.z2.96.z2.64.n[.z2.64.96.F3.{).*4.*4.S1.3>.r1.3>.{).#5.84.P].62.p[.P].[@ <: G3.^; /; |@ 2@ T1.X% /; d$ 1- c$ 4@ x= 06.f$ x= b$ $5.8@ 9@ X% 8@ a@ 1@ U~ `% H3.a6.m|.8}.L3.b6.>~ c6.>~ g+ HB JM JM ]G 1L JM ({ q+ -$ Bs lS l` i@.;Y qt Xi !- m+ !- ({ 8> )$ |! t+ l; G/ 1].E^.z{.1^.d6.~4.i4.~4.i4.i4.K!.K!.K!.i4.~4.~4.h3.h3./Z )3.~3.l2.l2.i3.>2.R2.G1.b1.)!.n2.e6.C|.%1.f6.kZ +z .S -U |&.g6.h6.i6.i6.j6.~}.B[.u2.pM u2.k6.l6.n0 ~}./- L+ O+ a> P+ T+ T+ Fc ]w ]w T+ ^l iP ;[.H<.H<.;[.v_.0:.#<.#<.^_.m6.=1.n6.o6.]}.3d S Q@ C I F {& D t q Y$ p r c _# ]# ", +"<{ J$ ]^ 9| <{ I/.R@ 9| <{ ;b BN R@ ]^ G= G= I/ I/ BN I/ k3 I/ I/ 0' L$ |1 #S o! # # = 0' I/ * + 0' % + J$ 0' 1) $= . ]& [* . # ]& $ + + #^ S$ & . $= R@ 2) [* > S$ P$ . > ' ]& Q$ > P$ + V@ U@ > . | S$ & . ; ] Z! X@ S$ H= J) { U@ ' U$ X@ R$ ; S$ T@ . W@ ) H= X@ 7- { X@ 2 [ | 2 [ | | { | 8- 1 [ ~ { ## /& 4 D, } ( ## } } [ ( 6 <& 4 8- 2 } &# } $# ,# 0 a L= v5.i q> 6- 6! k 7 K/ K/ 0 0 a {# 0 K/ c !# }& c {# h r {# ~# 2, h }& 4* 2, K/ p G#.4* v s> 2, t w t m ^# b' ,> 2; p G t F= $S z G w /U C` F= p6.G a7 [2.n! P<.T^ 8$.O@ JW H[.O@ Z c- T^ T^ V c- .@..@. V .@.c- 4>..@.4>.B$.SO iU SO A: (U iU A: *I :#.(U qF K-.k#.iU 6).^P RT )Q Z .9$.)Q )Q RT RT |@.Z .'*.1@.Z .7).0$.D` 3@.CX 9&.hT 9&.CX E` E` 3Z 4..4..o;.4Z #@.` .2Y ...Y$.qY r*.Y$.Z$.kT jT L#.5Z !$.pO 6Z 0 .$ .^W ^W nW cX _W cX %Z C+.cX oW cX oW wY 7Z 3Y [T &Z &Z 'X *Z :W zM ,S &V GS .Y XL {L {L zM )K Wq RP zM 0N 0N 3M OA aJ /I bJ /I ;H UF UF OA !K UF !K Pw eJ RA Kk eJ vI *J CG CG >k jf 9h 9h 9h >k ~i ]A A9 {i {i Mm A9 {i A9 cd =0 rg vl >/ 03 rg c9 W: d/ d/ O3 C{ C{ G~ d/ C{ G~ d/ 7] &^ W{ {1 &^ `~ `~ Z< t^ 96 `4.E{ *^ 6~ A> z. `4.A> N; [= y! A# m- y! A> y! C. H. D. #, q6.G. D. C. F. C. 5.L. w4.8% r6.8% 8% 8% 7% N. N. 8% y4.p1.y3.N. 45.y4.34.s6.q1.P[.34.$4.t6.34.s6.Q1.36.u6.+5.s6.v6.i[.86.+5.O|.86.D3.E3.R1.E3.@5.@5.@5.85.<[.z2.z2.z2.z2.<[.*4.64.S:.85.74.64.%6.3>.#5.w6.r1.x6.x= p[.v; X<.y6.|@ <: X% f$ V1.C2.^; 2@ 9@ }@ 9@ 03.1@ z6.d$ f$ *3.<: l~.9@ `<.7@ 3@ o$ 3@ 3@ 2@ a@ A6.B6.8}.c6.C6.6| c6.D6.-$ xT !Z l` xT 1L 7W HB ({ nS IZ lS xT qN bM ({ !w ({ m+ n+ n+ N& 1].t+ y% =, `/ 1].G,.z{.f2.E6.i4.i4.i4.F6.i4.i4.i4.K!.i4.h3.~4.h3.)3.h3.O2.~3.l2.;2.i3.=2.F1.G1.b1.c1.{B G6.$1.Sn N}.Wk .S H6.I6._ .J6.K6.L6.M6.^6.N6.O6.u2.n}.~}.g1.`U n0 ~}.{- vC {- /- S+ R+ S+ be &g ta P6.Q6.iP b[.!}.H<.8<.8<.$<.O(.=1.9w o4.,[.R6.S6.RB (4 2& A x D t D :# w w u % ^# p ~# e ", +"9| J$ <{ *) *) <{ R@ *) jP <{ jP BN R@ BN I/ G= ]& L$ #S R@ I/ 0' ]& G= L$ L$ ]& + # + 0' L$ # # $ ]& # J$ 0' $ k) o! $ . ' # + > + 0' + > $ S$ . . > ' & . V@ > U@ E! o! - ' $ > S$ Q$ = U@ & & > ] }, U@ =' U@ X@ | ~ ) ; 2 ; ~ ; R$ > > *# | H= & ) 2 ~ ~ 2 | 2 2 [ Z! ) | X@ U$ [ 4 ## [ X@ J) ~ / } 1 ## Y@ } W@ ># ,# 6 7- *# $# $# 1 ( b 0 Y> 0 L= 0 ~# k z: {# q> 0 e L= Y> 8 z: {# ~# n ~# 6! r h 0- Y$ L= 0- 2, n^ h p r n b' % m b' 1; 4* ^# t t [# /# 1Z w w 4* {& G /U C $S F= w F= P<.G a7 z ..@.>z c- c- 5 ..@.4>.t%.SO r! aV y .v@.I#.oY iU I#.aV (U XX +).k#.RT )Q +Z +Z RT +Z RT RT +Z ^P +Z 9$.Z .{&.+Z e-.D` 0$.$).7` 4..CX E` 9&.E` .` 9&.3Z .` 9&.` .7 .4Z z+.Y$.#@.Y$.z@.4Z z@.$ .DR pO (,.<+.OW aX )'..#./&.^W _W ^W ^W cX oW _W oW oW cX oW 'X ES &T A> N; z. [= A. M; m- m- N; D# F. D. n- n- G. D. +6.C. C. y3.w4.N. 8% U6.w4.w4.8% 8% w4.8% y4.$4.y4.22.y3.$4.y4.Q1.$4.V6.q1.q1.q1.t6.s6.34.34.W6.y4.X6.$3.t6.C3.76.75.@5.86.@5.@5.@5.54.#6.75.E3.64.64.z2.64.z2.z2.z2.85.85.]<.%6.z2.85.64.3>.{).A4.84.#5.Y6.T1.^; p[.^; T1.<: 84.p[.4@ X% 9@ 2@ X% X, <: 2@ 9@ 1@ [@ T* (; v; 2@ H3.y] 7@ 1@ 9@ a@ l$ 6J nH Z6.`6.%_. 7.+) D6.;4.2[.}K 7W 7W !..!..!..({ HB 1L bM lS lS HB }K m+ q+ =; h+ ({ h+ ;$ M& @) u<..7.u<.3(.+7.V].z!.j].@7.~4.i4.K!.F6.i4.K!.i4.K!.K!.~4.i4.)3.)3.)3.O2.T3.i3.l2.k4.F1.F1.#7.$7.+I Rh f6.vX aW ^+.+z dP -}.Q .%7.D;.&7.*7.=7.-7.;7.>7.i6.B[.u2.B[.g1.^l {- g1.o}.,7.P+ /- g1.;[.'7./- )7.!7.~7.B[.{7.]7.!}.b[.!}.D[.$:.E/.-(.o4.f(.^7./7.Nh s[ I N= /# {& w D M= D u D 4* /# r [& o ", +"9| <{ 2^ ]^ <{ |1 J$ J$ 9| <{ <{ #S ]^ G= I/ I/ R@ 0' I/ I/ I/ I/ I/ I/ G= ]& 5_ = # K$ 0' 0' + 5_ ]& ]& V@ + $ k) R@ ]& L$ + T@ . # ]& > !, ]& = > Q$ $= U@ & . > $ + - ; U@ ' N$ ' A; * = > Q$ U@ U@ - P$ S$ > ^& A; $ V@ U$ H= Q$ > . ; %= N$ %= ~ ; | N$ ) ] ; ] 2 =' X@ O$ 2 P$ { *# 2 ~ | I= I= ^ I= | / 7- ~ { [ 7 => *# d x0 7 } d $# *# { /& [{ 9 V) 4 V~ k ,# $# 6 $# 0 3] ~# a a a 8 a a e K/ e t' ;= z: c n L= p 2, p p {# Q{ u q 0- % 1; 1; 4* Q(.t d<.p m % 4* b' 2; t t #] /# 2; F= a7 F= z B '&.G F= *].a7 a7 z /U AR AR (7.a7 1& AR H$ M .@. Z 8$.c- (#..). V .@. V 0S 0S v@..@.AX aV AX I-.I-.aV A: B$. ` J *I _#.J-.k#.)Q +Z +Z RT Z .+Z RT +Z Z .Z .+Z +Z Z .R%.H&.Z .R%.R%.3@.'*..` E` .` 4..4...` 4..y@.d~.E` ]&.:=.4Z 4Z EX E_....B .Y$.~W B .DR DR L#.L#.L#.nW N#.0 .X4.aX oW uY ^W nW oW nW oW cX cX oW &Z 'X bX {O gV _P ,S nU _P :W hV ,S hQ XL {L &J )K )K )K XL zM )K {L {L KJ aN 3M aN /I Wv OA OA bJ ;H ^L IH /I EH DH rB rB CG )H sy !i >k >k !i ~i ~i Ri {i )v A9 {i {i {i {i Qd Qd ad -8 cd V: u4.I0 c9 rg W: O3 }c V{ t[ V{ V{ G~ d/ F~ C{ `~ `~ W{ `~ d/ `~ W{ l- *^ &^ l- H~ X= L} ~! A> m- m- A> z. m- [= [= m- [= N; m- M; F. D. D# }= D. B. y3.+6.F. q6.8% 8% v4.q6.w4.r6.N. 8% w4.w4.y4.$4.w4._7.53.$4.y4.53.34.55.Q1.q1.Q1.34.34.34.Q1.Q1.Q1.t6.%4.t1.:7.C3.D5.@5.<7.75.@5.[7.}7.E3.<[.E3.#6.z2.85.85.|7.|7.85.85.85.F3.64.74.64.z2.r1.I5.p[.^; r1.p[.G3.p[.p[.^; 9@ ,~.p[.<: _{.x= <: x= &* 3}.P{ _{.`<.9@ 17.i$ f$ X% %* 6@ 7@ Y, 7@ g$ 7@ i$ 6@ e@ 27.37.C6.47.,- ^) k! q+ lS JM q+ q+ .Q 1L HB xT xT 1L 1L 1L HB m+ h+ q+ M& ({ )- |^ @) r+ u] (.X{.[).+[.G,.{~.P'.j].57.~4.~4.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.O2.k2.O2.j2.=2.>2.,2.F1.G1.b1.]3.Rh (|.N}.RX RX .S ~P -}.@H 0#.67.77.87.97.07.a7.b7./6.c7.d7.t2.LP o}.iP ^l g1.~}.n}.n}.vC a> Zi p5.e7.Zi pM Kd f7.g7.h7.i7.j7.h1.k7.!}.9w x_.^_.rv E[.AK ]s vo b- N N }& r `$ G ^# N O' `$ e h h 4* ", +"<{ <{ (}.9| <{ <{ R@ 2^ 9| ;b <{ <{ J$ ]^ G= #S 2^ I/ 0' I/ ]& I/ I/ 0' R@ ]& 0' 0' + # + 0' + 5_ + ]& # K$ 0' = 1) }, $ + V@ # Z, ' > . Dv > U@ . k) - + . S$ M$ # S$ . $= . $ U$ S$ Q$ $ |* & * > ; > > | ] H= & U$ ; %= ~ ; {c Q$ S$ . > N$ ~ . *# ~ ; & U$ Q$ ] R$ 2 { 5 d < N$ [ 2 ## ## | ) 1 $# 4 ] X@ 2 5 1 $# J] d 7 d ( d 6 ## d ## 3* a $# J] ,# q> } ~# 7 {# 0 !# [{ d 0 0 ,# 5 c L= 0 ~# c t' n L= h 0 L= p r {# r p n #| 2, Y$ % t 1; V| Z$ m t C C :# w F F= F= #] /U /U F= F= F= |Z 1Z z a7 n! '&._}..)Q +Z RT )Q Z .+Z )Q Z .RT RT R%.Z .9X AS 1@.R%.R%.3@.0&.#).d~.E` CX CX 4..E` +` E` .` 3Z 4..4Z z+.pY 25.#@.z@.5Z [#.m7.z@.pO +.jT OW z@.^W aX +.%` ^W ^W oW cX nW nW ^W ^W _W oW 9` gV ES ,X $ . > . [* # + $ S$ + V@ %= & 1* > = # + . J$ . = $ ; S$ & > V@ ; N$ & . - & N$ %= o! ' ; ; { | ) & N$ ] & Z! ^ ] ; = | ~ X@ [ / J) [ ) I= *# +# 2 ~ [ 6 d *# X@ ( d $# $# d e 6 / [{ 7 6 6 q> a 0 6 k {# k d 3* 7 K] 5` q> &# a 7 6 c a 0- ~# !# 3] k n W$ {# s> (# h n Y$ h h q n ;= p q 1; d<.4* &].m `$ t /# ^# 2; {& {& F w $S {& /U F= z..E $S p6.a7 z z @ .'&.a7 '&.1& 1& _}.z '&.8* c- a7 V 1& HV V V M c- T^ .@.5 ..@. V .@.(#.O B$.iU r! aV -*.iU SO I#.(U M7._#.I#.+-.+Z RT #N >$.Z .+Z )Q RT G&.RT +Z sZ 9X 1@.0$.R%.E` +@.+@.#)..` 0$.E` CX .` +` 9&.9&.9&.:=.y@.2Y DX Y$.)$.D.....2Y S%.!$.nW L#.0 .aX `$.pO pO OW 8 ._W cX cX uY cX oW ^W ^W cX cX bX gV &Z $+.@+.,S [T qP rP ,S pP = .GX hQ kV )K )K XL )K XL XO )K BH XL GX BH aJ BH KJ tL ;H ;H /I UF OA /I (I sL /I 'A |6.rs Kk rB Ow VA !i !i jf ~i ]A ]A }5 >k 9h A9 Mm Qd A9 Ri B7 A7 ^] -8 A7 H, M4 ,k 0h V: 0^ d/ C{ W: C{ C{ G~ G~ C{ F~ s[ d/ W{ G~ 8) I~ Y^ 7] *^ l] p* l- N) N) 8] X= [= N) z. z. z. m- z. z# z. A. M; #, F. D# D. n- m& }= I. F. N7.D. F. D. U6.o- O7.w4.N. 8% $4.w4.y4.y3.y3.y4.U6.C5.C5.$4.P7.34.Q1.Q1.C5.55.s6.Q1.34.E5.Q7.E3.R7.E5.t1.S7.S7.E3.T7.75.@5.75.U7.#6.54.@5.V7.75.85.64.85.85.85.z2.64.A4.y6.W7.85.X7.#5.f$ {).L- #5.{).&3.^; <: [@ [@ T1.2- X% p[.X% 3@ 9@ 0@ X% 3@ f$ l$ f$ l$ a@ ** y= 6J 6@ 3@ 6@ a@ 6@ 7@ %* F3.Y7.x7.R! >6.f+ ./ QS BU G4.l` IY !` lS TN lS xT 1L q+ m+ q+ m+ ({ ({ k+ G/ ;$ =; h+ n+ =; l+ u<.71.9!.G,.U{.y{.U].=O K!.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.h3.O2.k2.k2.j2.N2.s$.F1.b1.c1.a1.Rh (|.vX vX RH ^+.kA d _ .&[.{#.]@.,y Z7.`7.W5. 8.^6.B7./6.-7.:3.^6.A:.B[.t2..N g1.~}.n}.n}.a> ^l a> S& O6.of iP {}.;[.u2.~}..8.b[.{}.+8.H<.G<.x_.d[.!s . 0' = V@ [* o! $ # . . + R- S$ S$ |* A; [* V@ |* > . Q$ S$ V@ & # o! . Q$ ] > H= U$ U@ + R$ T- & R$ { N$ U@ ] T- Z! X@ ~ ] H= ~ .# X@ g{.Y@ ~ ~ /& < [ ( ( { I= } 2 <& X@ | 2 N$ [ [ 5 6 } 6 d } ( 7 $# ## 9 5 k a d q> 7 [{ D, a &# a 0 V) d b 9 $# ~# 0 a !# |& !# n |& c 0- |& h ]# 2, 1; h h % V| 1; ),._# % `$ p! h p :# :# :# t {& t D G s> F= {& z {& {& b' D F= /U '&.z z B z F= '&.a7 1& $T 1& T^ 2Z $T Z :}.JW V c- V V z _+..@.4>..@.4>.4>.4>.aV B$.iU AX :#.*I QT *I k#.oY k#.oY y+.RT RT ^P +Z +Z +Z RT ^P RT G&.1@.sZ +@.e-.Z .w@.#).hT 4..$).CX CX hT .` .` .` CX E` 9&.:=.a&.4Z 4Z `X ..` ./,.2Y Y$.B .rY 0R B .z@..+.pO nW aX 0 .%` DR uY %8.cX oW ^W nW ^W oW _W (W 'X bX ES a` rP hQ rP _P pP ^O zM kV kV KJ )K tP 'R {L ^O XL 'R )K jK XL lK OA BH bN OA ;v /I OA OA UF ^L )H /I 'A CG Kk Kk Jk Kk dt !i >k !i !i >k }5 Ri >k Ri A9 A9 A9 Ri {i A9 A9 Qd nj A9 w/ l8 C{ &8.0^ O3 W: C{ C{ C{ V{ t[ V{ V{ r) W{ G~ W{ `~ '{ s) `~ I~ m] *^ *^ W= {! `- W= j& z. z. *8.35.m- s. m- Z= A# z. X= z# D# C. C. F. C. m& m& F. m& F. F. 7% w4.8% =8.8% 8% 8% $4.-8.w4.U6.$4.C5.53.C5.$4.;8.;8.$4.C5.;8.Q1.34.;8.s6.y4.34.s6.>8.%4.,8.t6.F5.'8.75.@5.75.@5.)8.!8.)8.~8.)8.75.{8.]8.z2.64.64.64.64.&3.u7.W7.y6.85.64.3>.#5.L- ^; A4.3>.p[.2@ y= x= 6@ X% L- <: 9@ 2@ K- z6.8@ c$ 7@ 3@ 6@ f$ `% 5@ h$ a@ f$ 7@ ** GV `<.g$ 6@ g$ !{ ^8./8. }.^) +) *P k` L..xT xT TR ]G HB I* q+ I* j+ h+ l+ m+ h+ m+ ({ h+ (.@) r+ n+ n+ ;$ |^ (8.u<.9!.4^.z!.z!.(~._8.U5.~4.~4.~4.i4.:8.:8.h3.h3.h3.)3.)3.O2.k2.j2.=2.K1.s$.G1.b1.91.Rh Rh N}.RX *n Wk kA d Q .0#.<8.]#._d iu I%.[8.}8.4N |8.c7.c7.j6.-7.7<.18.7<.B[.~}.vC g1.^l 28.38.B[.48.^l H<.<|.o}.<|.o}.;[.iP G<.G<.iP <3.7<.58.68..3.78.9w d{.4S 88.1# S I C w F /# `$ % `$ ,! 9- p Y$ K= ", +"R@ R@ J$ 98.<{ <{ jP 8S ]^ G= #S <{ <{ R@ BN R@ #S L$ R@ #S |1 I/ I/ I/ G= 5_ I/ 0' 0' =[ # # ]& 5_ $ =[ L$ 0' V@ L$ 0' $ + + k) + # M$ 1) Q$ V@ ]& M$ + # [* $= V@ $ Q$ . . > S$ & A; > ]& $ - ' = U@ P$ = > ! Q$ o! > N$ . Q$ ^& !, o! ^ U@ U@ & ; > > ; R$ | | ; R$ | ~ Z! Z! ~ X@ ## ~ | X@ Z! [ ~ 7- ) , ) [ ## X@ *# 7- %# 6 *# ) 4 / $# 5 b $# < d 7 ># d ,# 7 0 b a i 6 b {# {# W$ a a a L= A~ L= 3* c z: {# W$ a' g k &].p n n c p 1; h b' p ,> ,> 1; t 2, L= 2, 1; `$ m n^ :# :# :# u F G {& C` z z..P<.z a7 a7 '&.'&.z '&.z '&.8$.a7 KW K F= n! c- AR 2Z V V V V .@.AR c- V 5 .4>.{[.v@.x .A: iU B$.:#.B$.(U *I oY *I oY yS YX oY .Z +Z ^P _M Z .Z .)Q ^P +Z R%.RT lP 1@.|@.0$.$N hT hT .` 0&.+@.CX CX E` 9&.E` CX 3Z .` f-.]&.:=.b&.4Z ~W l#.qY D..l#.5Z @` DR z@.B .;X rY DR vZ %` nW oW nW ^W oW _W cX ^W ^W mW 7Z WO t4.bX bX k !i a9 ~i Ri jf ]A a9 {i Qd a9 Qd nj Qd A9 Qd !1 We 0h C1 M4 w/ W: C{ r) V{ d/ d/ F~ G~ F~ C{ d/ l] '{ `~ '{ `~ f( m] l- ,{ l- W= 35.z> W= z. z. s. z. [= [= [= [= [= m- M; A# 3% n- F. C. o- F. C. D. F. F. C. N. r6.w4.7% q6.r6.8% V6.-8.r6.y3.;8.;8.C5.C5.;8.a8.;8.53.P7.;8.Q1.34.;8.34._7.Q1.b8.c8.S7.p7.34.d8.'8.E3.)8.75.e8.<7.<7.{8.|7.#6.{8.{8.)8.|7.<[.|7.|7.<[.*4.u7.85.|7.|7.&3.{).r1.L- A4.L- r1.y6.2@ p[.9@ x= C2.<: L- g$ T* x= 9@ U~ X% X, 03.3@ X% %* 8@ 5@ a@ 6@ 8@ $5.3@ 7@ a@ ** g$ f8.g8.h8.6| D6.G* I* qJ [$.~Z lS xT lS q+ h+ &$ h+ l+ |' l+ /) |^ l+ @) l+ I}.l; =, l; ;$ @) `/ (.u<.o].+[.y{.P'.L'.i8..4.h3.~4.~4.i4.~4.~4.h3.h3.O2.)3.O2.O2.k2.=2.=2.K1.F1.b1.]3.+I Rh (|.N}.RX ^+.dP R..Q .=f _ .]#.2x Cj j8.k8.l8.m8.h6.n8.o8.B7./6.B7.:3.p8.q8.7<.B[.u2.B[.n}.A:.m0 ^2.r8.^l n}.pM !}.{}.Y3.!}.H<.s8.8<.!}.m8.t8.#<.W}.;1.V}.u8.J<.+O v8.` @% x D t m w 4* ,! m t' ~# n r c ", +"R@ J$ J$ <{ ^, <{ 8S <{ <{ ]^ BN 9| 9| J$ jP V! <{ 0' G= V! <{ #S #S R@ J$ L$ <{ ]& J$ L$ # # ]& 0' X! # ]& L$ # # ]& J$ # . # + # o! > k) . > ]& & > (& $ . [* ; S$ > > $= & ' $ =' . | [* ' Q$ - ; . ; U) Q$ & | R$ ; R$ | .# | `@ - . ^ $ Q$ N$ | & & > ^& | Z! 2 | ~ ) - Z! ( | 8- 2 U$ 2 Z! ) *# < O$ { $# 2 , < x0 J= / 2 / / 6 6 *# 5 6 q> ,# / } 2 5 ,# e 0 6 6 7 ~# a a ,# e !# 0 8 6! K] ~# L= 0 K= K/ n p! ]# 2, h c % L= r E, 2, 1; 2, Y$ D % s> b' m b' t {& w8.G {& F= #] 2; z a7 /# C` A$.A$.z K z a7 a7 z z 1& a7 $T E AR AR a7 1& T^ .@.KW c- 4>.4>.4>. V =X 5 .5 ..@..@.x8.oY iU aV iU -*.-*.aV <_.*I *I qF c~._#.J~.^P ^P RT ^P Z .)Q )Q +Z +Z +Z bV -X {&.R%.+@.H&.+@.CX 0&.$).E` hT .` 9&.E` E` y@.4..G>.+` 4..:=.pY tM EX !*.B .7 ....z@.jT aX z@.%` L#.DR DR lU DR DR nW +..nW oW DR ^W oW %` sO KQ fV UT ,X PW &Z _P xY qP qP qP _P qP yM zM XL tP zM )K zM XL jK {L XL zM aN kK OA DH OA OA /I OA =u Wv ^L Pw ]E ]L rB Kk !v Kk CG if dt )v jf Ow *0 *0 Ri a9 Pd >k a9 a9 A9 Qd Qd -8 -8 }5 ad z7 V: P5 C1 w/ O3 O3 V{ d/ F~ F~ C1 V{ W' F~ F~ d/ 8) W= I~ G~ G~ I~ h' W= '{ l- H~ [= `- H~ N) z. z. N) z. [= m- z. _> m- [= y8.O) z8.F. F. A8.O) C. C. C. C. F. =8.w4.w4.U6.m& m& w4.w4.C5.r6.B8._7.P7.C5._7.C8.V6.$4.D8.;8.P7.34.s6.s6.,8.34.a8.56.$3.t1.T7.E8.p7.C3.G5.75.T7.'8.T7.'8.75.~8.75.75.{8.~8.64.|7.85.|7.|7.|7.85.|7.|7.|7.|7.|7.#5.#5.r1.v; A4.8@ C2.p[.j$ ,~.l$ l$ |@ 1@ C2.}Z f$ 2@ :1.9@ *3.7@ `% F8.3@ 04 ** 0q a@ Y% h$ ** h$ a@ b@ G8.H8.I8.J8.K8.b6.L8.)` VV }K lS /) 6> g+ k; >~ l+ l+ *, f= ;$ l; ;$ @) @) j_.;$ =, `/ @) 3(.i_.`/ t/.4^.V].z{.P'.W|.M8.Q3.TY ^q ~4.~4.~4.~4.h3.)3.)3.)3.O2.k2.=2.=2.=2.G1.01.N8.Yd (|.(|.N}.vX Wk -}.-}.e}.Vk tf y<.l+.< .O8.P8.Q8.R8.S8.^6.G|.|8.B7./6.-7./6.T8./6.s8.7<.B[.u2.n}.u2.pM n}.o}.n}.n}.H<.8<.H<.h1.o}.;[.H<.iP h1.;[.X3.Y3.%<.U8.V8.-1.v2.A[.W8.4# S z u :# w ]# p % C; h r o c *= ", +"<{ 2^ J$ <{ 9| J$ <{ 9| J$ R@ R@ L$ <{ J$ ]^ ]^ 9| #S R@ J$ BN I/ I/ I/ L$ 0' I/ 0' ]& 0' 0' # 0' + # + J$ # + = * # # [* # $ # ' $ + - $ . $ =' . # V@ & > . . V@ . H= > ; ' > > . o! U@ & . %= Q$ S$ %= - > S$ | 8- %= . . . P$ ~ - ; O$ ; ] %= & - & H= ] | X@ { { ; ] | | | U$ X@ ( < 2 | /& X@ 2 2 J= } } 6 : d 6 < 6- 3* d -# /& ( 6 5 /& ## 6 a 3] ,# 7 q> Y> 0 0 7 i 6! a L= 8 ,# z: a n n Y$ h c s> h ;= 2, h ,> Y$ ,> m ,> 4* p |& q p q /# b' 2; $S #] #] {& w {& w t z a7 E b' F= a7 W) t F= '&.z w .x .AX oY I#.5 .B$.B$.oY iU oY (U (U )Q yS qF ^P )Q )Q ^P Z .+Z +Z +Z Z .+Z Z .-X +Z |@.G&.|@.{&.d~.'*.$)..` .` E` E` .` .` +` ]&.4..E` pY y@.|Y a&.2Y 4Z z@.9 .2Y z@. +.TT 9 .jT jT vZ DR $ .jT pO nW DR ^W nW ^W nW oW ^W DR nW gQ UT H4 Z8.UT >R /P qP _P hQ _P pP _P [T {L {L )K )K )K zM {L HJ lK )K 'R Ik OA MQ OA sL NA wG =i OA OA UF Jk ]L 08.Jk ol CG Dm rs Kk `8.!v ml !i *0 Qd a9 9.A9 9h A9 b/ A9 Qd a9 Qd Qd nj }5 !1 F~ M4 O3 C{ C{ w/ O3 r) 0^ w/ V{ C{ C{ F~ V{ W{ W{ W{ V{ h' W' h' l- *^ l- m] j& z. l- l- s. s. s. z. z. [= z. s. y. ~~ [= X= F. C. C. }= O) F. F. }= D. m& .9.F. +9.r6.o- m& w4.w4.r6.o7.r6.w4.;8._7._7.P7.;8.s6.a8.34.s6.s6.s6.a8.s6.s6.s6.s6.34.@9.t7.#9.s6.S7.'8.X6.S7.'8.{8.E3.)8.75.)8.{8.75.)8.)8.$9.85.u7.&3.|7.|7.64.|7.85.85.$6.u7.#5.^; X% X% 9@ 8@ 2@ 8@ X% 8@ %9.|@ 3@ 62.8@ i$ h> X% l$ 3@ c$ 6@ GV GV l$ &9.r' f$ 6@ U* 94.8@ .& *9.21.=9.-9.;9.>9.b6.&$ *$ ,- ^) k; 6> s{ ,9.|^ 6| j_. (.n+ j+ ({ f= #F ;$ /) n+ j+ k! @) }} '9.)9.3(.l_.!9.~9.z!.l).x{. !.{9.:8.~4.~4.~4.~4.h3.h3.)3.O2.O2.]9.j2.F1.F1.G1.]3.n2.+I (|.(|.vX RX +z dP d /@._ .aK ]#.S+.hz ~%.^9./9.Q8.&;.(9.4N ^6.G|.B7.B7.j6.c7.c7.B7.:3.^2.B[.g1.g1.pM -7.:4.b[.b[.n}.a> ;[.U}.<|.h1._9.:9.g1.D[.<9.8<.z:.w_.So =1.o4.-1.d[.Z2.1( H A D z D Y$ p t n m (# ~# Z$ n ", +"98.9| J$ <{ 9| J$ <{ <{ *) R@ R@ jP #S J$ R@ R@ BN L$ I/ I/ L$ I/ 0' R@ R@ 5_ #S + + I/ 0' # % 0' p9 5_ K$ # + + # X! $ # * + $ . . # 1* L$ = = . > L$ > V@ =' & . . $ . # & S$ & ; ' Q$ ; > S$ H= ; . > > T@ R$ P$ U$ }* . > & ] & ] N$ | %= N$ W@ U@ ] A; 5- - ; ~ X@ N$ N$ X@ U$ ~ 2] T- W@ 4 *# { | => 2 2 ( => $# 5 `@.[ i 3* $# 7 ,# 6 -# $# ( a 6 J] 6 7 3] 6 $# 2* 6! ~# ,# tA 3* 0 0- B; ]c 0 0 0 0 h h s> K= h |& ,> h ]# ~# 0 L= t' 1; % h 0- 2, 4* q p 4* /# b' % w 1Z b' t t {& G G G C F= /U b' /# K . V .@. V 4>..).(#..@.v@.*I iU >*.(#.;*.*I (U I#.iU iU J[.[%.(U +-.RT RT +Z )Q RT )Q RT +Z +Z +Z 9X -X 9$.e-.H&.n;.0&.~&.0&.3@.AS hT CX E` .` .` aS 9&.hT 3Z y@.4Z ST tM #Z EX B .......z@.uZ pO z@.nP 0R DR aX pO 0R 5@.nW DR DR ^W oW ^W nW [9.FX >R 2M {O /W UT {O qP WO WO _P hQ iQ }9.hQ ^O HJ zM zM {L zM )K XL ER {L tL BH aN DH Wv NA =u Wv OA Wv Wv OA 'A Kk OA )H Kk eJ eJ rB 'A rs rs :I >k qs Ow Ri >k *0 }5 A9 A9 A9 a9 A9 Qd Qd B1 Qd ~1 |5 -8 C1 b9 r) w/ C{ C{ F~ r) V{ F~ F~ K! V{ F~ F~ W' 8) W{ X: G~ D{ L! s) p* W= s. j& H~ z> v. [= z. [= s. z. z. s. |9.s. B# A. }= J~ N7.m& }= C. }= F. 19.C. B8.=8..9..9.C. -8.8% 29.39.29.39.C5._7.s6.C5.;8.a8.s6.s6.34.s6.34.34.34.56.56.34.;8.P7.A3.t1.49.59.'8.59.R7.@5.R7.)8.75.~8.~8.69.79.{8.89.]8.|7.85.85.54.|7.&3.|7.85.%9.99.,~.i$ X% `% `% ,~.09.%9.9@ y= 2@ a9.2@ C2.z6.&3.j$ 3@ 3@ 2@ X, f$ 6@ 7@ l$ H3.Y% 8@ 1@ n$ h$ j$ y= a@ b9.c9.31.d9.e9. }.;6.e= >3. 7.l^ ;6.f9.g9.Q5.3(.k; 6> k! n+ HB HB HB HB h+ f= ;$ 3(. (.|^ l; /) Y{.3(.t/.0!.+[.z!.x{.x{.h9.m=.m=.~4.h3.h3.h3.h3.h3.O2.k2.F1.i9.=2.s$.B1.A1.j9.j%.(|.(|.XW ^+..S ~P q../@.&[.&[.m@.l+.S+.8*.:b k9.lh l9.m9.n9.i6.^6.n8.n8.B7./6.-7./6.18.Q4.t2.^2.^2.7<.s8.j6.o9..N ~}.p9.iP o}.s8.H<.0:.q9.r9.s9.k6.t9.8<.0:.u9.58.G<.C[.X3.v9.VY B1 S z I C {& D `$ 4* % r r ]# o r ", +"9| w9.], 9| <{ <{ <{ <{ I/.<{ ], 9| <{ L$ J$ 2^ 9| jP I/ G= 2^ I/ 0' ]& I/ I/ L$ L$ 0' 0' 0' # # ]& I/ 1) + 1) # # # = # # $ . $ * & Q$ + V@ # + 0' V@ > ]& > # . + # [* > V@ . ] S$ ; $= - o! > & > & > . > U$ ; S$ R$ U$ X@ 9S p9 ! > Q$ X@ ) S$ | R$ ^ Q$ ; ] *X Q$ W@ | 7- Q$ | [ X@ *# { 2 : [ ~ 2 N$ Z! N$ /& ~ 4 ( D, Z! 4 ,# Y> 6 [{ a ( *# } ( } } a a N' V) 7 a [{ 6! q> 6! 0 d 7 {# } tA 0 6! 0 ~# c s> 0- x9.c c{ n r p c Y$ ;= p 4* 4* h ~# q ,> _# Y$ b' Z$ 1Z % m ^# /# {& :# #] G w F= z F= /U F= G I a7 '&./U C a7 z '&.~& a7 H$ Q@ $T M G JW V Z 1& k1.U!.c- .@..@..@.z .4>. V .@. ` A: iU .).B..L oY B$.:#.p*..Z #N oY (U ^P _M +Z RT ^P `I +Z )Q +Z RT +Z sZ H&.'*.-X '*.0&.CX $).0&..` CX CX CX E` .` cQ 9&.4..a&.9&.pY 4Z !*.5Z l#.=S ...Y$.qY B .pO G` jT pO L#.DR ^W DR #V DR nW nW DR nW DR ]W $` ^W $` KQ !L IQ fV rO _P _P [T _P 2+.qP >N hQ hQ 'K {L y9.{L )K )K zM )K )K )K ;v KJ =u HJ >H NA Wv OA Wv Wv Wv z9.Kk UF Wv sy !v rB Jk ma Kk nl {H %0 if if 9h a9 a9 a9 a9 a9 }5 A9 Qd }5 A9 B7 l8 B7 V: V{ r) F~ w/ V{ w/ V{ O3 V{ V{ V{ W' l* F~ H, F~ h' b; H, W' A9.W' p* `~ l] (% B9.s. $~ (% [= s. z. z# <% s. z. s. |9.z. s. k& C9.D9.C9.C. A8.C. F. C. m& m& w4.r6.C. r6.m& o7.y4.w4.r6.E9.r6.C5._7.V6.D8.P7.;8.P7.C5.s6.Q1.s6.34.a8.Q7.Q7.F9.F9.c8.t1.S7.a8.W[.S7.S7.75.75.r7.75.75.G9.~8.~8.75.{8.)8.89.85.|7.H9.99.&3.|7.|7.&3.|7.I9.H3.&3.^; p[.^; x= 9@ 6@ H3.l$ X% 5@ a@ &* 04 8@ Y, (; l$ y] X% 8@ 2- 5@ `% h$ a@ .& GV #* e@ o$ w; 0@ J9.K9.L9.M9.N9.C6.O9.C6.P9.>6.Q9.D6.y7.R9.S9.T9.6| >~ I* g+ i_.l; l+ @) n+ g+ l+ |' 3(.3(.`/ a!.U9.$_.G,.$_. {.P'.V9.#'.W9.X9.F6.~4.~4.~4.)3.)3.h3.O2.k2.=2.Y9.F1.R$.TB #1.Z9.K=.{..N}.RX `9.kA e}./@.r$.]#.m@.l+.S+.^@. 0.fw lh Q8.l9.NY .0.+0.4N n8.|8.G|.-7.j6.-7.@0.Q4.^2.B[.B[.$:.#0.-7.$0.B[.n}.B[.u2.o9.iP !}.vS %0.:w &0.*0.=0.t8.-0.;0.:4.U}.<|.#<.a[.jA M4 K@ D G Z$ Y$ r }& t % r Z$ h o h ", +"<{ 9| 2^ 9| <{ I/.<{ l) .( J$ L$ *) 2^ ;b L$ 2^ jP R@ BN I/ J$ jP p9 I/ I/ I/ #S J$ R@ = I/ 0' 1) #S L$ ]& # + * + + + ]& $ # = . = # S$ [* Q$ > $= ]& # ^& $ ' V@ $ $ Q$ + ; P$ + > . Z, # . ; Q$ ; |* + > ; > *' > ] %= P$ R$ - . %= ] $= & ] ~ | 2 { N$ H= | W@ N$ 2 N$ | | | 2 N$ ) 2 xS | & Z! | 1 ## X@ { ( } 6- } 4 [ < ,# d } 7 ># 9 7 V~ *# d /& ## $# b ># 7 Y@ J] } a 3* ~# c ~# 6 ~# ~# L= n n 5` i s> r n n L= p n -) `$ n Y$ % 4* 2, n^ % % /# ,! `$ q t 4* 4* #] /# C )> w w F= 1Z F /U {& )> G F= C` F= F= 0.(=.'Q (U (U [_.[%.)Q {,.+Z RT +Z RT +Z +Z Z .bV 9X {&.|@._=.~&.'*.+@.w@.#)..` CX CX E` E` hT aS CX +` a&.|Y pY ` .CR a$.l#.5Z is 5Z CR DR +.{Q nP uZ DR nW ;X 0R pO DR DR >X oW nW /W ^W ^W cX vY &Z !L ~O qP ,0.pP &Z ES WO bR kV _P hQ qP 0N &J {L ^O yH HJ {L tP HJ uI tP lK AH tP OA NA 3M NA OA Wv =u /I sy sy Jk Kk '0.Jk Jk Jk dt jf jf %0 *0 *0 Qd }5 a9 }5 tl }5 a9 }5 A9 B7 }5 }5 14 A9 14 P5 F~ -0 B] F~ w/ F~ K! V{ r) F~ F~ C{ F~ V{ d/ W{ W' p* )' W' l- l* I~ ,) l- `- k& p* v. v. t. z. s. w. v. v. J~ m- X= v. O) z8.)0.19.C9.C. C. N7.m& C. !0.w4.O7.29.=8.C. O7.C8.r6.r6.29.29.r6..9.;8.P7.P7.s6.@9.34.a8.a8.s6.;8.s6.a8.a8.a8.a8.P7.c8.q7.b8.}7.}7.R7.)8.S7.S7.75.{8.75.~0.{8.)8.{8.{8.]8.&3.99.`% |7.99.$6.99.`% y6.C2.{0.,~.T1.X7.9@ L- ,~.9@ x= 9@ X% $5.7@ 6@ Y, 2@ X% 6@ ]0.`% a@ 04 `% h$ j$ 79.^0.6@ 0@ .& 5@ -* a@ /0.(0._0.:0.<0.[0.L3.}0.c6.{2 u] >~ G* >~ >~ c6.|0.10.k; |L t/.j( /) ;$ '] .] |' |^ t/.$_.3(.M3.20.(8.G,.+[.&_.|{.81._).30.x[.:8.~4.40.50.)3.O2.O2.k2.k2.=2.=2.s$.TB TB Rh (|.j%.V&.V&.RX f}.*}.=f o@.G%.]#.S+.l@.~#.!%.x&.60.70.80.90.zv 00.a0.K6.n8.G|.o8.^6.j6..N /6.Q4.Q4.Q4.v9.7<.b[.b[.b0.B[.B[.H<.s5.c0.g1.U}.]w d0.e0.f0.u2.a> g0.B[.g1.h0.Kb Oe 8<.i0.7Q j0.P@ D G m m ^# _# `$ (# _# h ,> n n ", +"9| *) 2^ <{ <{ <{ <{ <{ L$ <{ <{ 2^ G= ;b <{ J$ jP BN 9| #S R@ I/ 0' I/ ]^ ]^ L$ 0' I/ 0' I/ 0' # ]& I/ 0' + X! * # ]& + . = ]& + + [* [* . . . V@ . $ L$ # $ = # . & o! [* ; S$ > $ Q$ + 0' . ; $ S$ U$ | . S$ %= ; =' | ] H= | Q$ H= & W@ ] - Q$ ; ] N$ ] N$ N$ ] R$ %= N$ ! | N$ { { Z@ | N$ 4 N$ T- { X@ } { { ~ X@ 2 I= X@ Y@ { d 6 9 } 6 Y> m*.( X@ 1 d ,# k ( e $# 6 6! 3] ,# a 5 ,# 3] 3* a 0 a' |& a ;= L= 9- h h k0.x9.]# r -) p h r Y$ n^ p Y$ L= n^ 1; m t m t q ^# t w F= {& F )> 1; /# m b' D $S 1; z ^# F= z '&.#] A$.a7 z '&.n! T^ Z '&.a7 H$ c- M V Z 2Z )^. V T^ I[.c- JW Z..4>.P,..@.B..oY B$.Z..-*.B$.-*.B$.-*.iU oY +-.(U zS M7.)Q K-.+Z RT ^P 9$.)Q +Z RT bV lP H&.<#.G&.hT ~&.D` +@.2@.CX E` E` 4...` E` E` aS x@.E` 4Z |Y ` .4Z tM pY EX ^&.qY 5Z +.DR B .;X 0R pO DR 0R 0R DR ^W pO 0R 0R cX nW nW DR oW fV VT VT ~O eS /P {O {O hQ uM qP qP hQ qP WO HJ {L l0.xM tP {L kK kK HJ OK lK kK wG HJ wG NA =u OA NA BH Wv NA Jk m0.Kk sy Jk ,A rB ma jf qs qg %0 %0 a9 oa }5 a9 *0 A9 }5 A9 }5 Qd A9 }5 b/ 14 z7 |5 l8 V{ F~ F~ V{ F~ V{ r) r) r) F~ W' F~ l* W' H, ,) W' W{ D{ W' (% W= '{ )' p* `- `- W= `- z. z. s. s. B# s. s. |9.s. z. k& }= n0.o0.19.p0.C. F. m& C. C. C# o7.r6.29.r6.-8.+9.8% r6.8% V~.29.29.q0.-8.P7.P7.D8.@9.s6.@9.P7.;8.34.a8.a8.s6.@9.@9.r0.s0.75.56.X6.t0.'8.75.75.'8.u0.)8.u0.v0.)8.89.{8.$5.$5.8@ &3.&3.|7.85.&3.y6.,~.9@ H3.]8.8@ x= ^; 8@ ^; x= 3@ 1@ T* 2@ 6@ 8@ #* ** 7@ o, a@ 1@ H3.6@ h$ ** ** ,~.#* 5@ 2- w0.$* ,* m$ =* x0.y0.z0.g8.A0.B0.C0.c6.C6.{2 c6.S9.D0.E0.G* @! F0.F0.G0.|^ {2 H0.(8.|^ Y{.H0.s{ 3(.3(.10.t/.+[.M3.I0.J0.z{.o~._).#'._).K0.L0.6~.~4.h3.TY M0.)3.O2.O2.j2.=2.F1.TB 2S H%.(|.N}.j..c zc Y_.N0.O0.P0.Q0.1N 6!.R0.h6.i6.4N K6.^6./6.m4.-7.S0.T0.-7.$:.t2.H<.#<.p9.B[.B[.;[.'7.U0.vC n}.!}.:e u2.g1.u2.Q& iP .N V0.k7.#f k7.$<.W0.Ro .}.O x |{ Z$ G ^# `$ Z$ r C; 9- D n g ", +"<{ <{ <{ ]^ J$ <{ <{ <{ J$ <{ 8S <{ BN <{ R@ <{ jP L$ <{ jP G= I/ 0' 0' I/ R@ =[ 5_ 0' 0' I/ [n # K$ $ X! = # # 0' 5_ + V@ 0' $ }, + $= 1) ]& # * . $= `Y $ = & 0' . # U@ *' P$ & & ] . P$ S$ $ > U@ $ = . P$ > $ ; Z, . S$ R$ U@ N$ ^ Q$ & ] ~ | ~ T- X@ R$ U$ | Z! | $= ; 2 ] U@ ; N$ H= 2] X@ X@ X@ 8- ~ 1 H= 5 $# *# { { ~ } [ | == Y@ V~ ( } e q> 1 ## } 5 d d X0.a a Y> 5 q> e ~# } 3* 6! a d 0 W$ {# L= L= n n Y0.0- e r }& A~ L= c n^ L= Y$ s> 1; q q n^ L= p `$ ,> t /# p p m C D /# w :# )> 2; {& F= D F F= /U 2; B a7 P<./U a7 a7 z '&.T^ @= A$.8* AR JW c- M c- 1& ;O P%.5 .z :}.3# c- 3# V (#.t%.4>.*I B$.AX E].:#.;*.-*.U;.;*.iU yS (U k#.M7.)Q )Q RT +Z G&.+Z lP +@.RT +Z H&.sZ {&.sZ sZ hT AS $N {&./!.9X hT E` E` E` 4..+` 4..3Z 9&..` pY <=.qY ` .Y$.5Z 4Z N/.$ .IQ ;X jT pO pO jT 0R 0R pO fV pO pO >X pO nW vZ /W nW gK sO >R aR oW fV ES hQ uM /P !L hQ ]I qP hQ ER 'K &J kK jK yH &J {L &J yH NK )K Wv HJ =u =u =u BH NA NA Wv =u rB Dm Kk rB Kk sy CG Jk jf jf dt mj jf b/ o[ a9 a9 jf *0 tl a9 A9 a9 a9 b/ b/ O5 I0 !1 }| r) C{ ;/ r) F~ C{ C{ F~ F~ F~ H, W{ r) r) l* b; H, H, ,) h' W= n* D{ D{ K; Z0.v. (% (% X= v. s. z. X= X= z. y8.z. z. w. E. C# m& C. C# m& 19.19.F. C. 19.19.O7.r6.29.r6.!0.C8.29.r6.-8.C8.29.;8.w4.;8.;8.;8.@9.a8.34.`0.P7.34.s6.s6.a8.s6.56. a..a.'8.75. a.q7.59.'8.)8.e8.r7.69.R7.+a.&3.75.)8.~8.89.]8.|7.&3.|7.&3.04 I9.]8.7@ 79.`% #* ** 8@ Y, 6@ f$ X% 9@ 7@ ]0.Y% `% 5@ w; 6@ 3@ 8@ `<.l$ 2- }Z a@ @a.a@ .& =* o$ $* 7@ ** o$ 0@ #a.$a.%a.g8.&a.A0.*a.{2 C6.6| 6| b6.S9.c6.c6.^) ]/ =a.}0.u] -a.;a.s{ `/ >a.,a.I}.l; 3(.'a.=a.V].z{.)a.l_.o~.o~.#'.#'.k].!a.~a.6~.~4.h3.^q {a.O2.j2.k2.=2.R$.A1.TB K=.j9.(|.vX RX Bd W` R../@.4G m@.]a.U@.0k ~#.>c !%.~%.3$.^a./a.(a._a.:a. n}.]7.{}.h1.<|.U}.3a.O(.x:.4a.` I w I 2; ,> W$ `$ h m 0 h c c ", +"w9.<{ <{ 9| 2^ 9| jP <{ <{ <{ ;b <{ jP L$ <{ <{ ;b L$ R@ BN G= G= L$ 0' 0' G= 5_ 0' L$ R@ jP I/ ]& V@ K$ X! p9 I/ # # 0' + $ pH 5a.# > . V@ # > . # > [* + $ S$ > $ $ > X! ' ; > . $ ' Z, & ; - ; . Q$ |* - > - - > N$ - ; . > ; ' . ; (& ; H= S$ 7- Z! Q$ ] N$ ; | 2 ; ; N$ P$ { ^ I= { N$ 2 4 { > => { X@ ( ~ | 7- X@ X@ } N$ : ( /& Y@ 7 d ,# } 7 V~ 9 k k a' a 6 6 5 v5.3* 7 3] a e D, 0 a k k e a [& n a' Y$ c -) n p }& 0- h r h e 1; b' 1; 1; 1; 1; 4* 1; t p 4* D /# @= /# $S $S |Z 2; F= w z /U F= 2, 1Z /U '&./U a7 a7 z z $T 1& P%.1& O@ Z M c- V Z T^ T^ c- c- V z . V .@.5 .4>.I~.)^.iU YX B..`5.B$.-*.B$.iU W!.;*.k#.#N BX +).+-.^P )Q +Z a/.+Z RT H&.+Z RT Z .sZ 0$.sZ Z .{&.+@.0$.jU $).D` 9&.CX 3@.hT hT +` y@.E` .` ]&.ST 4Z 6a.2Y [#.A+.l#.B .qY kT 6N 9 .L#.L#.0R 0R DR DR LV pO nW $Z OW mU eS KQ ~O 7a.IQ >R {O IQ FX uM qP uM qP qP /P HJ /P hQ ^O )K &J yH 9C ^I xM HJ yH {L HJ kK 8a.Wv Cx Wv Wv OA Qq NA OA Wv Kw Wv Jk ty )i ol ,A Jk ma ma `8.Od !i ,2 K9 a9 b/ a9 }5 A9 A9 }5 }5 a9 a9 Qd z7 !1 !1 P5 ,k 0^ h. B] C1 r) r) r) F~ 0^ H, W' r) F~ W' V{ b; W' ,{ p* K; )' (% W' (> (% t. z> 5~ w. [= s. t. v. _> s. |9.s. s. _> y. }% 19.C. 9a.o0.z8.m& C. m& 9a.m& !0.w4.29.29.)0.!0.0a.29.;8.29.29.29.29.V6.;8.D8.a8.a8.C5.aa._7.C5.a8.s6.Q7.ba.b8.ca.d8.d8.75.da..a.59.59.@5.)8.{8.)8.R7.K5.|7.{8.69.l~.89.{8.&3.99.&3.]8.99.u0.`% ** `% X% ** 8@ 1@ i$ h$ v; *3.`% 5@ (; 5@ 5@ X% `% 6@ 3@ $* w; 6@ o$ Z% r' %* a@ a@ 9@ >* 0@ 6@ .& =* ea.fa.ga.ha.ia.37.ja.ka.la.D0. }.;6.;6.;6.C6.R9.ma.}0.na.10.>4.oa.f= k+ @! H}.Q5.j( I}. (.I}.pa.G,.y{.I0.qa.EK W:.G}.#'.q/.ra.6~.X9.:8.~4.sa.e{.h'.j2.j2.ta.ua.va.:` [i : .: .dr Wk -U R..=f Vk tf y<.^@.l@.~#.o%.!%.tb Y_.+l 3|.wa.xa._a.:a.ya.+0.[a.K6.G|.B7.18./6.q8.G|.S0.za./2.Aa.ou tv ^y Y'.,}.Ba.s8..N iP vC vC ;[.;[.k7.LP Ca.+8.7<.-1.Y3.V0.U}.U}.Da.=1.l}.Ea.LW P@ N :# 4* p f f h r Z$ n e r ", +"*) 9| ;b <{ J$ 9| 9| <{ ], 2^ 9| <{ 9| ]^ ]^ <{ L$ BN R@ jP J$ I/ ]& I/ L$ 9| I/ I/ I/ BN L$ 0' 0' Z, # $ 0' I/ # # # # + # $ + + = + = . > * > > # 0' . + . $ V@ > [* S$ S$ T@ + S$ U@ > $ # ^& > N$ & Q$ * > ; * Q$ . U@ ; & ; [* N$ ; > ; ; T- R$ ~ N$ ) | 8- ~ ) | U$ N$ ~ 2 N$ ) J) R$ 2 ~ ## 2 | 5 : } 2 [ 7- 4 { 5 } 7- 7 Y> M' i ># 7 } < [ Y> ,# k 0 V$ k ,# a 8x z: ,# 6! k ,# ( 0 j A~ 0 n !# |& e 6! ;= ~# }& ~# L= p p ;= -) Y$ L= ,> ,> n h G#.4* t m @= D 4* 1; C /# b' *].y b' m u 4* w $S F= m /# /U #.'&.F= a7 z .4>.{[.(#..@.o*.;*.-*.I-.;*.B$.>*.-*.-*.-*.(=.#N #N (=.)Q RT )Q )Q RT )Q )Q +Z +Z )Q +Z G&.G&.1@.RT e-.+@.q*.AS hT CX J#..` .` CX .` .` y@.E` /!.+` ST pY 2Y tM %@.CR qY l#.Y$.&@.nP G` z@.jT 0R 0R 0R pO pO nW nW nW nP DR DR FX nW fV UT rO UT >R /W /P WO mT qP WO WO rI !L }9.}9.iQ )K kK &J {L {L )K )K yH HJ HJ kK Wv Cx Wv NA Wv Wv NA OA =u NA NA (I 'A ma lj ll rB Jk ma ma qs if nl Kk oa }5 A9 }5 }5 }5 a9 A9 a9 }5 a9 B1 O5 O5 r) r) V{ ^> O3 F~ r) r) r) F~ r) r) r) r) V{ B] F~ U= W' W' h' K; ,{ (% H, ,) W= [% z. (% (% s. s. v. v. v. s. v. v. y8.y8.v. B# p0.m& N7.C. 19.19.}= m& C. C. C. +9.29.C8.m& q0.q0.w4.V~.P7.29.V~.C8.29.V~.V~.P7.@9.D8.@9.@9.P7.s6.b8. a.Fa.b8.b8.a8.Fa.89.G9.@9.59.'8.{8.)8.89.89.)8.Ga.89.89.{8.#6.I9.H9.~8.|7.85.Ha.`% `% |7.&3.8@ 9@ 04 6@ T* y6.C2.8@ 9@ 8@ T* 8@ y] l$ 7@ a@ 94.a9.-* a@ a@ Ia.$* y= 0@ h$ .& ** ** l~.o$ ;* .& Ja.Ka.La.Ma.*a.Na.e9.P5.;4.}0. }.L3.R9.37.Oa.,5.Pa.Qa.Ra.Ra.6| M{ @) @) Sa./) Q5.Ta.U; 3(.Y{.20.e4.z!.z!.2(.b'.s/.Ua.#'.Va.Wa.X9.5[.Xa.~4.^q O2.O2.j2.=2.ta.va.E*.Zg [i {..j..(d dP R..=f _ ..s ]a.l@.~#.@$.>c !%.Ke :b $(.=d Ya.(a.Za.Za.:a.`a. b.a0.[a.i6.^6.G|./6./2.-7.j6..N :3.Y'.ou ^y ]n .<.C<..<..b.^2.b[.b[.!}.!}.H<.H<.+b.@b.7<.$<.^_.0:.,[.Da.8<.0:.^_.n6.w` #b.z N ^# /# Z$ vA ^# `$ ,> e $b.,# n ", +"9| ^, |1 jP <{ 2^ <{ <{ J$ J$ l) J$ <{ ], J$ 2^ L$ 2^ <{ J$ L$ I/ ]& L$ I/ ;b I/ I/ 0' 0' I/ 0' 0' Dv # # I/ #S + # # # % # p9 = K$ # & $ + * . $ $= # p9 0' & $= ' > - # # > $ # P$ P$ ; |* T@ O$ ; S$ H= %= U$ & > ; > $ ^& - H= U@ |* & ' ^ ~ N$ ~ ; * %= & & 7- { 2 N$ ) ^ N$ Q$ | [ J) X@ 2 X@ X@ W@ *# => 2 2 { +# 7- 5 2 $# / <& ,# 6 M' 6 9 Y> 3* [ 6 ,# $# d d k } ,# 3* 6 ,# d Y> d [{ ~# e 6 ~# ~# L= a c i d L= 0 ~# n h h Y$ -) ]# Y$ Y$ r n^ % % m ,> #| `$ p /# D t t )> t 2; {& t b' E z F= C /U F= ^# /# *].P<.F= /U z a7 A$.1& $T 1& M 1& '&.AR V T^ 2Z V M c- V 4>..@. V c- QT HV >z x .B$.aV (#.:#.B$.B$.-*.B$.-*.k#.yS G$ k#.BX ^P )Q )Q RT ,*.+Z +Z RT )Q Z .RT G&.+@.H&.sZ e-.7` ~&.CX E` AS CX CX hT .` J#.|Y y@.E` +` y@.4Z |Y D..EX D..5Z ` .#Z CR &@.6N B .$Z nP DR 0R 0R pO 0R >X FX pO ^W nW nW nW nW FX /W 2M UT /W WO 2M /P uM /P /P !L WO rL uM qP jK VL &J >N yH ]I HJ yH yH NK yH =u =i OA Qq NA /I Qq uI Qq Wv OA (I Wv (I Jk rB Kk Kk ll J9 &0 nl ;k rs %0 }5 }5 }5 A9 o[ a9 A9 a9 a9 a9 B1 !1 O5 V: B] K! B] F~ 0^ r) r) h. K! V{ F~ H, F~ V{ H, F~ s) W' W{ `~ b; H, (> p* b; (% (% l& <% (% [% v. t. z. s. v. v. v. y. v. x# s. |9.%b.%b.9a.C. )0.19.m& m& 19.m& m& q0.r6.m& 39.29.29.C8.-8.39.V~.&b.39.C8.*b.39.D8.b8.a8.b8.D8.34.a8.=b.a8.b8.@9.b8.-b.;b.v0.@9.s0.{8.u0.89.)8.79.75.89.{8.]8.{8.89.$5.89.75.&3.{8.8@ I9.&3.H9.&3.04 9@ 7@ a@ H3.v; ,~.04 9@ 2@ 8@ 6@ 04 &* a@ o$ l$ m$ w; y= 7@ o$ '* ;* 0@ >b.#* -* a@ n$ h$ X% h$ ,b.'b.)b.d9.e9.!b.x7.~b.{b.b6.b6.c6.;6.{b.]b.O9.^b.L3./b.|0.6| 7.m+ l+ /b.>4.R9.(b.U; l+ j_.'9.>a.y{.X)._b.:b.81.:b.)4.+.p@.@$.4$.7f !%.Ac :b !=.1b._g 2b.Za.3b.4b.5b.X>.6b.7b.[a.i6.i6.n8.B7./2.8b.9b.:3.6b.y:.^y ^y ^y [x vj y:.`H `2.$:.]7.!}.G<.#<.G<.z:.|5.s8.$:.0:.D[.o4.D[.8<.^2.,[.0b.Q!.ab.S {& D m ,> r 1; :# h a a' ~# V$ ", +"z~ *) <{ $8.9| 2^ <{ J$ <{ 9| <{ J$ <{ J$ L$ R@ ;b 2^ 2^ 2^ BN L$ I/ I/ I/ 0' ]& I/ 0' L$ I/ 0' 0' 0' + # 5_ p9 L$ $ + ]& + # p9 0' L$ ]& $ $ + $ ' > # & > ]& ' & $= $= 1* $ [* %= - U@ P$ ; [* . $ N$ > S$ $ ^& $ %= O$ N$ ; o! Z3 & ; > | N$ N$ ~ U$ *' +|.] N$ | { ~ Z! ; 2 N$ N$ | /& N$ R$ U$ N$ *# / Y@ X@ ~ U@ 7- ~ { | 1 { ~ 5 a [ <& 6 < d d &# d 3* 2 D, ( [{ q> V~ $# 7 ,# 3] a k e W$ J] 3] !# K/ 0 2* 0 tA ~# ]# !# a L= L= -) p n {# h L= h p 2, ,> ,> b' `! Y$ m t t m '> bb.,! q D b' t {& {& m E G F= E /U $S w z z a7 '&.a7 '&./U 8$.cb.a7 A A n! ,/.AR c- Z M V .@.c- .@. V .@..@. V y .0S _+.x .B$.MW -*.aV *I iU iU -*.B$.(U BX zS l1.yS #N RT RT K-.a/.+Z RT +Z +Z +Z sZ H&.lP 1@.R%.|@.AS hT #).1@.CX hT .` .` hT 4..3Z 9&..` +` 3Z |Y ST ^&.@Z 2Y ~W ~W [#.CR @` pO L#.L#.0R eV pO DR DR pO LV DR DR DR 0R DR pO oP eS IQ rO db.LV >S sO 2M 2M /P /P uM rI yH WO WO yM HJ ^I >N 'K PK )K ~I ]I ]I -H ;v Cx NA wG NA =u NA NA NA uI ;v NA Wv =A ml Kk qs hf hf ma &0 qs ol jf mj *0 o[ }5 b/ b/ a9 }5 b/ b/ }5 B7 }| O5 z7 O3 0^ 0^ 0^ w/ r) h. K! F~ F~ K! F~ r) F~ g& F~ || W' H, H, V= V= V= o. H, p* (% eb.s. t. <% 35.z. s. s. t. 1% 1% y. w. s. w. _> fb.)0.o0.9a.C9.p0.9a.gb.19.m& 19.O7.0a.q0.29.O7.0a.0a.C8.39.29.V6.-8.V6.V6.hb.;8.@9.@9.a8.@9.P7._7.D8.@9.s6.b8.b8.b8.-b.59.ib.-b.jb.kb.v0.69.59.69.{8.da.lb.]8.79.89.89.{8.Ia.Ia.99.89.8@ `% `% Y, 9@ `% Ia.6@ 9@ ^; ,~.X% y= 04 5@ h$ o$ I9.H3.Ia.C2.a@ 1@ o$ ** `% Q9 8@ g@ =* 0@ w; m$ m$ Ia.h$ 34 mb.H8.nb.B0.Qa.;6.ob.~b.6| c6.pb.qb.l^ rb.na.b6.6| pb.b6.6| g+ ;$ `/ (8.Ra.}} f= ra sb.`/ M3.V_.I0.o~.u[.-4.Y:.V9.u/.tb.ub.K!.X9.5[.^q )3.vb.}b.|~.G1.wb.xb.U` t` YQ dr ZM -}.mk P}.,g >+.l+.0k o%.o%.,c Ac ~%.yb.!=.zb.ac Ab.xa.xW Bb.Cb.Db.Eb.*7.a0.4N h6.i6.m8.$m Fb.Gb.Hb.z[.x:.vj 2G vj wv wv vj vj S8.B[.;[..N o}.;[.;[.Ib.28.^2./2.A:.,[.=1.Jb.Kb.#<.Lb.Mb.Nl XP A G w :# p Z$ h p s> g c K= c ", +"*) z~ 9| 9| 9| 2^ <{ L$ <{ <{ <{ jP ;b R@ ]^ <{ (}.J$ R@ I/ I/ 0' 0' L$ I/ 0' L$ BN L$ R@ 0' ]& I/ I/ = # + 0' 0' * # + = # + = ]& # + [* * * $= # Q$ S$ S$ = =' > > . }* T@ . . $= 1* V@ + Q$ & $ - |* & Q$ |* > . U@ - P$ U@ & Q$ . N$ T- & = - %= H= Q$ X@ ~ %= | { 4 X@ ] N$ 2 | 2 { | 2 { *# d / 2 2 ~ %= X@ [ [ 2 | X@ *# Y@ d 6 <& ~ d i Y@ a Y> 9 d 9 } d a ># 7 a m*.8 0 k a 8x tA q> L= 2* ~# L= |& 6! K/ !# L= 0- h n ;= n {# }& Y$ 1; r 2, ),.`$ 1; h l _# b' G#.b' % ^# D w q Y$ % F= E )> w {& F= D /U t :# B F= z a7 F= z a7 '&.P<.8$.,/.JW O@ AR Z m;. V c- V V V .@.4>. Z .@.c- .@.5 ..@..).:#.A: -*.iU *I *I aV oY I#.oY (U yS XX F>.^P #N Z .RT RT RT RT ^P )Q ^P Z .G&.9X 1@.+@.H&.2@.2@.CX 0&.+@.CX hT hT CX hT 4..]&.E` +` ]&.|Y |Y ` .2Y [#.z+.CR [#.qY Nb.uZ jT `..0R DR 6N 0R pO pO nW DR pO %` LV pO DR DR ^W /W FX UT UT IQ fV /P /P WO uM >R /P 'K 'K WO }9.9C ^I ]I >N yH kK NK yH xM wG PK =u =u -u =u Qq =u NA =i wG OA =u zH /I z9.Dm mj Jk hf hf %0 qg 'i %0 ,2 na }5 }5 b/ }5 }5 b/ b/ a9 na ~1 4~ }| }5 B1 0^ 0^ 0^ w/ w/ r) K! K! l* r) 0^ F~ l* W' V: C{ F~ g& H, s) 8) l* K; p* n* p* (% v. v. [% u. l& v. v. s. u. t. y# v. t. v. }% }% n0.C9.p0.19.19.m& p0.19.19.19.B8.Ob.29.39.O7.q0.0a.0a.29.29.D8.P7.$4.D8.Pb.`0.@9.D8.@9.b8.D8.&b.P7.@9.Q7.=b.b8.=b.=b.49.49.Qb.;b.R7.W[.kb.j$ 59.{8.94.h$ 89.5@ 79.99.`% ^0.&3.l~.Rb.~0.Y, a@ i$ l$ 04 6@ 9@ Sb.U~ j$ I9.** 99.$5.6@ ;* Rb.** h$ X* X* l$ /M o$ a@ h$ 0@ .& ** o$ ;* -* .& X* 0@ As Tb.`6.*a.ja.Ub.{b.oa.Vb.>~ C6.Wb.b6.6| >~ C6.D6.6| c6.S9. }.(8.>6.@) Xb.Yb.20.3(.Sa.Zb.J0.H}.L3.C(.z!.W|.A(.`b.(<. c.c}..c.U5.K!.F6.F6.)3.vb.Q2.+c.@c.#c.]2.[i : .dr i..{2.Y+.SZ .s l+.:d ]@.^@.o%.Ac Ke :b a(. :.'c xh td $c.(a.%c.3b.5b.W@.&c.*c.=c.-c.h6.a0.4N ;c.>c.,c.'c.)c.8:.xN 2<.7/.2G eE x:.!c.b0.~}.]_.H<.8<..N iP ~c.{c.48.]c.p3.=1.O(.rv f(.w_.0:.^c.kM /c.I C m Z$ p ^# Y$ C; }& *= h c g ", +"<{ 2! 9| 9| <{ 9| ], J$ I/.<{ <{ I/.(c.l) ]^ 2^ ]& J$ 9| J$ 2^ 2^ I/ G= L$ 0' 0' BN R@ 0' 0' G= I/ 0' 0' + # X! 0' V@ K$ # + # * L$ + ]& + [* ' # . $ o! ' S$ ]& ]& ]& # . $ - + $ . S$ & # . & > T@ - }* . Q$ ; Z, Q$ U@ . - %= > & Q$ $ > o! & Z3 ~ ^ ~ | ] N$ ~ /& | | %# /& ~ | X@ Z! X@ 2 P$ { & ~ X@ } ) Z! [ } 2 [ 2 2 *# [ } <& => Y@ d $# V~ Y> ,# 7 3* 6 a 8 b 7 a k q> 6! 0 6 d {# 0 0 0 _c.6! L= {# W$ 0 E, c ]# s> 2, h {# t' c{ L= p p s> Y$ q ,> n^ p #| b' G#.@= @= D 4* 1; D 1Z ^# C C w w E $S f^ F= /# 2; F= F= a7 F= z '&.C` '&.'&.AR AR H$ $T $T !,.c- c- M V c- V .@.=X V V V x . V v@.4>.Z..SO AX (U oY aV A: oY *I aV k#.RT k#.+-.BX lP RT +Z Z .+Z RT RT RT RT bV 9X D` 0&.G&.e-.7` hT '*.7` AS hT CX .` hT .` 3Z 3Z 4..+` y@.]&.ST `X CR pY qY qY ~W 5Z +.0R &@.0R 0R 0R DR pO pO 0R nW nW nP :c.nP pO FX nW oW nW mU &Z mU vY VT WO /P /P WO qP aR >N /P }9.tI HJ HJ LQ ]I &J ]I Ik yH {I zH 8a.NA uI =u =u =u =u =u NA NA 8a.Wv NA ]E Kk lj Jk ma ma %0 qs ml if &0 ,2 o[ o[ b/ }5 b/ b/ }5 H^ b/ b/ k] 0^ B] /} B] c ,c Z_..$.0(.fc.xh gc.td hc.2b.ic.Bb.TH jc.kc.87.lc.mc.a0.*7.nc.[a.B7.}8.j}.9[.x:.xN (3.i}.eE ~F 8:.oc.pc.`] H|.8<.0:.H<.^_.qc.W5.z:.]_.0:.=1.-1. Q$ + k) ; V@ = ]& |* . $ # V@ Q$ + 1* > |* = & ' ; |* > & Q$ > . Q$ & U@ . > o! 5- ~ . ^ Z! & U@ & Q$ X@ ; N$ # ] N$ ) N$ 4 ] J) [ 2 4 } ~ /& 2 ] { | 1 [ xS *# J= ( ## { } $# /& ( 4 [ [ Y@ 6 ~ Y> 2d 6 6 6 } } ,# ,# 6 ,# k 3* D, 6 N' ,# k 6! e |& {# {# z: ~# c ~# a ~# L= n e 0- A~ h s> n -) y2 `$ `$ `$ #| Y$ ,> 4* V| q s> $] 5* @= :# |Z t G :# w /U $S $S q a7 w a7 z F= a7 $.+Z 9$.<#.Z .H&.|@.H&.AS hT +@.'*.AS .` E` AS .` .` aS aS E` +` +` 4..|Y %@.qY pY #Z 5Z tM D..&@.0R uZ 0R kT pO uZ 0R #V 0R pO pO pO pO OW LV IQ mU pO FX mU sO KQ nW WT WO WO /P >R /P /P rI WO WO !L 9C yH 4C ]I HJ ]I NK wG {L NK wG ;v -H -H Qq =i NA =i =u =u =u (I NA sc.hf Yf J9 ma ll Ve %0 J9 3e %0 &0 a9 o[ H^ b/ na b/ b/ o[ }5 }5 -8 k] |4 z9 }| h. h. x! B{ K! r) B] h. r) r) K! l* l* K! H, g& l* W' x! s) l* tc.i& n* uc.(% n* (% r. y> y> v. v. t. t. y# v. v. v. q* u. |% fb.vc.x. fb.wc.gb.19.gb.19.19.9a.xc.C8.0a.0a.}c.xc.0a.39.xc.C8.yc.P7.zc.`0.V~._7.a8.P7.b8.&b.D8.b8.@9.b8.b8.b8.=b.Qb.Fa.e8.Ac.Bc.Cc.I3.e8.89.69.69.u0.$5.89.]8.Ga.99.79.99.h$ 6@ 6@ 06.lb.$5.8@ &3.y= 5@ ** 79.a@ `% `% a@ l$ $5.y] o$ Z% ** Rb.$* 6@ Y% a@ o$ .& =* n$ o$ e@ .& o$ )* Y% =* A= Dc.Ec.Fc.!b.6| Gc.Hc.}0.>~ e= 6| 6| ]/ R5.D6.>~ C6.C6.C6.g9.C6.Q, Ic.Jc.10.,9.10.g9.Kc.^b.q].u[.[].|/.'5.'5.b'.Z^.5(.tb.ac.Lc.X9.i4.:8.j^.j^.Mc.Nc.Oc.E*.Zg M0.YQ (d Q..{2.4G $$.VW x#.^@.~#.fw Pc.tb ~%.:b !=.zb.Qc.Rc.vh kH Sc.Tc.Uc.7T cI ^Z q>.Vc.Wc.}a.R0.Xc.Yc.>[.o5.Zc.h6.`c.8:.xN +:.R!.P*.P*.2G }a.51. d..d..N ^2.G<.!}.o}.b[.3a.%:.+d.o0 '[.@d. 3.9w o4.#d.+K $d.K@ G F= % t `$ Y$ p n 2* 2* g c ", +"], ^, 9| 9| <{ <{ *) 2^ <{ 8S <{ 9| <{ =$.jP 2^ R@ <{ I/.jP J$ 9| G= [n ]& R@ p9 I/ ]& I/ 0' L$ I/ I/ 0' 0' # # I/ I/ + 1) # [* ]& + * k) V@ ]& }, 0' # ]& V@ $ {c > + p9 # ; $ = - $ 2) ]& > P$ S$ > H= S$ > + ; > . ; N$ Q$ > & $= H= ] N$ U@ S$ N$ o! . & R$ & | ; S$ 2 { X@ ## N$ *# ; 8- ) Q$ 7- } /& ] /& +# 2 2 W@ < 8- < 6 ( } 4 /& 6- } ( ( ( ( ,# ( ,# tA Y> } 7 2 J] 5 a a /& k &# 0 0 b 6! 0 K] 6 a e c 6! 0 c L= 0 z: L= L= h A~ s> h r n p p! s> %d.p 1; 2, ,> 4* m ^# $] G#.m b' ^# {& 2; :# /# G /# )> {& /# B 2; F= a7 F= C a7 E /U [2.z a7 a7 A$.n*.A $T z KW V ;O T^ .@.M A m;.c- (#.4>..@.(#.4>.4>.o*.aV oY aV *I I#.-*.aV *I L aV oY M7.(U .Z #N )Q )Q )Q +Z +Z RT RT lP RT sZ 0$.|@.H&.9X AS /!.3@.1@.3@.CX AS hT CX 9&.CX FN CX CX +` E` |Y ST EX pY &S CR CR tM 5Z lT &d.jT ~W pO 6N nP fK 0R 0R DR DR nW pO pO pO IQ eS 9N /W >R rO uM gK rO uM uM WO /P /P >N }9./P qP yH PK 9C ]I yH 9C 9C wG HJ zH {I HJ ms ^I wG NA =u =u zH Qq 8a.Kk ls *d.08.hf ma qg ma Jk L4 ol ol %0 &0 y9 b/ b/ }5 a9 b/ }5 }5 o[ a9 O5 // ^] N] U/ K! h. K! h. h. K! K! K! h. h. K! f. x> '{ H, l* l* f. =d.g& /% 8) n* w# /% -d.(% (> v. r. z> v. t. t. t. := q* x# }% u. ;d.x. y. 19.19.fb.o0.%b.9a.9a.19.>d.9a.q0.r6.C8.0a.0a.zc.0a.0a.V~.0a.C8.&b.D8.&b.Ob.V~.b8.D8.=b.Pb.aa.Pb.=b.b8.@9.b8.Pb.Qb.=b.Fa.,d..a.;b.{8.W[.)8.I3.I3.{8.)8.u0.89.89.W[.j$ 6@ $5.H3.`% 5@ 89.99.Y, 6@ 3@ Ia.9@ H3.6@ w; T9 k$ o$ &9.8@ e@ Y% 6@ 5@ .& .& e@ ^0.0@ n$ Y% o$ ;* ;* 0@ o$ =* 0@ m$ 'd.)d.B0.!d.~d.6| <:.~b.l^ G* C6.l^ l^ D6.>~ L{ G* l^ C6.6| b6.c6.Z] Q5.{d.I}.G,.=a.Pa.]d.Z^.^d.V9.u[.Pa./d.(d._d._d.]d.:d. # S$ > U@ > . k3 - $= . o! > U@ %= & %= > . R$ U@ %= U@ |* S$ =' T- | . U$ R$ T- & ; f] | X@ { %= %= U$ J) /& { | 2 { 2 ) I= ( { <& { } d 2 } $# V~ *# : 5 d _ 9 k 7 ,# k ( 7 G9 ,# } d a } $# Y> 7 vk [& a {# 0 ~# d d *= ,# k L= e a 0- n -) n n s> |& p r n % n^ 1; /# 4* 2, ;= #| Y$ D b' b' D 4* Y$ `$ % 4* w w /# {& F= F= {& G F= a7 F= E '&.a7 A$.a7 a7 '&.a7 '&.'&..-.JW 1& HV Z c- T^ KW Z .@..@.c- V V V 4>..@. V 0S AX A: *I oY A: B$.I#.iU *I A: oY XX y+.yS )Q )Q RT RT RT RT RT ^P RT +Z +Z Z .G&.w@.+@.AS 1@.+@.1@.'*.CX hT CX .` CX hT CX 3Z CX CX y@.DX y@.tZ qY 2Y EX qY dS ed.`..uZ 6N 5Z 0R 6N fK DR VO DR DR nP pO pO DR IQ 2M KK sO pO lU uM 9N 2M KK 2M /P /P /P /P yM 4C uM WO 9C ]I )K ]I rI ~I ]I ]I HJ xH ]I ^I NA zH -u Qq =u =u =u NA NA *d.(I ls =u hf Dm 3e Dm (I qg Od fd.%0 %0 &0 na o[ b/ }5 b/ b/ a9 o[ b/ X~ -/ B1 14 A1 4~ r) K! r) h. K! Z- F~ K! K! F~ l* H, H, l* l* l* H, l* l* v# J; gd.n* <= j. K; )' t. <= w# t. t. v. t. x# x# t. x. hd.u. |% hd.gb.m& m& 9a.o0.9a.9a.gb.m& >d.q0.C8.0a.0a.29.id.C8.Ob.`0.D8.C8.&b.&b.jd.Pb.`0.&b.b8.=b.D8.&b.D8.b8.b8.b8.=b.=b.D8.Pb.=b.ca.Ac.kd.Cc.79.75.89.69.94.89.89.89.** 99.{8.{8.79.&* {8.j$ $5.5@ ]0.&3.6@ `% &* Ia.$* y= %* &* k$ 6@ h$ a@ ;* m$ Y% 5@ %* X* o$ h$ g@ z= 5@ =* y; h$ X* >* t$ e@ }= B0.+! a+ 7+ u~ Qa.)d.l^ F* d+ F* i, l^ ^) rb.O9.e= D6.D6.c6.ld.)- Q, }' g+ 3(.ma.md.^d.T:.&'.x1.`^.%_.nd.od.pd.C{.GQ qd.rd.t3.sd.i4.)3.td.Mc.ud.}d.dc.==.t` YQ vd.wd.Y+.SZ .s l+.U@.~#.< .!%.tb S.. :. :.'c yh yh yh %e xe Y_.X=.xd.yd.Bb.xW HL zd.Ad.Bd. b.R0.R0.&7.[a.c7./6./6.X5.Cd.;7.Dd.Ed.]n 1a.s8.;[.pM Fd.O+ pM ^l n}.;[.n}.U}.;[.H<.`] Gd.Hd.Id.Jd.[q ku d(.Kd.Ld.H G `$ `$ `$ `$ 8 Y$ v *= e e K= ", +"^, *) *) 9| <{ 9| <{ J$ J$ <{ <{ J$ J$ L$ I/.J$ R@ R@ ;b J$ J$ J$ ]^ I/ I/ ]& ]& 0' 0' 0' I/ I/ L$ L$ I/ K$ I/ 5_ 1) = 0' $ # L$ + ]& $ ]& = + . # + + > > = > . o! # $= . Q$ . . o! L$ + ; A; P$ > - > N$ ] 5! N$ + |* & ; ~ > S$ & N$ %= S$ U@ > U@ & ] & | H= > ; Z! ) W@ Z! ; ] Z! N$ { ~ X@ X@ { 2 4 1 2 2 / { { < < D, ;# 4 1 2 9 ~ => 7 7 a 7 a c6 &# ( $# 6 } $# 6- [ Y@ 4 6 a k $# ~# 6 ,# 9 d 6 e 0 3] i 0 ~# L= s> n h ~# y2 E, E, c s> % 1; ,> q 2, p #| Y$ t ^# Y$ Md.D m m 1; /# @= F {& 2; :# E {& E /U /U a7 G F= a7 P<.F= F= '&.[2.A$.a7 a7 KW $T 1& T^ 0S A I T^ Z T^ M V c- .@.z .0S v@.~,.I-.Nd.3& -*.iU B$.:#.I#.*I (U A: )Q .Z k#.+-.)Q RT +Z ^P )Q )Q )Q Z .+Z RT bV 9X 0X w@.-X hT w@.2@.hT AS AS hT AS CX .` CX BS .` .` 3Z aS pY DX #Z @Z tM CR 2Y EX qY qY nP `..5N 0R 0R nP nP lW pO $Z lT 0R %` lU ;E LV FX sO 2M uM vM KK uH 2M /P uM 2M rO !L rI yM gQ yH >N yH hK tI *A Od.tI ]I ]I NK ^I -u Ik xH =i =i =i =u NA =u -u Kw fo =i (I ma ~b lj Pd.ll %0 Qd.&0 &0 L4 ,2 o[ b/ b/ na }5 H^ }5 b/ U/ 14 |4 z{ A1 V: K! K! K! B] r) B{ K! r) r) F~ K! i. l* g& K! x! x> i& gd.T= n* =d.w# K; 8) l. w# t. q* o. x# t. l& := t. t. t. s. w. x# u. hd.}% 9a.o0.9a.Rd.>d.gb.9a.9a.gb.9a.Sd.9a.id.0a.0a.29.0a.C8.D8.zc.`0.&b.&b.=b.D8.D8.b8.ib.&b.&b.Td.b8.@9.b8.b8.b8.Td.Td.@9.06.,d. a.Ud.{8.Cc.{8.&* 94.u0.u0.89.$5.79.** #* h$ ** 8@ 6@ $5.8@ `% l$ a@ 6@ o$ a@ ;* y= h$ 3@ 5@ l$ Z% h$ .& o$ >* .& 0@ ]0.,* 6@ z= e@ 0@ e@ )* =* >* =* e@ g@ c! Vd.e+ R! 7+ J& K> b+ K..m&.4u _S 6W VV d+ ^) c6.j; e= l^ 6| j+ .Q *, n+ &, k! f9.c5.Z^.T:.^d.F!.2:.[].Wd.9c.2(.Xd.Yd.Zd.`d.,|.sd.h3.O2.td.ud. e..e.+e.M0.@e.YQ vd.R../@.SZ tf p@.l@.o%.o%.!%.~%.#e.$e. :.xh yh #H #H #H &e ti Q0.'q Bb.%e.cI TM w/.&e.Bd.*e.7b.=e.R0.h6.:3.Q4.-7./6.X5.>7.-e./6.q8.m4.~}.pM b[.d7.p9.)}.^2.o}.o}.n}.U}.G<.,[.^l p5.f(.'[.E[.x_.;e.V0.O(.v_.V Z$ r b' % `$ g e 0 e c W$ o ", +"9| 9| <{ 9| *) 2! jP J$ J$ 9| 9| 9| ]^ <{ (}.<{ J$ 2^ BN J$ .( R@ G= ], BN R@ J$ BN ]& ]& G= I/ ]& ]& L$ I/ 0' + # $ 5_ + # # ]& ]& V@ * Z, }, #^ $ $= # & [* =' + > [* . + $= S$ Q$ $= N$ $ > > S$ U@ > S$ > ,Q U$ . S$ = & U@ Q$ > ; > = U@ X@ > $= | S$ Z! ~ ; S$ # f] { | [ /& 7- & `@ S$ & ] [ H= R$ U$ ) } ~ ( Z! T- { X@ ( ~ ## /& { Y> $# $# 4 d M' 6 / c6 &# ,# 3* d | 6- } } d ,# 7 Y> 0 c6 L= Y> !# {# k 6 ,# 0 e ,# Q{ ~# o L= c >e.n &].n K] Vj Y$ p Y$ % 1; n r n ,> ,> 4* 4* D ),.#| G#.1Z t t Q(.#] E G t {& w {& {& F= /# a7 F= z a7 '&.'&.'&.z AR 8$.AR z 8* M (e.bY _e.:e.k^ @$ #.5E F* CP d+ RJ BU BU JM q+ G0.}0.+1.}e.|e.[(.Ua.Pa.q].w|.G}.2(.1e.2e.3e.4e.5e.6e.7e.j^.Mc.Mc.oR va.8e.==.9e.wQ ~U d =f SZ VW c#.U@.fw < .Ac Ac 0e.0e.$e.1b.yh yh #H wh ub xe !#.ae.Za.rR %e.cI be.)>.ce.de.ee.{6.fe.[a.i6./2.c7.F<.ge.c7.j6.;c./6.he.:3.ie.je.;[.ke.!}.s8.!}.#<.!}.;[.!}.,[.e(.G<..N |5.rv 8~.e[.le.+8.=1.~}.;. m D G Z$ p o p g Y$ h e e ", +"9| 9| 9| <{ 9| q, jP J$ 2^ 9| 9| <{ J$ <{ 8S <{ <{ 2^ L$ l) .( BN G= <{ <{ I/ 9| 9| BN I/ BN L$ 0' L$ 0' 0' p9 ]& # * 5_ 0' # K$ # R@ # * ]& #^ # [* + . 2) # # . S$ . k) $ S$ ' $ . Q$ $ S$ # ; S$ P$ S$ $ T@ . U$ S$ = . ] & . U$ ' L$ 05 R$ X@ U@ R$ U@ > %= ; ! N$ ] ~ Q$ ] Q$ 'W & R$ | ; 2 # N$ 2 { 4 /& } 2 ~ ~ %# /& { 2 : < { ) ## < == 1 ># $# Y> D, Y@ 4 3* [ %m *# 6 5 6 Y> 7 1 ,# &# q> 0 7 6! 3] 6! 0 !# c b 0 !# e e ,# n 6! L= p r ;= }& % % o `$ c _# o h ~# q m ^# 1Z $] G#./# t Md.4* b' t w ^# {& w /# /U z w F= E z z '&.z a7 a7 $T a7 E z 8* Q@ T^ O@ V M >z c- Z Z c- V V V KW c- 5 ..@.z .z .L *I iU i5 A: *I A: *I -*.:#.y+.yS (U A: #N RT RT #N RT Z .)Q R%.RT Z .lP sZ <#.9$.@N hT AS hT {&.3@.hT hT .` hT hT hT +` .` .` 3Z _U pY |Y %T %@.pY dS ST #Z qY 'O 0R ~W fK pO VO fK fK nP nP ^Q 0R pO 0R pO >X lU KK KK 2M WO 2M 2M uM 2M /P LQ >R WO /P rI LQ /P 9C ~I {L ]I 9C 9C ~I tI yH ]I -H 9C ;u Wf 8t Cx Qq Qq Qq Qq Qq =i Qq Qq Qq =u H0 H0 hf hf H0 %0 qg M3 &0 %0 b/ b/ o[ b/ b/ o[ H^ j{ b/ b/ -/ B] X~ c/ 4~ K! K! K! K! h. h. r) K! K! K! f. l* l* g& h. g& l* g& x> j. l. u# n. n. x> o. o. <= x# q. t. x# x# x# x# t. t. !e.x# t. s. := me.ne.o0.hd.~e.19.9a.19.gb.gb.gb.>d.0a.id.0a.0a.id.29.0a.Pb.id.0a.Pb.yc.`0.&b.D8.Pb.&b.Pb.Pb.D8.D8.b8.b8.oe.&b.aa.-b.=b.b8.69.Td.Bc.89.]0.$5.79.j$ pe.qe.** Y% lb.89.** ]0.** 8@ h$ Y% 5@ 7@ &9.h$ a@ Rb.Ia.6@ -* .& Y% 06.3@ & k$ ** o$ ** =* W* h$ h$ e@ g@ o$ k@ ,* +& +& h@ .& :; [.re.9=.se.te.ue.ve.we.xe.ye.ze.F=.1!.T* %6.p{.E=.^ .h+.!Z S&.[$.h@..Q ({ @F P5.i5.Ae.Be.Ua.md.)a.|1.Y{.(8.Ce.De.Ee.Fe.Ge.5e.Y}.He.z-.Ie.}d.Je.dc.8e.Ke.%0.Q..~U q.._ .m@.S+.tu @$.o%.!%.~%.~%.yb.yb.0(.0(.~T #H #H wh %e ub 5j P0.4b.3b.TH cI +z J6.2a.Le. b.Wc.7b.[a.4N Q4.q8./2.Me.B% u2.u2.t2./2.Ne.Oe.Pe.'7.H|.!}.^2.7<.b[.G<.G<.H<.#<.^_.D[.iP s8.n3.&<.*7.Qe.nc.G<.Re.a. I % m ^# `$ % c o p g c a ", +"9| <{ 9| <{ 9| <{ <{ J$ J$ 9| <{ jP J$ J$ I/.<{ J$ 2^ jP <{ J$ BN I/ I/ L$ 0' R@ I/ I/ I/ G= L$ L$ J$ R@ ]& BN L$ + * 5_ I/ $ # # # R@ # #^ L$ ]& + . ]& o! # # + [* V@ & = 2) S$ + Q$ > > . > U@ ' . - > . = & ] $ ]& - ' H= > - . P$ U@ > . S$ - Q$ | ) R$ ; ~ ; ] N$ ; R$ S$ & | ) ; { | 2 | ( | I= | | R$ W@ <& | ( d : d | 7- V~ 4 } Y> /& { d J= d Y@ { { ( ( 1 6 k ,# 6 5 a b a 0 ,# 6! k 2* !# !# ~# e ,# t' e a 0 a 0 n r h h h p! Y$ ]# i p h _# |& L= ^# /# 1Z 4* 4* p b' ^# ^# w D w w m w C z F= E 2; C z z a7 w F= a7 1& /U .}Y (#.5 .SO x .v@.B..SO oY aV (U aV (U 3d ,*.k#.^P )Q RT #N )Q )Q ^P +Z ^P Z .<#.-X bV '*.1@.CX .` hT 0X 0&.AS CX .` CX hT CX BS 3Z E` +` HQ |Y |Y 4@.BR pY =S pY tM CR @V }M |C IV TT nP 0R nP 6N 0R pO lU nP nP eS 2M 0R sO uM pO eS uM uH 2M KK KQ rP uM uM 2M >N WO uM 9C 9C HJ yH 9C 9C ~I 9C =v ]I -H zH [e ms ms Qq Qq =u Qq Wf =v Wf ,e.=u Qq Se.Kw 2e H0 H0 ng &0 lj Yf &0 M3 K9 o[ Te.H^ ,2 }5 b/ H^ }5 na -/ ^] 4~ A1 ]] r) h. Z- 0^ r) r) K! h. r) h. h. l* l* Ue.K! g& f. U= /% J; n* v# x# q. V= (% o. i& t. i& Ve.t. y# t. x# x. Ve.t. hd.h& We.!e.x# x. 9a.Xe.n0.ne.9a.Ye.9a.Ze.>d.9a.id.id.id.Xe.Sd.`e.29.&b.]e.C8.&b.id.hb.aa.D8.Pb.Pb.Pb.&b.&b.&b.@9.=b.Fa.Td.Pb.-b.=b.Td.u0. f.Fa.$5.j$ Td.h$ 94.lb.Ga.&* lb.** &* Y% .& p$ 06.`% Y% o$ 6@ 6@ ** _; 5@ h$ a@ .& %* ** h$ e@ Y% m$ h$ 0q .& d@ e@ o$ +& e@ m$ k@ m$ k@ y; .f.g@ =* W* +f.5/ ,..@f.#f.~d.u- $f.X/.%f.&f.*f.=f.-f.;f.>f./].84.t{.&* 9@ l~.T1.e].S&.CU ~Z 8P rb.,f.'f.M3.j( Q, &, l; 10.)f.!f.~f.{f.]f.^f.z-.z-.Nc.Je./f.dc.(f._f.G%.=}.{2.jY 4G m@.p@.U@.< .k..Ac YN :.$e.1b.$c e*.'c #H yh ub ub y>.#H :f.4b.3b.3b.,q ^l ;[.;[.@<.t2./- a> o4.'[.nc.A[.mu !}.G<.2f.w `$ D `$ C; h V$ Y$ r '# n 0 ", +"*) <{ 9| <{ 9| 9| <{ |1 J$ 2^ 2^ <{ 9| J$ <{ <{ <{ J$ R@ R@ ;b ;b L$ R@ I/ I/ I/ ;b I/ #S #S BN I/ I/ 0' 0' = = ]& # # 0' $ # # + ]& # + = 0' V@ 2) # . $ # . ' $= $= 0' = & ' = 1* $ + = - U@ > & U@ . = . A; Q$ Q$ ' S$ P$ > $ $ {c Z! - T- X@ ; { | R$ U$ %= U@ ~ U@ U$ ; ; | H= ~ %= Q$ ] %= R$ | /& | X@ X@ # /& { } 8- .# ## < Y@ 2 $# 6 $# / 6 d J= d } 7 5 d } 7 Y> { 6- 6 5 ,# z: 3* j ,# 6! 3] 0 0 0 a d ,# 8 ~# ~# e L= 0 {# n c ]# ~# 0 n L= ]# 2, ;= 0- o ,> C; 2, m 1; b' 1; b' :# 2; s> /# 1; 2; ;{.;{.M= 2; :# /U F= w #| z E z L/.F= /U /U '&.C` E G AR 1& H$ T^ 1& O@ $T V c- T^ $T V z .c- =X c- .@.0S v@.(#.x .A: oY I-.o*.iU *I aV -*.-*.oY XX .Z (U k#.)Q +-.^P RT RT )Q RT ^P )Q +Z 9X EN 0X w@.1@.+@.3@.AS CX CX hT E` hT hT hT CX +` E` .` aS E` ST 3Z 4@.@Z pY =S EX EX CR kT jT CR 6N nP nP nP nP nP pO lU 0R pO %` >S sO FX fQ gK KK /P KK 2M KK uM uM 2M uM 2M WO rL WO uM /P 9C xH ~I ~I Ik ]I 8C xH 9C *A ~I =i Wf [e Wf 8t 8t ms =u =i Qq =u Pd.Qq Yf ma 'i 'i hf ~b 8^ K9 L4 &0 L4 b/ o[ H^ b/ o[ ,2 }5 b/ b/ ~1 A1 j{ X~ N] 8! K! Z- r) K! {% r) h. r) x! ^> r) g& /% l* l* l* T= /% g& v# v# V= l. w# o. n* w# t. <= n. t. t. x# x# x# |% t. x. hd.q* u. 3f.4f.me.ne.gb.gb.9a.gb.9a.9a.gb.9a.}c.C8.id.yc.gb.5f.id.xc.Pb.C8.id.Pb.&b.D8.&b.&b.aa.b8.=b.Td.=b.b8.b8.=b.^0.Td.-b.Td.l~.k$ Ac.Bc.Bc.06.6f.W[.7f.e8.l~.89.&* $* 89.lb.$5.l~.** a@ _; nH _; l$ h$ ** h$ o$ h$ #* 8f.#* .f.n$ o$ w; ** h$ X* 0@ 0@ z= e@ p@ m$ *& d@ & kW *& ;* 0@ 9f.27.N^ S` 0f.D/ ve.w- af.bf.cf.df.ef.ff.gf.hf.if.jf.kf.o$ m$ o$ =* d@ o$ 3@ A4.CU !Z g+.h@.TR HB 5E @! '] /) lf./b.mf.H=.{f.nf.z-.Mc.Ie.Ie.Je.dc.M0.of.pf.i..{2.q..SZ VW U@.^@.^@.>c !%.#e.hE yb.5j vV #H #H #H #H ub &/.#H =d ub qf.4b.4b.3b.%e.rf.t>.*7.R0.+0.i6.^6.G|.p5..N Q4..N iP {- u2.X5.~}.n}.Q& a> R+ Y+ L+ T+ O+ iP ^l n}.a> 7<.n4.;[.h1.of f) _5.&:.0b.1|.W5.{}.sf.!)./# /# ,> `$ n r o (# _# c f f ", +"*) *) 9| 9| 9| 9| 9| *) <{ ], 9| 9| <{ <{ <{ <{ <{ 9| 2^ ]^ L$ <{ 9| 9| I/ BN BN 9| jP 9| L$ I/ I/ 0' 0' I/ 0' 0' 0' 5_ # ]& [n = # # + # # 0' ]& + # !, * k) V@ # V@ > ; . Z, > & * Q$ ; > = }* S$ H= S$ H= |* $= & U$ | S$ & > > & > |* U@ S$ # ^ | & - S$ S$ ] & o! . . R$ | 2 J) 05 ; ~ X@ { 2 | | { | ( <& U@ ~ 8- / <& 2 ) 4 ( 2 $# 6 8- } 7 i $# b } =# } D, Y> 6- d ( $# ,# e 6 q> 3] ~# a 3] e ~# {# 0 ,# ,# g b {# {# L= s> {# n n 0- h h 0- n^ C; 2, m r [& ~# p Y$ p `$ n^ p Z$ 4* 2; b' Y$ t /# /# )> )> )> D {& F= w F $S C` z z /U $T /U /U a7 P<.'&.'&.'&.AR U!.O@ AR $T 2Z V M .@. V .@..@. V V V c- I-..@.(#.5 .aV A: B$.:#.I#.(U A: *I aV iU yS XX (U (U #N RT )Q RT )Q +Z RT RT RT )Q sZ sZ $N H&.H&.H&.AS 2..H&.w@.hT AS hT hT AS .` CX .` CX E` .` |Y ST |Y dQ pY =S %T =S ~Q -R fK qY @V 6N nP 6N 0R nP pO nP 0R pO 0R OW (P WT ~O 2M uH KK 2M uH 2M KK KK 2M 2M 2M uM tI %J tf.~O ~I Od.%J %J hK wH LE 8t ]I ]I *A Qq 8t =i Wf Wf [e =i Wf Qq =i =u Ue Qq og 2e H0 'i hf H0 L4 &0 M3 %0 &0 j{ a9 H^ o[ o[ H^ H^ o[ j{ H^ o[ }5 N3 A1 U/ K! K! K! h. h. h. K! Z- B{ h. h. K! l* l* f. l* H, g& l* x> n* g& x# _% (% uf.:= u. t. w# vf.t. q* t. t. x# t. t. hd.x# t. wf.~e.gb.xf.>d.gb.>d.gb.>d.9a.>d.gb.Sd.id.Xe.id.5f.yf.zf.C8.Pb.zc.hb.Pb.aa.&b.aa.aa.aa.=b.=b.b8.b8.=b.b8.=b.=b.06.Af.Af.Td.Bc.** -b.lb.lb.^0.Ud.$5.79.h$ 94.6@ ** 5@ ^0.Y% ^0.$5.m$ h$ h$ ** h$ n$ h$ g@ Y% o$ .& p$ j$ w; o$ .& o$ h$ Y% e@ 6@ o$ X* k@ )* e@ o$ a@ e@ j- e@ w; '* Z0.Bf.f, *P Cf.Df.Ef.Ff.Gf.s/ Hf.If.Jf.h/.f).`: E* Kf.Lf.z3.f@ >* ** Y% Mf.Z% l$ 93._{.!..t#.g).s{.5#.DU sV TR 5E Nf.Of.Pf.Qf.Rf.Ie.Ie.Nc.}d.Je.ec.M0.Sf.mZ W` =f _ .4G GW U@.@$.< .o%.tb T$.yb.1b.'c $c #H wh wh $c ub >e xe *e =d Tf.3b.3b.TH 4d.Uf.Vf.:|.:|.K6.4N c7.N6.g1.S& g1.vC P+ O6.pc.{- /- /- G% R+ P+ V+ R+ R+ /- P+ #) S+ /- pM {- H<.G<.<|.Wf.Xd.9w 's ;(.O(.h1.b[.e|.M Y$ r ,> h h p p h n o e ", +"<{ 9| <{ 9| 9| Xf.*) <{ 9| ^, <{ 9| <{ <{ *) J$ J$ *) 9| BN BN <{ I/.L$ R@ R@ 5_ ], jP I/ p9 BN I/ 0' + I/ L$ 0' 0' 0' # + 0' 0' * # # 0' + $ * + Q$ }, # & ' > k) S$ S$ = # . + & # . Q$ * - U@ U@ $ |* . Q$ > A; $ . - Q$ > $ U@ - S$ U@ & U@ o! ~ Z! ; ; & Q$ Q$ ] ] | R$ ] ) N$ W@ X@ | | %= X@ [ P$ ] /& ~ %= X@ /& / 1 2 ( 1 $# { d 7 5 $# 2 d &# 6 ,# &# 6 Y> 4 $# b 6 3 6 ,# $# d ,# ,# 0 a 9 ~# ]c ~# 6 L= 7 g k ~# n !# e ~# s> 2, h 2, Y$ n s> Y$ e {# h p Y$ s> p ^# p w b' xE 4* D t :# /# /# M= w o/ #] 2; {& F= 2; }4.F= n! /# C` /U /U w a7 a7 '&.AR AR JW KW n*.w c- V c- c- M $T V V .@.4>..@.x ..@.4>.v@.Q *I iU AX E].aV oY A: (U SO yS ^P _#.k#.3d ^P )Q )Q RT ^P RT ^P RT )Q +Z lP EN ~&.1@.0$.hT CX AS hT AS hT hT AS 0$.CX AS CX CX aS x@.|Y |Y '$.%T 2Y #Z [+.EX =S =S fK @V @` |C |C nP nP fK pO nP lT ;S LV pO JQ tH lU KK uH 2M uH KK uM KK uM uM /P 2M KK LE Yf.8C uM rL hK 9C 9C ~I ~I 8t *A ]I ]I {I [e Wf Cx Wf Wf [e Wf Qq Qq =i =i J9 =i Pd.H0 Dm Yf Dm hf M3 if Od &0 &0 L4 H^ y{ H^ ,2 H^ y{ o[ y{ H^ H^ j{ w> N] A{ ^] h. K! h. Z- h. h. h. h. K! K! h. g& f. h. x> g& g& w# l* o. U= o* o* v# Zf.x# [% x# q. w# x# x# x# x# x# hd.x# )e.:= t. !e.~e.wf.19.9a.gb.gb.9a.gb.]e.Ob.gb.gb.Xe.`f.Ob.gb.gb.5f.D8.id.zc.id.hb.aa.aa.Af.aa.aa.aa.06.=b.=b.b8.=b.Td.Td. g..g.Af.-b.^0.u0.Bc.Bc.l~.Ac.94.59.#* ** ^0.** ** ]0.h$ .& 5@ .& 5@ 6@ o$ ** g@ ;* l$ .& n$ h$ 0@ =* e@ w; w; m$ =* 8f.h@ e@ o$ nH m$ ,* kW h@ -O :; )* ,* h@ +& .& 94.&g.g; a. ,W 8@ %* p[.Y% =* 3@ F3.;|._/.2'.x,.*g.M).sV SS 9=.=g.;~ [~.-g.Qf.;g.}d.Nc.Je.#c.dc.M0.1d.3).i..wd.=f 4G KB p@.l@.o%.!%.Ac Ac x&.0(.0(.>g.$c ~d %e O;.#H ub #H -d wd wd IL Za.3b.4b.Ho ,g.'g.87.*7.K6.B7.() B% E% E% L+ Q+ O+ {- M+ G% )g.W2 ^N N+ a> L+ R+ a> g1.T+ R+ S+ /- a> u2.H<.,[.:4.!g.~g.t8.{g.]g.,[.Zi ,[.e+.m N 4* r >> h c r 7 j X$ c ", +"e^ *) 9| 9| w9.w9.98.9| 9| *) *) ^, <{ <{ 9| 9| J$ <{ J$ <{ *) <{ <{ ;b J$ *) BN #S BN BN I/ I/ R@ L$ + ]& G= k3 0' 0' # K$ X! 0' = # # + L$ * V@ = + $ V@ Q$ [* $= . [* |* - k) p9 V@ ' # . % $ $ + T@ S$ =' & |* - & > V@ . & U$ & & T- S$ . . | X@ H= N$ R$ ; N$ T- ] ; ; & ; X@ - U$ $ { W@ X@ U@ ~ | 05 ) | [ Z! 2 2 ## ~ 5 X@ Y@ 1 | ~ [ Z! 4 ## { d ( &# *# [{ 5 } x0 : ,# } $# d ,# } 6- Y> $# 7 6 a k 0 6 e 3] a ~# ~# E, 3* n ~# 6! n r -) L= s> h h V| Y$ !# p (# 2, p 1; m 1; ^# ^# xE Q(.[# @= 2; b' % #] /# w #] G F= F= G F= a7 B w z a7 a7 I F= B '&.'&.'&.$T .@.A$.a7 M O@ Z Z c- 2Z 2Z V c- V c- V 4>.4>.>z 4>.Z..:#.d{ y .oY A: A: A: *I oY _#.J-.(U yS +).^P )Q ^P ^P RT )Q RT RT RT bV sZ -X 1@.9X 1@.mL hT $N $N AS AS AS .` AS AS BS aS CX BS 4..pY ^g.|Y %T 4Z CR tM EX =S 5N 6N /g.@V 6N 0R 0R DR nP 6N fK |C nP |M 9N uH $V KK 9N uM KK 2M 2M sO uM 2M uH 2M uM /P rI wH LK ~I 8C yH 9C rL 9C 9C ~I ~I 9C *A [e Wf =i [e [e =i =i Wf [e =i =i Kw ls =u fo 2e ng Oc >2 ~b L4 S: 'i &0 [c 'i S: y{ o[ j{ H^ b/ j{ H^ H^ X~ 8! w> // /} h. k] Z- h. Z- h. {% f. Z- h. Z- (g._g.f. f. g& f. T= l* g& :% J; o* q. q* <= o. q* q* q. x# q* q* x# x# t. )e.t. hd.t. 4f.ne.4f.o0.o0.9a.>d.>d.>d.]e.Sd.gb.gb.>d.gb.`f.gb.9a.:g.0a.id.]e.hb.Ob.aa.Pb.aa.aa.aa.&b.Af.&b.06.=b.Td.Td.Td.Td.-b.=b.06.=b.^0.5@ Y% lb.h$ h$ $* 79.5@ Rb.}Z w; &* h$ Y% 5@ h$ ** Y% o$ b@ h$ Y% -* e@ e@ .& h$ _; 7@ X* 0@ o$ g@ +& && j@ d@ '* ,* f@ g@ 6@ n$ m$ ,* )* j@ )* X* * v) 2g.64.l$ g$ w; 3g.4g.ha ;Y _S 5g.G* 6g.$/.7g.8g.9g.0g.#c.ag.ec.bg.cg.{%.-U @H SZ VW 2x l@.@$.o%.tb hE !#.$(.e*.yh yh $c wh O;.ub %e #H -d zh =d *e lZ _a.3b.4b.dg.eg.fg.gg.=e.`2.N6.() N6.hg.ig.Q+ V+ L+ ^l L+ Y+ Ca.jg._$ V+ P+ /- a> ]w ^l ~@.]- Q& X2 E% #<.D[.8<.U}._9.R4.e(.kg.lg.o4.t2.mg.Xr K G ~# :# c *= o n ~# j a a ", +"98.<{ 9| <{ 9| 9| 9| 9| <{ <{ *) *) 9| 9| <{ 2^ 9| I/.;b <{ J$ l) <{ <{ <{ z~ *) I/ BN I/ I/ 0' G= R@ = 0' 0' 0' 0' I/ ]& # K$ p9 = # # ]& ]& # + 0' # K$ . ' # # . o! S$ & . = - . ' P$ V@ & . . $ - - $ ; & * ; A; }* > A; . > $ > U@ S$ U@ U$ & & T- N$ Z! ] N$ Q$ ' ] | N$ ^& { N$ X@ U$ R$ U@ ] Q$ H= { { ~ N$ ^ [ | ; [ I= *# $# [ 2 R$ X@ } *# ( ( ( < Y> 6 7 $# 6 e 7 d &# 5 d d 8 Y> Y> a d 6! 7 6! v5.a ~# W$ a z: A~ E, z: ~# ~# !# }& }& `! b~.`! p n L= p r p! c % s> K/.h m p ^# 1; m t t m t b' C F F= w F= F= B F= /U /U {& z '&.z /U z a7 '&.a7 AR '&.8* M AR $T JW M c- T^ n! 8$. Z c- c- V c- V .@..@. V Z..A: y .SO A: A: A: *I *I aV iU #N r! oY y+.)Q ^P )Q )Q ^P RT RT RT +Z +Z EN -X '*.Z .-X AS $N $N hT hT AS hT hT hT CX :M $N hT hT aS ST ST ST %T |Y #Z @Z tM CR &@.nP kT @V 6N 0R nP 6N nP nP 6N 0R pO 0R lW KK 1M uH ~O ~O KK uM KK eS uM uH KK uM uM qP vM wH 4C ~I wH 9C vH *A wH 8C wH 8t ~I wH Ik Wf Wf zH NA Wf Wf Qq Wf =i Wf =i Pd.Qq z9.Pd.H0 Oc H0 hf 9d &0 Ve =/ x1 M3 S: j{ H^ b/ o[ H^ H^ o[ b/ A1 B] B{ q) m~ #~ r) Z- c. Z- c. h. Z- h. K! Z- i. i. g& g& f. l* f. g& g& l. s# n. Ve.ng.i& w# q* x# x# x# t. x# x# q* x# q* x# og.x. t. pg.ne.!e.!e.Xe.gb.gb.>d.Xe.>d.>d.qg.qg.>d.{e.rg.>d.5f.0a.id. f.`e.Ob.aa.Af..g.aa.Pb.Af.Af.Pb.Td.Td.&b.=b.=b.=b.l~.Td. f.m$ 06.l~.^0.94.Bc.#* Rb.79.Rb.** h$ l~.^0.d@ h$ Y% h$ 5@ 94.Y% m$ ^0.a@ e@ m$ h$ .& h$ h$ ;* o$ r' 94.sg.h@ 8f.x; 0@ >* q$ e@ h@ )* ;* h$ )* =* =* =* >* tg.ug.p% -~ $$ -~ )T t{.vg.3@ X* +& c@ `% wg.B2.a@ l$ |@ 9@ #* p$ b$ 7@ c@ p$ U] w^.2@ o$ 6@ P_.xg.q] `%.>%.t#..Q u~ yg.zg.Ag.Bg..e.Cg.Dg.Eg.Fg.pf.QZ -}.q..Y+._ .m@.U@.0k < .k..tb Gg.!#.!=.e*.[R yh O;.ub y>.%e y>.ub ub xe xe we U` (a.3b.4b.Cd Hg.Rg Ig.=e.B7.X5.hg.B+ A+ U& T+ L| F% S+ S+ @/ Ds k6.G% G% Q+ #) {- #f DL Jg.Kg.Q& Q+ r8.pM b[.$<.8<.]w Kb G<.0<.Lg.rv #<.0:.Q4.S m h `$ Y$ o l r o g d a ", +"<{ <{ w9.*) 9| *) 9| 9| <{ <{ <{ ]^ <{ <{ <{ <{ 9| I/.;b l) R@ L$ <{ I/.R@ L$ 9| #S I/ k3 L$ L$ J$ *) L$ [n 0' 0' 0' 0' [n # `Y # = # # = 0' # 0' # K$ V@ # ]& & + # ' ; . $ [* V@ # $ V@ + 0' [* > . > . & . > = A; S$ ] > # . . ^& = ' %= %= ; = %= N$ ; X@ ~ . Z, Q$ P$ Z! 2 ) 2 05 2 %= 2 R$ ; ( { R$ ## { N$ | 2 | ( ( H= 5 X@ } ## ( Y> /& &# $# N' $# i ># ,# i ,# a 6 7 B; 6 } D, 7 ,# 0 a' L= 3* &# V) |& 0 e 6! a 6! L= {# >> L= K/ 0- r -) p Y$ A~ Y$ r ,> l n 0- ]# Q{ n^ 1; 0- ,> % 1; % 1; ;) 1; Z$ t ,> t F F F= w F= w F= {& F= :# #] a7 z F= z 1& '&.z a7 a7 8$.KW 2Z AR c- c- c- z :}.a7 V >z V V c- V 4>.4>.4>.0S J A: x .<_.aV oY *I *I (U aV (U 3d k#.*I ^P ^P )Q )Q 3d )Q )Q )Q RT RT sZ -X 0X H&.+Z AS $N mL $N AS AS hT hT hT AS AS HQ .` hT aS aS q) B{ h. Z- h. Z- h. h. h. K! K! h. {% {% g& K! f. i. i. f. l* /% l. n. x# Ve.Zf.<= m. Ve.q* v. q* q* x# q* Ng.'e.q* x# := )e.4f.We.x# ne.me.me.Og.gb.>d.qg.>d.qg.qg.gb.Ob.v7.>d.Pg.aa.0a.id.aa.id.hb.aa.aa.Af.&b.Pb.Pb.Af.aa.Td.aa.06.06.hb.Y% Qg.06.Y% Bc.l~.x; 0@ lb.Y% ** $5.=* .& ** 94.Z% m$ Y% 8f.]0.a@ p$ &9.+] h$ k$ _; Y% #* m$ 94.#* k$ .f..& #* n$ nH k$ =* =* U* =* p$ X* m$ *& =* )* p$ =* l@ b. Rg.]{ RR 3+ C=.J& ^<.{].n<.Sg.A= -& 9& j@ a9.&6.i$ Tg.[@ 9@ Y% 6@ X% Ug.`% a@ Vg.7,.dY Ac.=Y [@ 7@ _].:&.hZ DU qN oa.Wg.Xg.Yg.Zg.#c.#c.Eg.`g. h.QZ NO R..@H SZ (y p@.l@.@$.o%.!%..h.~%.!#.vV [R #H yh #H %e %e y>.xe y>.y>.T=.nc we Bt P0.Za.4b.Cd TH +h.@h.Eb.n9.j6.w~ A+ E+ ta E% C- ^ t{ /- p; wg X; L+ g1.S, /- T! O+ {- #h.$h.Cs n}.vC n}.^l iP |5./- V& U}.<3.%h.0:.w_.D[.Q4.#. n h h o !# e 9- j ~# *= ## ", +"2! *) )~ *) 9| |1 9| 9| <{ 9| )~ 2^ V! J$ I/.<{ 2^ *) I/.J$ .( R@ L$ <{ R@ BN <{ BN L$ ]& J$ BN p9 R@ L$ I/ 0' I/ I/ 0' ]& = + }, I/ ]& K$ # = # ]& 0' J$ + = k) . . !, . E! 1* . $ # > . ]& 1* . # # S$ & > $ U@ ; Q$ ; ; N$ Q$ S$ Q$ > ] & $= Q$ ; N$ ] | & > *' T- N$ o! > U@ ; Q$ T- %= X@ X@ ^ ] 2 X@ | 2 ~ | | J) 2 } ~ : 4 ~ } &# } } 2 d 5 $# Y@ 6 ,# i V~ a' $# x0 6- a $# a ,# a' ,# 0 V$ ,# k 0 0 ~# a {# a' } 7 0 ,# a K/ i ~# 0 L= Y$ K/ y2 ;= `! h e ~# o % 2, ,> t m 1; m L= 4* ^# Q(.xE ^# G#.4* 2; m t G F B t /U w w F= B z d.>d.>d.qg.;h.gb.>d.Pg.>d.qg.Sd.Pg.rg.id.>d.>h.39.Ob.]e.Af.,h.Af.aa.aa.Af.aa.aa.Pb.aa.Pb.Af.aa.aa.=b.Td.#* f.'h.Y% /M w; h$ kd.Y% )h.h$ 79.#* h$ 79.lb.n$ #* e@ o$ Y% b@ ^0.0@ >* =* a@ =* h$ j$ m$ m$ p$ r' 6@ =* a@ w; q$ f@ e@ 0@ >* p$ >* g@ >* t$ p@ o$ 0@ A= a& !h.d+.wT bY 2!.'` w6.62.#* && s@ {* h# q@ s@ j@ 0@ 8@ ~h.6@ .& ,* e@ {h.]h.o$ ** E=.^h.c^ W<.e$ f$ J- 2'./h.(V 1L (h.e0._h.:h.3|.==.ag.Fg.`g. - $ S$ ; # Q$ > > $ > $= Q$ T@ S$ ; |* U@ }, S$ > M$ > #^ ^& U@ ] > Q$ H= & ] N$ ^& N$ P$ X@ ^ S$ & ^& | U) ] { *# X@ ] ~ X@ 2 ; { 2 1 } H= [ ] 2 | [ ) *# ## ( d 1 Y@ *# 1 { $# V~ $# 6 k &# d q> D, [ b d ,# V) a V$ a k ~# a' 0 7 a' a ,# ,# j 0 7 K/ ]# c {# L= n !# K] W$ ;= h W$ Y$ 0 h n V| ,> r 2, Y$ 1; |& Z$ D V| ),.D t /# t t t /U $S `$ /# $S G {& F= w F= a7 F= a7 /U F= AR n! z z I 8* #= O@ c- c- I V 8* c- 1& H$ O@ 8$.M M V .@.c- v@.AX AX SO :#.aV AX L aV *I *I *I c~.BX (U )Q RT RT ^P )Q _M #N ^P )Q ^P +Z sZ sZ bV 9$.sZ $N $N AS $N AS hT AS AS AS AS AS CX BS aS CX BS |Y y@.EX pY %T =S BR ~Q =S EJ @V =S 5N 6N 6N nP nP 6N nP PP |M -S 6N tH tH uH tH KK uH WT 9N KK uH 2M LE hs !I hs ]I ]I 9C hs Uv 8t ~I 9C 6h Uv ~I 8t ;u ~I {I xH =i Oq Wf [e Wf Wf Wf Wf Wf =u =i G0 bh.~b E0 Oc Yf ~b 9d 8^ d.>d.>d.qg.>d.9a.gb.v7.5f.>d.Pg.rg.yf.5f.Sd.`e.,h.Ob.v7.hb.0a.Pb.Af.&b.Pb.aa.aa.b8.Td.=b.Td.Af.Af.aa.Af.Af. f.n$ Af./M 8f.h$ 06.^0.#* n$ /M ** x; k$ Y% o$ ^0.o$ wS k$ h$ Y% e@ #* p$ p$ 0@ Y% >* .& +& ** >* .& w; X* & 0@ h@ h@ r$ l@ =* p$ g@ f@ X* p@ g@ :; l@ >% eh.J .d+.{ .b%.wT 42.d@ N- o$ fh.>* m@ >% [y j@ X* a@ h$ ,* k@ p@ gh.hh.ih.0q 6@ X^.J> qQ g+.ha n, H] x,.P+.lS ({ jh.kh.lh.Xg.'e ag.Fg.`g. h..nc nc nc nc nc nc #H :f mh.-f 4d.Za.Ho xW ~r nh.oh.ph.n8.-7.B+ C+ P> T+ V+ N+ G% S~ /$ X; N6.qh.{- O+ V+ R+ T+ X+ be B% rh.O+ P+ /- S+ T+ S+ S+ iP h1.O(.p3.~}.iP sh.th.uh.D t c r L= g e n ~# V$ 6 ", +"vh.$8.*) e^ e^ z~ *) jP 9| <{ 9| I/.*) w9.<{ $8.|1 J$ <{ <{ <{ 2^ 9| jP 0' ], 2^ R@ L$ I/ G= I/ L$ ;b 0' I/ 0' 0' R@ 0' 0' I/ ]& # Z, = + # = 0' # # = = R@ ]& # #^ o! }, Q$ H= > > ' & V@ . $ - > $ . . $ V@ + & > & Q$ + > [* . * $ ; O$ & | *' ; | Q$ > %= P$ Z! *# U$ ; Q$ & ~ z] | U@ X@ [ R$ 7- F:.wh./& X@ [ ( X@ X@ ] 2 P$ ] 2 /& d ) 4 1 <& | d 1 $# 2 &# / Y> 6 7 k 7 6- == 5 c5 ,# 0 a' 0 ,# a 8 3] ~# ~# a ># a a tA 6 j n e 0 z: L= !# ]# h 0 s> h r s> r r ),.`$ Y$ 1; L= 1; p h r m % t m w /# t {& w {& xE F= {& w :# G 1; :# /U F= a7 a7 /# $S a7 z '&.O@ 1& X8. Z AR c- $T $T n*. Z n! c- V V V c- c- V V H#.I#.-*.A: aV aV aV L oY iU iU B$.#N zS oY BX ^P RT RT RT #N ^P #N )Q ^P +Z RT -X bV NW sZ 1@.$N CX AS $N mL CX hT hT hT AS aS AS CX aS aS _U ST IK IK iT =S CR %T ~Q -R fK &@.kT nP nP nP nP EJ 6N |M pO pO oP TL 2M KK KK uH KK KK sO KK uH 2M %J IF qL hs hs wH ~I 8C 5D on 9C wH Oq 9C !I on %J ~I 8C hK =i }e Wf [e =i }e 8t =i Qq [e Wf E0 og =i Pd.$0 K4 >2 Oc L5 K4 Nd L4 L4 y{ H^ y{ L4 S: H^ j{ o[ H^ H^ i] !! ^] q) ]> Z- h. Z- h. {% {% Z- i. {% i. {% f. q# h. Z- i. q# j. J; i. l. v# m. h& o. _% q* q* q* Ve.:= Ve.q* x# Ng.Ve.q* Rd.qg.`f.!e.>d.>d.gb.qg.qg.qg.>d.>d.x; ]e.qg.Sd.}c.rg.`f.Ob.id.5f.m$ id.`e.yc. f.o$ Af.Pb.&b.Af.Pb.Td.06.Td.Pb.Pb.Pb.,h.06.6f.06.6f.k$ ,h.pe.o$ Y% lb.p$ Y% .& .& o$ lb.-* m$ $& d@ e@ Y% =* wS m$ h$ =* r' m$ o$ p$ nH p$ m$ 0@ =* n$ :; )* :; h@ -& A= =* =* l@ f@ :; y; X* *& j@ Y~ xh.p% k&..) u- yh.zh.p$ )* g|.l<.p@ ,& h# h# -& l@ <7.'h.e# >* =* 8@ +a.e@ k@ p[._{.ha :&.62.]].@* 2'.g).!..CU IZ Ah.Bh.Ch.~g Ke.Dh.Fg.`g. h.Eh.wd.mk Y+.KB GW l@.l@.< .!%.Ac tb 0e.kH vV $c $c ub nc y>.nc (g *e =d nc nc nc jZ :f Fh.X=.Gd 4b.Ho xW ic.Gh.Hh.97.n8.-7.B% E+ ^$ 9{ g1.S+ o2 Ih.K+ 6h._5.m4.O+ S+ p; Y+ [$ %@ Q+ ($ G% a> /- P+ Y+ T+ S+ n}.#f #f <|.U}.^l B[.Jh.Kh.=8.^# 4* L= o o e 6 c 7 e 6 ", +"98.vh.|1 )~ 2! q, ^, ^, 2^ 9| *) *) <{ 2^ <{ <{ <{ <{ <{ <{ I/.J$ N<.2^ J$ J$ R@ R@ L$ L$ ], ]^ L$ BN X! I/ ]& 0' I/ 0' 0' 0' = # + I/ I/ # + + p9 # Z, 5_ J$ R@ # > . ' ' ' * - V@ [* S$ S$ o! $ # . o! $ ; > T@ & . H= $ - ^& Q$ S$ > Z, & > S$ ; 05 ; - X@ > ; U@ S$ S$ ] ; ; . | ; ) 2 | N$ { 2 X@ /& 2 N$ I= 1 { 2 ~ X@ ; f] [ <& 2 [ 7- } 9 6 4 } 6 } d W@ 6 4 8 d 4 ># ## 3* 7 ( d ,# [{ ># d e a d 7 a ,# a 0 A~ ~# L= ,# K/ 6 L= 0 Vj n c ~# y2 8x Y$ -) ]# ]# 2, n^ r 4* s> r q ,> `$ `$ m h ^# w 1Z t w m :# ^# cb.w @= )> w /U {& F= z B C` F= F= A$.'&.a7 z z _}.8* n! O@ 8* $T O@ HV V M M V .@. V .@.c- c- |# iI SO *I :#.:#.aV *I oY *I aV B$.oY zS YX BX #N #N ^P )Q )Q ^P ^P ^P +Z +Z +Z bV sZ bV bV -X mL mL AS hT mL $N AS AS CX CX HQ HQ CX BS HQ aS :+.BS )O ST EX =S tM dS 5..RL 5N dS kT fK 0R 6N |M 6N 0R 6N 6N lU lU 9N gK uH 2M uH uH tH KK KK tH (P qL KK (P LE IF ~I 4C qL Oq yH =v on ~I ~I Oq 6h Oq ;u Uv [e 13 =i ms =i Qq s9 Qq Qq Wf Wf g& t# v# =h.h& V= s# x# q* Ve.q. _% x# x# x# pg.Ve.)e.Ng.pg.Lh.!e.qg.gb.>d.qg.>d.Lh.qg.gb.Mh.Sd.5f.5f.rg.v7.id.Ob.Pg.`f.aa.Ob.Nh.Oh.x; id.Af.Af.aa.Af.aa.Af.Td.Td.06.Af.aa. f.m$ p$ f.x; l~.#* ,h.n$ Ph.94.x; a@ k$ a@ h$ a@ m$ .& 5@ k$ Y% o$ 8f.h$ .& =* h$ o$ >* Z% 7@ .& 0@ >* a@ -* 0@ kW )* k@ p@ b& k@ ]* u$ ,* h@ r$ i> e@ sg.u$ Qh.Rh.FZ :'.s#.p-.e~ Sh.$5.*& b& {* {. 4_ ,& {. v@ ;& e@ :. i@ =* 0@ y= &3.e@ -* |@ ,~.,~.s{.t{.x,.4@ U9 Th.1L @) qQ Uh.Vh.Wh.Xh.Ke.3|.Fg. h.Eh.Yh.@H q..o@.o@.Nj $$.^@.!%.tb Ac x&.S..!=.$c +l #H %e xe &e nc P+ {- ^l of Oe {}.o}.~}.H<..i.^/.C `$ h ~# e c o ~# o a g ", +"*) 2! )~ |1 *) 2! 9| w9.9| 9| 9| 9| <{ 9| 9| 9| <{ <{ J$ <{ I/.R@ R@ 2^ <{ J$ J$ ]^ R@ BN jP BN G= 0' 0' ], L$ 0' p9 0' 0' 0' 0' + K$ R@ p9 + K$ =[ jP # + #S L$ + # > + [* [* [* $ }, > CN Q$ S$ S$ Q$ # 1* S$ 2) > |* ; k) k) # + Z, T@ > ' & |* |* ' +i.. 2) o! Z! ] | ] | H= . T- & ' U@ - | S$ 2] ] 8- `@ ## 7- [ ~ 2 U@ U$ ; - [ [ 5 { R$ ( J) ## ~ I= D, 1 D, d 1 ( 1 6 B; Y> 3* a k 7 d } 2d ,# N' D, a 0 3] ># a' ,# ( Y> 0 0 6 0- 0 0 a L= c L= K/ 6! 6! L= h s> s> ]# h n a }& e<._# Vj m r ,> 1; b' m h Q(.Z$ :# G 4* 1Z :# $S :# w w F= /# G {& G /U /U /# C` {& F= a7 a7 a7 a7 K I 8* $T 1& c- c- V V V V c- V Z .@.4>.4>.4>. V z .0S i5 oY B$.*I A: oY L *I I#.A: MW XX (U +-..Z ^P `I ^P )Q #N 3d +Z RT RT )Q -X -X bV -X mL $N AS AS mL mL $N hT $N .` hT HK CX .` HQ BS cQ _U cQ ST |Y =R #Z iT ed.[M Zz =S nP 6N Zz 6N fK 6N nP |M fK ;S 6N 7J 1M uH tH tH JQ KK uH /P vG 2M qL IF hs KK LE wH ;N LE Iw Se 8C 6h on 8C 8t Oq Se 8t F3 =i Wf [e [e Wf [e [e =i [e [e [e u9 }e [e x1 8h K4 E0 ~b ~b 6^ M3 K4 =/ $0 =/ j{ v' y{ H^ j{ j{ H^ H^ H^ i] w> V' q) B{ {% Z- {% {% Z- h. Z- {% {% {% _g.i. i. f. Z- f. m* f. q# S= l. S= @i.o. K; Ve.Ve.q* q* Ve.q* x# q* 4f.4f.h& og.pg.>d.pg.me.qg.Lh.>d.qg.>d.qg.qg.>d.id.`e.#i.rg.Ob.v7.v7.rg.id.v7.Ob.v7. f. f.]e.Af.,h.x; k$ k$ f.aa.Af..g.`e.,h.k$ e@ -* Af. f.06.k$ h$ m$ m$ l~.#* Y% Y% 8f.Y% Y% h$ Y% h$ a@ Rb.nH .& ~h.d@ )* >* o$ 0q o$ =* e@ 0@ .& k$ m$ o$ k@ p$ X* l@ p@ $i.X* -& *& *& -& !* >* {* t$ #i.%i.*Y 1!.x^.P_.`# M+.i@ t$ {* O- ~. a. u@ t@ l@ l@ 0q -& E9 o@ 7@ 4@ n$ d@ )* l$ h$ ** L- G'.R* J- g).Z#.IY |' '..&i.~a.Wh.*i. h.Eg.=i.-i.Yh.;i.R..[ ._ .~#.U@.^@.@$.o%.!%.x&.Ke ti c*.[R jZ ub %e %e =d *e i.7T ,i.'i.87.)i.b7.!i./6.B- A+ B- M+ L* ^ b0.R4.V+ S+ E% {- g1.S+ R+ Y+ X; s8.Q+ R+ N+ ta R+ P+ X+ ta Q+ a> ^l C[.b[.n4.+8.t8.~i.^1.Q@ `$ c n 9- W$ e V$ c a j ", +"*) ^, ah.9| 9| 9| w9.9| 9| 9| 98.w9.<{ 9| 9| 9| <{ <{ <{ 9| <{ L$ R@ 2^ 2^ <{ J$ ]^ J$ 2^ 0' l) G= I/ 0' ], BN 0' p9 0' 0' 0' 0' + K$ + 0' 0' Z, K$ ]& 1) # = 0' p9 % [* # Q$ o! (& & # P$ ' ]& ]& V@ > . V@ o! ; L$ $= U@ > > S$ $= > T@ ] $ * - . $ > (& & H= ] > U@ S$ ) Z! N$ W@ ^ ; & & | N$ ] N$ 8- N$ ~ ) 2 W@ ) %= N$ b{ ~ 2 [ ( | ~ ) | } | B; < 1 5 Y@ ## *# { V~ 7 5 ,# 6 )1.J] [{ } 6 <& } d a d 4 0 a q> 6 !# q> 0 b ># L= c 6 e !# 0 K/ ~# h |& |& c Y$ 0- r |& ~# r 1; Y$ p Y$ n `$ @= b' b' p 2, ^# /# w u t :# D /# /# ,! ^# G /U G {& '&.w {& F= z a7 a7 a7 1& K a7 1& $T a7 '&.m;.c- c- c- c- c- .@. V O@ c- V V V c- v@.M }Y 3& B$.oY *I aV *I oY U;.*I WX 3d oY y+.BX )Q )Q RT #N )Q ^P ^P ^P lP +Z @N qH bV bV -X hT AS $N $N mL CX AS hT CX hT AS CX AS hT aS ST FN _U tZ |Y #Z qY tM dS CR 6N kT @V fK fK nP 6N |C {i.-S fK 6N JV }M qI tH KK uH uH tH 2M uH vG uH !I hs hs KK !I IF !I hs 8C Re Oq 8C LE Jc Iw on on ;u Oq Oq [e [e }e =i =i }e Wf Wf }e }e 9t Te G0 Mc og 1e E0 ~b J4 t/ 'i M3 =/ =/ M3 S: j{ H^ H^ j{ H^ j{ H^ j{ i] X~ #~ m~ c/ k] Z- Z- Z- Z- Z- h. Z- Z- {% Z- Z- Z- f. i. q# ]i.g& g& J; l. l. t# l. ]i.l. 2f.Ve.2f.Ve.q* q* h& q* Og.dh.:= Ng.pg.>d.qg.>d.>d.Lh.>d.>d.>d.qg.>d.Lh.]e.Nh.>d.>d.`e.v7.n$ Ob.Ob.x; Ob.`e.,h.v7. f.x; n$ Af.k$ k$ x; k$ aa.Af.Af.^0..& w; ~h.Af.Af.Y% Y% e@ k$ m$ Y% Bc.#* m$ o$ k$ m$ $5.w; 0@ =* 6@ d@ 0@ >* h@ =* ,W ,* h$ *& ,* ^i.,* p$ e@ kW e@ X* d@ m$ ,* u$ /i.)* X* f@ g@ l@ k@ <. l@ (i. ] C=.1!.h>.n{._i.&; `% 9& ^. x$ j- -& (. ). o@ c@ 09.p@ u$ i@ ** :i..& m$ e@ r' 7@ #* j$ 3}.|'.6J /].-%.xT f= c zc S..}i S..[R e*.jZ #H #H &e nc nc nc nc nc *e _f nc nc mc y$.3i.Jt 3R 4i.Ho {r 1^.Vc.h6.B7.-7.X5.)] B- B- B% P> {- O+ 6h.T+ P+ 5i.)] Q& R+ 6i.R+ V+ n}.T+ $) L* Fs ]w ($ U+ U+ R+ Q& of U}.#<.7<.iP 7i.0h.8i.D ^# h m r o ]# g g V$ e ", +"e^ *) 2! $8.9i.*) <{ 9| 9| 2^ 9| *) *) <{ <{ 2^ <{ jP 9| 9| <{ L$ L$ *) R@ J$ <{ BN G= BN k3 T*.R@ p9 0' J$ 0' L$ 0' p9 L$ 0' 0' ]& # V@ X! 0' # # # $ ]& $ $ = K$ + [* k) }, & > . & > ]& $ # $ . . > Q$ . . +|.$ ]& > & Q$ $ |* T@ o! H= [* $ - [* Q$ N$ . - > Q$ ] & ' $= |* ' $ . U@ > ; > ~ I= O$ U@ | 2 ^ | ~ [ W@ ( { ( 2 ~ / ) ( < [ } [ I= $# 1 W@ $# Ev 4 $# d ( d ,# d ( 6 5 } 6 ,# 7 d k e ~# 0i.7 a 0 ~# a i 3] c tA 3] t' n z: L= ,# n )# ]# ]# ,> ~# ,> p! `! !# 2, p % Y$ q 4* xE 2; `$ xE /# ^# t t /# w F= {& $] D F= {& G a7 /U {& C z W) B F= a7 a7 z 1& F= I JW V V c- c- c- c- c- c- c- M c- V =X c- x .)W >z V |# L <_.m,.y .Q oY y .*I I#.BX c~.(U oY #N )Q )Q ^P RT 'Q ^P ^P )Q )Q -X EN $N <#.EN 6B $N mL hT $N .` $N +@.hT $N hT aS CX CX aS MP DS aS %T _U iT CR @Z IV ~Q BR }M CR |C |C |C fK fK fK |C lT ;S 9R 6N 1M uH tH uH tH jy KK tH vG uH KE =H %J [z KE IF IF Uv LE 2h on ~I LE LE %J Oq ;u 6h 8t Se [e Wf }e =i [e }e .8 _4 ;u }e 9t ai.Pd.bi.=i E0 Nd ~b ~b K4 x1 8^ =/ 8^ M3 T/ 0d 4< j{ j{ y{ y{ i] j{ H^ m~ V' ci.N] m~ #~ Z- c. {% {% {% {% c. Z- Z- Z- f. f. /> q# m* /> q# _g.m* l. r# J, Ve.l. di.Ve.Ve.Ve.Ve.2f.2f.Ve.Ng.ei.:= di.pg.Mh.Xe.>d.qg.qg.qg.qg.Lh.>d.>d.Lh.5f.Xe.qg.rg.v7.v7.n$ -* v7.x; n$ Ob.m$ x; ,h.Af.x; Af.x; `e.x; 06.k$ 06.o$ Y% Td.;* o$ Bc.Af./M p$ =* 7@ o$ p$ h$ o$ m$ )h.h$ 5@ Y% o$ ;* a@ m$ >* A= *& g@ f@ i@ p@ r$ y; X* h@ f@ h@ 0@ o$ -& u$ b. *& h@ l@ -& -& f@ F9 p@ >* j@ fi./i.q* gi.u!.Y<.~].g>.:~ -~ hi.h# ii.c_.2@ j- {. B= k@ i@ d@ -& e@ X* o$ ,* {].d@ e@ /M 3@ p$ $5.84.:@ ${ m:.-%.xT qN ji.ki.li.mi.ni.Fg.`g.1i.Eh.NO W` Q .SZ tf GW U@.l@.oi.!%.k..YN .$.5j [R [R -d ~d #H ub rc nc *e nc nc nc nc nc nc nc we +I De ,q >i.'q :w pi.qi.b7.ri.si.m4.B[.B+ w~ B- )] g1.O+ /$ V+ /$ +/ C- _5.ti.6i.R+ Y+ L+ X; X2 O+ rN g1./- R+ @@ R+ /- o}.Oe ui..N iP vi.wi.yf.^# D ^# Y$ o g g o a j 2* ", +"*[ )~ 98.xi.98.*) *) z~ <{ *) 2! <{ <{ I/.)~ *) *) <{ <{ <{ R@ J$ =$.J$ ]^ l) <{ R@ I/ L$ R@ [n BN 9| 0' 0' I/ G= ]& k3 0' L$ L$ + X! V@ Dv + # # # = # # * . # ]& # Q$ > . . # . |* # o! . > $ . ; . ' H= ; > * > 9S ' Gc |* ^& Q$ S$ A; N$ & U@ S$ > $ > # > ; R$ U$ Q$ ^& N$ ; > . & & | %= J) ; h) ; | [ <& ~ [ Z! { } *# ~ Z! : : X@ ## } $# 5 *# 6 d ; { V~ ,# J= `@ ^ [ 3] } } ( } b } ,# 7 :& a x0 7 e 6! V$ 0 0 a 6 ,# k A~ k a e k e a e n }& ]# s> r 1; n ,> K/. % p D 1; cj ,> 4* 4* 4* yi.b' ^# C :# {& 1Z w C /# {& G b' )> z /U G :# B z F= /U n! a7 a7 '&.K B $T T^ n! T^ 1& .@..@.M c- c- M c- M c- M .@.c- V 8* E$ i5 :#.SO aV QT AX aV *I A: BX +-.U;.BX ^P )Q ^P ^P RT )Q ^P ^P +Z ^P RT EN sZ NW RT EN mL $N hT AS hT AS AS AS AS AS AS cV hT aS aS 3Z |Y `X dS |Y qY =S #Z ~Q {Q fK &@.G` 6N fK nP 6N fK |C Yz 9J |C 7N 9R jy jy uH tH vG tH vG jy KK =H Yf.IF uH uM vH hs hs IF wH *A wH LE Oq %J Uv %J %J %J zH }e =i on [e [e =v }e :4 [e la 13 [e ai.ai.Qq Yf J4 [| J4 [| [| x1 =/ K4 Oc >2 S: j{ y{ j{ j{ y{ y{ j{ y{ i] i{ ]] m~ !! ]] Z- Z- Z- {% c. e. {% {% {% {% Z- g. q# q# f. i. q# i. q# m. r# ]i.zi.l. t. Ai.q* Ve.Ve.Ai.q* 2f.Ve.q* )e.Bi.2f.Lh.qg.-h.qg.gb.Lh.>d.Lh.Lh.qg.Lh.qg.Pg.v7.Mh.Ze.v7.n$ v7.0@ 0@ e@ `e.0@ Nh.]e.Pb.hi.,h.Af.`e.Y% Y% x; -b.k$ x; Ph.o$ Q9 m$ hb.Af.o$ =* #* w; e@ m$ c@ ,h.d@ o$ =* n$ m$ d@ e@ p@ :; u$ ,W Y% ;* A= ,* 0@ m$ A= z= j@ >* >* 0@ +& cK W* f@ r$ p@ u$ D= ~* ~* b. x$ h@ o@ ~> q* Ci.:^.P].Di.s#.&%.1!.a@ k$ $5.P].0@ -& t@ q@ k@ e@ ^0.j$ -O 8& r@ %& l$ p@ t$ .& d@ p@ 6@ R* K' }@ %p !..RS AU Ei.Fi.Gi.lh. h.(f.`g.+.l+.]@.9#.Q$.!%.Ac #e.MI .$.e*.[R #H #H y>.y>.xe *e _f Hi.nc T=.nc rc =d uc Oj Ii.$O Cd Ho Ji.xt y1.gg.b7.^6./6./6.w~ B% w~ `] `U pM S& Q+ Y+ G% T+ L+ `2.Ig.`U vC V+ +/ 5i.Ki.Li.Mi.A` vC be P+ a> ^l iP {}.Kd Ni.]7.]7.Oi.-h.D p h p ~# g c n 7 9- 9- ", +")~ Pi.^, $8.2! 5' 2! *) 9| 9| 9| 9| 9| <{ <{ *) <{ <{ ;b J$ 9| <{ =$.*) 2^ BN 8S J$ R@ ]^ BN 0' G= ]^ I/ 0' 0' G= + [n R@ J$ ]& ]& # # ]& Dv # # $ 0' + !, # k) # $ # # + & & = |* S$ Q$ = T@ > [* # > & . $ & ' S$ > ] S$ k) U@ - ' U$ U$ . & A; * [* U@ = S$ X@ R$ U@ & 2) ) N$ =' ~ U@ .# 2 2 2 N$ 7- J) H= ~ X@ X@ X@ ) ( 8- 2 { ) 8- Y@ 5 N$ +# /& } U$ ~ 1 2 : } 5 $# [ 5 Y@ 7 1 3* 7 9 5 ( N' ,# 8 q> Y> d 4 ,# 8 ~# 6! k 6 b a' c z: L= ~# |& 0 c ~# ~# }& p z: _# 2, 2, Y$ s> ~# h h p Y$ h `$ G#./# @= ^# _# 1Z G#.:# :# ,> C G F= F= F= F= C E F= a7 a7 a7 a7 F= C` A$.'&.$S O@ $T 8* _}.'&.8* M o^ .@. V .@.c- H$ c- c- V V 0S Qi.Ri.>z SO Ri.QT AX iU A: 3; L *I oY oY oY BX qF #N _M ^P #N #N ^P `I )Q RT #N )Q -X -X 9$.lP bV -X AS AS $N $N hT mL AS AS $N AS AS hT hT cQ ST cQ _U &S ST dS ~Q #Z dS =S 7N 5N =S fK fK fK nP 0R |C Zz lT nP fK oL tH tH tH vG uH tH tH vG KK 5D 5D LE LE Qe KE wH IF IF 2h wH Iw Uv 9C qL 6h 6h wH 9C wH Oq ms [e }e [e [e }e [e Wf }e 13 13 Te E0 Wf u9 >2 8^ 8^ 8^ 8^ 8^ 6^ 8^ 8^ M3 v/ y{ y{ %^ H^ H^ y{ j{ j{ y{ y{ A{ m~ !! m~ {% c. {% c. c. Z- h. {% c. e. {% i. i. Z- g& i. q# /> f. m. k. f. [c.x# Si.[c.Ve.A= Ve.2f.Ve.Ve.2f.2f.2f.di.di.Ti.Lh.;h.Mh.qg.Lh.qg.qg.qg.Mh.Lh.Ui.Pg.n$ qg.qg.Vi.Ob.v7.v7.v7.,h.06.x; Mh.(i.Sg.x; k$ ,h.p$ k$ =* #* ,h.Af. f.06.Af.q$ h@ o$ #* .& =* '* h$ Y% 0@ q$ x; #* &9.p$ k$ >* 0@ o$ o$ =* k@ >* ,* g@ p@ m$ u$ X* a@ e@ p@ p@ :; >* X* cK :; i@ )* h@ j@ t$ t$ j- l@ k@ l@ r$ )* q. Wi.Xi.-|.R:.*~.N+.R:.,h.A= -|.-& E9 {* -& x@ 55.F9 8@ 93.e@ v0 j@ m$ '* kW p@ j@ h$ .& .& 7@ P* J- 2'.^ .N} Yi.Zi.kh.`i. j.mZ `g.c !%.Ac YN tN e*.$c [R $c -d ub O;.%e =d [* ]& ]& T@ V@ + Q$ $ S$ & + + + + = > S$ & + }* $ = ; > N$ H= | & & | & S$ U@ Z@ R$ ; ] X@ Q$ & 2 U$ U@ ; ~ N$ ; ~ N$ Z! N$ { ] U@ W@ ~ 4 < /& ~ 4 | U@ g{.4 d N$ ^ $# <& ~ 8- < V~ } J= 6 ,# 4 6 D, 6- 1 } a d 5 [ $# 3* 7 7 ,# $# 0 k 7 7 a {# a ~# s> e {# {# 6! {# ]c 0 ~# 0 n r n s> h `! -) s> 0- m m m 2, $] l n^ t b' $] G#./# b' D w 2; G /U /# :# /# F= <, a7 F= z z z a7 /U w /U a7 a7 a7 a7 '&.JW JW HV a7 c- c- c- c- c- JW V c- KW V 0S 0S V )W 5 .i5 iI iU A: A: L J A: 3; I#.*I 3d yS BX #N ^P #N )Q )Q #N #N ^P ^P ^P RT EN -X <#.+Z mL $N mL $N AS hT AS AS hT AS hT ZX aS .` 3Z cQ FN %S sM DS sM HN dS dS dS {Q |C CR |C :C |C fK fK 6N 6N 6N -S 6N -S FJ tH tH tH tH uH tH tH uM tH qL 5D 2h IF LE hs hs Qe LE wH %J IF ~I IF Se *A wH on ~I ms on [e 13 Wf }e }e 13 [e [e kj 13 Xf ]} [e *j.=/ T2 _| t/ K4 [c 8^ 8^ =/ M3 [c 1{ 1{ s^ j{ y{ H^ j{ H^ j{ i] !! w> q) z{ {% {% c. c. {% {% {% Z- ]> Z- c. Z- q# Z- i. i. Z- r# r# r# ]i.f. =j.2f._% @i.q* 2f.2f.2f.Ve.-j.Ve.dh.;j.di.di.!e.qg.=* Sg.Lh.qg.qg.qg.Lh.qg.Lh.Mh.#i.Ob.Lh.Ze.v7.=* v7.v7.n$ f.#i.m$ k$ `e.Nh. f.`e.aa.Af..& x; -* o$ ,h.m$ k$ k$ m$ .& m$ x; =* =* ,* h$ =* o$ 8f.g@ .& ** d@ o$ ^0.'* kW o$ j@ p@ :; c@ >* && e@ =* X* >* p$ W* f@ X* =* >* r$ >* >j.X* p@ l@ b. {* o@ i@ ,j.r$ t$ f@ 8! 'j.N].R:.^<.Y,.)j.g>.B2.>* !j.r@ Ug.x$ ~. s@ zi.(. Pg.X<.b@ ]0.~* ~* g@ >j.A= p@ 0@ o$ a@ j$ H3.P+.l` Q&.~j.{j.]j.^j./j.(j.mZ h.c ,c ~%.~%.kH [R $c $c $c -d nc nc =d =d P+ a> V& U& Q+ 6i./- o}.!}.s8.s8.<|.k7.G<.V0.iP 39.^# t 1, o ~# r c X$ o a } ", +"$8.9| e^ |1 |1 9| <{ 9| 9| 9| <{ 9| 9| <{ 9| <{ 2^ <{ <{ |j.9| <{ $8.jP R@ ]^ R@ J$ l) R@ ]^ .( I/ I/ ]& I/ 0' I/ R@ L$ I/ 0' L$ I/ 0' + K$ # 0' 0' # # 1) p9 + . $ 0' % k) # $ . = + V@ - [* o! & ' . + > Q$ Q$ - ; > $ 2) - = S$ S$ > = ; N$ P$ U$ R$ N$ o! ; - . * %= > ; U$ U$ X@ N$ ~ xS Q$ ] | X@ =' > - Q$ [ X@ ; X@ ~ { 4 { | 2 < ( X@ X@ [ 7- 1 < 5 /& ## 7 a J] < j $# 8 D, B; a' ,# d 6 <& 7 ,# 8 0 k 0 3] Y> } 9 e q> ,# ~# 6! {# 0 j c Vj {# h 0 0- ]# L= z: p h h p n^ 4* % b' n p q 0- ]# b' b' D `$ p 4* t `$ `$ )> 2; /# E #] z /U z F= z {& z /U z z a7 /U a7 B '&.1& 1& AR /U 1& M V c- M KW 1& c- c- M V c- .@.>z M V 1& :#.SO oY Q B$.*I *I *I *I #N 3d (U ^P ^P ^P ^P ^P ^P #N #N #N ^P RT _M EN jU H&.6B mL mL $N AS $N -I AS hT hT AS $N BS AS AS CX BS FN cQ &S FN DS ed.tZ dK nO 'O IN dS Zz fK Zz Zz |C fK 6N EJ |C |C }M QP $J uH KK 1M tH ;E 5D tH [z 2h [z hs (P wH 2h hs Re !I qL Oq IF Oq Re Oq LE %J Jc on Oq Wf Wf Oq }e }e }e 13 13 }e [e 9t :c d.Lh.Lh.Lh.Pg.qg.5f.`e.v7.;h.Lh.n$ Ob.v7.n$ x; e@ o$ `e.6j.x; hi.x; Af.,h.k$ wS -* .& Y% o$ =* o$ d@ ,h.k$ #* q$ m$ ,* o$ m$ Y% -* X* h$ o$ Y% d@ k$ )* && ,* e@ d@ >* >* d@ 0@ *& j@ ~* l@ && =* ^* t$ f@ h@ 7j.r$ :; :; 8j.u@ o@ p@ <. u$ ,j.-& u@ -& 9j.0j.(/.^<.^<.n{.&%.Q_.[@ +] j$ && -O y= -& -& u$ ~* +& $* %& +& ~* A= l$ ,~.:; e@ j@ y; 7@ 62.w6.X-.]G qN aj.bj.cj.dj.ej.fj.mZ _X c Ac ~%.~%.c*..$.e*.$c yh #H rc nc y>.rc _f T=.*e nc nc ue vV T=.kc y$.gj.su Ho Ho hj.B,.ij. i.B7.c7.j6.X5.jj.4h.X5.-7.T! Q+ O+ G% G% G% B[.O6./$ o}.#) g1.Q+ R+ L+ Q& U+ a> vC pM S+ vC vC {- G<.of U}.{}.b[.o}.{e.5* 1; 1, h a h 9- $# j a 6 ", +"98.98.^, z~ |1 *) 9| w9.9| w9.9| 9| 9| <{ 9| <{ J$ w9.<{ I/.9| J$ <{ <{ 9| ]^ BN <{ *) J$ R@ R@ I/ 0' I/ I/ I/ I/ I/ I/ 0' 0' ]& ]& I/ ]& # # # [n = # =[ #S + * $ = # $ [* =' k) # + # $ V@ * $ T@ . $ # $= # . > # S$ Q$ # & - $ |* > Q$ > U$ $ [* R$ X@ > & - ; Q$ ~ X@ N$ | ) ; ~;.%= { %= ; | X@ N$ & N$ R$ U$ ; [ ## [ d } 5 [ } F:.{ H= 2 4 } d J= } [ } / : d $# 9 d q> } 5 d 6 7 0 5 /& k b q> 3* 6 a 0 {# 0 {# {# 0 e 9 b ,# e e Y0.L= }& |& ;= n ~# s> Y$ r s> Y$ s> k0.v ,> n^ s> ^# L= ,> b' m p! D `$ u t p t #] G F= t F= w :# {& W) G z 1; z z '&.'&.a7 z kj.w n! #= P%.T^ c- c- c- c- ;O V 8* c- c- c- c- JW AX V c- 5 .d{ z .aV oY *I B$.B$.B$.*I *I qF G$ A: yS #N #N #N )Q #N #N #N #N 3d )Q RT lP H&.lP bV $N $N mL $N hT mL mL AS AS AS CX hT ~&.CX hT cQ 1Y cQ _U iT ST =S BR dQ CR -R |C ~Q 5N fK Zz Yz |C Zz Zz 6N |M |C fK >X 7a.vG uH tH KK uH uH vG tH TL IF sI hs hs hs 2h Li wH 2h Se %J wH Oq Re +: Se }e Se Se 13 F3 13 F3 13 }e }e }e }e }e 8d :9 og [e bi.D4 [| E0 E0 t/ 6^ 6^ s^ M3 =/ s^ y{ j{ y{ 1{ v/ j{ j{ H^ j{ m~ c. k] !! V' B{ Z- c. {% c. d. d. c. Z- Z- {% q# q# i. i. i. q# i. g. lj.]i.t# Ve.2f._% di.Ai.dh.Ve.uh.2f.2f.mj.)e.Ng.dh.nj.zf.>d.(i.zf.Lh.Lh.Mh.Lh.qg.Lh.qg.>d.Ze.e@ oj.qg.v7.v7.n$ n$ k$ p$ m$ v7.b@ hi.v7.x; m$ o$ 6j.b@ 06.k$ 06.06.,h.#i.m$ =* o$ ^0.Y% q$ 0@ =* ,h..& =* ,W A= h@ i@ k@ ,* p@ =* A= l@ )* ,W j@ l@ =* p@ -& A= a. =* j@ p@ m@ r$ F9 @& i@ k@ pj.t$ r$ j@ h@ p@ p@ xi t$ u@ -& S= qj.T>.(/.R:.4#.4#.-|.,~.L- ** h@ %9.y= i@ c@ i@ r' ** _].8@ >* h$ `% p[.,~.9@ +] h$ 0@ y= Y% R:.`,.-Y ]J ^i rj.1h.Vh.Gi.;n ;i.sj.;i.@H jY o@.o@.GW 2x $$.tj.o%.>c k..!%.x&.~%.5j [R [R $c yh #H nc nc #H rc nc =d nc *e nc :f Zs mc ,e we uj.vj.N}.Ho wj.xj.yj.zj.b7.Zc.Aj.Bj.Cj.Dj.ge.b7.3h.S& Ej.k= F% S+ Q& u2.DL O+ Q+ L+ /- /- S+ P+ R+ /- o}.!}.n}./- S+ vC n}.a> iP <|.Y3.!}.,).^# q Y$ *= j c o )# e V- g ", +"9| xi.e^ 2! xi.9| |1 w9.9| 9| 9| <{ 9| <{ <{ <{ <{ <{ J$ <{ <{ <{ l) ;b <{ <{ 2^ <{ ;b <{ ]^ R@ G= I/ I/ I/ BN #S I/ ]^ L$ 0' ]& G= I/ 0' + # # 0' ]& # + ]& 0' K$ + k) . V@ 2) k) = + ]& + $ # V@ 0' 0' $= ]& 0' |* # = S$ + Q$ & . 5! > Q$ ; - N$ X! ; > > R$ P$ & X! > R$ > ; R$ ] 05 ~ U$ | ~;.U@ ; | ] { 2 N$ `@ | N$ 4 xS ~ 2 ) 1 <& { 2 /& ~ W@ 2 N$ [ 2 /& } | 2 4 7 6 <& 4 1 Y> 7 k x0 ( ># q> 6 /& ,# 6 e ~# ,# i ># 6! 2* 3] ,# ( a k 6 i !# ~# o Vj E, E, a n _# h -) }& s> 0- ]# z: h 4* G#. % 4* 1; % p ^# p Z$ m % Z$ s> b' t 4* #] t G w :# E |Z /U z z G z a7 I K 1& z a7 n! A 1& Fj. Z c- V V V =X c- AR O@ =X V z Z.. V B).4>.0S i5 Z..B$.:#.:#.B$.SO A: A: oY 3d BX (U y+.^P )Q ^P )Q #N #N #N ^P ^P RT !Q EN '*.bV $N $N mL mL AS $N mL AS AS $N AS hT aS .` hT _U DX &S BS =S cQ sM GN DS [M IV fK oO ~Q Zz Yz Yz fK eK Zz Zz Gj.fK fK nP Hj.jy vG vG jy vG vG jy jy KK KE KE IF Qe y4 IF wH Uv 0J on B0 LE on Re Oq LE Oq Se on 13 [e /c Cb 13 F3 13 [e 13 13 }e v9 .8 13 F0 1e ~b >2 E0 t/ 6^ 8^ %^ 8^ M3 %^ j{ {> 1{ y{ y{ @~ y{ j{ H^ y{ V' e. M) !! #~ {% c. c. c. e. {% e. e. d. _g.i. q# d& q# q# i. q# q# /> ]i.]i.2f.Ai.Ij.Jj.Ai.2f.Ve.-j.2f.Ai.di.2f.Ng.Qh.zi.nH Sg.>d.(i.zf.Lh.Mh.Lh.Lh.Sg.Lh.#& Lh.Ob.Mh.#i.v7.v7.Ob.v7.x; e@ p$ v7.o$ =* =* Y% aa.`e.=* Af.x; k$ o$ m$ o$ x; 6j.o$ m$ =* && X* A= :; =* Y% ,W i@ e@ =* nH =* >* h$ h@ d@ j- ii.j@ u$ W* *& ,* m@ j- j@ m@ -O f@ r$ A= r$ u$ F9 l@ kW ~* k@ 7j.b. t$ E7 p@ F9 q@ ~* w' Kj.Lj.Mj.n{.}*. < _.Nj.&6.n{.n$ 94.[@ h@ o@ t@ q$ 0q <: >* +& )* k@ sg.6@ y= X* ,W &* 2@ A4.93.p{.C%.xT Oj.Pj.Qj.Rj.Gi.Sj.sj.W` W` [ .SZ m@.>+.Nj p@.^@.< .>c $n tb ~%.H(.S...$.$c $c $c yh #H rc nc rc *e nc we {l we nc :f we Tj.lc c Uj.yd.wt Cd &x Vj.j].Wj.Xj.K6.ge.Aj.h3 I7.ge.Yj.Ao C+ `U E% Q+ G% R+ ^l /$ Q+ G% T+ T+ T+ P+ a> S+ S+ a> vC a> N+ /- g1.n}.a> h1.<|.h1.o}.xc.D -) n e g r c f o a 2* ", +"q, ah.|1 e^ *) 9| |1 |1 9| 9| 9| <{ *) 9| 9| 9| <{ ], ]^ <{ <{ 9| J$ I/.L$ R@ 2^ 2^ I/.L$ ]^ R@ ], I/ #S I/ L$ #S #S G= 0' 0' 5_ I/ 0' 0' 0' Z, # + p9 Z, # ]& Z, + # = Q$ > # # $ $ ' . = . Q$ =' $ > Q$ Z, V@ |* = . # Q$ N$ $= > $ = > U$ A; X! > - $ & U$ ; P$ & Z3 | > | > > & ~ & N$ ] Z! ] { 2 2 Z! | X@ & ~ { ~ 2 2 ~ ) 2 ~ ~ S$ [ { 7- { { /& 4 [ ~ ## 2 : 7- 6- k 6- => ,# ## 1 ## 1 } 7 7 a 0 a 9 7 6! 6! a 7 d a 9 ~# ,# 6! ~# {# 7 n Q{ 0- Q{ [& o -) |& n ~# ;= r h 0n 2, Y$ Y$ 1; 4* 4* 2, D^ xE /# V| :# ^# 4* 4* F= 2; w w C #] G #.1; :# w B z F= '&.I 1& F= a7 a7 I z JW T^ T^ c- HV HV c- V c- Z V =X V 8* 0S v@.o^ z .I{.Z..SO x .QT aV SO A: L A: aV BX yS (U zS ^P ^P ^P )Q ^P ^P )Q )Q ^P #N ^P qH lP <#.lP mL 6B mL AS $N :M HQ rH AS $N hT AS Zj.HQ cQ :M _U FN -I QL sM dK lI dK ~Q IN Yz HN [M Zz dy |C fK -S 7N eK `j.0R |C oL vG jy uH vG uH vG tH tH ;E @A 2h 2h KE vG hs 2h Qe hs IF on Yf. k.Se Se on on on on Se }e /c [e [e 13 [e }e 13 }e 13 F3 _c .k.9t +0 Eb s/ 6^ :5 =/ 8^ 8^ S{ 8^ 6^ U' ^= {> 1{ {> {> i{ y{ 1{ j{ q) e. ]> !! !! #~ {% c. Z- c. c. e. c. c. c. c. e. q# f. c. g& f. lj.3j.g. t# i. [c.[c.r# *h.=j.2f.Ve.=j.Ai.Ve.q* Ai.Ve.Bi.mj.mj.Mh.(i.Mh.Mh.Ti.Mh.Nh.5j.b@ Ti.Pg.v7.Nh.#i.hi.A= b@ x; v7.#i.k$ m$ =* =* m$ n$ Af.x; k$ x; d@ 0@ 06.,* =* p@ =* ,* #* =* o$ d@ m$ #& Af.m$ +k.A= p@ g@ sg.A= p@ ,* Y% 0@ f@ -O :; t$ ~> Y* :; W* u$ u$ t$ p@ ,j.l@ k@ i@ h@ -& k@ t$ F9 l@ /i.~> t$ D= j- !* t$ j- uh.@k.E* 8=.vg.z* `: :+ P).#k.85.6@ H3.w6.j@ -O =* h$ o$ -|.2@ $& r' w; j@ =* e@ }Z wS ^0.9@ b$ g).e= g+.$k.CP %k.&k.*k.=k.-k.@H d @H [ ..s >+.tu tu /F 9#.o%.o%.!%.Ac ~%.YN _N 3&.MI $c e*.yh #H ub nc =d nc *e Zs ve nc mc nc nc {d rc ye ;k.>k.3R ,q &x ,k.'k.)k.!k.si.j6.~k.{k.Yj.N6.]k.^k./k.bK /$ P> A:./- V+ Q+ G% G% R+ /$ P+ T+ V+ T+ Fc S+ R+ T+ R+ P+ (k.iP Zi iP {}.X3._k.`f.C p % e h [& o Y$ 7 X$ a ", +"q, 2! xi.e^ e^ 98.xi.z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ R@ 2^ <{ <{ J$ <{ ;b <{ <{ *) J$ <{ J$ R@ R@ R@ R@ R@ L$ 0' 0' L$ BN I/ 5_ L$ 0' 0' 0' 0' Z, # 0' ]& Dv + ]& + # I/ + }, % $ {c o! # # $ + S$ |* . > V@ # . > S$ . > & > V@ ]& > Q$ . |* > Q$ Gc U@ %= N$ N$ . | P$ ] - > P$ ; %= & T- & . 2 | ] =' & ) R$ P$ ~ ] P$ [ J) ( H= X@ ~ { 2 { { 1 { N$ ^ 2 [ 6 } { $# 1 ( 6 d d , 6 a [ k ( -# ( d 6 7 3* =# 5 == 6 {# < k 0 6! } 0 6! 7 ~# ~# !# 0- 0 c n L= t' h -) -) h n^ L= Y$ V| n^ }& p 1; cj 1; xE -) ,! 1; y t @= @= 4* p /U w $S 2; F= F= {& B #] w G z B a7 a7 1& $T a7 '&. Z A$.8* 8* AR T^ JW c- c- c- .@.M M M c- c- c- 0S 3# =K V 0S Q iU *I L A: A: *I *I aV iU zS p*.qF 3d ^P ^P ^P #N _M ^P #N )Q )Q ^P )Q bV !Q _M $N mL 6B mL AS AS $N HK AS mL :M FN J J HQ BS FN _U HK d.Mh.Mh.Lh.#i.Lh.Lh.Mh.Lh.v7.n$ 5j.`f. & A= hi.n$ 0@ ,h.)* e@ Af.p$ ,h.=* p$ 0@ =* x; z= * >* sg.e@ e@ i@ >* h@ p@ n$ >* p@ i@ e@ ;* && =* m$ +& t$ j@ j@ ,j.j@ Z* kW u$ ,W a. m@ t$ m@ $i.u$ -& E9 l@ n@ ~* l@ ;& ~* o@ ]* ~> ;& {* [k.}k.h/.3T &P V# #$ #$ wg.<: Ga.6@ 62.u,.=* 0@ ** 5@ t$ 5@ l$ 5@ P{ 2@ /M q$ i$ V1.l$ Z<.b$ ,~.n, Z#.^ ..Q dY |k.1k.2k.3k.X+.@H q..=f o@._J l+.U@.$$.^@.4$.!%.Ac tb YN _N _N YN .$.$(.[R 3$.#H #H #H =d wd lc *e we nc :f *e lc 7<.~}.n}.;[.Oe g0.U}.D8.^# p p `$ ~# r p X$ o o &# ", +"*[ 2! 98.*) e^ &[ q, 2! <{ *) 9| *) *) 9| 9| 9| <{ <{ 2^ <{ I/.I/.J$ 2^ <{ <{ <{ <{ J$ jP l) R@ V! 2^ L$ BN R@ ]& 0' I/ R@ L$ ;b 0' I/ 0' I/ # # 5_ 0' = ]& ]& 5_ $ # = # 1* V@ & $ > 2) }, $ S$ |* = $ - . ' R- ' $ . > U@ > + . . $= $ # $= X! > |* |* $ - H= U@ | ] U$ ; & 2 'W J) { ] | ; - 2 %= X@ J) S$ { 2 ~ | ~ /& X@ Z! | { [ 1 ( ( } g{.N$ $# } 5 d ~ -> 4 } ~ B; { 2 ,# &# /& a /& b d ## 3* &# < 7 a d J] ]c ~# 0 e tA i ~# ># a 0 k z: t' ~# [& K/ |& |& ,> h s> r ]# r r h Vj h ,! V| 2, 1; #| % ^# #| p ^# /# t /# p! 2; $] {& /# /U G /U #.F= {& {& z {& z #] z z a7 z a7 z 1& U!.~& z V O@ Z M V c- >z c- Z c- M V 0S AR >z 5 .QT Q Q Oz d{ SO Z..aV SO aV y+..Z (U XX )Q #N ^P RT +Z ^P ^P )Q ^P )Q +Z @N tw )Q EN mL mL 6B $N mL AS :M mL hT AS HQ FN BS AS _U ST cQ FN GN ST #Z HN iT HN ~Q 'O |h &N Zz fK |C Zz |C 6N Yz EJ IN *N RL !O uH jy jy vG ~9 jy )I vG vG hs 2h 2h JK 2h IF 2h Iw 2h 2h Se Yf.(9 Re Se F3 Se on on +: 13 [e F3 }e }e [e }e [e [e [e v9 6^ J4 )b w9 8^ t/ G0 1e >2 8^ 6^ =/ 6^ L4 s^ @~ 1{ a; v' 1{ y{ 1{ !! y{ i] 1{ ak.6. i* c. c. c. e. {% e. e. Z- c. e. c. q# q# d. '' g. 3j.t# r# lj.&h.m. t# uh.bk.ck.dk.Ai.Ai.-j.-j.-j.Ai.2f.-j.Ai.mj.(i.wS zf.Mh.Lh.Mh.d@ wS Lh.hi.Lh.Lh.b@ >* k@ d@ e@ n$ n$ m$ m$ >* ,h.v7.p$ ,h.hi.:; d@ e@ sg.u$ h@ 0@ m$ m$ h@ ,* m$ U* %& m$ ,* :; %& e@ z= i@ wS =* :; p@ p$ :; d@ &p X* j@ j@ ek.l@ m@ %& j@ j@ t$ h@ cK m@ ~* s@ t$ t$ o@ ~> p@ !* ~* :. -& ~* t@ cK ~> 0& o@ fk.gk.A%.m$.u,.$; M .A%._/._].1!._/.Di.A%.hk.[@ o$ j@ e@ 99.H3.[@ W/.-|.,~.:i.94.S9 2'.d$ |@ #5.^].h+.IY 8P ik.jk.kk.lk.mk._ .Y+.jY 4G ]#.l+.p@.$$.~#.~#.< .o%.Ac k.._N _N sf S..;c [R R;.+l $c -d jZ =d f*.oc . (& = & [* . $= S$ Z, > & # > & ' - > S$ > - . Q$ U$ Q$ H= U$ S$ Q$ X@ 2 | & H= Z@ H= Z! | 2 | R$ N$ R$ ] 2 ~ | ~ ~ 2 | *# 2 | | < 7- 2 ( ( ( B; 5 4 | 2 ~ $# 6 $# 2 7 : x0 V~ / d 5 i 3* ,# 6 $# < 2 } J] 6! e 0 6! k 0 q> 7 uk.X0.a ~# ~# 0 k z: K/ 3] ~# L= |& n c c |& s> Y$ -) r h |& 2, r `$ ,> 4* 4* #| b' m 1; ,! #] 2; m 2; 2; w F= #] $S N 2; G F= 2; z E z a7 z O 3d qF (U BX ^P ^P #N )Q )Q )Q #N )Q ^P )Q @N `I _M +Z -X $N $N 6B $N $N :M 6B AS hT AS {z $N jU :M cQ FN cQ MP iT sM &S GN iT =S mP Zz 8R ~Q dy Yz Yz Zz Yz dy Yz RL Yz *H 'I jy ~9 vG vG 1M ~9 >K vG tH qO ;1 hs KE x4 2h 2h Qe %J IF Re Jc << Re +: on Se F3 13 F3 13 13 13 13 F3 13 [e [e 13 ka 13 S{ R: S{ @0 _c +8 D4 I4 u/ 6^ 8^ h{ I! I! s^ 1{ y{ @~ ^= 1{ m~ a; a; @~ a; {> 1{ )! A{ 8! c. e. e. e. c. c. e. c. 8! e. vk.g. '' o# i. w' e& wk.w' :k.bk.xk.2f.Ij.m. Ai.2f.-j.Ai.2f.2f.2f.Ai.2f.Ai.A= ;j.Mh.d@ yk.hi.qg.d@ Lh.wS wS #i.Lh.p$ ,* p$ i@ V* =* e@ =* >* ~h.=* >* b@ #i.Nh.=* d@ .& h@ =* i@ m$ o$ sg.c@ +& 0@ .& b. u$ >* ,W &p u$ t$ t$ A= p$ o@ n@ j@ X* -& '* m$ o@ m@ F9 u$ b. a. p@ r$ ~> >* l@ {* ~* >j.h@ F9 ~* o@ zk.m@ ~* -& -& s@ o@ v$ {* l@ q@ 1. UV d+.|!.:^.7= H> Ak.x^.3}.99.Bk.1!.<: 6@ l/.Q9 ~* &9.e$ {).e].I9.i$ 4'.B2.2@ |@ W% K- 2'.m:.{].^ .7W QS Ck.Dk.Ek.Fk.Gk.Vk SZ P}.;r l+.2x /F /F @$.~#.Q$.>c !%.8E _N _N _N YN ;c [R 5j T$.yh -d -d -d :f oc nc *e nc ve $e :f we >d /w ve TD Hk.4d.7T [..Ik.Le.N'.Jk.Kk.3h.B7.c7.j6.() `U B% D+ F) p9.K+ E% G% Y+ vC E% V+ O+ a> P+ S+ Q+ L+ ($ T+ R+ Q+ P+ !i.Lk.;,.Mk.o}.^l #f ,[.v* p C; X$ X$ h j Q{ r d d } ", +"*[ z~ xi.xi.9i.*) w9.9| [) z~ z~ *) *) 9| *) 2! 9| <{ <{ <{ 9| <{ 9| J$ <{ <{ <{ R@ 2^ J$ <{ I/.G= J$ <{ G= I/ R@ ]& I/ I/ I/ I/ I/ L$ BN 0' = 0' # K$ p9 p9 5_ * Z, J$ # = = Q$ [* ]& # R@ $ > # + # S$ $ k) $= & . + + + ' $= # - ' U@ . = & U@ S$ U@ Q$ ' Q$ P$ ~ X@ %= | ] U@ N$ ] ] N$ S$ X@ N$ | ; & | 7- S$ X@ Z! ) ] .# | I= ] ~ [ 2 & 4 d { /& : { 7- ( /& ## 9 Z@ { < ## ># Y> 6 d ,# b ># )1.6 -# 6 d 7 d ,# 9 6! tA q> 0 x0 i k 3] 6! ,# ,# 0 a 0 0 L= ~# ~# ]# Y$ n^ r [& s> -) }& % `$ ,> ]# r ^# 1; #| b' 4* b' 4* @= b' #] t /# 1Z F= /# {& m m ^# ^# :# B /# F= G F= z /U C` a7 a7 /U a7 a7 ).@ .P%.a7 O@ 8* O@ >z V c- M c- V V c- V V 5 ..@.(#.y .L AX Z..A: U iU iU A: *I r! ^P BX (U oY )Q ^P #N ^P )Q ^P #N #N ^P )Q )Q EN mL ^P 7s $N $N $N mL $N AS $N hT AS $N J AS AS AS aS _U %S 3Z .J J cQ ~Q sM HN HN Yz 'O ~Q cy Zz Zz eK 6N 5N Yz oL Zz Yz eK ~9 >b uH tH jy ~9 pL tH jy jy ;1 ;1 ;1 hs ;1 hs 2h Li KE Li Se +: F3 B0 +: W^ +: 13 F3 }e +: 13 +: F3 F3 13 F3 .8 F0 }e S{ 6^ t/ v9 [| S{ 6^ I! 6^ 8^ , f' 8^ 6^ I! y{ 7) 1{ g' n# ^= a; ^= ^= a; ^= 7) i* !! i* e. e. c. e. w' e. c. {% c. c. c. g. g. q# '' g. g. :k./> k. ]i.Nk.Ai.2f.uh.Ok.Ai.-j.Ai.Ve.Ai.-j.Qh.Ai.+k.mj.$z Sg.Lh.nH wS Sg.+k.Mh.Mh.wS p$ wS Pk.m$ e@ Pk.b@ p$ nH #& h@ x; d@ m$ e@ Sg.h@ p$ =* =* p@ ,h.o$ 0@ c@ ,* >* p@ =* m$ d@ i@ +& z= >* u$ $i.j@ i@ =* F9 l@ j@ f@ f@ -& -& p@ j@ W* F9 m@ o@ t$ -& m@ -& F9 t$ s$ m@ x$ -& t$ s$ W* ^* l@ ~> o@ -& ~> O- m@ s@ Y* t@ 4,.Qk.N].`(.=>.e@.{<.p{.1- U[.R:.F3.[7.>* 3@ 1@ .& Rk.(; GY FZ 8@ L- _{.8@ 4@ 2@ 9@ y] 3}.84.)..IY pN ]/ Sk.Tk.Ek.Uk.Vk.MC X+.4G l+._d p@.=F /F 4$.< .t:.7f $n k..8E _N YN sf tN n+.[R $c yh Wk.~=.-d wd :f =d nc nc $e Zs _f ve gc Bf vd 0b Xk.(a.4b.Yk.Zk.Ad.Bd.`k. l.}8.-7.c7.N6.hg.-7.N6.`] i3 94 G% /$ O+ E% pM n}.O+ S+ a> vC S+ R+ Y+ F% Z+ P+ E% vC $:..0..l.0<.n}.~}.n}.v_./] ^# o c h 0 e a c e $# o ", +"z~ z~ |1 $8.*) e^ )~ 9| |1 <{ 9| <{ 9| *) 9| 9| <{ *) <{ 9| 9| <{ <{ <{ 2^ <{ I/.J$ 2^ 2^ jP 8S 9| 9| ;b I/ I/ R@ 2^ 0' 0' I/ G= #S 0' J$ I/ 0' K$ 1) + + Z, 5_ # # + # # . k) + ]& . + + . $ # $= # . # $= $ !, % $= S$ [* V@ > U@ . . & U@ U@ S$ (& > S$ ]& & P$ ; & N$ N$ ; - N$ U@ N$ S$ , 4 .# R$ | 2 Z! U$ X@ J) ~ ; ~ ; W@ P$ ; ~ { ; { d [ ## { 2 7- { %# 2 9 ( { /& $# J= Y> d d 3* J= 0 Y> d 3* a 6 D, i ,# 6 3] 3* ,# 0 k g } 0 K/ e D, ~# !# 6! 6! z: n z: n ~# s> n Y$ Y0.-) l 2, p 2, n n m b' 4* ),.b' b' 4* b' +l.m `$ b' /# {& 1Z #] {& t ^# D 2; z E /U B F= F= F= /U '&.'&.a7 a7 '&.a7 N X8.a7 O@ A G 8* JW A V JW c- V c- c- .@. V >z .@.QT Q L QT 3; d{ SO *I L *I Q BX ^P oY *I XX #N )Q ^P 3d ^P )Q )Q ^P ^P ^P @N @N 7s tw 6B mL $N $N mL $N $N $N AS UO HQ :M hT $N hT aS ST sM MP %T sM K @A x4 2h hs x4 IF B0 LE ;1 Re Re }e B0 Re F3 +: 13 +: F3 13 }e }e 13 13 13 13 D4 .8 C0 :4 =/ S{ -k :9 8^ 6^ I! 8^ 6^ 6^ 9; t/ 6^ =/ 7) ^= f' 7) 6. ^= a; !! ^= a; ^= U' V' h* d. 2j.d. d. d. e. e. d. d. e. c. '' '' q# q# d. e. q# e& 3j.r# ck.xk.p@ -j.xk.ck.Ai.-j.Ai.+k.2f.Ai.zi.Ai.Ai.sg.mj.Sg.wS nH Sg.Pk.qg.Lh.Mh.Mh.Lh.Mh.Sg.#i.b@ i@ m$ v7.m$ =* d@ ,W :; ,* X* '* d@ p@ i@ sg.Y% #i.e@ b@ d@ i@ '* g@ e@ X* y; '* p$ i@ j@ l@ -& t$ f@ b. A= )* && *& t$ t$ j@ W* f@ W* t$ && j- l@ t$ E9 ~* F9 j- t$ t$ o@ <. <. -& t$ y; -& -& E7 u@ 3. F9 q@ 8j.(. t@ P:.m{. _.X<.9= W# B2.@l.2!.i$ :1.wg.5,.$5.99.i|.B2.#l.$l.a@ 0@ =* o$ l$ ** 9@ &6.2@ 4'.+=.C*.g+.kR SR %l.&l.1k.*l.=l.-l.SZ SZ .s l+.:d *f l@./F < .o%.>c >c k..o+.Ac _N S..YN ED .$..$.$c 3$.-d zh -d =d =d =d *e nc Zs pc ue l.k).,l.}f._~.*0.j6.Cd.w~ >7.w~ h3 A% C+ ]7 a> Q+ /$ {- {- {- P+ L+ T+ T+ /- /- S+ P+ T+ Q+ vC vC .N 7<.O+ 7<.pM .N ,7.9h.l* D _# c [& tA ~# 6 b V$ b c ", +"|1 *[ 9i.*) xi.9i.z~ ah.2! |1 )~ 2! 2! w9.9| 9| 9| *) <{ 9| J$ 9| J$ ;b J$ J$ l) ;b R@ 2^ 9| <{ ;b 9| 2^ L$ p9 BN <{ 0' I/ ]& L$ .( I/ I/ I/ ]& 0' I/ + Z, L$ 5_ + $ * L$ 1) . + # o! . . . ' S$ + > V@ ]& + V@ = $ V@ $ [* . ]& - $= & V@ + = - ] Q$ Q$ |* T@ . & | U@ U$ | U$ > Q$ | 2 P$ | b{ H= H= ) { xS 2 `@ U$ H= | - Q$ | { Z! /& ( { X@ [ 4 4 ( [ *# | ~ $# 2 { J) 4 } ( 7 ( 9 ,# 5 &# ## V) J] 8- 5 ,# ( 7 3] 6 7 7 6 0 a 6 ,# q> W$ ,# 6! K/ 6! ,# 6 a 0- 0 ~# K/ 0- ~# S^ 2, r s> ,> n r % m '> #| r yi.b' q ^# r m w 4* /# 2; /# w C 2; G )> w F= z F= F= z B a7 /# z a7 F= z '&.z I $T 8* n! 1& 1& c- c- JW $T /U V >z V V T^ 0S z ..@.d{ 0S B..aV 3& E$ aV L &{ oY A: qF 3d qF (U c~.#N 3d #N pF #N ^P #N ^P ^P #N ^P )Q # .lP @N mL EN $N 6B $N :M :M mL $N AS -I aS cV :M HQ J lI 2..eQ DS DS HN iT dK =S kT -R {Q RL Yz Zz Yz Yz |C Zz 'I 7J tG oL >b ~9 >b 1M qI jy >b vG jy jy >K ;1 x4 r/ Qe 2h 2h Se 2h Iw y4 y4 Re Re F3 +: +: W^ 13 F3 F3 F3 +: F3 F3 A} _| .8 Mc D4 .0 'l.:4 t/ '! I! 6^ I! '! , )l.t/ l~ M5 9; ]= g' 1{ a; ^= ^= 6. ^= ]= {> !l.i* 9. g' Y~ 2j.e. d. e. d. e. e. d. e. ~l.,' ,' d& '' e. g. m* g. {l.ck.&h.]l.-j.Ij.@i.2f.=j.Ai.+k.2f.-j.A= -j.;j.dk.dk.Qh.wS Qh.Ti.Pk.+k.^l.Mh.Sg.d@ =* Mh.,* sg.>* m$ m$ =* d@ e@ d@ e@ d@ 0@ >* e@ ,* p$ wS f@ A= #& /l.i@ m$ d@ e@ =* '* sg.t$ j- t$ -& ,W A= F9 o@ ~* &p l@ ~* F9 h@ '* f@ l@ o@ h# a. ~* -& -& ~> m@ ~* F9 r$ r$ ~> o@ s@ {* u@ l@ p2 l@ b& `* v0 o@ s@ h# =& 2. (. (l._^.C2.^; _l.:l. $ $ . > - . ; . $= U@ - - $= Q$ U$ > S$ U$ U@ & 2 ! R$ o! R$ ] 2 2 ) ~ Z! 1 ( N$ $ ~ { ~ ~ 1 Z! 5 W@ { X@ $# { { 6 6 => 9 5 4 == } $# `@.d } d 6- q> x0 J] 7 7 k ( } tA a ,# c6 0 ,# i tA 7 {# L= e b 6! {# K/ 0 !# tA 0 c |& -) ~# s> o/ Y$ }& n^ Y$ c L= 0- ,> 2, 1; m b' `$ ^# 1; 4* /# p! 4* q p G u {& xE w8.z F= F B :# G z a7 #] F= F= z F= z z n! F= N@ AR a7 JW 8* T^ c- KW 8$.JW c- c- 3# AR _+.O :}.PT V .@.d{ iU L aV *I aV SO *I oY 3d G$ *I qF #N 3d #N _M ^P `I #N ^P ^P ^P lP RT -X ^P @N 6B mL $N $N $N -I mL 6B UO BS {z {z HQ :M HQ FN J FN aS dS _U ~Q &S ~Q ~Q 8R dy dK [M dy oL |C Zz dy |C ]Q 9o Zz dy ]z jy jy vG jy >b ~9 jy jy jy Ab 2h 2h ;1 =H k.x4 ;1 2h ;1 B0 2h Iw Re 13 F3 F3 13 Uv on }e 13 13 13 A} 2~ (9 (9 C0 2~ s/ 6^ u/ .k.I! S{ '! I! '! I! , 0, g# I! l~ f' g' f' U' a; a; g' g' 1{ 1{ a; 0. V' !! Y~ d. d. 9. d. o# d. d. d. d. e. e. e. {l.bk.d. '' g. ,' '' m* e& g. dk.A= =j.{l.bl.A= ,W Ai.Ai.sg.A= Ai.=j.cl.+k.Sg.dl.Mh.;j.+k.%& Mh.d@ wS '* j@ wS p$ x; b@ ,W `e.=* && p$ 0@ && A= g@ d@ =* p$ =* :; l@ f@ >* d@ j@ sg.,* d@ ek.>* j@ l@ xi l@ ~* =* f@ >* j@ A= $i.~* j@ p@ *& r$ && l@ m@ a. l@ o@ `* N- l@ ^* u@ R= s@ -& m@ =& l@ o@ F9 F9 E7 -& -& -& u@ ~. ;& x$ t@ h# 32.`(.C2.C2.el.fl.gl.hl.a@ 89.l~.x= #k.&* 83.m$ )* 79.$z :; +& )* 6@ 9@ 7@ K- il.<2.jl.r-.['.!.._S UQ kl.2k.4l.1k.ll. y o@.P}.KB ;r tu p@.lA ~#.~#.< .k..k..Ac Ac _N _N _N _N Bz n+.[R [R [R $c #H -d -d =d yd {l nc *e we =e =e vd [f Ff |b wd dc 4b.3b.vt h4.ml.*c.nl.@h.ol.^6.Bj.pl.hg.`U B- A+ A+ D+ Q+ O+ Ej.~}.~}.o}.R+ L+ Q& O+ Q& 7H Q& L+ Kb a> P+ L+ n}.K6.!c.0<.b[.^l (i O@ n h _# 2, h 0 e 8 a } c ", +"vh.ql.z~ *[ vh.xi.rl.)~ $8.sl.9| 9| 9| 9| 9| *) w9.<{ 9| <{ J$ <{ R@ <{ <{ <{ 9| <{ .( R@ BN J$ I/.l) BN ]^ 2^ I/.;b 2^ L$ 0' G= ]^ I/ 0' [n R@ 0' 5_ 0' 5_ 0' 0' + # # + L$ % + + + # # # Q$ V@ # ]& + [* > = # 1) ' = - $= + $ |* & N$ [* |* U@ > & R$ . ' N$ $= P$ %= ] & S$ > . > ; - | *X %= T- | X@ U$ | /& ~ 2 N$ X@ ^& ~ N$ N$ ) ;# ## [ 2 I= <& 5 ~ / /& N' <& $# 5 } d /& $# 7- 2 X@ 5 [ Y> d $# Y@ ,# ># 6 3] $# e ,# ,# /& 0 D, a 6 a 6 0 q> 6! !# [& {# a 0 0 0- L= ~# |& h K/ Y$ |& r r n^ ,> r 2, r p tl.xE % r p q m ]c b' t w /# 4* t C :# Z$ 1; {& F= B a7 % D a7 a7 a7 z a7 '&.a7 K a7 a7 z I 1& AR c- M JW V M O@ c- M V V V KW AX z .p=. V .@.L :#.QT E$ L SO Q L A: BX 3d qF (U yS 3d RT ^P )Q )Q ^P ^P ^P ^P lP lP @N lP lP $N 6B $N mL mL $N 7s mL mL :M J Ou HQ mL CX _U J FN cQ iT .J dK HN QL ~Q Wz dy Yz 8R |C dy Yz dy Zz |h dy Yz |C Bw nI tH vG jy ~9 jy vG tH vG ul.>K x4 hs ;1 Ab x4 r/ ;1 Li ;1 6h Jc k.Se W^ +: B0 +: F3 +: +: W^ +: F3 F3 F3 F3 S{ b* _4 _| S/ F0 (c 6^ D4 J4 I! I! I! I! 0, f' h{ I! 0, f' {> k# a; 6. g' 1{ 1{ a; a; 0. d. a; ^= Y~ d. e. d. d. e. 9. e. d. d. 2j.k* m# g. g. d. g. q# vl.bk.wl.{l.wk.=j.Ok.'' bl.zi.-j.-j.-j.,W -j.mj.A= Qh.#& >* Mh.Sg.Sg.+k.^l.Mh.wS Sg.+k.'* i@ %& e@ #& xl.=* r$ i@ ,* >* =* l@ y; &p d@ d@ b. h@ h@ A= A= A= g@ i@ =* d@ u$ F9 j@ j@ n@ $i.m@ &p && n@ m@ j@ t$ l@ p@ '* o@ u@ Y* -& {* u$ N- ~* l@ s@ a& t$ o@ u$ u$ o@ F9 f* ^* j@ ~* s@ s@ m@ 2. a. v@ ,% ~* =& q@ {= 39.d+.94.H3.il.Gf.{).`% 3}.2@ l$ 6@ P].wg.#* c@ 7@ *& S1.k$ &6.z= 9@ i$ |- v!.]].9@ 4@ `,.r-.[$.5W yl.zl.2k.5l.Al.Bl.IU o@.KB .s ]#.p@.p@.lA @$.< .,o ,o !%.Ac >c YN hE YN S..S..;c n+.e*.yh yh $c -d =d =d =d :f & > . $ & ; ] }* k) U@ & =' | ) ~ | ~ ] ~ N$ | *# I= R$ ~ N$ U@ ( ~ ( { 2 { /& { *# J) } { { ( 6 ( } { 1 } d 6- J] &# a' 6- D, 7 i M' 1 } } Y> 3* k a ~# k e ~# ># ~# k a !# 0 ~# {# 6! 0 {# K/ L= ~# n n Y$ 2, c ;= n^ x9.s> c{ r Y$ Y$ p n^ 2, x9.t b' D n^ 4* D m /# 5* ^# t F= w s> F= 2; {& F= G ^# a7 z a7 G /U z K 1& ).'&.#] K JW AR O@ O@ a7 Z .@.M c- Q@ H$ Z c- 1& V d{ z .c- y .Q QT 0S L A: *I A: L Q oY .Z Vf iU p*.yS )Q #N ^P #N ^P #N ^P ^P ^P _M EN lP bV lP 6B mL mL mL $N TO mL $N :M :M Ou Ou -I $N FN FN Jl.:M BS EA QL Wz sM ~Q Wz :C Yz =R RL dy Zz Zz dy Yz Yz |C Yz Zz /Q 'I jy jy ~9 ~9 jy ~9 KE tH >K =H hs |3 Qe Ab r/ 2h B0 ;1 x4 B0 hs Se B0 Se Re F3 13 +: F3 F3 A} F3 +: mg 13 S{ Kl..8 g{ +0 'l.I! , I! 8^ '! , P= '! 0, g# 0, I! 6^ s^ ^= ;% a; 6. ]= 1{ {> a; 8. ^= Y- @~ a; {> 9. 9. e. c. 9. e. e. e. e. c. Ll.m# Ml.~l.Nl.q# g. e& k* k. k. e& Ok.-j.Ok.Ol.=j.mj.Ai.Ok.&& A= 9f.Ti.&& dk.&& Ti.i@ dh.sg.wS d@ wS i@ Pl.hi.h@ p$ hi.wS #i. & p$ i@ A= d@ p$ && h@ sg.sg.=* j@ i@ h@ X* d@ j@ xi X* i@ i@ d@ ~> ~* )* i@ u$ l@ A= m@ ~* u$ t$ R= :; l@ m@ t$ t$ l@ $i.l@ o@ m@ u$ 8j.~* t$ j- <. r$ d* p@ o@ o@ o@ F9 ~> s@ ~> {* Ql.o@ h# o@ 1. h# (. {= ]l.E* hb.w; Ze.Rl.Cc.Q9 5@ -* 0@ ,* ** 9@ G3._; i@ 0q #* 8@ 6@ e@ f@ Nj.n/./].e]./]._].`,.p$.XV 4T Sl.Tl.Ul.Vl.*l.Wl.tf ;r o@.tf m@.l+.]@.^@.~#.lA ,o Ed Ac k..Ac _N _N _N YN sf Bz n+.[R $c e*.yh -d =d =d =d *e nc *e mc ve {l Ad ,d c Hd mc Xl.Za.4b.&x Z{.D!.Eb.)i.El._~.*0.G|.j6.() X5.~}.B% {k.C+ D+ S& Q& Q& B[.^l O+ n}.C- Yl.Q& L* Zl.`l.cM n}..N ]7.4<.t_.gE 6b.{}.g0. m.r q h r c g ,# [& 7 6 c ,# ", +"9i.vh.9i.z~ |1 xi.|1 e^ ^, xi.*) <{ <{ *) 9| 9| *) 9| w9.9| jP 2^ 2^ J$ 9| <{ 2^ <{ J$ r4.J$ I/ .( <{ .( L$ 2^ BN I/ I/ ], BN p9 L$ G= 0' 0' L$ 0' 0' 0' $ # Z, 0' 0' # # + L$ + = + + % V@ ' # # V@ & . $= V@ . S$ > [* > + = = $ U@ U@ . > S$ > > T@ A; = $ & - o! > ] ' S$ U@ %= X@ %= ~ Z! H= Z3 Z! X@ ~ ~ ) [ ; { F:.X@ ~ P$ ] W@ N$ ) ) { ~ ) ( W@ X@ $# $# /& 8- b ( } ,# ( X@ { / J] 6 $# /& 5 a ,# ,# 6- a -> 6- k d 7 a k tA 7 ># M' 7 0 a a 0 z: 0 a k ~# K/ 0- C; a K/ 2, r |& n p h a' }& ;= 2, n m .m.V| m 1; 2, 4* s> 4* p s> p t 4* w {& n^ $S /# U*.F= F= #] t F= F F= '> '&.A z F= z a7 a7 1& $T w M c- M c- n! Z 8* JW c- c- V c- c- V M .@.O@ 3& L L d{ SO A: 3; A: iU qF 3d r! oY oY pF ^P )Q #N ^P #N )Q 3d #N #N qH @N .V qH 6B mL mL 7s 58 $N 6B $N mL $N {z Ou FN :M J J J cQ FN sM cQ b jy jy ky x4 x4 ;1 x4 ;1 2h y4 Re hs Re ;1 F3 Re B0 +: +: W^ w{ W^ +: F3 +: W^ F3 13 66 k~ F3 Lc =_ S{ I! '! _9 I! I! 6^ '! )l.6^ 0, 9; I! , 9; 6. n# f# ^= f# ^= ^= ^= ]= ^= a; ak.h* @~ d. 9. e. d. e. e. e. 9. d. d. m# +m.d. o# k* ,' ,' '' '' d& :k.]i.9f.-j.Ai.=j.Ai.A= ;j.+k.,W ,W +k.d@ Ai.,W Qh.Qh.sg.d@ d@ '* @m.>* =* d@ A= =* h@ A= p@ && i@ && t$ x; d@ d@ i@ A= e@ d@ && t$ u@ j@ f@ >* u$ e@ l@ b. ~* ~* k@ u$ u$ F9 /l.xi j@ ~* ek.i@ m@ _s l@ ~* s@ u$ l@ &p h@ u@ s@ -& a. j- m@ h# u@ [y ~* a. k> l@ q@ s@ M- l@ t$ s@ 3. 1. h# :. s@ h# 2. = x$ a& L+.3@ m$ m$ #m.v6.h@ &9.o$ l@ j@ &p 69.i$ $m.05.Y, i$ 8@ &6.k@ a@ 9@ 9@ @* 4'.X-.R:.Q&.Q&.TR CP Df.%m.&m.*m.=m..j.8#.>+.o@..s l+.$$.U@.lA lA lA lA >c o+.k..Ac Ac _N _N YN YN S..kH e*.[R e*.+l -d |r ub rc Zs :f _f mc kc pc ob Yb c `b Tb -m.su Cd {r W9.@j.Jk. i.;m.Z).C!.c7.N6.B% hg.P& bK B- C+ A+ `U E% pM pM pM ^l |f.]k.>m.K* N+ ,m.'m.)m.pM ;[.7<.C<.!m.*1.}|.o}.&g [c.`$ h g >> e 7 &# M' b 6 &# X$ ", +"9i.vh.ah.*[ 2! xi.&[ e^ *[ *) 9| |1 <{ 9| 9| 9| 9| 9| *) *) 9| $8.V! I/.<{ I/.<{ <{ R@ ;b J$ G= R@ <{ R@ 9| 9| ]^ R@ I/ L$ G= p9 jP G= 0' 0' L$ I/ 0' 0' 0' + + I/ 5_ + # + $ V@ # = = # 1) 2) ' > !, [* =' > = ' H= o! ' $= Q$ . Q$ & |* > $= S$ > S$ Q$ 05 & * ; . ; R$ %= P$ H= X@ %= ; ~ N$ N$ & . ) . & ~ ] U@ T@ U$ /& Z! 2 |, N$ U$ | { | %= 2 | | ## 2 { $# { 4 $# 2 2 } { ( | | 2 /& [{ 6 i $# Y> c6 6 ,# $# ># 7 V) 3] 6 :& c6 V$ 0 k i ~# 0 ,# a ~# 6! [& n ,# ~# n n Y$ 6! 0 h W$ 0 `$ h ~# p n Y$ p `$ ,> K/.4* ;= m /# 4* t b' 4* /# 4* 4* w F #] % w /# ^# F= F= /U F= F= a7 p F= /U a7 w a7 z z z A AR 8$.M c- V c- c- 8$.1& 8* V c- c- .@. V c- z .3# A: SO AX V SO A: A: A: SO aV #N 3d oY WX ^P ^P #N ^P ^P )Q 3d #N ^P #N #N @N _M `I @N mL 6B 6B mL mL 6B $N AS 6B J J {z HQ J FN sH FN J Wz FN &N Wz ~Q nO HN oO Yz dK *H Yz Yz Yz Yz dy Yz 9o eK 7J eK |M eB ~9 ~9 jy vG jy jy jy `9 A5 r/ x4 ;1 2h 2h x4 Jc Ab =2 B0 Re +: B0 W^ +: F3 +: +: +: W^ W^ w{ +: +: 2~ _| 5^ I! A] =_ 6^ , '! I! I! '! I! 6^ I! l~ g# h{ 0, f' f# n# n# g' k# ^= ^= 6. 6. a; ^= 0; i* ^= p# d. e. d. d. 9. c. 9. 9. k* m# 9. ,' ~l.{l.,' g. '' g. w' ]i.:k.=j.-j.Ai.Ml.dk.xi && -j.zi.fk.+k.xi ;j.Ok.~* f@ Pk.wS Sg.nj.#& h@ =* =* ~m.p@ Pk.-& b@ xi && A= l@ j@ A= j@ )* +k.t$ -O && A= h@ e@ :; h@ ~* ~* :; f@ u$ W* N- >* && $i.>* ~* t$ ~* j@ t$ m@ o@ j@ l@ t$ j@ u$ i@ u$ u@ -& h# <. -& ~> k> h# >& u@ o@ h# x$ t@ 9& {* d* u@ 3. 1. u@ s@ |. t@ u@ *% s@ q@ q@ b) 86.i@ i@ {m.]m.h@ '. -& x$ E9 :. p@ X% -|.C2.** ^; l$ _{.^m._].9@ |@ a@ 3@ Q&.[&.'` VV i; VV /m.3l.(m._m.:m.P..VW tf KB VW m@.(@.p@.]@.lA lA ~#.< .>c k..k..k.._N _N YN S..S..ED [R e*.[R yh +l nc =d =d wd te $e {l /w kc vd [f gc `b 5b 'e su o F! W$ o 7 ,# k }{ o g ", +"z~ ah.ah.z~ *[ 2! vh.*) *) <{ 9| xi.<{ 9| 9| 9| <{ <{ 9| 2! ^, 2! J$ ], ]^ <{ <{ J$ J$ jP <{ 2^ J$ J$ R@ J$ L$ G= R@ 0' I/ L$ I/ 0' I/ I/ 0' 0' L$ [n K$ 0' = # # = 0' # # $ M$ # J$ Z, k) T@ Ez 2) . * [* & . $= . 0' . - . $ ^& $ $ # - %= U@ & . - Q$ ; U$ & Q$ > R$ H= N$ N$ . Q$ ; ; U@ %= P$ U@ & | ^ ' %= ] N$ 2 { ) N$ { [ ] U@ U$ ( 2 { [ 7- 7- ( d *# 5 } 2 ( Y@ } /& ## 6 J) $# ~ 2 d m*.d 3* $# 4 Y> a 6 6 ,# a 8m.a a a 9 ,# {# 0 a tA } a' a tA ~# ,# ,# 8 c n ~# 0 ~# s> !# {# h r a n V| 2, ,> p `$ 2, p V| 4* 4* 1; 4* y 2; t :# ;) w F w /# ^# ^# 4* :# 2; F= {& z c- c- c- M V .@.5 .A: SO :#.Q A: *I A: *I d{ Q G$ Vf j#.oY |3.3d #N 3d ^P 3d #N )Q #N ^P DN @N @N lL #N mL mL mL mL mL mL $N AS 6B {z J J J J J Ou FN J ,I .J J @J dK DS Wz cy Yz dK [M Yz Yz Yz Zz |h Zz *H Zz $J eK &i Br 82 ~9 >b jy ~9 vG vG jy ~9 ff x4 x4 2h ;1 ;1 L] ^5 x4 =2 r/ =2 B0 =2 W^ w{ W^ W^ +: F3 W^ +: F3 +: F3 5^ 9m.Md _9 S{ I! g{ S{ , I! , I! '! I! I! ., f' l~ 6) h{ @~ g' {> U' 8. 7. ~= 7. k# 6. 0; Y~ 0m.p# d. m# 9. 9. m# 9. 9. d. am.d. o# ,' d& Ml.'' g. '' fk.*9.ck.ck.]l.A= Ok.d. -j.bm.A= i@ ,W ,W Ok.&& A= sg.sg.Qh.sg.&& #& Pk.Sg.&& '* i@ sg.d@ d@ ,W hi.k@ sg.&& X* && )* u$ p@ sg.f@ A= '* u$ u$ i@ ,W +& )* j- -& l@ xi u$ u$ :; p$ A= -& ~* j@ F9 -& F9 r$ u@ b. s$ ~* j@ ~* ,j.l@ t@ Z* ~* -& m@ :. m@ s@ ~* q@ (. 9& q@ q@ m@ s@ (. o@ o@ s@ ;& 3. h# q@ 5& *% h# >& ^. o8 R[.'* Mf.cm.dm.'* :. 8f.)* i@ {* ~> H3.a@ a@ &* 62.Z% em.:' P).V^.<: |@ :(.p[.w(.E'.m&.)j.FZ fm.Ul.(m.gm.=l.=F m@.>+.SZ hm.>+.$$.$$.Tn hz lA < .< .,o Ed k..Ac Ac Ac _N _N S..kH [R [R $c yh #H oc oc =d =d X@.ue mc ,e we >d Ff Yb Ff {M im.SX 4b.`W jm.km.lm.`k.n8._~.0!.mm./6.j6.B+ A+ w~ C- A+ G+ tk.Ej.O+ g1.{- Q& nm.Q4.Q& vC 6i..N om.B[.mg.pm.qm.qv Ro w$.rm./- cO N 2, 1, p 8 a g 7 b 7 7 o [{ ", +"z~ 9i.Il.&[ *[ z~ xi.*) z~ *) 98.xi.9| <{ *) *) 9| 9| w9.9| 9| <{ <{ 2^ R@ l) <{ 9| J$ I/.I/.l) R@ R@ <{ R@ R@ BN BN ;b I/ 0' R@ 0' L$ I/ I/ L$ J$ 1) + 0' 0' # ]& 0' 0' # `Y = L$ R@ * * . {c [* > . 2) k) $ 5_ > - + . S$ T@ [* > > Q$ . S$ > |* ' > ; U@ . S$ P$ $ S$ R$ Z! %= ' ; Q$ & | $= %= U$ ' X@ | | R$ X@ ] H= & 2 2 ; Z! U@ N$ Z! ) ( 2 ~ ~ 2 5 < 5 2 5 1 /& 1 $# } < ## I= 4 ,# ~ 4 D, ,# -> 7 / <& ,# 6 *# -# ,# 5 } /& ( 7 ,# 7 0 {# 6 {# 6 9 9 5 ,# i 6 !# W$ !# E, Q{ n y2 0- K/ s> -) ]# K/ 2, 2, 2, 0- ,> 1; K/ p h r 4* 4* 4* ^# 4* @= :# w F= /U C 4* t w w :# D C w a7 /# AR z '&.1& z z '&.F= $T Z sm.T^ c- V c- M >z H$ V c- 8$. V V V c- 0S QT Q L Q -$.A: SO A: SO A: t> MW #N MW (U yS #N ^P 3d ^P #N ^P ^P ^P #N 'Q 'Q qH bV !Q @N 7s 7s 6B 6B 6B $N hT 6B mL mL HQ J $N $N HK FN FN lI eQ b ~9 vG ky `9 r/ r/ ;1 KE ff |3 r/ f[ ^5 x4 =2 ;1 Se ~] w{ W^ =2 +: +: w{ W^ +: ^^ W^ *_ q^ I9 66 t9 :5 u/ %] M] '! , P= e# , X^ I! R: ;% 0, I! 6^ ;% g' f' k# k# 9; 6. 6. 6. ^= 7. i- )% 6. p# 9. m# m# d. 9. 9. m# am.k* d. d. '' Pl.~l.,' bm.,' wl.g. bm.wk.bm.=j.:k.+k.A= ck.-j.,j.Ok.Ok.sg.i@ A= d@ /l.2f.A= '* u$ j@ && d@ A= sg.Qh.d@ wS %& wm.A= i@ X* ek.f@ ~* %& a. u$ i@ i@ ,W i@ l@ -& X* u$ #& {* h@ i@ u$ l@ :; $i.j@ l@ >* && N- -& 0& u$ t$ o@ ~* -& n@ o@ j@ /i.o@ s@ s@ m@ ~* ~> h# _. s@ {* {* u@ t@ x$ ~* -& Q- s@ <. :. 5& _. |. o@ h# u@ {. >& q@ j- xm. & ym.zm.Am.y6.,d.`f.5@ /e.)* A= C2.a@ $6.Bm.Cm.Y<.,).:'.Q&.O+.:+ a@ y6.]<.S<.Dm.=Y K..J> Em.4l.Fm.Gm.Hm.$$.aK y<.VW (y p@.p@.Tn dv /F lA Im.,o < .7f Ac k..Ac _N _N S..S..ti [R [R $c $c yh kH Bz >e =d mc Zs we lc + V@ # S$ $ & $ U@ | . ' S$ U@ P$ & - Z! Q$ %= U$ ~ U@ R$ ; X@ R$ ] ; ~ 4 { b{ 2 H= N$ %= ~ X@ | ( ## N$ / | { 1 x0 *# 2 Y@ { I= 1 ( { [ X@ X@ V~ &# ( d 4 ( J] 6- 3* a 6 b N' ,# V) ,# B; [{ $# 0 &# a k 6 d a' 7 e q> 0 e !# k 7 L= h n h |& h ~# ~# &].p |& |& }& ~# Y$ p! 1; n^ 2, `$ #| D #| 1; /# oE w t t t F= :# $S $S F= b' G D F= G a7 F= F= G z a7 z ~& z z H$ T^ T^ V c- 3# V .@..@.O SO V y .Oz Q J 3& SO r! o^ jI D$ BX (U ^P ^P #N #N #N #N 3d ^P 3d #N ^P -X _M _M E^ 6B 6B 6B mL 7s AS $N $N $N 6B Ou {z {z {z J PL {z {z PL dK lI NP #J eQ *S dK |h {C Xz A0 Yz A0 dy dy Zz *H dy Yz :C ]Q ~5 ef ~9 vG vG >b >b Y6 >b =H x4 x4 ^5 A5 << r/ x4 ;1 x4 f[ hs w{ ~] =2 W^ w{ ]4 +: F3 F3 Md ]4 W^ 3~ w{ 5^ I9 *_ , '! I! 6^ '! '! '! j# I! , '! e# 0, l~ Tm.6^ 4. 7. f' f' f' 7) 7. ^= 6. 7. ^= Um.F9 a; i- 9. 9. 9. e. 9. d. 9. Ll.p# d. d. '' $i.Vm.,' bm.bm.bk.wl.Pl.c& Ol.Ol.ck.Ol.-j.Pl.A= +k.&& A= Qh.j@ j@ i@ u$ ,W p@ +k.u$ n@ j@ && Sg.d@ F9 j@ i@ && u$ h@ ~* $i.b. -& p@ :; i@ o@ l@ r$ F9 j@ l@ o@ && k@ :; F9 ,j.i@ :; xi l@ l@ ~* W* l@ :; t$ ~> && u$ :; t$ t$ {* l@ (. ^* k> E7 s$ {* q@ k> u@ -& q@ d* <. w$ *% d* (. :. {= <. q@ /* ~> s@ h# =% h# t@ ^. t@ s@ {. {. Wm.E3.(' Xm.Ym.7% i! }^ g>. ) V# 05.m$ (; 2@ ** X(.f].p{.[&.u!.m&.:'.4'.W7.^i d+.Zm.5c.`m. n..n.+n.@n.@n.#n.tu >+.>+..s %x c#.p@./F =F Tn l@.4$.>c < .7f Ac o+.Ac Ac _N YN sf Bz 8L [R %c yh yh -d )d nc =d *e ve +c lc = . E! $ $ . $ V@ . P$ U@ > ' ; ] . ' %= ' Q$ P$ Q$ & 05 | S$ X@ %= R$ > & ; - > 2 %= ] ~ ~ ~ ~ N$ [ { | ) *# 2 ~ { ~ d 2 ( ## 2 1 X@ [ [ Y@ N$ W@ ~ 2 Y@ 1 5 /& ## 6 ,# } >n.( ,# d } ,# [{ a 6 $# i ,# 8 ~# e ,# ,# ># i 2* L= d [& 3] a' E, c |& L= ~# n Y$ n L= o 0- K] c{ h V| v % L= _# p Y$ ^# 1; o/ 1Z t t 1Z 4* :# ^# ^# t 2; F= F= ^# B 2; {& F= W) a7 a7 2; F= A$.a7 a7 z /U $T 8* n! O@ z T^ 8* 8* c- V c- c- T^ V c- M 8* M V d{ 0S y .AX A: 3# E$ 0S r! MW qF BX BX (U 3d ^P #N 3d #N #N 3d )Q ^P #N #N qH 3d pF `I 6B 58 7s 6B 6B 6B mL 6B 6B 6B rH {z FN J {z {z J FN sM dK sM dK QL HK NP dK |h Yz dK *H Yz |h A0 |h dy |h :C Yz Bw Yz 7J gg >b ~9 ~9 1h `9 82 >b ^5 J: J: J: ky f[ r/ r/ ^5 J: f[ f[ f[ B0 Re Re +: +: +: W^ +: +: W^ w{ W^ Re (9 'b Q< E4 , '! '! , I! P= 0, '! '! P= e# I! '! '! I! a& 8. n# f' f' k# 6. ^= a; 6. ^= 4. R= >% l# 9. 9. m# d. m# c& d. m# d. 9. d. d. c& $i.,n.'n.Pl.Ml.bm.&p &p wk.,W && Ol./l.bm.,W u$ i> ,W @m.t$ xi >* /l.+k.#& ,W ,W sg.&p ,W :; j@ xi zk.h@ =* '* )* l@ $i.l@ :; /l.j@ t$ t$ i> )n.$i.+k.u$ l@ ek.&& u$ ~* :; m@ ~* ~* j- Y* i> o@ t$ ~* t$ j@ ~* b& -& l@ m@ u@ q@ ^* -& [y h# o@ m@ {* u@ 3. ~* s@ {* {* m@ q@ {= v@ t@ h# t@ p2 ~> o@ h# ~> :. v@ v@ w$ {* ;& k> ^. !n.~n.83.S1.{n.]n.P_.}7.*4.]/.^n.T1./n.,h._+ 94.S` _.a=.k` FZ #{ J@.(n.p% h@.rQ ./ Hc._n.:n.Fm.gm. . ]& . S$ Q$ $ }* > ' . . = . . > S$ > U@ $ & & > U$ $ ; |* & Q$ Q$ H= P$ *' | & S$ > . . ~ U$ S$ Z! ~ | N$ 2 ] ~ | | N$ N$ | 2 Z! 2 | ( 4 X@ ~ { 2 } *# 2 ( N' ) d ( 1 V~ $# &# *# ) 6 fn.[ ># ,# d 7 6 Y> ,# ,# 3] e 6 a 0 ~# ]c a ># k a 0 L= 6! 6 !# {# o L= gn.n h y2 h p n n W$ L= p r Y$ ,> e<.2, p 1; V| Y$ b' K/. % u 4* $] ;) 2; w m t :# w {& {& E #] #] w z W) z z z a7 G z '&.I z 1& n! z 1& JW 8* I I O@ c- .@.c- c- |# I{. V c- 3# 3# 3; a- Q E$ 3# Q L *I *I r! #N _#.oY G$ ^P 'Q 3d tw U^ #N 3d #N #N 3d DN E^ 7s _M @N 6B 7s @N 7s 7s 6B 7s 6B mL mL J cQ J :M J J J J PL #J FN eQ lI QL HN @J |h >I FE A0 |h dy Bw ]z |h RL dy Zz dy RL ~9 >b SL eB ~9 {9 >b vG ef x4 1( x4 r/ 0/ f[ ;1 ^5 0/ r/ f[ Jc Jc B0 =2 +: 13 w{ 5] w{ w{ w{ B0 +: 13 +: Eb k~ Q< ~= ~= '! P= 5) , '! P= P= I! 0, l~ j# 0, I! g# 8. f# 9; ^= 7. 6. 8. ^= 6. 6. ^= )% d. 8. ~% 9. ~% -& m# 9. b. e. Ll._s 9. 9. c& m@ bm.~m.hn.$i./l.u$ ~l.u$ Pl.Ol.>% j- >% Ok.&p -& in.,W Ok.u$ ,W Ai.,W a. ~* j@ h@ && +k.in.Sg.>* i@ t$ >* p@ *& u$ Y* ,j.~* l@ -& u$ j@ u$ m@ !* l@ u@ o@ F9 i@ l@ b. s$ Y* j@ ~* j- h@ ~* ~* l@ {* ~* j- ~* h# o@ ~* b. k> -& q@ s@ -& s@ o@ h# m@ ~> s@ =& t@ q@ o@ u@ q@ s@ t@ w$ h# u@ u@ {= u@ ~. h# :. d# t@ v@ t@ {. ^. B@ >% jn.o$ (:.kn.ln.|!.u(. f.54.l@ i@ k@ $& il.m$ ]8._{.x,./].OX e~ mn.nn.on.O+.Zb.pn.o% qn.rn.3l.sn.tn.un.=F vn.p@.l+.l+.P..tu $$.S .hz /F Tn wn.fw ~#.Ed k..k..$n $n YN he }i Q@.Bz [R 5j 3$.$c ~=.-d =d wd wd wd nb wd ve ,e /w Bf >d Hd Q Fn.Sm.|_ :^ Gn.y4 Hn.%# L$ L$ = 7 !# j ~# V$ ~# j &# &# 7 < -# &# ", +"*[ *[ *[ ah.vh.*[ *[ 9i.ah.9| e^ )~ 9| $8.9| 9| *) 9| 9| 9| <{ <{ 9| <{ 9| R@ J$ <{ <{ J$ .( R@ <{ J$ R@ R@ J$ I/.G= I/ R@ p9 I/ ]^ ]& 0' 0' R@ 0' 0' 0' I/ 0' 0' Z, # = 0' + K$ K$ = # # # k) [* # $ . . $ T@ . $ S$ =' ]& . # . ]& $ ]& [* V@ - !, > & $ > $ $ U@ > o! U@ N$ U@ ; & P$ N$ H= ; ] N$ & ; Z! ; J) | Z! { T- | ] U@ & R$ ) ~ 2 { | ( ## In.7- ## ~ { 7- Y@ { X@ ( [ X@ [ ## ## ( } 2 d ># &# 6 ( ># V) Y> a ,# ,# j 6 } d a 6! ,# 3* 6! i a _c.># Y> ,# 0 A~ a 3] c c |& {# L= K] s> s> h 2, h L= 0- }& |& n p n^ 0- b' @= ,! p ^# n^ /# D ;{.D t n^ ^# m F= F= w :# D {& /U /U z z a7 F= z z a7 z '&.I AR #= c- n! K #= Z 8* $T O@ M M M M c- c- c- P@ Ri.>z 0S 3# 3& 1& 3& d{ L@ E$ d{ c- qF Vf qF 3d G$ #N `I ^P ^P ^P #N 3d 3d ^P !Q 0* ^P DN `I EN 6B `I @N @N 7s $N $N $N HQ {z Ou {z :M J Ou FN ]C bS 5o PL %i Xz cQ Wz @J Yz FE >I dy dy |h |h Yz Yz |h A0 A0 |h nI SL 82 Y6 >b 82 82 1h >b ~9 A5 J: x4 x4 r/ r/ r/ L] a: J: L] ^5 << =2 =2 +: +: &% 3~ W^ W^ 3~ w{ w{ W^ w{ 5^ k~ 7! ~= )l. , '! -% , P= '! , '! P= , g# 9; e# g# k# 7. k# ;% 8. 7. 8. 8. ^= 7. 7. i- b. ~% 8. b. 9. m# m# b. b. m# in.8j.m# c& ~* b. ~l.bm.@m.i> $i.Pl.bm.ck.bm.j@ ,W u$ in.$i.u$ u$ u$ && /l.$i.l@ m@ && /l.W* l@ && {* j@ && xi sg.f@ R= h@ ,j.,n.k@ ,W ,j.i> $i.:; f@ p@ in.:; r$ l@ && u$ $i.~* s$ l@ {* -& p@ j- -& l@ -& a. =& u@ m@ ~* m@ -& u@ ~* ~* ~* 3. [y v@ ~* {* j> u@ u@ 3. <. s@ w$ :. O- h# O- 0& 9& v@ O- t@ {* :. s@ a6 v@ d* :. ). (. '. ,& 5& := Jn.Kn.Ln.i&.`) Mn.Nn. ] o<.hk.%& (. W* b. ~* g@ |7.T1.8@ l$ _{.x^.l&.W^.<'.6W Oj.On.Pn.Qn.Rn.Rn.Sn.Tn.Un.]B ]@.]@.:d :d tu =F S .hz Tn $$.Tn Vn.lA lA < .,o >c iz $n YN YN YN ti ti [R 6:.+l T$.#H yh -d =d rc *e wd {l kc # ,# J] d 3 , 3* 7 q> tA 0 0 z: q> 0 3* J] a a ~# e ,# E, g A~ E, h z: h ]# K/ n r s> ]c }& x9.r o p r % 4* 4* t _# p! 2, b' 4* :# y 2, D /# {& F= ;{.{& 2; C {& F= z G z F= F= a7 z z C` I z JW 1& n! z 1& 1& c- a7 %> V V c- M c- M M z .=X M 8* |# A: >z E$ A: L@ d{ Z..3# Q qF *I WX T #N 3d 3d 3d ^P ^P `I #N ^P tw BE qH 7s lL E^ 6B -X 6B qH 6B mL mL $N $N ja ja {z FN J {z J bS {z ,I eQ lI Wz lI QL >I dy dy Wz |h |h A0 Yz |h |h |h dy dy |h 9o ]z 82 ~9 >b 82 ~9 >b >b ~9 jy J: r/ X) r/ ;1 u! x4 =2 0/ L] ^^ << w{ ^^ ^^ 3~ 3~ &% w{ W^ W^ w{ W^ w{ 3~ e' 5^ 5^ 9, , e* , M] g{ , , , P= P= e# j# a& g# 4. f' '% ;% ;% 7. ^= 7. 7. 6. 6. 6. 6. b. ~% '% )% 9. m# m# b. b. b. b. @o.in.m# in.~* bm.#o.fk.@m.$i.@m.$o.bm.Pl.@m./l.~* @m.$i.u$ n@ p@ dk.u$ l@ #& u$ ~* /l.A= n@ W* ,j.:; t$ j@ -& t$ cl.cK j@ j@ j@ t$ ~* *& >* b& j@ j- t$ F9 W* m@ b. S*.o@ -& t$ {* ~* F9 -& [y -& s@ o@ o@ u$ m@ o@ s$ ~* {* -& v@ O- -& v@ m@ {* ~> s@ s@ s@ :. <. (. w$ q@ x$ '. :. w$ u@ s@ -& ;& 1. 1. 4_ o) /. ~. t@ v@ &. ). b# '. ;. eb.y^ %o.&o.*o.=o.-o.;o.d= >o.V#.p[.y6.** %9.aa.** q$ 04 a@ `% ha W<.[&.o{.n$.n$..$ b+ #{ ,o.'o.)o.!o.(m.~o.{o.]B $$.$$.p@.l@.Tn *f ]B < .VJ 7f Ac Ac Ac Ac Ac }i tN kH 5j a#.[R $c y$.oc mc Zs ^f Yb Tb 0H 1b Be Wb 4b rb 3i ]o.hL ^o./o.WR +b PM (o._o.:o. 2o.(g.A] L) F@ 3o.4o.^ X! g~ R@ ]& ;b *) ]& |1 q, `, %{ +' e^ 3_ 6' *) &[ $# [& n m c } 7 8 X$ 5 < 6 ># ( ", +"z~ *[ 5o.z~ Il.vh.9i.2! ah.*) vh.)~ 2! 98.9| |1 *) 9| <{ 9| <{ 9| <{ 9| <{ J$ J$ l) <{ <{ ], R@ J$ *) ], R@ J$ ;b <{ 9| BN p9 0' R@ 0' k3 0' I/ I/ [n L$ L$ I/ 0' I/ X! # + 0' R@ # . # # # # . V@ T@ V@ # . V@ #^ = 2) =' . Z, > ; $ + . Q$ $ + # Z@ l!.& S$ . = ; > . . ; .# U@ ; ; ; X@ 2 ; ] | & S$ .# T- ] ^ > 2 Z@ %= { H= ] 2 ~ 5 N$ G9 N$ 2 | [ ~ 5 } ) N$ d 1 ( } } | 4 } } Y> Y@ Y@ ( 6 b d 9 6 6o.J] 6 { ( 3* 7- } ,# } 0 q> e {# 6! a k a' ~# ~# 0 K] L= W$ ~# a n |& n n p Y$ K/ n }& p p q p ,> r ^# ;= 1; m m ,^.s> ,> ^# q 1Z 2, % _# 6* F F= :# `$ w ^# ^# w a7 w z 5 .>z 3& o> L Q SO A: SO A: SO G$ H MW r! #N #N #N `I `I )Q G$ ^P #N #N #N `I 7s _M `I qH 7s 58 7s 58 7s BE mL mL rH ja ja Ou ja {z Ou ja PL sH Wz cs #J dK QL Wz @J |h cy @J dy 9o dy x5 |C |h A0 t( |h |h =N 82 >b ~9 82 <3 82 82 82 {9 B5 0/ 0/ J: A5 J: 1( Ab a: r/ ~] ^^ W^ ^^ ~] w{ 3~ 3~ w{ W^ W^ w{ +: w{ w{ w{ e{ 7! 7o.u' k~ '! '! u/ '! g{ P= j# h# j# , g# a& 4. k# }. }. 9; f# 9; U' k# ^= 6. 7. ;% R= ~% 5. F9 >% 9. fk.m# b. m# a. in.i- b. _s Pl.in.ck.-& in.$i.~l.$o.fk.Pl.~* @m.@m.-& u$ ,W Ok.A= bl.j@ ~* i@ Ok.A= j@ l@ ~* u$ $i.~* ~* $i.~* t$ l@ j@ j@ ~* ]* l@ ~> u@ r$ l@ l@ b. t$ j- u@ a. o@ F9 j@ b. b& m@ s$ $i.-& R= o@ a. 8o.-& u$ {* (. o@ ~* :. ;& u@ m@ s@ 3. j> :. -& -& q@ u@ s@ (. s@ {= -& v@ q@ Q- t@ :. v@ t@ :. :. t@ t@ 3. ^. p, v@ ^. v@ =% ~. &. ^. z 5* 9o.B5 8d :E 0o.j0.x[ W(.N, ao.<[.<[.Y,.Xi.bo.^<.Th.co.^<.3!.j@.5,.,..rQ 6W t] {d.do.eo.fo.go.ho.io.&d Wb sb xa xa Zb *d |b Hd 9b Be #I Ma ya Ga Ka 5b rb ~f ya 5b Sa V$.jo.Aa 3A gw (r ko.lo.^B mo.no.oo.po.qo.ro.so.to.uo.vo.wo.xo.yo.zo.Ao.Bo.Co.Do.Eo.Fo.u! @. #= (# 0 $# O$ $ . R@ # ]& J$ ]& L$ R@ V! L$ |1 *) J$ `, J$ *) e^ 5' q, q, ^, <{ 5' *) R@ a r o n g h a i [& a d $# e ># ", +"z~ *[ 9i.9i.*[ ah.Il.z~ e^ 9| 98.*) )~ *) ah.ah.<{ 9| w9.*) <{ <{ <{ <{ <{ <{ J$ J$ <{ <{ <{ 9| <{ 9| @ .( J$ ;b ;b 9| *) G= ]& R@ ]^ L$ 0' ]& I/ I/ I/ L$ L$ 0' 0' 0' K$ # + 0' * Z, * $ * Z, = + }, - [* o! $ # . Gc S$ S$ = ]& > o! $ ; . . S$ $= U@ ] U@ ; . * %= ~ ; Q$ ^& ] U$ & - V@ Z! ; ; U@ | R$ & Q$ N$ ) ] 05 { X@ ] X@ 4 X@ N$ W@ W@ Q$ %= X@ N$ J) ~ ( { < ( %= Go.} <& ( : ~ ( | 2 ( <& < b ,# 6 ## ,# [ ~ V) 7 6 ># / 6- d 5 1 3] ,# q> v5.~# ,# 2* a a a 0 W$ L= !# n 0 L= Y$ n r n c !# E, r p K/ ]# Y$ V| q Z$ K/.n c Y$ ^# p % t r m `$ #| Z$ w 4* {& /U w 1; w B t $S z t z z a7 z N@ /# z I n! 1& I 1& I W) M A 1& c- M 8* c- a7 V 2Z c- O >z 0S 0S a- S QT M C, E$ L A: SO 3# T E$ A: 3d .Z #N 3d pF #N G$ #N 3d ^P #N `I @N qH tw @N EN 7s 6B 7s 6B 7s mL $N $N J Ou ja J J {z cQ &N {z #J GN FE A0 EA NP Wz dy /3 cy F^ A0 A0 A0 A0 |h |h 9o A0 A0 ~( >b >b eB ~9 <3 82 82 82 Y6 82 >b A5 << d[ ff L] r/ 1~ J: r/ 0/ f[ ~] w{ 3~ W^ w{ w{ W^ w{ +: W^ w{ 3~ W^ 0 q^ w{ Q< 7! '! '! ,% , u/ P= P= '! 0, e# g# a& ~> ;% a& f# ;% g# a& g# k# 7. 6. ]= g# Z* F9 5. ~% ~> 6. Y- m# b. b. b. fk.m# c& ~* ,n.~* $i.Vm.~* Pl.Pl./l.,' bm.u$ ~* Pl.)% ~l./l./l.,W j@ && i> xi u$ t$ s$ _s A= j- ~* >* l@ && F9 l@ p@ ~> l@ t$ i> b. ~* a. u@ l@ l@ l@ ~* j@ u$ {* ]* o@ -& -& l@ -& xi 2. {* [y k> l@ x$ f@ ~* l@ a. t@ b& ~* l@ b& s@ k> u$ h# h# {* 9& k> -& u@ t@ x$ E7 h# (. p@ v@ v@ [y 8& {= h# ^. 1. {= 5& (. d# -. {. H! {. {. {. v@ U ,# X@ ; *) V! [) &[ + Ho.Io.Jo.Ko.Lo.Z> <, Mo.No.Oo.4, Z 4& A0 r^ T2 L5 Po.Qo.gd.~1.Ro.So.To.Uo.Vo.Wo.Xo.Yo.Zo.`o. p..p.+p.@p.#p.$p.%p.&p.*p.=p.-p.;p.>p.,p.'p.)p.!p.~p.{p.]p.^p./p.(p._p.:p. + = * + + L$ V! J$ e^ *) L$ V! J$ ], z~ *) [) %{ 2! e^ z~ q, q, 6' 5' [) 5' V@ L= 0 g e c r 7 9 o a b 7 *= 5 ", +"*[ z~ 2! 2! z~ ah.vh.z~ z~ 98.&[ 2! Pi.5' ah.vh.|1 9| w9.9| 9| <{ 9| *) <{ <{ J$ <{ <{ I/.<{ <{ R@ ;b <{ J$ R@ R@ ;b R@ I/ BN <{ ]& ]^ G= 0' I/ ]^ I/ 0' 0' I/ 0' 0' 0' # * + # + # # 0' # * + = + T@ # V@ = + o! o! [* > = Gc & > & & - $= S$ - > A; ' H= T@ - ' ; ; & Z! U$ N$ ; U@ . . & > %= - | ] o! N$ { X@ Z! Z! H= |, { | N$ N$ /& | 2 I= ] P$ { ~ { ~ J) ~ ## ( [ ## 5 6 { { { { V~ 1 2 b < ( N' 3* 7 ( 3* 6- 6 q> 3* 4 6- B; d 0 0 6 6! {# a 3* 6 k /& ~# ~# c ~# |& 0 e |& 0 0- ~# L= p s> k0.h n o L= Y$ ,> `$ q s> % c{ p y xE 1; D^ Y$ m Q(.`$ #] /# :# $S w D |Z G t 2; z ~& G G z w n! x w I z a7 I A$.'&.z A c- c- 8* z M T^ 1& T^ M T^ 3# 8* V c- |# J V c- M H Q J J >z >O Q qF BX zS 'Q #N ^P #N 3d 3d 3d #N 3d #N @N EN lP @N 58 7s 58 6B 7s mL 6B 6B mL $N rH Ou J J J J QL FN .J #J EA &N QL eQ _C Xz A0 |h _C A0 A0 A0 A0 A0 A0 /3 |h Yz `z Ic Y6 gg ~9 82 82 >b {9 b: 82 Y6 r/ r/ q/ A5 J: r/ L] X) J: f[ f[ 1~ ~] ~] w{ w{ 3~ +: =2 ~] W^ w{ W^ W^ W^ b* 5& 3~ u' -% , P= '! , , {= j# '! '! j# a& g# '% 2. 4. '% g# g# g# f' 8. 8. 7. l# b. R= l# )% b. b. m# b. -& 9. ~* fk.9. ,n.-& )% c& j- in.~* o@ Pl.r@ in.$i.cl.,j.s$ -& t$ $i.$i.j@ $i.l@ r@ o@ /i.n@ l@ && ~* m@ ~* A= ~> @m.l@ l@ s$ :; F9 l@ s@ n@ j@ j- u$ :; m@ :; {* k@ F9 Y* o@ u@ s@ q@ ~* ~* l@ s@ o@ t$ = o@ 3. 8o.h# h# ~* :. 9& :. o@ u@ m@ <. :. q@ q@ q@ x$ :. w$ 5& :. 6; v@ _. {= t@ '& (. 5& ^. {. &% t@ /* Q= w$ (. d* ^. :. ~. ^. !. x@ 1. Q' 6 ] + M$ g~ ], *) 5' ], *) 5' v, 5' g] =) v, q, <{ 3_ ^, v, q, ^, g~ g~ @ M$ (& < X$ O' 5* N= 8* $] N= 7p.7p.U zX zX B$ . !> 8p.F@ G@ ;' 9p.E[ ;! b# 1. 3- N- '& p2 ^* -O p2 j- 0p.ap.kW *& nH f@ bp.*& X* d@ w; X* b. u@ N- N- >& >& $. d- Q@ D ~# b $# ^ # & - = + + p9 R@ R@ !, J$ L$ *) e^ L$ @ ], e^ e^ q, q, v, [) v, [) ^, ^, s, v, 5' @] O$ a' a a f 7 7 j V$ &# j a b 9 $# ", +"q, q, z~ z~ 2! ql.vh.9i.*[ ah.|1 9| )~ )~ $8.|1 ah.9| 9| 9| *) <{ <{ 9| <{ 9| J$ 2^ cp.], *) J$ <{ <{ <{ L$ R@ ], <{ .( L$ L$ L$ 0' ]& L$ ]& #S R@ ]& I/ 0' k3 L$ 0' I/ + $ dp.# L$ $ V@ # L$ + ]& = 0' # # ' $ # # & $ - # $ Q$ > > $ V@ $ $ Q$ + - . o! > > + > |* + = > Q$ & > ; ; & N$ | R$ ; U$ | ; T- ~ Q$ . ; ] { 2 ~ | X@ ) 5 { 2 Z! Z! *# ) X@ ; ~ ~ { # ] ( ( 1 1 } D, { 4 X@ ( ( 6 U- D, a < 6 )1.e d Z! } ,# 6 ,# Y@ j ,# 7 a J] a 6! b ,# z: a ,# 3] K/ n !# W$ ,# k |& ~# ~# s> s> 0- r a' r n^ 2, q 4* 2, ,> h m `$ p! p ;) 4* Y$ ^# 4* t 1; w ^# 2; /# U*.$S F= @= G G C` G {& F= F= F= I F= a7 z N I n! I A I O@ a7 M T^ V 8* 8* M n! 8* V 2Z >z QT J 3# o^ i5 J O O d{ A: aV Z r! >O hU #N 'Q G$ tw 3d r! ^P 3d L@ #N `I @N _M _M qH 7s _M @N 7s 58 7s 6B 7s &k -I Ou {z :M H9 {z bf 0B bf eQ PL QL &N bS |h {C FE Xz @J /3 A0 /3 |h |h =. A0 |h Bw x5 x5 Z9 82 82 c[ 82 b: 7, Y6 Y6 d[ u! Ab J: X) 0/ L] a: ^5 a: ^^ /. 3~ w{ D~ 3~ 3~ +: w{ W^ 3~ w{ &% w{ b* 3~ w{ 5^ w{ u' B} P= 8; P= P= -% 3. j# 9, e# a& ;% s@ f# e# s@ ep.5. b& 4. ;% l# 7. 6. l# ~% 4. f# i- }. >% ~* ~% b. >% @o.b. m# _s k* b& ~% in.R= ~* s$ i> )% /l.b& @m.@m.l@ /l.~* o@ $i.j@ Y* t$ l@ u$ u$ _s m@ u$ a. ^* l@ b. l@ ~* j@ j- Z* i@ u$ b. n@ u$ u@ -& F9 ~* && t$ a. o@ b& t@ j@ u$ t$ =& s@ {* u$ l@ >& k> t@ u@ ~> @& o@ :. u@ x$ t@ -& =& u@ v@ (. = =& :. :. {. u@ :. t@ :. ^. (. >& {. /* t@ (. ~> d# x@ h# h# ,& {. s@ =% v@ d* ~. -. '. A@ b# ^. %. l Q$ M$ `, q, `, 2! s, v, r, s, v, [) q, =) r, v, r, r, =) x, q, r, r, @] *) J$ $ ; { $# g f n p! `$ N= x I A I ` O@ |# J D$ 2# H G$ .= X I@ C$ V fp.y@ A@ E@ E@ 4) y@ L) $% A@ &. =. .= #. (* L) 4# E@ z$ 7# V J@ .= D$ P@ M /# s> X$ -# &# | & O$ $ # L$ ]& L$ #S BN e^ *) q, *) *) e^ *) ^, z~ e^ ^, q, g~ q, ^, q, 6' r, ^, 5' `, z~ *) / k L= }& h f 6 } 7 V- < 6 $# } b ", +"q, z~ z~ *[ z~ z~ |1 ah.*[ z~ 2! 9| *) e^ *) 9| |1 <{ <{ 9| <{ <{ *) 9| <{ <{ J$ 2^ <{ <{ I/.J$ 9| I/.;b ;b ]^ 2^ ;b .( l) L$ ]& L$ I/ BN R@ 0' L$ R@ 5_ 1) [n 0' [n [n 0' = # # [n 5_ # # ;b # # $ 0' # # $= $ ]& # ]& L$ # > . 0' $ ; > . - S$ H= R@ > S$ . S$ & (& $ A; $ 0' ; %= Z! (& | N$ > | X@ R$ H= T- & (& H= - $ * ; %= 2 X@ ; ] ;# | 2 (& | ~ X@ | | %= ; N$ / { X@ / 1 8- / X@ /& $# [ ( 7- } : Y@ d 5 } } 6 6- J] $# 1 a [{ ,# 0 $# [{ $# q> 6! ~# ~# 0 J= 6 J] a ~# 6 K/ L= E, n {# L= Y0.~# L= h n 2, K= % `$ ]# s> ]# r ,> 1; ,> e<.`$ y p 1; ^# t w 2; 1; F /# 1Z /# w 1; t F= F= {& z /U F= E z F= G {& /# a7 AR w z z G I I z A 8* o^ M M c- M HV V |# 8* >z 3# E$ L Q Nd.L T T L 3; T T L@ E$ A: D$ qF #N pF 'Q L@ T 4# G$ 3d @N qH 4# `I tw 7s 6B qH 6B 58 7s BE 7s r4 ja ja Ou -I Ou {z r4 bf ja sH EA Ou F^ =. |h |h :3 /3 6# =. /3 |h A0 A0 /3 dy Bw ~( dB dy Bw Y6 Y6 Ic b: 82 Y6 >b Y6 Y6 q/ J: J: J: B5 1~ J: r/ r/ /. ~] w{ w{ =2 ~] =2 W^ w{ w{ 3~ w{ W^ w{ w{ w{ 3~ q^ p^ u' 1. P= , '! , `> ,% 0& {= ~= e# {= 2. g# 0, g# h# '% b& f# '% 8. R= 7. 8. 5. R= b. b. f# l# 5. 2. ~% gp.)% ~l.$i.in._s 4. @o.fk.~* a. @o.R= $i.in.$i.xi $i.s$ o@ ~* Ol.u$ u$ p@ l@ F9 ~* j@ Y* &p && i> ~* l@ u$ ,j.p@ ,j.u$ l@ u$ l@ ]* b& s@ Ql.t$ :. u@ u@ d# {* h# u@ o@ m@ hp.s@ {* w$ q@ F9 x$ O- _s {* E7 ~* s@ >% o@ s@ q@ u@ {= -& 8& c# (. q@ {. :. :. s@ <. 5& (. v@ ;& :. d# ^. H! C@ b# !. %% W> t@ v@ %. {. ). /* -. 1. !. %% !. %% !. *. {. O `@ = R@ J$ 2! z~ 5' ^, 6' +' %{ }) x, s, u, 6' x, =) v, @] v, r, r, v, [) @] 5' R@ L$ + ] ] ;# < *# / W@ 1 X$ r ~# r -) Y$ e p 2, h ^# 6* :# `$ D G Q@ O@ G I I M= I z @% C J #= n! S Q@ S I N@ A I M= I A N Y$ c c 6 ( $# ;# > ]& = # Z, Z, R@ L$ ]& ]& R@ *) 5' *) J$ <{ <{ ]^ 2! 2! e^ q, 6' ^, q, 6' 5' v, 5' q, ^, 2! ]& 8 c ># h n K/ g $# 8 7 < ( 8 7 a ", +"z~ z~ z~ *[ z~ 9i.9i.|1 9i.*[ 9i.9| *) e^ e^ <{ <{ 9| *) w9.<{ <{ 9| *) <{ <{ 2^ w9.9| <{ <{ <{ 9| .( l) <{ 2^ G= 0' I/.J$ R@ L$ I/ I/ R@ 9| BN I/ G= I/ I/ 0' 0' 0' 0' I/ R@ K$ # 0' 0' $ # L$ X! # + 0' $ # # + = # ]& # # |* ' $ $ H= $ S$ $= # > ' |* S$ S$ > S$ > Q$ & O$ o! ; > ; }* & X@ =' S$ N$ N$ & U@ U$ ' S$ U$ N$ U@ H= | | %= , ] *' P$ ) 2 7- ; N$ N$ 2 ~ N$ ] { [ 7- 2 } } 1 W@ 2 X@ 2 ( 1 6 7 Y> ,# 6 J] $# 6 d N' 9 V~ ( 6 d $# 9 [{ 0 ~# 0 a 0 a Y> {# ,# a 0 a q> 7 ~# Q{ {# i L= h 0 ~# s> n p Y$ % ,> n n `$ m ip.p p t ,> % 4* C ;{.y..q h :# :# `$ 4* @= w 2; w G {& F= G D G a7 a7 A z I z o^ M M 8* z . V KW c- M 3& J Z..H SO O 8* 3# U J n> 3; Oz MW tw ^P 3d pF 3d 3d 'Q qH qH #N `I E^ 7s `I @N 6B 58 7s 7s 6B 7s 6B E@ Ou r5 r4 Ou {z Ou Ou {z J Ou QL .J -K =. mG _C :3 |h /3 A0 A0 |h R' |h /3 /3 |h Ic x5 A0 A0 Y6 Y6 82 ~9 >b 82 82 >b Y6 ~9 L] x4 J: '= %% jp.X) J: r/ '= '= L] 3~ ~] ^^ W^ w{ 3~ W^ 3~ 3~ 3~ $^ w{ 3~ >' >& *% -% {= , '! 1. , P= e# {= e# a& P= a& 8o.'% 5. g# f# a& 7. 8. '% 7. 7. 8. 4. g# -& o@ 2. f# >% R= >% >% )% {= m# >% ~* b. ~* F9 -& ~* R= $i.)% >% ~* ,n.$i.,n.m@ pj.u$ Y* i> F9 ~* /i.s@ xi u$ kp.l@ l@ ~* r$ -& b. -& b. j@ @& h@ {* ~* u$ ,j.o@ {* ~* $i.~* t$ j- m@ -& {* ~* {* {* 0& 3- o@ -& j- q@ o@ :. u@ s@ F9 u@ {* u@ q@ P- :. ~> c# q@ u@ O- >& <. u@ u@ C= /* o@ (. :. s@ '& !. t@ 9# ^. %% v@ {. (. o) A@ &. p) (. x@ ^. ^. ). ). x@ !. $. -. C$ 4 $= J$ ], e^ *) *) %{ g] s, x, H) x, H) =) [) H) 7' s, r, H) s, s, =) q, [) [) <{ J$ ], J$ R@ L$ . > U@ ; ( ## b ,# d e Y> } 7 0 V$ [& 7 '# V- e c r r h q p W$ o c Y$ h C; 4* m |& h `$ c n `$ u % h g h 0 6 ( / [ | & . = pH > ]& ]& ]^ L$ R@ J$ R@ R@ *) 6' ], R@ ], ], *) 6' e^ ^, v, x, [) q, q, v, v, [) 6' [: U) e r h 0 ,# c 7 } b [ 6 $# i _ 6 ", +"*[ z~ *[ z~ z~ 2! q, Il.vh.z~ e^ |1 9| e^ Pi.*) 9| $8.<{ ^, 2! 9| 9| <{ <{ <{ $8.<{ J$ 9| I/.<{ ], R@ J$ <{ <{ V! BN ;b <{ 9| 2^ R@ I/ I/ R@ G= 5_ 0' L$ 0' I/ 0' I/ J$ 0' 5_ + # 0' = * # # L$ . = 0' = . . ' . V@ [* . $ $= & $ = S$ > P$ S$ > & & & S$ S$ # $= > - . > ] S$ & R$ ] P$ R$ H= ' & ; ; . U$ S$ H= S$ ^ & | ~ R$ N$ ; 2 2] X@ U$ ; N$ R$ 2 X@ | %# { ( 2 5 [ X@ { G9 ## { 4 Y@ 8- ( ( 5 } ( } 5 d 3* k 3* V) d 5 4 V) 6 6 6 8 q> 6 7 k 3* ~# k {# 6! 0 0 ~# e ~# ,# e K/ {# a z: ~# c c {# 2, c ~# r Y$ 2, r ~# ,> ,> Y$ 4* `$ q t /# b' p ^# p t D q :# ^# ^# :# :# F t /# w w C a7 a7 a7 a7 B z w 1& I G I I I #= I z 8$.z H$ A V 8* n! c- 3# c- =X |# |# Q 0S O@ Q Q c- i5 d{ Q qF r! r! oY 3d K) G$ #N #N 3d `I tw #N 3d `I E^ `I lL qH E^ 58 7s 7s 6B 58 58 ja rH rH r4 {z J {z {z BS bS cs &H ,I Xz =. lp./3 /3 A0 :C >I A0 /3 Ji /3 |h /3 Yz Ic x5 |h |h Ic Y6 Y6 Y6 82 82 82 Y6 8N jy q/ X) J: ;} %% 1( %% 1~ /. '= D~ 1~ w{ ~] =2 W^ w{ &% 3~ 3~ w{ p^ mp.(| 6& e' e{ u' 7& , P= -% H; -% {= *% *% }. e# _. e# a& h# }. 2. s@ 8. g# f# '% >% b. 8. 8. ~% 2. ~% >% 5. b& o@ -& b. ~* 4. >% F9 o@ m@ q@ ]* {* l@ o@ in.Z* ~> &p ~* -& u$ `* o@ j@ &p F9 $i.u$ Y* ,j.&p -& ~* i@ s$ $i.l@ N- m@ a. -& o@ -& l@ F9 v> o@ {* h# l@ 3. b& ~> t@ q@ j@ q@ -& o@ u$ -& ~* x$ :. s@ F9 q@ E7 ~> o@ x$ x$ C= o@ t@ t@ >& v@ -& <. {. 1. s@ u@ u@ t@ (. = :. 1. w$ (. 8& t@ !. q@ ^. ,& b# 9# ). ). ). ). A@ x@ z@ ,& -. v@ ). ). p, ;. =. A@ (* ^# & R@ e^ *) z~ [) +' 5' v, s, s, v, A, s, s, =) s, x, v, H) v, v, r, q, 6' q, g~ ], <{ L$ L$ #S V@ = > . | ] ) U@ ] { ^ ~ 2 ~ H= 2 ( :& < } 6 e g $# e g c h e ~# ~# 7 e ~# X$ 0 7 6 7 ~# *= i ,# } b < ) | | | W@ ] . $ + = $ ], R@ V! g~ z~ ], ], @ 6' J$ *) *) e^ *) [) ^, 5' =) 6' H) 6' ^, 6' @] v, )~ *) , 8 ~# c ~# ~# J= a 8 ,# i 6 6 8 [ $# ", +"q, q, z~ z~ *[ q, z~ z~ Il.z~ 9i.Il.$8.|1 Pi.<{ 9| vh.vh.5' *) 2^ <{ <{ <{ 9| 9| <{ <{ 9| <{ <{ *) 9| L$ l) ], R@ ]^ <{ <{ J$ G= BN G= L$ R@ jP L$ 0' L$ I/ 0' 0' I/ np.0' 0' = * + [n * # `Y = . # z] o! $ # . & ' [* > + > [* $= & $= S$ - . # . S$ Q$ & ; & Q$ U@ U@ =' %= A; * P$ op.T@ ; |* R$ (& * ; %= U@ & %= S$ - 2 - .# %= ~ 2 g{.) &= %= ; ^ ; N$ 5 2 X@ { ## / 2 } } 1 N' B; 2 < T- 1 } d d [ W@ 6 5 ( Y@ 6- 6 / d ># pp.} 9 6 6 k 2* 8 d ,# 7 q> 3* q> z: 3] !# a a L= 6! a W$ n E, tA L= n s> ~# 0- Y$ h L= ;= t' {# n c r 2, Y$ ,> r 2, t 4* ^# b' ^# $] Z$ F :# Z$ t @= /U {& :# m n^ G G /# E 2; G a7 N n! a7 C {& B n! z z O@ O@ #= 8* G M I $T KW >z E$ 3# c- c- 5 .|# Q d{ 3& E$ J J T A: MW A: SO r! r! qF 3d G$ G$ G$ #N G$ 3d U^ 3d tw qH E^ DN pF qH 7s 6B 58 mL E^ 6B 6B mL rH ja wr {z {z Ou Ou ja cs r5 $i bf {C /3 ;' !& ;' A0 Xz oO A0 |h |h |h /3 A0 ~( Ji |h |h &i Y6 qp.Y6 >b Br 82 Y6 Y6 Y6 82 b: u! a: x4 J: X) a: D~ %% /. D~ 3~ ~] L] 3~ &% 3~ 3~ 3~ &% 3~ 5] 3~ (| (| >' 9& 6& Q= >& *% -% P= , 8; e# X- ~= 1. j# }. }. h# 2. E7 8. >% }. 8. u@ b. ~> o@ f# i- }. q@ _s >% -& b. 2. o@ 8j.o@ in.$i._s ~* 4. F9 x$ 8j.'% o@ l@ c& u$ ~* a& l@ u$ _s ~* ~* 8j.~* ~* F9 o@ m@ o@ Pl.p@ ]* l@ @& F9 l@ t$ 9& ~* j@ l@ ~> l@ k> O- u@ m@ u$ ~* ~* <. -& o@ s@ ~* F9 =& ~> h# d# t@ t@ d# ^. :. 8o.P- C= s@ 1. s@ o@ ;! <. 1. :. h# s@ x$ O- q@ 9& = w$ (. 5& = 9& N- t@ ~. ^. W> ~. >& v@ A@ &. -. -. A@ !. !. 5& z@ 0# ,& &. !. .= A@ z$ [, A ; R@ 2! *) z~ q, 6' 5' s, v, s, 8' =) H) v, s, s, 6' r, v, q, +' v, q, [) v, 2! 2! )~ s' *) <{ R@ 2^ R@ L$ = + * # # > & ; | [ | | ~ | ~ ( } %# @# ) ( 6 $# } } _ ( < 7 == -# 9 } } b 7 } Y@ < X@ ~ N$ ; > > ] - * 0' ]& l) 0' 0' <{ ;b *) e^ z~ )~ 5' e^ 5' 6' q, J$ z~ r, [) v, q, 8' 6' v, v, u, r, q, s, i) R@ [ c 8 b 6 b 8 W$ 9- 7 6 8 $# == ( $# ", +"z~ z~ z~ z~ z~ *[ *[ z~ rp.vh.ah.z~ |1 $8.*[ )~ 9| xi.$8.)~ 9| <{ *) <{ 9| 9| 9| 9| <{ *) 9| 9| <{ <{ <{ 9| <{ J$ R@ #S <{ J$ J$ ]^ ]^ L$ L$ 2! 2^ I/ L$ I/ 0' 0' 0' 0' 0' I/ 0' * * ]& 0' # K$ = = + $ k) 2) ), + $ k) # # . ]& =' & ' . + # + . [* > ' > S$ - . $= U@ o! & U@ . H= & . S$ P$ ^& & . | ; ; J) R$ ^ H= ; ] | %= A; | *# | ~ 2 o! ~ ~ %= X@ | 2 2 } 4 4 5 $# { ~ } 8- 2 ## 7- $# *# 5 B; d +# [ ,# ( d 5 } 8 3] 6 b 6 Y> 9 5 k 7 Y@ k 7 7 a' ,# 6! ,# c 0 k 6! a a i !# L= |& a 2, L= h s> Y$ r -) L= h L= 2, ,> n^ 2, `$ q h `$ d<.m 1; t w 4* /# :# ^# :# `$ w w G #] G b' 2; {& p F= G 2; z C G B w F= '&.M O@ O@ A M I A F= 8* H$ |# Z |# Q@ M S 3; A: d{ O@ Q L A: r! G$ M r! O qF #N d- G$ 3d 3d 3d `I G$ G$ O= qH 58 lL qH 6B 58 6B 7s 58 q9 7s 7s 7s rH H9 ja Ou Ou Ou Ou ja ja $i bf ,I =. ;' >I Bw |h A0 dy |h |h |h |h A0 /3 dy x5 |h dy c[ Y6 Y6 Y6 Y6 82 82 Y6 <3 82 Y6 9# X) J: J: %% %% r/ ^^ '= X) ~] =2 ^^ %% 1~ 3~ w{ &% 3~ 3~ &% &% w{ (| 3~ q^ B= w{ sp.R/ e* 5) , g{ 7& {= {= P= ,% /* e# g# 3. 2. ~> a& {= x$ 7. b& R= 4. '% >% R= F9 >% >% '% m# b. b. m@ {* t@ b& F9 ~> )% >% R= o@ >% F9 l@ $i.F9 F9 ~* o@ s@ m@ F9 u$ Z* -& F9 u@ l@ o@ -& ~> ~> ~* u$ 2. ^* o@ u@ u$ m@ ~* u@ j@ x$ r@ {* E7 -& -& = F9 {* Q- q@ ~* {* -& :. x$ x$ d* w@ :. /. ~. (. 9& :. u@ u@ w$ t@ :. 1. t@ = {. (. h# q@ ~. u@ o) '. :. <. d# (. ^. x@ (. {. w$ ). {. A@ $. ). ^. '& #> {. =% d# ,& 5& x@ -. (* &. !. ). x@ 6# !. ,= a J$ J$ z~ 6' q, [) s, s, v, H) v, x, 7' s, 8' v, s, x, s, s, x, t, 6' 6' q, 6' z~ q, ^, <{ ;b L$ <{ ]& L$ ;b G= + $ # + & > > ; ; > Q$ > ; N$ S$ | ; & ~ | , N$ 2 | H= ) ( H= ~ ~ { W@ , U@ ) | ] ^ & S$ . Q$ S$ $ M$ 0' L$ J$ ]& R@ ], R@ )~ q, 2! [) %{ ^, 5' [) ], ^, z~ ^, M| 6' e^ v, v, e^ [) v, s, [) 5' H) - 7 e &# j 6 a 7 e 6 6 $# W@ } d == } ", +"z~ z~ *[ z~ z~ *[ *[ z~ Il.ah.z~ *[ 9i.$8.z~ Pi.98.xi.9| *) 9| *) 9| 2! 9| 9| 9| <{ <{ <{ 9| *) <{ <{ <{ J$ L$ I/.R@ 2^ 9| J$ J$ J$ BN J$ 0' J$ R@ <{ 0' I/ I/ ]& I/ 0' 0' 0' 0' + # # 0' 0' # * $ # = o! + 5_ ]& #^ k) . 2) & = S$ . # = $ # $ L$ + $ + . $= U@ N$ . U@ . X! & U@ = Q$ U@ R$ H= ~ %= $= & %= N$ Q$ & - | & ~ | | N$ | Q$ ; ) X@ X@ 7- | { 2 tp.( | [ Y@ { I= ## P$ H= ~ ## 2 1 ( } 4 [ { {;.} D, Y@ d 6 *# 5 7 )1.># } 9 6 3* 5 D, a q> c6 3] ,# 3* 7 c } 6 d 8 n 0 L= k 7 a n n n h Y$ h s> |& Y$ n p r Y$ r p m `$ 2, r ;= ;) b' 2, Y$ 4* /# w :# D {& p `$ w C {& {& {& {& ^# 4* G F :# F= a7 F= #] a7 /U z 1& w A I M M M F= M &> N c- T^ T^ M P@ F= O@ >z >z Q J E$ L 3# :* T |# O J Q d{ G$ G$ pF 3d ^P #N 3d 3d G$ 3d 3d `I 58 E^ `I tw 7s 6B 7s 7s 6B 6B 58 7s EN EN q9 ja Ou r4 Ou J EA Ou &H up._C =. C@ EA /3 FE A0 :3 A0 =. |h `z /3 /3 |h `z |h A0 vp.9/ b: Y6 b: 82 Y6 Y6 a: b: >b 82 '& '& %% 7, %% J: q/ '= r/ ^^ ^^ =2 D~ ^^ D~ 3~ w{ w{ 3~ 3~ 3~ */ w{ w{ 6& |. p^ ,% ,% e* -% |. e' {= e* s@ *% t@ -% a& 4. i# e# f* g# a& s@ 2. e# o@ j# >% wp.s@ [y h# u@ R= b. b. R= b. q@ )% 5. F9 in.F9 i- @m.s@ m# ~* $i.$i.R= Y* ~* F9 ~> -& l@ u$ a. o@ 8j.s$ Y* -& r@ i> u@ {* p@ E7 F9 t$ q@ u@ a. -& 2. $i.~> u@ Q- m@ ~> = -& o@ ~> t$ {* [y u@ q@ u@ v@ w@ q@ >& {* 9& v@ s@ v@ 1. v@ u@ :. u@ a. ~> ~* s@ %% _. :. '. x@ ~. ^. ). v@ x@ d# ). ). {. v@ ~. {. x@ !. x@ !. )& &. ;. &. -. ~. {. %% ~. -. -. ). ). {. ). )& A@ +. W p & + ^, q, z~ q, =) v, x, H) v, w, v, s, s, x, s, =) }) v, s, +' @] 6' 5' r, 5' q, 2! J$ <{ e^ )~ *) `, R@ R@ L$ l) J$ = J$ + M$ + + + $ & . Q$ ] ] %= ; ; & U@ > | ; P$ U@ (& ; | N$ . > ; S$ S$ ; S$ |* - . Q$ L$ L$ $ $ > 0' L$ J$ J$ <{ *) ], )~ ], 2^ J$ *) J$ e^ g~ +' *) *) *) q, q, ^, g] 5' q, x, s, v, 8' +' 2! | ~# a 7 =# ,# {# k 7 g $# } < ( $# ## X@ ", +"z~ z~ z~ z~ z~ z~ *[ z~ 2! vh.ql.*[ z~ *) *) e^ e^ 9| 98.$8.<{ <{ 9| 9| <{ 9| 9| q, 9i.;b J$ ], R@ <{ <{ R@ L$ =$.J$ 9| <{ I/..( R@ R@ R@ I/ L$ *) *) =$.I/ ]& R@ I/ 0' 0' 0' 0' = # $ 0' 0' # # ]& I/ $ = L$ % # Q$ [* S$ Q$ [* ' $ ' 0' # - N$ . > & *' U@ |* . > & U@ |* . . | H= P$ |* ; ] H= ] # N$ R$ ; ; | & Q$ R$ | U$ *' ; 2 . & O$ X@ I= 5- `@ & X@ N' ~ [ { { N$ 05 2 [ ## X@ } } /& < /& I= { 2 /& 5 $# 5 6- { 6 Y> 7 5 ># 7 d d 3] q> 3] 6 a 0 k c5 q> k ( ,# ~# } $# J] ~# 0 k j f h c c L= 0 W$ |& L= }& {# p p L= % `$ c{ % `$ r Y$ Y$ q m t 4* @= #| ^# % :# B :# t w w 2; 2; t #] ^# t G {& D F= B D a7 N F= 1& w z I AR 1& 8* I A O@ 1& O@ 8* 8* A 3# I & u' &% (. P= |. 9, P= -% :. e* ~= (. :. v> ~> {= h# s@ a& ~> 4. f# l# a& u@ i# ~% 2. o@ -& -& _s ~* o@ u@ b. R= ~> b& h# u@ Z* ~> ~> u@ -& R= q@ ~> o@ >% a. ~> Y* l@ ~> h# m@ ~> m@ ^* s@ F9 R= s@ o@ s$ F9 s@ m@ u@ t$ t$ ;& s@ s@ -& m@ :. d# s@ ~. q@ {. o@ x$ (. x$ = u@ = |. {* = 8& q@ :. 1. :. s@ v@ u@ t@ C= :. :. x$ :. v@ a6 v@ h# d# {. c# t@ {. &. 1. q@ '. (. {. 1. b# ;' (. '. {. ). {. /. A@ ). ). b# !. ;. ;. A@ -. ). &. *. 5# .= &. A@ +. S | R@ 5' 5' *) q, z~ v, s, x, =) v, r, v, v, r, s, x, s, [) v, q, v, s, 6' v, @] 6' +' v, 5' q, ], g~ 5' z~ s' )~ ], J$ ]& L$ ]& L$ # # 0' + 2) & > . . > $ $= L$ . ; & ; & - . $ ; ; & & {c ' > $ Q$ + $ $ $ p9 p9 J$ = + <{ L$ *) ], J$ z~ q, z~ *) ]^ g~ e^ e^ *) @] z~ 6' q, q, q, +' q, 6' 5' ^, r, H) v, +' ], 1 a =# a :& -# b ># ,# $# e $# $# 7 d -> { ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ |1 Il.z~ z~ 2! $8.|1 e^ 9| 9| 9| 9| *) *) <{ <{ 9| 9| *) <{ <{ J$ <{ J$ I/.<{ 9| <{ <{ <{ R@ 2^ l) l) R@ R@ R@ I/ ]& R@ I/ I/ I/ I/ I/ I/ 0' 0' I/ 0' I/ $ L$ I/ #S # + ]& = $ + X! ]& V@ . S$ [* . Q$ [* # # Q$ + = $= & ' > V@ Q$ $ ' . # & S$ U@ N$ $ - Q$ =' ; U@ %= ' - N$ 2) (& ; - & %= H= & # | | Gc U$ U$ | H= ] ; 'W *# `@ /& { | | [ 2 | 05 2 ] | ~ ^ ~ 7- 6 ( /& 2 { /& /& { < 2d d :& c6 U- G9 { d } == 6 6 d } 7 a tA a 7 {# ># e [& 6 b ,# a' !# c L= !# Y$ L= b ~# 0- c Y$ &].s> r L= _# L= Y$ p 2, 1; Y$ `$ Z$ Z$ 0< v ;= ,> h p ;) 1; `$ /# {& @= w {& G {& F 2; G G F w {& :# G z n! F G z A F= F= W) E; O@ T^ 8* O@ n! M O@ I M c- P@ I c- |# >z }Y 3# |# A..J O@ aV *I T T L qF D$ T U^ E^ r! G$ 3d 3d L@ 3d #N 'Q 3d O= 58 4# 7s 6B 58 7s 6B 58 7s r9 7s q9 r4 H9 Ou qH xp.cf ja ja r5 r5 L) Xz C@ . =. =. =. =. /3 =. =. /3 A0 =. A0 R' t( dy df Ic b: b: b: Y6 Y6 9# b: Y6 82 q/ %% J: X) q/ X) X) %% 0/ %% a: 3~ 3~ D~ &% 3~ &% &% &% 3~ 3~ +~ >' W^ ^^ -{ &% >' '. |. e' d* t@ `> P= = v@ {= 7& ^. 0, >& h# a& a& s@ '% q@ 8. 2. o@ -& 8& h# s@ ~> -& x$ 2. o@ ~* o@ s@ b. F9 F9 -& Y* F9 o@ ~> ~> m@ {= {= ]* F9 s@ -& -& o@ -& ~> ~* o@ {* o@ o@ s@ F9 s@ a& b& {* ~> v! {* o@ s@ {* O- <. u@ a. ~* d* u@ ~* h# O- q@ ;& o@ o@ 8o.q@ (. q@ :. :. E~ ~. {. o@ >& w$ u@ 9& (. >& (. w$ <. (. v@ :. x@ !. A@ ^. :. 8& C= ~. B@ 5& ^. [, -. *. &. (. (. [, e- z@ ). ). v@ x@ &. 0# +. A@ x@ {. -. ). ). &. )& *. l> (* ]. A@ .= [ !, *) 3_ r, q, s, s, s, s, s, x, v, s, v, v, =) u, s, t, u, v, u, s, |) v, s, @] [) +' q, ^, [) q, q, ], ], *) *) J$ <{ J$ *) J$ J$ M$ S- J$ ]& = . 0' + 5_ # = . # . = V@ = . $ $ 5_ = $ V@ . X! & > . M$ 0' 0' I/ # 0' L$ 0' *) L$ <{ R@ ], ], ], 9i.g~ *) `, <{ e^ V! ^, z~ =) ^, z~ g] q, v, s, A, q, s, r, v, v, v, g~ }* k {# ~# J] V- a 0 0 0 ,# 6 *# ## $# d &# $# ", +"q, z~ z~ *[ z~ z~ z~ z~ 2! 2! |1 q, z~ 9i.vh.xi.*) *) 9| $8.98.98.9| 9| <{ 9| 9| <{ 9| <{ J$ J$ jP 2^ <{ <{ <{ ;b <{ 2^ R@ .( <{ <{ <{ J$ G= I/ I/ R@ ]& 0' X! k3 I/ 0' I/ 0' 0' p9 = + 0' 0' ]& # $ # # M$ = k) $ # > V@ $ > [* 2) = V@ + o! S$ |* [* + V@ - $= [* - 1* S$ H= H= - Q$ ; U$ & ' U@ . | > U@ > U@ U@ ~ ; {c R$ | Q$ & b{ U$ | | H= | ; R$ &= [ 2 %= | X@ | 2 < -> 2 Z! 5! ## 5 [ 1 2 d 5 5 5 { 5 ( 6 b ( d &# d a V$ d 3* 6 } $# I= ( d $# $# a 8x 0 3] a' 2* ,# 0 6 e ~# e 7 a 0 !# ~# i s> L= 0 -) 0- |& V| s> Y$ h c n ,> d<.K/.p ,> 2, vA q Y$ 4* y t Z$ t t p ^# /# t t ^# w B Y$ G B F= G /U C` G N E; z n! I m) a7 E$ 8* Ri.z .Z..3& Q c- 3# O A: aV Q E$ E$ J L@ L L@ d- L@ 3d 3d 3d Vf qF 3d #N ^P qH E^ tw E^ 58 58 O= 7s O= 6B 6B q9 BE tw 58 C$ wr 7s ja r5 wr r5 ja $i .u F^ F^ L) /3 A0 ;' A0 /3 A0 /3 ~( ;' A0 /3 A0 Z9 A0 vp.6d b: b: t( b: b: Y6 b# b# b: <3 %% J: %% X) /. '& %% /. X) ^^ '= u! J: 1~ 1~ &% &% &% +~ &% ,& >' w{ 3~ -{ mp./* H; |. /* t@ ~. H; {= ~. c# v@ e# 8& /* :. u@ a& s@ 8o.2. 8o.s@ }. R= b. >% '% r@ ~> s@ -& Y* F9 ~> [y ~* -& h# o@ o@ u@ ~> j- o@ ~> o@ h# o@ 8j.-& (. u@ u@ q@ {* {* F9 u@ Z* ~> Y* o@ u@ t@ {* ~> 1. s@ m@ s@ -& t@ q@ -& x$ 3. P- s@ w$ :. E7 h# ). q@ t@ 1. q@ P- >& q@ s@ t@ <. P- q@ w$ <. -& 1. C= v@ {. 9& w$ ^. =% O- x@ != {. ^. w$ u@ 9& c# ]. !. v@ '. &. !. v@ x@ !. ^. ). ). ). ). {. !. 4) H! =. x@ &. A@ z@ !. z@ 5# *{ )& &. &. ). .= E@ !. e- W$ ] g~ [) z~ 6' s, s, 8' s, v, v, x, u, s, v, x, x, x, ' s, v, z, r, 6' r, %{ 6' x, q, ^, q, z~ q, 2! e^ <{ <{ J$ `, L$ q, ], V! L$ <{ ], 0' J$ L$ k3 !, L$ + + X! p9 0' 0' * $ # # + # L$ J$ )~ L$ + . ]& $ ]& 0' ]& ]& L$ p9 ]& ]& J$ L$ <{ J$ <{ e^ <{ ], L$ e^ ], J$ q, <{ yp.@] 6' z~ z~ 6' ^, v, [) v, [) r, q, r, x, q, s' ; {# ~# 0 &# 7 7 a a ,# ## 6 j $# 9 { $# / ", +"*[ z~ z~ z~ z~ z~ *[ *[ z~ 2! Il.2! z~ z~ *) 9| 9i.e^ 98.2! 98.9| 9| <{ <{ 9| 9| <{ 9| 9| <{ <{ J$ J$ #S 9| *) r4.<{ ], R@ R@ 8S I/.J$ 2^ ]^ G= I/ G= 0' 0' L$ BN I/ 0' 0' 0' 0' 0' ]& # $ [n 0' + V@ + Gc # $ k) # 1) # $ . k) . V@ ' # V@ . Gc # S$ + # V@ $ $ > & S$ U@ > > S$ & ; & $ > S$ | %= - | o! # T- Z! Q$ | U@ | > ^& H= ; | R$ ~ ; ^ %= %= [ ( ) Z! ## ~ 2) ) ~ | | Y@ 2 X@ [ 7- ( 2 ~ /& 1 6 ( Y> } } <& } 3* 5 7 V) 3] 3* 5 } $# d ,# 0 $# a 3] 3* ~# k [{ a vk Y> 7 ,# !# } 7 n ~# s> k -) n -) h Y$ |& ~# h 2, ;= Y$ L= h ,> h p s> s> Y$ ;) 1; s> D ,> `$ q :# /# `$ ^# b' 4* q % G {& F= w w z F= . /3 =. =. A@ A@ ;. 9# 9# b: 9# Y6 b: H! !. c[ d[ $. q/ 7, X) q/ u! '. %% *. H! 1~ 5& ~] &% D~ ~. v@ 3~ &% ~. &% d* &% '. |. 9& e' g- *% 8& t@ (. `> 9& ,% >' t@ :. /* (. t@ s@ {= :. b& a. i# {= r@ o@ b& a& ~> u@ s@ {* o@ ~> {* s@ Q- >% F9 -& ]* Y* 3. o@ ~> {= s@ u@ -& m@ o@ ]* o@ Q- s@ s@ E7 l@ o@ <. h# 3. {* h# ,% o@ -& s@ u@ -& :. s@ a. q@ u@ w$ ,% ~> u@ = /* = o@ 1. {= o@ '& {* x$ w$ d# <. q@ (. C= O- u@ %% w$ 4_ <. x$ =% d# 1. (. v@ F9 '& gT {. w$ 9# v@ d# '. ^. ~. %% '. {. b# {. '. ^. !. 0# '. x@ +. 5# gT !. !. ;. ). 5# !. z@ z@ &. -. &. !. -. ;. x@ z@ .. z@ .= S ^ J$ <{ ], q, 5' s, v, 6' r, v, x, H) s, t, v, v, s, t, +' v, g] s, r, q, v, 6' +' 6' q, q, e^ e^ q, ^, e^ ^, e^ e^ e^ J$ *) e^ J$ I/.J$ J$ *) L$ <{ L$ ]& X! !, R@ R@ L$ ]& 0' > = = $ R@ J$ L$ ]& ]& L$ R@ L$ + L$ R@ R@ <{ J$ R@ ]& .( J$ L$ J$ q, ^, ], <{ e^ ], *) 2! q, ^, ], q, q, r, [) ^, [) z~ 6' v, =) [) s, s, 6' r, 2! g~ | 6 {# k e b -# 6 6 2 9 < 2 6 d ~ / } ", +"z~ z~ q, z~ q, z~ z~ q, z~ *[ ah.xi.z~ rl.*) 9| xi.9i.)~ vh.|1 9| <{ 9| *) 9| <{ <{ 9| 9| <{ <{ R@ R@ l) <{ J$ <{ <{ l) .( ]^ ;b <{ .( J$ R@ G= I/ G= I/ 0' ;b ], I/ 0' [n 0' 0' ]& =[ =[ K$ # 0' 0' * # $ + % $ = * 1* . $ Q$ $= + ' > V@ > = [* . + L$ # # . $ ] > > = > . = # - T@ $ ] & > U@ ^& & * ] ^ N$ N$ 2 2 ' ] - ; U@ | ; ] ) %= | Z! ## ~ { ~ H= > | ~ | Z! ~ ) X@ ~ } *# ;# | 2 Y> N' ## } d *# => } ,# 6 6 &# ,# 6 $# ,# B; a' < ,# 3* 7 ## 3] 2* ]c ,# a _c.0 V$ !# a a 3] L= 9- h s> L= K/ E, `! r ;= 0 c Y$ r r s> s> c 1; n s> Q(.zp.q q Y$ D m 4* ^# 2; /# `$ :# :# {& t ^# G w 4* /# G B a7 B G }# K #= {& {& w N= G U*.1& #= $T 8* n! w X8.M .@.O@ 1& F= z E$ o^ M c- 3# 3# 3& L 3; |# :* L :* U r! L U^ r! jI tw 0* T U^ G$ O pF t> 0* 58 O= pF _M 58 58 58 58 58 7s r9 r9 6B 6B ja ja ja {z Ou ja H9 bf bf R{ .u =. 5# %i a* F^ =. =. =. =. ,. ;. &. ]. =. &. ~( $. Z9 9# 9# t( 5; b: t( b: b# b# Y6 b: ;} 5; H! ;} 7, /. ). b# H! X) {. 5& D~ /. {. {. D~ ~] X) &% ~. d* 3~ 9& 5& ~. v@ 6& D~ e{ 1. ~= Q= Q= /* /* v@ 9& :. t@ e# t@ Q= 0& 0& s@ :. s@ t@ o@ o@ u@ q@ E7 b& 3. = 9& {= u@ 2. a& o@ q@ s@ [y ]* s@ o@ o@ o@ o@ -& o@ -& -& h# ]* -& 9& E7 m@ :. u@ u@ h# <. ]* m@ s@ u@ u@ l@ D= u@ q@ -& s@ ~* ;& u@ w@ O- O- q@ w$ u@ (. q@ N- :. >& w$ >& = (. w$ C= C= w@ O- (. (. !. ~. q@ v@ '. =% B= ^. o@ ^. ). v@ /* v@ ~. {. 5# !. {. ;! ). v@ '. x@ ;. (. )& &. v@ '. &. gT A@ $. 5# !. ;. x@ =. &. ). &. ;. b# v{ .= +. z@ A@ .= z@ )= z$ a $ R@ 2^ 6' s, r, r, v, v, v, v, s, s, y, v, u, u, s, s, x, s, s, s, s, s, v, v, 6' [) +' v, ' 6' ^, ^, e^ 5' %{ `, 5' *) q, e^ l) J$ i) J$ L$ ;b L$ <{ l) J$ ]& R@ R@ <{ J$ R@ <{ J$ J$ g~ s' p9 <{ )~ *) J$ ], )~ <{ L$ BN ], ;b *) J$ ], 9i.I/.e^ g~ J$ J$ z~ e^ z~ 2! 6' 5' q, ^, 5' q, q, g] @] z~ r, v, @] s, s, s, s, v, v, s, s' $# e n ># 6 6 a 3* &# Y> a &# { V$ b } ~# < ", +"z~ z~ z~ z~ q, z~ z~ *[ z~ *[ z~ vh.9i.*[ *) 2! vh.*[ Pi.|1 |1 98.|1 9| 9| 9| *) 9| 9| 9| <{ I/.R@ R@ J$ <{ J$ <{ <{ ;b L$ J$ J$ R@ I/.BN G= R@ #S L$ J$ jP ;b 0' G= 0' L$ 0' 0' ]& I/ L$ # K$ X! 0' Z, 5_ ]& L$ # k) # ), % + # . * . o! 1* ; . $ . # k) [* $= $ = . . > = |* > & # > > > V@ V@ > T@ S$ 2 %= N$ N$ |* Q$ - .# ; 2 | N$ *' ] . Q$ ; U@ 2 H= & [ 2 5- ] ] N$ %= X@ *# [ R$ } $# [ 2 2 / ~ 2 &# /& { D, 4 5 Y> Y@ 1 V~ 8 } x0 q> d *# k q> 6- [ ) 5 ( 6 a ># ~# ,# 0 q> ~# 6 [{ ~# 0 ~# j 0 i o n L= h L= L= a h c C; n^ s> vA _# h n^ 4* #| ^# 4* V| u :# p ,> % ^# :# 2; :# /# t F #] G w 2; B F= z B F= ^# /# B F= }# F= E }# ^# n! G E; O@ {& G 1& 8* n! O@ A V N K@ 1& #= 3# E$ Q J c- |# P@ 3; Q E$ H J 3# c' H r! L@ 3) 0* d- L J L@ T tw 4# G$ 0* `I E^ E^ I@ 58 6B O= r9 O= 7s 7s r4 ja ja ja r9 ja H9 PL ja Ap.-K L) =. al bf F^ /3 $% R' A@ /3 ,. 5; /3 /3 :3 x5 ,. ~( =. t( 9/ >. Ic ;. b: b: 5; Y6 5; ;' ;. 7, 9# H! u! X) D~ a: /. ). X) 5; ;} ~. %% /. &% {. &% 3~ +~ /. ~. b# D~ |. t@ Bp.8& *% Cp.<. |. v@ k~ 5& :. ~. d* '. h# s@ kp.Q- ~. 3. w$ h# {= 4. e# h# :. >% |. :. <. *% (. a& F9 {* Z* o@ = ~* 2. F9 2. 2. s@ h# u@ {* s@ u@ {* -& q@ h# l@ 8& s@ u@ 3. u@ x$ w$ >& u@ ,j.t$ s@ o@ o@ t@ s@ u@ B= (. q@ /* x$ -& t@ q@ :. ^. 4_ q@ v@ w$ d# (. ). E~ B= x@ = x@ &. o) ;. >. ^. :. {. t@ w$ ^. {. ^. &. '. d# w$ 5& !. /. !. &. '. !. =% !. A@ '. S' A@ 6, (. l> x@ !. =. ~. >. A@ ). 5# z@ &. '. (* !. +. 4& .= )= z@ z@ [, )= +. z@ _# & + S- 2! q, ^, 6' v, v, w, s, v, 8' y, s, z, s, 8' s, u, s, s, s, 8' @] v, s, =) Dp.s, s, s, 6' 6' q, 5' ^, e^ `, ^, <{ ], *) s' ;b L$ <{ J$ s' g~ J$ ;b s' )~ J$ e^ L$ R@ L$ L$ L$ p9 L$ ], ;b ;b g~ s' *) *) V! J$ L$ ]& L$ L$ ;b *) *) z~ e^ )~ <{ 5' @] q, g~ q, e^ 2! 5' q, z~ ^, e^ ], 6' q, v, [) v, =) r, v, s, v, v, s, +' z~ + j ~# n ,# a 7 3] o &# N' k 6 ## 2 } } [ : ", +"*[ z~ z~ z~ q, z~ q, *[ ql.9i.z~ 9i.|1 z~ z~ 2! xi.2! e^ 2! 98.*) *) <{ 9| 9| *) 9| 9| 9| <{ I/.J$ 2^ J$ I/.<{ J$ 9| ;b ;b 2^ BN J$ <{ R@ G= R@ BN ]& <{ <{ <{ I/ I/ I/ I/ I/ I/ L$ I/ I/ 0' * + 0' # + # ]& R@ # . o! $ ]& . $ # Q$ + . > > $ . . ]& + V@ > V@ ]& V@ + . . # . Q$ V@ - & . ; N$ ] - & - N$ ; ] | H= }* ; Q$ ! U@ N$ 'W ; Q$ ~ U$ ) Q$ Q$ [ P$ S$ | ) N$ | { 1 => ] ) | 9 ( H= { 1 I= 4 4 ~ } /& &# } 6 / 6- [{ 6 J] J] $# } d ># } } d 7 0 Y> 7 tA ~# a k ~# vk 6 } $# ,# J] ~# a ># n n ~# L= c |& q> )# Y$ 0- o ,> -) 2, 2, ;= ;= m % Ep.n^ `$ @= @= q m t p q ;) n^ n^ 4* m F F= D G 2; {& 2; F= W) G a7 /# G #] n! w A G G B w w I O@ O@ T^ M O@ I M |# |# |# M n! c- 3# |# H P@ L H E$ |# A: C, L@ Q ` E$ L' L@ U^ r! T L@ d- ^P U^ 4# L@ 0* G$ @N @N qH 58 58 ={ C$ 58 6B r9 n) q9 ja r4 r4 Ou bf r5 H9 F^ +. /3 ,. df =. /3 =. =. ;' A@ =. ~( ,. x5 :3 x5 ,. ;' $. $. Ki gg b: t( Z9 ;} <3 Y6 Y6 d[ '= !. 7, q/ [. /. x@ ;} ). b# ). x@ &% =% /. != '. ~. =% 6& 1~ b# /. 9& `> |. 9& != e' :. {= 8& >& r^ ~. v@ _. ~. _. 7; a& {. e# h# s@ '% x$ a& s@ u@ ^. h# s@ u@ ~> s@ q@ h# b& ~> F9 s@ k> F9 -& =& :. :. u@ u@ ~> -& u@ 1. w$ Y* v@ l@ h# h# :. t@ h# a. w$ r@ Z* s@ :. w$ m@ -& Q- [y ^. w$ u$ d# :. q@ :. o@ (. ^. :. (. (. (. w$ = u@ '& w$ !. C@ W> v@ '. /* w$ = 5& E[ 9# v@ q@ d# 5& ^. ). v@ :. ^. A@ !. x@ ). =. v@ {. B@ !. !. =. !. -. x@ &. &. B$ ). -. d# (* +. A@ z@ 5# A@ E@ D@ -. ;. G@ A@ )& ;! &. &. x@ .= #. F; &. .= Q@ - ]& e^ 6' ^, r, s, r, v, }) s, }) s, s, s, s, s, s, x, x, s, +' v, s, v, v, s, +' =) s, s, 8' =) 7' 6' 6' q, q, q, s' ], <{ <{ `, ], ^, ^, *) ], 5' <{ <{ J$ )~ <{ s' R@ <{ R@ <{ J$ J$ *) <{ <{ <{ s' ^, J$ )~ <{ J$ J$ L$ R@ ]& *) e^ z~ e^ ], J$ ], q, 6' z~ z~ 2! e^ q, ^, *) 2! r, [) 6' v, q, v, s, ' 6' v, r, y: 6' s, s, x, *) f] Y@ 7 vk /& a 6 == 7 V$ 6 k ># { 2 ## $# ## ) ", +"q, z~ z~ z~ z~ z~ q, z~ ql.q, ql.*[ vh.9i.z~ 9i.2! xi.*) Pi.|1 <{ vh.e^ *) <{ I/.<{ 9| 9| <{ <{ <{ 9| ]^ <{ <{ J$ <{ 9| <{ J$ 9| 9| <{ R@ R@ R@ ]& I/ *) <{ p9 ;b BN L$ 0' I/ ]& 0' 0' [n 0' # K$ 0' 0' 1) # $ + K$ # k) 0' $ . # k) * > S$ > V@ V@ = S$ $= $ # ]& S$ = & Q$ - . |* . %= U@ +i.> o! ;# - Q$ U@ R$ . U@ . |* ^& & U@ Q$ $ l!.~ R$ H= N$ ~ ] > N$ | & 2 { *' ) | N$ [ { { 2 ~ } ~ 4 / ~ ## < } [ 2 } ( 4 } ## k } ## ( &# D, 6 J= /& } d 6 7 } 8 6 a d L= 0 6 a a' 6! a ~# L= 2* ># 0 L= !# a c q> ~# r h 0 ~# -) ]# r h L= h 2, e n ,> s> Y$ (# s> xE 1; m w :# ,> t ;{.w p n^ % t t ;= (# {& {& F= {& 2; {& 2; B 2; z z x A I z O@ T^ a7 A F= z T^ a7 M c- O@ P@ :* |# Oz M V J >z 1& H$ 8* O J |# J C, L@ T H P@ T H >O U^ L@ O J G$ d- 0* 4# =I 3d 4# 58 O= 7s 58 O= 58 r9 7s 58 58 58 Ou q9 r9 r4 E^ 8# Vz cf cs ,. $% 5# L) =. $% =. =. =. =. $% Fp.,. $. ;. r5 Z9 dB gg b: ;. ~( b: t( Y6 b: b: b: 7, %% '= '= %% '. ). ). F, =. %% '. u! X) /. p) 9# w{ &% Gp.&% ^. &% =% {. =% '. 8& v@ {. 5& v@ *% ^. `> 6& 8o.Q= 9& h# 9& {= ^. {= {= (. 1. 9& t@ h# d* h# :. s@ o@ h# <. ~. t@ S' :. -& F9 o@ F9 -& ]* :. s@ -& {= :. s@ s@ o@ C= ~> :. u@ x$ s@ ~> s@ :. :. u@ h# ~. s@ <. (. u@ u@ v@ x$ {. s@ (. s@ C= # 6 ( { ## 2 { ", +"z~ z~ z~ z~ z~ z~ z~ 9i.2! [) ql.*[ vh.Il.z~ *[ z~ <{ *) e^ 2! ah.ah.9i.9| 9| 9| <{ <{ 9| 9| <{ <{ <{ R@ <{ <{ 9| 9| <{ <{ I/.V! J$ J$ l) R@ R@ R@ 0' ;b BN L$ jP 0' G= 0' 0' 0' 0' [n X! I/ ]& # $ 0' + # $ = $ * $ 0' # # ' $= = S$ [* [* ' |* > [* . $= $ Q$ + $= > o! > . U@ U@ > P$ S$ N$ U@ . ; |* > U$ ] & Z! S$ | ~ %= X@ R$ | N$ T- N$ ~ N$ &= 2 S$ O$ X@ Z! | 2 ) 2 ( 7- ~ `@ / N$ 2 { ) 8- $# { X@ < 1 } { 2 [ 2 } 6- 2 $# 7 { $# 7 ## 5 $# } 5 ## $# k 7 7 k a a j e ,# N' ,# 9 0 K/ a e a e 0 j 6! {# e 6! h {# 8 o h j n 2, r 1; 2, s> Z$ p L= y % 4* 1; ;= w :# /# @= :# w :# D ^# b' :# D m N F= z {& z z..z :# b' z z z N z B z N z A H$ n! M O@ c- I I I A A z P@ P@ 3; 8* J P@ O 3# Q Q H U r! T C, L@ r! D$ pF tw pF L Q Vf L@ U^ E^ #N U^ L@ tw `I O= 58 7s O= H9 @. 7s rH q9 r4 E@ 58 r4 {z 5d ja r5 $i Bk $% 5# L) =. L) =. =. A@ ;' +. 5# 5# $. A@ G; 6# 4- =. c[ ~( &. V^ ;' b: b: b: b: b: 9# q/ X) ). H! !. '= H! $. a: '. w{ %% !. ;. 5& '= &% &% /. p) 5& }@./. x@ x@ d# ~. ~. ~. ^. {= :. c* 7& (. |. (. t@ '& ~. '. v@ t@ 3. 8o.q@ v@ {= u@ b& s@ s@ 5& {* 9& >& q@ s@ q@ s@ s@ -& s@ v@ 2. q@ {* o@ -& {= 1. 8& v@ :. s@ v@ v@ {* s@ E7 -& -& 8& v@ :. s@ s@ q@ >& s@ q@ '. x$ u@ t@ -& w$ v@ c# q@ w$ w$ (. ^. :. /. d# v@ C= w@ '. !. c# q@ x$ E~ t@ B= 5& d# A@ '. ^. ^. 9& v@ /* )& ;. ^. !. ^. A@ b# (. x@ ,& ]. ^. !. A@ +. x@ !. ;. *. e- ). x@ F; x@ z@ ). ). %. &. b# A@ $% &. E@ z@ L) .= 4- $% F@ z@ E@ F@ z@ z@ &. V L@ _# & s' V! ^, =) x, +' q, z~ s, v, v, u, H) s, s, x, s, x, s, u, v, =) v, v, v, s, v, v, v, s, v, 6' q, ^, *) z~ 5' [) 3_ v, q, q, v, ^, *) J$ e^ <{ *) 2! e^ ], e^ *) *) 5' *) ;b L$ ], ^, ^, I/ <{ e^ <{ L$ J$ *) <{ *) z~ [) ], *) e^ *) V! e^ *) *) ^, q, *) *) ^, *) 5' [) q, q, %{ [) ^, q, q, =) v, =) [) v, v, s, A, s, q, *) R@ Y> j ,# ,# a D, $# a -# &# 6 d $# ,# } 2 / $# V$ ", +"q, z~ *[ z~ q, z~ z~ z~ 9i.ql.z~ z~ ql.vh.&[ z~ e^ *) 98.5' 2! 98.2! |1 <{ 9| 2^ 9| 9| 9| 9| <{ <{ <{ J$ 2^ 9| <{ <{ J$ 8S <{ BN *) |1 jP J$ R@ R@ 0' ;b I/ <{ BN [n 0' 0' 0' 0' 0' ]& 0' I/ I/ # * L$ = + Z, I/ ]& # T@ 0' =$.}, $ k) [* > 1* # + V@ ; = # S$ # o! $ . U@ + $ . . U$ & S$ $ S$ ^& > $ U@ $= Gc ; | %= $ ] ~ N$ N$ N$ | & ; ) 2 ~;.| 2 | 2 N$ X@ 2 / 1 | [ ## & | N$ & 2 W@ { X@ -> / N$ Z! : } | X@ N$ ( $# Y@ ) { } 1 5 6- a 6 6 1 $# /& 7 ,# ># $# 6! 3] b 0 k ># 0 k == 7 ~# L= ~# X0.c ~# 6! ~# ~# !# k 2, h s> r 0 K/ `! p o/ `$ 1; C; `$ h 0 u ,> V| ^# % m Z$ b' 2; t 2; t ,> p s> ,! {& w q D F {& G {& t GK /# I ^# z N m w z z N B G O@ A H$ I S c- K K@ O W) 3# c- c- I$ E$ M 3& c- J 3; J c- P@ T H H L Q fp.pF kP t> O Vf 0* T E^ tw C$ d- U I@ 4# O= 0* ia C$ @. @. y@ H9 E@ r4 7s ja r4 r9 r4 . cf G; L) .. . .= . /3 $% =. e- A@ ~( ;' =. )& ;. .. /3 A@ ;. b: b: $% ;} Y6 b# H! ;} 9# ~( 9# a: A@ '= H! '= X) '. H! .= ). '& {. +~ /. /. ~. 1~ '. h- &% 6& =% '& %. != ^. '. =% /* {. 9& {. g- e' 8& w$ {= _. v@ t@ ,% &. ~. j> 2. :. ~> 2. :. ~. [y h# 4. 1. v@ w$ {= ,% 0& d* 4. {* a& h# 1. h# t@ m@ v@ h# Q- =& d# ~> :. q@ s@ /* :. *% Z* h# c# x$ ~. p) q@ :. (. c# x$ v@ :. v@ h# D= >& t@ q@ ). ^. = x$ _. ^. E~ (. t@ d# ~. =% ^. d# O- w$ '& C= {. ^. w$ ~. (. ^. t@ ). !. +. ^. &. !. #> -. 5# '. [, -. 6# o) x@ '. !. ). &. !. A@ 5# &. -. %% ). z@ *. B$ 5# 0# #. -. A@ A@ z$ )& . 7# $% 5# +. V> E@ z@ 5# 5# F@ .= V N > # [) 5' [) s, 6' v, [) y: s, s, x, s, v, s, x, y, u, x, v, v, A, A, x, x, H) s, s, s, 8' H) v, *) q, v, s, @] +' v, q, q, |1 2! q, r, e^ 5' z~ z~ *) ], 5' 2! ], 2! 5' ], V! *) z~ <{ ], ], z~ l) ], <{ *) ^, ^, *) [) @] z~ ^, q, z~ q, 5' q, *) 2! v, 8' ^, 6' q, g~ r, [) v, s, [) 2! &[ q, s, x, }) v, q, v, r, s, v, H) ^, # a ,# 7 6 a $# a' Y> 6 ~# 8 ( } 5 $# $# { [ d ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ Il.vh.z~ 5' 2! 98.^, )~ ^, $8.xi.<{ z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ ]^ <{ <{ 2^ <{ 8S <{ .( ], ], <{ I/.R@ J$ ;b <{ 0' L$ J$ p9 I/ G= 0' 0' p9 J$ 0' 0' 0' ]& # X! 0' = * + 0' 1) # = $ * + 2) 2) $ $= > [* & > # L$ $= M$ ]& [* |* $ + . > |* U@ Z! - Q$ S$ ^& A; Q$ & $= $ %= U$ U@ S$ ; U$ | & X@ R$ T@ P$ | 7- | ' & U$ R$ U$ { H= N$ ) ) { 2 { { { [ ) 2 ) ## ; { => Z! N' 4 { 4 X@ ( /& *# 4 F:.d ,# k N' d d ,# 6 -> d Y> } 0 2* a k a' e Q{ a ~# k 6! ,# ,# !# g |& 0 c c |& i K/ {# ~# c s> L= c L= s> Y$ 0 h _# ,> 4* r s> t Z> Y$ s> v `$ `$ 4* m #] _# 4* % p p m m t p 1; /# D w 2; m w G F= W) m 1& 1& I O@ z G O@ A O@ & 8& {* :. h# o@ t@ -& x$ B= 2. q@ v> 1. (. ^. t@ t@ q@ o@ {. q@ 3. t@ x$ s@ 3. q@ w$ 0& E[ :. (. h# q@ u@ {. w$ u@ q@ d# A@ v@ ,& >& :. w$ ^. ^. t@ (. $. )& &. (* &. {. '. !. {. (. 9& a# #> (. &. ^. b# ;! ;. A@ {. *. A@ d# p, ). ;. C@ !. -. ,. .. *. 5# &. %% A@ -. ). A@ ;. l> 0# e- A@ &. )& $. =. A@ )& )= +. $> )= e- X I@ B$ !> E@ )= #. @. F$ ) ]& )~ e^ v, s, 6' v, 8' v, 7' u, s, v, 6' 8' s, y: s, s, s, x, x, x, s, u, x, s, s, s, s, s, x, 5' 6' s, v, q, s, r, z~ q, 2! e^ v, v, z~ e^ 6' q, *) g~ 2! ], *) e^ ^, 5' q, 5' ], )~ e^ 5' q, ^, *) L$ *) s' 5' z~ ^, e^ e^ q, q, [) g] ^, %{ [) v, r, v, [) r, [) 5' r, v, 5' v, s, 6' q, v, v, A, s, s, 6' +' +' =) x, +' J$ ) 7 i e b _ ( i b e &# $# X@ 7 / 2 *# 5 } < ", +"z~ q, *[ *[ z~ z~ z~ z~ z~ z~ z~ *[ z~ Ip.vh.9i.5' z~ 9| |1 9i.Pi.ah.vh.vh.)~ 9| <{ <{ 9| <{ <{ <{ 9| l) R@ <{ <{ 9| *) R@ <{ J$ L$ J$ *) <{ J$ J$ G= G= I/ I/ R@ #S L$ I/ L$ 5_ 0' R@ [n 0' 0' + 0' 0' Z, !, R@ R@ L$ # + + # # Q$ Ez !, . . ' S$ > $ 0' = $= . {c V@ # & H= > - > U@ ; ; =' P$ A; > {c U@ $ N$ | | (& ; 2 ; ; Q$ ; T- 2 ~ ) ] N$ ; ; { ] ] J) .# / ~ =' [ ; *# ( 2 { /& [ 2 4 ~ } H= { 1 [ x0 5 [ V~ d 6 /& { $# 6 [{ < a 6 6 < 6 V) ## d q> b k c6 } 6! a 5 6 ,# Y> 6 ~# 7 0 K] c n K/ 0 ~# k c Q{ `! 0 h h Y$ -) L= n c ,> _# 0- n ,> `$ o s> u h `$ /# m m u r @= w D m q {& w u ^# t w :# ^# /# B B G 1& z P@ J E$ d{ J P@ E$ H$ J H M@ J H 3d G$ T L@ D$ D$ #N 3d O= L' `I tw 7s O= @. O= C$ 58 @. 58 0* r9 7s r4 @. @. r9 8# E@ 8# H9 r9 r5 =. =. ;I @. a* =. .= =. $% 5# A@ 8# /3 A@ &. ;. ;. )& =. t( 9# b: $. A@ ;. ). $. )& 5; e- b# !. F, &. {. ). S' ). b# '= {. '. =% /. '& !. '= D~ D~ &. /. /. /. ~. v@ d* e' &% ~. ^. 9& {. B@ d# E~ ^. b# %% ~. (. 4_ {. t@ d# 8& w$ q@ 2. Q- h# q@ ~. 8, (. :. x$ t@ :. h# :. q@ s@ w$ :. w$ s@ 8, Z* o@ h# (. a& t@ s@ s@ 5& Q- (. ~. q@ u@ ~. -& :. (. 3. = ^. ^. (. C= '. nY q@ =% d# H! ^. ,& !. ,& w$ l> ). ^. ;! 8& {. B= t@ ). {. '. -. {. &. ). ). d# ). C@ -. x@ )& d# ). '. '. &. -. v@ ,& )& b# '. {. $% ;. &. !. =. +. &. 5# =. +. 0# A@ &. B$ &. ). A@ #. &. B$ &. m> =. 4& .= )= C$ .. 4- @. P V G@ T B$ V E@ X r . ;b 2! q, s, s, z, x, H) u, z, y, u, x, 8' s, q, v, =) =) x, s, s, x, u, u, s, 8' s, s, z, q, s, s, v, g] q, 5' A, q, 6' q, ^, z~ q, q, *) z~ *) e^ ^, ^, 2! *) ], q, ^, 2! q, Jp.*) e^ e^ [) q, e^ 3_ 5' )~ e^ 5' z~ q, q, q, q, *) ^, 6' q, q, [) [) @] [) q, r, [) r, x, 6' q, =) g] =) s, =) s, v, 6' x, x, z, v, @] H) e^ d 7 i ,# V$ 7 $# ( 9 == 6 j ( 1 } ( ;# d V~ } ", +"q, q, z~ z~ z~ z~ z~ *[ q, z~ z~ z~ z~ *[ ah.ah.e^ 9i.*) <{ 9| )~ |1 |1 |1 9| 2! 9| *) <{ 9| <{ <{ <{ 9| 2^ <{ I/.I/.<{ J$ jP 9| <{ <{ L$ J$ I/.2^ 2^ R@ 0' I/ J$ I/ I/ L$ ]^ I/ 0' L$ T*.[n 0' = R@ K$ X! 0' $ Z, ]& ]& # Z, ]& 0' + + Q$ o! $ 2) Q$ # # + $ = ' > $ > - > [* > - ; S$ > > . & U@ U@ k) S$ $ S$ %= R$ & & | %= X@ Q$ 5- ^ Z@ S$ ) (& & | &= { T- P$ 2 Z! ) | | { ] | X@ 2 ) | 2 { 2 | $# ( X@ $# } [ { G9 d [ Y@ X@ V~ 6 $# ( -# d 7 6 } d Y> ( $# k 6 a q> a M' a a a {# Y> ,# ~# 0 $# ~# V) c L= {# a k ,# h s> |& n s> {# c s> % p Y$ Y$ L= 2, 1; 4* p K/ q ^# ,> `$ 1; `$ b' w p q Z$ G m w @= D t F= D F= w /U I '&.z a7 I a7 I w ~& B z z A O@ F= Q@ I Q@ 8* M N N@ I I Q@ I z n! [# QT M 3# M P@ O@ 3; L iI C, d- Q U t> qF 3& L |# T 3d `I 58 O= 3d 4# tw O= C$ C$ O= r9 rH d- 58 58 Ou E@ O= q9 W r9 r4 y@ R{ EA G; )= +. .. ,. A0 A@ ,. 5# +. =. =. ;' =. A@ t( =. e- G; t( b: 9# ;. &. =. $. b# 7, !. -. 9# =. ~( '= v{ H! b# E@ !. b# %% ;. =% {. x@ T' '. {. '. /. `> =% ^. ;. v@ 8, {. &% d# /* t@ {. 9& x@ ^. v@ =% ). *. 9# &. -' {. {. {. &% v@ s@ {. w$ t@ u@ :. v@ Kp.:. (. 1. :. w$ 1. x$ ^. s@ {= u@ o@ q@ ^. :. x@ ,& ). (. /* d# q@ h# {. ;. E~ :. {= = s@ T' w$ (. s@ >& >& {. c# w$ /. 5& d# {. w$ b# -. x@ x@ x@ '. +. W> {. ^. ). '. d# /* (. ). )& ;! 5# !. = !. &. x@ ;. !. &. C@ '. &. A@ ;. ). !. ). !. ^. -. 5# x@ &. &. ,. A@ z@ ;. -. z@ {. +. &. {. z@ 4) 5# V R X 5# +. B$ C$ #. E@ z@ 4& 4# T z@ D$ L@ C$ 5# V P G ; R@ *) z~ s, w, y, x, s, u, y, x, x, u, z, u, x, -! z, x, u, y, x, x, v, s, x, s, u, s, s, v, s, q, r, q, ^, v, v, +' u, 6' 6' [) [) g] q, [) ^, *) 6' g] q, z~ 6' ^, ^, )~ q, [) r, r, 6' ^, [) q, z~ *) *) D[ z~ 5' q, q, q, q, ^, q, 8' q, 6' *) v, 6' [) q, q, g] ^, v, r, 6' 6' v, H) [) s, ' u, v, v, s, v, q, r, v, G= [ V$ a -# -# V$ ## 6 J] [ } } 9 ## { a Y@ d 1 < ", +"@] 5o.z~ q, q, z~ z~ *[ z~ z~ 6' z~ *[ *[ 9i.vh.z~ *[ z~ |1 $8.9i.*) 2! ah.<{ 9| 9| 9| 9| <{ 9| 9| <{ 9| J$ R@ 9| jP <{ J$ <{ <{ jP l) R@ J$ <{ L$ 2^ BN R@ I/ ]& I/ I/ L$ G= G= 0' 0' 0' I/ p9 [n Z, # = 0' Z, # # = # + $ $ L$ $ . + $ ' + ]& V@ > 0' + > Q$ $ # 0' L$ . |* & > . & !, 0' & > $ L$ k) ; > U@ U@ Q$ =' %= R$ N$ > ! ; ~ ! ] & Q$ R$ R$ ] U$ 8- /& ~ W@ 8- | U$ ] | } ~ { J) 5 } { [ } { { [ { ( d D, ) } / $# $# { 5 D, a 6 i 6 7 ( ## 7 Y> } # 4 6! ># i 6 N' ,# 6- a 7 L= a a ,# 0 0 0 n e d {# h L= 0 p h X$ Y$ s> h p _# Y$ Y$ ;) n ;) 2, p p }& 1; p 1; #] 4* :# % p /# /# z z m /# t ^# G % w z G w 2; w z }# z F= G G I B N A z |# z G A G P@ M h] O@ Q@ I 0S M L Q |# Q E$ H L P@ E$ E$ U r! T H J J P@ H >) G$ 0* Vf 4# d- E^ 4# 58 O= 58 O= E^ E^ r9 r9 C$ 58 r4 @. 58 r4 !> r4 r4 ja y0 5# !& .= r4 !& 8# z@ G; /3 e- ,. $. ,. )= =. +. . A@ $. $. !& A@ W- =. t( 9/ e- ;. A@ )& F, b# ). ;. &. H! 7, R' o) b# %. -. =. !. ;. ). '. o) .. '. &% {. ^. p) b# z@ T' A@ b# /* |. 9& A@ {. {. /* d* ;' &. !. 8, ~. 9# '. T' ~. v@ (. v@ t@ _. _. {= q@ d* (. :. %% >& w$ ~. 8, 9& 1. /* {= (. ). t@ t@ v@ (. s@ 8& :. :. (. 3. d# (. q@ :. t@ w$ '. v@ w$ q@ w$ >& u@ ,& &. x@ ). A@ W> W> ). x@ '. '. (. q@ ^. ^. d# -. ]. :. %. ). x@ {. !. !. !. ;. ,. ^. &. !. -. ). c# ,& A@ ). l> x@ -. ). &. *. b# -. z@ =. ). >. A@ '. &. v{ b# -. %. A@ -. x@ B$ -. B$ +. ,= 4# T 4# .= @. .= +. W G@ V 5# C$ (* +. X E@ I@ }; 2# L@ Z! ]& ^, r, z~ [) x, x, v, v, u, v, x, s, z, x, x, v, +' s, x, x, s, s, s, x, g] s, u, s, x, s, v, v, q, 6' s, e^ +' v, s, [) x, ^, s, s, q, v, 5' q, s, s' )~ r, H) q, r, q, q, [) z~ z~ 8' q, x, s, g~ i) q, [) ^, q, q, [) q, q, [: ^, v, q, v, r, s, [) e^ ^, q, 6' q, }) 6' v, 5' 2! Lp.r, v, v, 8' s, v, x, v, -! 8' e^ + a a 6 : 7 ~# ( 6 W@ } ~ { $# { / d < : *# `@ ", +"6' 5' rl.*[ q, z~ *[ z~ z~ z~ z~ *[ z~ z~ 2! vh.|1 *[ z~ *) vh.)~ )~ |1 vh.<{ )~ 9| 9| 9| 9| 9| 9| 9| *) <{ ]^ 2^ <{ <{ I/.<{ ;b <{ l) R@ <{ <{ L$ ]& G= R@ I/ R@ G= I/ L$ L$ R@ I/ 0' 0' 0' 0' T*.0' K$ # # Z, # # # # % # 0' J$ + = . # . }, = [* > $ 0' V@ ]& . . # =' - # > $= 2) > > . [* |* (& . ; | |* %= U@ . V@ P$ | U$ ; R$ ~ H= - & & Q$ ] N$ R$ 2 ## =' H= ) *# { Z! ^ 2 <& ~ X@ Z! 2 2 2 , [ { *# : } Y@ ## d $# { [ d %m } 6 V) Y> [ 1 6 7 N' a 6 $# Y@ 6- D, d 6 a a' ( ,# a Q{ a 6 N' 7 k ~# e a n !# 0 {# h o a' ~# p n p ~# n m `$ g h ]# h `$ ^# y2 q `$ m /# 4* n^ ;= :# w p! m t t 2; 2; ^# w ^# G D ^# @= G G N G 1& z #= {& K Q@ w F A #] O@ M W) I 8* I M I |# a- P@ M 3# q! M P@ 3# E$ 3; L L S H Oz Y r! T Y d- L@ D$ 3d T G$ U E$ H 58 G$ P tw 58 4# E^ I@ L@ 4# 0* 58 C$ @. O= O= @. r9 ja E@ r4 E@ 8# ,. .. 7# R{ R' =. &. 6# >. L) 6# ;. ,. =. z@ e- )& V^ $. 5# )& =. ,. (* t( &. '. ;. ;. ). b# ). ). &. z@ &. !. ;. *. !. '. S' . ). {. {. {. F, x@ {. B@ p, A@ V^ v@ 9& ^. != (. ^. v@ ^. &. ;. %% ^. ). -. !. v@ ^. 5& 9& ). 9& ^. d# 9& !. _. w$ (. 9& w$ (. {. h# 5& ^. ,% s@ (. 0& 8& ^. w$ 9& u@ 3. t@ (. s@ ^. x@ :. v@ {. {. ~> v@ q@ w$ v@ :. %% x@ O- E[ W> = E~ x@ ^. c# t@ {. l> x@ ,& t@ '. *. ^. ^. H! c# F, '& d# =. !. =. A@ &. {. t@ x@ (. A@ x@ )& %% v{ -. x@ z@ '. =. &. &. ). l> ). !. 4- 5# =. )& F, @. L) . . E@ A@ &. A@ 4& 5# A@ z@ z$ B$ X E@ C$ G@ . +. F, (* 5# 5# P C$ )= 9* z$ . +. C$ P 4# .= 7 ]& <{ 5' z~ +' =) s, s, z, =) v, x, z, z, x, s, s, s, u, u, s, u, x, u, u, x, x, v, r, v, v, s, s, 6' s, 6' ^, 6' @] +' y: v, s, s, s, +' q, z~ 8' g] q, q, 6' q, z~ q, q, q, z~ q, q, r, r, 6' 5' [) [) %{ z~ [) e^ *) [) *) ^, q, `, z~ ^, 5' [) q, 6' 6' ^, 6' q, s, @] s, v, H) [) =) x, s, t, s, v, [) =) H) v, v, ^, > 4 7 ,# V~ 6 6 V- ( V~ $# ## { < == ) Z! ~ ## ## N$ ", +"8' 5' z~ *[ z~ q, z~ z~ *[ *[ z~ z~ z~ z~ 9i.vh.vh.z~ z~ 9i.9| *) Pi.*) 9| 9| vh.<{ 9| <{ 9| <{ <{ <{ 9| 9| *) R@ <{ <{ I/.2^ J$ ;b J$ J$ 9| <{ k3 L$ ], R@ G= X! I/ L$ ]& L$ R@ 0' 0' I/ I/ 0' 0' [n ]& # + T*.+ # + J$ # + 0' L$ 0' 1) = Q$ + # }, . . ; Q$ = > T@ . . ] # . = U@ 05 $= N$ U@ . > N$ V@ + > . # . ; & N$ Z! %= X@ H= %= Z! . Q$ |* Q$ U@ .# ] | 2 ~ { J) N$ U@ ] o! ~ N$ N$ [ ~ & Z! 4 ~ 2 %# [ 8- 4 Y@ /& < X@ ~ ## Y@ } ( < ( 6 d 6- ,# a 8 } &# $# d 6 6 q> 3] q> ,# k q> $# ,# {# !# 6 Y> ,# i {# e L= L= 0 0 {# n !# |& 0 L= h ;= c L= ]# r h ]# ~# % Y$ g [& n Y$ 4* 2, `$ (# V| ^# ,> n D m m y m m ^# 4* B }# :# w D G t D G I x w 2; }# G F= I A O@ G z z G H$ E$ x M 3# c- n! P@ 3; 3; T^ S 3; J J L U L E$ J G$ ` D$ ` L d- T r! G$ 4# 4# r! 4# 0* @. r9 C$ @. n) C$ O= Q' @. O= ja E@ r4 r4 r9 %i #. a* r5 W- G; .= L) =. . =. A@ C@ ,. 4- %. >. ;. )= /3 A@ *. ;. *. 9# 6# &. !. 9# !. F, B@ ;. F, &. ). b# !. ). ). $. =. &. '. ). ~. !. -. !. ~. ^. {. !. '. '. 4_ ^. '. =% x@ 8, ). =% b# |. 9& {. 9# {. '. !. ^. =% '. x@ H! d# '. v@ v@ (. (. :. t@ }@.&. ,& %% 5& t@ p) :. ~. ). v@ >& t@ t@ v@ ~. v@ x$ ~. 0# s@ x@ ). ^. :. :. d# :. t@ w$ A@ c# !. c# ,& (. d# {. (. '& %% {. x@ d# !. ,& x@ x@ E~ !. x@ -. d# ). ;. )& +. '. z@ &. x@ !. !. ;. &. -. ;. ). !. 5# ). F, =. . ). z@ !. !. (* !. (* =. )& A@ !. z@ !. #. &. @. +. =% +. A@ #. +. !. {. (* ,. E@ E@ 5# A@ C$ L@ }; F@ 5# T }; B$ z@ }; L@ V r! I@ C$ O s Q$ R@ e^ q, 6' s, u, s, u, v, v, v, x, z, y, u, s, x, x, H) z, u, x, s, x, x, v, v, v, v, s, r, ' v, ^, 6' A, %{ r, v, v, 6' =) v, =) s, r, r, q, v, s, s, z~ z~ r, z~ s, s, q, [) z~ 5' q, z~ 2! [) q, 9i.e^ q, 5' *) =) *) 6' q, 6' 6' 6' %{ [) 5' 6' v, q, 6' v, s, q, s, q, +' s, s, s, s, s, s, x, s, z, u, x, s, ^, N$ 2 a X$ == ## ## $# $# a' 5 9 d V$ ) -# $# N' [ &# Y@ ", +"s, Mp.z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ ql.9i.*[ *[ rp.vh.9i.9i.vh.vh.e^ Pi.2! 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| 9| 9| *) <{ <{ <{ <{ <{ *) J$ ]^ 2^ J$ .( ]^ R@ G= [n ]& R@ 2^ I/ L$ L$ 0' 5_ I/ 0' 1) [n ]& K$ G= J$ 0' 5_ + R@ X! K$ + L$ + K$ . H= $ J$ # Q$ $ |* S$ $ $ U@ $ 0' # $= . Q$ > - . S$ S$ U@ Q$ > & $= S$ ] N$ Q$ | U@ | ; H= N$ ~ H= & U@ & %= ] ] Q$ ~ .# X@ U@ U@ N$ & b{ ~ 2 N$ X@ ~ X@ ~ 7- F:./& | ( 2 [ 2 1 ) Y@ X@ 4 J) 6 Y> 6 1 d } ># ( } D, d i $# ( } 5 d Y> d q> vk 7 tA 0 q> a 0 a a L= {# a 6! 6 c h vk a a n Y$ 0- Y$ ~# 0 2, c{ r ;= r m s> h ,> V| ,> Y$ V| q _# p q t h u t m `$ 2, p D D @= ^# ^# {& w t {& /# {& :# w I F= ~& D W) z I w N M c- 8* O@ c- E; G O@ c- |# O@ A P@ E; Q@ E$ E$ P@ A %> P@ H$ |# E$ J T T L' T r! L' 3& O P@ L@ P@ 3# t> H T 4# 4# E^ 7s 0* T n) 58 V @. J O= . r9 4d V E@ &H G; y@ 0* bf . 4) lp.G; ,. +. $% 5# $% =. +. #. /3 .= 4& z$ +. A@ $. %. ;. &. )& ;. &. !. z@ y@ &. ). H! .= x@ =. B@ -. >. F, ). b# x@ !. >. A@ b# [. =. p, ;. &% b# F, {. '. b# {. '. C~ ). o) 7; !. ;. {. ,& !. A@ ^. |. {. v@ '. !. b# '. '. ). {. ). v@ v@ E7 t@ ~. '. -. {. 9& ^. w$ {= (. ~. d* (. w$ ,& d# [y _. -. l> ). ^. q@ {. >& (. 5& 1. q@ ). v@ F, ^. #> d# :. ^. t! &. =. w$ ^. '. #> &. !. {. 5# ). ^. -. ). =. !. ). x@ x@ ,. r5 5# &. &. &. W> !. A@ A@ ). A@ -. ). )= =. x@ =. -. x@ {. !. *. A@ &. ;' ). z@ $% *. A@ 7# =. &. .= &. (* A@ +. -. G@ 7# ,= E@ D$ z$ 5# X +. U D$ 1# 3& P@ ` P E@ G@ H 2# T I@ L@ L@ I O$ J$ e^ 6' ^, v, 8' r, v, y, v, s, x, x, z, z, v, x, s, x, u, y, s, s, s, s, x, u, s, x, u, v, v, s, 6' s, z, @] s, s, v, q, q, v, [) s, s, s, q, v, =) =) s, s, 6' z~ [) q, [) q, q, z~ q, e^ 6' 6' s, q, r, ^, q, 6' 6' q, q, 5' ^, ^, r, q, s, r, q, s, r, s, s, s, 6' H) 6' v, z, v, v, s, v, r, y, z, x, s, 6' [) q, < 0 e a =# 9 ( 6 < 4 < Y@ ,# } 1 [ $# [ 2 1 < ", +"s, Np.*[ z~ z~ z~ *[ *[ z~ z~ z~ *[ 9i.9i.z~ *[ vh.ah.z~ *[ 9i.xi.*) Pi.9i.|1 |1 9| <{ <{ 9| <{ <{ 9| )~ *) <{ <{ <{ <{ I/.<{ 9| <{ ;b $8.J$ 9| <{ <{ I/ R@ J$ BN I/ ]& R@ 0' I/ L$ I/ 0' 0' 0' ]& 0' [n $ # = I/ J$ # # + ]& # k) # # > S$ > $ > . $ J$ ' $ = . # = . . Q$ = . > - & S$ V@ . & > N$ = Q$ U$ $ S$ A; & & o! |* U@ & R$ ~ U$ . ^ & & 2 X@ .# *' Z3 N$ . T- ; { ; ] N$ P$ [ ) 4 ( ] ] { %# ( $# 1 [ | 2 X@ 2 2 6 / $# ## d ,# $# i ( 9 $# 6 D, d 6 3* 8 6 8x 7 $# a a b q> ,# e {# 0 ~# L= a 7 d k C; ~# 0 h c L= ~# c ( K= n ~# e r h ]# c m r q s> |& p m t p c % Z$ ^# b' r t 4* Z$ % t y m #] m B m G /# m y 2; D `$ D t N G ~& A z #] H$ 1& T^ O@ I z T^ z z O@ z 8* N P@ 3# E$ P@ h] P@ :* E$ J P@ :* U d- U^ Q U^ 3; L@ T d- E$ I@ 3d r! 0* `I BE I@ Y G$ G$ T P G$ @. O= I@ r9 r4 H9 @. @. G; cf 58 y@ . y@ 4# O= #. =. . =. =. A0 6# ,. ,. . &. %. ;. $% )& )& z@ )& =. .= )= =. 4& . ;. -. ). z@ -. $% e- !. &. '. A@ !. x@ ). !. !. A@ -. '. ). D~ 5& ). 5# ). &. !. x@ 5; '. &. z@ ~. ). }@.{. d# '. ). x@ b# /. v@ ^. b# 9& %% b# T' '. F, t@ (. (. v@ ~. x@ ). &. 4) _. x@ !. w$ ;& v@ ). {. {. A@ (. {. x@ x@ T' {. ,& l> x@ ,& 5& '& d# {. !. w$ v@ {. d# ^. &. A@ !. ,. ^. ^. )& ,& A@ ,. -. p, p, p, ^. &. ,& !. &. '. -. &. &. !. !. 5; %. e- &. &. A@ ). '. &. x@ y@ !. )& A@ &. (* 7# 5# -. ;. &. ;. 5# =. )& .= y@ O= )= E@ A@ z@ B$ L@ =. .= #. +. 5# Z +. .. 4& E@ @. S I@ C$ V L@ P J .. F@ H@ T z$ .. V P E$ 7 ]& ^, q, v, s, s, v, 6' u, x, u, y, x, s, s, s, y, H) s, 8' 7' u, s, s, s, x, x, s, z, u, H) =) H) ^, +' s, v, s, s, s, s, +' s, s, 6' s, v, r, %{ v, v, g] 5' [) q, q, 6' v, q, ^, q, q, ^, ^, [) u, s, v, r, z~ 6' v, ^, q, +' r, 6' x, s, H) r, H) H) s, 6' s, x, x, [) q, r, s, ^, r, v, x, @] x, r, s, s, @] @] s' < 6 { _ -# _ 9 $# &# } { *# < ~ : 1 4 ## ~ / / ", +"X( Op.z~ *[ z~ z~ z~ z~ q, z~ q, *[ 2! ql.z~ *[ 2! |1 *[ *[ 9i.xi.9| e^ e^ xi.|1 9| 9| <{ 9| <{ <{ 9| 9| *) <{ jP <{ 9| <{ <{ <{ 9| |j.(}.R@ ]^ R@ J$ l) R@ ], J$ I/ L$ ]& L$ 2^ L$ I/ L$ I/ I/ 0' 0' 0' + # = 0' = + # $ = * Z, # * V@ k) # + ' ' . = . $= Gc $ $= . S$ > > *' $ - & & Q$ > + = - U) . $ A; %= ] - U@ & %= > S$ N$ *' ; H= Q$ ) | & 2 2 X@ 'W ) ( & 2 ] ] N$ ~ | Z! ; { { 2 1 2 { | { /& } { N$ 4 } J) X@ 4 [ 5 d $# k ,# 6 `@.d d 6- $# d &# [ N' { 0 a 7 a x0 V~ 0 0 6 b i e ,# z: 2* k a' 0 c h c 6! 6! 0- v ;= h t' ~# a ~# n p h q #| t 4* s> u p p h Y$ |& c{ r t 2; 2, Y$ u t 1; ^# ^# ^# m #] C N 2; m 1; F 2; G A N I M= I w A F= z A I 8* 8* I I M 8* M S |# H$ O@ |# 3; O@ d{ J J L H E$ |# S C, L |# U^ r! J L M M J 3# E$ P' Q L@ I@ O 0* L@ L@ C$ r9 r9 V O= I@ r9 G$ X X . @. Q' Pp.r5 a* L) G; E@ W +. z$ $% =. ,. 4- z@ Q' 5# z0 >. )& A@ 4- &. Qp.&. X ;. )& $% -. ,. !. *. e- x@ 6, (* -. x@ =. ;. *. !. &. >. 5# A@ z@ !. ). b# ;. '& z@ A@ {. F, !. O= !. $. b# ^. ). x@ 9# B@ x@ d# '& ~. =. )& &. 8& =. ^. =% {. A@ {= %% l> '. ^. (. !. ). ). '. 7; F, c* ). :. ). A@ {. v@ ;! v@ !. ). 5# l> x@ x@ l> d# x@ (. '. /* (. o) w$ [, x@ c# (. (. &. ,& {. x@ <. {. ). {. v{ !. x@ -. ). x@ ). F, ^. W~ &. ;. x@ ,. 5# ). A@ '& {. 5# x@ $. 5# A$ L) 5# A@ A@ .. 6# 7# =. C@ V 5# -. A@ F, =. [, E@ 4& +. G@ O= z@ . +. 4) G@ z$ C$ !> 5# ,= )& C$ 2# V V G@ U L 4# H J O J 9* +. F@ U P (* I@ E$ T v ]& ], ], z~ q, v, x, x, 8' y, x, #' z, x, s, s, y, v, v, x, z, u, s, x, s, s, x, s, H) s, r, r, v, 6' x, H) s, z, 7' s, x, q, v, s, 6' s, v, v, 6' [) [) v, 5' ^, ^, q, v, v, @] v, v, 6' @] 6' v, 8' s, *) *) ^, 6' +' q, q, 5' 3_ =) v, 6' s, v, v, v, s, 6' |) s, s, q, s, s, u, v, v, v, u, s, v, v, v, v, z, [) . $# &# b < { 7 e a +# ) 1 { V~ 2 ) ## X@ { ) 4 2 ", +"X( [: 6' [: z~ q, z~ z~ *[ z~ z~ *[ *[ 9i.z~ *[ z~ Il.Il.*[ z~ *) 9| )~ Ip.*) |1 <{ 9| <{ 9| <{ <{ 9| |1 *) 9| <{ <{ ], I/.8S I/.<{ |1 (}.L$ .( BN L$ l) ]^ ]^ R@ I/ L$ G= #S jP 0' 0' L$ 0' 0' [n 0' 0' = 1) Z, ]& ]& X! * $ + # 1) > 0' + $ k) $ $ . # ]& . S$ Q$ Q$ & . > P$ V@ > > ; - ] N$ S$ * $ S$ ; R$ & U@ - P$ S$ ; & %= T@ - | Q$ | ) H= Z! ^ Q$ Z! N$ N$ | N$ ] R$ X@ ^ ^ ; ; 2 2 ~ [ | %= N$ 1 ( X@ ) { 2 [ 2 I= } } 4 d 6 D, Y> Y@ => J] 6- 7 6- Y@ ( 1 } $# 2 d q> 7 ,# q> 3* 0 6 0 a k ( a a k ~# ~# t' 6! e a n ~# c 6 A~ 2, n ]# c !# n K= h n^ L= n Y$ e a |& n^ q n ~# s> b' n p t 1; ,> p s> B m q w Z$ D m 2; G D w p N /# O@ G /# w I %> N O@ n! O@ %> I z M O@ z M M O@ I I I P@ O@ P@ n! O@ I 8* P@ P@ A M M M L S A: L +% L@ E$ L E$ d- L H T T L@ 3d L T L@ 58 E^ E^ V I@ 4# y@ C$ P' @. 4d )= @. H9 4# . E@ Q' +. +. =. =. $% =. =. =. e- ,. +. A$ =. >. A@ $% B$ 5# 5# #. =. !. A@ A@ #. ,. ;. +. =. ;. 5# R (* +. ;. W~ b# l> 0# -. 9# ;. -. +. -. ). {. x@ =% )& ;. b# ). ;' =. &% v@ =. l> =% ;. ,& b# }@.[, b# b# !. {. ;. x@ x@ ~. -. H! v@ {. !. &. 5& {. ;! '. l> p) +. -. &. d# %% -. x@ ,& '. !. x@ ;. x@ ). &. !. x@ '. ~. :. {. -. w$ >& ). -. x@ {. ,& p) &. x@ ). {. #> !. ). A@ !. x@ x@ !. &. =. ). [, $. V> !. a* {. ). )& A@ V ,& ;. 5# =. =. 3^ A@ +. B$ +. ,. !. =. z$ P &. !. &. ). 5# 5# !. W~ @. G@ 7# E@ . 7# 4# .= +. (* C$ C$ +. .= 9* &. #. L@ G$ z@ G@ @. 3& L@ Y C$ 4# 2# S 2# ` Y I@ T L@ H Y `$ ]& g~ q, v, v, x, -! x, s, z, =) v, u, u, s, x, x, s, v, t, s, s, x, A, s, =) }) v, x, s, z, s, s, +' t, s, s, s, r, v, s, v, x, z, [) x, r, q, s, +' s, z~ *) q, q, @] 6' r, s, s, 6' r, q, +' s, r, =) =) v, @] s, 6' q, v, s, q, =) q, r, 6' s, s, q, s, x, s, =) v, 6' s, s, s, x, z, v, x, s, 8' s, x, u, 8' r, # b &# -# } ## 7 ## ( [ +# } ## { ) @# ( X@ ~ ) H= { ", +"s, [: Mp.q, *[ z~ z~ z~ *[ z~ z~ z~ q, z~ z~ z~ z~ ah.vh.z~ Rp.|1 9| *) Pi.e^ 9| <{ 9| <{ *) 9| ], 9| 2! I/.98.I/.<{ 2^ <{ <{ <{ 9| 9| <{ 9| R@ J$ <{ r4..( .( I/ BN 0' I/ ]& L$ 0' I/ I/ 0' 0' [n 0' I/ 0' I/ + + 0' 0' # + 0' 1) ), ;b $ $ V@ > & [* 5_ $ Q$ > ' $ Z, + > T@ ' V@ $ & ]& R- V@ # * . $= & > |* ' ' ^& > > ] | Q$ |* ] & ; S$ & P$ > ^& R$ ' . ~ ] R$ S$ T- N$ .# [ N$ N$ W@ X@ 2 *# 1 | ~ / 4 X@ [ ~ X@ F:.( 2 W@ V~ Z! Z! 5 /& => d $# 1 d &# => 4 &# 6 6 /& 7 Y> } ( k ,# 6 6 V~ $# a Y> a $# fn.!# !# ,# e ~# ~# ,# K/ h L= |& 0 ]c 7 K/ o C; 0 n Y$ _# Y$ a' ,> tA h ,> s> 0- L= a L= 1; 1; 4* u q Y$ ^# m :# t Y$ t m Y$ 2; t m t w p D u G N ^# n G W) 2; w z 2; A O@ T^ M z n! O 8* a- M A A 3# d{ 8* M T O L Q 4# L U T C$ 4# 0* I@ P' C$ t> D$ 58 E^ r4 @. C$ O= G; r5 @. E@ y@ E@ C$ .= +. $% .. z@ .. E@ a* ,. )& e- +. A@ +. 7# A@ ]. =. ;. ;. t( e- $% .. $% ]. >. 4- %. $. >. A@ &. 5# &. =. )& +. . &. ;. =. z@ H! !. *. '. +. .= =. +. x@ 5; =% -. 5# ;. ;. ). {. x@ !. {. ;! &. !. &. A@ A@ !. ;. B$ A@ -. &. A@ ). &. %% d# t@ %% x@ {. &. {. &. V> '. :. x@ gT !. >& ^. *. ,& ). ~. -. x@ ~. {. {. t@ ;& ~. .= x@ x@ &. z@ ~. {. #> !. 5& A@ &. 5# ). ). t@ ). Sp.A@ =. ;. &. !. x@ *. ). %. ,& &. =. x@ =. !. 0# =. !. #> +. A@ ). ;. &. 7# E@ #. E@ G@ L@ )= +. #. @. #. _* $% A@ A@ @. @. A@ &. +. 5# +. .= T E@ .= z$ z@ 7# E@ R z@ R 1# #. 4# 2# D$ K@ H 5# d- H O T R V O= H T L@ I@ P@ ^ J$ 2! =) r, v, 8' @] v, s, x, 8' s, s, t, y, u, z, u, y, t, r, A, A, y, u, s, s, x, z, x, v, 6' s, s, s, A, s, s, x, =) #' v, +' 5' q, q, 6' t, r, x, [) s, s, s, v, @] q, q, ^, 6' v, +' s, v, 6' s, =) s, x, [) s, u, u, s, v, 6' v, s, v, s, v, r, =) z, s, v, r, 6' x, s, s, 8' z, z, x, s, s, x, x, z, v, ], { d a /& } < 6 $# d { < $# < d *# d Z@ / ~ | 1 ># ", +"x, [: +' [: z~ q, q, *[ q, z~ z~ *[ z~ z~ z~ *[ *[ Il.Tp.|1 z~ |1 vh.ah.2! Pi.<{ <{ 9| e^ *) <{ |1 *) )~ )~ 98.<{ <{ J$ 9| <{ 9| <{ <{ I/.<{ J$ R@ J$ L$ I/.R@ 2^ 9| G= I/ R@ L$ J$ L$ I/ 5_ 0' I/ I/ I/ 0' 5_ # # X! [n # # [* k) K$ $ # # # = [* . # R@ R@ S$ > = 0' $= # + ]& 2) Up.& . S$ - & . [* S$ . U@ & & $ & . > | & - $ > ; . | 2 S$ & 2 R$ ; | ] %= U@ b{ & H= ] R$ X@ 2 ^ H= | { / ~ { { & [ [ ( F:.6 D, /& $# 5 *# => } < } /& } <& d V~ 3* V~ < d d i d $# ,# a V) 6 6 [& -> ,# D, $# $# 2d ,# a 7 ,# q> a L= ~# 3] d 0 ~# Y$ n ~# ,# !# 0- n ~# X$ 0 0 L= Y$ n p ,> y2 Y$ s> r t 4* ;) Z$ ^# s> u 2; :# :# n^ ),.G m W) {& :# b' B /# 2; }# #] C x z ^# G :# G G w z G I z M G A M@ 3# a- G O@ z A G A E$ :* z I 1& M H P@ M H L@ L@ C, t> ` K@ O D$ G$ tw Ld J L 3d O= O= E^ tw E^ P 58 I@ O= @. n) V C$ @. E@ @. a* @. r9 +. #. @. B$ W z$ .. ^3 +. L) A@ !& $% =. y@ (* 5# ;. B~ .. A@ =. >. @. !. >. (* =. ,. &. A@ 7# e- =. F, z@ ;. !. ]. %. %. '. %% ,. !. -. -. A@ A@ $. H! A@ R' z@ >. 5# ;. ). !. '. 7; >& =. .. '. x@ A@ &. &. b# b# A@ ;. H! z@ *. {. '. {. ~. !. x@ t@ H! ^. -. 4& {. ;. '. &. ). A@ d* &. =% ). ). {. '. ). -. ). v{ A@ ;! x@ o) ,& A@ !. 0# 6, ). ,& !. ). z@ . )& A@ (. A@ &. p, +. x@ (* ,& l> ,. x@ &. ). [, ;. =. X . l> &. 5# $% %. z@ >. 5# +. =. -. e- Q' &. &. $% =. P @. )= *. #. A@ &. .= +. V> . =. G@ X @. B$ 4- R }; U X 7# C$ H@ R z$ .= D$ D$ J J J L@ D$ L@ m> I@ 4# $> H @. P T G$ C, 3) d- D$ 6 = J$ q, s, v, s, x, s, s, y, u, x, x, y, x, x, u, y, y, y, s, s, v, z, x, s, x, x, }) x, ' @] v, s, u, v, u, z, 8' v, s, s, t, s, v, q, q, s, q, s, [) x, s, 6' q, v, v, 6' q, 6' 8' s, 6' r, v, s, g] =) s, s, s, s, |) s, z, s, s, v, 6' v, v, s, v, s, g] s, ' v, s, v, s, s, s, H) s, z, x, v, x, v, r, V! ## } ,# $# 1 W@ $# b &# 9 $# < *# $# ## 6 ) &# : 1 $# ( ", +"x, Vp.Mp.Mp.[: z~ z~ z~ z~ z~ z~ q, z~ z~ q, *[ z~ 9i.Il.|1 z~ *[ ah.xi.vh.)~ e^ |1 |1 ^, *) 9| <{ *) *) 2! *) 98.<{ J$ 2^ J$ J$ I/.<{ l) ;b <{ V! ], jP 8S L$ BN BN BN ;b ]& I/ L$ L$ I/ X! 5_ ]& I/ ]& ]& 0' + * # 0' = # # # I/ . ]& 0' + + ]& $ . E! # . > V@ $ np.$ V@ + $ Wp.. !, . [* > > Q$ & . . N$ | =' & N$ H= P$ U@ S$ . & ~ 2 > Q$ [* o! & `@ X@ N$ & | ; ] %= ; P$ 2 ) { 2] ^ 7- ## ] 2 ( X@ { ; X@ < 2 N$ ~ ) 2 [ d V~ } ( } ,# a 6- } 6 $# $# } $# ( $# ,# [{ Y> 5 e ,# Y> $# J] 7 J] a Y> ## d a 3* } [{ g 6 ~# 3* a a a ,# 0 s> 2, ~# vk c ]# 0 p ,> r ]# m 1; u h `$ `$ c{ n 2, s> m D p m D q `$ C 4* _# F u Z$ ^# 4* G F {& m :# ^# w K :# t G G m Q@ I '> I 8* 2; }# G I <# I O@ Q@ O@ A 8* =K J M E I :* :* L n> L' a- H$ T L G$ L t> L U Q r! U E$ Y L U H E^ 0* 4# Q d- C$ I@ ={ d- P' P 2# @. X @. . E@ W E@ C$ 7# C$ R C$ G; =. $% a* 8# +. 6# X a* @. E@ a* . =. !. A@ )& +. ;. &. G$ 5; )& z$ z$ -. &. A@ )& .. $% +. =. *. A@ z@ ,. R' A@ z@ {. .= +. ,. F, z@ %. 5# A@ &. A@ ;. !. )& &. {. ^. ;. )& -. A@ ). '. A@ 5; A@ (* *. ). ). >. ^. &. !. v@ ^. t@ ^. x@ '. ). &. &. ). p, &. 5# {. '. x@ ^. *. &. 5# ). -. (* {. b# (* (* C@ v@ %% A@ -. ). ). l> x@ . <; z@ p, !. +. -. ;. x@ 5# +. ,& &. ). A@ !. (* -. x@ D! 5# z@ . A@ A@ I@ +. (* A@ z@ &. !. =. A@ &. .. 5# E@ )& 5# z@ $. +. '. =. +. 5# 5# +. #. B$ }; 7# .= +. L@ 4# E@ X I@ P G@ V L@ J@ @. C$ L@ L@ X I@ T 3# H I@ }; T d- Y $> L H ` I@ P I@ E$ J 5* o! L$ 2! ^, x, v, x, s, s, u, u, z, u, z, s, s, s, z, x, u, x, x, s, u, s, s, v, x, x, v, s, s, v, s, y, s, r, s, s, s, =) s, u, x, v, 8' v, |) r, v, s, 6' v, s, s, s, s, v, +' v, r, x, ' v, s, s, s, z, x, v, v, s, s, v, s, s, s, s, x, v, v, x, s, 8' v, s, s, u, u, H) 7' x, u, s, x, y, x, s, x, H) `, ]& D, ## ## g 9 ## } $# 8 d $# $# &# 2 ( < { ( 9 &# *# *# ", +"s, Vp.+' 8' [: z~ z~ *[ z~ z~ z~ *[ *[ *[ z~ z~ z~ *[ Xp.ah.2! *[ *[ Il.rp.9| e^ 2! xi.$8.*) 9| <{ <{ 9| *) *) 98.9| <{ R@ R@ R@ <{ *) ], 8S ;b R@ ]^ R@ I/.l) ;b G= BN jP l) BN I/ I/ BN BN # [n I/ I/ 0' 0' 0' # K$ 0' Z, # # + L$ + ]& p9 L$ R@ # $= + $ . + > 1* |* o! = - + # # Q$ + o! [* $ $ . ; ; $ & ] . $ N$ $ - - %= > ; > %= U$ Q$ ~ | H= X@ 2 N$ P$ ) U@ ~ xS N$ ~ | X@ / J) ; ] | | N$ X@ 2 ) N$ ~ ~ [ 2 ~ { } } 4 X@ 2 2 W@ W@ ( ## { ,# 6- ( 6 7 b < F:.( d q> J] 6 ,# 7 e Y> q> d ,# ,# $# 9 i ,# !# a' c g ~# 3] ~# ,# o e ~# h a 0- h ># q> r h L= h n |& n m L= |& n n ,> s> q Y$ Z$ n h m `$ y ^# /# {& {& `$ (# ,> V| D 2; t /# }# {& (# C 2; N ^# w N N G A I z O@ Q@ |# M P@ M P@ P@ E$ P@ |# E$ A I 8* I M h] A M 3; A H O@ M@ 3& T O@ E$ d{ H Y o^ G$ L T L@ O= 2# 4# T C$ X O= 4# T L@ J V r9 O= 4d P $> y0 t> E@ . E@ G; . L@ +. E@ )= 5# H@ .. z@ . .. +. )= $% =. +. ,. e- &. >. A@ df e- &. >. ;. !. )& z@ ;. z@ 3^ (* ;. z@ #. 5# )& b# $% z@ !. >. p, 5# +. x@ o) >. !. 5# )& e- ;. ;. 4- 4- ;. ). x@ e- ). -. x@ !. &. !. &. !. ). &. -. F; +. !. *. {. &. &. ). &. !. 0# !. ). -. x@ ,& -. ~. ). =. &. -. {. x@ ). ^. l> G; -. x@ x@ A@ &. C@ A@ &. z$ D! +. =. -. x@ l> >. !. {. C@ 6# 5# $. !. )& x@ z@ !. !. >. (* !. . +. z@ L) &. . )= +. !. A@ 4- A@ !. . 4& B$ @. !. +. O= 5# +. G$ >. +. @. A@ z$ E@ A@ E@ 7# 0* .. 5# G$ I@ 2# S U T B$ P F@ T Y L' P $> $% 4# z$ J P@ H 2# V L@ C$ }; H 2# }; L@ C$ T 2# |# G ) + e^ q, v, =) z, s, x, v, s, s, u, u, y, u, s, s, x, y, u, y, x, x, s, y, s, s, s, v, A, x, t, s, x, s, x, 8' u, Yp.t, t, |) s, x, v, v, =) v, v, =) r, s, 6' v, s, s, x, s, @] u, s, u, y, A, 5' v, s, +' 5' v, 8' 8' s, s, s, s, =) +' v, s, 8' x, s, A, s, v, }) x, r, x, s, s, q, x, s, u, u, z, s, 6' Q$ } } : 7 -# } 7 :& $# : ## [ D, W@ ~ X@ 1 ## ~ *# ) < ", +"}) Vp.+' Mp.q, *[ z~ z~ z~ z~ *[ z~ *[ *[ *[ *[ *[ z~ z~ 2! vh.z~ z~ z~ xi.9| e^ <{ $8.vh.9| 9| <{ 9| 9| 9| 9| <{ 9| <{ R@ .( J$ <{ <{ *) <{ L$ I/.R@ R@ <{ ;b ;b 2^ 2^ J$ I/ I/ L$ BN 0' G= R@ 0' I/ BN I/ 0' 5_ + # 0' 0' $ # # 5_ # + + + # Q$ 0' 2) # ]& . . & +|.& [* ' S$ > > $ $ . $= . M$ > S$ U@ S$ ] S$ $ ' 1* $= P$ ~ & H= U@ | ~ . ; | R$ ; ] & ; P$ N$ & & ) 2 & ] T- { | ) Z! =' 5 { { 1 4 | Z! < 2 2 < ## 2 2 X@ Y@ 'W ) [ I= 2 2 3* J= a } } $# 6 V$ &# ( /& } ( 3] ( 7 6 q> 6 3] 5 K/ $# Y> 3* a L= $# 3* ~# e ~# z: n ,# [& 0 a h L= ~# L= 6! c6 0 n Y$ v L= (# Y$ Vj }& L= s> u @= 4* 2; q n /# `$ m y ^# p t m m @= h % ^# Z$ % G F= w K D 4* 4* M= m M= G #| O@ #| z I O@ I A z A M @% z A J I H$ z M G D P@ O@ E$ J E$ d- T H H J H 3# M O Oz A L@ T J G$ 3d T T T L@ P 0* O= T t> L@ C$ ={ y@ }; H V X . 4# a* )= .. W d- d- G$ R V .. _* . y@ 5# E@ $% $% >. )= 5# &. Q' )& .. A@ &. &. A@ z@ $% -. z$ .. $% )& #. 5# (* a# ;. )& ;. z@ $% z@ &. &. $. '. ). ;. p, 4) '. &. F, !. 5# ). =. &. ,. !. .= =. A@ A@ .= z@ &. x@ !. ;. -. '. &. b# &. ). .. &. x@ x@ =. !. %% A@ T' ). &. z@ &. %% -. l> ,& 6, l> ). x@ E~ l> (* e- &. l> ,& -. !. 4- x@ !. l> =. =. d# z@ 5# 7# A$ =. ). &. 0# C$ l> !. =. 5# &. ,. @. z@ z@ A@ .= ,. ). &. ;. C@ -. 5# A@ h~ 5# . $% B$ +. =. 5# =. .= R .= )& G@ C$ 5# }; #. 4# .. E@ @. C$ E@ y@ 5# @. X X 4# D$ V . E@ Z L@ L@ R #. 7# .= H H D$ U L@ T T H H P T T P H Z P@ S [ X! *) @] s, s, }) }) y, r, H) u, y, x, y, v, x, u, u, y, z, x, v, y, u, y, z, x, H) s, u, s, x, x, x, s, v, x, s, +' x, }) s, =) s, }) x, s, v, r, v, t, +' 6' v, s, s, s, v, H) r, s, s, x, 8' x, u, s, s, +' x, s, s, u, x, s, x, 8' y: t, =) s, 7' s, s, s, A, s, y, s, z, v, s, v, +' r, u, x, s, s, q, ~ [ 8 $# ) } { } ~ 2 ( $# J= ^ ;# 1 +# { 2 | 2 U@ N$ ", +"x, *[ Mp.Mp.Mp.[: 5o.q, z~ *[ *[ q, z~ *[ *[ *[ z~ *[ z~ *[ vh.|1 *[ *[ 98.9| e^ )~ 9| $8.|1 9| *) 9| *) I/.*) *) 9| <{ J$ J$ ], 8S 8S <{ J$ L$ l) R@ J$ <{ k3 ;b *) 2! 2^ J$ L$ BN BN #S I/ BN 0' 0' L$ L$ p9 L$ = # ]& 0' 0' # + # ]& V@ + 2) 2) # Z, $ # $ + [* - & =' . > $ p9 J$ $= S$ P$ > # $ . > . . O$ R$ ] ]& # # > U@ S$ Q$ S$ T- ; S$ & ; ; U$ ; ~ | U@ N$ 2] ~ ; ~ 2] Z! ) | N$ ~ X@ 05 ## X@ ~ 2 } ## ; 2 } Z! 2 ) ( 7- 8- } 4 } $# } { | d 1 6 W@ D, 6 5 } ,# ,# d d '# V~ e 6 a 6 d a <& 7 4 q> a a {# X$ c {# Y> ~# ~# 0- t' M' ~# 2* d a o L= ~# f c n ,> h K] _# r n c X$ K/ ,> ,> 1; :# D Y$ #] :# 1; t Y$ z: 0- /# b' {& 2; F= G D 4* ^# [# 2; K D #| m /# w N w w ^# `$ I A I 1& x w F= E; A M N G z E$ z P@ I w N P@ o> d{ J J E$ C, |# L A P@ A H$ T J Y T T H T E$ L L T H 4# T J T H L@ 4# L@ 4# O= X @. n) J R @. 4# #. Q' X E@ al y@ ,= X $% ,. 4# z$ >. A@ =. @. . >. =. . &. z$ &. .= . E@ 4# +. F, %. $% A@ &. !& -. =. =. z@ A@ (* ;. R z$ ,= !. $% V> &. V -. R' F, !. +. =. A@ ). x@ -. A@ )& ;. ). +. !. =. ;. x@ ). ;. ). !. 6, ). !. 5# !. p) x@ 8, &. '. &. ). !. '. A@ ^. -. ). '. ,& ,& =. 4- &. 5# &. +. ,. $% '. ;! &. x@ {. x@ ). z@ -. p, &. =. Zp.!. z$ &. 4- =. .= ). ,. 6# &. &. o) A@ ). L) $% F, z@ z@ .. +. v{ B@ A@ E@ A@ +. A@ +. 4- 4) 4& 5# I@ E@ .= V C$ +. W ,. .= I@ . . 9* 5# B$ E@ +. E@ 5# X 4# V 4# O T 2# 2# .= #. #. E@ H P L@ E$ H P O H X> H L@ J +% H H Y L 3; :* P@ S e = L$ q, v, v, s, s, s, =) s, x, y, x, y, x, u, u, v, x, v, x, s, x, s, u, y, y: s, r, x, t, =) H) A, u, x, s, s, s, x, s, s, s, v, t, v, x, x, u, y, x, s, x, s, x, s, x, r, =) s, %{ x, u, v, s, A, v, 5' s, v, @] v, v, s, r, v, v, s, s, v, x, x, x, x, s, v, v, s, u, u, s, u, u, s, =) u, v, s, s, *) ## $# ,# e } 8 : $# ) ## ) ( X@ X@ < { X@ Z@ - *# *# ~ ~ ", +"x, *[ Mp.+' +' 8' 6' q, q, z~ *[ *[ *[ z~ *[ *[ z~ *[ z~ z~ ql.vh.z~ z~ *) 9| ^, e^ *) *) xi.<{ *) <{ 9| <{ 9| 9| 9| <{ *) 9| ^, <{ <{ J$ J$ I/.<{ R@ 2^ L$ ;b L$ L$ jP I/ G= L$ ]^ R@ ]& 0' L$ L$ 0' 0' ]& 1) = 0' # + 5_ 0' + K$ # + # % . $ % V@ Z, = ]& Q$ V@ [* > $ $ 5_ > T@ 0' ]& [* ' $= S$ U@ S$ # . - > & U$ U@ H= U@ ] $ > - %= . | ~ ~ U@ U@ ^ & H= %= & Q$ Z! H= ; ] ~ %= ; U@ 7- ~ | ] ; N$ | ~ ) 2 Z! ~ N$ *# ^ %= W@ } 2 T- < 7- ) ## ~ 5 } d ( Y@ &# 3* k 7- : 8 6 ( k 2* Y@ d D, Y@ a' 6 e k a *# 6 0 ,# ,# L= e c k 7 0 L= L= L= z: L= h 0- e K/ L= g `$ L= h ~# {# ,> q s> L= c c{ q ,> m t p c Y$ q `$ t F m Q{ q ]# 2; w G {& N C 2; 2; % Y$ :# :# )> z '. A@ *. 5# W> v@ 5# -. '. -. #> A@ ). -. ). A@ z@ &. >. z@ !. 5# &. z@ z@ !. 5# &. 5# )= z@ -. -. ). z@ ,& v{ z@ &. z@ @. &. E@ L) l> $% A@ -. E@ =. &. 5# 7# -. 4) V E@ . l> z@ E@ )= s! O= z@ !> V V +. G@ 7# O= E@ #. G@ 1# 4# .= @. O= G$ Y 2# +. E$ P V 2# z$ X H V D$ 2# E$ J 2# Q P@ O @. C$ J O S H T J P@ |# S _# $ ;b q, %{ v, s, s, s, A, u, s, y, y, z, y, y, y, y, y, x, v, s, s, u, x, y, y, u, u, v, z, s, u, x, s, u, x, 7' g] s, s, v, s, 6' x, s, x, s, x, s, s, s, s, 6' r, s, 7' v, u, u, =) s, v, 6' x, s, x, q, s, s, s, x, x, s, x, H) =) v, x, x, H) x, s, s, s, s, 8' s, s, y, x, u, x, x, t, x, x, u, s, ~, { { /& { ## ( 8- $# { ) &# d d [ *# 2 ## ) %= 2 ~ ) X@ ", +"w, z~ Vp.Mp.Mp.Mp.Op.*[ z~ q, q, z~ q, z~ z~ z~ *[ z~ z~ *[ 2! `p.*[ *[ )~ 9| *) e^ <{ |1 $8.2! *) *) 9| <{ 9| <{ 9| <{ <{ 9| 2^ <{ <{ (c.<{ <{ <{ J$ <{ L$ ;b l) p9 I/ I/ R@ 0' R@ L$ 0' 0' 0' R@ I/ I/ <{ + G= 0' Z, # 5_ [n = # V@ + + # * # * # [* ' $ . # Z, ]& V@ $= ' $ $= $ $ }, $= 5_ ' $ ; & & . $= & A; - ; *' %= N$ S$ U@ g{.U$ ; ; & U@ S$ T- U@ Q$ ! ^ ~ 2 ; ] | ~ X@ ; Z! 4 X@ I= 2 | { 4 [ ) Z! 2 2 P$ N$ | | { ( { 7- I= } 1 | { d 6 : b 3* 6 ,# V) ># $# Y@ 6 ( $# a Y@ 7 k a 3] 3* q> vk d 7 / {# 6! 8 ># W$ 6! d 9 6! {# 6 } ~# L= 0- Q{ 0 h ,> e h 3* ;= n K/ L= v s L= `$ Y$ p r Y$ % ^# `$ ,! n c ,> w `$ % 1, 4* G F :# :# Y$ {& ^# ^# u 4* F 1; p w w w G w {& B W) {& {& q! I G G 1& %> M G D z M I A Q@ I A t> O O@ 3& H M :* E$ M K O@ I J Y L' L O@ L L@ L T X L@ |# C$ L@ H d- J L@ E$ C$ L T C$ d- R H T )= X U )= l1 .. .. 7# 4; @. 0* #. X y@ C$ i~ L@ $% E@ .. E@ z@ 7# G@ #. 6# B$ ). !. G@ .= #. V A@ 5# +. z@ >. &. &. $% (* C$ E@ E@ z@ A@ E@ ,. 5# .= &. >. )& $% 5# )& *. )& %. )= z@ 0# ~. b# $% 5# '. >. =. ;. -. '. ;. !. ,. !. A@ (* -. (* %% =. !. ;. .= z@ 5# z$ &. &. A@ ,= -. {. ;! &. C@ z@ ). !. &. &. z$ e- -. +. x@ A@ .. ). A@ ;. *. z@ +. 5# z@ L) &. &. z@ A@ 5# *. E@ &. &. =. -. &. E@ )& !. 5# ;. *. 5# .. 7# +. z@ 5# +. 7# C$ E@ 5# .= (* (* E@ .= ;. +. z@ z$ #. C$ G@ L@ V L@ @. T 2# X L@ U G@ I@ L@ 2# X J T T L@ X> P V 7# G@ H E$ T H H Y h] L' L@ H 8* O@ U H A H E$ @% K@ G . *) ^, q, s, s, x, x, s, u, u, y, y, t, y, y, x, x, s, x, x, x, u, y, x, u, y, x, u, u, u, r, A, u, x, v, s, z, t, s, x, q, +' s, r, s, v, v, x, |) x, s, s, +' x, x, s, x, u, r, s, [) x, v, s, s, s, v, z, x, y, u, s, x, x, s, s, v, s, x, x, s, s, s, s, s, s, s, s, y, t, -! }) x, x, u, x, [) =) $ &# } 6 ~ [ d < -> : ## -# $# $# { } ( 2 { ) { ~ U@ ~ ", +"u, [: z~ Mp.+' Mp.[: [) *[ z~ z~ q, z~ z~ z~ *[ *[ *[ z~ z~ ql.vh.z~ *[ e^ *) 98.)~ )~ |1 9| 98.e^ 2! <{ 9| <{ <{ <{ 9| 9| 9| ]^ J$ jP <{ <{ ], J$ J$ <{ ]& L$ k3 J$ R@ I/ G= L$ L$ R@ L$ p9 I/ ]^ I/ 0' L$ ]& 0' 0' + # + L$ T*.* V@ % + * # # $ + > [* [* + # $= [* > $= S$ = $= S$ =' . [* $ $ . |* - $ S$ ; [* S$ ^& - U@ H= N$ ; U$ $= U@ > H= - ^ $ R$ ; P$ ' ; N$ *' ^ . ] & { $ H= { W@ ; X@ 2 Z@ H= W@ { 7- { ^ | *# { *# 4 / } } X@ 4 X@ } $# 6 G9 ) 6 ,# } ( D, Y@ 8- ( Y> 6 4 d a 7 6! 6- 6 ,# a k Y> a 9 ># 6 6 ~# a } 3] a n !# 0 6 e ># W$ $# c e 6! 7 e a ;= 0 -) r n Z$ 0- s> `$ L= n c 7 r |& ,> Y$ p r 2, :# D ~# s> h Z$ Z$ m V| :# t D :# G ^# C Y$ B Z$ 4* w ^# /# w w D G z z I I I ^# N I N A F= x A P@ H$ z z P@ S z O@ M T 3# L' E$ H o> O E$ M |# P@ J U^ M P@ O 3) U Q P d- W @. L L@ D$ 3# J L@ P I@ d- U @. E@ )= @. I@ d- Y 3) I@ I@ L@ y@ X U G$ L@ L@ @. P +. . E@ 4# Q G@ z@ W Z@.$% y@ +. @. W H@ $% &. H@ )& 5# +. +. z@ z@ y@ =. $% A@ z@ -. z$ {. 5# >. z$ L@ z@ &. z$ @. =. b# 8# ). &. =. -. )& =. G@ &. !. ). &. ;. &. [, ). z@ A@ -. (* -. -. 7# ). B$ ,= z@ =. D@ A@ A@ &. z@ B$ A@ &. &. +. z@ =. -. $% b# ;. e- !. ,& x@ -. &. ,& +. A@ d# l> .. -. &. z@ &. z@ . A@ A$ z@ . A@ C@ z@ A@ &. (* !> 8# z@ (* E@ O= =. . O= +. A$ Q' R .. )= z@ A@ E@ 4# L@ 4# C$ L #. @. V G$ 4# 2# E@ V 4# D$ T ` L@ #. D$ Y H }; S L H 1# G@ T S L@ S L@ ` Y H S O J H H L ` J P@ H I K P@ M J C 4 L$ ], 5' 8' 8' s, s, v, x, z, y, u, u, y, x, s, x, u, s, x, z, y, z, u, x, u, x, s, x, s, v, z, 8' s, x, u, x, v, s, z, s, u, A, v, s, s, u, t, x, A, s, s, x, s, s, A, s, s, x, x, s, s, #' s, u, u, z, z, s, y, x, s, v, t, x, t, u, s, x, u, u, s, s, s, v, s, s, s, y, x, x, x, z, s, z, x, +' r, ; < $# 9 $# 1 W@ ) $# ( *# } } 6 ~ } N$ } { { < 2 { ## ", +"u, [: *[ z~ +' Mp.Mp.Mp.z~ q, q, z~ *[ *[ z~ rl.*[ z~ z~ z~ *[ 9i.vh.z~ 5o.z~ q, 2! Pi.*) 2! xi.|1 <{ |1 9| 9| <{ 9| *) <{ 9| 9| J$ J$ ], J$ ]^ R@ (}.s' R@ R@ L$ <{ 9| I/ I/ L$ 0' I/ L$ I/ #S R@ G= 0' I/ 0' 0' 0' 5_ # + ]& [n + V@ K$ # Z, !, # * ]& + + + $ . $ # + Q$ > = # > = . V@ = . ]& . R- = P$ > ; . ; > & Q$ ; M$ > $= . . . ' ~ $= %= > ; %= | ; S$ %= & N$ U@ 2 H= ' Z! ) 2 X@ ) X@ ~ ] R$ U$ 2 ~ T- & ## X@ X@ | / [ } { } /& [ } 1 } ## 1 2 $# d d } } } ~ $# D, q> &# 6- Y> 6 $# 5 { B; ,# 6 $# Y> : ~# 0 1 6- 0 ~# 0 a ,# b V) Vj e ]# 6 j tA r i L= a c h 0 o c |& q s> ~# ;= t V| p u ,> t 1; p q h n^ r 4* t :# n p m m ^# D 1; F= t D z w p ^# ^# :# 2; A I w :# t 2; A A I Q@ M o> P@ N@ z I O@ I P@ z K A O@ 3; Q@ n! z E$ d- E$ M@ I P@ I O@ A K@ H$ Q@ P@ L H@ Q G$ I@ T T L@ C$ d{ +% 1# T Q Y H T L L@ T G$ W W G$ ` L@ I@ I@ O= @. 4# 3) T L@ 4# I@ C$ +. $% #. L@ X G@ E@ O= A@ $% @. .. .= +. G@ H@ >. $% &. ;. 5# A@ *. V> A@ =. E@ . +. G@ +. 5# +. ;. &. +. 6# .. =. A@ A@ z@ =. e- z@ $% v{ x@ 6# 5# )& &. z@ F@ .. +. D! x@ (* ). 5# &. ,& ,& F, &. @. .. -. z$ F@ (* (* &. -. z@ +. z@ !. 5# z$ &. !. -. l> z@ e- (* A@ &. &. ,. x@ -. @. #. $% W -. &. )& 5# 8# 5# 5# @. 5# .. 4- .= z@ G@ 5# x@ .= 7# C$ B~ z$ @. >. 0# C$ @. F@ .. ). .= .. T 2# E@ W X Y @. T I@ W L@ L@ L@ V $% )= G$ T L@ X P 9* O T T ` P@ L' G$ Y ` T H >) L L@ S J H H O O 4; O D$ T A P@ H$ 3# P@ #= L K@ #= K= $ *) 5' s, 6' s, +' =) u, y, y, y, x, u, y, u, s, u, x, s, s, u, t, y, z, y, s, u, v, x, s, x, z, x, y, u, x, |) x, y, s, x, z, H) s, x, g] s, s, s, s, x, s, y, z, s, z, v, u, u, x, u, x, s, s, s, v, s, z, u, v, u, 8' s, x, u, z, v, u, y, s, s, s, s, s, u, v, x, y, z, u, x, u, y, y, x, s, [: ;# } d $# 7 7 &# } a } ( [& < 2 | } } 4 ) ( | ; ] ] ", +"y, +' 6' z~ [: Mp.+' Mp.z~ q, 6' z~ z~ q, z~ *[ z~ *[ *[ *[ z~ *[ rp.9i.*[ |1 |1 *) )~ Pi.*) 2! |1 Pi.9| 9| 9| 9| 9| 9| 9| <{ J$ R@ R@ J$ $8.<{ ]^ ;b <{ I/.L$ jP <{ <{ L$ L$ I/ 0' I/ I/ I/ jP BN L$ I/ I/ I/ L$ 0' I/ 5_ = ]& [n 0' # # K$ L$ + # $ ]& ]& # $ o! # T@ = R@ > = 0' > > > M$ [* ]& ; }* ] ~;.- . U@ > S$ H= $ S$ - ; P$ * > H= . T- R$ P$ ; & z] (& ; R$ ~;.U$ U@ ] ) { ] Q$ ~ ~ { O$ *# { 2 { { X@ { ~ ] ) [ 2 2 { | /& 2 8- d *# { ) X@ ~ } d Y@ $# 2d ># 1 [{ d } { ># 8 a V) 6- $# ,# Y@ d Y@ ,# ( a d b 0 ( $# i k a n j c h L= !# ~# L= c 0 h c ~# n ]c h ]c L= [& {# h r ~# q n 1; q h t (# _# L= q :# s> r t Z$ D m ^# O' y p s> m m D 1; 2; ^# ^# G `$ G 4* G w D t N w I z . @. z@ ,. 5# =. z@ +. E@ =. 5# +. =. E@ [, L) 5# X $% &. G! z@ +. .= #. 5# E@ ,. (* z@ @. W~ 8# $% !. +. 5# l> 6, ;! l> '. G! 5# .= ). z@ {. A@ #. -. (* -. 6, +. -. -. E@ #. 6# .. A@ .= E@ ;. V> -. l> -. E@ $% .= z@ 4# 7# !. ). . -. *. ). (* 5# .. E@ B$ z@ .= z$ #. a* V E@ .= E@ .= $% G@ 7# @. 2# @. z@ z@ F@ L V .= L@ I@ Y T E@ +. 7# W C$ V D$ H R ` D$ ` Y L@ T T U H D$ H 3& 2# H@ J L@ H@ J T E$ J O ` Q@ U Q@ J K@ P@ J z E$ E$ 3# M ^# > ], ], r, r, s, s, s, z, y, s, v, s, y, u, y, x, u, y, z, x, y, x, x, z, z, x, x, s, u, z, t, x, s, v, =) 7' s, s, y, s, x, u, H) t, x, v, v, x, +' r, y, s, u, x, u, x, s, v, v, u, s, v, x, 7' s, x, u, s, v, [) s, s, u, u, y, x, u, x, u, s, x, y, s, y, u, s, s, s, u, u, =) u, s, s, x, X( *) ## %# : b &# $# } 9 $# : < < @# ^ { { ^ N$ ^ 2 W@ ; & P$ ", +"u, z~ z~ q, Op.+' Mp.Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ *[ *[ Il.ah.z~ ql.|1 9i.*) rl.*) z~ 9i.|1 2! 9| 9| <{ *) 9| <{ 9| ], <{ <{ <{ <{ 2^ J$ 8S <{ <{ J$ BN l) <{ 2^ J$ R@ I/ 0' J$ ^, J$ I/ I/ L$ 0' 0' .( 0' 0' 0' Z, # + 0' $ # }, Gc ]& # $ o! R@ R@ + $ $ $ T@ G= ]& + V@ L$ V@ - = . # $ 0' V@ 1* > 05 H= > P$ & . - ; & - & N$ > N$ U$ 2) - U@ > Q$ ; N$ Z! ^ ; N$ ; ] W@ 2 ~ N$ ' | [ 2 N$ ) *# ( d d ~ 7- [ ~ | / [ X@ < { X@ /& X@ 2 2 < ~ 2 { { ,# 7 &# D, [ { d } 6 { ( } 7 d d 7 d $# ( } 0 /& d k a d {;.a ,# ,# i c ,# ,# ~# 0 e 2* k Q{ 0- A~ K= e h e a ~# {# o L= ~# Z$ r n `$ r `$ `$ Y$ |& p w % _# Y$ % c 2, r Z$ % 1; (# /# m F /# % C ^# 2, w ~& % t /# m G G 4* G w C x G O@ I z W) Q@ O@ D I C z w z M K P@ E$ E$ M A h] J I$ h] L' E$ 1& L M N ` L C$ L H |# d- L@ S H d{ P' L@ Y 4# O= V 7# D$ P@ O= R L@ I@ L J 4# 7# .. #. #. J 4# B$ P d- G$ I@ a* B$ C$ .. z@ 4& a* e- E@ E@ ,= P 5# >. $% . E@ +. =. A@ 7# . +. . @. +. a* #. +. 7# . 5# &. >. 5# 4# 5# !. ,. A@ .= A@ )& 4& 5# =. (* =. &. ). z@ &. X .= ). +. )= z$ A@ . 4& &. b# p) -. 0# z@ .= &. V> z@ ;. 5# z@ x@ {. 5# A@ ;. .= G! A@ d# *. +. .= @. X z@ G@ .= <; 5# +. $% A@ 5# +. ,= z$ A@ ,= z@ O= +. V =. .= A@ +. (* E@ y@ z$ E@ .= V A@ z@ z@ z$ Q' 5# )= 7# 5# .. P +. X X . B$ H@ S C$ H H E$ G@ H T J J ` L@ H U T H@ P L@ O L@ 3# H L@ +% K@ J L@ X L@ ` E$ J ` ` 4# C$ J H J 3& H M@ |# o> A H ` H E$ P@ K@ y N$ V! *) %{ [) r, s, s, u, y, x, s, s, y, u, y, x, y, y, A, s, y, v, =) s, s, s, u, s, s, x, x, u, s, s, v, s, s, x, y, x, s, s, x, u, y, x, v, s, +' v, z, u, u, v, x, 8' s, s, s, u, s, x, y, s, x, v, x, s, ' x, s, u, u, x, t, x, y, y, x, x, H) s, x, x, s, u, v, u, u, u, u, x, x, u, t, 6' V! } : [ +# { ## } [ ) } | [ $# { < ) { U$ H= { ~ { 2 W@ ", +"y, Mp.Mp.6' z~ +' z~ [: @] Np.z~ *[ z~ z~ z~ *[ z~ *[ z~ z~ z~ rl.2! vh.z~ z~ 9i.|1 $8.|1 )~ |1 ah.$8.e^ 9| 9| *) 2! ^, <{ 9| 9| 9| 2^ ], 9| <{ R@ .( J$ ;b J$ R@ R@ J$ <{ G= BN J$ L$ ], BN R@ 0' G= J$ BN 0' 0' L$ [n 0' 0' # # ]& [n # # * ]& # # + R@ + # $ V@ . $ . T@ & $ Z, ; o! $ # > 0' = - + # Q$ > . . . - . $ U$ H= & & | P$ & S$ ; U@ S$ %= U$ Q$ . . > & ~ ] ] | ;# | 8- /& | Q$ | %= X@ ) } ## 7- 1 ) ;# { { J) | } X@ ;# /& ( *# /& X@ 7- 1 { 1 $# J= <& 1 [ I= 2 ## /& ( $# a } Y> ~# 7 6 [ 5 Y> } $# 7- 9 6 d j a 0 0 e $# Y> X$ ]# 0 $# a a' c A~ s> c n L= a n 0 r `$ L= 2, ^# K/ ]# h q `$ _# h }& Y$ @= h D % ^# b' 4* :# ;= /# w 4* :# /# G m D D Y$ /# {& w ^# `$ Q(.z N= w I m G G C /# I G /# z I M N I m O@ K@ z I z |# U T P@ P@ I H A H |# M T H @% d- J |# J J H P@ T J C, E$ H t> C, 3) L T L I@ 3) L@ U L@ C$ P X y@ Q' X X W H Y C$ 2# 7# X X @. R X a* P .= A@ @. E@ O= e- .. . +. .. +. P 5# . +. @. y@ e- . 7# A@ >. L@ 7# A@ +. .= . W ,= +. E@ F@ @. 5# G@ A$ >. e- +. =. =. $. {. 4) .= A@ @. E@ =. 4& H@ Q' .= !. 5# ,= !. -. x@ &. b# {. z@ E@ E@ A@ &. -. $% -. z@ A@ E@ .= A@ . (* E@ A@ 4& E@ ,= F@ d- .= -. *. A@ W G@ 5# R z$ W ,= .= G@ T C$ &. z@ V E@ D$ 7# +. 5# &. E@ E@ .= B$ V 4# =. .= n) V .= y@ +. 4- C$ C$ X X C$ z$ $% P L@ L@ U Y H d- L@ +% L@ V T P@ 3^ X Z 1# L@ Y T ` H L@ U @. 4# #% Y S Y U M@ O 3# A :* H K@ E$ H$ J 1& P@ ` Q@ a- H M P@ 1& ^# 1 L$ <{ ^, [) s, H) v, u, x, u, x, u, y, x, s, u, u, y, x, x, y, s, s, y, x, z, u, x, u, s, x, x, s, s, ' s, s, z, u, x, u, =) z, s, u, x, u, x, s, s, s, x, s, s, u, s, x, z, x, A, x, x, u, y, u, s, H) u, x, s, s, z, }) s, z, z, z, y, u, s, x, s, u, x, z, y, y, x, x, x, y, u, y, y, s, 6' R@ [ b ## ( < } { ( } ## ~ ~ d Y@ < { 8- ) U@ [ ) { [ [ ", +"y, 8' Mp.6' q, +' 6' +' +' z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ ah.vh.ql.z~ 2! xi.2! )~ *) 9| xi.*) 9| <{ *) |1 *) <{ 9| 9| <{ 2^ J$ <{ <{ <{ R@ J$ ;b <{ ]^ ]^ ;b <{ 2^ J$ 9| <{ I/ k3 R@ I/ I/ J$ ]^ I/ BN L$ + 0' [n # # + 0' 5_ # # 0' V@ G= 5_ + <{ k) ]& 0' ]& # . S$ # Q$ ' $ . . ]& = # 0' ]& ; > > V@ > = # *' +i.$= k) S$ | %= H= N$ ; & & A; X@ > N$ | o! o! ] & U@ Q$ ' U$ | ) Z! H= P$ %# N$ ; ] X@ xS %# ! | { | U@ X@ W@ 4 7- N$ 7- g{.2 V~ [ ( } / } / 7- 1 &# } ## d 7- 2 } } ## Y> &# } a $# 1 J= a /& [ } 9 ( 5 3* ~# ~# g 7 e 7 ,# a 6 2* k k 0 a' 0 ~# 6 h [{ c :& m r n K= r 0 `$ n t' e ~# h t % ~# p t 9- _# `$ Q{ `$ C; m r :# 2; ^# C B F m w Z$ D w D /# z ^# N 2; m @= 2; G :# I I b' 1; Q@ N= z N /# K A 1& M ~& K@ H$ @% 3; E; I |# S I P@ K@ O@ B A |# T S I L' E$ P@ J J P@ L H M 5, C$ D$ O@ 3# |# I@ L@ L@ J P G$ P' V C$ X C$ O= X W I@ ` V Y X L@ 3& X $% W H 4# C$ G$ $% C$ E@ e- @. z@ =. .= .. X X z$ C$ $% ,= P 5# A@ .= X +. H 4# .= X E@ . C$ G$ @. =. E@ +. &. #. +. #. E@ -. +. #. .= E@ 5# !. B$ z@ +. @. 4& .. z@ .= .= *. .= &. B$ -. 4) z$ z@ +. A@ D! 4- . F@ B$ z@ 5# {. &. O= X z$ E@ z@ *. z@ #% @. (* $> .= .= 5# &. V E@ +. z@ .= E@ Q' H C$ 4# X ). B$ E@ (* 0* G$ G@ 5# R .= 5# $% R X P A@ C$ 4# @. @. T L@ V P 2# H P I@ .= P E@ L' C$ T d- L@ H T H Ld H@ H L J P P H I P@ J L@ 2# L@ P@ H O H L@ L@ 1# I@ L' ` M S L@ P@ E$ O@ K@ 3# Q@ E$ P@ S M P@ A |# c- x :& $ <{ 5' g] H) v, s, u, s, s, v, v, z, }) s, u, z, x, y, y, y, u, u, u, v, s, 8' s, u, y, z, s, x, x, u, x, s, s, v, s, s, v, x, s, A, v, v, x, v, u, v, s, s, 8' x, s, s, s, x, x, z, y, x, x, y, y, x, u, x, x, y, y, u, s, 8' s, z, y, y, y, t, H) s, v, 8' y, y, x, x, y, u, x, z, z, x, s, ] } X@ / $# [ [ X@ < == < } *# ^ 2 { [ ( / [ ~ N$ | ( ) ", +"y, +' +' q, z~ q, +' [: +' [) [) z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ z~ *[ vh.rp.*[ *[ 2! xi.*) 9i.9| vh.$8.9| ], 9| 2! *) *) 9| *) I/.J$ R@ R@ <{ <{ <{ ], ;b <{ ]^ *) 9| I/.<{ R@ *) *) L$ J$ ]^ 2^ L$ ]& I/ 0' I/ 0' R@ I/ 0' + # K$ 0' 0' + * $ 5_ J$ {c Z, + E! V@ + I/ $ + $ [* > . L$ > > > + V@ . $ + ; U@ H= . . U@ $ > - . 05 Q$ =' op.%= %= Q$ $ > ^ S$ N$ R$ ! | 2 ; & X@ N$ R$ . . %= N$ ; { H= | - H= X@ ^ ] S$ *# ) R$ 2 ## ) 5 N$ { } [ ) | d ## # ) 1 1 6 k J= ) Y> &# 2 ( 4 } ( d $# ,# `@.1 ,# 0 ~# 1 6 e b N' q> 6 2d !# } } d 3] o ~# ]# {# x0 o 0 ~# t' k j c 0- i ~# L= e n a K/ p h L= p ~# ~# Y$ p ~# 2, 1; :# 2, 4* s> r {# ,> :# m 2; {& y o _# `$ m C G 4* q % z ^# D w N ^# C; /# D w G w w I N F= G z n! {& z z a- w P@ I :# O@ H S z K@ 1& E$ M I t> G$ |# J J 3# J J 1& Y L O L@ C$ P@ T d- 3# ` L@ T T |# L@ I@ 2# H$ I@ H I@ I@ J T S H T L@ Q L @. Q P #. I@ E@ T #. G$ L@ V P +. I@ z$ E@ I@ B$ )& 5# G@ 5# 5# 9* H 7# 2# H G$ 5# z$ L@ .. C$ P *. +. W .= 5# E@ ,. $% V z; P @. D@ V 5# +. +. ,. C$ H@ 9* G@ O= =. .= r4 A@ A@ 6# A@ .= (* E@ .. z$ =. E@ 6# &. [; )= 5# z$ $% @. z@ 4# @. z@ P .= ,= F@ 5# (* 5# 5# G@ 5# 5# e- 5# .= (* +. . 5# )& 5# O= E@ P 5# 5# +. E@ 7# X W V +. $% H@ @. 4# R $% R K@ D$ C$ C$ 2# H T I@ }; }; }; C, }; 1# &' 4# T J D$ 3# H +% P@ 1# H@ C$ 3; X o> T S P U E$ P@ ` ` P@ L@ J L |; L@ J Y ` K@ 3# M J |# 3# S K@ M M@ C, L J A K M P@ M d{ F= `$ = L$ ^, g] g] s, u, y, s, s, z, u, y, u, u, y, u, s, y, y, u, y, x, s, u, x, x, x, x, y, y, s, s, u, x, z, y, u, x, y, 6' =) s, 8' u, s, v, u, s, u, s, x, x, x, x, x, x, s, x, z, y, y, u, 7' y, z, y, x, t, x, y, s, s, s, s, s, x, x, y, x, v, s, u, v, 8' u, z, s, v, x, y, z, t, x, t, 6' ~ } $# Y@ $# [ *# U$ : 2 2 { 2 < ) X@ } | 2 ) 2 | U@ | ~ ", +"y, Mp.+' v, 6' q, [: +' Mp.v, z~ z~ 6' [: z~ z~ z~ z~ z~ z~ q, *[ *[ *[ 9i.vh.*[ 5o.2! 98.e^ )~ 8S vh.|1 e^ *) 9| *) *) *) 9| 9| <{ <{ <{ 2^ <{ <{ <{ 2^ $8.<{ <{ 2^ BN <{ ;b J$ *) *) jP I/ L$ I/ 0' 0' G= L$ 0' I/ R@ 0' 0' 0' # * 0' J$ = * dp.]& <{ # L$ + # & k) L$ .( > + . > V@ M$ Z, > & ]& ]& # *' [* & S$ > !, . S$ & ; |* - $ S$ N$ ; U@ S$ & > ; U@ ; |* ; %= ] ~ ~ X@ X@ H= | U@ ; R$ & *' ~ ) | X@ N$ H= 2 { ) X@ N$ | 2 N$ ~ 2 | W@ 7- d 1 X@ d 5 &# / ( $# 4 } } a 5 D, d } } 7 ( J] &# 6 I= 6 a ,# a &# 8 6 d d ~# $# ,# Y> a ~# 9 a Y> a c 6! ,# L= c 3* ]# e 0 } o p V) {# L= 7 9- ,# n c{ s> _# r % h q ^# ,> r [& |& r |& q m % Z$ `$ `$ 4* D :# p ;) ^# r `$ s> `$ /# `$ p ^# ^# 4* ,> _# I w /# M /# w z z /# x I I N w O@ P@ w E$ w w n! 8* M M M@ J L a- G E$ J S P@ J K@ E$ P@ P P P H U T 3& L Y J D$ P P@ H I@ s! J H |# L@ I@ E$ X Y T P L@ I@ C$ L@ C$ R L@ 4# I@ L@ I@ Y U V +. @. V P O= fp.H@ X C$ L@ .= V> V 4# T P C$ +% 2# G$ [; =. +. E@ T C$ @. X . +. G@ H @. L@ P +. +. V E@ C$ 7# .= V E@ z@ V V 5# E@ O= P 5# . .. +. 5# R . =. B$ V B$ E@ P 4# B$ #. @. B$ #. z@ F; 5# @. .. C$ z@ .. +. =. z$ ,= +. G@ . 5# )& 5# A@ .= e- z@ 4# 4- +. A$ B$ R I@ z@ &. . W E@ y@ O= L@ @. E@ . 2# V 7# #. D$ n> V S G$ P C$ =. y@ .= 2# E@ 1# G$ M@ F@ 4# Y P ` Y H J U K@ J E$ +% P@ L@ Y C$ Y ` M@ S M Y L@ M J H$ J M S Y J E$ #= S P@ T S M I M S O@ P@ N@ H$ I H I I /# w Q$ ], q, x, v, s, v, =) x, s, H) u, u, u, u, z, x, v, u, x, x, y, y, y, y, y, y, y, y, y, u, v, s, u, u, x, u, y, u, x, u, 8' s, x, y, u, u, s, s, t, v, x, u, u, s, u, u, s, u, u, y, y, A, x, y, u, A, A, t, u, u, s, s, s, u, u, x, s, u, y, A, z, u, s, x, x, s, x, u, u, y, y, x, s, s, 2! ) 9 $# 7 [ ( < / X@ +# { < 1 | } ## $# X@ ( ) & 2 ) | ) ", +"y, q.8' Mp.6' q, [: +' Mp.6' [: z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ *[ q, ql..q.9i.*[ 9i.xi.|1 Pi.*) 98.|1 ^, <{ 9| 9| 9| 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ ;b J$ G= J$ <{ J$ jP jP 2^ R@ R@ ]^ L$ 0' I/ I/ I/ 0' <{ I/ I/ I/ 5_ # + X! p9 # * = + # # ]& # # [* $ ]& $ . # . V@ + ]& # ' o! T@ # = $= U@ S$ $= & U@ . |* ' > %= = > Z! U@ N$ Z! & > Q$ * . | > U$ & ; ) ] X@ & N$ ] N$ P$ & ; *' W@ 2 N$ ; H= { / ) U@ 2 T- { (& 1 ^ X@ 2 ) 8- / W@ 2 ## ( X@ { } Y@ ( d / 6- [ { } ~ } &# ( 1 d 6 x0 6 7 8 a ,# a a ,# V) [ d 7- 6 $# ,# b i e K/ e 6! 6 0- n ~# j 0 e *= _# 0 {# ~# L= n n K] ]# ,> `$ n e ~# ~# ~# Q{ K/ Y$ Y$ D 1; K/ % 1; ~# q {& @= Z$ Z$ w w 4* [& Z$ (# p ^# t 2, C G p Z$ G /# z /# @= 4* G I :# N {& G z {& E; A A w N w x K M M I M A: 3# P@ H$ O@ E$ N M n> S M h] M 3& H H J H L' m) H O@ T +% D$ 3# 3# 2# Q L@ L@ H 4# Y T I@ W P@ T C$ 5, C$ J H @% d- J H H }; T P H X .= V G@ L B$ X r! 3) $. .= E@ O= #. B$ 3! J B$ +. C$ G@ I@ C$ ,= @. B$ R +. +. R 2# J O O= E@ V E@ X 4# V X A@ $% =. C$ C$ .= O= ,= ,= !. $% R R 4# z@ ,= X X C$ .. 7# 3! z@ ` D@ z$ R H$ )= _* *{ W 5# z@ z$ V .= 5# W R (* 5# +. E@ V Y .= X @. 5# @. +. ,= $% &. 9* @. .. B$ i~ O= 9* L' W #. 4# E@ z$ V ;. 5# L@ L@ O .. I@ H M@ r! L@ K@ J S C$ 1# D$ D$ F$ P Y 1# S O Y C$ T T S 1# H$ M@ O c- P E$ P@ O O H L M P@ S E$ S L@ P@ M@ S h] 8* O K@ P@ J P@ P@ D$ P@ M P@ #= H I P@ K@ O@ z N@ ~ L$ [) v, =) z, A, t, x, x, s, x, x, s, u, u, y, s, t, y, y, y, u, u, y, y, z, u, y, x, s, y, u, s, x, x, y, u, u, s, u, s, u, y, y, u, H) =) s, y, y, u, u, y, z, y, u, x, |) s, x, s, x, z, v, x, s, u, x, 8' z, y, y, u, y, y, z, x, u, u, y, t, x, s, u, u, z, u, x, y, y, s, t, x, x, ]& } d $# { 2 ( [ < W@ < X@ *# ## ~ ## R$ ( ] 7- %= T- X@ ) ~ N$ ", +"y, +' Mp.+' Mp.[: z~ Op.Op.z~ Mp.*[ [: z~ z~ z~ z~ z~ q, z~ z~ z~ z~ z~ z~ vh.ah.*[ Xp.ah.xi.e^ Pi.<{ |1 <{ <{ 9| *) 9| 9| 9| 9| 9| <{ <{ 9| <{ J$ <{ J$ J$ <{ k3 J$ ]^ R@ <{ ;b BN L$ I/ 0' I/ ]^ G= 0' I/ I/ I/ I/ BN R@ 0' 0' = # $ X! 0' 5_ $ # ;b % $ L$ + ]& # # # 5_ [* o! $ . V@ Ez !, > > & > . Up.H= S$ ; N$ S$ > |* S$ . A; $ k3 & ; =' * | & = U@ ^& - Q$ ] ; ; T- A; g{.8- ~ & ~ ~ U@ ] . & < , 2 P$ Z@ 2 : R$ W@ 2 [ [ { [ 2 O$ { } < ) ( 2 $# &# ~ 5 ## ) ( { d ( *# ( 6 B; 2 N' N' { 2 /& } W@ $# 8 $# V~ { a ># /& *# 5 D, 6 k c6 e a s> a a 9 6 $# {# 7 K/ $# g ~# 0 L= ~# n n vA ]c 0 c h `$ [& Y$ ~# c c L= 1; % h :# 5` s> ^# n y Y$ Y$ L= `$ Z$ t % s> p `$ 1; 4* G w 2; I ^# m G w w F= w t w w G /# @= G O@ z I F= w G G M A S n! z H$ J Q@ o> M M A 8* a- P@ J |; E$ )W U G$ T I@ H L@ H d{ 4# Y H b- J@ T ` T V 4# H J Z L V P X T 7# H P L@ #. I@ 9* T J L@ U 4# 4# I@ T C$ $% O= O= G$ 1# }; ` I@ 4# C$ V +% J Y 1# L@ S G@ 4# 9* H K@ G! }; ,. .= @. 4# E@ }; I@ J@ I@ )= e- R 2# V G@ G@ 3! T C$ E@ G@ V 4# P .. G@ ,= V E@ L@ R ). . (* 4& . I@ z@ e- ;. #. F@ I@ L@ J +. (* 5# . z@ D@ O= G! @. G$ L@ W )= R C$ 5, X T @. @. C$ W z@ (* A@ O= Q' E@ 4# V @. O= X .= d- >) M@ L@ 4# 5# 4# }; H@ X .= 7# G@ D$ I@ T O X Y H E@ Z C$ D$ +% P U ` V T P P H$ P@ S D$ D$ H@ Y 3# Y Y P@ T ` C, E$ :* o> L@ J H S 3# M H E$ ` M@ P@ J H M A 3# S O A M x Z$ I I z M I 3* . %{ z~ s, s, v, s, H) u, v, x, u, y, y, x, u, v, A, y, y, y, s, s, y, y, y, y, z, 8' s, z, y, u, =) =) s, 8' u, z, u, x, s, u, u, u, z, u, y, y, y, y, y, x, s, u, x, r, y, u, u, x, y, u, t, s, s, s, y, x, u, z, y, u, y, x, u, s, z, x, s, s, x, x, x, u, x, x, y, y, u, x, y, z, x, # $# } } $# < 4 ~ ## [ ## ## < { 2 %# ) N$ P$ ~ o! & - { N$ ~ ", +"y, +' Mp.Mp.Mp.Mp.[: [: 6' [: +' [: [: q, z~ z~ z~ z~ z~ q, z~ 2! 9i.e^ z~ 2! ah.*[ z~ &[ xi.ah.Ip.|1 xi.|1 )~ <{ 9| 9| <{ <{ <{ *) <{ <{ 9| J$ <{ <{ <{ J$ <{ L$ J$ J$ J$ ;b I/.J$ 2^ BN ], J$ R@ R@ I/ I/ L$ I/ 0' I/ I/ 0' 0' [n $ = 0' 5_ 0' 0' I/ L$ J$ $ = ]& ;b # [* k) ]& $ k) Q$ . (& +q..( $ . $ + V@ S$ H= # A; > U@ S$ U@ N$ o! & P$ H= ' > ; > - > S$ & ^ X@ %= > ; | & ] & Q$ Z! ^& | N$ Q$ & I= | ~ %= ' ] I= { 1 7- X@ | [ 2 N$ ) ~ X@ , $# *# < g{.| %m 1 ( ( [ b 5 $# } ,# $# [ 6 Y@ } ( { 5 { ( 5 i } / 7 ~# d 6- 6 ># 5 a 0- b Y> d 6 6 a Y> 6 0 L= o h ~# 2, c ( a ~# L= h L= n 7 0 L= p n `$ h k n Y$ e n^ p ;= E, r s> Q{ K= s> c{ p Y$ V| D 2; p y p! % {& /# o/ 4* D m w B ^# h % @= G #] w t 5* z N F= ^# }# /# N 8* N N [# O@ z w I E; N O@ P@ A I O@ A I P@ A 3& A I :* Q@ L E$ H Q E$ T U |# L@ s! 5, H C, J M@ L@ X I@ E$ T J 1# T ` C$ X +% d- T 2# ` L@ S L H C$ H L@ G$ 3# L z$ I@ E@ @. @. G@ d- J L@ J . )& E@ 3& .= .. I@ Z +. 5# E@ 4# I@ H V E@ B$ H G$ L@ T 2# 1# L@ H 1# 4# D$ Y $% !. .= .= z@ 5# .= 5# V B$ H@ D$ V X 5# R #. >. z@ X W B$ A@ z@ R #. I@ t> |; 9* 3& }; z@ @. 4# #. #. .= C$ +. @. F@ .= 4# V Z C$ C$ 5# @. V G@ O= L@ D$ . }; E@ 7# . (* L@ O H H r! C$ 4# ` R E@ J T H@ $% C$ L@ C$ P P D$ P@ 3; 4# L@ P@ T 3) ` &' J L@ F@ H X 3) H E$ P@ K@ Y P S O 3& T P P H O z 3# M O S H H E$ P@ P@ P@ M E$ M@ J M G Q@ M M @% z E$ x /# A A G q! I o > e^ ^, +' s, s, 8' x, x, =) x, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, w, #' u, u, }) s, s, x, x, s, s, s, A, x, s, u, u, u, #' z, y, u, u, u, w, u, u, s, s, s, u, y, y, z, s, H) u, t, z, -! +' x, t, u, u, s, u, y, u, s, u, A, s, z, u, u, x, u, y, y, x, x, y, v, v, - 6 Y@ < I= : -# ) ) : 1 *# Z! ## *# { ) N$ ^ X@ # H= ] N$ ~ %= ", +"y, +' +' Mp.+' Mp.Mp.z~ Mp.Mp.+' Mp.z~ z~ z~ *[ *[ z~ *[ z~ z~ 9i.z~ *[ z~ *[ Il.9i.z~ 9i.xi.xi.)~ )~ $8.xi.vh.9i.9| w9.9| <{ 9| 9| 9| 9| <{ R@ <{ <{ I/.<{ 9| <{ <{ R@ l) #S L$ #S 2^ *) L$ BN (}.2^ p9 0' I/ I/ 0' 0' 0' 0' 0' 0' 0' * + 0' 0' Z, ]& # R@ ]& + ]& ;b K$ . ]& k) . . $ . & =' M$ + > + R@ |* S$ S$ $ |* U@ S$ > > > ; S$ U@ U@ *' - * > ; & P$ > S$ & ; P$ U@ U@ S$ U$ ] | | %= | S$ - & N$ N$ ! [ ~ S$ N$ %= R$ { , | { ) [ =' ) | ] `@ 4 7- ~ 7- N$ Y@ / < 2 ) } D, [ [ d J= 8- Y@ { %= Z! d { 4 5 1 1 1 6 a a } -# e j ( 3] N' e c ~# ,# } ,# a ~# a' o 0 K/ 8 2, Y> ~# 0 L= n 0 n c s> i g ,> ;= ,> n h r Y$ c ~# L= n n y % ~# C; s> `$ t 1; s> s c `$ ^# b' p Z$ m p w ^# p t Y$ :# m w w m /# I ~& 6* /# {& m D D z E; O@ Q@ P@ P@ M P@ P@ a- O@ I J Q@ O@ P@ P@ O@ =K E$ O@ E$ I |# E$ c- |# I@ H E$ I Q@ A 3# T T 3# A T O T L 2# J E$ J K@ L@ L@ E$ Y H Y E$ I@ N@ H$ P ` L@ H O Y 1# T 2# 1# D$ L@ P G$ E$ S d- 7# C$ @. G@ R D$ Z D$ I@ E@ }; T V 7# 1# P @. 4# P G$ D$ Z I@ H G@ O= E@ G@ X 4# }; F@ +. H@ C$ 5# B$ @. T L E$ L@ H L@ @. H@ E@ B$ 5# z@ X .= @. I@ +. z@ #. G@ E@ 4# T y@ e- V> X A: P ,= C$ #. 4# @. C$ +. C$ O= M@ T z@ (* C$ C$ (* O= H #. 3) L@ E@ E@ L@ X L@ L }; X E$ 4# 1# V J@ I@ L L@ L@ C, L@ Y X G$ Z O O L@ V P I@ Y .= L@ Y Y P@ M@ L@ E$ M@ M H$ O P@ K@ E$ |; J C$ H H +% L 3# H J H P@ #= T S M P@ T J H L@ P@ P@ I H M K@ M P@ @% H$ I G M A N G ^# p $ <{ 6' v, x, s, v, u, x, x, x, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, x, y, u, s, x, y, y, y, y, x, x, x, x, u, x, x, t, y, y, s, x, y, u, x, u, 8' s, s, u, y, z, v, y, u, y, x, s, s, r, s, y, y, y, u, y, y, x, z, y, y, y, s, u, x, u, y, y, s, s, v, t, s, v, ; { ## } < ~ ( == } /& -# < { W@ U@ ) ;# ; [ { ) 2 | | S$ ^ ", +"y, +' +' +' +' Mp.Mp.z~ 6' Mp.6' Mp.z~ z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ 9i.z~ *[ Ip.vh.9i.z~ xi.xi.|1 Pi.9| xi.xi.)~ *) 9| *) <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 2^ <{ 9| l) R@ I/ J$ 8S BN *) I/ BN ]& R@ BN BN I/ I/ 0' 0' 0' 0' L$ I/ I/ + * ]& X! = # Z, L$ ]& # = + % + $ + $ k) . Q$ (& @q.R@ ]& # }* = . V@ Q$ . ; ; > > > > S$ $ T@ U@ . U@ - & X@ ; ; U@ = & |* > ; .# . + > > & N$ T- { ; ; R$ Q$ %= [ | N$ ] N$ *' [ | ) ( { ## X@ [ ^ 2 ~ ~ 2 ) ~ 4 N$ } } 1 7- } 5 I= } 5 4 J) I= D, { *# ( } $# d 7 Y@ 9 a 8 $# $# I= 6 d : == ># 7 $# 0 6 ~# !# 0 !# B; k a 6 6 a ~# ~# 8 g ># e 0- ~# m n 0 v {# Y$ h h ~# ,> r s> s> -) n p r L= r Y$ p :# Z$ p `$ c % `$ /# ^# C 4* % Z$ ^# ^# t h t % G 4* `$ % ^# E; m t /# Z$ K G G G w C I A P@ Q@ 8* M G C O@ z A |# O@ I I N %> |# 8* A O@ P@ Oz H P@ J 3& O E$ J Y Q J H L@ 1# 4# J Y J Q T n> O H P@ P@ Q@ J ` P 1# P L@ L@ J 3; |; H |; O J +% M@ H$ P@ L@ S 7# I@ U J@ V V 7# W C$ H 2# U H@ I@ L@ #. y@ C$ T 4# @. E@ T L@ H@ U .= D$ 4# }; P I@ J Y I@ X 4& .. 2# D$ H S 1# z$ X H 4# @. z@ Y F@ C$ E@ C$ G@ 7# V 4& V }; F@ P J I@ B$ 5# G$ 2# 4# C$ L@ I@ @. W I@ 4& +. .. 9* L@ L@ C$ z@ 4# }; I@ T L@ D$ C$ #. W 1# L@ ` P r! |; O D$ 2& L@ H U H ` L@ P P S 2# H L@ L@ |# H L@ P@ H L@ ` L M@ S M d- Y K@ S H J M@ S J +% L H H L Q@ 1# O 3# c- M M Q@ P@ P@ S K@ I I x H$ E$ M@ O@ M N A M O@ S M z I I I G G w C (# O$ ], ^, [) s, A, s, v, s, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, u, z, x, s, s, u, u, x, u, =) s, x, u, y, u, x, u, y, u, s, u, u, x, z, z, x, x, u, y, y, y, s, u, y, y, y, y, y, y, x, y, y, x, z, u, y, u, v, u, x, u, v, s, z, v, y, u, x, 8' s, u, }) 6' ~ : } 4 U$ < ) ( | ## [ ) ; { { 2 ) & 2 : 2 *# %= U@ ] ) ", +"y, s, [: Mp.Mp.Mp.Mp.z~ z~ +' [: [: [: z~ z~ *[ *[ *[ z~ z~ *[ z~ z~ |1 q, z~ z~ ah.ah.z~ 9i.2! 98.*) )~ 9| 9| 9| 2! *) 9| 9| <{ <{ 9| 9| *) <{ R@ J$ J$ <{ ], I/.<{ L$ 2^ BN J$ J$ <{ ]^ J$ ], J$ R@ I/ BN I/ I/ I/ ]& 0' 0' I/ 0' I/ p9 # $ + I/ + # 5_ = V@ $ + + # # L$ = . ' }, . > > . . S$ & > . U@ ' !, S$ . !, = - . Z, $ N$ S$ Q$ - Q$ $ Q$ & . Q$ & + . . ! > ' U@ ^& Q$ ; | ~ ~ ) 7- | Q$ /& ~ g{.| 2 { { ~ ~ X@ P$ | | *# ) 7- J) { I= 8- W@ | Z! 1 1 } 8- ( 6 6- Y@ d <& 2 } 8- 2 I= 4 D, J= 6 ( D, d ,# 7 7 ,# 6 7 a e Y@ Y> Y@ ## k 0 j c a t' j M' c n a c L= 2, g 0 ,# a n |& n L= L= r Y$ Y$ h [& Q{ 0- Z$ Y$ |& h n ^# Z$ p `$ r n Y$ r r ^# F :# Z$ 2, p `$ Y$ |& m Y$ w D ^# Y$ ^# w ^# G b' ^# `$ `$ 4* t G m A /# 1& E; A _# w O@ z A m) F= N 1& 8* z n! 1& H$ n! |# E$ M I P@ H$ E$ M S A M E$ S ` Q@ 3# E$ J E$ T P@ J O m) H P@ M C$ Y J +% P@ P@ X H$ P@ E$ T O Y L P M@ S E@ T H@ C$ }; G$ U V J P D$ ` H P@ P 2# Y Y H@ E@ P@ 4# S S @. C$ I@ L T E@ .= H G$ 1# H 2# V E@ L@ V 4# r! H 2# V V E@ G@ J 4# V V 4# L@ ` H 4# 2# E@ V P E@ L@ C$ C$ O= O= V 7# i~ @. T X E@ F@ E$ d- R T C$ Y }; d- ` |; P C$ ` F@ X @. T D$ X G@ V 2# I@ P 1# G@ T E$ L@ P@ T R Q J P@ H@ I@ V D$ P' 1# M@ L@ d- P@ E$ V P $> H d- J H H Y H A M@ M@ L@ T T H Y M L Q@ S ` J Q@ I@ Y J S P@ S P@ Q@ H S S H$ P@ I G M M 8* #= I I A z P@ I z I H$ G w G Q@ N G w y D $# s' g~ v, s, t, s, s, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, A, u, t, z, u, u, y, y, y, x, x, u, u, u, u, x, y, y, u, y, y, u, s, t, A, u, x, s, x, z, y, y, y, y, x, u, u, x, u, u, z, u, y, y, u, s, u, u, u, y, u, y, u, x, x, x, s, u, s, =) y, t, x, s, #q.^, ] W@ ## $# [ | 2 $# ) } : / W@ ## 2 2 2 ; ~ | 2 Z! ;# X@ ) ~ ", +"y, s, Mp.Mp.Mp.Mp.Mp.q, *[ Mp.q, Mp.Mp.%{ z~ z~ z~ *[ *[ *[ *[ *[ z~ 5' z~ z~ z~ ah.Il.*[ *[ z~ |1 9| e^ 9| |1 $8.9| <{ 9| *) 9| 9| 9| <{ 2! <{ 2^ 2^ J$ J$ *) 9| jP J$ J$ R@ R@ p9 jP 2^ R@ 2^ 0' L$ L$ L$ k3 0' G= 0' 0' I/ BN I/ I/ p9 $ K$ 0' = V@ + ]& 0' ]& + # $ % + + # ]& ]& = [* ]& {c $ p9 V@ # > + . ' . S$ - $ ], U@ & Q$ ]& > U@ ' Q$ + ' > }* Q$ Q$ %= ] ] H= N$ & { }* ; | ~ Z! | | ' U$ 7- o! { -.2 Z! [ Z! { ) 2 2 2 | 2 Z! ^& ~ P$ { : X@ U$ | 2 [ $# { ## ) d } %# /& 7- , ,# 2 ,# ( } q> 6 a Y@ D, 1 k 7 ( i /& 6 a V) 6 <& 5 2* !# d 8 ,# [& 6! ># k a ~# k L= 2, 0 f 0- h L= c{ c c Z$ e L= r p r K/ 7 c l r n t' o r h e p `$ s> Y$ t n^ ]c Z$ _# 2; m t s> O' % Y$ D {& p w /# N N {& z ~& % E; q m N D m m D % {& 4* 2; G G $S t G #] #= z z F 8* I M I H O@ A P@ P@ I |# x M 1& A P@ K@ I@ T H$ L@ 3) J J J q! J L@ J P S K@ P@ S Y G$ ` H K@ H 4# L@ L@ P 7# L P 3) H J C$ ` V C$ S H I@ C$ #% L@ U 2# X C$ I@ H H U I@ @. L@ Q H@ J C$ T 1# P P L Z Y U U P H D$ C$ +. E$ J J }; Z A@ .= L@ I@ 2# 4# 2# P X> G@ d- 2# C$ @. B$ @. .= D$ H@ X E@ .= $% E@ .= L@ D$ B$ V i~ O= 7# T G@ 4# I@ G$ L H@ L' o> L@ I@ G@ O= V O= #. X P G@ P J H L G@ G$ 4# Y d- C$ C$ 4; L@ #. T L@ @. I@ K@ P += d- 2# H H H D$ J +% 2# Z T S Z H$ +% H J P@ K@ c- ` K@ H O@ K@ E$ E$ P@ A M L@ N I S 3# P@ O@ I S 3# 8* G K@ A #= 8* A I z G P@ P@ c- n! N w z N q! /# P@ G w D O@ o ]& ^, 6' v, #' v, z, u, u, x, y, u, u, y, y, u, y, y, u, y, y, y, y, y, z, y, u, =) z, s, y, y, u, t, y, x, y, u, 7' y, y, s, x, t, v, u, x, s, s, s, s, x, s, z, x, z, u, u, x, y, y, y, y, s, x, y, }) }) v, y, y, z, u, x, y, u, u, y, z, x, s, s, t, x, s, u, x, y, s, v, s, q, ], X@ X@ 1 2 1 W@ [ Z! Z! { b d { [ ## ~ ^ ] ] | ~ { %= +# %# %# ", +"y, x, Mp.Mp.Mp.+' Mp.z~ z~ [: Mp.+' +' z~ z~ z~ z~ z~ *[ *[ *[ z~ z~ @] q, z~ z~ 9i.rp.ql.z~ z~ xi.9| e^ *) 9| $8.9| *) 9| 9| <{ 9| 9| <{ 9| 9| 9| 9| 2^ J$ <{ 9| J$ I/.I/..( ]^ L$ jP ;b G= ]^ (}.#S L$ R@ G= 0' I/ L$ ]& 0' I/ I/ I/ 0' $ + = #S 0' + # $ 1) # # + ]& + M$ + = $ * Q$ + > $ $ = $= S$ $= ]& V@ S$ . |* N$ # . U@ P$ k) N$ U$ S$ . > > [* ^ N$ > N$ | ] & N$ U@ | U@ U@ ; X@ | ' U$ R$ N$ | | *# ^ P$ H= ) & N$ N$ ] ~ /& 1 { 8- N$ { 7- 2 { X@ 2 { ## 2 7- { d { } D, { $# } 4 } /& ## 5 ( ,# a &# } / -# ,# ,# a a b } 6 b &# &# 7 ,# 6 9 3] k n 0 [& 6 k 8 ~# c{ n a r ~# n g ]# n ~# ~# ~# b Z> h 2, r ~# L= Y$ c c h h ~# p p Y$ 0n E, p D `$ p 4* K= % h m h n t ^# {& 2; C x ^# @= N m p ^# p 4* N $] G C C b' N /# w {& `$ N {& I G z z A M M I I A E$ 8* I 1& G O@ M b- AR A T H$ P@ P@ #= H E$ M S H T J J J M O O@ S L O@ P@ Q@ L' I@ E$ J L@ H ` J M T P E$ L@ 5# H +% 2# H$ P L@ H S C$ U Z I@ 3) D$ T L@ ` P ` H@ J@ |# P H 4# 1# 3# h] Y U H #. 3; C$ V Y D$ 4# 4# E$ D$ O= I@ H@ P H@ z$ C$ C$ }; P@ I@ T L@ U L@ G$ C$ V @. 4& =. C$ 4# .= #. C$ H D$ X #% d- U P T V d- 4# P 3) L@ V J L P ` G$ 2# 4# d- 4# E@ J T L@ +% L@ n> U J X X C$ H$ L@ H 1# H r! G$ D$ C$ S Y I@ K@ T Y Y P U 3) V T d- ` +% L $> J E$ S L@ P M L K@ P@ M H$ |# M@ P@ S M@ J I M J M@ M@ K@ O@ A 8* A b- P@ H$ A P@ I M I I I A M a- A A B Q@ z x z I I N G z w ^# h $ *) g~ +' v, s, y, u, u, v, x, y, y, y, y, t, s, s, x, u, y, y, y, y, u, y, y, u, x, x, z, u, x, s, u, r, y, s, s, y, z, s, s, s, #' y, s, x, u, y, y, y, x, y, y, y, y, y, u, x, x, y, z, y, y, #' s, u, s, u, y, t, x, u, z, x, x, y, s, s, s, s, z, y, u, u, u, y, y, z, u, s, + | 2 9 2 X@ | $# ) R$ W@ [ .# ## [ { | ~ ) ## 2 ~ | ) ( 2 U@ ", +"y, x, +' Mp.Mp.+' Mp.[: [: [: +' Mp.+' [: *[ z~ z~ z~ z~ q, z~ z~ z~ 9i.*[ *[ *[ 9i.vh.|1 z~ z~ xi.xi.*[ )~ <{ $8.vh.z~ 9| 9| 9| 9| <{ 9| 9| 9| <{ 9| <{ 2^ <{ J$ J$ J$ <{ l) 2^ ], <{ p9 L$ R@ R@ BN L$ BN BN L$ I/ R@ I/ 0' 0' L$ I/ 0' + I/ + I/ L$ 5_ # ]& $ V@ # # ]& J$ + . k) # $ + Q$ . + = . & Q$ $ > 1* Q$ - . ; U@ $= > ; Q$ . %= |* & . . & ; | ; ; ; - - > U$ N$ o! ; ] ] Q$ S$ f] X@ 2 ] | 8- { | X@ R$ ~ U@ H= ) ] N$ { ) N$ 2 { ( [ Y@ { ## 7- X@ ## ( 2 { ( ( ## { J= 2 ,# / D, $# 2 Y@ 6- } } $# } $# ,# ,# : == a B; } a b == 6 ,# ,# 0 B; ,# Y> $# g ~# k i q> a 8 V$ 0 ~# L= c L= V$ 0 L= 2, ># c{ 0- k r `$ ,> n r r c b ~# n t ~# n p `$ `$ Y$ }& @= r Z$ s> m Y$ y D -) m V| % m m m 1& C 4* 2; ^# F= 2; ^# 1; m /# `$ G m 2; N= ^# B 5* G Z$ A A D z A I @% E$ a7 A N@ M I I S A O@ M M |# Y C, E$ I S L M E$ A H$ O |# A h] A S H U S H P@ T L 3& J T J P@ J P@ J H$ E$ Y T J Y G$ I@ M@ Y 1# Z M F@ L@ M Y V H P S P@ d- P V H }; 7# .= O= I@ Y M@ C$ K@ 1# T +% J T P I@ 4# U 1# T Y L L@ L@ D$ E@ L@ U J H T J P H 4# ` C$ X G@ S L@ T X X H T J H 1# Q T H@ E@ G@ V L L@ T I@ T L@ L@ T U Q 0* I@ Y H H I@ 4# V J I@ X L@ H R 2# H M@ M@ T H M@ 3# S H T L@ U }; H H H H L' H M P@ J E$ S L@ H$ S 1# 1# P@ S Y J K@ Q@ E$ H$ P@ M H$ K@ P@ S K@ T P@ L N@ 8* M O@ M H$ M P@ M P@ z O@ P@ 8* A I x M@ A S I b- A I z G D b' C w N x M 1; ; i) 5' @] s, v, v, u, u, y, z, u, y, u, y, y, u, u, z, u, s, v, s, z, x, y, u, x, y, u, x, s, z, u, v, s, y, x, u, u, x, s, s, u, x, x, u, u, y, u, y, x, z, u, z, u, x, u, y, y, y, y, y, y, y, u, u, y, y, u, u, s, u, u, z, s, s, s, s, s, s, u, u, x, x, u, z, x, s, s, s, +' . [ $# ) { /& } / [ / [ W@ | } W@ { | $ 2 ~ ; ; ] ) |* ] N$ ", +"y, s, +' +' +' Mp.+' Mp.+' q, [: Mp.+' +' Vp.z~ z~ *[ *[ z~ z~ ah.2! z~ *[ z~ z~ *[ |1 xi.Il.z~ ah.xi.|1 e^ )~ |1 9| &[ <{ 9| *) 9| 9| 9| <{ 9| <{ <{ R@ 2^ <{ <{ <{ l) L$ .( R@ R@ .( .( R@ R@ I/ ]^ ]& I/ I/ L$ 0' G= R@ = X! 0' 0' + + # # 1) 0' = K$ # # $ 1) # ]& 5_ =[ . # T@ . > ]& Z, # $ 0' [* S$ Q$ * - . & & - U@ . + U@ ; Ez 5! & 05 $ - U@ %= ] U@ %= Q$ U$ ! U@ U@ ; > U@ %= S$ U@ > ^& | ; N$ & ; Z@ N$ N$ ~ ^ %= & ) | 5- ) f] S$ N$ [ { X@ X@ %= X@ { ( 2 7- /& $# ( W@ W@ x0 1 { 1 { { ## 7- 1 /& == d / 1 ( 1 ,# Y> ( ( ( d q> } V~ ,# /& Y> b ( ~# K/ 7 c n L= Y> ># 6- b ~# a 0 ~# c m*.6 b a ~# ~# 0 n 8 c 6! L= ~# c n ;= 0 [& e h 2, n m -) |& `$ p h l (# #| n `$ ;= `$ p p Z$ m ^# z % 4* 4* xE 4* {& @= ^# 2; {& z D t 4* G /# m w 2; b' m z w w I G O@ x G M M P@ M G O@ ^# M 3# A O@ M I M T Y I S +% M G Q@ M z M #= M L |# J H$ |# |# .~ o> Q@ U J 3& 4# L@ H Q@ C$ T L@ H H C$ L@ T T H P I@ H$ 4# C$ H@ P E$ Y Z n> J K@ |# H@ M@ J F@ E$ K@ D@ D$ P J #. J H$ K@ Y H@ L D$ 2# 2# V X 2# J P T P H@ 3# L@ L@ L@ P Y T P P E$ @. T d- F@ L@ P #. X #. 7# #. L@ J L@ L L C$ @. }; )= 2# L W I@ d- T H J G@ L@ T T #% G$ L@ C$ C, I@ J E$ I@ 1# U 2# M@ C$ L@ G@ Y J S P@ E$ H H I@ I@ K@ C$ P@ Y S J K@ S L J T 3# 3) H Q@ S H H$ M@ S M T H$ M O@ I N z 8* P@ 3# O@ C$ Y E$ O S I I K@ J z A G C z H A O@ G ~& I @% P@ w {& G N I K C /# G ^# Z$ {& ^# /# G 6- e^ g] s, v, u, s, s, H) u, y, s, z, s, y, y, y, y, y, y, u, v, x, y, y, y, z, u, y, z, y, x, x, u, y, y, y, z, z, y, y, z, s, z, s, x, y, u, u, y, y, y, u, u, u, t, s, u, y, y, y, y, y, y, t, u, u, y, u, y, y, x, u, u, -! x, y, s, y, y, t, x, y, y, y, y, y, x, s, z, s, 6' . } Y@ < { { d } ( } : ] , ) | W@ W@ ^ { ~ N$ & ] ' U$ & ; ", +"y, x, y: Mp.Mp.Mp.8' Mp.Mp.q, z~ [: +' Mp.[: z~ z~ z~ q, z~ z~ ql.z~ z~ *[ z~ q, *[ 9i.vh.9i.z~ 9i.vh.$8.e^ e^ *) |1 |1 <{ 9| *) 9| 9| 9| 9| <{ I/.<{ 2^ cp.<{ <{ 9| l) <{ l) R@ ]^ R@ J$ <{ R@ BN J$ <{ I/ R@ J$ p9 J$ J$ ]& ]& 0' I/ 0' p9 + K$ K$ = 0' K$ # # 5_ # * Gc 0' !, V@ # L$ ]& $ ]& $ |* & = . V@ *' . + [* [* $= U@ & |* U@ |* |* $ > ] & [* N$ - P$ P$ |* $= S$ > | . Ez Z! & H= H= ~ & > > | N$ ^ (& S$ H= U@ | g{.( ~ /& N$ | T- %= X@ ~ X@ ~ ) ( 2] 1 { *# X@ 6 ( I= / ## 4 &# d => Y@ 7 5 { ; X@ | ## &# / ~ 6 D, } ,# D, : 7 Y> } 4 5 7 7 ,# 7 6 a !# ~# ~# V) o i Y> 3] 7 d a {# ~# e ,# c a ~# n 0 $# ~# a i 6 2* s> c 0 c 0 0 ~# L= Y$ C; n C; n -) Z$ L= c e r p Y$ `$ h p ^# % V| 4* `$ u m /# `$ w y2 `$ % ^# :# w G w 5* I G ^# q M z z /# w B {& }# ^# m) /# I P@ w P@ P@ O@ q! {& I n! N I E$ N M M Q@ M a- A %> P@ K@ O@ d{ I@ O 3# P@ J A M@ H J 3) L@ P@ L L@ M H U O A H ` M 3# L@ T G$ E$ T L@ J S J J@ E$ K@ &' P@ M 8* O 1# J I@ H V W D$ D$ S 2# P@ Q 2# @. E$ P Y t> H@ H@ L@ H C$ J ` S Y I@ E$ T L@ @. @. H 2# r! T U T Y L T 2# D$ .= H I@ I@ H H T }; T J X L@ t> 1# D$ S P P U 3# T I@ P I@ J |; H T J T }; L 0* T L@ G@ 4# S U L@ H$ H Y L@ I@ Y J@ L@ +% O 2# P@ I@ M@ H M@ J X L@ L@ U J J S S J H H P@ M@ 1# S P@ L@ 2& J S M P@ L@ S P@ 8* Y S I I I O@ O +% S N@ z A A M H$ w z M @% H$ I z M N K N I F= z N G ^# F K I N % /# Z$ z h <{ [) r, =) y, u, x, s, u, x, x, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, 8' u, y, y, y, y, y, y, y, y, u, u, x, u, s, y, y, y, y, y, y, y, s, s, x, x, y, y, y, z, t, x, u, u, z, y, x, y, y, u, s, y, z, y, y, u, x, y, z, u, y, y, y, u, y, u, x, y, s, *) ; ( ## { { < { { { ~ ) { [ W@ ~ & ) ; ~ N$ | 2 ~ S$ U@ ~ & ", +"y, x, +' +' Op.Mp.8' Mp.+' 6' z~ z~ +' +' Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ z~ z~ ah.ah.*[ *[ 9i.|1 $q.e^ *) 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| <{ 2^ <{ 9| ;b <{ J$ <{ <{ L$ R@ R@ l) <{ l) 2^ G= jP I/ G= R@ ]& p9 J$ G= 0' 0' 0' 0' 0' 5_ # K$ + p9 = # # 0' # ]& o! $ # . $= Q$ .( Q$ $ = Q$ S$ $= S$ & H= $= = V@ S$ P$ S$ U$ S$ U$ & > [* S$ & 5- . . & > Q$ U@ U@ R- # U@ %= & | R$ ~ & ! U$ & 5- 2 & ] `@ J) P$ R$ ) | { ~ X@ 4 ) ~ > f] ) { N$ ] { J) ( ) X@ < } D, 2 { < ( 6 { D, 2 1 ( 4 ( } 9 4 7- ( } &# < J= ,# 8 7 } a 9 4 ( ># a 6 b 7 a' a a a Y> i h z: 0 3* ,# 6 ,# o k ~# L= 3] W$ i 0 h Y$ o 9 ,# L= c i k p Y$ e [& n -) p }& h L= r |& n Y$ p `$ ^# m p Y$ D (# r p ^# `$ % 2, -) Y$ w 4* ^# % `$ D I 2; w B G w ^# m G A O@ j4 m O@ :# G /# I I O@ J M N I M A |# F= I I N@ O@ I M I #= |# 8* K@ a- L@ H M E$ H H$ 3# M S x S P@ P@ L@ c- A H G$ U L@ P@ P@ ` P@ Y H E$ D$ J ` Q@ L P H H G$ ` K@ 3# H@ Y T Y Q@ M@ Q@ O N@ Y O J P D$ S P T T 4# D$ Y H I@ ` P L@ H K@ E$ P L@ T V V U 2# P L@ T L P L' H T D$ }; C$ H T D$ ` @. d- L@ L@ U T V J D$ 1# T T x .= T L@ 7# I@ I@ J ` X L@ P@ H L d- V X C$ O 1# J L@ C$ O +% K@ P@ P Q@ +% +% H@ 4# H ` :* I@ L@ H$ ` C$ J Y S H O L@ M M P@ S P@ H O J Q@ A P@ +% @% P@ z Q@ S O 3# S P@ K@ A H$ I M A H 3# :* N 8* I N H$ A E= z w Q@ Q@ A A A C 8* z }# }# I w F= w F= A A `$ Z$ t :# B F= ~# $ J$ [) s, x, s, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, u, s, y, y, u, u, x, u, y, y, y, z, y, y, y, u, t, x, u, x, u, y, y, y, y, z, s, x, y, y, y, y, x, u, y, y, x, y, y, y, z, s, y, y, x, t, u, y, y, y, y, s, y, y, y, y, y, y, y, y, y, y, z, v, ], X@ *# 2 { %# } 2 [ %# / X@ X@ W@ ] ; ; ] N$ ] ] ~ { S$ S$ ] | ] ", +"y, z, q.+' Mp.Mp.Mp.Mp.Mp.+' 6' z~ Mp.Mp.+' Mp.z~ z~ z~ z~ z~ z~ z~ q, z~ *[ z~ *[ z~ q, xi.ql.z~ z~ $8.9| )~ )~ 2! 2! |1 )~ 9| *) 2! *) *) 2! e^ <{ <{ <{ J$ 2^ <{ J$ J$ ;b I/.9| 2^ *) I/.l) #S L$ L$ R@ ]^ R@ J$ I/ L$ ]^ 0' 0' 0' I/ 0' 5_ = # + L$ %q.# # 5_ $ K$ # 1) + # # o! Gc > # $ $= > V@ $ $ $= $ Z, $= S$ *' [* $= ; & |* |* $ + Q$ ; & $ - %= > > & }* ; P$ ~ & > | > H= U@ ; %= N$ ~ R$ T- | ~ & | U$ ^ Z! 2 | 7- 2 Z@ V@ > ~ | ( N$ ~ | ] W@ X@ { /& ( *# X@ X@ { ~ [ N$ } ) 6 } ## ## ,# { ( } } < } 9 < ## 3* 6 6! $# 8- 2 b ~# N' 9 0 a a a 0 ,# b a ,# ,# a ~# L= ~# s> n ~# k a' ~# i a c ]# Y$ h s> ,# ~# L= ,# ~# n F! n n n n Z$ n 1; c ~# e 6! n 1; m s> Y$ ^# Y$ p p % Y$ /# % % t E, D h t 4* G m 4* t 2; `$ y w G N #] G w K ^# ^# B /# m :* @% P@ P@ ~& z N N= N O@ N O@ M M O@ O@ %> I z E$ A E$ H P@ M H I P@ H$ n! E$ A Q@ H P@ I P@ x P@ E$ |# 3# P C$ P@ Y E$ 8* M@ P@ P@ Z H$ H E$ P@ 3; P@ Y P@ Y H P Y H$ S H Y Y 7# J Z 3; ` T P J P H c- H P U Y C$ K@ }; T ` F@ |# J L@ S M Y T O= T L@ n> O ` H J V J H L@ T P P D$ D$ D$ T L@ T R E@ Y H H ` L@ P E@ W T H T U #. 4# L J J T P@ J D$ J I@ D$ H H I@ Y J O P@ J C$ D$ 1# S J L@ |# Y Y T T O H$ ` T I@ H L@ Q@ J S P@ M +% H$ H$ S J +% S P@ J@ w L@ I z Q@ K@ M M H$ E$ K@ H$ A P@ A P@ J M@ z S M I A I z A G G G I z x P@ I w B z ^# C w 2; m A z S N ^# M= 4* N `$ $ e^ v, v, =) s, s, x, u, s, x, y, y, x, x, u, y, y, y, y, y, y, y, y, y, y, x, x, y, x, x, y, x, u, z, v, u, y, y, u, y, u, u, y, y, u, z, x, s, y, y, y, y, y, y, x, y, x, s, s, s, u, y, y, u, y, x, s, y, y, y, z, y, y, y, y, s, u, y, v, x, y, y, y, y, y, s, y, x, s, ]& 2 ( [ [ W@ } 2 ~ ; U$ [ R$ / 6 ) ] 5- R$ ~ 2 ~ ( ~ U@ Q$ U$ | ", +"y, z, Mp.+' Mp.Mp.Mp.+' Mp.Mp.Mp.z~ Vp.Mp.+' Mp.z~ *[ z~ *[ q, z~ z~ z~ z~ *[ z~ q, z~ *[ |1 Il.*[ *[ ql.xi.|1 e^ e^ 98.|1 2^ *) |1 *) q, ^, q, *) 9| <{ *) J$ 9| <{ <{ ]^ <{ <{ l) R@ J$ <{ <{ R@ V! R@ R@ <{ G= 2^ jP I/ G= I/ 0' 0' I/ I/ 0' p9 # K$ ]& I/ $ # # # # $ #^ 0' # & $ Q$ 2) S$ S$ $= . V@ Q$ $ > > $ *X |* S$ & . Q$ |* > . o! Q$ =' V@ > o! P$ 05 & ; . - Z! & - X@ H= ; > > ~;.; ; S$ U@ . %= ] | & U@ ; & & /& ~ ; /& 4 { X@ ; N$ ; & ^ 2 &q.## 2 ~ U$ 2 X@ | | [ } / ) 6- 6 6- 2 5 7- } 1 ( ( } < =# d } 6 6 a 7 9 ( -> 5 ,# } } a < 6 5 e h 6 7 i ,# c b 3* n Y$ K/ 7 c tA a' e c ]# ,> a 0 a 6 g n L= L= |& c ~# a i Y$ c{ h Y$ h n h ~# a' % ,! h % K= Y$ p _# n -= ^# ,> s> `$ ^# Y$ Z$ 4* w m ^# ^# `$ A /# G ^# C w w 4* 4* G D I z O@ }# F= N G G N G z w B z I 1& E P@ I M J =K M P@ I A q! J I M@ E= |# P@ 1& A S J J S P@ A H E$ P@ A J ` O T T S G H H O@ H 8* ` |; T O@ K@ P 2# J 1# L }; E$ J |# Y H +% ` E$ M@ S T H Y B$ ` I O H S Y O M@ L@ H H D$ S T J P@ L P@ ` T T L' I@ 1# Y J H H$ 3# U J 3& O 3& P J L@ T T 1# I@ U L T H 2# G$ J J J M@ J ` 4# L@ t> L P J J T L@ 3# J H P C$ L@ J T O O 1# ` H L@ Y K@ 4; L@ J P@ S H 3; ` O P@ Y Q@ O H #= M@ 1# H P@ P@ O 8* #= 8* P@ 3; Y A z L@ S I E= +% M Q@ I M E$ G M A 8* I #= M .~ P@ A N@ Q@ F= A Q@ G z x Q@ x m) {& z w G F= w N C B m p 4* z N % {& p D ^# 8- g~ 6' 6' s, s, z, s, x, u, y, u, z, u, y, z, y, y, y, u, u, u, y, y, y, u, v, y, y, u, x, s, u, x, z, v, y, s, s, y, y, y, x, s, u, u, y, x, u, z, y, y, y, y, y, y, y, y, z, x, x, y, x, x, y, u, 8' t, y, y, y, u, y, y, y, y, x, u, y, x, u, y, u, u, y, y, u, x, H) x, # | $# ~ N$ { N$ { ) X@ | ) [ /& ~ P$ ) ~ O$ Z! ~ ## N$ ) ] ) ^ H= ", +"y, z, Mp.+' Mp.Mp.Mp.Mp.Mp.+' +' z~ z~ +' Mp.[: z~ z~ z~ z~ z~ z~ z~ q, *[ z~ 2! z~ *[ z~ 2! vh.|1 z~ 2! xi.98.*) *) 9| |1 *) q, 2! |1 |1 @ <{ 9| 9| <{ <{ ], <{ I/.9| J$ <{ <{ p9 ], R@ <{ <{ J$ J$ R@ R@ <{ R@ J$ 2^ I/ 0' I/ I/ I/ I/ I/ [n I/ = # + 0' = # # # # # # = . # # > Q$ . }, > $= |* ' # V@ =' . + V@ $ $= > & > ' . S$ H= > > Q$ ' U$ X@ . R- & P$ P$ ] > . P$ R$ ; J) ~ ; P$ ; & N$ ; ^& 4 ] ; ; 5- N$ ~ o! Up.{ N$ | X@ < X@ | 2 ~ %= N$ X@ R$ N$ 2 U$ X@ | %= | 4 Y@ d d } 1 4 [ ( < X@ } d 5 &# d N' W@ $# 0 W@ *# 1 } 6 j ( *# 5 d e 5 7 ~# 8 Y> ~# ,# B; a 7 ~# a 5 Y@ ~# 0 0 ~# e 2, n {# Y> / a h _# s> n 8 n n s> c 6 0 L= @= t p n 8 0 ,# Y$ C m Z$ :# `$ `$ h % % V| Y$ p 6* r 2; b' ^# m 1; p r m F= ^# 4* m y t m Z$ {& G A 4* % B D $] G z {& A z z F= F= [# F= N )> G z n! c- 8* N M P@ H$ Q@ N P@ 8* 8* A E$ P@ I H A I E$ x P@ S P@ N S J P@ L@ 2: S |# 4; K@ H$ E$ K@ S +% A M +% @% S H$ M Y *q.P@ T b- J A ` P I P P O@ K@ G$ L@ H S H Y M@ Q@ S P@ Q L@ U H@ P }; L@ Z E$ |# H H H E$ d- L@ E$ J T L@ E$ P Y }; J 2# 2# L@ H L@ L' L@ L' R T L L H E$ D$ 3& |# T 4# A Y H E$ J L@ L M@ P@ V I@ M@ L M@ H Q T S A H M P P@ J E= M Q@ T S P@ J 3; E$ M@ ` Q J M 3# P@ H P@ P@ +% J I S J P@ P@ b- ` Y S P@ O@ @% +% 1& P@ M N@ z A K@ A Q@ w A A A A I {& I I N@ A #= z x z G G b' z #] N 6* N= 8* p /# N z G :# ^# w n^ {& w G :# D [ J$ ^, q, 6' H) x, u, 8' x, x, s, y, y, y, y, y, y, y, s, x, z, y, y, y, y, u, y, y, y, s, s, y, u, u, v, y, y, u, y, y, y, x, u, u, s, x, z, y, z, z, z, y, y, y, y, y, y, s, u, z, u, s, y, y, s, u, y, y, y, u, s, y, y, u, x, x, y, y, x, x, z, x, u, y, y, u, y, +' v, ) { { ] N$ < 2 X@ W@ | ) ] | ] [ [ ~ { U@ | ~ ] ~ ] & ; ; | ", +"y, x, Mp.Mp.Mp.+' Mp.Op.Mp.Mp.Mp.[: z~ Mp.Mp.Vp.Mp.z~ *[ q, q, q, *[ z~ *[ z~ z~ *[ *[ rl.*[ 9i.vh.9i.ql.vh.xi.9i.)~ <{ 9| 9| e^ 2! 9| 9| <{ <{ <{ 9| <{ <{ <{ R@ <{ <{ 9| *) jP jP *) 2^ J$ ;b ;b ], <{ R@ J$ L$ ]& G= I/ I/ R@ L$ [n [n R@ L$ = 0' `Y # + = 5_ K$ # * + $ L$ 0' R- . + ]& . # # $ |* S$ S$ [* (& & .( = + = Q$ > > S$ N$ . $ 5_ Q$ ; . L$ ' ^& $ # > Q$ P$ Gc S$ & %= ; S$ S$ N$ 2 Z! 2] J) & . N$ T- X@ | | | X@ ; > N$ X@ N$ H= N$ ) N$ N$ | [ N$ X@ { | ; ~ ~ /& `@ ## [ X@ < } J] 1 7- D, 1 $# 6 d d [ ( b +# <& 2 ~ d [ } d ## d x0 } 7 ,# 9 } &# 2 ,# ,# D, a i ># e a a e h 0 ~# 0 a 6 ~# c n !# i -# c |& X$ ~# 0 k a ~# {# p h L= p K/ 0- p m r o a L= z `$ s> `$ |& p q r n h m ^# E Y$ w M= 2; ^# ]# w G Z$ {& % :# t b' G m w {& `$ N {& N G ^# t K D N G F= z F= N G /# G w z I G A I G M A P@ I C, Q@ I@ N M x I I Q@ S M J E; A Q@ A M J J H H Q@ A H A M@ H |# #= U I 8* S J M@ J J P@ 1& +% |; L P@ K@ S S +% J M M@ P@ O a- S H E$ Y J Y ` Y 1# L@ =q.Y J E$ H$ J D$ O r! O Y T Y J J P@ ` J T L' H H O 3& 1# P L@ P@ T d- X U H$ V H E$ O 4# Q E$ H P@ L@ C$ L@ r! S J d- L@ J E$ Y H P@ H J S L@ K@ E$ 2& L A H$ J L@ Y +% S P E$ O K@ L@ q! S A P@ H Q@ M O@ N@ J M 4, J 8* Q@ G I A M S 1& N S I A P@ 3# I S O@ O@ M O@ ^# B G 8* I z A A 4, P@ A A x N ^# I w #= Q@ P@ G G w N A D G C w w :# w G 5* y p D % :# t 7 V! `, g] ^, x, x, u, u, y, u, u, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, s, y, z, s, t, x, y, z, y, s, #' u, x, x, y, y, u, y, y, y, u, z, y, y, x, t, u, y, s, y, s, x, s, y, u, x, y, y, y, y, y, u, y, y, u, x, s, u, y, s, u, z, x, z, y, y, u, u, q, 5' - ~ | ) ~ { { [ 2 ; ~ & & 2 | %= U@ | | ] ) ; ; U@ & & [* ; ", +"t, y, +' Mp.Mp.+' Mp.Mp.Mp.Mp.+' 6' z~ Mp.+' 6' Mp.[: z~ z~ q, *[ *[ *[ z~ *[ Rp.*[ *[ z~ z~ z~ vh.9i.z~ z~ 2! ^, Pi.)~ 2! 9| 9| 9| <{ 9| 9| *) 9| 9| <{ <{ <{ J$ <{ <{ <{ <{ J$ <{ <{ J$ V! *) -q.J$ <{ R@ 2^ ;b I/ L$ L$ I/ L$ R@ L$ I/ L$ ]& 0' 0' 5_ # 5_ 0' 5_ K$ # + ]& * # $ + + ]& # + V@ # ' ' 1* [* ;b . # > $ # Q$ . + > $= & + > # o! > - > Q$ > $ $ > ^& o! & ; U@ ; Q$ }* = > ! | N$ Q$ 2 | | U) ; Z! Z! U$ H= ' ; P$ | `@ 2 [ > ; ) | ) | 2 { { X@ ( 4 /& /& ( ~ 2 Y@ } 5 2 [ 3* ;q.2 $# d 2 `@.~ V~ } X@ ( ## 6 a ( } < : d == N' d a 0 c6 {# ># ~# !# 6 e $# 1 ~# ~# e ~# 2 6 ~# i 0 } p 0 ~# ~# ># j L= vk `$ 0 3] 0- L= z: n h L= r h p! K= m p e g n `$ ^# m :# % c Z$ m n -= p Y$ r 1; % D m h ^# /# `$ p h 4* C q w w m ^# ;) w t N G @= Z$ {& A z )> A x A G /# W) [# D N I x z z I E$ A L I G Q@ I 3; |# 1& N P@ A P@ S A M@ E$ 8* H P@ M H {& |; J K@ J J I J 4, M S P@ ` K@ +% 1# S P@ P I M@ z |; 3# I@ M@ +% N@ M@ Q@ K@ S @% C, 2& E$ T H J P@ 2# 8* H K@ Y C, P L@ 1# ` c- I Y T P@ H X T P@ L K@ Y M D$ 3# J 1# G@ L 2# Z >z H@ P@ P ` L@ Q T 3# U T H 3# P S H S H H L@ K@ E$ J T P E$ A P J P@ C, J L@ V 3# Q S S S H G$ J E$ L@ M@ D$ 1# 8* H O@ O@ @% S ` |; O M %> @% K@ P@ 1# M A x G I b- 8* I b- P@ A N z G M G N P@ J 3# I F= I A A {& G G N z {& x w I z K@ D /# G N N w w I w z /# 4* D #] ^# 2; I _# t m /# ^# m G W$ q, 6' =) s, A, y, x, y, x, x, y, y, y, y, y, s, y, u, y, x, y, y, x, z, t, z, y, y, u, y, y, t, x, y, y, y, x, s, u, u, u, x, y, y, x, s, y, y, u, s, u, y, x, x, u, u, y, y, x, u, v, u, z, u, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, s, y, A, 6' `@ / { 1 R$ ) { ; Y@ { N$ ^ ; | | N$ S$ ] ; ~ & > ] & R$ & - { ", +"t, u, 6' +' +' >q.+' +' Mp.,q.Op.Mp.z~ 6' [: +' Mp.6' z~ z~ *[ z~ *[ *[ z~ q, z~ z~ z~ *[ *[ z~ xi.9i.*[ *[ z~ *) )~ e^ q, 2! *) *) *) *) 9| <{ <{ 9| 9| 9| <{ ]^ <{ *) <{ <{ ], <{ I/.J$ J$ *) l) k3 BN G= jP jP I/ ], J$ I/ p9 ]& 0' 0' I/ I/ = I/ 5_ # $ = p9 5_ + # ]& !, + = 0' V@ . # [* # o! 2) + 1* & + . S$ V@ . $ S$ $ . > S$ |* . S$ ; *' . - $= *' U@ ; ; > & V@ > . ] - . $ - & U$ Q$ | P$ U@ S$ %= | ( & P$ &= ) | ) { *# U@ H= N$ > | ; { H= ^ Z@ 2 ~ | | ~ /& $# ~ | X@ ( 2 7- { 2 ) D, d { } ;# 4 4 { 6 $# ( ( 3* D, &# ( /& /& 7 6 N' $# M' d } ~# B; i V) 6- a a d 8 e 0 ~# k ~# n {# n ~# ,> ~# ,# c L= h c ~# o {# g 0 L= o {# a a 9- ~# a s> n [& g h 1; 2, c{ 2, 1; p n `$ /# Y$ m Q{ {# h -) m 4* I `$ m ^# `$ m 2; b' {& :# w Q@ /# F= `$ {& w 2; @= G I I z w I z A Q@ /# z G w ^# w A N M c- M= I %> O z z S M H O@ I P@ H$ P@ O@ A P@ M@ P@ n! A 7* O@ J A A H$ +% S P@ P@ I b- G I Q@ S @% P@ S P@ A K@ 1& x P@ M x P@ E$ M@ S S K@ 4# Q@ J T Y E$ 4# L@ E$ Q U H P@ 2& T P@ P@ H T H ` H J S J Y I@ d- n> S d- &' H Y P@ 8* J M P@ P@ T H I@ Q@ L O J T M E$ 8* J E$ L T L@ H T T M Q@ I M H E$ L T Y J 1# P@ Y M 1# S P@ |# J@ J +% A S Y S S S @% +% S Z I P@ S Y M A N@ I H a- J 1& P@ F= O@ S S I A #= A z Q@ z w N Q@ ^# K@ x P@ A Q@ N z z K K 1& C G {& I z w G N /# #= x }& w t G )> C I G w N G ^# ,! w p {& K B ~& ^# {& t p c Q$ 3_ q, r, s, y, u, x, u, y, z, y, y, y, y, y, s, y, y, y, u, y, y, y, z, x, u, z, y, y, u, y, u, u, y, u, u, u, y, u, x, s, s, y, y, t, x, y, y, y, u, y, z, z, y, u, x, u, x, x, x, x, y, y, y, y, y, y, y, u, y, y, y, y, x, u, y, y, z, u, y, y, y, y, s, y, u, u, q, ^ | ~ W@ { 1 ( Q$ [ ## ; U@ | N$ < 2 ~ { ] U@ H= ] W@ U@ ; Q$ - ;# ", +"y, y: Mp.Mp.Op.X( +' Op.Mp.+' Mp.Mp.Mp.z~ [: Mp.+' +' [: Vp.*[ [: [: z~ z~ z~ z~ *[ 2! e^ z~ *[ Il.Il.9i.*[ 2! $8.)~ e^ e^ 2! 2! *[ *) 9| 9| 9| <{ <{ <{ <{ <{ J$ 2^ 9| <{ *) ], <{ J$ J$ 2^ ], l) r4.]& #S 2^ J$ I/ <{ BN I/ =$.L$ <{ k3 0' 0' ]& ]& 5_ + K$ + #S L$ + # ]& R@ # $ p9 L$ # $ $ k) }, # [* [* S$ ' = [* # Q$ 2) > > & [* & S$ $ $ V@ U@ Q$ . - . S$ U$ ; Q$ & . & & U@ - N$ ; %= 05 %= , 7- g{.Q$ .# 2 X@ ^ ~ H= X@ ~ S$ {c & N$ | { 4 & 2 ## ## 7- Y@ N$ | | ~ 2 & ~ 2 4 ] ~ ( | | 4 ) Y@ 6- } g{./& d /& 2 < d &# } ( ,# d q> $# $# ,# ( 6 a 6 6 ,# 6 a a ># ,# L= a a a M' g e a h ~# 7 6 e a c e L= c{ 0 0 g : ~# !# *= e n 9- k `$ n ,# 9- c Y$ K= ~# Y$ n `$ Y$ e ~# L= h r e r ^# % Y$ Y$ Z$ ,> D n^ D _# % v m 4* h p /# F= /# N /# m w I w w ^# p 2; [# G /# w z M A I Q@ D ^# n! G w w G I )> N K :# J E$ M@ J P |# P@ I M 8* I A 7* Q@ I z I S J S S H$ S H A A }# I Q@ Q@ F= H$ J A A G M@ H$ H$ #= Y S O@ L@ O@ O@ H +% S D$ ` T J@ S M Z O@ S 1# J 3# 1# ` J E$ J Y M@ z H o^ H M Y S T M T Y Q@ O H V M H P@ E$ M@ O 3# E$ 1# J ` T ` P@ D$ P J J Y M P@ P@ P@ Y P@ M Y 7* @. C$ J I@ S H Y Q@ H J Y x E$ Q@ 3# H$ P@ N@ A b- P@ G 8* +% M P@ P@ #= A H$ U M M@ 8* H$ M@ A 8* S +% K@ G K@ A 3# O I G A J J Q@ I I A z z I w I #= N A D /# M M I S G {& G G z F= I A z N F= w G w ^# F= G m F= ^# w D p p ^# w 2; C D ,! ^# ^# p n - <{ +' y: s, s, x, u, s, x, u, u, y, y, y, y, u, y, y, x, y, x, x, y, y, y, y, y, y, z, x, y, y, u, u, z, x, u, y, u, u, u, x, s, z, -! u, y, y, z, x, y, u, y, y, y, y, u, s, x, y, y, x, u, y, y, y, t, y, y, y, y, y, z, x, u, u, y, y, u, u, u, y, y, x, u, s, s, ' ;# [ ~ [ N$ N$ ~ $# | | ; | W@ { ~;.H= ^ ] `@ ~ N$ > ] ; ; > ; ", +"y, t, 8' Mp.Mp.Mp.Mp.Mp.Mp.Mp.Mp.+' +' [: z~ [: +' +' 8' z~ z~ 6' q, z~ z~ z~ z~ z~ 2! 9i.*[ *[ z~ vh.2! z~ z~ |1 9| ^, ^, *) |1 2! Pi.*) <{ <{ <{ *) <{ <{ <{ ;b <{ <{ <{ <{ ], J$ I/.<{ <{ R@ 2^ <{ l) L$ ]^ R@ 0' L$ L$ jP #S I/ ], R@ 0' I/ R@ J$ G= ]& # # + L$ # # + ]& !, # 0' + # + ]& o! $ Q$ H= Q$ S$ =' o! $ V@ . [* > * # . V@ U@ | S$ - & Q$ & . S$ $ |* - . & ; ! & N$ X@ & ; ] ] =' N$ ~ R$ o! - ; & | ] Q$ P$ - S$ N$ ) ## | | ) ~ X@ ~ ~ 2 /& { Z! { ) Z! 2 R$ ( Z! N$ | 2 2 P$ ~ ( / B; V~ 1 } } ## ( $# d 7 < { { d 6- -# d ,# } 1 $# B; b i x0 a 9 6 a ,# a n k {# a 0 ># a == a 6 6 ,# j k ~# 6 0 2d V- $# e a e &# e c j ~# n Y$ Y$ ^# a' c n [& 9- o n p n p h c |& C h n a' m `$ r t t D p p n b' % Y$ p 1; w `$ p t r n^ Z$ 2; :# m 4* w B ^# w Q@ F= 1& N w #= ^# D ^# z {& }# x w b' >= A G A O@ G I a- P@ P@ % z A I N Y A A P@ G P@ P@ A P@ P@ Q@ A N z A I P@ Y M M M@ I P@ 8* H T Q@ P@ M L@ H N H H$ H$ I@ E$ ` S E$ Z Q@ H$ +% P@ P@ ` H$ 3# H$ E$ L@ Y J J A K@ S P@ |# Q@ J |# c- @% S C$ S P@ K@ S I 8* z z P@ E$ M M J 3# P@ 8* T S O H :* L@ Q@ J S K@ J c- T c- |# P@ U 3# Q@ O J P@ I@ b- ` T M A P@ A @% ` O@ O S J H A S J G E$ K@ q2 A b- P@ O@ M P@ Q@ K@ 8* 8* I H$ M H$ A /# z I M z I A #= A G I I O@ N= M w A A G G B x I A I A w A P@ w ^# u A #= I D M= B w 2; N /# `$ :# p {& 1; m D 4* F= N G 4* w D ^# ^# s> ^# ~ J$ q, v, s, s, y, u, s, s, u, x, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, y, x, x, y, z, y, y, u, z, y, u, x, s, y, y, s, y, y, y, y, y, y, y, u, y, y, u, z, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, z, x, x, y, y, u, z, s, . ) ) ^ ~ / N$ %= ~ ; & ~ N$ | S$ > ) > . ; N$ & ^ | | & & O$ ~ ", +"y, u, 8' +' +' Mp.Mp.Mp.Mp.Mp.Op.+' +' [: z~ [: Mp.+' Mp.z~ *[ z~ q, z~ *[ z~ z~ z~ z~ q, *[ z~ 5o.xi.ah.9i.z~ )~ 9| )~ e^ *) vh.ah.2! *) <{ 9| <{ 9| <{ <{ 9| <{ *) <{ J$ 8S J$ <{ J$ J$ J$ J$ *) <{ J$ R@ I/ R@ R@ 0' BN ]^ I/ p9 G= I/ 0' I/ I/ ]& 0' p9 1) ]& R@ p9 + # # Z, # # 0' 0' # # ]& Z, . [* . . ' & [* = (& . ' S$ |* $ = . |* Q$ > $ > . 0' - |* . ; > + . U@ P$ $ > ] U@ ' N$ ~ & 2) ~ ] | & T- %= | - & Q$ = %= X@ ~ ## ; ~ ) X@ R$ { { N$ X@ [ ] H= ~ N$ b{ ; ## X@ <& 2 [ 4 1 ] ,# d ,# 2 6 *# { 7- { X@ /& 6 ## ( } 6- ## Y@ 7 6 i } &# b b d 4 e 6 6 V~ 6 a a a B; 6 c 0 a e i a g < i ,# k c K= L= 0 V$ 7 e c ~# n e Q{ s> 2, ~# Y$ _# Y$ ~# g n q Y$ h ;= o n {# Y$ ,> c ~# n s> Y$ Y$ q ;) ^# m % Y$ c r p 4* ^# h ^# N 2; w w m `$ w m r u h t /# K ^# C I w x F ^# y D p G Z$ D ~& G I O@ w D K M Q@ K@ w A w A B x N N N C >= C M P@ I M M P@ x Q@ Q@ @% S G K 7* A A A N@ H Q@ P@ M S I M= N A H S E; M@ I m) b- C$ M@ Q@ A H$ A H$ Q@ H$ T O P@ S Y S J N@ J E$ Q@ 8* H J S P@ K@ +% O H$ @% E$ P J 8* I #= Q@ J P@ E$ J@ +% M @% L S H c- Q@ J C$ 3# J N@ U +% D$ T L@ H$ 8* O J M A S H$ P@ +% P@ +% J M H O Q@ M T K@ M J C A ` x @% E= Q@ z I M 3# J M P@ A M 8* I M +% S O@ I I A P@ P@ P@ G I G w P@ P@ x N A N K@ #= ^# A w z q2 N G N I z I 2; N N I M -= ^# G w A z Z$ }& @= A ^# w G Z$ G GK ^# N p }& ^# _# p 2; Y$ ^# 6 J$ ^, g] s, =) y, x, s, s, s, x, y, y, y, u, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, ' w, y, u, x, y, y, y, y, y, y, u, u, x, x, y, y, z, y, s, y, y, u, y, x, y, z, y, y, y, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, z, y, x, x, u, r, = | ;# { < { N$ N$ 2] 2 ~ [ | %= %= , ! ~ ; R$ & Q$ S$ %= ; U@ ; ] ; ", +"y, y, 'q.Mp.+' Mp.+' +' +' Mp.Mp.Mp.Mp.[: z~ Vp.Mp.+' Mp.*[ *[ z~ z~ z~ z~ *[ *[ z~ z~ [: *[ *[ *[ 2! |1 2! z~ e^ 9| 9| 2! e^ 98.2! 2! 9| 9| 9| <{ <{ <{ 9| <{ <{ 9| R@ J$ <{ <{ <{ 2^ l) J$ J$ ], <{ *) J$ G= R@ 2^ L$ L$ ]^ G= I/ G= L$ 0' 0' 0' I/ = p9 0' 1) ]& 0' X! $ # # $ V@ + = . > . # = . . Q$ Q$ $= > = Q$ . $ Q$ # # = # $ $ . 2) $= - S$ U@ - |* i#.] . . N$ U@ }* ' & ] H= | ~ %= N$ W@ ~ ~ Q$ ~ ; Z! ; U@ S$ ; ~ | . ; 5- H= ; ] 2 | ; Q$ S$ N$ ) X@ & ^ H= Z! 5 ## 4 2 ~ %= 2 [ 4 6 } 7- => d *# /& 2 ## /& 7- < 6 d ,# &# 6 6 $# V$ D, Y@ Z! { ,# ,# 2* 7 a } 7 V) Y> 0 B; d ~# 0 k V$ a ,# o a a ~# ~# L= 7 ~# ~# n 6 ,# 6 ,# c ~# g a a r Z$ A~ K= 0 6 e ]# [& p h X$ ^# s> n >> n h `$ n^ % s> r h ^# m p `$ Q{ m n^ ^# 1; `$ s> `$ _# `$ Z$ n^ ^# Z$ /# Y$ m % G D ^# Y$ m Z$ G G {& F= D /# w ^# t 2; G F= G G N ^# #= I J P@ N F= x I I x C D G N N P@ N S G A P@ S A A I S E= D z A z M Y I Q@ N@ M A A A H$ @% M b- Q@ Q@ Q@ M I A M E$ J M@ 3# P@ S O@ )q.P@ I I K@ T K@ A S 1# 3# Q O A T H$ H$ M S M c- P@ S C, J O@ 1& M H H P@ H E$ P@ @% S P@ T P@ H 3# E$ J O M E$ |# 1& A M @% S L@ #= H$ O E$ b- E$ S A P E$ x O K@ S )> z I M S P@ 7* A P@ T A S 4, I N G E$ I Q@ S Q@ 7* A H$ Q@ P@ +% 8* x H$ 3# 7* I H$ N I w G 8* I F= N@ N Q@ I N W) N G z O@ N m :# I )> w ^# w B G /# D {& D /# G N % m t C `$ @= w y :# ^# t `$ % 2, w Z$ ^# 2, ^# s> k + 5' r, x, s, u, u, z, z, u, y, y, y, u, z, y, y, y, y, u, y, y, y, y, y, y, y, x, y, u, y, y, y, y, y, x, u, y, y, x, u, y, y, t, x, y, y, y, u, y, y, u, y, y, u, y, s, x, u, y, u, u, y, y, y, y, y, x, u, y, y, y, y, y, y, y, y, y, u, A, A, x, y, y, s, x, s' & ~ { ## ) | | ; ) { | ] ) %= U@ | ~ 2 & ] | ] ~ 4 ; Q$ - - . ", +"y, y, 8' 8' +' Mp.+' Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ [: Mp.[: Vp.z~ z~ z~ q, *[ z~ z~ q, z~ *[ *[ *[ z~ z~ 9i.ah.z~ z~ xi.9| *) Pi.*) xi.q, )~ <{ 9| <{ <{ <{ 9| 9| *) <{ J$ <{ *) *) <{ l) ;b <{ J$ J$ R@ <{ J$ R@ ]& L$ L$ 0' R@ G= I/ ]& L$ I/ I/ ;b 0' ]& L$ 0' # # Dv [n 1) # ]& ,Q + 1) # $ . # = $ $ $ ]& + [* 5_ k) ]& > + $ + + # & > > [* > & * $ = - & $ Q$ > > 5- N$ ' N$ | & U$ Z! & R$ ] | &= ) =' %= X@ R$ & ] ; N$ ; X@ 2 H= | ) ] | ~ X@ | | H= Z! - ] X@ ~ 2 [ ~ X@ 2 N$ | ] 4 ~ 1 5 5 V~ ( 5 < *# < -# /& 2 1 [ 5 W@ $# 1 5 } 6- { < V~ => } 9 9 -# a B; 6 6! Y> q> ># 0 {# ~# Y> ,# 6 N' g ,# 0 b ]# A~ j o n n g q> k Y$ s ~# ~# j j ~# c {# ^# p n :& C; t' /# C; e m 4* n^ Y$ {# [& `$ `$ L= Y$ h Q{ D Y$ L= o 9- 4* Y$ `$ 1; ^# n /# h m 1, m m Z$ h h t t m w D p q w m A I n! m F m I G /# Z$ G F y G B M z O@ z P@ A N q w G `$ D M= C M= }# w J 7* I A A P@ %> K@ I I E$ c- Q@ A M K I N H P@ H$ 2& A H$ #= O@ :* +% I K@ J S S M A Q@ @% C$ M K@ E$ P@ x I z P@ 8* I I P@ K@ Y w E$ 1& H 1& M@ H P@ T J K@ J Y P@ M A Y M Q@ O S H J 8* N@ Z H K@ D$ 1# M P@ 8* M H A 8* P@ E$ P@ b- #= H E$ N@ A J ` b- I Q@ b- I N 7* N x I P@ @% O@ G D #= f^ S M@ M@ P@ x I M Y A H$ K@ A T 8* 8* A K@ M@ n! +% M@ G G A z A P@ ^# I I M F= N :# I D x N x z /# M G >= Q@ A 4* D p F= ^# /# z w `$ #] p `$ v ^# D ^# Y$ m N D 4* :# y M= D N C w ^# m ~# ^# Y$ c $ 2! z~ r, x, s, s, y, u, y, y, y, t, v, A, y, y, y, y, s, z, y, y, y, y, y, y, y, u, v, v, y, y, y, y, x, s, y, y, u, u, u, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, x, z, y, t, x, y, y, y, y, y, y, y, y, y, y, z, u, y, y, x, s, s, 8' x, y, u, y, x, s, *) 2 ## ~ ~ %= { $# ] | 2 | { X@ ~ > N$ } ~ X@ .# 2 S$ ^ ^ U@ ~ U@ Q$ = ", +"y, y, 7' !q.Mp.Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.6' q, q, Mp.+' Mp.q, z~ *[ z~ z~ *[ *[ q, z~ z~ z~ *[ z~ z~ 9i.vh.*[ z~ 9i.9| ah.z~ *) 98.xi.*) <{ <{ 9| 9| <{ 9| <{ <{ <{ <{ 9| 9| <{ <{ <{ <{ 9| ], R@ ]^ <{ <{ J$ R@ ]& G= I/ L$ R@ BN I/ R@ G= I/ G= 0' 0' 0' I/ 5_ # # 0' = # Z, # R@ + = = E! # # # $ # .( # + 1* > + =' # . # # !, & . }, $= ; . S$ S$ $= > ^ $ & > - Z, $= U$ P$ $ & | R$ %= ] %= N$ ~ N$ o! o! 2] &= U@ | H= Q$ =' | 2 N$ ) , ; Z@ U@ ## 2 ~ ' N$ { [ 7- | ~ 2 7- H= 7- <& { ~ *# 4 2 } Y@ : { d 2 *# D, ( { ## } W@ 6 ;# [ } 6 &# } V~ N$ 7 *# d d d 6 i $# d ~# 0 [ b a a ,# 0 Y> c ># k c o &# a c {# 7 W$ n a c A~ ~# a a h n L= {# Q{ 3] n }& 0 [& c Y$ `$ Q{ ~# D h Vj r ^# ~# _# h |& Y$ m h p -) n^ C p s> p ,> p m m m G h b' y p l w ^# `$ Z$ Y$ m `$ t G t q y )> w ^# D Z$ D o D F B w D N B N I z {& I Y A ^# {& F= N N G x A 8* <, F= 7* A N O N 7* G Q@ x Q@ I K z w z Y z H M A Q@ Q@ M A @% A z M I A A M A K S 2& M@ A ^# G I P@ |# H$ I P@ +% J K@ H @% ` #= A O@ Q@ z A Q@ M 8* E$ T J J P@ J E$ P@ Q S P@ P@ P@ P@ H$ M@ A P J |# o> H$ z J I O@ I 8* S L ` P@ H P M J N@ N@ O@ A z Q@ S P@ %> Q@ A A F= H$ Y A A #= M@ I A S Q@ +% Q@ P@ }# x M z A M A 8* S x Q@ F= 8* #= N :# z I M B G Q@ N A x N %/ z K :# :# N z ^# m :# I G z m m w t 4* G `$ `$ p `$ w w _# `$ `$ I m ^# m p `$ /# Z$ D 6* 1; ^# Y$ o Z$ m p h l O$ *) q, +' H) s, s, u, s, u, x, z, y, y, u, x, y, y, y, x, x, y, y, y, y, y, y, u, z, x, ' y, y, y, z, y, u, y, y, y, z, u, v, A, y, u, u, y, y, y, y, y, y, y, y, y, z, x, z, y, x, u, y, y, y, y, y, y, y, y, u, y, z, x, y, u, y, y, y, y, y, y, x, u, u, s, *) 2 ## [ W@ 2 ; { ) `@ : N$ ) X@ S$ & S$ < H= ; ] ; R$ S$ & S$ ; S$ U@ S$ ", +"y, y, 8' Mp.!q.+' Mp.+' ~q.+' Mp.Mp.Mp.+' +' [: q, Mp.6' Mp.[: z~ z~ q, z~ z~ z~ z~ z~ z~ &[ *[ *[ z~ *[ vh.ql.z~ z~ *) 2! z~ *) 9| $8.*) |1 9| 9| 9| <{ 98.*) <{ <{ <{ J$ 9| 9| I/.<{ 9| <{ jP jP 2^ R@ I/.;b J$ *) BN 0' L$ J$ jP 0' I/ I/ I/ + 0' L$ I/ I/ 0' + * ]& 0' ]& * Z, $ + 0' R@ ]& 1) # $ # [* # # ]& # $= + . 1* S$ o! V@ V@ . o! . . & $ & $ > Q$ - Q$ Q$ = . . Q$ > $ . & > `@ & & H= o! X@ X@ ] & T- %= 2 N$ T- ] J) 4 | Q$ { ] N$ | | | Z! 2 X@ 2 2 1 7- ; | 7- { [ *# ( { [ 2 => ) | ~ 1 Y@ 7 $# 2 } N$ 2 ## ;# / 6 D, [{ 6 ( 7 6 ,# ) [ 6 d /& 9 1 == 9 5 5 ( } i / [ e 7 $# e ,# 7 a 7 j V~ }{ W$ e n h 0 e ~# ># ,# 0 {# e a 7 n }& C; `$ ,# e V$ h a [& X$ n K= n 2, h ]c o c n L= n `$ p h h 2, D l Y$ `$ p `$ _# h m n^ q c{ ^# h /# h Z$ D % Z$ m ^# 4* w D ^# t I {& w w -= ^# y w <, Z$ w P@ #= H$ c- O@ C ^# O@ z D {& G G B G I w N M= z N G z +% I N C A G @% Q@ O@ N A G Q@ I I S A I #= P@ I A O@ A J w G M@ A S S A Q@ Q@ I I@ P@ z M H$ M K@ z I M S z S b- M @% M M P@ P@ j4 H G 1& P@ H$ N@ A H$ 3# S M S S |# o^ M z M @% K@ L@ J Q@ I O@ H I w A 8* P@ J 3# S L L S Q@ z H O A M A N@ P@ P@ P@ z G M= P@ N O@ M S M@ I b- P@ z 4, N x N z G 8* I x S M A G x I G w I G A I G D w C /# Q@ I D w C ^# N 4* t {& z G G z w D D w /# D 1; p $] m 4* w ^# G D L= m C Y$ ^# p D h ,> ^# `$ Z$ y C t w w `$ V| Z$ _# ; *) r, q, x, x, z, x, v, x, x, s, u, u, y, y, y, y, y, y, y, y, x, y, y, y, x, z, z, y, y, y, y, y, y, y, y, u, u, y, y, z, y, y, x, x, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, u, u, s, u, u, y, y, y, y, y, y, u, z, =) s, R@ > ## ] Q$ ~ 2 N$ [ R$ ~ & U@ | [ X@ N$ R$ ~ ; ; > ; ] > (& U$ ~ ; ^& ", +"y, y, q.Mp.!q.Op.Op.+' +' Mp.Mp.+' +' +' +' +' q, z~ +' +' +' z~ z~ z~ z~ z~ z~ z~ z~ q, z~ vh.z~ z~ z~ Ip.vh.*[ z~ ah.98.ah.*) 9| 9| 9| $8.<{ <{ 9| 9| <{ ], I/.9| ;b <{ 9| 9| <{ <{ <{ <{ <{ k3 R@ R@ jP I/..( 2^ J$ I/ I/ L$ ]^ L$ I/ G= L$ = L$ J$ 0' L$ 0' = * ]& BN = K$ + ]& $ # + 0' + T@ * V@ o! . # V@ > S$ $= + # . # . M$ ' $ [* H= . > $ > $= $ P$ . $= $ |* - Q$ S$ U@ & N$ - . > ] | Q$ o! ^ ) & > N$ | & | R$ H= 4 { V@ H= ^ ; > ] [ N$ 2 ~ | 8- ) ~ Z! 2 / ; X@ ) { 2 | ~ /& 1 2 5 4 $# { 6 { /& { <& d X@ [ /& ^ ( 2 [ } e } 7 8 } => == 5 x0 6 ## 5 ,# } } a 6 ,# 7 0 3* 6 e 6 0 i k ]c ~# 2, 0 ~# 0 ># e e a' j [& A~ ~# e 7 n n 0 `$ g [& 6- c h r m L= n o a ~# j h _# p! `! }& c p ^# ^# Y$ h i n^ Z$ |& % D D p ^# m r ^# p p % C; p m 4* w D F= z D t w I D I ^# G m D % D D G D G I :# A 4* w x C I G z z N /# N :# D N G N A z N %/ G w 7* z }# N I G N F= @% Q@ z b- H$ I M N@ G P@ @% x A I ^# G #= I @% Q@ b- Q@ @% M b- Q@ I S H$ S Q@ N@ S E$ P@ G S I A Q@ H$ A I I {& I N@ O@ I A P@ I z n! K@ A O c- M Q@ x Q@ P@ H$ A H P@ }# A C, M %> F= z N P@ M M S +% M H$ 7* A O O@ I A P@ A P@ @% w +% +% G x @% x %/ A I Q@ S x A H b- Q@ N 1& K I I {& B M= F= C N ^# m Q@ N z #= I /# A I w G M N K N w F= t D E #= A G ^# {& N N I N w :# G Z$ z 2; N G ^# ^# r `$ :# :# t G C p n D O' Y$ 4* 4* `$ 5* ^# % r ;) ^# V~ ], [) r, s, x, z, x, y, u, u, y, x, x, y, y, y, u, t, y, y, y, z, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, y, u, y, y, y, y, x, y, y, y, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, x, z, x, q, # U@ - ) ] [ ) ] `@ N$ | %= 2 N$ W@ | | N$ | ) ; [* U@ ; . %= R$ N$ U@ & ", +"y, y, 7' !q.!q.Mp.Op.Mp.Mp.Mp.+' +' Mp.Op.Mp.+' *[ z~ Op.Mp.Mp.[: *[ z~ z~ z~ z~ *[ *[ z~ z~ 9i.|1 z~ z~ *[ vh.ah.*[ z~ xi.xi.e^ *) 9| 9| vh.<{ 9| 9| 9| <{ 9| 9| 9| <{ ]^ ]^ ]^ I/.<{ e^ ^, J$ L$ J$ ]^ 9| I/.=$.I/ I/ L$ I/ 0' J$ 2^ 0' I/ L$ k3 0' ]& 0' I/ 0' = + + BN $ 1) K$ + R@ =[ + L$ + + $= # V@ S$ . $ > > + k) . . $ # $= H= S$ . Wp.k) Q$ ; # = ' P$ S$ . > |* 2) S$ ^ > > ,Q - ; =' ; | | X@ 2 (& Q$ 2 & N$ ^ ] - | ) ] i#.| ^ S$ ] &= 2 Z! 2 ~ 2 2 | N$ /& } *# X@ X@ 7- 2 ] < | 1 ## / 2 { 1 ( < : { ( < *# ~ [ ## } 6 3* Y@ 6- ( ,# 7- 6 Y> :_.6 d ,# N' 3* 5 Y> < 6 W$ a b a 0 6 8 n b i c 0 : ,# L= h 0 a d ,# z: p L= a a' c 9- a h ~# n X$ a 0 a |& `$ s> }& h r n 0 7 e r r Y$ 0- j e h m Y$ r Y$ h -) o h p m `$ p u p G p n Z$ N p u D /# w w 6* q w w D G /# ;) r C D G n! )> F= p D w C u F N C N N G B Z$ }# O@ I A B w {& F= N N G q2 A F= T x I A N= F= N A I I G N x F= O@ w G B .~ n! A m w A G z A Q@ +% H$ 2& J Q@ GK M Q@ a- I G B H$ A I P@ P A Q@ A 8* I I G F= S N@ n! z S 3# H$ z G I I o^ A A I I O J &> Q@ Q@ M H$ H$ P@ P@ I I M A I A O@ 7* O@ N A 8* A N A M I M K@ G G 7* N x D G 7* I F= x P@ Q@ K@ A K@ A x G A z I I z w A 2; G I N 7* I G D w F N I N 2; ^# m ^# C w F C w {& w {& G N G G G N m D D ^# 4* w {& G ^# :# Z$ F @= @= G p m Y$ m t m m Y$ 4* m q t ^# {# h `$ h 1; r a ]& [) r, 6' [) t, y, y, y, y, y, x, y, y, y, y, u, u, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, x, s, s, w, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, x, u, s, t, s, y, y, y, u, u, y, u, y, u, q, [* 2 ] 2 2 X@ ~ ~ > | ~ : ) | N$ | ~ { | ~ ; T@ > U@ ; ^ U@ ^ | 5- ", +"y, y, 7' Mp.Mp.Op.Mp.Mp.+' Mp.Op.+' Mp.Mp.Mp.+' [: z~ Mp.+' +' Mp.Op.z~ z~ z~ q, z~ z~ z~ z~ z~ *[ q, ql.z~ ah.xi.z~ z~ q, vh.|1 Pi.|1 98.$8.*) 9| 9| 9| 9| <{ 9| 9| <{ <{ 9| 2^ ]^ 9| *) <{ ;b L$ 8S <{ 9| 8S ;b l) R@ R@ I/ 0' I/ ]^ ]& I/ R@ *) ]& 0' 5_ 0' ]& I/ 0' # ]& ;b 0' + # + ]& + $ = . + # [* > 2) [* * $ 1* + ;b R@ ' $ . + 2) . $ !, ]& ' & > + $= A; - = & U@ & $ > > * }* S$ U$ > N$ | N$ 05 ; & Q$ U@ Z! ~ X@ & %= S$ | ] J) N$ U$ %= & ; { Z! { N$ 2 2 [ ~ X@ Z! ) | N$ | | 2 { ~ | *# | ( X@ { } { { ( J) $# 4 ] 4 : ,# q> ,# 7 $# 6 1 ( -> { D, /& } d } 6 ># a } 6- 6 7 d Y> 0 k e L= k } ~# ,# ,# W$ !# ~# a j 6 $# 7 L= 0 i {# ,# 0 a O' L= ~# n j a a 6! h c r p o |& n L= 0 a' Z$ `$ Y$ `$ e ~# Y$ ~# o/ r Y$ n h 0- % m h ~# l p `$ D b' /# z ^# D ;= {& /# ^# p `$ Z$ ^# w ^# /# t D C ^# D G Z$ Z$ ^# w G z G N G x x A G G ^# D 2; t G N {& }# N 8* |{ C S C G A ^# I M= N x P@ N ^# I @% #= Q@ z D N x C A N F= }# G w M= A Q@ N@ A H$ N Q@ P@ Q@ P@ I A I A I F= z H$ 8* P@ A z G M I z w {& B N@ n! A S O E$ I 3& S H$ E$ P@ K@ H$ A K@ M@ M P@ Q@ M G #= 1& 7* O@ G A P@ P@ O@ O@ M N I #= M z G A P@ m) N Q@ w {& C C P@ N= w x z w A C N N@ E= A N G B I A O I /# m w b' 2; I w G G I 7* C x A I D x /# C /# N x ^# N ^# V| Z$ ^# {& C 2; m D ^# C C A 4* 4* Z$ t ^# ^# o _# D 2; ^# p `$ Z$ Y$ Y$ _# ,> p h h ^# `$ `$ `$ -) p h l ~# s> e R@ g] q, z, s, z, z, x, y, u, x, y, y, x, u, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, x, x, x, y, y, y, x, v, s, y, u, |) s, 6' s, y, y, y, y, y, y, y, u, H) y, y, y, y, y, y, y, y, s, y, y, y, y, y, x, u, y, x, u, y, u, y, y, z, x, s, u, y, u, v, v, ; ; { { { ~ ## X@ ~ # | [ ] ~ ; ] ' ; %= H= U@ . . > N$ N$ ' S$ & ; ", +"y, y, x, +' Mp.Op.!q.Mp.Mp.Mp.+' Mp.+' !q.Mp.Mp.+' Mp.z~ [: +' +' Mp.z~ z~ z~ z~ q, z~ z~ *[ z~ z~ z~ *[ *[ *[ ah.9i.z~ z~ &[ xi.Pi.<{ 9| vh.$8.*) 9| 9| 9| 9| 9| J$ 9| <{ <{ R@ J$ *) <{ ]^ <{ 8S <{ J$ R@ R@ I/.<{ 2^ L$ 0' (}.L$ J$ jP #S BN V! ]& R@ ]& I/ X! 0' Dv # + 0' 0' $ # # 0' # 0' L$ + + Q$ [* ]& . [* $ V@ [* .( = |* [* $ V@ $ = = ]& . ] . [* V@ . $= > Q$ Q$ %= > U@ & U@ ' H= > ; & N$ ; S$ X@ ; > $ N$ N$ | ; N$ U$ U@ ; 2 | | ] ] N$ g{.) { P$ | ^ 2 ; ] 2] N$ ~ $# | ## ~ { 2 2 ~ /& X@ D, V~ [ D, 6 2 [ 1 *# { ; { 9 N' } 9 { 4 d { } e 6 } ) $# d 9 3* L= J] $# d k ># 0 k 7 3* } b 9 6 3* ~# 7 J] ,# 0 e c d e 0 [& 7 a 7 c L= 0 L= c ~# Y$ 0 6 ~# c L= ~# e c p h ~# n ~# a *= Z$ ~# O' -) {# ~# r y2 `$ 1; % Y$ Y$ `$ w o `$ /# _# c{ C D % h ~# ^# :# ^# m Z$ _# `$ /# Z$ h D ,> w {& ;) D 6* m `$ ^# p ^# G z w S G N t M G F G ^# A ^# D m 5* G N D S N z x N N N {& N A z C C /# M I z N w K Q@ N S P@ A C Q@ z w G w I N I N ^# I z S +% Q@ b- z P@ I @% z I A M b- M @= A I G I ~& G A Q@ P@ }# z M I I A F= z 1& S S A E; M x I A }# Q@ G A O@ A }# G I I K@ M Q@ ` K@ 8* N x G M z Q@ A I P@ b- w G A x m I I N M w N G A K@ O@ w x w z Q@ n! z #= A G {& I G Q@ z x I b- A w F ^# M= z D N /# m b' x D w N `$ Y$ 4* ^# p /# p 6* p /# y m s> G % q `$ Z$ p `$ }& Z$ ^# h /# h r (# L= n o O' s> `$ -) r n o p n o L= f] ^, 6' s, s, s, s, x, y, x, u, z, y, y, y, y, s, s, y, y, y, y, y, y, y, x, u, s, x, x, z, y, u, y, y, y, x, s, u, y, y, y, u, y, y, s, z, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, x, x, y, y, u, z, s, y, y, y, y, s, x, s, q, & ~ %= } | | N$ { | [ { | > | > ~ | %= N$ ; - { U$ R$ > S$ . & ^ | ", +"u, y, z, +' +' !q.!q.8' +' Mp.Mp.+' Mp.Mp.Mp.+' y: [: q, [: +' Mp.Mp.z~ q, z~ *[ z~ rl.z~ z~ z~ z~ z~ z~ z~ z~ ah.Il.z~ *[ 9i.xi.z~ Pi.<{ |1 $8.*) 9| 9| 9| 9| 9| 2! |1 9| 9| J$ 2^ 9| <{ <{ I/.<{ I/.J$ R@ R@ J$ J$ ]& I/ jP I/ BN J$ 0' 0' I/ 0' I/ 0' R@ R@ I/ L$ + # + I/ ]& # # L$ =[ $ 0' + # k) 2) $ # + . > . ' 0' U@ ' . * V@ Q$ $ V@ $ A; > V@ $ . H= > * S$ S$ > ; . U$ > & > ] ] & %= P$ Q$ . ) %= o! | ] ]& ; N$ X@ Z! ~ U@ & & ] ; & ] | & { (& | H= ; T- ; { *# N$ { 2 2 2 { N$ 4 { } 4 d } 5 [ *# N$ { X@ ## 4 [ == *# { ## D, b d 8 d ( /& d d Y@ ( d 7 V~ 6 a == 6 6 / B; g V) } Y@ j c X$ 6 d ~# a ~# g L= ~# e [& c b C; k 8 ,# j g L= {# c k } n m h e 0 $# O' Q{ 0 c a ~# 0< c n 4* L= L= [& n -) `$ m y2 ^# c [& m ,> s> u ^# f r ~# ,> Z$ Z$ 0- Y$ ,> r Z$ r ^# `$ r y w D t h ^# D `$ ^# y C D C ^# C D t Z$ 1; :# {& /# ^# #= % G [# ^# N G 7* N M= C D I I C G B B 7* N m w N I Y N@ G /# G :# I N I A N A G '> {& Z$ /# Q@ Q@ z O@ B N z N N z G I M Q@ A I G A M z z P@ z b' z M I P@ A T^ P@ I z N z #= N w I B w M A G N@ Q@ Q@ P@ .~ M@ M P@ N Q@ o> b- q! m) E$ I S 8* A N K C z N 2; M= x x G A ~& M N w m G I z x G {& A Q@ z G z x N A B I G N B m w x B I w D N x 4* D /# z N ^# b' % m h 2; :# G s> m w `$ :# {& % m D N m G D D Y$ N G ^# m ^# `$ r D ^# p m n Z$ ,> n Y$ Z$ h `$ p r `$ K= L= o `$ 0- e 8 R@ 5' 6' s, t, s, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, t, x, u, z, z, y, s, u, u, y, x, s, y, y, y, y, x, y, y, t, z, y, y, y, y, u, y, u, u, u, y, y, y, y, y, z, x, u, y, z, y, z, u, x, s, x, y, y, y, x, u, y, y, y, u, s, x, x, ], | { *# 2 W@ ~ > 2 | ~ ) ] | & Z@ . ) ] U@ - > (& ] ] & R$ > N$ 5- # ", +"y, y, w, Mp.+' +' 8' Mp.Mp.Mp.Mp.+' Mp.Mp.Op.8' Mp.[: z~ z~ Mp.Mp.[: z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ q, z~ 2! vh.*[ z~ ql.$8.98.5' *) 98.xi.<{ <{ 9| 9| 9| <{ *) <{ <{ 9| <{ 2^ ]^ I/.I/.l) J$ l) L$ R@ G= ;b J$ R@ L$ I/ BN 0' ]& R@ R@ ;b I/ G= 0' I/ 0' ]& 0' I/ ]& # # ]& ]& # # ]& = + + 0' + V@ H= S$ ]& + Q$ [* > + 5- $ 2) > . . > ' 2) $ + > - = > > & Q$ . ' $ ; . $ U@ - + H= ] > U@ & |* S$ ; & ; & - > N$ - ~ U@ . X@ W@ ; *# & N$ N$ ~ Z! ; 2 |* [ | ] 2 ^ ~ > | 2 } 2 H= ) X@ *# F:.) /& ) [ ( $# ~ /& I= /& ( D, $# [{ { /& ## ) / J] 5 d ~ } 4 V$ 7 6 /& 2 3* => / d 1 [ x0 5 *= Y> d c Y> a' 6 q> a 9 ,# tA a a ## *= 7 d c j a ~# ~# {# a' a ~# {# c{ a c e 8 c j s> 1; r c o c ># h p 0 Y$ L= ~# n n L= h h {# p C; ~# ^# _# 0 n D ,> ^# p p }& y `$ w `$ ^# w D D p [# z Z$ w % ,> `$ r r ^# D :, D w `$ `$ `$ :# I N N M= G G p D N {& {& ,! C x M= ^# I C 7* x /# N F w G B B D F :# G )> D A A z B S N G I G w G D A O@ w F= D G x N /# G G G C I A N A H$ Q@ A A x N z P@ N G K@ I G B O@ H M N E; I #] C 2; D N z B E$ I N G A x 8* G A I G x I A G G G S H$ Z$ I z A a- M= D w N N #= K G M= G N I G Q@ N w z x w x N I w }# w % K@ A z I w N F I Q@ G D m N 1; w N B D I D t D :# D 4* G Z$ ^# 2; ,> m y N m `$ q w t G w ^# D Z$ ,> p 4* p _# r ^# p p s> t _# L= n p Y$ m `$ C }& (# `$ n L= h m L= s> 8 R@ 6' v, x, x, 8' y, s, u, z, y, z, u, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, y, y, y, y, u, y, y, y, y, y, z, y, u, z, y, y, z, z, y, y, y, y, x, z, x, z, t, u, y, y, y, y, y, x, x, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, u, u, z, u, J$ ) /& %# [ U@ ~ U@ ~ W@ ) | ) | { N$ ] | S$ S$ $ ; & & ; - ; }* ' . ; ", +"u, t, {q.8' s, +' ,q.!q.Mp.+' Op.Mp.Mp.Mp.Mp.+' Mp.+' Op.z~ Mp.+' Mp.6' z~ z~ z~ z~ *[ *[ z~ z~ z~ z~ z~ z~ z~ z~ xi.9i.z~ z~ $8.$8.|1 *) e^ |1 <{ <{ <{ 9| 9| 9| 2^ 9| *) <{ <{ <{ J$ <{ 8S <{ 9| I/.I/.<{ J$ R@ L$ ;b R@ BN L$ 0' I/ R@ #S BN #S R@ .( 0' ]& R@ 5_ 5_ I/ ]& + = 0' + $ + ;b # Z, = + . ' + ]& + # $ # V@ . 2) . $ # = # [* L$ + . 1* $= $= S$ . = ; %= Q$ P$ ; ; . U@ > > & ! N$ > & > 'W U@ ; H= & %= N$ | > > Q$ N$ { ^ & $ & > 2 [ ( Z@ N$ ] | | ~ ; H= ; P$ .# & ) Z! 7- 1 $# d J= 2 /& W@ { d ,# < *# 6 { ; /& { ~ { 2 $# ,# $# 1 d } ( ## } I= ,# 6 /& a ( e a b 7 a 1 ,# ># d e a d 9 9 $# a ># ,# 6 e 7 a 0 ~# V$ i -# 7 7 9 q> n ~# vk K= n % 7 $# a a s> n _# ~# $# 7 j h h e n e [& L= c C; [& e c % p 0 Y$ h s> Y$ ^# s> `$ ^# Y$ p 1; 4* m h m w y m c Z$ m Z$ /# /# ^# n p Z$ G c{ ;) `$ }& ^# C D M= n! :# N z F= G /# G C ;= D N C C GK ^# /# D Y$ B N ^# I G G A G I w w F= I I P@ m /# I C F {& #= G B t N z z A x G }# A Q@ G I %> b' {& I {& G N x N= A I x A w 7* F= {& Q@ }# F= N N I G ^# E$ K@ {& /# w t )> 8* w I A G Q@ N N M N@ z G I E$ M z I z M I I G I I |{ C #= Q@ N N C I C :# N #= I A N G N M= {& N N w A t :# @% G x ^# Q@ {& /# ^# % G D }# F w :# ^# D w m D Z$ m N ^# G :# p y :# m Z$ Z$ Z$ % ^# t ^# `$ ^# `$ ^# G c D p m p q p c Y$ c p o ]# Y$ m n E, L= Y$ {# 2, L= r r }& m e r h c c p n # 2! +' x, u, s, y, x, y, x, s, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, z, y, s, y, z, x, y, u, u, s, H) u, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, y, y, y, y, y, y, y, y, u, A, x, s, ; ~ ~ [ ) [ | 2] U@ N$ ^ N$ N$ X@ ] ] ] ; S$ Q$ & ] ; > . ' > 2 | %= ", +"y, t, ]q.!q.8' +' !q.!q.+' Mp.Mp.Mp.+' Mp.+' Mp.Mp.+' Mp.z~ Vp.Mp.Mp.Mp.Vp.*[ *[ z~ z~ *[ z~ z~ z~ z~ z~ q, z~ z~ ql.vh.*[ 5o.2! $8.|1 *) Pi.9| <{ 9| 9| 9| 9| <{ 9| 9| 98.q, 2! <{ J$ <{ <{ <{ <{ 9| <{ <{ J$ J$ l) L$ .( ]^ R@ I/ BN BN BN *) <{ V! G= I/ I/ L$ 0' 0' 0' 5_ V@ + L$ L$ # z] + + $ + ]& + # V@ # 0' ]& # # + + + 2) 1) . . = Q$ Q$ $= - # - ]& - (& .( $= |* [* . |* S$ . ; & ; Q$ O$ V@ . Q$ > P$ & & & %= ] X@ - ' ^& T@ & ; & P$ Q$ T- ; & { 2 | X@ R$ > ] N$ U@ | | ; H= N$ S$ ; 2 X@ { /& 1 < X@ { ~ Y@ d ## < 4 2 2 ( ) T- ( $# ( ## ( d 1 / { N$ { == [ d } Y@ b 7 6 $# 6 8 V~ 6 o ( a ,# 0 ># ,# ,# ># c 0- 9 X$ 0 6 ~# a 6 X$ a ,# 7 } 7 8 c a F! 7 2, 6 ~# ,# n i a ># V$ ,# ~# 0 L= h _# s> K= h Q{ c p -) K= ~# L= Y$ L= s> r Y$ h o r z: p 0- h Z$ Y$ h r q [& m D Z$ o `$ r z Z$ C r h p `$ `$ y ^q.t `$ ^# ^# C y Z$ z D C ^# M= 4* N h G {& }# m 4* N 4* C N A ^# C D N A I G N N N V| z q F= N N G ^# N {& I x /# I G /# {& N z I I A A A G N 2; Y A B N G D N x z G ^# /# ^# G F= A G F= G I /# Q@ N F x G q! z w ^# D G /# K@ x G q2 8* E$ B 7* x N 6* G N M z A )> z w Q@ x G C M I N N N z I A Q@ N A N B t B GK D G z w N A D 7* x D G D F= ^# D C w D Y$ G m D A b' N ^# Z$ N ^# G 2; D t q m ^# D C D V| Y$ _# p Y$ m `$ m 4* n^ % C D :# n^ L= t' /# Y$ r p `$ `$ o |& n 1; Y$ }& |& 0 n L= g n C; _# g L= c ~# {# K= *> g~ r, x, x, s, x, y, z, y, x, y, y, y, u, u, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, u, y, u, s, x, y, y, u, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, r, ]& S$ | ~ ) ~ { / ] & S$ ] ] > Q$ ] ; | ] ; ; ; & S$ . > & |* S$ ] - ", +"y, u, x, !q.Mp.8' 8' !q.+' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' +' +' z~ z~ Mp.Mp.+' Mp.z~ z~ z~ z~ *[ *[ z~ z~ z~ *[ z~ z~ q, ql.vh.9i.z~ e^ ah.xi.<{ Pi.*) $8.xi.*) 9| *) ], <{ 9i.9| 9| *) <{ <{ 9| I/.<{ <{ 9| ;b l) I/.<{ 9| ;b J$ R@ ]^ I/ jP BN 9| BN <{ L$ I/ I/ I/ 0' G= 0' 0' 0' L$ I/ * 0' # . # + % }, ]& $ % # + 0' L$ + + . # V@ L$ ]& > . = ]& . $ $ [* . & L$ !, # $ # |* = $ & ; Q$ 2) > o! k) $= [* - = $ - o! (& - | o! | Q$ . U@ R$ U@ S$ ] H= X@ ; > > 05 & Q$ S$ ' > ; ~ ; Q$ H= ^ ; ] ; N$ X@ N$ } Y@ | { *# ~ : ) /& } 8 2 Z! ( 2 ,# } -> I= ,# d 7 $# ( { 2 8- 6 } d N' 9 } 0 ,# i / } 6 k a e b 6 8 7 ,# a ~# ># a {# 0 7 c 0 k ~# i k h e ,# 0 i i n e b ~# a' ~# 8 0 n g ># 8 9- 7 j -# k _# ~# ;= 9- h ~# h h {# K= Y$ n ~# m h % p ~# Y$ `$ `$ Z$ _# Y$ h xE n ]# ,> C; m c `$ ,> G t GK D :# r o Z$ `$ ^# ^# _# c{ /# ;) Z$ M= A F D M= B ^# m Y$ G :# C {& :# G w D p y w ^# z G w G :# ^# x N= /# 7* w #] I w w K@ I Z$ :# N 2; N F= C I z A N N F N F= G x ^# x w G D G 4* ^# ~& D w 6* G w A z I K@ I I ^# a7 w G x B 5* N B w I F= /# I z {& x E= I x N 3# w Q@ Q@ D D x G G x w G I :# D G w I A I D G I {& I w w {& B w N >= w x {& D N G t G t G S C ^# w G 4* :# h 1; N 1; D G D C D E= Z$ p h A t m p y2 % D N b' D h q X$ `$ % 4* `$ ,> w p q 6* ;= b' {& Y$ 4* m p ,> c{ b' {& t h [& h D -) h X$ Y$ {# W$ `$ h n c{ h c o e n h ^ 5' s, H) x, x, s, u, y, y, y, y, y, u, t, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, x, u, u, t, s, s, y, y, y, y, y, y, z, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, r, # ] | ; 4 ) ] W@ S$ ~ ; ^& $ ] ; ; ^& ] ] ^ ; - 2) & . V@ * Q$ * Q$ * ", +"y, u, x, !q.8' Mp.Mp.Mp.8' Mp.Mp.Mp.>q./q.Mp.Mp.Mp.Op.Mp.Vp.z~ z~ Op.Mp.+' [: z~ z~ z~ z~ *[ *[ z~ *[ *[ *[ z~ z~ z~ 9i.vh.*[ *[ 9i.2! |1 Pi.|1 xi.xi.<{ <{ *) 9| <{ *) 2! <{ 9| <{ J$ 2^ <{ 9| <{ 9| I/.;b ;b L$ ]^ R@ J$ J$ J$ R@ I/ I/ G= I/ G= ;b I/ L$ ]& #S ;b J$ 0' Z, ]& K$ + = # `Y # .( R@ # L$ 5_ # . + $ $ . . Q$ S$ |* $ ]& > # # . V@ ]& = |* . + # ]& + !, = > |* H= + . $ & & ; ' ; R$ > S$ Q$ > . o! > $ = . | U@ > ; | . ] ; & S$ | =' ) ^& U@ N$ { ) U$ %= ) ~ S$ ~ [ N$ & > | { ~ [ 7- 2 [ *# J= &# 4 1 5 { ~ ~ 05 { } } 5 { ( } } ( { { { 2 ( => D, G9 ) 5 Y> d 7 Y> d 0 a Y@ e < 9 ># ( V~ ,# 7 ,# M' 0 4 7 b d a 8 a 0 0 ,# o e 8 j e a h L= Y> a 8 L= [& ~# ~# o n n ~# 6 n X$ L= ~# X$ ~# C; c L= A~ Z$ c s> C; c ,> o p h ~# m o ~# C; n p n n `$ Y$ p r p /# _# D D; w `$ w r /# q q Y$ Z$ `$ /# C p w y G D G z N :# ^# D ^# D w D 4* ^# Y$ p t ,> C C C w G 4* G ^# {& ^# }# {& m z N ^# C C w C Q@ G {& M= ^# m w w D t G q C w x G G z B ^# I /# I E; A z A W) z I z w F= F= N A z G N= z G I N P@ I F= I O@ {& G B G N N I N= N %/ N x A G A }# w :# ^# % C x w x /# B F Q@ D q I G x G E; H$ A {& {& >= w I @% w x D w B D :# Z$ m C Y$ }# D w y I I ^# G p h p Y$ p m D ^# N p D w 4* C `$ O' Z$ `$ G D L= D ^# ^# -= Z$ w t 4* p C `$ 1; n ,> m 4* r e c `$ }& Y$ L= ]# % c 0 e o |& p % h L= a ># 8 j c _# ,# ;# 5' r, x, s, u, s, +' w, z, z, x, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, x, u, u, A, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, z, y, u, u, u, 6' Q$ N$ ~ { ) U$ U@ S$ U$ # N$ . ; N$ ; - ; ] N$ ~ ; U@ . S$ & & . & > T@ $ ", +"y, y, x, !q.+' +' +' +' !q.Mp.Mp.Mp.Mp.Mp.+' +' Op.Mp.Op.z~ z~ z~ Mp.Mp.Mp.[: e^ *[ *[ *[ *[ *[ z~ z~ z~ z~ *[ z~ z~ z~ vh.z~ z~ z~ 2! 9| e^ Pi.98.ah.2! e^ z~ 98.9| 9| V! *) 2! *) <{ <{ 9| 9| <{ 9| <{ J$ <{ L$ ]^ L$ I/.J$ G= I/ I/ #S R@ L$ I/ I/ L$ R@ 0' 0' I/ L$ Z, = 0' $ # 1) # # # }, k) # = ]& + + J$ % + V@ > = $ 1* ]& $ $ |* T@ 0' ]& . *' P$ ; # > H= > > Q$ $ - $ . > Q$ ' U$ - ; > %= > N$ Q$ > !, > U$ ) | Q$ ; & > Q$ | X@ ~ > ; & =' ~ ; H= | 2 N$ ~ | | [ ~ | H= ; %= X@ ) 2 { ] ) { => : [ D, / { ~ ( 'W 2 ( ## 2 } ( 7 ,# { 7 ( 2 3* [{ /& *# } { $# 5 /& Y@ q> 4 d ( 5 d $# 6 7 Y@ 2* $# 0 ~# 6 ,# a i 8 a /& 7 } 7 &# == g e a d ># n 6! e b 0 e -# 6 2* 6 V$ o 0 g j h W$ n {# j a $# L= ~# `$ ~# g e g ,> c n 2, n o h ~# l r n y r [& K= ^# 6! (# ^# :# q 4* `$ h l s Z$ t `$ p D `$ q _# {& t Z$ p y `$ p f^ C G ^# D 4* p r h 4* 2; Z$ _# ^# ^# p G :# p /# A m ,! M= {& G w w w F r D D G M= t G I C G B G m t G G q2 N= z w N@ N G M= N A I M Q@ w b' A N m D 4* H$ G G w G {& W) I G G B G I w z G I N= z w Z$ w /# t G w G G N N F D w w }# z % y G G x M= {& w A A :# t A I N N m y w A I @% G m n D N N I N w x C {& G ^# N w G N G p m C G w D 6* G w D D p G M= `$ 1; C ,> /# Y$ f^ B w I b' 1; m p `$ ^# D Y$ ^# Y$ D p e h q `$ 0- m L= o a K= e n _# K/ r e n e n a !# 0- a e ~# b :& X$ 6- a A~ 1 *) q, x, x, s, s, x, u, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, u, y, u, u, y, z, y, &[ | | | N$ X@ S$ %= 2 ~ | N$ ] ~ | |* N$ S$ S$ S$ ~ $ . S$ . > > o! > & N$ }* ", +"y, y, z, !q.8' Mp.+' +' !q.!q.+' Mp.Mp.Mp.Mp.Mp.Mp.8' 8' 6' z~ z~ Mp.+' Mp.+' z~ z~ z~ *[ z~ z~ z~ z~ *[ z~ *[ q, z~ *[ Il.ah.*[ z~ 9i.xi.<{ e^ 9| $8.$8.<{ 9| 9| <{ 9| 9| *) e^ *) <{ 9| 9| 9| I/.<{ <{ l) <{ <{ R@ I/ J$ l) R@ BN L$ BN I/ *) 2^ ;b jP R@ 0' 0' <{ jP ;b 5_ =[ + K$ # + K$ # + 0' L$ G= V@ [* + # . + + + # = > + # 0' $= $= + + # # !, ]& $ > k) 1) $ |* 2) S$ $ ' $ U$ U@ %= ^& U@ U@ & U$ ] + . > N$ Q$ > ] & ] > ; > Z@ ] Q$ Q$ - I= ] & Q$ H= ; 2 N$ ; ~ ) Q$ R$ ( N$ [ ] | ) X@ N$ | Z! ^ 05 8- ) d ~ { 4 6- 2 /& 5 { 2 ] ) 1 ( ## } } == b a ) /& } 2 == 6 d 2 d ~ 5 $# / ( } 7 6 a ( $# d ## 5 ~# } *# a a 3] $# j 0 8 -# 6 c a' ~# e c {# }{ 6 ,# 7 3* c 7 $# 8 i L= X$ h f [& Q{ k e e ;= tA 2, c o c n 8 h L= p n^ ~# Q{ h c Z$ n e `$ o 0 h p ~# n Y$ `$ 4* ,! Y$ h o Y$ q (# m u m X$ ]# _# ,> D W$ q :# y p r p Z$ p G p G p `$ D h Y$ `$ y ^# `$ t `$ `$ D M= C I C m D <, I G G D t D G D M= C C D }# t D ^# -) w w /# G F= Z$ ^# A G z A A 2; w I p 4* {& %/ w {& /# ^# N x ^# G /# 2; w z /# G z G D I I <, m I m) F= w w G %> N N A D :# N I ^# G I A /# G N w `$ % G C {& B F D G C I z D D m B N z #= B /# }# I N N ^# /# z 4* w t w /# w G B Z$ Y$ 6* 2; Z$ w {& t N z G q (# s> 2; ^# D {& D o p 4* ^# Y$ m m s> `$ Z$ (# }& p p D Y$ t 0- e Y$ c Y$ 0- Y$ c Y$ `$ Q{ X$ g Y$ a o c `$ Y$ }& c s> X$ 7 0 6 ~# g c a g j s> # x, x, x, s, s, y, z, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, z, y, x, z, y, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, s, u, u, x, s, 7' v, J$ | H= S$ & [ ; ~ [ S$ N$ ; & ; ] & Z, ' Q$ ; ' . ; T@ > ~ ' | A; |* * $ ", +"y, y, u, (q.(q.Mp.+' Mp. q.!q.+' Mp.Mp.Mp.Mp.Mp.+' !q.+' +' [: z~ 6' Mp.+' +' +' z~ [: z~ *[ z~ z~ q, z~ *[ z~ *[ z~ q, ql.vh.Xp.*[ z~ 2! |1 e^ <{ |1 vh.|1 *) *) <{ <{ *) 9| <{ <{ <{ $8.9| ]^ <{ 8S 2^ J$ <{ I/.R@ L$ .( J$ s' jP BN J$ I/ I/ L$ L$ [n 0' R@ ]& J$ 0' R@ 5_ I/ ]& + # #S + # K$ L$ k) # = = 0' % $= [* + + > @ # - + 0' . V@ $ L$ + # $ $ $ R- . Gc $ V@ o! > ^& S$ $ - . S$ ] ; & S$ ; > . [* Q$ %= Q$ R$ T- ; N$ . U@ S$ ~ { ; ' ^& ; . ] - S$ & ; > ] ] | { | ) & ] U@ R$ N$ R$ *' N$ 4 T- Z! ;# [ 1 ] [ d 1 ~ ;# | [ $# < ) | ## d /& / 6 b /& } 5 } V~ } } 5 $# Y@ 0 a } 6 3* 6 $# 6 8 6 ( 7 ## k } q> k c k a D, a d ,# a &# g 0 ~# ~# $# c 7 ~# ,# *= c i i o a c V$ h n 9- e 0 $# a j 8 ,# i a `$ a' {# j C; !# g c ~# L= h [& 0 l o ~# c h [& h j c h Y$ :# v e h `$ `$ _# `$ m f^ Z$ ~# n r y _# ^# p m n (# O' M= /# ^# :# :# h p F= /# ^# D `$ #| p Z$ <, n^ :# `$ ^# F m 4* j~ }# D :# G `$ D Z$ w C M= w {& G C Z$ D w C ^# :# N 4* x I B y N= O@ N M= w C /# N D N w :# Z$ m G b' ^# D m m `$ z ^# {& /# /# G m B G z G D G I D % 1; D 2; B I G A N ^# C 2; C t D M= b' D `$ y M= M= :# A F Z$ N@ C w N C /# &> D w G C D G B I w G D `$ G 1; D C D I % {& m C G m m 4* w ,> q :# m G t w ^# -) `$ GK `$ D D h p /# :# m ^# ^# E, m }& ^# Y$ C; A~ l t ^# Y$ Y$ C; h a' p q c ~# _# C; Y$ o ~# p 0 f j L= X$ ~# n 0 `$ '# c 0 c q> 7 8 e o T@ q, =) s, s, s, u, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, z, u, y, u, y, y, y, y, y, z, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, y, u, y, y, y, y, y, #' u, u, s, u, 6' $ & H= > U@ | Q$ 2 ~ ; | ; ] N$ R$ N$ . T@ P$ ; . Q$ ] S$ & Q$ . $ $ Q$ ] ; ", +"y, y, u, 7' 7' !q.Mp.+' Mp.!q.8' +' Mp.Mp.Mp.y: +' Mp.Mp.Mp.+' q, z~ Op.+' Mp.Mp.z~ [: r, z~ q, z~ z~ *[ *[ *[ z~ *[ z~ z~ |1 |1 *[ z~ Ip.q, z~ Pi.2! vh.vh.2! *) <{ <{ <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 9| <{ 8S J$ .( L$ <{ I/.<{ *) R@ BN ;b BN J$ I/ I/ L$ L$ I/ I/ L$ 0' = I/ 5_ K$ I/ ]& 5_ 1) # Z, K$ # = 0' T@ & k) ]& [* > T@ $= ^& [* p9 1) + ]& # V@ V@ Q$ + - > . . > $ . ! U@ = & $ = & & ' V@ {c U@ . . ' ! . Q$ U@ N$ Q$ ~ U@ ] H= ^& - * $ & $ ~ & . H= ~ 2 | ] ~ S$ ; ^ ; %= | X@ ; ] ; R$ 2 ( [ 2 X@ X@ U$ ) == *# ) d 2 { [ 2 N$ | } /& ~ [ ,# 6 6 6 /& X@ ( 4 *# /& { # a d ( { 6 1 : == $# 6! 6 7 `@ ,# 7 L= [{ b e c ~# V$ 0 ,# !# a 7 $# q> a 7 {# k g e 9 8 $# 0 e e } $# 7 Q{ e _# A~ 7 0 h o *= ,# ,# r i ~# 0 xE n h n a a !# W$ c o C; h r h z: `$ r p Y$ n p }& a p c ]# q r /# `$ h Y$ ^# r 1, m <, Z$ ^# `$ D ^# w p y `$ `$ o m p m n p y w j~ `$ D Z$ G n^ `$ ^# t m `$ C ^# N y N C /# D w ^# G t 5* 5* F q ^# D b' w N /# m 2; :# t ;= )> G M= w }& D @= w z F= b' ^# `$ G C /# m r 6* M= N % t F w m 2; O@ G q2 N G w F= D w G D t w C D )> <, w /# ^# I M= D G ^# C % B /# m D t D D D t 1; :# ^# w D `$ D -= V| m {& I N K N 4* m C 4* q D Y$ s> t ,> /# Y$ Z$ t 4* ,> 4* `$ 1; t ^# ^# {& ;= `$ /# m z D p m 4* (# p h -= L= 1; t p /# F m p h Z$ r ^# ]# ~# 0 C; e A~ c r 9- c c n o c L= n 8 j n A~ o n [& ]# o e k c j K= K= &# 7 ;# 2! 6' s, s, z, x, y, y, y, z, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, t, y, y, y, y, x, s, v, x, v, + N$ S$ `@ | > S$ P$ ] Q$ H= . ; & U@ - - U@ U@ & %= > . Q$ ' # & S$ S$ {c S$ Gc ", +"y, y, y, 7' 7' _q.+' Mp.8' 8' !q.+' +' +' Mp.Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ Mp.+' Mp.q, z~ z~ q, z~ z~ q, z~ q, z~ z~ *[ z~ *[ .q.Il.2! *[ *[ z~ *) Pi.e^ $8.xi.9| *) 9| 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ I/.<{ <{ 9| <{ J$ R@ J$ 2^ <{ jP <{ ], 2^ J$ BN 9| G= I/ I/ I/ 5_ I/ I/ 0' I/ 0' 0' K$ 5_ I/ 0' * # + # K$ L$ 0' # ), [* ]& ]& V@ + > ]& 1* [* $ $ - . . # $ ' V@ U@ . $ > ] S$ ,Q . . X! = . [* $ & S$ U@ H= R$ & ] S$ 2 2) N$ U$ ; N$ ' Q$ S$ %= U@ U@ - $ ~ > > ] ] N$ > X@ ~ P$ ) ~ o! - 5- U@ & T- X@ ; P$ { ~ # { 2 7- W@ ( 1 [ D, V~ { ; 7- ## X@ ## 5 ( ( ; U@ ^ ## X@ { { ) } [ X@ ~ 4 ) ,# 6 } < 6 } e ## a 6 &# ,# [ $# 6 0 &# a } ,# 9 $# b $# 7 e e a ~# 0 ~# } b i $# 5 a e k $# q> ,# *= b 6 M' e i j c p g -# ~# e e *= ~# n L= 8 e |& X$ 0 Q{ c 9- L= o g h p ,> r 1; p p |& a % r h ^# O' r `$ ^# q p h ^# p h r p Z$ :# `$ z `$ O' D C `$ D I B m t y D m m Z$ w G G 2, D N N D q p D GK N ^# :# 4* Z$ G {& C ^# -= {& C ,> D `$ Z$ 4* D ;) m V| D q D D w 2; G B 4* B G w C B w m t ^# /# G m <, ^# :# 4* w 2; G G z )> I G G C G `$ Z$ ^# ,> G ,! x ^# w /# N= C :# N ^# w D /# M= z B u w w t m p G M= C D -) Z$ `$ C Y$ w ^# Z$ z :# -= Y$ G w G D % ^# 1; % C L= `$ m -) m G w t h p t :# 4* p p % N C; w Z$ a p 9- s> `$ p n % n `$ ~# tA u % Y$ L= L= m s> n n n &# b A~ ~# 0 n a 8 ~# `$ g o c r p e 0 n L= 0 i a L= 2, o g 0 b V$ a 7 *= &# ] 5' 6' v, u, z, v, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, s, u, y, y, y, y, u, x, u, =) - ^ ~ ] ~ ; U@ U@ P$ | ~ ' ; & S$ & - ; . ; - - # # T@ * U@ - . + > ; ", +"u, y, y, 7' !q.!q.!q.8' 8' y: Mp.Mp.+' Mp.+' Mp.!q.Mp.Mp.Mp.+' !q.[: z~ Mp.Mp.Mp.6' Vp.z~ z~ z~ ah.z~ z~ *[ *[ z~ *[ ql.*[ ah.|1 ah.z~ z~ |1 $8.Pi.)~ |1 xi.$8.)~ *) 9| 9| <{ <{ 9| 9| <{ <{ <{ J$ J$ 9| 2^ <{ J$ ;b <{ 2^ J$ <{ <{ J$ )~ BN <{ R@ BN G= I/ 0' L$ + L$ I/ L$ 0' [n 0' 1) # 5_ = # # = + 5_ . = # $ ]& # > . $ > 1* + = $ + $ + ]& . V@ - > . $= H= . ' - * $ U@ ; + $ + > ; H= |* %= Gc & ^ *' > > %= > & & T@ ; `@ ; ' ; ; H= Q$ ; ; U$ 2 ] ' & P$ ; & U$ & ; W@ 2 N$ ' X@ | ; ; X@ 'W | *# ~ { ~ | ) ] 8- { } } ( 2 ;# Z! ; ) [ ) | } g{.} D, D, N$ 1 ,# 1 3* 5 1 a d ,# [ ># } } Y@ ( 6 6 a 7 ,# 6! $# 7 6 8 d a' ~# a 7 6 b / 7 6 a ~# c d c } a c c g 8 7 e 2* ~# {# 8 E, n 9- ,# |& j e c 0- n [& `$ |& g ~# j ,# f h Y$ X$ |& _# r o Z$ r o X$ r c 6! O' Y$ h s y r y h q r r r h n ^# r `$ p :# {& `$ G 2, u p D Z$ m C `$ w D D s> p p Y$ 4* D w t p D M= D 2, D w :# y 5* p Z$ ^# u t m 4* p `$ m C t 2; Z$ t 4* r G ^# ;= ^# )> B ^# w /# s> M= D D D m m w D Y$ :# w /# G p m ^# D [# w w D G M= C G ^# D 4* m w % G G F N C C :# t Q@ N G :# C w Z$ `$ % m t `$ :# p G I `$ p u u p (# m `$ G `$ }& p p m w `$ `$ ^# `$ `$ t D p _# N 1; p 5* C ^# r Z$ 9- :# b' m Y$ ,> m p _# n 0 Y$ `$ h Y$ g o n p ,> p h Z$ |& &].c A~ Y$ `$ ~# |& 0 h h `$ `$ `$ ~# n p Y$ 0 *= c c o 7 {# a e 6 b V- 6 a a g 7 ># 8 &# a i { < ], v, s, v, t, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, &[ ~ X@ | ] W@ ~ | ^ ; S$ ] > > ; > U@ | Q$ Q$ S$ S$ * . = . ] . > . T@ * * ", +"y, y, y, q.Mp.,q.8' !q.Mp.+' 8' 8' 8' !q.Mp.+' 8' Mp.Mp.+' +' 6' z~ z~ [: Mp.Mp.+' [: z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ vh.*[ z~ 9i.rp.z~ z~ vh.vh.$8.<{ e^ xi.ah.2! <{ 9| <{ <{ 9| 9| 9| *) <{ 9| J$ J$ 2^ J$ <{ J$ L$ .( l) R@ <{ I/.R@ <{ J$ R@ I/ BN BN ], L$ I/ I/ jP #S jP 5_ :q.= # # J$ L$ =[ # # # # + L$ + # . [* $ $ # V@ . V@ # 0' }, > 2) $ 1* S$ # # - . . $ $ & * - - & + - $ S$ S$ . & & ] ] S$ ]& & N$ Q$ $ S$ Q$ & S$ b{ . - }* $ $ ; ; N$ > N$ ; ) & U@ | P$ U$ & { & 2 & | *# 2 U@ { ~ R$ T- ~ ] ) ) { W@ ~ ~ Z@ /& [ ( /& ; ## ; ; 8- W@ $# d 2 7 } Z! 1 3* *# | d d $# /& ) { a D, { 7- X@ 6 / 1 $# B; ~# ,# / Y> &# ~# } &# 6 e a $# ,# d a e 9- 0 j 7 n 0 7 e 9 6 ,# q> c j 6 o a ># g L= ~# n 7 a' Q{ ~# {# e ]# n O' L= i ~# h c 2* j c C; ]# p `$ [& W$ r h c r s> h 1, u n _# p C (# Z$ ^# c j s> 1; r :, c }& _# Z$ <, (# /# D Y$ Z$ 1; q Z$ 6* p I ^# ^# /# ^# r Z$ /# x w N ^# _# `$ p t D Y$ t 4* `$ p m t :# D p 2; m G G D t D C ^# y2 t D :# /# `$ p w N ^# Y$ `$ C D D G C ^# m {& G :# N /# N % I m G `$ D D n ^# (# z 6* 1; w C D D {& {& {& :# Z$ C 2; z y x ^# 4* G x I :# ^# ^# q ^# GK :# y N B D ^# q :# N= w % m w m C ^# t % {& y h p `$ `$ Y$ ^# p y 4* ^# 4* ^# ^# n^ `$ :# (# m p V| 2, h Z$ ^# s> n L= Z$ ;) h 6 e h h c p p |& L= l p ]# p h n s> Y$ Y$ o Y$ s> L= n n n i a 9 j V- V- 8 V$ n c o ~# 9 7 ,# k 0 2* a a i b 7 6 e e $ 6' v, s, x, y, s, v, u, y, y, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, x, z, y, y, y, y, y, y, y, u, z, y, u, y, y, y, y, y, y, z, z, z, y, y, y, y, y, u, y, y, y, y, y, y, y, u, u, u, *) N$ ] ) | N$ ] ] ~ ' ~ ; ; S$ - ] ; ] ; U@ ; S$ $ U@ & ]& ; # ' * * = 0' ", +"u, y, y, 8' 8' !q.,q.8' Mp.Mp.8' ,q.8' Mp.+' +' +' Mp.!q.Mp.Mp.+' z~ *[ z~ Mp.+' +' [: *[ q, q, q, z~ z~ *[ *[ *[ z~ .q.&[ z~ z~ Il.|1 5o.9i.vh.|1 $8.Pi.9| |1 xi.|1 9| <{ 9| <{ 9| 9| 9| 9| 9| 9| 9| <{ <{ 2^ J$ |1 <{ J$ R@ ]^ <{ L$ I/ 2^ ]^ I/ I/ G= ], J$ 0' 0' 0' 0' I/ L$ I/ 0' + + K$ ]& L$ * # 0' + ]& J$ = # # k) + 0' ]& # ]& [* $= = = 1* V@ # # E! > . V@ 0' & [* $ ]& # o! V@ S$ 2) . }* }* > S$ H= X@ N$ . > $ . $= o! > U$ ; ' ; ; & H= %= %= Q$ `@ ; = # - H= . [ & P$ ; N$ ( ] ^ ~ N$ U@ | *' ) { 2 X@ W@ ## X@ ^ ~ ) { N$ 8- *# N$ ~ < Z! *# < [ ~ d { ~ < [ 1 4 2 b ( X@ X@ ~ ## 4 < d 2 1 1 &# : /& [ : 1 9 $# M' b : 8 a $# $# g b 7 &# 6 6 $# ># g $# 7 $# ,# L= ]c a 7 ~# ~# e e o a a 7 o c [& 6 a c a 7 e 0 !# 7 0 e c p W$ !# 3] h 8 c h e }& s> h e L= n O' p h h c h 0- 0- _# r Z$ p `$ Z$ _# o c ~# a n ~# }& }& _# Y$ -= p (# n O' `$ h 4* 2; 5* p D `$ t 4* ^# G ;= Z$ G C C; 4* ^# x q `$ 1; w K N 1; Y$ s> s> _# ^# D y G N D GK t G x /# m w ^# Q@ ^# n C C D `$ :# ^# N {& /# m w 4* 2; t p t N G N `$ `$ 5* z % n `$ G G G `$ ^# /# :# 4* Z$ w I ^# % _# m D w b' ^# m ,> Z$ ^# D C -= _# ^# n^ w M= D `$ m j~ Z$ n^ s> r `$ q Y$ ^# ^# h D {& % % Y$ h n^ Y$ u ]# {& Y$ q ^# q r s> Z$ p m C; ^# 2, `$ n h o A~ c -) p w % _# 1; n Y$ [& c [& m s> ]c p n h Y$ p r ~# c 0 n ]# p ~# ~# e *= 0 a g p c 2* a 6 V$ ~# ,# e L= 7 o j ~# h e 8 b 7 8 ~# 6 j } > ^, v, s, y, u, z, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, s, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, y, 2^ > ] ^ > { ; Q$ | U@ S$ > . S$ ] ^ ; > ; ' ; ; (& S$ . & & & T@ Z, * - * ", +"t, u, y, s, +' !q.8' !q.+' +' +' 8' Mp.Mp.Mp.+' +' +' [) Mp.Mp.Op.Mp.[: [: [: +' Mp.[: z~ *[ z~ z~ *[ *[ z~ *[ z~ z~ Il.*[ *[ *[ ah.vh.ql.*[ z~ xi.xi.Pi.e^ 9| $8.2! *) 9| 9| <{ 9| 2! 9| 9| 8S 9| *) J$ <{ J$ <{ 2! ;b ;b R@ R@ L$ I/.9| ]^ BN L$ I/ ;b *) I/ p9 R@ L$ 0' I/ <{ L$ I/ 0' 0' 1) = + 5_ # = ;b J$ K$ L$ = 1) V@ # > ]& + . p9 + . [* 0' [* - = + # L$ M$ $ > + > $ & $ U@ . . . & S$ . & ; > S$ Q$ > %= P$ ] > * H= H= U@ U@ [* # > %= U@ U@ Z! ; ; . ; Q$ Q$ ; | | S$ R$ | ~ Z@ | | & U@ ^& $= ] ; | X@ N$ $# X@ & ~ N$ [ [ ~ +# ^& { X@ [ /& /& < | ) } 2 [ W@ { ,# ( V~ { 7- Z! 4 d W@ / 1 2 { 5 e d ,# ,# } Y@ } 6 [ / 6 k < $# 9 $# a ,# d 7 $# ,# Q{ h a 7 j d $# -# -# V$ 7 a 7 a 8 8 n ,# 8 7 e C; a i e a 7 n ~# 0 7 e {# f |& s> 7 ~# c o W$ 0 }& h n '# 6 a C; [& [& h ~# h X$ Y$ n o c r p ^# h o o L= X$ n c{ y p h r h h p Z$ ^# ^# % Z$ Y$ ]# r r C ^# `$ D r h ^# M= h Y$ % G D D ^# ^# M= `$ G Y$ s> D Z$ h C {& ,> ^# p m D ^# /# F m Z$ :# m ,> r w % M= ^# D t Y$ /# ,> w m `$ Y$ 0- G % N D % /# p m D m p `$ Z$ ^# `$ m ^# D /# ^# `$ `$ % /# Z$ L= ]# p ,! D `$ C Y$ -= }& `$ t C p o m m 4* ^# ^# Z$ ^# q ^# Z$ 2, Z$ 2, p 1; Z$ 4* t q o/ D :# ;) D D m ^# p Q{ L= n % ^# n Y$ r `$ Q{ o X$ c 4* `$ p p Y$ p e Y$ Z$ p h n n h % Z$ s Y$ c p 0 L= p |& g 9- 0- e {# c n Q{ n 0 o 0 0 ># 0 o {# a 8 j b V$ ,# ># a 0 C; ~# r L= [ 8 == ,# a ~# ( a } ; v, s, z, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, z, y, y, y, y, y, y, R@ & | ) ] H= ; ; %= ] ' ^& U$ ; ~ > . # * - ; U@ {c & = - = . pH # * # = ", +"t, t, u, 7' +' 8' !q.7' Mp.Mp.Mp.Mp.!q.Mp.Mp.Mp.+' Mp.+' Mp.Mp.Mp.Mp.Mp.z~ *[ Mp.Mp.Op.Vp.*[ *[ z~ *[ *[ z~ z~ *[ z~ *[ *[ *[ z~ z~ vh.9i.*[ ah.ah.$8.Pi.Pi.*) Tp.9| <{ 9| 9| 9| <{ 9| 9| 9| |1 <{ 2^ J$ <{ <{ <{ 9| p9 <{ <{ 2^ 2^ ;b p9 L$ ]^ <{ |1 BN BN 0' [n I/ I/ 0' I/ I/ I/ I/ BN 1) # X! L$ I/ # L$ = + ]& L$ I/ <{ 1) $ + # ' + # $= Q$ ]& = . ]& $ # + # k) > > ]& V@ N$ > . Q$ - $ o! Q$ ; =' > + H= $ Q$ Q$ ] ' - Q$ H= ] - | $ $ U@ b{ ] N$ Q$ ; ^ ] = & - Q$ N$ H= N$ 2 ] Q$ | | U@ + P$ / { ; U@ ~ | 2 2 | 2 | X@ R$ [ U@ 7- ^ ~ 4 4 Z! /& N' $# } 2 *# { ## 2 { N$ 7- 5 ~ } $# ( f] 1 ## } < D, 6 +# Y> 6 6 a a b ># == $# $# 9 ,# } ( Y> 6 $# ,# [ d e i ,# ,# j } $# 8 6 o b i n !# e o e i a e {# ~# g 0 7 8 6 e a ~# f n ~# e a 3* V$ e L= ~# h n c ~# c *= e e Y$ ~# j Z> r L= e c L= F! r l `$ h `$ c r Y$ o `$ p /# !# h r Z$ D 2, ,> `$ `$ `$ Z$ p p o r 0 r Z$ p r y n :# Z$ h ^# D ,> ^# w ^# D (# p `$ p `$ C n w t Y$ Z$ 6* D q m m t D D p % }& p 4* ^# N ^# m /# m 4* m ^# 4* p -) ^# >= m s> C p n D Y$ p Z$ w 4* {& `$ b' /# C m p! % F ^# `$ m h 6* ^# m D s> t F `$ w t p w m r Z$ % n ^# Y$ r h h V| 6* m E, p D n^ y Z$ Q{ n h s> D V| h 1; `$ m ^# t n p V| `$ p ~# {# j `$ ^# C; p 4* n^ q 2, o p s> h `$ c m g K= o ~# Y$ }& ~# c o h s> h c n ~# Y$ c p s> L= n c g 0 h [& 0 9 V$ e 0 6 g 8 6 c 7 n e 6 ~# 7 9 k B; ># == ,# 0 b V$ 7 6 ~ 6' g] v, x, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, A, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, u, u, =) y, y, y, y, y, u, y, y, y, y, y, y, y, x, x, z, x, y, u, y, y, y, y, y, y, w, . & - | | & & & V@ & > | ' & . > . ; U@ & U@ . + > . * . ; Q$ . . Q$ & ", +"t, t, u, 8' Mp.Mp.!q. # > =' S$ & #^ |* S$ $ > $ $ Q$ . > > & & ^& Gc S$ - & = T@ & X! $ Q$ - S$ }* $ * Q$ %= + S$ ; o! ' S$ N$ Q$ ~ 2] | | - k) Q$ ( ] N$ Q$ Z! ; ~ ~ *# ## Y@ 2 5 J= ) [ ## X@ ~ 9 ## N$ V~ | | ) { W@ < } 1 1 1 2 [ 8- | } # b 6 9 9 [ ( 7 } Y> 7 } d /& i } ## 9 $# a 7 e N' a ># 6- 9 9 : : d L= e 8 &# :& *= a 6- ~# k h 6 < b } ~# o a 7 b b d V$ C; L= L= ~# ,# C; 7 {# 0 ~# q> V$ e Q{ n a c c X$ X$ h ~# 9 *= n p o ~# h >> c ~# c{ `$ r `$ p o e K/ a _# m _# K/ m p C p s y l L= 0 q p 4* r 0- m Y$ Y$ p (# `$ /# p t Y$ m `$ Y$ n <, D 4* `$ 1; D N /# D `$ 1; p L= Y$ p M= n ^# B V| ^# ^# 1; t `$ (# 4* /# t h ^# D ^# V| D :# |& p Z$ (# ^# G % ,! h p p h @= u D 1; `$ ^# Z$ t ,! Z$ r ,> ^# g r h `$ {& 4* m ^# s> p Z$ % ^# w ^# :# m r p D p Z$ n !# h r c{ ^# Z$ m c Y$ n r o p E, ^# p ^# ^# m Y$ -= n p r s> Y$ p n Y$ D h [& Y$ L= Q{ y Y$ ^# m o W$ n Y$ 4* p n h Y$ q :# ~# ,# p L= a L= 0 }& Q{ n W$ e p q c c a p 2* b ~# A~ i a b ~# i o E, 6 a 6 c V$ 7 X$ e a 9- ,# 7 ,# 6 b e ~# =# $# V$ b } r, s, s, x, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, z, t, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, t, 6' . ] ] ] S$ | ; ; . ; H= X@ ; & S$ & ; . Q$ $ > * $ > Q$ . - - * Z, . ' > ", +"t, t, u, 7' Mp.!q.8' ]q.8' +' y: +' !q.Op.+' Mp.+' +' Mp.Op.Mp.+' !q.Mp.[: *[ [: Op.Op.Mp.[: *[ *[ z~ *[ *[ z~ z~ z~ *[ z~ *[ *[ z~ vh.vh.9i.z~ 9i.|1 98.)~ 9i.9| 9| 9| e^ <{ $8.9| 9| <{ <{ 9| I/.*) *) <{ <{ <{ 2^ <{ ]& I/ R@ ]^ J$ L$ <{ 2^ *) jP L$ R@ 2^ <{ I/ I/ I/ 5_ p9 #S I/ I/ I/ I/ # ]& 0' I/ # + R@ G= ]& # $ ]& E! [* = ]& # > # + + + = # > . = # $ > H= - U@ $ 2) S$ > o! . S$ o! & S$ - & }, & $ 0' # . Q$ ' & $ {c > ^ & Q$ # . & & %= & = ^ ; S$ %= U@ H= ; T- ; | ; T@ S$ ; - Q$ | N$ | 2 & ' 2 d [ { 2 [ 5 4 { 2 Y@ [ 2 ( ( | => 2 R$ /& ~ 2 [ 6 $# d 1 ( { 5 ( ( | ( [ ( D, %# 6 ## 9- a *# $# } < 4 6 d j / 1 8 6 ( b i <& &# k 7 %# &# 7 o b 7 6 [& L= V- 7 9 6- J= 6 *= $# e i e a e ~# L= i 8 6 k n i Y$ *= ,# e a i c e c n a E, o `$ 6! g e b o 0 r 0 C; ,> o h s> n n n t p ^# [& 7 Y$ h 8 r :, p 2, ;) ^# Z$ h Y$ h `$ h p y Y$ u :# m c p p `$ `$ p 4* _# (# % r q o -= % <, r s> p % t D 6* Z$ p |& `$ N m ^# m p! Y$ Vj L= D Z$ r m m ,> Z$ 0< m D 4* 4* 4* n^ p :# D `$ w D C v p ^# /# % s> /# t ^# D ^# ,> h q w #| Y$ p C; `$ r h w r h q 4* p L= {# `$ n -= Y$ % 2, ,> :# p (# `$ p D `$ s> ^# `$ l `$ Y$ t Z$ }& Y$ r Y$ `$ q `$ ,> p O' m q p n^ p ]# L= m % D h p {# ;= ,> h 2, r 0- j X$ |& n ,# Y$ p |& h ~# h h _# `$ c a ]# k 0 A~ j b o h n c 0 e e L= ~# V$ j ,# a j ~# &# e c 8 7 V- e 9 V$ 7 e V$ -# ,# ~# 8 == 7 ># &# -# &# 6 [q.v, s, x, u, y, u, t, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, H) u, y, y, y, u, y, y, y, y, y, y, y, x, 2! & =' | | Q$ ~ N$ H= ] N$ > ; # Z, $ - & & ; . . V@ - ; + }* S$ . S$ # ; ' . ", +"y, t, t, 8' +' +' Mp.8' !q.!q.+' +' +' Mp.!q.Mp.Mp.Mp. q.+' Mp.Mp.Mp.Mp.Mp.[: e^ Np.Mp.+' Mp.z~ z~ z~ q, z~ *[ *[ z~ q, z~ ah.rl.z~ *[ |1 |1 q, z~ |1 xi.9| )~ *) 9| 9| )~ z~ 2! 9| 9| 9| <{ 9| 9| <{ ], ]^ R@ jP <{ <{ l) #S L$ ]^ ]^ J$ I/.l) J$ 9| J$ 0' BN R@ I/ I/ 5_ <{ J$ L$ G= J$ G= I/ `Y 0' + I/ ]& K$ + $ + K$ . + # # $ . [* > !, # ]& . ]& V@ $ + . =[ k) Q$ > $= $= . ' > 0' $ > |* $ $ . Q$ S$ ] . $ Z, . T@ .( > & P$ Q$ U@ ' H= . - U@ N$ %= | N$ U@ ~ . ) S$ Q$ U@ > ; N$ ~ ; | X@ ) | X@ ~ Z@ X@ . ; 4 X@ ; ) g{.> ~ 4 / ~ | { ~ ~ { { ) 'W | N$ 2 | { / { { }q.*# ## 4 ] ## [ ~ { d d 9 : Y@ } ,# 5 5 / / $# 7 4 ( W$ } D, [ ( 6 k ,# ,# V$ $# &# d ( i a e k c L= ># 8 a a 8 } 6 L= a k '# g i b b =# i q> 8 a b ,# $# j ~# ~# i n 2* h h h n h L= ~# e c ~# W$ 7 o Y$ h m r K= ~# e r 2, h Y$ Z$ _# ~# n h r |& `$ O' ^# s (# y ~# h ~# (# g s> h Y$ h b `$ L= 0 |& `$ `$ Y$ -= C % C % w D Z$ n q p Y$ `$ 2, t D `$ 6* Y$ `$ -= ^# Z$ -) Y$ :# m % s> 1; p s> ,> ^# p h Z$ p 2, ^# % D :# ;= p ~# `$ `$ % w {& ^# m ^# #| G Z$ /# `$ p ^# `$ r `$ y C; o Y$ p 1; ;) h ^# Y$ r D `$ ^# }& p `$ y 4* `$ D p y q Z$ ,> % 2, :# ^# h h 4* t h Y$ h n 0 m p Y$ |& `$ n Y$ m p n s> X$ Y$ c 2, 0 h c Y$ ^# -= n p ~# e h o s> n 0 {# r c p n p c n n `$ h r j e o a ;= Y$ a a ~# Y$ L= W$ c c {# a c ,# c L= 0 a 7 ,# 0 a b [{ a V$ e a 7 0 b g i s> a 6 $# 7 =# } a 6 V@ v, r, x, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, z, z, y, y, y, y, y, u, x, y, y, y, y, y, y, t, y, y, y, y, y, y, y, y, y, y, x, z, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, u, s, e^ ] - N$ ; ~ ~ $ ' | ) H= ; & N$ > H= (& ' & & . # |* . ; > . > & = ; > * ", +"y, u, t, !q.8' Mp.+' 8' !q.!q.+' +' Mp.8' !q.8' Mp.Mp.Mp.+' +' Mp.+' +' +' Mp.z~ Vp.Mp.Mp.Mp.z~ *[ z~ z~ z~ z~ z~ z~ z~ z~ 9i.9i.*[ z~ 9i.vh.z~ *[ z~ ah.9| *) *) xi.xi.|1 *) *) <{ <{ 9| <{ <{ 9| <{ <{ R@ R@ l) I/.9| <{ (}.l) R@ ]^ R@ I/.<{ BN jP 2^ 0' L$ *) L$ 0' =[ 2^ ;b 0' 0' 0' 0' 0' # K$ I/ L$ # # # ]& =[ + 0' L$ # K$ = o! # # > # + ]& * # $ [* # ' $= > > $ # $ $= $ 0' - ] & = > ; ' T@ * ]& + > T@ + $ U@ H= & ; = = > $ + & ^ H= ; N$ ~ > & > N$ H= ] ; ; H= | X@ X@ ; ! J) | Y@ 2 U@ > =' {c ^ ~ , | ; [ | N$ A; ; ) N$ ] } : N$ { 2 Y@ [ { ~ ( ( | 1 X@ X@ 7- N$ ( => <& { } d ## 9 , J= { 6 $# 6 d : 2 7 } 7 Y> 6 $# a ~# [& 5 8 a e 8 a -# e ~# j a g : b b d 7 a 8 e $# b 7 7 i a a' 6 e z: 0 i ~# a j i 0 7 2* n ~# n a r n n [& a ~# 0- ~# h e ,# e h h L= F! e s> r ~# ~# o ~# ~# c o n h c r 9- 2, r p p !# h n _# `$ 0 p 4* s> c (# ,> r h |& Y$ -= [& h r ^# ^# c Y$ s> p C; p r Y$ ;) ~# `$ D Y$ o p Y$ Z$ Z$ h ^# r -) r V| n h s> p /# t n Z$ % `$ F h `$ ^# |& s> p h 2, c m p D {& _# h n r ^# Y$ 2, 1, h `$ l t 5* `$ Y$ l % `$ p `$ /# m `$ `$ r r n `$ p ^# ^# Z$ ,> m _# ~# n Z$ Y$ h `$ c Y$ p ^# m r h `$ Z$ ^# _# n `$ ^# Y$ Y$ y o L= 6! {# 0 a 0 0 Y> h p ^# q Y$ _# ,# ~# `$ ~# n p e Q{ `$ p c r h g C; r p o ~# C; X$ ~# % K] o ,# L= e 0 h o e !# ~# ~# n c 0 0- 0 d c 2* 0 e e h 8 F! g a *= Y> i ~# a k Y> a &# b 8 } a a | *) v, s, s, z, y, y, x, x, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, t, y, y, y, z, y, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, x, y, y, z, y, y, y, y, u, y, y, y, z, y, y, y, y, y, y, x, u, x, <{ H= ) U@ & | U@ ; - ; %= . > ; U@ - ] . ' . # = > Q$ $ $ ; > V@ . k) . = ", +"y, y, u, 8' !q.8' !q.!q.!q.8' !q.+' +' !q.!q.Op.Mp.Mp.Mp.Mp.+' Mp.+' Mp.Mp.[: z~ *[ [: Mp.Mp.q, z~ z~ z~ q, z~ z~ z~ z~ z~ q, ah.z~ *[ z~ vh.9i.*[ z~ 2! xi.2! Pi.98.8S 98.98.$8.9| <{ 9| 9| <{ 9| <{ J$ R@ R@ J$ <{ <{ 9| 8S I/.R@ ]^ L$ <{ <{ L$ jP BN I/ <{ *) *) <{ (}.G= ]& ]& 0' 0' I/ 0' + # =[ 0' J$ K$ # # $ # Z, 0' L$ V! > > + > + # # + J$ L$ # + Q$ 2) |* V@ X! $ # # > . $ - $ Q$ . + = > . ] > - Q$ [* Q$ T@ + [* $ . Q$ . Q$ X! $ > $ & 2 & N$ U@ ) ] > & $ ; > ; N$ H= *' [* | ; ] 2 S$ | N$ N$ X@ P$ *' Z! | %= P$ ] ) { , ^ ) ^ X@ N$ 4 $# | | | < D, Y@ 1 <& *# ~ } 7- ~;.7- { X@ { ( 1 [ %# < / / d | /& 6 1 ## { 6 D, 4 9 [ 6- } $# ># $# <& 6 6 a &# 6 9 8 b ># d &# 6 ( 0- a : $# == i : V$ ~# f ~# 6 g k $# n a Y> ~# ># b 6 / *= g 6! c L= 0 &# 8 ,# 0 e ,# e a ~# m 9- < ,# g 0 ~# X$ L= `$ r ,# o Z$ 0 c c h C; _# n h `$ n f 0 >> ~# _# `$ g p D Y$ 9- 9- ]# n _# c `$ h ,> L= h h 0- Y$ s> % Z$ (# O' D % s> s> ,> |& h *= n Y$ p 1; h p l O' Y$ h Z$ ~# s D (# h Z$ `$ -= h Y$ F % L= p p 4* `$ r t h r n ^# r ^# `$ ,> % % ^# Y$ 9- ,> p C; D F ;) p _# L= o Y$ p n Y$ h s> Y$ c D n }& 0- K= r p p s l r r p V| D p ^# Y$ r p h `$ {# `$ ^# n ]# Y$ m h -= n ~# o ;= h $# 9- Y$ [& ~# {# 6! L= n L= L= {# X$ ]# p h L= ;= n E, Y$ !# -) e 0 h 0 7 ~# b i i a e L= 7 a 7 0 c V$ p '# a } 8 *= L= n 0- n 0 7 7 a ,# V$ a =# i 7 b c 0 ~# -> d 6 {# c 7 7 0 V$ ~# 7 # *) r, A, y, y, u, y, u, u, y, y, y, y, y, y, u, u, y, y, y, y, y, z, z, y, x, y, z, y, y, y, y, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, +' $ U@ N$ ; U@ > f] | . S$ > & > & & - R- $ > > $ > Z, > # 5- $= > & * > }* = 0' ", +"y, y, u, 8' !q.8' !q.8' !q.!q.(q.+' +' 8' Op.!q.+' Mp.Mp.Mp.+' Op.Op.Mp.Mp.Mp.[: Vp.Vp.Op.+' [: [) rl.q, q, z~ z~ z~ z~ *[ *[ 9i.z~ z~ *[ |1 .q.*[ *[ 9i.xi.vh.e^ )~ 98.9i.$8.|1 9| 2^ 9| 9| <{ *) 9| ;b <{ ]^ ], <{ <{ ]^ jP ;b I/.J$ R@ J$ ;b L$ V! R@ BN L$ 9| ;b 5_ I/ I/ L$ I/ #S #S I/ <{ 0' + # + L$ ]& # # J$ ]& + $ $ {, ]& . + V@ $ ' [* . > & L$ # - . =' k) H= > = # $ = [* H= > & # + = U@ A; U@ * & ; N$ & & S$ . T@ - Q$ T@ |* > U$ > $ + Q$ > k) . Z! > ~ ; ^ o! H= & > H= P$ H= & | & ] %= H= *' | | N$ X@ ~;.V@ | ~ ~ N$ 2 &= 1 d 7- { ) ; /& 2 : < | ~ { ~ : { [ [ [ [ { ## X@ X@ N' /& [ { $# } ( 6 { g ## J= } 6 V~ D, d 6 ~# 5 ,# 4 [ ,# 6 a ,# d } 7 $# a $# $# &# Y@ } d / -> 6 $# 8 6 =# e e J= o 6 g e 0 a j 6 e } e *= c ~# e M' e n ,# 7 b 8 s> h j L= g 6 n h a 7 a o a a n h c n ~# n a a j n 0 n Y$ c r 0 e Y$ r o h ;) n h n p h `$ Z> q ^# j~ u o ^# 6* {# ~# L= L= _# ~# % Z$ s> ^# s> `$ h ~# s> ^# h ^# D Y$ Y$ Z$ `$ L= `$ `$ p p Y$ s> }& m f^ `$ Y$ p ^# `$ ~# `$ Y$ Y$ h n Y$ `$ r m m p }& ^# ^# m p % _# n ^# `$ o p O' r `$ 4* `$ o t h Y$ `$ h m n h `$ o D m `$ Y$ 0 X$ p r p r ^# r c{ }& n h p q Y$ 0 m C Z$ r % Y$ `$ n m E, Z$ c }& c h Y$ 9- 0 p n ~# e a L= s> n X$ ~# Y$ `$ n 8 n r o Y$ ~# c A~ X$ a' a' h e -# a e j 0 d L= 7 0 p c n *= n r g i n 6 h 0 n 0 a a e 7 d 7 : 7 7 f D, ~# $# ~# 7 ~# j a } } } } < [ } W@ *) q, u, t, u, x, y, y, z, y, y, y, y, y, y, y, y, y, y, z, y, y, z, u, y, u, u, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, y, y, y, y, y, x, u, x, x, y, y, y, z, u, x, = > - | P$ H= ; & ] & - $ ] N$ . Q$ [* $ ; > o! & $ Q$ # |* > $= . }* * . . # ", +"y, y, u, 8' !q.!q.Mp.+' 8' 8' |q.!q.8' Mp.!q.8' s, s, +' Mp.Mp.Mp.Mp.+' +' +' 6' z~ q, Mp.Mp.+' Mp.z~ q, q, z~ *[ *[ *[ z~ z~ z~ z~ z~ *[ 9i.vh.z~ *[ z~ ah.xi.2! e^ |1 vh.$8.*) q, 9| 9| 9| 9| *) w9.9| <{ 2^ <{ 9| 9| ], 2^ jP <{ R@ 2^ 9| jP <{ ]^ ]^ 2! BN J$ =[ R@ 0' I/ G= I/ I/ I/ I/ BN I/ 0' + # 0' L$ + # + I/ # + $ J$ L$ E! # # [* ' = 1* $= $ + V@ ]& ' . V@ > [* # ]& = V@ # . $ A; $ Q$ . > > & - Q$ T@ P$ S$ > Q$ |* V@ 0' - - U@ S$ ; > . . - ' & > - & ; ; ; Q$ O$ H= H= & S$ U@ S$ ^& N$ Z! ; P$ N$ & | 2 . - 2 N$ $# N$ ^ ; ] ~ [ *# N$ & Z! { 4 / { 1 /& } # 8- ,# < { 2 5 ( 2 ># < { ( [ b ( $# [ 6- d J= } [ 6- } D, [ d : $# { 2 { J= $# 7 i &# : a 1 a 7 6 ># a e d $# 7 $# V$ $# 6 6 ( 7 6 $# :& ( b :& e ,# e _ e b a d g 6 a' a } V$ X$ e 0 r 8 -# 6 o a ~# ~# ~# 7 a i e 6 d b c a' 7 ~# ~# W$ i ~# F! a h h C; d j 6! c{ `$ Y$ ;= p _# ~# n -= r `$ L= c{ L= ^# p c i n p n ~# Q{ 0 p o -) <, p E, n h n `$ L= Z$ p t Y$ % `$ p ^# p }& n s> s> s> Y$ l `$ Y$ p D 4* 9- r n m r L= 0- L= t Y$ }& ~# `$ p Y$ :# p r ~# Y$ Y$ `$ m ^# o l L= h f `$ (# `$ h K= Y$ ,> h L= p u L= ;= Z$ p p h p ;= n o ,> c Y$ p r n Z$ r p Q{ L= n ~# e h ~# n h r h -) s> 0 c 7 Y$ F! n Y$ Y$ 0 c n 0- 0 c{ ~# 6! ~# 0 0 n s> j n e j 0 ,# h g n n 7 e ~# g L= {# 7 b a h Y$ h 7 &# i L= ~# e ,# 7 j 0 a k $# 6- j e ~# r> ,# ( $# : ~# V$ } 1 } -# 6 V~ &# $# b $# < [ 6 v, x, x, z, z, y, y, x, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, u, t, t, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, u, s, s, +' - S$ U@ ] ] ] 2 S$ S$ ; S$ . U@ . * > ; . . - ; U@ ; & # ; $ Q$ T@ - & # + ]& ", +"y, y, u, s, !q.!q.8' +' +' !q.|q.!q.+' Mp.,q.,q.Op.Mp.+' Mp.Mp.Mp.Mp.Mp.Mp.Op.Mp.[: q, [: Op.Mp.Op.q, z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ 9i.vh.|1 *[ z~ ah.vh.2! *) 2! vh.$8.<{ 9i.*) 2! 9| 9| *) *) 9| <{ 2^ R@ J$ <{ *) 2^ $8.;b <{ J$ R@ J$ I/.J$ BN J$ *) I/ I/ 2^ jP I/ I/ G= I/ 5_ I/ 0' 0' 0' + # # L$ # K$ # L$ # # + R@ L$ # R@ ]& . [* + ]& S$ $ ;b ]& # <{ ]& V@ !, $ # + . $ . # # $ # . . = > S$ # - > > Q$ Q$ U$ & . U@ > o! > S$ ' Q$ . > ; ^& & =' T@ $= > & %= N$ S$ [ ~ > & . ] ~ $= U@ ~ | ; & S$ N$ N$ P$ ] | ] J/ & 6- ~ { 2] D, g{.*# 8- | ~ X@ { ^ { 2 | } -# 6 ;> < 1 { 2 { V~ 2 ## 6 | [ ## Y@ Y> 7 8- 1 6- 6 ( [ } d 7 V$ ,# $# a D, $# } N' 7 ,# : ,# Y@ 6 7 _ ( i D, ># 7 d 1 7 b $# a 8 b &# : $# 8 e 7 o 9 a h V$ 8 :& b 9 < 7 ~# 9 i 0 ,# g 0 a V$ 6 >> h =# 8 j ~# a o c F! M' p j 0 C; Y$ h c e a k e c g L= a e r r n 0 c _# q n a' s> ~# h Y$ n h o s> Z$ n Y$ r L= 0 r h r `$ ~# c `$ p r `$ a l r n h X$ r n p s> (# D s> `$ Y$ ~# `$ c h r c p ^# p h _# % E, c 0 ~# n m p (# c r r n Z$ 4* 2, 9- c Q{ Y$ `$ p `$ ~# 2, `$ l r c }& c ~# o ,> c{ h y X$ n L= j r n h h Y$ n h h L= `$ a' r p p r V| `$ r !# L= 0- _# n h L= s> c n p p n ~# p p s> o a ~# `$ h Q{ `$ % h c L= ~# c h p n n 7 e g e h c ~# e b 7 ~# i b g 7 7 == -# $# a ~# 6 L= {# 7 0 Q{ d e 7 7 c k a 8 V$ a e a < 8 &# 0 7 ,# / { 8 6 1 Y@ V$ 9 == ## g b R- 6' s, A, z, z, y, y, u, u, y, s, z, y, y, y, y, y, y, y, y, y, u, y, y, y, x, y, y, z, y, y, y, u, u, u, u, x, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, x, 6' `@ > ; Q$ > = | > Q$ S$ ' & ' ' & Q$ ^ S$ ] - - ^& . > $ + * Q$ > ' & . $ + ", +"y, y, y, s, (q.!q.8' s, Mp.!q.1q.!q.Mp.Mp.!q.Mp.!q.!q.Mp.Mp.'q. q.+' +' +' +' +' 6' z~ 5o.!q.Mp.Mp.5o.5o.z~ z~ z~ z~ *[ z~ z~ q, z~ e^ z~ 9i.|1 xi.ah.z~ 2! xi.|1 <{ e^ |1 $8.$8.|1 98.2! 9| <{ ], <{ *) <{ <{ J$ <{ 9| ;b 2^ J$ jP 8S 2^ 2^ <{ l) R@ L$ BN <{ I/ 0' G= J$ ;b 0' ], R@ 5_ I/ 0' = 0' ]& # + 0' + # # = + # # Z, = # + ]& M$ + + + + $= > = ]& ]& # ]& > + $ + > $= # . > $ + [* ^& . * > o! = . Q$ $ ] $= > ] 5- U$ - o! 1* ] Gc Q$ . ^& ; > U@ Q$ Q$ > & ; ~ & & R$ > . $ | ; ] S$ 4 05 P$ %= N$ ; | & ] 2 ~ H= $# ~ ( | : U$ { [ ; 2 | H= | ] ) > > | ) 4 [ { ~ 2 | { 7- 2 d ( Y@ ## *# [ 9 } ) d /& [ ( ) } 7 9 W@ < [ } $# { a &# d ( 6 } ~# $# 1 b &# { : [ $# 7 $# e < < ( a Y@ 7 &# 8 ,# c 0 ,# ( 1 6 0 8 8 a 6 $# e g a 8 6 e ~# n Y> a i c e e ,# 6 a e j d L= o e Y$ ~# a i o o n a o ~# o [& ~# Z> 0 h 1, p h p `$ h ~# C; `$ Z$ h c h Y$ p Y$ `$ `$ p Y$ n Q{ Y$ c c c n Z$ Y$ N G `$ h L= Y$ p L= m L= n h L= p Y$ Y$ o h c Y$ Y$ Q{ s> l n n e D Y$ ~# L= Vj `$ r |& g _# h s> |& c n Y$ n c h 4* m p h r % n 6 D p e `$ 2, n n o p c ~# 0- Y$ r X$ r Z$ A~ ,> Y$ `$ t p ~# {# L= n -= O' C; Y$ ~# p _# s> X$ c L= `$ |& i 0 h h n |& L= X$ r 0 p 8 0 h ;= s> ~# s> 7 d e 7 e e b c c c n^ c b [& e X$ !# o e ~# 8 J= 9- 6 d 8 7 V$ V$ g 0 e h 7 j j i A~ e ,# 5 X$ e h 7 0 e a 7 } } 6 -# 6 : 6 $# ## 6 7 { 9 &# / ># d &# %# O$ *) H) A, x, u, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, x, y, y, y, u, x, u, y, z, y, y, u, u, y, u, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, A, y, y, y, y, z, s, q, . & Z, & - ; ; ; S$ + }* . > ' . $ + > > . & . . . # $ * > > $ M$ . $ = ", +"y, y, y, z, (q.!q.!q.8' s, 8' ,q.8' 8' Mp.+' +' Mp.!q.Mp.Mp.+' +' Mp.+' +' Mp.+' Mp.z~ z~ [: @] +' @] z~ z~ z~ q, z~ *[ z~ *[ z~ z~ z~ 2! *[ z~ ah.ah.z~ z~ xi.vh.9| )~ <{ 9| vh.2! *) <{ 9| <{ 9| 9| <{ 9| <{ <{ 9| <{ <{ <{ R@ l) 8S J$ ]^ R@ 9| <{ #S BN jP L$ 0' I/ 0' 0' 0' G= R@ J$ L$ I/ I/ I/ = # = 5_ L$ 1) K$ K$ $ V@ # + # + R@ + L$ + = + . . > $ o! [* S$ > [* + ' #^ . - . > . . $ 0' + . $ ' U@ + $ U@ ]& > V@ 1* - Z, k) U$ & Q$ ; $ Q$ > . # > - ; > ; | . Q$ S$ H= & ] [ O$ N$ ' S$ ; [ 4 N$ W@ & & - & N$ Y@ | U$ 2 2] ; 2 2 , { ] > ; X@ U@ N$ ^ } ^ | Y@ | ~ %# X@ } d | 2 4 X@ [ |, [ $# O$ ^ { ( { 6 { { 1 1 $# [ $# { W@ $# } : ~ 4 7 9 $# < 8- 6 &# < 7 8 [ {# &# ## 7 ~# ( $# 8 { 7 d $# ,# g $# ( b 6 6- X$ a a &# -# 7 V- a' < V$ b i a 0- c r a k o a ~# K= e h X$ B; ># -# e c a L= e a j a {# n e e Y$ ~# n Y$ c ~# p a 0 L= !# Z$ a r X$ |& n e L= n L= L= r h n [& h E, L= p n e n ~# -) j o r ~# {# s> Q{ C; h p C; L= s> -= 4* a p n Y$ Q{ }& ~# h 0 [& L= c{ Y$ 9- ~# e p s> h C; n^ g h ~# s> m K/ Z$ m p :# n n o L= X$ n Z$ n 9- ~# {# r p c 6! ~# Y$ h o `$ ^# D t _# ]c n ~# r q 0- p L= (# _# `$ r n c h {# L= ^# h ~# b a C; r l `$ j Y$ ~# e U- 0 i r p V) 7 a 0 |& 0 c e ~# 6 8 {# 8 1 [& [& 0 o =# a 8 q> 0 7 e c :& e 9 c 9- 6 ~# L= $# 6 c 7 9 b k a &# 0 6 6 L= V$ e 0 V$ j ># 6 -# a [{ < 7 7 $# V$ 6 a 8 b b / } V) } 1 6 d ( &# ~ 2! v, u, A, z, x, z, y, y, y, y, x, y, z, y, y, z, y, y, y, y, y, z, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, q, & $ - & ; ) ] $ ~ H= & & & . $ . k) Q$ * - * & > T@ T@ $ V@ Z, $ > * $ $ * ", +"y, y, y, y, [* = # & $ $ # V@ > + + # + . > [* ]& ; > > S$ N$ > . $= - | Q$ - > = ^ & Q$ U@ & > U@ & - * o! U@ & . | 2 > ] | & & X@ ^ H= | > P$ (& ; ; | | W@ g{.~ U$ ~ X@ 4 } ## [ ) ~ ] X@ Z! N$ ; 2 `@ N$ & { ] `@ { X@ 2 ## /& | <& } , tp.[ ~ / { 2 $# Y@ $# / { [ [ d ( 4 $# < 6 7- [ Y@ 6- a X@ ( ( ( 3* / } < 6 { [ j a 6 &# < 1 { $# ,# : &# b 6 =# :& -# V$ a b 6 < ,# Q{ } -> 0 ( 9 == d g } b V- V$ a X$ 8 7 K= e h o e a 8 9 e ~# r |& c h ~# r l 0 1; 7 ,# 0 a ~# a a X$ 0 c c {# 5 c 7 0 n p k r 0 n g r [& ~# L= |& -) -= s> L= r L= c _# Y$ 7 h h r E, {# p s> c h -) 1; `$ Z$ Y$ n L= g 8 0 r p Q{ ,> s> p 0 a r r n n Q{ #| r `$ Y$ c{ h Q{ Y$ o ~# h ]# p n c r p r L= p e a s c h _# r 8 Y$ C; c `$ r s> o k L= h a' n % 2, 0- p _# L= g a 7 g r L= s> a b 0 n {# |& o n h ># {# L= C; 0 e L= a i c `$ a h j ~# k a ~# &# 1, Y@ i h c X$ L= :& j 7 ~# b n b == b 8 ,# ~# c 7 } V$ } &# a 9 7 Y> X$ ~# 7 : } ## g b a ># =# $# $# 0 6 b ># W@ $# } $# :& } -> V$ } 6 -# ,# D, b 6 7 i 6 7 W@ + [) x, x, v, x, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, z, y, u, A, y, u, u, z, y, x, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, u, x, u, l) & $= ] S$ S$ ] S$ . > ] S$ ' > $ Q$ ; . & $ ; Z, . = * . Q$ (& $ T@ # . ; * * ", +"y, y, y, z, 7' 8' !q.8' Mp.Op.8' !q.!q. q.Mp.+' Mp.!q.+' Mp.+' +' +' Mp.Mp.Mp.Mp.Op.+' [: q, Mp.+' [: z~ *[ z~ z~ *[ z~ z~ z~ z~ *[ z~ z~ *[ *[ z~ Il.vh.9i.z~ 2! 9| *) Pi.|1 ah.|1 *) <{ <{ 9| 9| 2^ <{ <{ 9| <{ *) ]^ <{ <{ ]^ J$ <{ <{ <{ ]^ *) <{ <{ J$ J$ ], #S I/ I/ R@ J$ R@ R@ ]& 0' jP I/ 0' 0' 5_ + G= 0' ]& # + 0' 0' V@ # ]& + =[ $= k) R@ = % [* # # 1* . ]& # . ;b ]& # L$ . . V@ + + $ = = . ; > = > . ' - ] U@ ; %= U@ > S$ & # . > ] %= $ ; ; & ; > > o! > ; H= ~ 2 Z, ] U@ & ; & & Q$ - | Z! /& ) & . ' H= | ; { < H= ~ `@ U@ X@ ~ 7- } ~ %= N$ ( X@ => ) `@ { *# ^ ) 7 | W@ 2 N$ 2 2 ;# 2 ( { # ~ ) ( d &# [ ~ < 6 d : 5 { 1 J= [ < d $# ( $# /& / : 7 / -# 2 ## } W@ } < $# b *= d ( 2 < b ~# 7 $# 7 &# 6 =# 6 8 7 -# h 0 8 &# 7 9 7 c ~# b a a *= n L= c e a 6 0 7 8 ,# g a e b e o h b ~# Y> 8 o ~# K= 7 a g 7 0 t' e tA ~# o r W$ a Y$ a c n n n K= ,# k 9- n L= L= h ^# c c n C; K/ {# K= `$ q ~# r s> h s> 7 r t Y$ r ,> r h p W$ % c n L= n s> s> o Y$ n^ Y$ h p h h !# ~# e ~# s> c Y$ ~# g a 7 e n ]# j ~# n h Y$ n 2, 2* ~# g L= h X$ p c !# 8 p c !# n (# n p O' h ~# k n n `$ h s> ,# ~# K/ g g ~# r c ~# a g a 0 ~# h X$ ~# Y> c L= L= c L= |& n ~# 0 6 a {# c g 3] 0 k a b c e n j e j e c 6 0 (# j [& a a ,# 7 6 i o 8 } c e g e c e b 6 a j ~# V$ $# $# j h 8 9 $# $# 9 8 :& [ } } : } : } < $# /& } &# ,# } $# [ V$ 7 7 $# ## 1* 2! v, x, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, u, u, ' # > H= ] }* Q$ ; ] > $ U$ > * . Q$ - 5- - Q$ p9 + * & $ . ' > . > > !, V@ & $ $ ", +"y, y, y, z, z, 7' !q.8' Mp.Mp.+' Op.(q.!q.Mp.Mp.Mp.8' Mp.Mp.+' +' +' +' +' Mp.Mp.Mp.y: q, z~ Mp.Mp.Vp.8' !q.[) z~ z~ z~ q, q, z~ z~ *[ z~ z~ *[ z~ *[ `p.9i.z~ z~ 2! 9| e^ Pi.&[ xi.<{ <{ <{ 9| <{ 2^ 9| 9| 9| <{ <{ <{ 9| <{ J$ R@ J$ <{ <{ 9| *) 9| jP <{ J$ G= I/ I/ ]^ J$ L$ I/ I/ 0' I/ I/ BN L$ 5_ I/ 1) # 0' I/ = # K$ + # 5_ L$ 0' + Q$ Q$ # ]& + . R@ + # . L$ . $= R@ R@ # !, . > |* |* - = & . = S$ }* k3 = $ %= U@ . . . $ 2) * + $ > = U@ U@ N$ $ . ; Q$ A; ; U$ & Q$ > (& & ~ N$ %= ; & | ] ; U$ > N$ H= N$ ; # N$ & H= ; ; & ) Z! { U@ ; W@ ] ( ( | Z! > ; N$ X@ 2 ; ~ 1 { { $# X@ ) U$ T- { /& ## X@ ; { J= 5 4 { d -# W@ 1 [ $# *# Y> 2 { ] / `@ : $# ,# ( 6 6 ,# / 2 [ $# 1 b &# / $# { [ 4 6 b 7 e $# d a 7 b 8 V$ b b $# J= +# /& L= a 0 i e 9 } o 8 6 6 6 6 c ~# b g c *= V$ V$ 8 g 9 a n !# ># g L= j a k f n ~# p d o h j 9 c c ,# o s C; r g a 6! h z: ~# k ~# 0 c L= c h 9- e h L= p 0 Y$ 0 k a n {# n n n 0 X$ L= L= r n `$ G ~# C; [& {# p c L= n L= 0 r Y$ s> }& 7 e n a {# o Y$ p r s> X$ Q{ h *= 0 L= L= c |& c r o h c ~# n `$ ~# ,# n |& n c *= c V$ c n o {# [& r n _# i k Y$ 2* h s (# p e h h ~# ~# A~ 0 n c e n ~# A~ n ~# V$ 8 e *= c ~# L= h h a $# 0 a 0 0 a 7 A~ a 6 ~# {# ( ~# s> a 8 7 ># X$ &# 6 ~# X$ h 6 l d 6 a j c 6 &# o a ,# a e &# a } } b b b 7 a 6 n Y@ ,# : 7 a 8 7 ## d &# ( } $# d &# < $# 6 } $# 6 5 6 == d 5 ,# &# - r, v, =) u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, z, u, u, u, y: # > N$ U@ . . $ & H= ; . & | ; ~ ; $ Z, . !, V@ }* > # > > . $ $ > . # > & Z, ", +"y, y, y, z, ]q.7' !q.!q.!q.8' Mp.8' (q.8' Mp.Mp.Mp.!q.Mp.+' Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.Mp.*[ [: Mp.Mp.Mp.Mp.q, z~ q, q, z~ z~ *[ z~ q, z~ z~ z~ z~ *[ vh.9i.z~ *[ 2! 9| 9| )~ <{ 9| 9| 2! 9| 9| *) 9| w9.9| 9| <{ <{ <{ <{ <{ <{ <{ 9| <{ <{ 2^ 2^ *) <{ <{ 2^ L$ I/ p9 G= BN ]& 0' I/ L$ I/ 0' <{ BN ]& 5_ I/ + # 0' = * 1) 0' ]& + = + V@ Q$ . $ $ ' # = + + # ]& 1* + ;b ]& L$ . . > # > $ > . & > ^& > . $ k) 5_ > $= ' > + > V@ ]& U@ . & > ^& > $ - $ . > . ] S$ ^ - ] ] U@ P$ | }* P$ Z, Q$ ' o! | ; H= N$ | Q$ | H= & S$ ; S$ %= | U$ U@ ^& - U$ 1 { ; ] %= N$ ( X@ ; - { ~ ] W@ .# ~ ~ /& | 2 | | | X@ $# { 2 ( 1 $# $# 9 *# ) 6 9 6 9 X@ } : ( 9 &# 6 $# &# { { < 1 $# < 7 9 } d -> &# < ## $# ,# 6! a a a 6 d d :& $# a 9 ,# a [ V~ 7 7 a 6 } 6 == 7 &# 7 9 $# V$ ,# ># q> 7 $# c $# 9 '# 3* j a } i c !# ~# c ~# K/ _# c Q{ c -> 7 Y> 8 e e a n 1, L= `$ h r ~# W$ ~# 3] r ~# c n Y$ ~# [& a' ~# ~# d c c L= a 0- 0 L= b L= j~ h n n {# ~# h ~# n `$ j K/ m e n 0- ~# ,> o 0 A~ o Y$ h a L= 7 ~# h |& e 0 c 0- s> h l h l 0 h [& o i n n e j h a n h ~# D, a 0 ~# r A~ h [{ a f o r Y$ n h c % p `$ `$ c M' h n o a 7 3* n V$ a i n n 0 L= 7 ~# 0 ~# ]c j g 7 !# ,# ~# 7 ]# c ># a e e a a ~# C; e b 6 ~# 6 i j 9 q> V$ -# 0 ~# j e } 6 ,# ~# a 7 a a Y@ a -# 7 b == d e X$ d &# V$ $# 6 $# $# e 8 6 $# 7 $# $# b b 7 [ : d e j < V$ { } 1 ( $# } B; 5 W@ , [ : ] D[ 8' x, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, u, s, y, y, y, y, y, u, s, y, u, )~ ] ] | S$ T@ * . & > - . V@ | - z] U@ . ] $ Q$ > $ = X! $ + * Z, = $ $ + * 2) + ", +"u, y, y, y, 2q.7' 8' 8' !q.8' +' Mp. q.(q.Mp.y: +' !q.8' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' Mp.Mp.6' z~ z~ [: Mp.[: Mp.5o.5' z~ z~ q, z~ z~ z~ *[ z~ *[ *[ *[ z~ vh.9i.z~ z~ z~ 2! 2! 9i.<{ 9| xi.2! *) <{ 9| 2! <{ 9| 9| *) <{ 2^ 9| J$ <{ 9| J$ J$ <{ 8S *) <{ ], <{ <{ J$ R@ L$ <{ R@ <{ ;b 0' R@ R@ 0' pH ]& ]& 0' L$ $ * # 0' Z, $ # $ . + ]& ]& + . = = . . + ]& # V@ }, L$ + . ]& $ R- . . > U@ $= ]& o! . # = > . Q$ = + J$ ]& ^& > - + - & - ] > & . U@ + Z, * $ # Q$ U@ $ > - > # > | $ Q$ * N$ H= Q$ & . X@ [ ; N$ | ; & H= U@ U@ | ! ) | ] H= | 2 U@ Z@ N$ & ; R$ H= 4 | | ] d Z! 1 ~ < { / ~ ] ) [ X@ ~ T- { [ } d { 2* /& : 5 | , &# ) 9 ( 2 1 $# 6 &# ,# ( $# d { < ,# 6 &# V$ V$ +# J= /& $# } } V$ [ 6 X$ 7 ,# $# d 5 b $# d -# == 6 8 $# d b 6 a a 7 6 8 a V$ b 9 7 a -# a e } e &# 7 d i d 6 d a 9 *= {# ~# ~# {# e 6 ~# [& e ~# 6 ># a ,# j a i 0 c ,> `$ r n ~# [& 0- 0 [& j n vk r C; L= 0 Y$ ~# ~# h 0 a Y$ h [& h s> ~# {# 0 !# ]c r 0- ~# r n L= p ~# [& `$ X$ ~# ]# ~# L= h 6! 0 h r [& n r i V$ -# g n h c h C; o L= ~# L= g W$ z: c a c n 7 a n n a c c g e o h $# j a g r n 3* a e c6 ~# Y$ h h c _# a 0 c c } c ~# c n ~# 2* n 0 a h 2, L= g {# a '# k {# *= vk e n L= h o j i a a 6! ~# n a j c ~# 7 i 0 7 a L= j a &# 7 7 } ,# e &# e e V$ 6 } 8 ,# / 6 e $# 9 < $# 7 &# *= 6 &# 6 7 a 7 *# [ =# 6 a ( } $# 8 a b &# $# $# } ># } } ( } ## } d 6 ) ], +' u, z, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, z, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, u, y, x, ], ]& - { ; ' S$ & . V@ > | S$ > ^& . & $ & N$ * . Q$ # > S$ + V@ V@ - # = $ # . V@ ", +"u, u, y, y, 3q.2q. $ = # + = Q$ V@ & [* # U$ S$ o! ] & & . | > . ; & S$ . & N$ = - . }, U@ S$ o! > ) S$ . ~ Q$ $ N$ ; Q$ ] - | ' ' N$ ~ & ; ; ] N$ { ) | { ; %= | { > ] J) 7- ] ^ ; 2 ] ## Y@ 7- | /& %m 7- } { [ { ; ) : ; < } } D, 7- b 5 } 6 } [ { < 7 # } ~# $# 7 1 } < / 1 Y> $# : =# -# &# a [ } _ 2 d e b == a -# ( &# b } ( 6 b ( &# $# $# 6 b < 6 d $# a o F! $# b &# b i &# c f 8 *= 7 7 V~ -# a a ,# e B; 7 ~# c l Q{ o ,# ~# k i ,# ># V- ~# V) j n a L= n 0 0 0 c p n 0 l ,# n Q{ c e h 6! L= ~# h 0 6 |& _# c ~# a h a h [& L= 9- {# c e L= L= ~# p _# g n Q{ n K/ c e ,# p c 7 n _# 3* h X$ e e X$ a h p g h `$ o 1, p 0 ~# c *= c L= Q{ L= g ~# a z: 0 c ~# e *= n 0 a n L= ~# {# e e r `$ e r 9- n 0 a h L= == $# k a' !# k [& c e e C; L= 9- c e 0 e ,# L= a e n e c {# 3] L= e 7 a a 0 ~# 0 j 8 L= o 7 e V$ [& 7 i 6 b 7 d 0 X$ D, :& h $# 7 V$ 7 e c 7 d a 6 Y@ [ b &# ## 6 ( 7 ( 7- $# j 0 7 6 i [{ D, &# 7 g :& g $# b b } < 6- ## 2 < ( } < { ,# + q, x, y, x, x, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, y, x, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, u, s, @ ] ; - Q$ & ; ^& & U@ > U@ . N$ - S$ & $ & ; - [* $ . > & V@ # . . + Z, # = p9 $ ", +"y, t, y, y, V@ + 0' V@ # $ E! # Q$ R@ % # # $= {c Q$ 0' 0' . . = 0' + !, ]& + > L$ . > |* + T@ 0' # ' . & $ |* > S$ ; | =' N$ > & = $ > $ Q$ > ; Q$ H= ; ), . ^ $ * . ; ; S$ U@ N$ Q$ ] | 2 | { R$ & W@ ] ## 7- ) > R$ N$ X@ | U@ ~ ] ) ~ %# 2 W@ } d { 5 ] } { 2 { X@ ) / ~ ^ ] X@ 6 ( 4 ;# ,# 2 { : &# 2 ~ Y@ } &# { $# < [ 6 < : [ 7 2 ( < $# < < ) 8- == 6 b : $# == -# : } } -# } &# $# [& 6 ( $# =# b } $# b j 8 c pp.K= e k a i b V$ a ~# e [{ i ># i 6 d a Y> W$ 6- b h ~# } X$ c V$ Q{ 0 7 j 0 ~# 0 == X$ i ~# c b A~ n K/ ~# h [& {# g 9 ~# h |& ~# L= c h k ~# r ~# e h e 7 c i K/ V$ 0 0 c 0- h Y$ c c 7 h c c 0 !# e ~# L= ~# {# 0 g !# L= n n ~# o ~# c n 6 i e a' e ~# n c g e r e o A~ p a' ~# 6 r c o g g e n n j e e 0 L= j a 0 ~# ,# q> L= n a K= 8 7 7 j n e a 7 8 C; j Q{ o Y$ f 9 ,# ~# k a $# c ~# ~# 7 h o c 7 i 6 } n 8x 0 0 e W$ 8 7 0 b a [& 9 } [& e e 6 a 9 } 6 ( 6 b d 6 $# {# 0 7 &# :& < &# $# *# a 9 < V$ ( b $# $# -# 6 7 7- 7 9 $# b -# ## 4 } { } $# ># < < } ## } < d 1 }* v, s, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, u, x, y, y, y, y, y, x, y, y, y, y, y, u, y, y, z, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, u, x, H) .( $ !, & * = - V@ & & U@ $ & $ T@ - + & Q$ = . * Q$ ' Z, & $ ; > + . $ $ . T@ V@ ", +"y, t, y, y, |* # = # ; Z, > U@ & & S$ U@ & > S$ & . > & & U@ & 2) > ! U@ N$ Q$ H= =' ] - - ~ W@ P$ Q$ S$ ~ *' | S$ N$ P$ 2 d { ) ~ %= U@ | P$ ; *' & 4 ; { N$ N$ & > N$ ~ ) | , ^ ~ ) | 2 ~ { 2 ) %# 1 W@ 5 2 ) / ( ## d } < ) X@ / ## { < / 7- [ 2 ,# $# < ## b / $# == e { ) 7 6 $# { ( [ &# ( : : ~ < / == $# } V) -# &# 6 $# 9 *# e &# 6 } c j i b b == &# 5 &# 8 } 8 8 i 7 i ~# ~# a Y> b a e $# a j 6 e 7 i c a e N' c n 7 o ~# n n j 6! j k 7 a i X$ a ~# 3] L= Q{ 0 p ~# |& 0 6! 0 a e L= Q{ h n h k r 0- a X$ ~# p ^# c r p c g c c e L= n 6! ~# g ~# o ~# h h ~# ~# c Q{ 6 Q{ L= 7 e 0 5 o 2, h c b o c 7 6 X$ a L= a `$ L= *= 7 [& ># L= e 7 0 0 ~# L= o ~# 0 L= [& ~# ~# o :& $# e ,# j a J] 6 i e a 0 } c 8 a ## 7 ~# h a' k ,# 8 e a 7 a 0 ~# c 0 7 $# k 0 Y> < ~# ~# a i e $# $# a $# } d ( $# < 6 V$ == V$ 6 8 8 :& :& e ,# ># ( b [ ( a 7 / $# &# } ~# $# 7 6 &# &# 6 6 < b e _ { &# { ## } 9 &# / d 4 { 9 -> { < / ( ; q, s, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, u, u, y, y, y, y, z, u, y, y, y, y, y, u, y, y, y, y, y, y, y, z, z, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, x, x, s, & ; ; & - . > > U@ Q$ . $ ; . > V@ ; Z, ; {c . S$ H= ' $ . + $ |* ]& > > . . 0' = ", +"y, t, t, y, ]q. . ]& + ]& + + - . . S$ & $ $ > ; L$ ]& V@ # = 1) > Q$ . - > . N$ ; S$ $ > Q$ $ . ] ; # . $ $ 0' & . ' $ o! S$ S$ S$ + & > ] & ) P$ | 2 S$ Q$ & & H= U@ ] & /& T@ ] ] ) ^& ~ | - N$ . ; | | X@ N$ | (& - . J/ ] 1 2 /& 1 { ) d { ~ $# ## { 2 ) $# { ( { { 2 ~ W@ 5 d ) 7- W@ : $# : W@ ## 1 : } b W@ [ 6- ,# 6 } &# $# 6 7 $# } $# 6 7 } &# } o $# 6 3* 9 &# j 9 == 8 7 $# / d a '# e d i $# :& 8 ~# 0 a N' 2* 8 e c n a a ># n 6 2* 0 d V$ 6 _ c ,# 7 6 6 ># V$ &# $# i n o [& ~# 0 6 n h h A~ ~# n i C; c h ~# k e c k n r Y$ 0 a k e c ,# ~# e {# e n C; n a e C; ~# ,# 0 c A~ e 0 0 g e h ~# ~# 8 e a h h c 7 8 0 e ~# c g a 7 j n ~# o 8 e c p g V$ c j a c a e h ~# g 2* h c 7 0 X$ b k ~# e c V$ } c h e j 0 c 7 j ~# 6 V$ C; [& i a A~ 6 $# ~# 7 b ,# 2* 6 ># 0 0 8 Y@ ~# e k c 0 6 0 ,# 6 D, ( $# 6- 5 a 8 ,# i V$ e b &# ~# &# j &# ,# b &# : 7 c a j b =# 6 9 &# $# $# < 7 6 1 1 b $# } a 8 ( 1 7 $# ## d $# &# $# /& ( ( 9 == &# ## <& Y@ 1 < [ ^ 9 ( 1 $# W@ & ; 2! H) s, u, z, z, y, y, y, y, y, y, y, y, z, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, q, . . - Q$ & ' N$ S$ & & Q$ . Q$ & > + . & . $ * . # T@ . . > + ; + $ $ $ + $ ]& ", +"y, u, t, u, ]q. k) $= |* . + = R- R- # Q$ & > & $ Q$ $ $ |* S$ $ ] $ = $ # & & > o! . - 5- Z! H= ~ P$ ] ; N$ N$ ] | S$ S$ ; > > & | W@ ; S$ ~ { |* | ! ; | N$ H= 2 R$ | ) & X@ W@ ~ | X@ *# ] X@ | ] ] Z! | ( { 7- : [ ) 5 W@ { D, } { ~ +# : / [ 4 { 9 $# < 9 / ~ 4 7 b Y@ < 2 ) $# ## < 1 [ : } /& $# &# &# : &# ## ## 7 d 7 &# 6 &# ) /& V$ a $# < 0 ,# ~# $# : 7 b d 7 D, b 6 5 [& $# Y@ { 6 7 $# 6 < D, a e 0 b N' b h o 9- K= ~# ># a 7 b ~# 0 a a c L= o L= k 6 a g ~# ,# C; ~# a b i 0 Q{ c 6! 0 0 a o L= L= n ~# Y$ 6! c 9- n L= i A~ Y> r [& n a e a 0 j 7 ~# g [& c ~# 8 e 2* h 7 g 0 e a V$ ~# n K] L= |& ~# K= n k g e c o ,# 7 ,# e ~# ~# 7 &# ,# 0 b 6 o _# ~# V$ a V$ a n ~# h o ~# i a 6 e ~# n n V$ 6 5 *= ~# Vj 7 a 7 } q> ,# 7 Q{ i a b -# 9 a 8 a g 6 [& ~# 0 b e e ,# L= 0 a {# a 1 c 8 d [ [{ a 7 &# j } ,# ,# 7 $# b 0 ( =# $# ,# ~# 9 $# $# < $# $# 7 &# < $# &# b :& 6 $# } 6 Y@ 9 V$ } < 6 V$ /& /& V$ $# 6 $# [ < &# < $# { { 9 < [ ## ~ *# %= s' v, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, z, y, y, z, u, y, y, y, y, y, y, y, y, x, s, u, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, ^, . + R$ ~ Q$ Q$ > * 1* z] & > & T@ P$ $= $ k) . * * . # # # V@ $ # - * ]& L$ o! > * ", +"y, y, u, t, 7' > ]& S- ]& T@ ] ; & & N$ - ! $= & > - > ] ~ & $ > Q$ k) & = ' Q$ U$ N$ o! | Q$ Q$ ; - N$ N$ R$ ; Q$ > . ; ~ | $ ; A; | 2 X@ ] | U@ N$ ] | 2 ] { W@ / I= 2 ; ^ N$ & ] N$ N$ & ; ( ) 4 } < N$ X@ ) `@ < ) ## ^ } 2 ^ ~ R$ ~ $# 2 [ $# [ < $# X@ $# &# ~# 7 i /& [ j $# ## ;> { [ 7 $# == } : $# ( b a } U- ( V$ a' 7 7 { a 6 == V$ -# %m $# : =# } d ( } e e 7 7 z: 2* $# 5 $# 0 V- c ( Y> c a ~# b ># V) ~# {# *= a a ># 8 c Y> e a A~ a 7 ~# 6 e ># a p 6! a ~# ,# ~# 0- ~# 0 {# ,# h h n c a h a ~# n ~# 6! h !# 6- Z$ 0 L= i i &# q> Y$ e o Q{ c o 6 ~# $# =# a 6 b 7 X$ 8 c e e ~# L= ~# a X$ X$ K/ 6 o 8 ~# X$ b } Y> n a n r L= e V$ 7 b b 0 L= d a ~# 6 6! X$ d j a c h ,# c i a 7 :& 6 i c W$ &# V$ a &# 0 a a n 7 '# $# ># ~# 0 a' &# N' 9 0 -# 7 l n {# 3* ,# ,# 6 7 a' a {# {# L= 7 ,# a $# b b d < =# -# e $# } $# } d D, V$ &# $# =# < i < ## $# 7 $# 7 ) 6 6 [ ( ( 6 $# b 1 d [ a 7 6 6 d } { $# / ( b } &# 6- 2 { $# 4 } -> } [ < { ~ ~ R@ q, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, x, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, 5' U@ $ S$ o! ; - Q$ 0' # o! > | > $ (& ]& . > U@ - 5- ' ]& V@ $ > R- . T@ $ Z, . * $ L$ ]& ", +"y, y, u, t, ]q.]q.]q.{q.7' (q.(q.8' 8' 8' Mp.!q.!q.,q.8' Mp.8' 8' !q.+' Mp.Mp./q. q.Mp.+' Mp.Mp.+' z~ z~ q, +' Mp.Mp.6' q, z~ z~ z~ q, q, z~ q, q, z~ z~ z~ z~ Il.|1 z~ 9i.ah.|1 9| e^ *) 2! 2! |1 5' 2! 98.9| 2^ ^, *) *) <{ <{ `, ^, jP *) 2^ jP I/.J$ J$ J$ jP jP 9i.*) 9| jP I/ BN 2^ J$ ;b L$ R@ ]& I/ I/ L$ ]& 5_ 1) # ]& 0' Dv # + 0' L$ =[ ]& $ ]& ]& V@ > + + # ]& # . l) ]& # > $= $ # ]& $ ]& + & =' . V@ . = . |* + + ^& Q$ - # > ' Z, V@ > = U@ * T@ = - $ T@ $ ] . %= ' & Q$ Q$ > & . & Q$ $ Q$ ; ; T@ ^& ; . ;# ~ *' . |* U@ S$ & . Z! N$ }* H= ; S$ | *# # 7- | > > ; ; & (& - ] 4 ~ { U@ T- N$ ~ ) 2 Q$ g{.$# 2 1 [ 1 1 } : 4 { | Y@ 2 ) } ~ [ / [ Y@ &# } { ) { } 8- ( # *# U- $# 2 ( ~ [ =# $# / | [ } 6 $# } a $# / 4 &# &# -# $# f] $# 7 { ) $# 7 6 < /& ( &# 6 : < ~ } 8 &# ( b 7 { 7 6 a 7 6 ~# 7 } b :& 0 ,# 9 9- 2* b {# [ a i ,# 6 c } d d g h n 7 ~# Y> ,# C; !# ~# e b 8 ~# L= 6- i ~# e c L= ~# [& 7 g ,# a ~# ~# o L= 7 {# ~# b &# X$ |& ~# o 7 6 7 6 a 9- n V$ j e ~# 7 D, ( V$ a b b 6 ~# c g a 6 0 $# } g } ~# c ~# e 6 6 3* 8 !# n a p c c r 0 h h c n a h C; o a c g q> ~# ,# ,# e {# j a c V$ 6 k {# 7 b d d a a a c 7 b a j ~# a 8 &# 6 ~# &# j $# ,# a $# ,# g 3* 6 e ,# ( d ,# V$ j j k 7 ,# b b 7 $# d # } N' < b 6 =# $# 7 &# $# Y@ $# } 6 ,# 5 d ## d @# } j 7 } [ : 4 6 7 { Y@ /& : { $# ( ( : { { ; $# [ V$ ( 4 [ ( ## { ) X@ { . q, s, u, y, u, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, u, y, u, u, y, u, z, y, y, y, y, y, s, x, V! ] . R$ ] o! > $ * > . = Q$ > Z, = . > & Q$ k) $ N$ . $ = + 0' $ . $ = + + > . + ", +"y, y, y, u, ]q. + ]& $ V@ ' $ R@ ]& . = $ . U@ $ * # Z, . T@ V@ + $= Q$ 0' + > & $ * S$ T@ o! * * = . $ > 0' Q$ U@ $ & . $ Q$ }* & . Z, + Q$ ]& $ ; S$ ' ; & ; ^& H= ~ T- ' N$ | T@ P$ | | ~ ~ ; [ < ) ( | ) ), & *' | ] ; & | ; | ^ ~ ~ ~ ) 1 2 8- 2 2 ~ /& - ^ 1 [ { ( ; [ | [ 2 ~ 6 d { ) W@ | a [ : : T$ ## W@ / 2] $# } 7 { $# ## [ } { 2 : 6 { } $# _ ) d a 8 } 6 g ( $# 2 $# $# $# [ 7 $# } ## $# [ d &# < -# 7 } $# ( } $# 7 a :& 9 ( $# $# e a 6 c e j ~# e e 3] ,# a ># 6 6 j *= a ~# d i 0 0 a k ~# L= ~# a V$ &# ( a c e L= a n ~# J] L= e a ~# tA n ~# a' ~# d b 7 D, 7 *= a ~# c 7 ,# 6 ~# 7 e 6 $# a' c 7 7 6 6 l Y> ,# o i 0 k ;= e Y@ e j 7 h 7 7 0 7 8 n W$ *= ~# F! c a n [& i b 0 0 V- e ~# e F! 0 *= e ,# c c q> c d c [& a a ,# 7 7 7 j a 6 6 ,# 1 ,# ~# 8 &# &# h [& ,# e a 6 7 i ~# j 0 ( &# &# 6 ># Y@ ( b 7 / &# Q{ 7 7 3* q> d -# $# 7 &# } &# $# } &# ( 5 < 1 U- a [ } &# < } &# I= < b 7 } ( $# } } } : { 9 : 1 -# ( $# ## : ~ { 2 $# 1 } 2 4 ) 2 | d / [ { [ { { ## ; `, s, y, u, x, 7' x, y, x, x, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, z, y, y, x, u, x, y, y, y, y, y, y, y, y, u, r, + ; N$ N$ > . $ ]& T@ . Q$ ' > > + V@ Z, $ ' = + L$ > $ = . . . * = * $ # * $ Q$ # ", +"y, y, y, u, 7' = ]& }, $ L$ + # + V@ . ]& # + = |* $ . - [* Z, > Q$ - ]& [* # $ . # $ Q$ . U@ H= |* & | $ (& # $ ; - > + ' ; Q$ * * . ; S$ U@ H= & Q$ ; ; P$ Q$ Q$ > S$ Q$ ^ 4 { > ~ { | ] U@ ~ ; & ) & . & N$ W@ ] & ~ [ W@ Z! U$ N$ X@ > N$ N$ -.1 ) ) { | } < ~ ~ | N$ ) 2 W@ [ ## { / W@ Z@ 2 / W@ [ ) ## } 4 +# 1 { / ## -# < -# : $# < $# ## [ / $# $# *# 5 &# $# 5 1 { < ## 6 =# [ *# ( ) ## < -# < < [ ## &# V- } $# V$ b V$ &# 6 7 < 6 7 6 d x0 ## a e b N' ## a 6 9 6 6 7 ,# 7 b &# ,# 6 !# r 0 L= a 0 L= ,# ~# 8 6 g s> n {# {# a ~# 6 9 ~# ~# -# q> 5 V$ b k k d a 6 } $# b 7 7 e ,# n a ~# d a e a ~# V$ i e e 0 c a 0 c } L= a L= e e ~# d -# *= i j L= L= n j i V$ 8 &# ## 2* 6 g Q{ a j vk ~# 8 e $# 6 6 l d $# b b 6 q> ,# vk 9 9 i 7 Y$ L= 9 a 0 0 7 a ># b 6 ( 7 ,# 0 ~# 6 9 e a' a 6 A~ $# 0 ,# 6 8 &# d b 6 b } d 7 7 < { 6 [ 4 b } $# [ } 7 == ( /& ( 6 { } g &# e 7 } < } } =# } &# 7 2 [ < [ } < { [ Y@ } { Y@ d Y@ [ ## ~ : [ } ## { ## $# ( 2 ## 4 P$ { /& { < X@ ~ 2 q, }) x, y, y, t, x, y, x, t, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, y, y, y, y, y, y, y, y, y, y, y, y, y, 8' u, z, y, y, y, y, y, y, y, t, y, y, y, y, u, s, u, y, z, y, y, x, M$ > Q$ $ & $ + # * R- Z, & . = * . ' . k) . . $ Z, $ !, + L$ # = ]& * $ + Z, $ p9 $ ", +"y, y, y, y, 8' ]q. = . V@ $ $ . 0' .( $ $= & ' Z, + ]& > $ . & > . X! # T@ . - R$ ~ - . . . ,Q ] - o! ^ ; $ $ . ; k) . V@ ; ; > > ' ; S$ S$ 2 | | N$ | ) ; ] ] ] `@ ~ ; ^& H= & | ; > ^ J= 2 - { ( ) ] | 2 X@ N$ 2 N$ | ] & ) ] Z! 2 ) ) | ^ 2 1 ,# 1 ## { ) [ 7 { [ D, ~ | < { T$ ( 2 { D, ;# } b ( &# } } { J= [ [ a } ~ $# 6 1 ^ $# $# W@ 5 7 d { ( ## 1 @# : ( J= $# } } &# } -# } -> $# } 6 } } $# { } V~ } d 6 6 6 ~# a } g 7 b e 6 7 ( a ( e b a a 7 0 a e 9- {# e 9 {# a a' d $# a' 7 $# g 7 ,# $# ,# X$ 9 0 c j 7 ~# a X$ -# b &# Q{ [& 7 a e ># a d a n a W$ V$ ,# g 0 0 7 {# j &# {# L= a ~# ~# 8 a' a 2* i b e a 8 a k ~# 7 X$ h *= ~# 7 e [& 8 j c 6 a 0 c 8 6 e a i 8 L= ~# d &# d ,# ,# 0 a e X$ k 6 7 e 5 $# 6 6 ,# a 9 5 +# -# a } &# $# a 6 6 7 6 < ~# } d e &# $# 8 L= $# 6 6 ## &# 8 $# 1 &# } &# a } 7 &# a' j 9 :& $# ( [ &# 7 J= 7 V- < ( 7 $# < d ( ~ *# } ( Y@ ( Y@ == 7 { 6 } 1 7- : } { 1 [ 2 } } { } { 2 *# < [ < 2 < d *# 2 ) | R@ s, u, y, u, y, y, y, y, y, u, z, u, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, u, u, y, y, y, u, 6' # . ; ]& Q$ Z, & . Z, T@ $ ] . Z, > . > ; & ; > $= ]& . . & + + l) $ ]& 0' . X! ]& $ $ ", +"y, y, y, y, 7' 7' ; > > ; U$ ^& ! N$ *# N$ 5- & ; | ] - ; ! { ## N$ [ 2 Z! P$ N$ N$ ^ S$ [ } ; R$ ! ) Y@ Y@ : { { d { ~ } [ : ,# ( Y@ $# { ~ 1 /& [ { [ N$ Y@ { ## $# 2 $# ## { $# ( ( 9 :& 6 J= [ ) 2 ~ &# =# } 6 -# V) 9 6 7 V$ Y@ X@ ## b { 4 6 e b b } ( -# } -# b 6 L= 6 i 9 ,# D, 9 : ~# } /& Y> { 5 d -# ,# b &# 7q.6 } b } => c Y> c e [& j 8 c6 k 0 $# g n i 0 9 a 0 a ># 7 ># ~# a 0 a ~# d 0 i L= b n ,# X$ -# 7 0 {# 0- L= h 7 g d b %# 6 ~# e e 6 0 3] i a [& h =# V$ X$ 0 V$ ~# ~# 7 g i 7 $# $# 7 n 7 V- j W$ a 6 -# $# 7 6 7 i i $# $# } ~# 7 8 a 6 k ,# ~# V$ 6 a $# 6 a V$ a ,# b == } a $# : &# == 7 V$ 7 6- 7 a &# &# 6 7 6 V$ 1 : [ 8 V$ } ,# 6 9 6 V$ =# &# ,# } $# &# i $# a 6- < b 9 9 $# a ## ( V$ ( $# &# V$ ( [ ( ( ( ( V$ [ } } a ( /& 2 : { : 6 } < { | [ 2 ) < { $# d } { ~ { ) ) ~ ## 2 2 | { ; ) ~ U$ G= s, s, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, u, y, y, u, y, u, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, x, u, u, s, u, s, y, y, 6' . + ; - . V@ T@ U) T@ T@ 0' . ]& = . ' S$ ; > S$ . & ' H= Q$ = # Q$ V@ . T@ $ $ Z, = ]& ]& ", +"y, y, y, y, ]q.8' |* = Q$ ; ; ; ] ] & N$ Dv & $ ^& !, $ %= & o! . V@ . - %= > $ | N$ & 4 ] ; 2 N$ 2 ^ ~ g{.X@ N$ ] X@ | U@ ^ ~ U@ W@ W@ ) > | g{.| ~ [ ] > H= ^ ~ ; d ( 2 W@ ~ ) ~ ## ( } : { < J= 4 W@ $# 2 2 { $# W@ } $# Y@ W@ g{.6 { } { 2 { / -# &# [ ~ & ) 6 /& ~ { < '# : W@ &# $# 9 } $# } ( < 6 : } *= b 7 i ( : 7- d 6 i j a d d d b $# { [ d 0 a &# < ( d 6 $# 6 D, $# J= 0 9 } ~# 8 6 a D, 7 6 j M' 3] 6 n 6 ,# ~# C; ,# e e A~ &# b j 0 a ,# a 6 V- 7 0 a tA c 7 &# $# i a ~# ,# 6 &# &# 8 8 q> 6 0 d L= $# b 6 8 *= n b b a 7 } 7 i -# 6 e i ,# &# 8 d 8 6 7 ~# } } 2* a ,# 7 ,# d 7 9 7 a g 6 6 d 0 6 ,# } a a a U- } k } ,# a == ( a d $# $# a == 6 $# 8 &# &# 6 a' } } 7 &# 6 ~# e g ,# _ +# 6 :& -# : i &# } $# : } { } b b J= , 6 J= < ## [ ( < 7 $# } $# _ ## / $# a $# ## == | *# *# ## } d < < { *# 7 [ ( X@ 2 } Y@ /& [ { { / [ { < { } 1 : } < X@ Z! ~ 2 ## | %= > r, A, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, u, y, z, z, y, x, y, u, s, y, y, y, y, s, x, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, s, y, x, )~ . > & > !, V@ > # > Y! 0' # & T@ & $= . * # $ + Z, $ $ Q$ = . . # M$ ]& + . $ $ = = ", +"y, y, y, y, z, !q.!q.]q.]q.]q.2q.]q.(q. # # $= |* . = > V@ $ $= $ ]& # > * * #^ + > + + + ' T@ > + * T@ = . = - Q$ . . - o! Q$ + T@ S$ ; > Q$ * & & Q$ > U@ & - > (& > $ > U@ & & H= S$ N$ { U$ ] 2 { 2 R$ H= & U@ ; ; ; ~ ] { 4 ] ] ) ^& | | N$ ~ N$ ] ] *# | ) { ] d 4 4 } ~ ~ ) [ T- ) , W@ ## &# ~ ] W@ ( 4 q> ( `@ < { | [ [ N$ ) 2 { $# ( ## *# /& $# *# 1 b &# $# : [ ## ( $# ( 8 $# 7 6- ## ( ( } &# ( b 8 7 &# } ## : } d 6 d d a &# ## 2 9 b [ 6- D, a 6 V$ 0 Y> *# } ,# 6 b a e 6 J] 7 e a a ~# ,# ~# i ~# L= $# 7 ># a Y> i k d d ,# 0 a 3] M' 6 -# e $# ># *= 6 $# 8 ~# a 8 : 9 ~# ,# 3* a 6 [ } 7 L= ~# ># 7 6 $# } < $# 9 ~# [{ 9 b e 7 g 7 ~# &# 3* {# &# n 7 6 c a ,# } < 4 d g 8 ,# 7 Y> 1 9 ( } ,# V$ b ,# 9 ,# b } ,# g a ,# 0 ># J= ,# $# e 7 b 7 j $# } 6 $# &# b $# $# 6- 8 $# } 6 b a Y> 0 b $# ,# &# :& a 4 : } $# V$ $# < ~ &# $# -# 6 { } +# < : 6 6 ## &# ( d } ~ } :& } } ( 6 / ) { $# [ ## *# ( ) [ d { [ g{.< 6 2 { } X@ $# } : ~ { T- | ~ ~ : [ ~ ( ## Y> ~ ) ^ %= ## { & 6' w, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, u, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, y, s, s, v, @ T@ Q$ {c > Q$ > > - * }* . . $ $ $ = $ . $ $ Q$ . ' $ & * $ M$ ]& . = + Z, ]& ]& L$ = ", +"y, y, y, y, 6q.9q.(q.]q. # 0' V@ + # + ]& $ $ 5_ . S$ . + !, # = V@ 1* S$ ' # L$ + # > V@ * . - ]& * ]& . . # ]& + - * $ ; ' $ Q$ ; > Q$ - & o! T@ . - ; > 5- o! %= ; N$ | & | > & *' H= > | = ] ; | ] ^& { aq.H= H= & N$ ; > ] [ `@ X@ ) ^ ^ & < 4 S$ 2 N$ N$ ; ] ; `@ ) [ 2 ~ ) ^ [ W@ [ [ Y@ $# 2 } ) %# { *# [ [ Y@ / ) | W@ ] ~ T$ < [ | ] { +# } [ _ } +# ( [ < / [ : W@ ) +# | *# ## } 2 [ { b -# } b =# } <& 9 -# : / { d ## ## { 7 ## $# ( 9 $# d } Y> V$ 9 o i ( b e 9 /& ( Y@ 0 6 6 $# == 0 [ } ## V~ a d k ,# 7 ># Y@ 7 / ,# k ## 1, ~# 0 c 6! i a' ,# ,# $# h 7 ~# k 4 } 6 '# $# ,# : Y> 6! 6 0 } &# $# a Y@ &# g ~# $# 6 a =# ( c c i $# $# ## ## 6 7 7 J= < 7 j : 7 e e 8 ,# X$ 7 6 :& -# e a 6 6 a 0 [& < d 6 &# -# a < d -# : 9 5 7 6 b a 7 a a } 9 6 ,# a } < &# &# $# a b V$ $# == } ## } b ,# &# n } &# } == < < [ { d $# 9 d < [ 1 0 -# $# | $# 6 $# &# b 7 &# } $# : 9 Y@ 6 $# < { } 6 Y> 1 &# < [ { $# -# *# / ## [ ) { { 2 : d [ N$ $# < | Z! W@ [ | < { { H= N$ ~ { ) H= ) ; 2 d ! ^ `, r, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, x, s, > }* . . S$ . # & $ # = X! Z, . ]& = . $ # R@ V@ . S$ V@ # M$ ]& ]& V@ ^& * + + M$ Z, = 0' ", +"y, y, y, y, z, . # $ * $ = U$ ; = * = = . . = . . . $ = * - Q$ # . = $ U@ ' - . & - # ; & S$ - U@ 0' . | & > . `@ $ ] A; . & N$ H= | * Q$ ; . ; ' & Z@ ~ ; - ] & A; S$ & U@ H= ) T- & ] |* ] U$ A; | ! ^ ; X@ { P$ ; ~ ~ ) 1 | ~ ] | ^ `@ | 6 ~ Q$ ] 2 | 4 / { ] ( W@ 7 ~ ( { | ;# $# 2 { < W@ [ X@ [ { [ [ ) : ) ) 7 $# | $# : 2 } ## X@ :& 6 *# : [ < } } $# a : N' ( } { 3* $# V$ a &# 8- 7 b 6 ( } } 6 &# 6 9 a } 7 ,# 6 9 q> } 6 e $# / $# 6 a a ( 8 6 $# b d b ,# ,# 6 == a ,# q> 7 } 9 0 3] 7 k 7 $# &# ~# b d 6 7 6 3* 6 a j $# a ~# b k k $# 6 ,# 6 6 7 } b a ~# -# V$ Y> -# b $# } 6- 6 == a 6 6 ,# ## 6 $# 7 7 7 7 ~# 8 d 6 -# e 7 d g } 1 k X$ d ># b a a [& ( a &# < } Y@ } 5 U- Y> 5 6 $# $# a g } e $# == a $# : 7 k 7 a } [ 7 7 6 7 &# 6 $# $# $# $# $# [ $# : a } -# 9 [ : /& d < 6- $# $# [ $# : $# $# Y@ { -# =# $# : /& [ X@ / < ## < 3 : } 2 / &# } ^ < 1 W@ ) } X@ W@ 1 .# } : ) ] 2 X@ ) | ) } 2 ) | ~ { ) ~ 2 ~ ] 2 ~ X@ 4 | W@ ^, v, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, s, v, R@ = ^& . Dv $ X! - S$ . > . * V@ . & [* > $ Q$ > # > $ L$ k) # L$ 0' . # p9 . ]& + $ Z, ", +"y, y, y, y, z, ]q.7' (q.]q.]q. V@ = = T@ . 0' . T@ . X! # # = . & # = * Z, 0' = > $ [* T@ > o! !, > & = U@ $ o! ~ U@ V@ T@ | - k) Z3 N$ H= & ' ' | %= H= 2 ~ ^ & H= U$ S$ S$ U@ U@ |* > N$ & > & U@ ] X@ ^ 2 | | ; 2 - [ ; H= 2 U@ | | | X@ ^ ~ ^ N$ ~ ^ /& ( | - ) 2 N$ ~ %# } | *# b } { { | / ^ ) } 1 { [ { } [ ~ [ 6 *# ## $# } { [ { 2 ## | ~ { { 6 6 W@ ( ## ## ~ [ 2 < } 2 e } Y@ +# / 6 6 ( { &# b b 6 1 ( 9 9 7 7 $# 6 d e D, 6 ~# 7 } 7 9 9 i 0 g } $# 6 ># ># i ,# e a b ## $# d ,# 6 ,# 6 bq.0 c a 1 b Y@ ,# k ,# 3] ,# a ># a ,# e -# ## 1 e 7 7 a -# } 6 ~# 6 ,# i } &# 8 c [ a 7 a a d -# e a e 7 8 ~# d i b a ,# i ,# g $# -> } 0 d } $# $# d 7 ,# 7 == Y> V$ 9 } $# 6 a } b ( ~# ## d c a $# ( /& 6- J= 7 [& 6 a [ 7 $# 6 / D, { 9 b } 6 7 1 &# b ,# &# [ } ## &# 7 5 $# 7 7 : { ## [ d | [ ( ## } V$ ( < b ## [ J= == d 2 ~ ## < { } 2 } 7 { R$ | ( < ) ~ { 2 ## ## { [ ~ / } 1 ( ~ ~ N$ [ < [ ^ } ~ /& U@ | H= X@ : ## 2 R$ H= 2 ~ 2 | X@ 6 =) q, y: y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, u, y, y, y, y, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, s, R@ * * ; | Q$ k) [* > ' & . = . & # . . Z, . . = M$ ]& J$ L$ I/ + = # # ]& * ]& ]& = ]& R@ "}; diff --git a/eznixOS12X-calamares/eznixOS12X/splash/welcome.png b/eznixOS12X-calamares/eznixOS12X/splash/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12X-calamares/eznixOS12X/splash/welcome.png differ diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-17/16865021501.desktop b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-17/16865021501.desktop new file mode 100644 index 0000000..5daa0c8 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-17/16865021501.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch TerminalEmulator +Icon=org.xfce.terminalemulator +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-AppStream-Ignore=True +Name=Terminal Emulator +Comment=Use the command line +X-XFCE-Source=file:///usr/share/applications/xfce4-terminal-emulator.desktop diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-18/16865021502.desktop b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-18/16865021502.desktop new file mode 100644 index 0000000..b6dd1b5 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-18/16865021502.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch FileManager %u +Icon=org.xfce.filemanager +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=inode/directory;x-scheme-handler/trash; +X-AppStream-Ignore=True +Name=File Manager +Comment=Browse the file system +X-XFCE-Source=file:///usr/share/applications/xfce4-file-manager.desktop diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-19/16865021503.desktop b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-19/16865021503.desktop new file mode 100644 index 0000000..96042ba --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/launcher-19/16865021503.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch WebBrowser %u +Icon=org.xfce.webbrowser +StartupNotify=true +Terminal=false +Categories=Network;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https; +X-AppStream-Ignore=True +Name=Web Browser +Comment=Browse the web +X-XFCE-Source=file:///usr/share/applications/xfce4-web-browser.desktop diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/panel/whiskermenu-7.rc b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/whiskermenu-7.rc new file mode 100644 index 0000000..2cf1948 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/panel/whiskermenu-7.rc @@ -0,0 +1,89 @@ +favorites=xfce4-web-browser.desktop,xfce4-mail-reader.desktop,xfce4-file-manager.desktop,xfce4-terminal-emulator.desktop +recent= +button-title=Menu +button-icon=emblem-debian +button-single-row=false +show-button-title=true +show-button-icon=true +launcher-show-name=true +launcher-show-description=false +launcher-show-tooltip=false +launcher-icon-size=2 +hover-switch-category=true +category-show-name=true +category-icon-size=1 +sort-categories=true +view-mode=2 +default-category=0 +recent-items-max=0 +favorites-in-recent=true +position-search-alternate=true +position-commands-alternate=true +position-categories-alternate=true +position-categories-horizontal=false +stay-on-focus-out=false +profile-shape=0 +confirm-session-command=true +menu-width=479 +menu-height=500 +menu-opacity=100 +command-settings=xfce4-settings-manager +show-command-settings=true +command-lockscreen=xflock4 +show-command-lockscreen=true +command-switchuser=dm-tool switch-to-greeter +show-command-switchuser=false +command-logoutuser=xfce4-session-logout --logout --fast +show-command-logoutuser=false +command-restart=xfce4-session-logout --reboot --fast +show-command-restart=false +command-shutdown=xfce4-session-logout --halt --fast +show-command-shutdown=false +command-suspend=xfce4-session-logout --suspend +show-command-suspend=false +command-hibernate=xfce4-session-logout --hibernate +show-command-hibernate=false +command-logout=xfce4-session-logout +show-command-logout=true +command-menueditor=menulibre +show-command-menueditor=true +command-profile=mugshot +show-command-profile=true +search-actions=6 + +[action0] +name=Man Pages +pattern=# +command=exo-open --launch TerminalEmulator man %s +regex=false + +[action1] +name=Search the Web +pattern=? +command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u +regex=false + +[action2] +name=Search for Files +pattern=- +command=catfish --path=~ --start %s +regex=false + +[action3] +name=Wikipedia +pattern=!w +command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u +regex=false + +[action4] +name=Run in Terminal +pattern=! +command=exo-open --launch TerminalEmulator %s +regex=false + +[action5] +name=Open URI +pattern=^(file|http|https):\\/\\/(.*)$ +command=exo-open \\0 +regex=true + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/displays.xml new file mode 100644 index 0000000..0dc41fc --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/displays.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml new file mode 100644 index 0000000..9ddc443 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/thunar.xml new file mode 100644 index 0000000..ff26405 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/thunar.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml new file mode 100644 index 0000000..e72def1 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml new file mode 100644 index 0000000..d7ea804 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml new file mode 100644 index 0000000..5865d01 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml new file mode 100644 index 0000000..8c0f72f --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml new file mode 100644 index 0000000..4fdf554 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml new file mode 100644 index 0000000..8346363 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml new file mode 100644 index 0000000..c1d4b3c --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml new file mode 100644 index 0000000..e139250 --- /dev/null +++ b/eznixOS12X-calamares/eznixOS12X/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/BldHelper.sh b/eznixOS12Xdev-calamares+debian-installer/BldHelper.sh new file mode 100755 index 0000000..6bdf8b9 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12Xdev +SUFFIX=amd64 +BUILD=eznixOS12Xdev +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12Xdev" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12Xdev.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12Xdev-calamares+debian-installer/bldeznix12Xdev.sh b/eznixOS12Xdev-calamares+debian-installer/bldeznix12Xdev.sh new file mode 100755 index 0000000..18c87e0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/bldeznix12Xdev.sh @@ -0,0 +1,397 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up eznixOS environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution daedalus \ + --archive-areas "main contrib non-free non-free-firmware" \ + --initsystem sysvinit \ + --mirror-bootstrap http://deb.devuan.org/merged \ + --mirror-chroot http://deb.devuan.org/merged \ + --mirror-chroot-security http://deb.devuan.org/merged \ + --parent-mirror-bootstrap http://deb.devuan.org/merged \ + --parent-mirror-binary http://deb.devuan.org/merged \ + --parent-mirror-binary-security http://deb.devuan.org/merged \ + --parent-mirror-chroot http://deb.devuan.org/merged \ + --parent-mirror-chroot-security http://deb.devuan.org/merged \ + --parent-mirror-debian-installer http://deb.devuan.org/devuan \ + --debian-installer live \ + --debian-installer-distribution daedalus \ + --debian-installer-gui true \ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application eznixOS12X \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +## Add extra firmware packages +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $eznixOS12X/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12Xdev/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.binary/ +mkdir -p $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d/ +mkdir -p $eznixOS/eznixOS/config/includes.installer//usr/share/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/sbin + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12Xdev $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12Xdev/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12Xdev/bootloaders/* $eznixOS/eznixOS/config/includes.binary +cp -r $eznixOS/eznixOS12Xdev/D-I-installer/graphics $eznixOS/eznixOS/config/includes.installer/usr/share +cp -r $eznixOS/eznixOS12Xdev/D-I-installer/themes $eznixOS/eznixOS/config/includes.installer/usr/share + +cp $eznixOS/eznixOS12Xdev/sources-calamares/* $eznixOS/eznixOS/config/includes.chroot/usr/sbin +cp $eznixOS/eznixOS12Xdev/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12Xdev/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12Xdev/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12Xdev/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12Xdev/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12Xdev/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12Xdev/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12Xdev/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12Xdev/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12Xdev/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d +cp $eznixOS/eznixOS12Xdev/D-I-installer/scripts/* $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d +cp $eznixOS/eznixOS12Xdev/D-I-installer/preseed/* $eznixOS/eznixOS/config/includes.installer + +# Uncomment below line if you have packages in the misc64 folder to include: +cp $eznixOS/eznixOS12Xdev/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/BldHelper.sh b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/BldHelper.sh new file mode 100755 index 0000000..6bdf8b9 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12Xdev +SUFFIX=amd64 +BUILD=eznixOS12Xdev +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12Xdev" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12Xdev.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_debian.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_debian.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_debian.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_debian_dark.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_debian_dark.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_debian_dark.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_installer.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_installer.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_installer.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_installer_dark.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_installer_dark.png new file mode 100644 index 0000000..022080a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/logo_installer_dark.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/note_icon.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/note_icon.png new file mode 100644 index 0000000..6eabaef Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/note_icon.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/warning_icon.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/warning_icon.png new file mode 100644 index 0000000..a6a9e5c Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/graphics/warning_icon.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/preseed/preseed.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/preseed/preseed.cfg new file mode 100644 index 0000000..2c1f2ca --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/preseed/preseed.cfg @@ -0,0 +1,33 @@ +################################################################################ +# Title: preseed.cfg +# Description: This preseed file includes configuration settings for a custom debian-installer iso. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +### You can choose to install non-free and contrib software. +d-i apt-setup/non-free boolean true +d-i apt-setup/contrib boolean true +d-i apt-setup/non-free-firmware boolean true + +### Select which update services to use; define the mirrors to be used. +# Values shown below are the normal defaults. +d-i apt-setup/services-select multiselect security, updates, backports +d-i apt-setup/security_host string deb.devuan.org + +### Uncomment this to add multiarch configuration for i386 +#d-i apt-setup/multiarch string i386 + +### Remove popularity-contest +popularity-contest popularity-contest/participate boolean false + +### Disable root account and add sudo previleges to the user +# Skip creation of a root account (normal user account will be able to +# use sudo). +d-i passwd/root-login boolean false + +### Keep /etc/default/grub file +d-i grub-pc/default string keep + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07final-cleanup b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07final-cleanup new file mode 100755 index 0000000..04d7c33 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07final-cleanup @@ -0,0 +1,16 @@ +#!/bin/sh -e + +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 + +# This script removes unwanted software and files after Debian installation. + +# Remove unwanted packages +chroot /target apt purge --autoremove -y \ + calamares \ + calamares-settings-debian \ + raspi-firmware + +# Clean unnecessary files +chroot /target rm -r /boot/firmware diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07grub-config b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07grub-config new file mode 100755 index 0000000..3307899 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07grub-config @@ -0,0 +1,33 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07grub-config +# Description: This script configures grub defaults after Debian installation. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Defines the variables +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="EznixOS" +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" +GRUB_CMDLINE_LINUX="" +GRUB_GFXMODE=1440x900 +GRUB_DISABLE_OS_PROBER=false + +# GRUB configuration file path +GRUB_CONFIG_FILE="/target/etc/default/grub" + +# Modify the GRUB file +sed -i "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=$GRUB_DEFAULT/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_TIMEOUT=.*/GRUB_TIMEOUT=$GRUB_TIMEOUT/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_DISTRIBUTOR=.*/GRUB_DISTRIBUTOR=\"$GRUB_DISTRIBUTOR\"/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"$GRUB_CMDLINE_LINUX_DEFAULT\"/" $GRUB_CONFIG_FILE +sed -i "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"$GRUB_CMDLINE_LINUX\"/" $GRUB_CONFIG_FILE +sed -i "s/^#GRUB_GFXMODE=.*/GRUB_GFXMODE=$GRUB_GFXMODE/" $GRUB_CONFIG_FILE +sed -i "s/^#GRUB_DISABLE_OS_PROBER=.*/GRUB_DISABLE_OS_PROBER=$GRUB_DISABLE_OS_PROBER/" $GRUB_CONFIG_FILE + +# Run update-grub after modifying the file +chroot /target update-grub diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07rebuild-icon-caches b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07rebuild-icon-caches new file mode 100755 index 0000000..2b3c0ba --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07rebuild-icon-caches @@ -0,0 +1,13 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07rebuild-icon-caches +# Description: This script rebuilds the icon caches after Debian installation. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Rebuild the icon caches +chroot /target find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \; + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07update-system b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07update-system new file mode 100755 index 0000000..d8860e2 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/scripts/07update-system @@ -0,0 +1,16 @@ +#!/bin/sh -e + +################################################################################ +# Title: 07update-system +# Description: This script updates the system after Debian installation. +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Update the system +chroot /target apt update && apt upgrade -y +chroot /target apt dist-upgrade -y + +# Clean up unnecessary packages +chroot /target apt autoremove -y diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/themes/Clearlooks/gtk-2.0/gtkrc b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/themes/Clearlooks/gtk-2.0/gtkrc new file mode 100755 index 0000000..6b6ea7c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/themes/Clearlooks/gtk-2.0/gtkrc @@ -0,0 +1,444 @@ +# Credit: A few of the modeifications here were taken from the BSM Simple 0.8 theme by Bruno Schmidt Marques. +# Please keep this gtkrc in sync with the other ones from Clearlooks based themes. + +gtk-color-scheme = "base_color:#ffffff\nfg_color:#101010\ntooltip_fg_color:#000000\nselected_bg_color:#80A0C3\nselected_fg_color:#ffffff\ntext_color:#1A1A1A\nbg_color:#e0e0e0\ntooltip_bg_color:#f1f1f1" + +include "panel.rc" + +style "default" { + xthickness = 1 + ythickness = 1 + + ####################### + # Style Properties + ####################### + GtkButton::child-displacement-x = 1 + GtkButton::child-displacement-y = 1 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::image-spacing = 4 + GtkToolButton::icon-spacing = 4 + + GtkCheckButton::indicator-size = 14 + + GtkPaned::handle-size = 6 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 15 + GtkRange::stepper-size = 15 + + GtkScale::slider-length = 23 + GtkScale::trough-side-details = 1 + + GtkScrollbar::min-slider-length = 30 + GtkMenuBar::internal-padding = 0 + GtkExpander::expander-size = 16 + GtkToolbar::internal-padding = 1 + GtkTreeView::expander-size = 14 + GtkTreeView::vertical-separator = 0 + + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + WnckTasklist::fade-overlay-rect = 0 + # The following line hints to gecko (and possibly other appliations) + # that the entry should be drawn transparently on the canvas. + # Without this, gecko will fill in the background of the entry. + GtkEntry::honors-transparent-bg-hint = 1 + + GtkEntry::progress-border = { 2, 2, 2, 2 } + + #################### + # Color Definitions + #################### + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = shade(0.92,@bg_color) + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color # Color for selected items. + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.90, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[ACTIVE] = "#80A0C3" + base[SELECTED] = "#80A0C3" # Color for selected base items. + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = darker (@bg_color) + + engine "clearlooks" { + colorize_scrollbar = FALSE + reliefstyle = 1 + menubarstyle = 2 + toolbarstyle = 1 + animation = TRUE + radius = 3.0 + style = GUMMY + + # Set a hint to disable backward compatibility fallbacks. + hint = "use-hints" + } +} + +style "wide" { + xthickness = 2 + ythickness = 2 +} + +style "wider" { + xthickness = 3 + ythickness = 3 +} + +style "entry" { + xthickness = 3 + ythickness = 3 + + bg[SELECTED] = @selected_bg_color + fg[SELECTED] = @text_color + + engine "clearlooks" { + focus_color = @selected_bg_color + } +} + +style "spinbutton" { + + engine "clearlooks" { + hint = "spinbutton" + } +} + +style "scale" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" {#80A0C3 + hint = "scale" + } +} + +style "vscale" { + + engine "clearlooks" { + hint = "vscale" + } +} + +style "hscale" { + + engine "clearlooks" { + hint = "hscale" + } +} + +style "scrollbar" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + hint = "scrollbar" + } +} + +style "hscrollbar" { + + engine "clearlooks" { + hint = "hscrollbar" + } +} + +style "vscrollbar" { + + engine "clearlooks" { + hint = "vscrollbar" + } +} + +style "notebook_bg" { + + bg[NORMAL] = shade (1.02, @bg_color) +} + +style "button" { + xthickness = 3 + ythickness = 3 + + bg[NORMAL] = shade (1.04, @bg_color) + bg[PRELIGHT] = shade (1.06, @bg_color) + bg[ACTIVE] = shade (0.85, @bg_color) +} + +# The color is changed by the notebook_bg style, this style +# changes the x/ythickness +style "notebook" { + xthickness = 3 + ythickness = 3 +} + +style "statusbar" { + + engine "clearlooks" { + hint = "statusbar" + } +} + +style "comboboxentry" { + + engine "clearlooks" { + # Note: + # If you set the appears-as-list option on comboboxes in the theme, + # then you should set this hint on the combobox instead. + hint = "comboboxentry" + } +} + +style "menubar" +{ + bg[NORMAL] = shade(0.282,@bg_color) + + fg[NORMAL] = "#D0D0D0" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 1 + ythickness = 0 + engine "clearlooks" + { + hint = "menubar" + } +} + +style "menu" +{ + bg[NORMAL] = "#F8F7F6" # Color of menu background. + fg[NORMAL] = "#101010" + engine "clearlooks" + { + radius = 1.0 # Roundness of menu items. + } +} + +style "menu_item" +{ + + fg[PRELIGHT] = @selected_fg_color # Color of selected menu item text. + bg[SELECTED] = @selected_bg_color # Color of menu items. + bg[PRELIGHT] = @selected_bg_color # Color of menu items. + + #fg[NORMAL] = "#101010" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 0 + ythickness = 4 +} + +# This style is there to modify the separator menu items. The goals are: +# 1. Get a specific height. +# 2. The line should go to the edges (ie. no border at the left/right) +style "separator_menu_item" { + xthickness = 1 + ythickness = 0 + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 7 +} + +style "frame_title" { + + fg[NORMAL] = lighter (@fg_color) +} + +style "treeview" { + + engine "clearlooks" { + hint = "treeview" + } +} + +# The almost useless progress bar style +style "progressbar" { + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" { + # Explicitly set the radius for the progress bars inside menu items. + radius = 3.0 + + hint = "progressbar" + } +} + +# This style is based on the default style, so that the colors from the button +# style are overriden again. +style "treeview_header" = "default" { + xthickness = 2 + ythickness = 1 + + engine "clearlooks" { + hint = "treeview-header" + } +} + +style "tooltips" { + xthickness = 4 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color +} + +style "nautilus_location" { + + bg[NORMAL] = mix (0.60, shade (1.05, @bg_color), @selected_bg_color) +} + +# Wrokaroudn style for places where the text color is used instead of the fg color. +style "text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for menus where the text color is used instead of the fg color. +style "menuitem_text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for places where the fg color is used instead of the text color. +style "fg_is_text_color_workaround" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = darker (@bg_color) +} + +# Style to set the toolbar to use a flat style. This is because the "New" button in +# Evolution is not drawn transparent. So if there is a gradient in the background it will +# look really wrong. +# See http://bugzilla.gnome.org/show_bug.cgi?id=446953. +style "evo_new_button_workaround" { + + engine "clearlooks" { + toolbarstyle = 0 + } +} + + +############################################################################### +# The following part of the gtkrc applies the different styles to the widgets. +############################################################################### + +# The default style is applied to every widget +class "GtkWidget" style "default" + +class "GtkSeparator" style "wide" +class "GtkFrame" style "wide" +class "GtkCalendar" style "wide" +class "GtkEntry" style "entry" + +class "GtkSpinButton" style "spinbutton" +class "GtkScale" style "scale" +class "GtkVScale" style "vscale" +class "GtkHScale" style "hscale" +class "GtkScrollbar" style "scrollbar" +class "GtkHScrollbar" style "hscrollbar" +class "GtkVScrollbar" style "vscrollbar" + +# General matching follows. The order is choosen so that the right styles override +# each other. EG. progressbar needs to be more important than the menu match. +widget_class "*" style "notebook_bg" +# This is not perfect, it could be done better. +# (That is modify *every* widget in the notebook, and change those back that +# we really don't want changed) +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" + +widget_class "*" style "button" +widget_class "*" style "notebook" +widget_class "**" style "statusbar" + +widget_class "**" style "comboboxentry" +widget_class "**" style "comboboxentry" + +widget_class "**" style "menubar" +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "separator_menu_item" + +widget_class "*.." style "frame_title" +widget_class "*.*" style "treeview" + +widget_class "*" style "progressbar" + +# Treeview headers (and similar stock GTK+ widgets) +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" + +# The window of the tooltip is called "gtk-tooltip" +################################################################## +# FIXME: +# This will not work if one embeds eg. a button into the tooltip. +# As far as I can tell right now we will need to rework the theme +# quite a bit to get this working correctly. +# (It will involve setting different priorities, etc.) +################################################################## +widget "gtk-tooltip*" style "tooltips" + +########################################################################## +# Following are special cases and workarounds for issues in applications. +########################################################################## + +# Workaround for the evolution ETable (bug #527532) +widget_class "*.ETable.ECanvas" style "treeview_header" +# Workaround for the evolution ETree +widget_class "*.ETree.ECanvas" style "treeview_header" + +# Special case the nautilus-extra-view-widget +# ToDo: A more generic approach for all applications that have a widget like this. +widget "*.nautilus-extra-view-widget" style : highest "nautilus_location" + +# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 +# Note that this work around assumes that the combobox is _not_ in appears-as-list mode. +widget_class "*.." style "text_is_fg_color_workaround" +# This is the part of the workaround that fixes the menus +widget "*.gtk-combobox-popup-menu.*" style "menuitem_text_is_fg_color_workaround" + +# Work around the usage of GtkLabel inside GtkListItems to display text. +# This breaks because the label is shown on a background that is based on the base color. +widget_class "**" style "fg_is_text_color_workaround" +# GtkCList also uses the fg color to draw text on top of the base colors. +widget_class "*" style "fg_is_text_color_workaround" +# Nautilus when renaming files, and maybe other places. +widget_class "*" style "fg_is_text_color_workaround" + +# See the documentation of the style. +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "evo_new_button_workaround" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/themes/dark/gtk-2.0/gtkrc b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/themes/dark/gtk-2.0/gtkrc new file mode 100644 index 0000000..ec15a3a --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/D-I-installer/themes/dark/gtk-2.0/gtkrc @@ -0,0 +1,444 @@ +# Credit: A few of the modeifications here were taken from the BSM Simple 0.8 theme by Bruno Schmidt Marques. +# Please keep this gtkrc in sync with the other ones from Clearlooks based themes. + +gtk-color-scheme = "base_color:#ffffff\nfg_color:#101010\ntooltip_fg_color:#000000\nselected_bg_color:#AF9479\nselected_fg_color:#ffffff\ntext_color:#1A1A1A\nbg_color:#e0e0e0\ntooltip_bg_color:#f1f1f1" + +include "panel.rc" + +style "default" { + xthickness = 1 + ythickness = 1 + + ####################### + # Style Properties + ####################### + GtkButton::child-displacement-x = 1 + GtkButton::child-displacement-y = 1 + GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::image-spacing = 4 + GtkToolButton::icon-spacing = 4 + + GtkCheckButton::indicator-size = 14 + + GtkPaned::handle-size = 6 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 15 + GtkRange::stepper-size = 15 + + GtkScale::slider-length = 23 + GtkScale::trough-side-details = 1 + + GtkScrollbar::min-slider-length = 30 + GtkMenuBar::internal-padding = 0 + GtkExpander::expander-size = 16 + GtkToolbar::internal-padding = 1 + GtkTreeView::expander-size = 14 + GtkTreeView::vertical-separator = 0 + + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + WnckTasklist::fade-overlay-rect = 0 + # The following line hints to gecko (and possibly other appliations) + # that the entry should be drawn transparently on the canvas. + # Without this, gecko will fill in the background of the entry. + GtkEntry::honors-transparent-bg-hint = 1 + + GtkEntry::progress-border = { 2, 2, 2, 2 } + + #################### + # Color Definitions + #################### + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = darker (@bg_color) + + bg[NORMAL] = shade(0.92,@bg_color) + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color # Color for selected items. + bg[INSENSITIVE] = @bg_color + bg[ACTIVE] = shade (0.90, @bg_color) + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[ACTIVE] = "#AF9479" + base[SELECTED] = "#AF9479" # Color for selected base items. + base[INSENSITIVE] = @bg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[ACTIVE] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = darker (@bg_color) + + engine "clearlooks" { + colorize_scrollbar = FALSE + reliefstyle = 1 + menubarstyle = 2 + toolbarstyle = 1 + animation = TRUE + radius = 3.0 + style = GUMMY + + # Set a hint to disable backward compatibility fallbacks. + hint = "use-hints" + } +} + +style "wide" { + xthickness = 2 + ythickness = 2 +} + +style "wider" { + xthickness = 3 + ythickness = 3 +} + +style "entry" { + xthickness = 3 + ythickness = 3 + + bg[SELECTED] = @selected_bg_color + fg[SELECTED] = @text_color + + engine "clearlooks" { + focus_color = @selected_bg_color + } +} + +style "spinbutton" { + + engine "clearlooks" { + hint = "spinbutton" + } +} + +style "scale" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + hint = "scale" + } +} + +style "vscale" { + + engine "clearlooks" { + hint = "vscale" + } +} + +style "hscale" { + + engine "clearlooks" { + hint = "hscale" + } +} + +style "scrollbar" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + hint = "scrollbar" + } +} + +style "hscrollbar" { + + engine "clearlooks" { + hint = "hscrollbar" + } +} + +style "vscrollbar" { + + engine "clearlooks" { + hint = "vscrollbar" + } +} + +style "notebook_bg" { + + bg[NORMAL] = shade (1.02, @bg_color) +} + +style "button" { + xthickness = 3 + ythickness = 3 + + bg[NORMAL] = shade (1.04, @bg_color) + bg[PRELIGHT] = shade (1.06, @bg_color) + bg[ACTIVE] = shade (0.85, @bg_color) +} + +# The color is changed by the notebook_bg style, this style +# changes the x/ythickness +style "notebook" { + xthickness = 3 + ythickness = 3 +} + +style "statusbar" { + + engine "clearlooks" { + hint = "statusbar" + } +} + +style "comboboxentry" { + + engine "clearlooks" { + # Note: + # If you set the appears-as-list option on comboboxes in the theme, + # then you should set this hint on the combobox instead. + hint = "comboboxentry" + } +} + +style "menubar" +{ + bg[NORMAL] = shade(0.282,@bg_color) + + fg[NORMAL] = "#D0D0D0" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 1 + ythickness = 0 + engine "clearlooks" + { + hint = "menubar" + } +} + +style "menu" +{ + bg[NORMAL] = "#F8F7F6" # Color of menu background. + fg[NORMAL] = "#101010" + engine "clearlooks" + { + radius = 1.0 # Roundness of menu items. + } +} + +style "menu_item" +{ + + fg[PRELIGHT] = @selected_fg_color # Color of selected menu item text. + bg[SELECTED] = @selected_bg_color # Color of menu items. + bg[PRELIGHT] = @selected_bg_color # Color of menu items. + + #fg[NORMAL] = "#101010" + fg[ACTIVE] = "#F0F0F0" + fg[PRELIGHT] = "#FFFFFF" + fg[SELECTED] = "#D0D0D0" + xthickness = 0 + ythickness = 4 +} + +# This style is there to modify the separator menu items. The goals are: +# 1. Get a specific height. +# 2. The line should go to the edges (ie. no border at the left/right) +style "separator_menu_item" { + xthickness = 1 + ythickness = 0 + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 7 +} + +style "frame_title" { + + fg[NORMAL] = lighter (@fg_color) +} + +style "treeview" { + + engine "clearlooks" { + hint = "treeview" + } +} + +# The almost useless progress bar style +style "progressbar" { + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "clearlooks" { + # Explicitly set the radius for the progress bars inside menu items. + radius = 3.0 + + hint = "progressbar" + } +} + +# This style is based on the default style, so that the colors from the button +# style are overriden again. +style "treeview_header" = "default" { + xthickness = 2 + ythickness = 1 + + engine "clearlooks" { + hint = "treeview-header" + } +} + +style "tooltips" { + xthickness = 4 + ythickness = 4 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color +} + +style "nautilus_location" { + + bg[NORMAL] = mix (0.60, shade (1.05, @bg_color), @selected_bg_color) +} + +# Wrokaroudn style for places where the text color is used instead of the fg color. +style "text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for menus where the text color is used instead of the fg color. +style "menuitem_text_is_fg_color_workaround" { + + text[NORMAL] = @fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = darker (@bg_color) +} + +# Workaround style for places where the fg color is used instead of the text color. +style "fg_is_text_color_workaround" { + + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = darker (@bg_color) +} + +# Style to set the toolbar to use a flat style. This is because the "New" button in +# Evolution is not drawn transparent. So if there is a gradient in the background it will +# look really wrong. +# See http://bugzilla.gnome.org/show_bug.cgi?id=446953. +style "evo_new_button_workaround" { + + engine "clearlooks" { + toolbarstyle = 0 + } +} + + +############################################################################### +# The following part of the gtkrc applies the different styles to the widgets. +############################################################################### + +# The default style is applied to every widget +class "GtkWidget" style "default" + +class "GtkSeparator" style "wide" +class "GtkFrame" style "wide" +class "GtkCalendar" style "wide" +class "GtkEntry" style "entry" + +class "GtkSpinButton" style "spinbutton" +class "GtkScale" style "scale" +class "GtkVScale" style "vscale" +class "GtkHScale" style "hscale" +class "GtkScrollbar" style "scrollbar" +class "GtkHScrollbar" style "hscrollbar" +class "GtkVScrollbar" style "vscrollbar" + +# General matching follows. The order is choosen so that the right styles override +# each other. EG. progressbar needs to be more important than the menu match. +widget_class "*" style "notebook_bg" +# This is not perfect, it could be done better. +# (That is modify *every* widget in the notebook, and change those back that +# we really don't want changed) +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" + +widget_class "*" style "button" +widget_class "*" style "notebook" +widget_class "**" style "statusbar" + +widget_class "**" style "comboboxentry" +widget_class "**" style "comboboxentry" + +widget_class "**" style "menubar" +widget_class "**" style "menu" +widget_class "**" style "menu_item" +widget_class "**" style "separator_menu_item" + +widget_class "*.." style "frame_title" +widget_class "*.*" style "treeview" + +widget_class "*" style "progressbar" + +# Treeview headers (and similar stock GTK+ widgets) +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" +widget_class "*.." style "treeview_header" + +# The window of the tooltip is called "gtk-tooltip" +################################################################## +# FIXME: +# This will not work if one embeds eg. a button into the tooltip. +# As far as I can tell right now we will need to rework the theme +# quite a bit to get this working correctly. +# (It will involve setting different priorities, etc.) +################################################################## +widget "gtk-tooltip*" style "tooltips" + +########################################################################## +# Following are special cases and workarounds for issues in applications. +########################################################################## + +# Workaround for the evolution ETable (bug #527532) +widget_class "*.ETable.ECanvas" style "treeview_header" +# Workaround for the evolution ETree +widget_class "*.ETree.ECanvas" style "treeview_header" + +# Special case the nautilus-extra-view-widget +# ToDo: A more generic approach for all applications that have a widget like this. +widget "*.nautilus-extra-view-widget" style : highest "nautilus_location" + +# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646 +# Note that this work around assumes that the combobox is _not_ in appears-as-list mode. +widget_class "*.." style "text_is_fg_color_workaround" +# This is the part of the workaround that fixes the menus +widget "*.gtk-combobox-popup-menu.*" style "menuitem_text_is_fg_color_workaround" + +# Work around the usage of GtkLabel inside GtkListItems to display text. +# This breaks because the label is shown on a background that is based on the base color. +widget_class "**" style "fg_is_text_color_workaround" +# GtkCList also uses the fg color to draw text on top of the base colors. +widget_class "*" style "fg_is_text_color_workaround" +# Nautilus when renaming files, and maybe other places. +widget_class "*" style "fg_is_text_color_workaround" + +# See the documentation of the style. +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "evo_new_button_workaround" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/black_hex_orange.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/black_hex_orange.jpg new file mode 100644 index 0000000..187a921 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/black_hex_orange.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/blue_purple_hex.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/blue_purple_hex.jpg new file mode 100644 index 0000000..04a5201 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/blue_purple_hex.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/bridge_water.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/bridge_water.jpg new file mode 100644 index 0000000..f3bb758 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/bridge_water.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/cloud_lake_peaks.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/cloud_lake_peaks.jpg new file mode 100644 index 0000000..8a8ba6c Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/cloud_lake_peaks.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/clouds_water.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/clouds_water.jpg new file mode 100644 index 0000000..7263320 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/clouds_water.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/darklave.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/darklave.png new file mode 100644 index 0000000..c4e792d Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/darklave.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/darknight.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/darknight.png new file mode 100644 index 0000000..d2a5a3b Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/darknight.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/desert_rock_lake.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/desert_rock_lake.jpg new file mode 100644 index 0000000..f9c6a0f Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/desert_rock_lake.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/fall_lake.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/fall_lake.jpg new file mode 100644 index 0000000..07e303c Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/fall_lake.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/fall_waterfall.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/fall_waterfall.jpg new file mode 100644 index 0000000..ba9a718 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/fall_waterfall.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/forest_stream.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/forest_stream.jpg new file mode 100644 index 0000000..3d40d1d Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/forest_stream.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/gold_pond_falls.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/gold_pond_falls.jpg new file mode 100644 index 0000000..d611d4e Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/gold_pond_falls.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/gray_lake_clouds.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/gray_lake_clouds.jpg new file mode 100644 index 0000000..b450a9e Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/gray_lake_clouds.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_abstract.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_abstract.png new file mode 100644 index 0000000..1b1b810 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_abstract.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_rock_falls.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_rock_falls.jpg new file mode 100644 index 0000000..0130003 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_rock_falls.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_waterstream.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_waterstream.jpg new file mode 100644 index 0000000..d188d0a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/green_waterstream.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/icy_lake.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/icy_lake.jpg new file mode 100644 index 0000000..d823847 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/icy_lake.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lake_powell.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lake_powell.jpg new file mode 100644 index 0000000..e8bca8f Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lake_powell.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lakerocks_clouds.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lakerocks_clouds.jpg new file mode 100644 index 0000000..6b2184e Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lakerocks_clouds.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lakeside.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lakeside.png new file mode 100644 index 0000000..49b60dc Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lakeside.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lavalamp.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lavalamp.jpg new file mode 100644 index 0000000..527bc61 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lavalamp.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lavalamp.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lavalamp.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/lavalamp.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/mirror_lake_boats.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/mirror_lake_boats.jpg new file mode 100644 index 0000000..8c69917 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/mirror_lake_boats.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/mountains_water.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/mountains_water.jpg new file mode 100644 index 0000000..a2121f9 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/mountains_water.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature002.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature002.jpg new file mode 100644 index 0000000..b9aa8d2 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature002.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature003.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature003.jpg new file mode 100644 index 0000000..c55aba8 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature003.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature005.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature005.jpg new file mode 100644 index 0000000..d4288cc Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature005.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature009.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature009.jpg new file mode 100644 index 0000000..bf31052 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nature009.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nightbefore.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nightbefore.png new file mode 100644 index 0000000..33486f6 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/nightbefore.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/reflection_canyon.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/reflection_canyon.jpg new file mode 100644 index 0000000..bab3d34 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/reflection_canyon.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/short_waterfall.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/short_waterfall.jpg new file mode 100644 index 0000000..0bfc40e Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/short_waterfall.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/snow-peaks.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/snow-peaks.png new file mode 100644 index 0000000..c4cdf08 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/snow-peaks.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/snowy_lake.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/snowy_lake.jpg new file mode 100644 index 0000000..e27b707 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/snowy_lake.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/theway.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/theway.png new file mode 100644 index 0000000..a2b4f41 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/theway.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/tree_lake_peaks.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/tree_lake_peaks.jpg new file mode 100644 index 0000000..254972a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/tree_lake_peaks.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/trees_lake.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/trees_lake.jpg new file mode 100644 index 0000000..38c1964 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/trees_lake.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/trees_waterfall.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/trees_waterfall.jpg new file mode 100644 index 0000000..84908be Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/trees_waterfall.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/underwater_rocks.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/underwater_rocks.jpg new file mode 100644 index 0000000..321551c Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/underwater_rocks.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/water_mountains.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/water_mountains.jpg new file mode 100644 index 0000000..cc913fa Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/water_mountains.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfall_lake.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfall_lake.jpg new file mode 100644 index 0000000..eb8a61e Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfall_lake.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfall_logs.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfall_logs.jpg new file mode 100644 index 0000000..69d8361 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfall_logs.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls003.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls003.jpg new file mode 100644 index 0000000..c492115 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls003.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls005.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls005.jpg new file mode 100644 index 0000000..fcf280a Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls005.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls014.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls014.jpg new file mode 100644 index 0000000..121fcc8 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls014.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls015.jpg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls015.jpg new file mode 100644 index 0000000..e474383 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/backgrounds/waterfalls015.jpg differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bldeznix12Xdev.sh b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bldeznix12Xdev.sh new file mode 100755 index 0000000..18c87e0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bldeznix12Xdev.sh @@ -0,0 +1,397 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up eznixOS environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution daedalus \ + --archive-areas "main contrib non-free non-free-firmware" \ + --initsystem sysvinit \ + --mirror-bootstrap http://deb.devuan.org/merged \ + --mirror-chroot http://deb.devuan.org/merged \ + --mirror-chroot-security http://deb.devuan.org/merged \ + --parent-mirror-bootstrap http://deb.devuan.org/merged \ + --parent-mirror-binary http://deb.devuan.org/merged \ + --parent-mirror-binary-security http://deb.devuan.org/merged \ + --parent-mirror-chroot http://deb.devuan.org/merged \ + --parent-mirror-chroot-security http://deb.devuan.org/merged \ + --parent-mirror-debian-installer http://deb.devuan.org/devuan \ + --debian-installer live \ + --debian-installer-distribution daedalus \ + --debian-installer-gui true \ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application eznixOS12X \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +## Add extra firmware packages +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $eznixOS12X/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12Xdev/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.binary/ +mkdir -p $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d/ +mkdir -p $eznixOS/eznixOS/config/includes.installer//usr/share/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/sbin + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12Xdev $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12Xdev/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12Xdev/bootloaders/* $eznixOS/eznixOS/config/includes.binary +cp -r $eznixOS/eznixOS12Xdev/D-I-installer/graphics $eznixOS/eznixOS/config/includes.installer/usr/share +cp -r $eznixOS/eznixOS12Xdev/D-I-installer/themes $eznixOS/eznixOS/config/includes.installer/usr/share + +cp $eznixOS/eznixOS12Xdev/sources-calamares/* $eznixOS/eznixOS/config/includes.chroot/usr/sbin +cp $eznixOS/eznixOS12Xdev/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12Xdev/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12Xdev/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12Xdev/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12Xdev/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12Xdev/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12Xdev/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12Xdev/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12Xdev/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12Xdev/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d +cp $eznixOS/eznixOS12Xdev/D-I-installer/scripts/* $eznixOS/eznixOS/config/includes.installer/usr/lib/finish-install.d +cp $eznixOS/eznixOS12Xdev/D-I-installer/preseed/* $eznixOS/eznixOS/config/includes.installer + +# Uncomment below line if you have packages in the misc64 folder to include: +cp $eznixOS/eznixOS12Xdev/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/config.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/config.cfg new file mode 100644 index 0000000..1061be0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/config.cfg @@ -0,0 +1,30 @@ +set default=0 + +if [ x$feature_default_font_path = xy ] ; then + font=unicode +else + font=$prefix/unicode.pf2 +fi + +# Copied from the netinst image +if loadfont $font ; then + set gfxmode=800x600 + set gfxpayload=keep + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus +else + set gfxmode=auto + insmod all_video +fi + +insmod gfxterm +insmod png + +source /boot/grub/theme.cfg + +terminal_output gfxterm + +insmod play +play 960 440 1 0 4 440 1 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/grub.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/grub.cfg new file mode 100644 index 0000000..5413249 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/grub.cfg @@ -0,0 +1,57 @@ +source /boot/grub/config.cfg + +# Live boot +menuentry "EznixOS Live)" --hotkey=l { + linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} + initrd /live/initrd.img +} +menuentry "EznixOS Live ( fail-safe mode)" { + linux /live/vmlinuz boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788 + initrd /live/initrd.img +} + +# You can add more entries like this +# menuentry "Alternate live boot" { +# linux /live/vmlinuz boot=live components quiet splash findiso=${iso_path} custom options here +# initrd /live/initrd.img +# } +# menuentry "Alternate graphical installer" { +# linux /install/gtk/vmlinuz vga=788 --- quiet custom options here +# initrd /install/gtk/initrd.gz +# } +# menuentry "Alternate textual installer" { +# linux /install/vmlinuz vga=normal --- quiet custom options here +# initrd /install/initrd.gz +# } + +# Installer (if any) +if true; then + +source /boot/grub/install_start.cfg + +submenu 'Advanced install options ...' --hotkey=a { + + source /boot/grub/theme.cfg + + source /boot/grub/install.cfg + +} +fi + +submenu 'Utilities...' --hotkey=u { + + source /boot/grub/theme.cfg + + # Memtest (if any) + if false; then + source /boot/grub/memtest.cfg + fi + + # Firmware setup (UEFI) + if [ "${grub_platform}" = "efi" ]; then + menuentry "UEFI Firmware Settings" { + fwsetup + } + fi + +} diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/install.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/install.cfg new file mode 100644 index 0000000..6e6a517 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/install.cfg @@ -0,0 +1,124 @@ +submenu 'Graphical installer ...' --hotkey=g { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/gtk/vmlinuz vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/gtk/vmlinuz priority=low vga=788 + initrd /install/gtk/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/gtk/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/gtk/vmlinuz rescue/enable=true vga=788 --- quiet + initrd /install/gtk/initrd.gz + } +} + +submenu 'Text installer ...' --hotkey=t { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/vmlinuz vga=788 --- quiet + initrd /install/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/vmlinuz priority=low vga=788 + initrd /install/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/vmlinuz rescue/enable=true vga=788 --- quiet + initrd /install/initrd.gz + } +} + +submenu 'Graphical installer with dark theme ...' --hotkey=d { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/gtk/vmlinuz vga=788 theme=dark --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/gtk/vmlinuz priority=low vga=788 theme=dark + initrd /install/gtk/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/gtk/vmlinuz auto=true priority=critical vga=788 theme=dark --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/gtk/vmlinuz rescue/enable=true vga=788 theme=dark --- quiet + initrd /install/gtk/initrd.gz + } +} + +submenu 'Text installer with dark theme ...' --hotkey=k { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/vmlinuz vga=788 theme=dark --- quiet + initrd /install/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/vmlinuz priority=low vga=788 theme=dark + initrd /install/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/vmlinuz auto=true priority=critical vga=788 theme=dark --- quiet + initrd /install/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/vmlinuz rescue/enable=true vga=788 theme=dark --- quiet + initrd /install/initrd.gz + } +} + +submenu 'Installer with speech synthesis ...' --hotkey=s { + + source /boot/grub/theme.cfg + + menuentry 'Install' --hotkey=i { + linux /install/gtk/vmlinuz speakup.synth=soft vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Expert install' --hotkey=x { + linux /install/gtk/vmlinuz speakup.synth=soft priority=low vga=788 + initrd /install/gtk/initrd.gz + } + + menuentry 'Automated install' --hotkey=a { + linux /install/gtk/vmlinuz speakup.synth=soft auto=true priority=critical vga=788 --- quiet + initrd /install/gtk/initrd.gz + } + + menuentry 'Rescue mode' --hotkey=r { + linux /install/gtk/vmlinuz speakup.synth=soft rescue/enable=true vga=788 --- quiet + initrd /install/gtk/initrd.gz + } +} diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/install_start.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/install_start.cfg new file mode 100644 index 0000000..2454225 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/install_start.cfg @@ -0,0 +1,9 @@ +menuentry 'Start installer' --hotkey=i { + linux /install/gtk/vmlinuz vga=788 --- quiet + initrd /install/gtk/initrd.gz +} + +menuentry 'Start installer with speech synthesis' --hotkey=s { + linux /install/gtk/vmlinuz speakup.synth=soft vga=788 --- quiet + initrd /install/gtk/initrd.gz +} diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/live-theme/theme.txt b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/live-theme/theme.txt new file mode 100644 index 0000000..a097711 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/live-theme/theme.txt @@ -0,0 +1,51 @@ +desktop-image: "../splash.png" +title-color: "#ffffff" +title-font: "Unifont Regular 16" +title-text: "Live Boot Menu with GRUB" +message-font: "Unifont Regular 16" +terminal-font: "Unifont Regular 16" + +#help bar at the bottom ++ label { + top = 100%-50 + left = 0 + width = 100% + height = 20 + text = "@KEYMAP_SHORT@" + align = "center" + color = "#ffffff" + font = "Unifont Regular 16" +} + +#boot menu ++ boot_menu { + left = 10% + width = 80% + top = 52% + height = 48%-80 + item_color = "#a8a8a8" + item_font = "Unifont Regular 16" + selected_item_color= "#ffffff" + selected_item_font = "Unifont Regular 16" + item_height = 16 + item_padding = 0 + item_spacing = 4 + icon_width = 0 + icon_heigh = 0 + item_icon_space = 0 +} + +#progress bar ++ progress_bar { + id = "__timeout__" + left = 15% + top = 100%-80 + height = 16 + width = 70% + font = "Unifont Regular 16" + text_color = "#000000" + fg_color = "#ffffff" + bg_color = "#a8a8a8" + border_color = "#ffffff" + text = "@TIMEOUT_NOTIFICATION_LONG@" +} diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/loopback.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/loopback.cfg new file mode 100644 index 0000000..e94c44d --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/loopback.cfg @@ -0,0 +1 @@ +source /boot/grub/grub.cfg diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/splash.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/splash.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/theme.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/theme.cfg new file mode 100644 index 0000000..56e4c18 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/theme.cfg @@ -0,0 +1,13 @@ +set color_normal=light-gray/black +set color_highlight=white/dark-gray + +if [ -e /isolinux/splash.png ]; then + # binary_syslinux modifies the theme file to point to the correct + # background picture + set theme=/boot/grub/live-theme/theme.txt +elif [ -e /boot/grub/splash.png ]; then + set theme=/boot/grub/live-theme/theme.txt +else + set menu_color_normal=white/red + set menu_color_highlight=white/red +fi diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/unicode.pf2 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/unicode.pf2 new file mode 100644 index 0000000..290ddc0 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/boot/grub/unicode.pf2 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/hdt.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/hdt.c32 new file mode 100644 index 0000000..d67d918 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/hdt.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/install.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/install.cfg new file mode 100644 index 0000000..7ad0670 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/install.cfg @@ -0,0 +1,185 @@ +label installstart + menu label Start ^installer + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append vga=788 --- quiet + +label installstartspeech + menu label Start installer with ^speech synthesis + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft vga=788 --- quiet + +menu begin install + menu label ^Advanced install options + menu title Advanced install options + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + menu begin graphicalinstall + menu label ^Graphical installer + menu title Graphical installer + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label installgui + menu label ^Install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append vga=788 --- quiet + + label expertgui + menu label E^xpert install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append priority=low vga=788 + + label autogui + menu label ^Automated install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append auto=true priority=critical vga=788 --- quiet + + label rescuegui + menu label ^Rescue mode + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append rescue/enable=true vga=788 --- quiet + menu end + + menu begin textinstall + menu label ^Text installer + menu title Text installer + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label install + menu label ^Install + linux /install/vmlinuz + initrd /install/initrd.gz + append vga=788 --- quiet + + label expert + menu label E^xpert install + linux /install/vmlinuz + initrd /install/initrd.gz + append priority=low vga=788 + + label auto + menu label ^Automated install + linux /install/vmlinuz + initrd /install/initrd.gz + append auto=true priority=critical vga=788 --- quiet + + label rescue + menu label ^Rescue mode + linux /install/vmlinuz + initrd /install/initrd.gz + append rescue/enable=true vga=788 --- quiet + menu end + + menu begin graphicalinstalldark + menu label Graphical installer with ^dark theme + menu title Graphical installer with dark theme + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label darkinstallgui + menu label ^Install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append vga=788 theme=dark --- quiet + + label darkexpertgui + menu label E^xpert install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append priority=low vga=788 theme=dark + + label darkautogui + menu label ^Automated install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append auto=true priority=critical vga=788 theme=dark --- quiet + + label darkrescuegui + menu label ^Rescue mode + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append rescue/enable=true vga=788 theme=dark --- quiet + menu end + + menu begin textinstalldark + menu label Text installer with dar^k theme + menu title Text installer with dark theme + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label darkinstall + menu label ^Install + linux /install/vmlinuz + initrd /install/initrd.gz + append vga=788 theme=dark --- quiet + + label darkexpert + menu label E^xpert install + linux /install/vmlinuz + initrd /install/initrd.gz + append priority=low vga=788 theme=dark + + label darkauto + menu label ^Automated install + linux /install/vmlinuz + initrd /install/initrd.gz + append auto=true priority=critical vga=788 theme=dark --- quiet + + label darkrescue + menu label ^Rescue mode + linux /install/vmlinuz + initrd /install/initrd.gz + append rescue/enable=true vga=788 theme=dark --- quiet + menu end + + menu begin speechinstall + menu label Installer with ^speech synthesis + menu title Installer with speech synthesis + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label installspeechsynth + menu label ^Install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft vga=788 --- quiet + + label expertguispeech + menu label E^xpert install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft priority=low vga=788 + + label autoguispeech + menu label ^Automated install + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft auto=true priority=critical vga=788 --- quiet + + label rescueguispeech + menu label ^Rescue mode + linux /install/gtk/vmlinuz + initrd /install/gtk/initrd.gz + append speakup.synth=soft rescue/enable=true vga=788 --- quiet + menu end +menu end diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/isolinux.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/isolinux.cfg new file mode 100644 index 0000000..a3e3eab --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/isolinux.cfg @@ -0,0 +1,4 @@ +include menu.cfg +default vesamenu.c32 +prompt 0 +timeout 0 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/ldlinux.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/ldlinux.c32 new file mode 100644 index 0000000..e94389b Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/ldlinux.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libcom32.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libcom32.c32 new file mode 100644 index 0000000..c4265b9 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libcom32.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libgpl.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libgpl.c32 new file mode 100644 index 0000000..11f43f1 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libgpl.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libmenu.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libmenu.c32 new file mode 100644 index 0000000..b3d6986 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libmenu.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libutil.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libutil.c32 new file mode 100644 index 0000000..6fc1da7 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/libutil.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/live.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/live.cfg new file mode 100644 index 0000000..bbf9975 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/live.cfg @@ -0,0 +1,12 @@ +label EznixOS Live + menu label ^EznixOS Live + menu default + linux /live/vmlinuz + initrd /live/initrd.img + append boot=live components quiet splash + +label EznixOS Live-failsafe + menu label EznixOS Live (fail-safe mode) + linux /live/vmlinuz + initrd /live/initrd.img + append boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/menu.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/menu.cfg new file mode 100644 index 0000000..db4f262 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/menu.cfg @@ -0,0 +1,18 @@ +menu hshift 0 +menu width 82 + +menu title Boot menu +include stdmenu.cfg +include live.cfg +include install.cfg +menu begin utilities + menu label ^Utilities + menu title Utilities + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include utilities.cfg +menu end + +menu clear diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/splash.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/splash.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/splash800x600.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/splash800x600.png new file mode 100644 index 0000000..38641e4 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/splash800x600.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/stdmenu.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/stdmenu.cfg new file mode 100644 index 0000000..671b16f --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/stdmenu.cfg @@ -0,0 +1,15 @@ +menu background splash.png +menu color title * #FFFFFFFF * +menu color border * #00000000 #00000000 none +menu color sel * #ffffffff #76a1d0ff * +menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff * +menu color tabmsg * #ffffffff #00000000 * +menu color help 37;40 #ffdddd00 #00000000 none +menu vshift 12 +menu rows 10 +menu helpmsgrow 15 +# The command line must be at least one line from the bottom. +menu cmdlinerow 16 +menu timeoutrow 16 +menu tabmsgrow 18 +menu tabmsg Press ENTER to boot or TAB to edit a menu entry diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/utilities.cfg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/utilities.cfg new file mode 100644 index 0000000..d600a4c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/utilities.cfg @@ -0,0 +1,4 @@ +label hdt + menu label ^Hardware Detection Tool (HDT) + com32 hdt.c32 + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/vesamenu.c32 b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/vesamenu.c32 new file mode 100644 index 0000000..bbb65e0 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/bootloaders/isolinux/vesamenu.c32 differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/debootstrap_1.0.152acoros3_all.deb b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/debootstrap_1.0.152acoros3_all.deb new file mode 100644 index 0000000..b9b944c Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/debootstrap_1.0.152acoros3_all.deb differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/devuan-keyring_2023.10.07_all.deb b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/devuan-keyring_2023.10.07_all.deb new file mode 100644 index 0000000..3d34589 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/devuan-keyring_2023.10.07_all.deb differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/live-build_20230502acoros1_all.deb b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/live-build_20230502acoros1_all.deb new file mode 100644 index 0000000..af83f21 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/buildtools/live-build_20230502acoros1_all.deb differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/branding.desc b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/branding.desc new file mode 100644 index 0000000..6a32bea --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/branding.desc @@ -0,0 +1,31 @@ +--- +componentName: eznixos +welcomeStyleCalamares: true + +strings: + productName: eznixOS + shortProductName: eznixOS + version: 12X + shortVersion: 12X + versionedName: eznixOS + shortVersionedName: eznixOS + bootloaderEntryName: eznixos + productUrl: https://sourceforge.net/projects/eznixos/ +# supportUrl: https://sourceforge.net/projects/eznixos/ +# knownIssuesUrl: https://sourceforge.net/projects/eznixos/ +# releaseNotesUrl: https://sourceforge.net/projects/eznixos/ +# donateUrl: https://sourceforge.net/projects/eznixos/ + +images: + productLogo: "eznixos-logo.png" + productIcon: "eznixos-logo.png" + productWallpaper: "wallpaper.png" + productWelcome: "slide_cs.png" + +slideshow: "show.qml" + +style: + sidebarBackground: "#292F34" + sidebarText: "#FFFFFF" + sidebarTextSelect: "#292F34" + sidebarTextHighlight: "#D35400" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/eznixos-logo.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/eznixos-logo.png new file mode 100644 index 0000000..d13bcfa Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/eznixos-logo.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/show.qml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/show.qml new file mode 100644 index 0000000..29759b3 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/show.qml @@ -0,0 +1,148 @@ +/* === This file is part of Calamares - === + * + * Copyright 2015, Teo Mrnjavac + * + * Calamares 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 3 of the License, or + * (at your option) any later version. + * + * Calamares 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 Calamares. If not, see . + * + * EznixOS custom settings + */ + +import QtQuick 2.0; +import calamares.slideshow 1.0; + +Presentation +{ + id: presentation + + Timer { + id: advanceTimer + interval: 30000 + running: true + repeat: true + onTriggered: presentation.goToNextSlide() + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + + Image { + id: background1 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Welcome to EznixOS, a Debian based Linux
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background2 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 163 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("EznixOS is 100% compatible with Debian Linux
") + + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background3 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Look inside the ~/EznixOS12X folder for documentation
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background4 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Thank you for trying EznixOS12
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Component.onCompleted: advanceTimer.running = true +} + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/slide1.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/slide1.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/slide1.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/slide_cs.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/slide_cs.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/slide_cs.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/wallpaper.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/wallpaper.png new file mode 100644 index 0000000..d0a9bbc Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/wallpaper.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/welcome.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/branding/eznixos/welcome.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/bootloader.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/bootloader.conf new file mode 100644 index 0000000..2a76ecf --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/bootloader.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Bootloader configuration +# +--- +efiBootLoader: "grub" + +kernel: "/vmlinuz-linux" +img: "/initramfs-linux.img" +fallback: "/initramfs-linux-fallback.img" +timeout: "10" + +efiBootloaderId: "eznixos" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" + +installEFIFallback: true diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/displaymanager.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/displaymanager.conf new file mode 100644 index 0000000..859bdb0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/displaymanager.conf @@ -0,0 +1,14 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure one or more display managers (e.g. sddm or Lightdm) +# +--- +displaymanagers: + - sddm + - lightdm + +basicSetup: false + +sysconfigSetup: false diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/finished.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/finished.conf new file mode 100644 index 0000000..562f504 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/finished.conf @@ -0,0 +1,10 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure finished screen options +# +--- +restartNowEnabled: true +restartNowChecked: false +restartNowCommand: "reboot" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/fstab.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/fstab.conf new file mode 100644 index 0000000..da38055 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/fstab.conf @@ -0,0 +1,27 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure fstab options +# +--- +mountOptions: + default: defaults,noatime,nodiscard + btrfs: defaults,noatime,noautodefrag,nodiscard + btrfs_swap: defaults + swap: defaults + +crypttabOptions: luks,keyscript=/bin/cat + +efiMountOptions: umask=0077 + +ssdExtraMountOptions: + btrfs: ssd + +tmpOptions: + default: + tmpfs: false + options: "" + ssd: + tmpfs: true + options: "defaults,noatime,mode=1777" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/luksopenswaphookcfg.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/luksopenswaphookcfg.conf new file mode 100644 index 0000000..f1f04ac --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/luksopenswaphookcfg.conf @@ -0,0 +1,8 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Writes an openswap configuration with LUKS settings to the given path +# +--- +configFilePath: /etc/openswap.conf diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/machineid.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/machineid.conf new file mode 100644 index 0000000..1725e69 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/machineid.conf @@ -0,0 +1,18 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure machineid options +# +--- +systemd: false + +dbus: true + +symlink: true + +entropy-copy: true + +entropy-files: + - /var/lib/urandom/random-seed + - /var/lib/systemd/random-seed diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/mount.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/mount.conf new file mode 100644 index 0000000..a1c0617 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/mount.conf @@ -0,0 +1,38 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure mount options +# +--- +extraMounts: + - device: proc + fs: proc + mountPoint: /proc + - device: sys + fs: sysfs + mountPoint: /sys + - device: /dev + mountPoint: /dev + options: bind + - device: tmpfs + fs: tmpfs + mountPoint: /run + - device: /run/udev + mountPoint: /run/udev + options: bind + +extraMountsEfi: + - device: efivarfs + fs: efivarfs + mountPoint: /sys/firmware/efi/efivars + +btrfsSubvolumes: + - mountPoint: / + subvolume: /@ + - mountPoint: /home + subvolume: /@home + - mountPoint: /var/cache + subvolume: /@cache + - mountPoint: /var/log + subvolume: /@log diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/openrcdmcryptcfg.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/openrcdmcryptcfg.conf new file mode 100644 index 0000000..7058791 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/openrcdmcryptcfg.conf @@ -0,0 +1,8 @@ +# Ezarcher custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration file for opendmcryptcfg module +# +--- +configFilePath: /etc/conf.d/dmcrypt diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/packages.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/packages.conf new file mode 100644 index 0000000..6bdb1a7 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/packages.conf @@ -0,0 +1,19 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure packages options, remove live configuration +# +--- +backend: apt + +operations: + - remove: + - 'live-boot' + - 'live-boot-doc' + - 'live-config' + - 'live-config-doc' + - 'live-config-systemd' + - 'live-tools' + - 'calamares-settings-debian' + - 'calamares' diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/partition.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/partition.conf new file mode 100644 index 0000000..5b35218 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/partition.conf @@ -0,0 +1,34 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration for the partition options +# +--- +efiSystemPartition: "/boot/efi" + +efiSystemPartitionSize: 1024M + +efiSystemPartitionName: EFI + +userSwapChoices: + - none # Create no swap, use no swap + - small # Up to 4GB + - suspend # At least main memory size + - file # To swap file instead of partition + +swapPartitionName: SWAP + +drawNestedPartitions: false + +alwaysShowPartitionLabels: true + +allowManualPartitioning: true + +initialPartitioningChoice: none + +initialSwapChoice: none + +defaultFileSystemType: "ext4" + +availableFileSystemTypes: ["ext4","btrfs","xfs"] diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/shellprocess.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/shellprocess.conf new file mode 100644 index 0000000..f99f347 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/shellprocess.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Shell process to remove calamares config files +# +--- +dontChroot: false +timeout: 999 +script: + - "-rm -r @@ROOT@@/etc/calamares/" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/unpackfs.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/unpackfs.conf new file mode 100644 index 0000000..91f16d4 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/unpackfs.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure unpack squashfs filesystem +# +--- +unpack: + - source: "/run/live/medium/live/filesystem.squashfs" + sourcefs: "squashfs" + destination: "/" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/users.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/users.conf new file mode 100644 index 0000000..a4c5202 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/users.conf @@ -0,0 +1,30 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure user and group options +# +--- +userGroup: users + +defaultGroups: + - cdrom + - floppy + - sudo + - audio + - dip + - video + - plugdev + - netdev + - lpadmin + - scanner + - bluetooth + +autologinGroup: autologin +doAutologin: false +sudoersGroup: sudo +setRootPassword: true +doReusePassword: true +allowWeakPasswords: true +allowWeakPasswordsDefault: true +userShell: /bin/bash diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/welcome.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/welcome.conf new file mode 100644 index 0000000..02cec71 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/modules/welcome.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure welcome options and set minimum specs +# +--- +showSupportUrl: false +showKnownIssuesUrl: false +showReleaseNotesUrl: false + +requirements: + requiredStorage: 10 + requiredRam: 1.0 + check: + - storage + - ram + - power + - root + required: + - storage + - ram + - root diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/settings.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/settings.conf new file mode 100644 index 0000000..971851b --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/calamares/settings.conf @@ -0,0 +1,65 @@ +# Configuration file for Calamares +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure setup options and branding +# Syntax is YAML 1.2 +# +--- + +modules-search: [ local, /usr/lib/calamares/modules ] + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +quit-at-end: false + +sequence: + +- show: + - welcome + - locale + - keyboard + - partition + - users + - summary + +- exec: + - partition + - mount + - unpackfs + - sources-media + - machineid + - fstab + - locale + - keyboard + - localecfg + - users + - displaymanager + - networkcfg + - hwclock + - bootloader-config + - grubcfg + - bootloader + - packages + - luksbootkeyfile + - plymouthcfg + - initramfscfg + - initramfs + - sources-media-unmount + - sources-final + - shellprocess + - umount + +- show: + - finished + +branding: eznixos + +prompt-install: false + +dont-chroot: false diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/bldeznix12X-howto.txt b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/bldeznix12X-howto.txt new file mode 100644 index 0000000..1e769cd --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/bldeznix12X-howto.txt @@ -0,0 +1,120 @@ +Step by Step Live-Build - AMD64 Architecture Example + +----------------------------------- + +Suggested location for the build staging folder: + + /eznixOS12X -- build folder + +Suggested location for the collection of preparation files and packages: + + /eznix12X -- files location + + +The build procedure begins below. Copy and paste each command exactly unless you know what you are doing and are comfortable making changes. +ALL COMMANDS NEED TO BE RUN AS ROOT! + +---------------------------------- + +Step 1: Assign work, files, and build directory variables + +# Run command below to set the working directory: + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +---------------------------------- + +Step 2: Remove the icon cache cleaning hook, create the build staging folder, and cd into it + +# Run commands below to prepare for the build: + +rm /usr/share/live/build/hooks/normal/9000-remove-gnome-icon-cache.hook.chroot + +mkdir $BLDDIR +cd $BLDDIR + +---------------------------------- + +Step 3: Set up the live-build config + +# Run command below to configure live build: + +lb config --binary-images iso-hybrid --mode debian --architectures amd64 --linux-flavours amd64 --distribution bookworm --archive-areas "main contrib non-free non-free-firmware" --updates true --security true --cache true --apt-recommends true --firmware-binary true --firmware-chroot true --win32-loader false --iso-application $BLDDIR --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ --image-name "$BLDDIR-$(date -u +"%y%m%d")" --iso-volume "$BLDDIR-$(date -u +"%y%m%d")" --checksums sha512 --clean --color + +---------------------------------- + +Step 4: Pass the desktop and packages to the live-build config + +# Run command below to install the Xfce Desktop: + +echo "accountsservice arc-theme asunder atril breeze-gtk-theme breeze-icon-theme dconf-cli gnome-disk-utility gnome-keyring gnome-nettool gnome-system-tools greybird-gtk-theme gvfs-backends gvfs-fuse light-locker lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings mousepad network-manager-gnome network-manager-openconnect-gnome network-manager-openvpn-gnome numix-gtk-theme pavucontrol pulseaudio remmina tango-icon-theme xarchiver xfce4 xfce4-goodies xfce4-power-manager xfce4-terminal" > $WKDIR/$BLDDIR/config/package-lists/xfcedesktop.list.chroot + +echo "aisleriot alsa-utils apt-transport-https audacious audacious-plugins autoconf automake bleachbit btrfs-progs build-essential cdtool cdrdao cdrskin cifs-utils clonezilla cryptsetup cryptsetup-initramfs cups cups-filters curl dbus-user-session dbus-x11 debconf debhelper dh-autoreconf dialog dirmngr dkms dos2unix dosbox dosfstools dvdauthor exfatprogs faac faad fakeroot ffmpeg filezilla firefox-esr flac foomatic-db foomatic-db-engine frei0r-plugins fuse3 galculator gdebi geany ghostscript gimp gir1.2-ibus-1.0 gparted grsync grub-pc gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-plugins-good gthumb guvcview hardinfo haveged hplip-gui htop hunspell-en-us hyphen-en-us ibus ibus-data ibus-gtk ibus-gtk3 iftop im-config inxi isolinux iw jfsutils keepassxc lame less libegl1-mesa libibus-1.0-5 libgl1-mesa-glx libqt5opengl5 libreoffice-calc libreoffice-draw libreoffice-impress libreoffice-writer libreoffice-gtk3 libreoffice-help-en-us libnss-mdns libsmbclient libxcb-xtest0 libxvidcore4 linux-headers-amd64 live-build lsb-release lshw meld mencoder menu mjpegtools mpg321 mpv mtools mythes-en-us neofetch netcat-openbsd ntfs-3g nvidia-detect openconnect openvpn openvpn-systemd-resolved os-prober p7zip-full p7zip-rar papirus-icon-theme pciutils perl plymouth plymouth-label plymouth-themes policykit-1 printer-driver-gutenprint python3-ibus-1.0 rar samba-common-bin simple-scan simplescreenrecorder smplayer smplayer-l10n smplayer-themes soundconverter sox squashfs-tools streamripper sudo synaptic syslinux syslinux-common system-config-printer testdisk timeshift transmission-gtk twolame udisks2 upower unrar unzip webext-keepassxc-browser wget x265 x264 xclip xdg-utils xfsprogs xorg xserver-xorg-input-all xserver-xorg-video-all xorriso xscreensaver xterm zip zstd zulucrypt-gui zulumount-gui" > $WKDIR/$BLDDIR/config/package-lists/extrapackages.list.chroot + +echo "atmel-firmware bluez-firmware firmware-linux-free midisport-firmware firmware-misc-nonfree firmware-amd-graphics firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-cavium firmware-intel-sound firmware-iwlwifi firmware-libertas firmware-linux firmware-linux-nonfree firmware-misc-nonfree firmware-myricom firmware-netronome firmware-netxen firmware-qcom-media firmware-qcom-soc firmware-qlogic firmware-realtek firmware-samsung firmware-siano firmware-ti-connectivity firmware-sof-signed firmware-zd1211" > $WKDIR/$BLDDIR/config/package-lists/firmware.list.chroot + +echo "efibootmgr grub-common grub-pc-bin grub2-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub-efi-ia32-bin libefiboot1 libefivar1 mokutil os-prober shim-helpers-amd64-signed +shim-signed shim-signed-common shim-unsigned" > $WKDIR/$BLDDIR/config/package-lists/grubs.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo "b43-fwcutter firmware-b43-installer firmware-b43legacy-installer" > $WKDIR/$BLDDIR/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares Installer + +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/ +cp -r $WKDIR/$FLDIR/calamares/ $WKDIR/$BLDDIR/config/includes.chroot/etc/ +echo "calamares calamares-settings-debian" > $WKDIR/$BLDDIR/config/package-lists/calamares.list.chroot + +---------------------------------- + +Step 5: Make folders in the chroot + +# Run command below to create needed folders: + +mkdir -p $WKDIR/$BLDDIR/config/hooks/normal/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ + +----------------------------------- + +Step 6: Copy files into the chroot and live-build config + +# Run commands below to copy build files into the live system: + +cp -r $WKDIR/$FLDIR/bootloaders/ $WKDIR/$BLDDIR/config/ +cp -r $WKDIR/$FLDIR/ $WKDIR/$BLDDIR/config/includes.chroot/usr/share/ +cp -r $WKDIR/$FLDIR/xfce4/ $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +cp $WKDIR/$FLDIR/hooks/* $WKDIR/$BLDDIR/config/hooks/normal/ +cp $WKDIR/$FLDIR/scripts/* $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +cp $WKDIR/$FLDIR/icons/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ +cp $WKDIR/$FLDIR/backgrounds/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +cp $WKDIR/$FLDIR/launchers/ezadmin.desktop $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +ln -s /usr/share/$FLDIR $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/$FLDIR + +----------------------------------- + +# Run command below IF you wish to include deb packages from misc64 folder: + +# cp $WKDIR/$FLDIR/misc64/* $WKDIR/$BLDDIR/config/packages.chroot/ + +----------------------------------- + +Step 7: Start the build process + +# Run command below to start live build: + +lb build + +----------------------------------- + +Step 8: Wait for the build to complete. The ISO will be inside the build folder + +----------------------------------- + +# bldeznix12X-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/ezadmin-howto.txt b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/ezadmin-howto.txt new file mode 100644 index 0000000..3a6c1af --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/ezadmin-howto.txt @@ -0,0 +1,123 @@ + EZADMIN HOWTO + +This is a custom built script to perform various tasks on eznixOS. You can run the ezadmin script as root to perform its functions. SU to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. + + + EZ Admin Menu: + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + + +Select a|A to add yourself to the sudo group, allowing the use of 'sudo' to gain administrative privileges. Logout and Login is required to take effect. + +Select b|B to optimize your repositories to Debian's DNS based redirection system for automatically picking closer mirrors. The Stretch Backports repositories are added as well. Use can use Synaptic or your favorite text editor to customize the repositories if you wish. + +Select c|C to rebuild the default icon cache files and lower memory usage. + +Select d|D to install and/or upgrade the latest Firefox Latest. + +Select e|E to install YT-DLP video downloader + +Select f|F to install the newest kernel from backports. + +Select g|G to upgrade to Debian Testing. + +Select x|X to exit the menu and return to the command prompt. Reboot your system after performing any of the steps and in-between multiple steps just to be safe. + + +------------------------------------------------------------------- + + Functions + +------------------------------------------------------------------- + +# Add first user to sudo group + + read -p "Type you user name, be exact and press Enter: " ANS + usermod -aG sudo $ANS + +------------------------------------------------------------------- + +# Optimize mirrors and add contrib and non-free to sources.list + + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznix12X/sources/sources.bookworm /etc/apt/sources.list + apt-get -y update + +------------------------------------------------------------------- + +# Rebuild Default Icon Cache Files + + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ + +------------------------------------------------------------------- + +# Install and/or upgrade the latest Firefox Latest + + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznix12X/launchers/Firefox-Latest.desktop /usr/share/applications/Firefox-Latest.desktop + rm -r /opt/FFDL + +------------------------------------------------------------------ + +# Install YT-DLP video downloader + + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp + +------------------------------------------------------------------ + +# Install the newest kernel from backports + + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 + +------------------------------------------------------------------ + +# Upgrade to Debian Testing + + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznix12X/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade + +------------------------------------------------------------------ + +# ezadmin-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/license.txt b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/license.txt new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/license.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. 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 +them 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 prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. 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. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If 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 convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU 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 that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + 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 +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU 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 Lesser General +Public License instead of this License. But first, please read +. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/prepare-howto.txt b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/prepare-howto.txt new file mode 100644 index 0000000..13da446 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/prepare-howto.txt @@ -0,0 +1,59 @@ +Preparation for the bldeznix12X script + +-------------------------------------- + +Step 1 +Install the live-build tool and others: + +# apt-get install live-build squashfs-tools syslinux-common syslinux-utils xorriso isolinux + +-------------------------------------- + +Step 2 +Assign work, files, and build directory variables and make the build directory + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +mkdir=$BLDDIR + +-------------------------------------- + +Step 3 +Collect all background images, especially the current background, and copy them to a folder inside /$FLDIR. + +# cp -r backgrounds /$FLDIR/backgrounds + +-------------------------------------- + +Step 4 +Configure your desktop settings exactly the way you want to preserve them for the live system. +If using XFCE, all of these settings are stored in ~/.config/xfce4. Copy that folder inside /$FLDIR. + +# cp -r ~/.config/xfce4 ~/$FLDIR/ + +-------------------------------------- + +Step 5 +Copy any miscelaneous deb packages into the /$FLDIR/misc64 folder + +-------------------------------------- + +Step 6 +If you have any shell scripts, place them in the /$FLDIR/scripts folder. If you have any icons, place them in the /$FLDIR/icons folder. If you have any hooks, place them in the /$FLDIR/hooks folder. If you have any documentation, place the it in the /$FLDIR/doc folder. If you need other locations, add the folder inside the /$FLDIR folder and use the commands in the bldeznix script as a guide to adapting the script to your needs. + +-------------------------------------- + +Step 7 +The /bootloaders directory is found in /usr/share/live/build/ - copy the folder into your /$FLDIR/ directory. + +# cp -r /usr/share/live/build/bootloaders /$FLDIR/bootloaders + +Inside each of the subfolders within /bootloaders is a file named: splash.svg or splash.png. These are default images and can be replaced. Use whatever graphic program you like to create or edit an image for use as your boot splash. Any text you place on the image should be in the upper portion of the image - the lower half will display the boot menu. When you are satified with your image, save it as a 640x480 pixel PNG graphic file named splash.png. Copy the file into each of the subfolders of /bootloaders with the exception of the grub-legacy folder. Grub-legacy will probably never be used, but if you want to replace that image, save a copy of your splash image as a 640x480 pixel XPM graphic file and name it splash.xpm. You will need to gzip the splash.xpm file and replace the default file in the grub-legacy subfolder. + +-------------------------------------- + + +# prepare-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/readme.txt b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/readme.txt new file mode 100644 index 0000000..7a9a024 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/doc/readme.txt @@ -0,0 +1,40 @@ +Welcome to eznixOS + +The eznixOS is a respin of Debian GNU/Linux, currently based on the Debian 12 Bookworm release. The Debian live-build tool is used to build the ISO and I have included a folder located under /usr/share/eznix12X containing all the necessary build files and build script used to create the respin. I include all the files with the aim to help educate those willing to learn how to build your own live-build created Debian respins. + +This respin was built by my bldeznix12X script but can also be built identically by following the prepare-howto.txt and bldeznix12X-howto.txt files. The build process has been completely automated as long as you do not need to make any adjustments. The bldeznix12X will build a complete respin of Debian Bookworm with all of the eznixOS customizations. If you want to utilize the script to produce your own respin, you will need to edit various parts of the script. The script is documented and should be easy enough to rework into something personal for you. + +The ISO contains all the eznixOS build related files inside the /usr/share/eznix12X folder. Any changes to the files or the folder names must be represented in the bldeznix12X script. The script relies on certain folder names and files to operate correctly. Read the comments in the bldeznix12X script and the prepare-howto.txt and bldeznix12X-howto.txt files for guidance. The /eznix12X folder must reside in the same directory as the bldeznix12X script. Anything can be changed to suit your needs, but the changes must be identical in both the script and the folder structure around it. + +The ezadmin tool is a small script with a menu driven interface that performs a few basic functions. Please take a look at the ezadmin-howtow.txt on the Desktop of eznixOS. + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + +You can run the ezadmin script as root to perform its functions. Use "su -l" to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. Have fun. + + +# readme.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/grub/grub b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/grub/grub new file mode 100644 index 0000000..a6760f3 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/grub/grub @@ -0,0 +1,36 @@ +# If you change this file, run 'update-grub' afterwards to update +# /boot/grub/grub.cfg. +# For full documentation of the options in this file, see: +# info -f grub -n 'Simple configuration' + +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="ExnizOS" +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" +GRUB_CMDLINE_LINUX="" + +# Uncomment to enable BadRAM filtering, modify to suit your needs +# This works with Linux (no patch required) and with any kernel that obtains +# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) +#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" + +# Uncomment this to run os-prober so search for and add other OS +# installations to the grub boot menu +GRUB_DISABLE_OS_PROBER=false + +# Uncomment to disable graphical terminal (grub-pc only) +#GRUB_TERMINAL=console + +# The resolution used on graphical terminal +# note that you can use only modes which your graphic card supports via VBE +# you can see them in real GRUB with the command `vbeinfo' +GRUB_GFXMODE=1440x400 + +# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux +#GRUB_DISABLE_LINUX_UUID=true + +# Uncomment to disable generation of recovery mode menu entries +#GRUB_DISABLE_RECOVERY="true" + +# Uncomment to get a beep at grub start +#GRUB_INIT_TUNE="480 440 1" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9070-add-architecture-i386.hook.chroot b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9070-add-architecture-i386.hook.chroot new file mode 100755 index 0000000..a6bca08 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9070-add-architecture-i386.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9070-add-architecture-i386.hook.chroot +# Description: Script to add i386 architecture +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + + +#add-architecture i386 +dpkg --add-architecture i386 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9080-remove-not-need-packages.hook.chroot b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9080-remove-not-need-packages.hook.chroot new file mode 100755 index 0000000..2c87e03 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9080-remove-not-need-packages.hook.chroot @@ -0,0 +1,5 @@ +#!/bin/bash + +# Remove software +apt --purge --yes autoremove systemsettings nvidia-tesla-470* + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9090-enable-calamares-debug.hook.chroot b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9090-enable-calamares-debug.hook.chroot new file mode 100755 index 0000000..5b62e64 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9090-enable-calamares-debug.hook.chroot @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +# Enable debug mode for Calamares + + sed -i -e 's|^ *pkexec calamares|pkexec calamares -d|' /usr/bin/install-debian diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9095-rename-installer-eznixos.hook.chroot b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9095-rename-installer-eznixos.hook.chroot new file mode 100755 index 0000000..2ec5802 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9095-rename-installer-eznixos.hook.chroot @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +# Change installer icon name to EznixOS + + sed -i -e 's|Debian|EznixOS|g' /usr/share/applications/install-debian.desktop + sed -i -e 's|^ *Icon=install-debian|Icon=/usr/share/icons/default/lava-lamp.svg|' /usr/share/applications/install-debian.desktop diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9098-rebuild-icon-caches.hook.chroot b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9098-rebuild-icon-caches.hook.chroot new file mode 100755 index 0000000..c1ef601 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9098-rebuild-icon-caches.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9098-rebuild-icon-caches.hook.chroot +# Description: Script to remove packages and other things +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Lowers the footprint in RAM at the small expense of added size to the ISO. +#update-icon-caches /usr/share/icons/* +find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \; diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9099-create-symlinks-hook.chroot b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9099-create-symlinks-hook.chroot new file mode 100755 index 0000000..aa8451a --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/hooks/9099-create-symlinks-hook.chroot @@ -0,0 +1,4 @@ +#!/bin/bash + +# Creates symlinks inside th chroot. +ln -s -r /usr/share/eznixOS12X /etc/skel diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp-2.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp-2.png new file mode 100644 index 0000000..0b494dc Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp-2.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp-svgrepo-com.svg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp-svgrepo-com.svg new file mode 100644 index 0000000..0799a08 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp-svgrepo-com.svg @@ -0,0 +1,99 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp.png new file mode 100644 index 0000000..64eb47c Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp.svg b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp.svg new file mode 100644 index 0000000..a46115c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/icons/lava-lamp.svg @@ -0,0 +1,105 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/issue/issue b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/issue/issue new file mode 100644 index 0000000..d58a10f --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/issue/issue @@ -0,0 +1,2 @@ +EznixOS \n \l + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/issue/issue.net b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/issue/issue.net new file mode 100644 index 0000000..38cd47a --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/issue/issue.net @@ -0,0 +1 @@ +EznixOS diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/launchers/Firefox-Latest.desktop b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/launchers/Firefox-Latest.desktop new file mode 100755 index 0000000..b6ac618 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/launchers/Firefox-Latest.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Firefox Latest +Exec=/opt/moz/firefox/firefox %u +Terminal=false +X-MultipleArgs=false +Type=Application +Icon=firefox +Categories=Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;x-scheme-handler/http;x-scheme-handler/https; +StartupWMClass=Firefox +StartupNotify=true diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/launchers/ezadmin.desktop b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/launchers/ezadmin.desktop new file mode 100755 index 0000000..4a948bc --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/launchers/ezadmin.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=EZ Admin Tool +Comment=ezadmin tool +Categories=System; +Keywords=System; +Exec=pkexec /usr/local/bin/ezadmin +Icon=/usr/share/icons/default/lava-lamp.png +Path=/usr/local/bin +Terminal=true +StartupNotify=false diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/lightdm/lightdm.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/lightdm/lightdm.conf new file mode 100644 index 0000000..0c037c0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/lightdm/lightdm.conf @@ -0,0 +1,169 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +#run-directory=/var/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote, unity) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-backend = X backend to use (mir) +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option) +# unity-compositor-timeout = Number of seconds to wait for compositor to start +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-backend= +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +#unity-compositor-command=unity-system-compositor +#unity-compositor-timeout=60 +#greeter-session=example-gtk-gnome +greeter-hide-users=false +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +#session-wrapper=lightdm-session +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script= +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/live-user/10-user-setup.conf b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/live-user/10-user-setup.conf new file mode 100644 index 0000000..89e58ad --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/live-user/10-user-setup.conf @@ -0,0 +1,2 @@ +LIVE_USERNAME=eznix +LIVE_USER_FULLNAME="exnixOS" diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual.en.html new file mode 100644 index 0000000..6ec7c9a --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual.en.html @@ -0,0 +1,8792 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + +
+ + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +
+ +

+ Live Systems Manual +

+ +
+ +

+ About +

+ +
+ +

+ About this manual +

+ +

+ 1. About this manual +

+ +
+ 1.1 For the impatient +
+ +
+ 1.2 Terms +
+ +
+ 1.3 Authors +
+ +
+ 1.4 Contributing to this document +
+ +
+ 1.4.1 Applying changes +
+ +
+ 1.4.2 Translation +
+ +
+ +

+ About the Live Systems Project +

+ +

+ 2. About the Live Systems Project +

+ +
+ 2.1 Motivation +
+ +
+ 2.1.1 What is wrong with current live systems +
+ +
+ 2.1.2 Why create our own live system? +
+ +
+ 2.2 Philosophy +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+ +
+ 2.2.2 No package configuration of the live system +
+ +
+ 2.3 Contact +
+ +
+ +

+ User +

+ +
+ +

+ Installation +

+ +

+ 3. Installation +

+ +
+ 3.1 Requirements +
+ +
+ 3.2 Installing live-build +
+ +
+ 3.2.1 From the Debian repository +
+ +
+ 3.2.2 From source +
+ +
+ 3.2.3 From 'snapshots' +
+ +
+ 3.3 Installing live-boot and live-config +
+ +
+ 3.3.1 From the Debian repository +
+ +
+ 3.3.2 From source +
+ +
+ 3.3.3 From 'snapshots' +
+ +
+ +

+ The basics +

+ +

+ 4. The basics +

+ +
+ 4.1 What is a live system? +
+ +
+ 4.2 Downloading prebuilt images +
+ +
+ 4.3 Using the web live image builder +
+ +
+ 4.3.1 Web builder usage and caveats +
+ +
+ 4.4 First steps: building an ISO hybrid image +
+ +
+ 4.5 Using an ISO hybrid live image +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+ +
+ 4.5.3 Using the space left on a USB stick +
+ +
+ 4.5.4 Booting the live medium +
+ +
+ 4.6 Using a virtual machine for testing +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+ +
+ 4.7 Building and using an HDD image +
+ +
+ 4.8 Building a netboot image +
+ +
+ 4.8.1 DHCP server +
+ +
+ 4.8.2 TFTP server +
+ +
+ 4.8.3 NFS server +
+ +
+ 4.8.4 Netboot testing HowTo +
+ +
+ 4.8.5 Qemu +
+ +
+ 4.9 Webbooting +
+ +
+ 4.9.1 Getting the webboot files +
+ +
+ 4.9.2 Booting webboot images +
+ +
+ +

+ Overview of tools +

+ +

+ 5. Overview of tools +

+ +
+ 5.1 The live-build package +
+ +
+ 5.1.1 The lb config command +
+ +
+ 5.1.2 The lb build command +
+ +
+ 5.1.3 The lb clean command +
+ +
+ 5.2 The live-boot package +
+ +
+ 5.3 The live-config package +
+ +
+ +

+ Managing a configuration +

+ +

+ 6. Managing a configuration +

+ +
+ 6.1 Dealing with configuration changes +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+ +
+ 6.1.2 Use example auto scripts +
+ +
+ 6.2 Clone a configuration published via Git +
+ +
+ +

+ Customizing contents +

+ +

+ 7. Customization overview +

+ +
+ 7.1 Build time vs. boot time configuration +
+ +
+ 7.2 Stages of the build +
+ +
+ 7.3 Supplement lb config with files +
+ +
+ 7.4 Customization tasks +
+ +
+ +

+ Customizing package installation +

+ +

+ 8. Customizing package installation +

+ +
+ 8.1 Package sources +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+ +
+ 8.1.2 Distribution mirrors +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+ +
+ 8.1.5 Additional repositories +
+ +
+ 8.2 Choosing packages to install +
+ +
+ 8.2.1 Package lists +
+ +
+ 8.2.2 Using metapackages +
+ +
+ 8.2.3 Local package lists +
+ +
+ 8.2.4 Local binary package lists +
+ +
+ 8.2.5 Generated package lists +
+ +
+ 8.2.6 Using conditionals inside package lists +
+ +
+ 8.2.7 Removing packages at install time +
+ +
+ 8.2.8 Desktop and language tasks +
+ +
+ 8.2.9 Kernel flavour and version +
+ +
+ 8.2.10 Custom kernels +
+ +
+ 8.3 Installing modified or third-party packages +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+ +
+ 8.3.3 Custom packages and APT +
+ +
+ 8.4 Configuring APT at build time +
+ +
+ 8.4.1 Choosing apt or aptitude +
+ +
+ 8.4.2 Using a proxy with APT +
+ +
+ 8.4.3 Tweaking APT to save space +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+ +
+ 8.4.5 APT pinning +
+ +
+ +

+ Customizing contents +

+ +

+ 9. Customizing contents +

+ +
+ 9.1 Includes +
+ +
+ 9.1.1 Live/chroot local includes +
+ +
+ 9.1.2 Binary local includes +
+ +
+ 9.2 Hooks +
+ +
+ 9.2.1 Chroot local hooks +
+ +
+ 9.2.2 Binary local hooks +
+ +
+ 9.2.3 Boot-time hooks +
+ +
+ 9.3 Preseeding Debconf questions +
+ +
+ +

+ Customizing run time behaviours +

+ +

+ 10. Customizing run time behaviours +

+ +
+ 10.1 Customizing the live user +
+ +
+ 10.2 Customizing locale and language +
+ +
+ 10.3 Persistence +
+ +
+ 10.3.1 The persistence.conf file +
+ +
+ 10.3.2 Using more than one persistence store +
+ +
+ 10.3.3 Using persistence with encryption +
+ +
+ +

+ Customizing the binary image +

+ +

+ 11. Customizing the binary image +

+ +
+ 11.1 Bootloaders +
+ +
+ 11.2 ISO metadata +
+ +
+ +

+ Customizing Debian Installer +

+ +

+ 12. Customizing Debian Installer +

+ +
+ 12.1 Types of Debian Installer +
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+ +
+ 12.3 Customizing Debian Installer content +
+ +
+ +

+ Project +

+ +
+ +

+ Contributing to the project +

+ +

+ 13. Contributing to the project +

+ +
+ 13.1 Making changes +
+ +
+ 13.2 Translation of man pages +
+ +
+ +

+ Reporting bugs +

+ +

+ 14. Reporting bugs +

+ +
+ 14.1 Known issues +
+ +
+ 14.2 Rebuild from scratch +
+ +
+ 14.3 Use up-to-date packages +
+ +
+ 14.4 Collect information +
+ +
+ 14.5 Isolate the failing case if possible +
+ +
+ 14.6 Use the correct package to report the bug against +
+ +
+ 14.6.1 At build time while bootstrapping +
+ +
+ 14.6.2 At build time while installing packages +
+ +
+ 14.6.3 At boot time +
+ +
+ 14.6.4 At run time +
+ +
+ 14.7 Do the research +
+ +
+ 14.8 Where to report bugs +
+ +
+ +

+ Coding Style +

+ +

+ 15. Coding Style +

+ +
+ 15.1 Compatibility +
+ +
+ 15.2 Indenting +
+ +
+ 15.3 Wrapping +
+ +
+ 15.4 Variables +
+ +
+ 15.5 Miscellaneous +
+ +
+ +

+ Procedures +

+ +

+ 16. Procedures +

+ +
+ 16.1 Major Releases +
+ +
+ 16.2 Point Releases +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+ +
+ 16.2.2 Point release announcement template +
+ +
+ +

+ Git repositories +

+ +

+ 17. Git repositories +

+ +
+ 17.1 Handling multiple repositories +
+ +
+ +

+ Examples +

+ +
+ +

+ Examples +

+ +

+ 18. Examples +

+ +
+ 18.1 Using the examples +
+ +
+ 18.2 Tutorial 1: A default image +
+ +
+ 18.3 Tutorial 2: A web browser utility +
+ +
+ 18.4 Tutorial 3: A personalized image +
+ +
+ 18.4.1 First revision +
+ +
+ 18.4.2 Second revision +
+ +
+ 18.5 A VNC Kiosk Client +
+ +
+ 18.6 A base image for a 128MB USB key +
+ +
+ 18.7 A localized GNOME desktop and installer +
+ +
+ +

+ Appendix +

+ +
+ +

+ Style guide +

+ +

+ 19. Style guide +

+ +
+ 19.1 Guidelines for authors +
+ +
+ 19.1.1 Linguistic features +
+ +
+ 19.1.2 Procedures +
+ +
+ 19.2 Guidelines for translators +
+ +
+ 19.2.1 Translation hints +
+ +
+ +
+ +


+
+ +

+ Live Systems Manual +

+
+ +


+
+ +

+ About +

+
+ +


+
+ +

+ About this manual +

+
+ +


+
+ +

+ 1. About this manual +

+
+ +
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +


+
+ +
+ 1.1 For the impatient +
+
+ +
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +


+
+ +
+ 1.2 Terms +
+
+ +
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +


+
+ +
+ 1.3 Authors +
+
+ +
+ +

+ A list of authors (in alphabetical order): +

+
+ +
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +


+
+ +
+ 1.4 Contributing to this document +
+
+ +
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +
+ +
+ 1.4.1 Applying changes +
+
+ +
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +
+ +

+ $ make build
+

+
+ +
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +
+ +

+ $ make build PROOF=1
+

+
+ +
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de
+

+
+ +
+ +

+ It is also possible to build by document type, e.g: +

+
+ +
+ +

+ $ make build FORMATS=pdf
+

+
+ +
+ +

+ Or combine both, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +
+ +
+ 1.4.2 Translation +
+
+ +
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+
+ +


+
+ +

+ About the Live Systems Project +

+
+ +


+
+ +

+ 2. About the Live Systems Project +

+
+ +


+
+ +
+ 2.1 Motivation +
+
+ +
+ +
+ 2.1.1 What is wrong with current live systems +
+
+ +
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +
+ +
+ 2.1.2 Why create our own live system? +
+
+ +
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +


+
+ +
+ 2.2 Philosophy +
+
+ +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+
+ +
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +
+ +
+ 2.2.2 No package configuration of the live system +
+
+ +
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +


+
+ +
+ 2.3 Contact +
+
+ +
+ + +
+ +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+
+ +


+
+ +

+ User +

+
+ +


+
+ +

+ Installation +

+
+ +


+
+ +

+ 3. Installation +

+
+ +


+
+ +
+ 3.1 Requirements +
+
+ +
+ +

+ Building live system images has very few system requirements: +

+
+ +
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
+ +
    +
  • + debootstrap +
  • +
+
+ +
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +


+
+ +
+ 3.2 Installing live-build +
+
+ +
+ +

+ You can install live-build in a number of different ways: +

+
+ +
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
+ +
    +
  • + From source +
  • +
+
+ +
+ +
    +
  • + From snapshots +
  • +
+
+ +
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +
+ +
+ 3.2.1 From the Debian repository +
+
+ +
+ +

+ Simply install live-build like any other package: +

+
+ +
+ +

+ # apt-get install live-build
+

+
+ +
+ +
+ 3.2.2 From source +
+
+ +
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +
+ +

+ You can build and install your own Debian package by executing: +

+
+ +
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +
+ +

+ # make install
+

+
+ +
+ +

+ and uninstall it with: +

+
+ +
+ +

+ # make uninstall
+

+
+ +
+ +
+ 3.2.3 From 'snapshots' +
+
+ +
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +


+
+ +
+ 3.3 Installing live-boot and live-config +
+
+ +
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +
+ +
+ 3.3.1 From the Debian repository +
+
+ +
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +
+ +
+ 3.3.2 From source +
+
+ +
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +
+ +
+ 3.3.3 From 'snapshots' +
+
+ +
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+
+ +


+
+ +

+ The basics +

+
+ +


+
+ +

+ 4. The basics +

+
+ +
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +


+
+ +
+ 4.1 What is a live system? +
+
+ +
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +


+
+ +
+ 4.2 Downloading prebuilt images +
+
+ +
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +


+
+ +
+ 4.3 Using the web live image builder +
+
+ +
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +
+ +
+ 4.3.1 Web builder usage and caveats +
+
+ +
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +


+
+ +
+ 4.4 First steps: building an ISO hybrid image +
+
+ +
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +


+
+ +
+ 4.5 Using an ISO hybrid live image +
+
+ +
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+
+ +
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+
+ +
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +
+ +
+ 4.5.3 Using the space left on a USB stick +
+
+ +
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +
+ +

+ # gparted ${USBSTICK}
+

+
+ +
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +
+ +
+ 4.5.4 Booting the live medium +
+
+ +
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +


+
+ +
+ 4.6 Using a virtual machine for testing +
+
+ +
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+
+ +
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +
+ +

+ Booting an ISO image is simple: +

+
+ +
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +
+ +

+ See the man pages for more details. +

+
+ +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+
+ +
+ +

+ In order to test the ISO with virtualbox: +

+
+ +
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +


+
+ +
+ 4.7 Building and using an HDD image +
+
+ +
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +
+ +

+ # lb clean --binary
+

+
+ +
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +
+ +

+ $ lb config -b hdd
+

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +


+
+ +
+ 4.8 Building a netboot image +
+
+ +
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +
+ +
+ 4.8.1 DHCP server +
+
+ +
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +
+ +
+ 4.8.2 TFTP server +
+
+ +
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +
+ +
+ 4.8.3 NFS server +
+
+ +
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +
+ +

+ # exportfs -rv
+

+
+ +
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +
+ +
+ 4.8.4 Netboot testing HowTo +
+
+ +
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +
+ +

+ To make our life easier, we can use virtualization. +

+
+ +
+ +
+ 4.8.5 Qemu +
+
+ +
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +
+ +

+ Edit /etc/qemu-ifup: +

+
+ +
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +


+
+ +
+ 4.9 Webbooting +
+
+ +
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +
+ +
+ 4.9.1 Getting the webboot files +
+
+ +
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +
+ +
+ 4.9.2 Booting webboot images +
+
+ +
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+
+ +


+
+ +

+ Overview of tools +

+
+ +


+
+ +

+ 5. Overview of tools +

+
+ +
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +


+
+ +
+ 5.1 The live-build package +
+
+ +
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +
+ +
+ 5.1.1 The lb config command +
+
+ +
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +
+ +

+ $ lb config --apt aptitude
+

+
+ +
+ +

+ It is possible to specify many options, such as: +

+
+ +
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +
+ +
+ 5.1.2 The lb build command +
+
+ +
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +
+ +
+ 5.1.3 The lb clean command +
+
+ +
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +


+
+ +
+ 5.2 The live-boot package +
+
+ +
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +


+
+ +
+ 5.3 The live-config package +
+
+ +
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+
+ +


+
+ +

+ Managing a configuration +

+
+ +


+
+ +

+ 6. Managing a configuration +

+
+ +
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +


+
+ +
+ 6.1 Dealing with configuration changes +
+
+ +
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+
+ +
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +
+ +
+ 6.1.2 Use example auto scripts +
+
+ +
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +


+
+ +
+ 6.2 Clone a configuration published via Git +
+
+ +
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +
+ +

+ $ lb config --config lso:live-images
+

+
+ +
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 7. Customization overview +

+
+ +
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +


+
+ +
+ 7.1 Build time vs. boot time configuration +
+
+ +
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +


+
+ +
+ 7.2 Stages of the build +
+
+ +
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +


+
+ +
+ 7.3 Supplement lb config with files +
+
+ +
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +


+
+ +
+ 7.4 Customization tasks +
+
+ +
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+
+ +


+
+ +

+ Customizing package installation +

+
+ +


+
+ +

+ 8. Customizing package installation +

+
+ +
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +


+
+ +
+ 8.1 Package sources +
+
+ +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+
+ +
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +
+ +

+ $ lb config --distribution sid
+

+
+ +
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +
+ +
+ 8.1.2 Distribution mirrors +
+
+ +
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+
+ +
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+
+ +
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +
+ +
+ 8.1.5 Additional repositories +
+
+ +
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +


+
+ +
+ 8.2 Choosing packages to install +
+
+ +
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +
+ +
+ 8.2.1 Package lists +
+
+ +
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +
+ +
+ 8.2.2 Using metapackages +
+
+ +
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +
+ +

+ $ debtags search role::metapackage
+

+
+ +
+ +
+ 8.2.3 Local package lists +
+
+ +
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +
+ +
+ 8.2.4 Local binary package lists +
+
+ +
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +
+ +
+ 8.2.5 Generated package lists +
+
+ +
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +
+ +
+ 8.2.6 Using conditionals inside package lists +
+
+ +
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +
+ +

+ The nesting of conditionals is not supported. +

+
+ +
+ +
+ 8.2.7 Removing packages at install time +
+
+ +
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +
+ +
+ 8.2.8 Desktop and language tasks +
+
+ +
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +
+ +
+ 8.2.9 Kernel flavour and version +
+
+ +
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +
+ +
+ 8.2.10 Custom kernels +
+
+ +
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +


+
+ +
+ 8.3 Installing modified or third-party packages +
+
+ +
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
+ +
    +
  • + packages.chroot +
  • +
+
+ +
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+
+ +
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+
+ +
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +
+ +
+ 8.3.3 Custom packages and APT +
+
+ +
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +


+
+ +
+ 8.4 Configuring APT at build time +
+
+ +
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +
+ +
+ 8.4.1 Choosing apt or aptitude +
+
+ +
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +
+ +
+ 8.4.2 Using a proxy with APT +
+
+ +
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +
+ +
+ 8.4.3 Tweaking APT to save space +
+
+ +
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +
+ +

+ $ lb config --apt-indices false
+

+
+ +
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +
+ +

+ $ lb config --apt-recommends false
+

+
+ +
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+
+ +
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +
+ +
+ 8.4.5 APT pinning +
+
+ +
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 9. Customizing contents +

+
+ +
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +


+
+ +
+ 9.1 Includes +
+
+ +
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +
+ +
+ 9.1.1 Live/chroot local includes +
+
+ +
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +
+ +

+ Your configuration will then have the following layout: +

+
+ +
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +
+ +
+ 9.1.2 Binary local includes +
+
+ +
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +


+
+ +
+ 9.2 Hooks +
+
+ +
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +
+ +
+ 9.2.1 Chroot local hooks +
+
+ +
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.2 Binary local hooks +
+
+ +
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.3 Boot-time hooks +
+
+ +
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +


+
+ +
+ 9.3 Preseeding Debconf questions +
+
+ +
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+
+ +


+
+ +

+ Customizing run time behaviours +

+
+ +


+
+ +

+ 10. Customizing run time behaviours +

+
+ +
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +


+
+ +
+ 10.1 Customizing the live user +
+
+ +
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +


+
+ +
+ 10.2 Customizing locale and language +
+
+ +
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
+ +
    +
  • + the locale generation +
  • +
+
+ +
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +


+
+ +
+ 10.3 Persistence +
+
+ +
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ + + +
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +
+ +
+ 10.3.1 The persistence.conf file +
+
+ +
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +
+ +
+ 10.3.2 Using more than one persistence store +
+
+ +
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +
+ +
+ 10.3.3 Using persistence with encryption +
+
+ +
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +
+ +

+ To install cryptsetup on your machine: +

+
+ +
+ +

+ # apt-get install cryptsetup
+

+
+ +
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +
+ +

+ Then unmount the mount point: +

+
+ +
+ +

+ # umount /mnt
+

+
+ +
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +
+ +

+ # cryptsetup luksClose live
+

+
+ +
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+
+ +


+
+ +

+ Customizing the binary image +

+
+ +


+
+ +

+ 11. Customizing the binary image +

+
+ +


+
+ +
+ 11.1 Bootloaders +
+
+ +
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +


+
+ +
+ 11.2 ISO metadata +
+
+ +
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+
+ +


+
+ +

+ Customizing Debian Installer +

+
+ +


+
+ +

+ 12. Customizing Debian Installer +

+
+ +
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +


+
+ +
+ 12.1 Types of Debian Installer +
+
+ +
+ +

+ The three main types of installer are: +

+
+ +
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +


+
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+
+ +
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +


+
+ +
+ 12.3 Customizing Debian Installer content +
+
+ +
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+
+ +


+
+ +

+ Project +

+
+ +


+
+ +

+ Contributing to the project +

+
+ +


+
+ +

+ 13. Contributing to the project +

+
+ +
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
+ +
    +
  • + Merge commits. +
  • +
+
+ +
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +


+
+ +
+ 13.1 Making changes +
+
+ +
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +
+ +

+ $ git push
+

+
+ +


+
+ +
+ 13.2 Translation of man pages +
+
+ +
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+
+ +


+
+ +

+ Reporting bugs +

+
+ +


+
+ +

+ 14. Reporting bugs +

+
+ +
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +
+ +

+ For the impatient: +

+
+ +
+ + +
+ +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +


+
+ +
+ 14.1 Known issues +
+
+ +
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +


+
+ +
+ 14.2 Rebuild from scratch +
+
+ +
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +


+
+ +
+ 14.3 Use up-to-date packages +
+
+ +
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +


+
+ +
+ 14.4 Collect information +
+
+ +
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +


+
+ +
+ 14.5 Isolate the failing case if possible +
+
+ +
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +


+
+ +
+ 14.6 Use the correct package to report the bug against +
+
+ +
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +
+ +
+ 14.6.1 At build time while bootstrapping +
+
+ +
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +
+ +
+ 14.6.2 At build time while installing packages +
+
+ +
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +
+ +
+ 14.6.3 At boot time +
+
+ +
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +
+ +
+ 14.6.4 At run time +
+
+ +
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +


+
+ +
+ 14.7 Do the research +
+
+ +
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +


+
+ +
+ 14.8 Where to report bugs +
+
+ +
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+
+ +


+
+ +

+ Coding Style +

+
+ +


+
+ +

+ 15. Coding Style +

+
+ +
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +


+
+ +
+ 15.1 Compatibility +
+
+ +
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +


+
+ +
+ 15.2 Indenting +
+
+ +
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +


+
+ +
+ 15.3 Wrapping +
+
+ +
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if foo; then
+         bar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ Foo () {
+         bar
+}
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +


+
+ +
+ 15.4 Variables +
+
+ +
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ FOO=bar
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ FOO="bar"
+

+
+ +
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +


+
+ +
+ 15.5 Miscellaneous +
+
+ +
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+
+ +


+
+ +

+ Procedures +

+
+ +


+
+ +

+ 16. Procedures +

+
+ +
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +


+
+ +
+ 16.1 Major Releases +
+
+ +
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +


+
+ +
+ 16.2 Point Releases +
+
+ +
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+
+ +
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +
+ +
+ 16.2.2 Point release announcement template +
+
+ +
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+
+ +


+
+ +

+ Git repositories +

+
+ +


+
+ +

+ 17. Git repositories +

+
+ +
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +
+ +

+ $ git checkout debian-next
+

+
+ +
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +


+
+ +
+ 17.1 Handling multiple repositories +
+
+ +
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ 18. Examples +

+
+ +
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +


+
+ +
+ 18.1 Using the examples +
+
+ +
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +


+
+ +
+ 18.2 Tutorial 1: A default image +
+
+ +
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +
+ +

+ You can't get much simpler than this: +

+
+ +
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +


+
+ +
+ 18.3 Tutorial 2: A web browser utility +
+
+ +
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +


+
+ +
+ 18.4 Tutorial 3: A personalized image +
+
+ +
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +
+ +
+ 18.4.1 First revision +
+
+ +
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +
+ +

+ Edit auto/config to read as follows: +

+
+ +
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ Now populate your local package list: +

+
+ +
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +
+ +

+ Now, build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +
+ +
+ 18.4.2 Second revision +
+
+ +
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Build again: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +


+
+ +
+ 18.5 A VNC Kiosk Client +
+
+ +
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +
+ +

+ Build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Enjoy. +

+
+ +


+
+ +
+ 18.6 A base image for a 128MB USB key +
+
+ +
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ Now, build the image in the usual way: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +


+
+ +
+ 18.7 A localized GNOME desktop and installer +
+
+ +
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+
+ +


+
+ +

+ Appendix +

+
+ +


+
+ +

+ Style guide +

+
+ +


+
+ +

+ 19. Style guide +

+
+ +


+
+ +
+ 19.1 Guidelines for authors +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +
+ +
+ 19.1.1 Linguistic features +
+
+ +
+ +
    +
  • + Use plain English +
  • +
+
+ +
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
+ +
    +
  • + Variety of English +
  • +
+
+ +
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
+ +
    +
  • + Be balanced +
  • +
+
+ +
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
+ +
    +
  • + Be politically correct +
  • +
+
+ +
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
+ +
    +
  • + Be concise +
  • +
+
+ +
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
+ +
    +
  • + Minimize translation work +
  • +
+
+ +
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
+ +
    +
  • + Be coherent +
  • +
+
+ +
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
+ +
    +
  • + Be cohesive +
  • +
+
+ +
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
+ +
    +
  • + Be descriptive +
  • +
+
+ +
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
+ +
    +
  • + Dictionary +
  • +
+
+ +
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +
+ +
+ 19.1.2 Procedures +
+
+ +
+ +
    +
  • + Test before write +
  • +
+
+ +
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
+ +
    +
  • + Examples +
  • +
+
+ +
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
+ +
    +
  • + External links +
  • +
+
+ +
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
+ +
    +
  • + Chapters +
  • +
+
+ +
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +
+ +

+ $ sisu --help markup
+

+
+ +
+ +

+ Here are some markup examples that may prove useful: +

+
+ +
+ +

+ - For emphasis/bold text: +

+
+ +
+ +

+ *{foo}* or !{foo}!
+

+
+ +
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +
+ +

+ - For italics: +

+
+ +
+ +

+ /{foo}/
+

+
+ +
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +
+ +

+ - For monospace: +

+
+ +
+ +

+ #{foo}#
+

+
+ +
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +
+ +

+ - For code blocks: +

+
+ +
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +
+ +

+ produces: +

+
+ +
+ +

+ $ foo
+# bar
+

+
+ +
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +


+
+ +
+ 19.2 Guidelines for translators +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +
+ +
+ 19.2.1 Translation hints +
+
+ +
+ +
    +
  • + Comments +
  • +
+
+ +
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
+ +
    +
  • + False friends +
  • +
+
+ +
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
+ +
    +
  • + Code blocks +
  • +
+
+ +
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
+ +
    +
  • + Newlines +
  • +
+
+ +
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +
+ +

+ Translators should never translate: +

+
+ +
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +
+ +

+ - The names of programs +

+
+ +
+ +

+ - The commands given as examples +

+
+ +
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +
+ +

+ - Links +

+
+ +
+ +

+ - Paths +

+
+ +
+ +
+ + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +

+ + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/about-manual.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/about-manual.en.html new file mode 100644 index 0000000..dbf850a --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/about-manual.en.html @@ -0,0 +1,522 @@ + + + + + + about-manual - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About this manual +

+
+ +

+ 1. About this manual +

+
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +

+ 1.1 For the impatient +

+
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +

+ 1.2 Terms +

+
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +

+ 1.3 Authors +

+
+ +

+ A list of authors (in alphabetical order): +

+
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +

+ 1.4 Contributing to this document +

+
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +

+ 1.4.1 Applying changes +

+
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +

+ $ make build
+

+
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +

+ $ make build PROOF=1
+

+
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +

+ $ make build LANGUAGES=de
+

+
+ +

+ It is also possible to build by document type, e.g: +

+
+ +

+ $ make build FORMATS=pdf
+

+
+ +

+ Or combine both, e.g: +

+
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +

+ 1.4.2 Translation +

+
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/about-project.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/about-project.en.html new file mode 100644 index 0000000..2c02972 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/about-project.en.html @@ -0,0 +1,314 @@ + + + + + + about-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About the Live Systems Project +

+
+ +

+ 2. About the Live Systems Project +

+
+ +

+ 2.1 Motivation +

+
+ +

+ 2.1.1 What is wrong with current live systems +

+
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +

+ 2.1.2 Why create our own live system? +

+
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +

+ 2.2 Philosophy +

+
+ +

+ 2.2.1 Only unchanged packages from Debian "main" +

+
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +

+ 2.2.2 No package configuration of the live system +

+
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +

+ 2.3 Contact +

+
+ + +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/bugs.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/bugs.en.html new file mode 100644 index 0000000..ac139e0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/bugs.en.html @@ -0,0 +1,419 @@ + + + + + + bugs - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Reporting bugs +

+
+ +

+ 14. Reporting bugs +

+
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +

+ For the impatient: +

+
+ + +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +

+ 14.1 Known issues +

+
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +

+ 14.2 Rebuild from scratch +

+
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +

+ 14.3 Use up-to-date packages +

+
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +

+ 14.4 Collect information +

+
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +

+ 14.5 Isolate the failing case if possible +

+
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +

+ 14.6 Use the correct package to report the bug against +

+
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +

+ 14.6.1 At build time while bootstrapping +

+
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +

+ 14.6.2 At build time while installing packages +

+
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +

+ 14.6.3 At boot time +

+
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +

+ 14.6.4 At run time +

+
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +

+ 14.7 Do the research +

+
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +

+ 14.8 Where to report bugs +

+
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/coding-style.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/coding-style.en.html new file mode 100644 index 0000000..f603650 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/coding-style.en.html @@ -0,0 +1,400 @@ + + + + + + coding-style - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Coding Style +

+
+ +

+ 15. Coding Style +

+
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +

+ 15.1 Compatibility +

+
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +

+ 15.2 Indenting +

+
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +

+ 15.3 Wrapping +

+
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if foo; then
+         bar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +

+ Bad: +

+
+ +

+ Foo () {
+         bar
+}
+

+
+ +

+ Good: +

+
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +

+ 15.4 Variables +

+
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +

+ Bad: +

+
+ +

+ FOO=bar
+

+
+ +

+ Good: +

+
+ +

+ FOO="bar"
+

+
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +

+ 15.5 Miscellaneous +

+
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/contributing-to-project.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/contributing-to-project.en.html new file mode 100644 index 0000000..49ff6f9 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/contributing-to-project.en.html @@ -0,0 +1,338 @@ + + + + + + contributing-to-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Contributing to the project +

+
+ +

+ 13. Contributing to the project +

+
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
    +
  • + Merge commits. +
  • +
+
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +

+ 13.1 Making changes +

+
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +

+ $ git push
+

+
+ +

+ 13.2 Translation of man pages +

+
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customization-overview.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customization-overview.en.html new file mode 100644 index 0000000..8730608 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customization-overview.en.html @@ -0,0 +1,175 @@ + + + + + + customization-overview - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 7. Customization overview +

+
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +

+ 7.1 Build time vs. boot time configuration +

+
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +

+ 7.2 Stages of the build +

+
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +

+ 7.3 Supplement lb config with files +

+
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +

+ 7.4 Customization tasks +

+
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-binary.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-binary.en.html new file mode 100644 index 0000000..c82dd86 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-binary.en.html @@ -0,0 +1,196 @@ + + + + + + customizing-binary - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing the binary image +

+
+ +

+ 11. Customizing the binary image +

+
+ +

+ 11.1 Bootloaders +

+
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +

+ 11.2 ISO metadata +

+
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-contents.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-contents.en.html new file mode 100644 index 0000000..19a400c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-contents.en.html @@ -0,0 +1,276 @@ + + + + + + customizing-contents - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 9. Customizing contents +

+
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +

+ 9.1 Includes +

+
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +

+ 9.1.1 Live/chroot local includes +

+
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +

+ Your configuration will then have the following layout: +

+
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +

+ 9.1.2 Binary local includes +

+
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +

+ 9.2 Hooks +

+
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +

+ 9.2.1 Chroot local hooks +

+
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.2 Binary local hooks +

+
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.3 Boot-time hooks +

+
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +

+ 9.3 Preseeding Debconf questions +

+
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-installer.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-installer.en.html new file mode 100644 index 0000000..9c470ba --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-installer.en.html @@ -0,0 +1,218 @@ + + + + + + customizing-installer - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing Debian Installer +

+
+ +

+ 12. Customizing Debian Installer +

+
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +

+ 12.1 Types of Debian Installer +

+
+ +

+ The three main types of installer are: +

+
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +

+ 12.2 Customizing Debian Installer by preseeding +

+
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +

+ 12.3 Customizing Debian Installer content +

+
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-package-installation.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-package-installation.en.html new file mode 100644 index 0000000..05328d3 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-package-installation.en.html @@ -0,0 +1,799 @@ + + + + + + customizing-package-installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing package installation +

+
+ +

+ 8. Customizing package installation +

+
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +

+ 8.1 Package sources +

+
+ +

+ 8.1.1 Distribution, archive areas and mode +

+
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +

+ $ lb config --distribution sid
+

+
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +

+ 8.1.2 Distribution mirrors +

+
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +

+ 8.1.3 Distribution mirrors used at build time +

+
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +

+ 8.1.4 Distribution mirrors used at run time +

+
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +

+ 8.1.5 Additional repositories +

+
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +

+ 8.2 Choosing packages to install +

+
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +

+ 8.2.1 Package lists +

+
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +

+ 8.2.2 Using metapackages +

+
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +

+ $ debtags search role::metapackage
+

+
+ +

+ 8.2.3 Local package lists +

+
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +

+ 8.2.4 Local binary package lists +

+
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +

+ 8.2.5 Generated package lists +

+
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +

+ 8.2.6 Using conditionals inside package lists +

+
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +

+ The nesting of conditionals is not supported. +

+
+ +

+ 8.2.7 Removing packages at install time +

+
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +

+ 8.2.8 Desktop and language tasks +

+
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +

+ 8.2.9 Kernel flavour and version +

+
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +

+ 8.2.10 Custom kernels +

+
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +

+ 8.3 Installing modified or third-party packages +

+
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
    +
  • + packages.chroot +
  • +
+
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +

+ 8.3.1 Using packages.chroot to install custom packages +

+
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +

+ 8.3.2 Using an APT repository to install custom packages +

+
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +

+ 8.3.3 Custom packages and APT +

+
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +

+ 8.4 Configuring APT at build time +

+
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +

+ 8.4.1 Choosing apt or aptitude +

+
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +

+ 8.4.2 Using a proxy with APT +

+
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +

+ 8.4.3 Tweaking APT to save space +

+
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +

+ $ lb config --apt-indices false
+

+
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +

+ $ lb config --apt-recommends false
+

+
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +

+ 8.4.4 Passing options to apt or aptitude +

+
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +

+ 8.4.5 APT pinning +

+
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-run-time-behaviours.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-run-time-behaviours.en.html new file mode 100644 index 0000000..becca70 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/customizing-run-time-behaviours.en.html @@ -0,0 +1,579 @@ + + + + + + customizing-run-time-behaviours - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing run time behaviours +

+
+ +

+ 10. Customizing run time behaviours +

+
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +

+ 10.1 Customizing the live user +

+
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +

+ 10.2 Customizing locale and language +

+
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
    +
  • + the locale generation +
  • +
+
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +

+ 10.3 Persistence +

+
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +

+ 10.3.1 The persistence.conf file +

+
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +

+ 10.3.2 Using more than one persistence store +

+
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +

+ 10.3.3 Using persistence with encryption +

+
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +

+ To install cryptsetup on your machine: +

+
+ +

+ # apt-get install cryptsetup
+

+
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +

+ Then unmount the mount point: +

+
+ +

+ # umount /mnt
+

+
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +

+ # cryptsetup luksClose live
+

+
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/examples.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/examples.en.html new file mode 100644 index 0000000..7727525 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/examples.en.html @@ -0,0 +1,595 @@ + + + + + + examples - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Examples +

+
+ +

+ 18. Examples +

+
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +

+ 18.1 Using the examples +

+
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +

+ 18.2 Tutorial 1: A default image +

+
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +

+ You can't get much simpler than this: +

+
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +

+ 18.3 Tutorial 2: A web browser utility +

+
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +

+ 18.4 Tutorial 3: A personalized image +

+
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +

+ 18.4.1 First revision +

+
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +

+ Edit auto/config to read as follows: +

+
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +

+ $ lb config
+

+
+ +

+ Now populate your local package list: +

+
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +

+ Now, build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +

+ 18.4.2 Second revision +

+
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +

+ # lb clean
+

+
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +

+ Build again: +

+
+ +

+ # lb build
+

+
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +

+ 18.5 A VNC Kiosk Client +

+
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +

+ Build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Enjoy. +

+
+ +

+ 18.6 A base image for a 128MB USB key +

+
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +

+ Now, build the image in the usual way: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +

+ 18.7 A localized GNOME desktop and installer +

+
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/git-repositories.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/git-repositories.en.html new file mode 100644 index 0000000..d4cd6d2 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/git-repositories.en.html @@ -0,0 +1,205 @@ + + + + + + git-repositories - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Git repositories +

+
+ +

+ 17. Git repositories +

+
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +

+ $ git checkout debian-next
+

+
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +

+ 17.1 Handling multiple repositories +

+
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/index.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/index.en.html new file mode 120000 index 0000000..f590e80 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/index.en.html @@ -0,0 +1 @@ +toc.en.html \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/installation.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/installation.en.html new file mode 100644 index 0000000..b86051d --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/installation.en.html @@ -0,0 +1,389 @@ + + + + + + installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Installation +

+
+ +

+ 3. Installation +

+
+ +

+ 3.1 Requirements +

+
+ +

+ Building live system images has very few system requirements: +

+
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
    +
  • + debootstrap +
  • +
+
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +

+ 3.2 Installing live-build +

+
+ +

+ You can install live-build in a number of different ways: +

+
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
    +
  • + From source +
  • +
+
+ +
    +
  • + From snapshots +
  • +
+
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +

+ 3.2.1 From the Debian repository +

+
+ +

+ Simply install live-build like any other package: +

+
+ +

+ # apt-get install live-build
+

+
+ +

+ 3.2.2 From source +

+
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +

+ You can build and install your own Debian package by executing: +

+
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +

+ # make install
+

+
+ +

+ and uninstall it with: +

+
+ +

+ # make uninstall
+

+
+ +

+ 3.2.3 From 'snapshots' +

+
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +

+ 3.3 Installing live-boot and live-config +

+
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +

+ 3.3.1 From the Debian repository +

+
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +

+ 3.3.2 From source +

+
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +

+ 3.3.3 From 'snapshots' +

+
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/managing-a-configuration.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/managing-a-configuration.en.html new file mode 100644 index 0000000..8c7b6df --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/managing-a-configuration.en.html @@ -0,0 +1,252 @@ + + + + + + managing-a-configuration - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Managing a configuration +

+
+ +

+ 6. Managing a configuration +

+
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +

+ 6.1 Dealing with configuration changes +

+
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +

+ 6.1.1 Why use auto scripts? What do they do? +

+
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +

+ 6.1.2 Use example auto scripts +

+
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +

+ 6.2 Clone a configuration published via Git +

+
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +

+ $ lb config --config lso:live-images
+

+
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/metadata.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/metadata.en.html new file mode 100644 index 0000000..b6dfea7 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/metadata.en.html @@ -0,0 +1,126 @@ + + + + + + metadata - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+

+ Metadata +

+

+ Document Metadata: +

+ Title: Live Systems Manual +

+ Author: Live Systems Project +

+ Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file. +

+ Publisher: Live Systems Project +

+ Date: 2015-09-22 +

+ Version Information: +

+ Sourcefile: live-manual.ssm.sst +

+ Filetype: SiSU text 2.0, ASCII text, with very long lines (1077) +

+ Source Digest: SHA2-256(live-manual.ssm.sst)= 5946f730f5507ab7b8fd85c9c536b89bd30afc6d5f336d8cafd50d54a84d9be6 +

+ Generated: +

+ Generated by: Generated by: SiSU 7.2.1_pre_rel of 2019w35/4 (2019-09-05) +

+ Ruby version: ruby 3.0.4p208 (2022-04-12 revision 3fa771dded) [x86_64-linux-gnu] +

+ Document (ao) last generated: 2022-06-14 13:53:03 +0000 +


+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+ +
\ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/overview-of-tools.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/overview-of-tools.en.html new file mode 100644 index 0000000..171486c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/overview-of-tools.en.html @@ -0,0 +1,288 @@ + + + + + + overview-of-tools - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Overview of tools +

+
+ +

+ 5. Overview of tools +

+
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +

+ 5.1 The live-build package +

+
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +

+ 5.1.1 The lb config command +

+
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +

+ $ lb config --apt aptitude
+

+
+ +

+ It is possible to specify many options, such as: +

+
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +

+ 5.1.2 The lb build command +

+
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +

+ 5.1.3 The lb clean command +

+
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +

+ 5.2 The live-boot package +

+
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +

+ 5.3 The live-config package +

+
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/procedures.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/procedures.en.html new file mode 100644 index 0000000..04a891c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/procedures.en.html @@ -0,0 +1,254 @@ + + + + + + procedures - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Procedures +

+
+ +

+ 16. Procedures +

+
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +

+ 16.1 Major Releases +

+
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +

+ 16.2 Point Releases +

+
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +

+ 16.2.1 Last Point Release of a Debian Release +

+
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +

+ 16.2.2 Point release announcement template +

+
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/style-guide.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/style-guide.en.html new file mode 100644 index 0000000..95498ea --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/style-guide.en.html @@ -0,0 +1,698 @@ + + + + + + style-guide - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Style guide +

+
+ +

+ 19. Style guide +

+
+ +

+ 19.1 Guidelines for authors +

+
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +

+ 19.1.1 Linguistic features +

+
+ +
    +
  • + Use plain English +
  • +
+
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
    +
  • + Variety of English +
  • +
+
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
    +
  • + Be balanced +
  • +
+
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
    +
  • + Be politically correct +
  • +
+
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
    +
  • + Be concise +
  • +
+
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
    +
  • + Minimize translation work +
  • +
+
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
    +
  • + Be coherent +
  • +
+
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
    +
  • + Be cohesive +
  • +
+
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
    +
  • + Be descriptive +
  • +
+
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
    +
  • + Dictionary +
  • +
+
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +

+ 19.1.2 Procedures +

+
+ +
    +
  • + Test before write +
  • +
+
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
    +
  • + Examples +
  • +
+
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
    +
  • + External links +
  • +
+
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
    +
  • + Chapters +
  • +
+
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +

+ $ sisu --help markup
+

+
+ +

+ Here are some markup examples that may prove useful: +

+
+ +

+ - For emphasis/bold text: +

+
+ +

+ *{foo}* or !{foo}!
+

+
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +

+ - For italics: +

+
+ +

+ /{foo}/
+

+
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +

+ - For monospace: +

+
+ +

+ #{foo}#
+

+
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +

+ - For code blocks: +

+
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +

+ produces: +

+
+ +

+ $ foo
+# bar
+

+
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +

+ 19.2 Guidelines for translators +

+
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +

+ 19.2.1 Translation hints +

+
+ +
    +
  • + Comments +
  • +
+
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
    +
  • + False friends +
  • +
+
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
    +
  • + Code blocks +
  • +
+
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
    +
  • + Newlines +
  • +
+
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +

+ Translators should never translate: +

+
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +

+ - The names of programs +

+
+ +

+ - The commands given as examples +

+
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +

+ - Links +

+
+ +

+ - Paths +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/the-basics.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/the-basics.en.html new file mode 100644 index 0000000..1e08eb9 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/the-basics.en.html @@ -0,0 +1,847 @@ + + + + + + the-basics - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ The basics +

+
+ +

+ 4. The basics +

+
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +

+ 4.1 What is a live system? +

+
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +

+ 4.2 Downloading prebuilt images +

+
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +

+ 4.3 Using the web live image builder +

+
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +

+ 4.3.1 Web builder usage and caveats +

+
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +

+ 4.4 First steps: building an ISO hybrid image +

+
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +

+ $ lb config
+

+
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +

+ 4.5 Using an ISO hybrid live image +

+
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +

+ 4.5.1 Burning an ISO image to a physical medium +

+
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +

+ 4.5.2 Copying an ISO hybrid image to a USB stick +

+
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +

+ 4.5.3 Using the space left on a USB stick +

+
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +

+ # gparted ${USBSTICK}
+

+
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +

+ 4.5.4 Booting the live medium +

+
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +

+ 4.6 Using a virtual machine for testing +

+
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +

+ 4.6.1 Testing an ISO image with QEMU +

+
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +

+ Booting an ISO image is simple: +

+
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +

+ See the man pages for more details. +

+
+ +

+ 4.6.2 Testing an ISO image with VirtualBox +

+
+ +

+ In order to test the ISO with virtualbox: +

+
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +

+ 4.7 Building and using an HDD image +

+
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +

+ # lb clean --binary
+

+
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +

+ $ lb config -b hdd
+

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +

+ 4.8 Building a netboot image +

+
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +

+ # lb clean
+

+
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +

+ 4.8.1 DHCP server +

+
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +

+ 4.8.2 TFTP server +

+
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +

+ 4.8.3 NFS server +

+
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +

+ # exportfs -rv
+

+
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +

+ 4.8.4 Netboot testing HowTo +

+
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +

+ To make our life easier, we can use virtualization. +

+
+ +

+ 4.8.5 Qemu +

+
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +

+ Edit /etc/qemu-ifup: +

+
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +

+ 4.9 Webbooting +

+
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +

+ 4.9.1 Getting the webboot files +

+
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +

+ 4.9.2 Booting webboot images +

+
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/toc.en.html b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/toc.en.html new file mode 100644 index 0000000..9612714 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/livebuild/live-manual/toc.en.html @@ -0,0 +1,1163 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   + next >>  +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

+ Live Systems Manual +

+ +

+ About +

+ +

+ About this manual +

+ +

+ + 1. About this manual + +

+ +
+ + 1.1 For the impatient + +
+ +
+ + 1.2 Terms + +
+ +
+ + 1.3 Authors + +
+ +
+ + 1.4 Contributing to this document + +
+ +
+ + 1.4.1 Applying changes + +
+ +
+ + 1.4.2 Translation + +
+ +

+ About the Live Systems Project +

+ +

+ + 2. About the Live Systems Project + +

+ +
+ + 2.1 Motivation + +
+ +
+ + 2.1.1 What is wrong with current live systems + +
+ +
+ + 2.1.2 Why create our own live system? + +
+ +
+ + 2.2 Philosophy + +
+ +
+ + 2.2.1 Only unchanged packages from Debian "main" + +
+ +
+ + 2.2.2 No package configuration of the live system + +
+ +
+ + 2.3 Contact + +
+ +

+ User +

+ +

+ Installation +

+ +

+ + 3. Installation + +

+ +
+ + 3.1 Requirements + +
+ +
+ + 3.2 Installing live-build + +
+ +
+ + 3.2.1 From the Debian repository + +
+ +
+ + 3.2.2 From source + +
+ +
+ + 3.2.3 From 'snapshots' + +
+ +
+ + 3.3 Installing live-boot and live-config + +
+ +
+ + 3.3.1 From the Debian repository + +
+ +
+ + 3.3.2 From source + +
+ +
+ + 3.3.3 From 'snapshots' + +
+ +

+ The basics +

+ +

+ + 4. The basics + +

+ +
+ + 4.1 What is a live system? + +
+ +
+ + 4.2 Downloading prebuilt images + +
+ +
+ + 4.3 Using the web live image builder + +
+ +
+ + 4.3.1 Web builder usage and caveats + +
+ +
+ + 4.4 First steps: building an ISO hybrid image + +
+ +
+ + 4.5 Using an ISO hybrid live image + +
+ +
+ + 4.5.1 Burning an ISO image to a physical medium + +
+ +
+ + 4.5.2 Copying an ISO hybrid image to a USB stick + +
+ +
+ + 4.5.3 Using the space left on a USB stick + +
+ +
+ + 4.5.4 Booting the live medium + +
+ +
+ + 4.6 Using a virtual machine for testing + +
+ +
+ + 4.6.1 Testing an ISO image with QEMU + +
+ +
+ + 4.6.2 Testing an ISO image with VirtualBox + +
+ +
+ + 4.7 Building and using an HDD image + +
+ +
+ + 4.8 Building a netboot image + +
+ +
+ + 4.8.1 DHCP server + +
+ +
+ + 4.8.2 TFTP server + +
+ +
+ + 4.8.3 NFS server + +
+ +
+ + 4.8.4 Netboot testing HowTo + +
+ +
+ + 4.8.5 Qemu + +
+ +
+ + 4.9 Webbooting + +
+ +
+ + 4.9.1 Getting the webboot files + +
+ +
+ + 4.9.2 Booting webboot images + +
+ +

+ Overview of tools +

+ +

+ + 5. Overview of tools + +

+ +
+ + 5.1 The live-build package + +
+ +
+ + 5.1.1 The lb config command + +
+ +
+ + 5.1.2 The lb build command + +
+ +
+ + 5.1.3 The lb clean command + +
+ +
+ + 5.2 The live-boot package + +
+ +
+ + 5.3 The live-config package + +
+ +

+ Managing a configuration +

+ +

+ + 6. Managing a configuration + +

+ +
+ + 6.1 Dealing with configuration changes + +
+ +
+ + 6.1.1 Why use auto scripts? What do they do? + +
+ +
+ + 6.1.2 Use example auto scripts + +
+ +
+ + 6.2 Clone a configuration published via Git + +
+ +

+ Customizing contents +

+ +

+ + 7. Customization overview + +

+ +
+ + 7.1 Build time vs. boot time configuration + +
+ +
+ + 7.2 Stages of the build + +
+ +
+ + 7.3 Supplement lb config with files + +
+ +
+ + 7.4 Customization tasks + +
+ +

+ Customizing package installation +

+ +

+ + 8. Customizing package installation + +

+ +
+ + 8.1 Package sources + +
+ +
+ + 8.1.1 Distribution, archive areas and mode + +
+ +
+ + 8.1.2 Distribution mirrors + +
+ +
+ + 8.1.3 Distribution mirrors used at build time + +
+ +
+ + 8.1.4 Distribution mirrors used at run time + +
+ +
+ + 8.1.5 Additional repositories + +
+ +
+ + 8.2 Choosing packages to install + +
+ +
+ + 8.2.1 Package lists + +
+ +
+ + 8.2.2 Using metapackages + +
+ +
+ + 8.2.3 Local package lists + +
+ +
+ + 8.2.4 Local binary package lists + +
+ +
+ + 8.2.5 Generated package lists + +
+ +
+ + 8.2.6 Using conditionals inside package lists + +
+ +
+ + 8.2.7 Removing packages at install time + +
+ +
+ + 8.2.8 Desktop and language tasks + +
+ +
+ + 8.2.9 Kernel flavour and version + +
+ +
+ + 8.2.10 Custom kernels + +
+ +
+ + 8.3 Installing modified or third-party packages + +
+ +
+ + 8.3.1 Using packages.chroot to install custom packages + +
+ +
+ + 8.3.2 Using an APT repository to install custom packages + +
+ +
+ + 8.3.3 Custom packages and APT + +
+ +
+ + 8.4 Configuring APT at build time + +
+ +
+ + 8.4.1 Choosing apt or aptitude + +
+ +
+ + 8.4.2 Using a proxy with APT + +
+ +
+ + 8.4.3 Tweaking APT to save space + +
+ +
+ + 8.4.4 Passing options to apt or aptitude + +
+ +
+ + 8.4.5 APT pinning + +
+ +

+ Customizing contents +

+ +

+ + 9. Customizing contents + +

+ +
+ + 9.1 Includes + +
+ +
+ + 9.1.1 Live/chroot local includes + +
+ +
+ + 9.1.2 Binary local includes + +
+ +
+ + 9.2 Hooks + +
+ +
+ + 9.2.1 Chroot local hooks + +
+ +
+ + 9.2.2 Binary local hooks + +
+ +
+ + 9.2.3 Boot-time hooks + +
+ +
+ + 9.3 Preseeding Debconf questions + +
+ +

+ Customizing run time behaviours +

+ +

+ + 10. Customizing run time behaviours + +

+ +
+ + 10.1 Customizing the live user + +
+ +
+ + 10.2 Customizing locale and language + +
+ +
+ + 10.3 Persistence + +
+ +
+ + 10.3.1 The persistence.conf file + +
+ +
+ + 10.3.2 Using more than one persistence store + +
+ +
+ + 10.3.3 Using persistence with encryption + +
+ +

+ Customizing the binary image +

+ +

+ + 11. Customizing the binary image + +

+ +
+ + 11.1 Bootloaders + +
+ +
+ + 11.2 ISO metadata + +
+ +

+ Customizing Debian Installer +

+ +

+ + 12. Customizing Debian Installer + +

+ +
+ + 12.1 Types of Debian Installer + +
+ +
+ + 12.2 Customizing Debian Installer by preseeding + +
+ +
+ + 12.3 Customizing Debian Installer content + +
+ +

+ Project +

+ +

+ Contributing to the project +

+ +

+ + 13. Contributing to the project + +

+ +
+ + 13.1 Making changes + +
+ +
+ + 13.2 Translation of man pages + +
+ +

+ Reporting bugs +

+ +

+ + 14. Reporting bugs + +

+ +
+ + 14.1 Known issues + +
+ +
+ + 14.2 Rebuild from scratch + +
+ +
+ + 14.3 Use up-to-date packages + +
+ +
+ + 14.4 Collect information + +
+ +
+ + 14.5 Isolate the failing case if possible + +
+ +
+ + 14.6 Use the correct package to report the bug against + +
+ +
+ + 14.6.1 At build time while bootstrapping + +
+ +
+ + 14.6.2 At build time while installing packages + +
+ +
+ + 14.6.3 At boot time + +
+ +
+ + 14.6.4 At run time + +
+ +
+ + 14.7 Do the research + +
+ +
+ + 14.8 Where to report bugs + +
+ +

+ Coding Style +

+ +

+ + 15. Coding Style + +

+ +
+ + 15.1 Compatibility + +
+ +
+ + 15.2 Indenting + +
+ +
+ + 15.3 Wrapping + +
+ +
+ + 15.4 Variables + +
+ +
+ + 15.5 Miscellaneous + +
+ +

+ Procedures +

+ +

+ + 16. Procedures + +

+ +
+ + 16.1 Major Releases + +
+ +
+ + 16.2 Point Releases + +
+ +
+ + 16.2.1 Last Point Release of a Debian Release + +
+ +
+ + 16.2.2 Point release announcement template + +
+ +

+ Git repositories +

+ +

+ + 17. Git repositories + +

+ +
+ + 17.1 Handling multiple repositories + +
+ +

+ Examples +

+ +

+ Examples +

+ +

+ + 18. Examples + +

+ +
+ + 18.1 Using the examples + +
+ +
+ + 18.2 Tutorial 1: A default image + +
+ +
+ + 18.3 Tutorial 2: A web browser utility + +
+ +
+ + 18.4 Tutorial 3: A personalized image + +
+ +
+ + 18.4.1 First revision + +
+ +
+ + 18.4.2 Second revision + +
+ +
+ + 18.5 A VNC Kiosk Client + +
+ +
+ + 18.6 A base image for a 128MB USB key + +
+ +
+ + 18.7 A localized GNOME desktop and installer + +
+ +

+ Appendix +

+ +

+ Style guide +

+ +

+ + 19. Style guide + +

+ +
+ + 19.1 Guidelines for authors + +
+ +
+ + 19.1.1 Linguistic features + +
+ +
+ + 19.1.2 Procedures + +
+ +
+ + 19.2 Guidelines for translators + +
+ +
+ + 19.2.1 Translation hints + +
+ +

+ Metadata +

+ +

+ + SiSU Metadata, document information + +

+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +

+ +
+

 

+ + + +
+ + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/misc64/desktop-base_12.0.6+custom1_all.deb b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/misc64/desktop-base_12.0.6+custom1_all.deb new file mode 100644 index 0000000..b244c14 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/misc64/desktop-base_12.0.6+custom1_all.deb differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/os-release/os-release b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/os-release/os-release new file mode 100644 index 0000000..0a2bc3b --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/os-release/os-release @@ -0,0 +1,6 @@ +PRETTY_NAME="EznixOS12X" +NAME="EznixOS" +VERSION_ID="12" +VERSION="12 (bookworm)" +VERSION_CODENAME=bookworm +ID=debian diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/bpkernel b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/bpkernel new file mode 100755 index 0000000..78a05c5 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/bpkernel @@ -0,0 +1,25 @@ +#!/bin/bash + +# bpkernel -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +bpkernelr () { + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 +} + +bpkernelr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ezadmin b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ezadmin new file mode 100755 index 0000000..d78256b --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ezadmin @@ -0,0 +1,151 @@ +#!/bin/bash + +# ezadmin -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + + +# --------------------------------------- +# Define Functions: +# --------------------------------------- + + +setsudo () { + clear + echo " " + bash /usr/local/bin/setsudo + clear + echo " " + echo "User Added To Sudo Group (logout & login)" + sleep 3 + clear +} + +optimize () { + clear + echo " " + bash /usr/local/bin/optimize + clear + echo " " + echo "Optimized sources.list & Updated Repos" + echo " " + sleep 3 + clear +} + +debtesting () { + clear + echo " " + bash /usr/local/bin/gototesting + clear + echo " " + echo "Upgrade to testing, reboot now" + echo " " + sleep 3 + clear +} + +iconcache () { + clear + echo " " + bash /usr/local/bin/iconcache + clear + echo " " + echo "Icon Cache Files Rebuilt (logout & login)" + sleep 3 + clear +} + +ffinstall () { + clear + echo " " + bash /usr/local/bin/ffinstall + clear + echo " " + echo "Firefox Current Installed" + sleep 3 + clear +} + +ytdlpinst () { + clear + echo " " + bash /usr/local/bin/ytdlpinstall + clear + echo " " + echo "YT-DLP video downloader Installed" + sleep 3 + clear +} + +bpkernel () { + clear + echo " " + bash /usr/local/bin/bpkernel + clear + echo " " + echo "Newest Kernel From Backports Installed (Reboot Required)" + sleep 3 + clear +} + +# --------------------------- +# Main Menu +# --------------------------- + +mainmenu () { while true +do + clear + echo "----------------------" + echo " EZ Admin Menu:" + echo " 12X Xfce Edition" + echo "----------------------" + echo "" + echo " (a) Add Myself to Sudo Group " + echo " (Logout & Login to take effect) " + echo " (b) Optimize Sources & Update Repos " + echo " (c) Rebuild Icon Cache Files " + echo " (Logout & Login to take effect) " + echo " (d) Install or upgrade Firefox Latest " + echo " (e) Install YT-DLP video downloader " + echo " (f) Install newest kernel from backports " + echo " (Reboot Required) " + echo " (g) Upgrade to Debian Testing " + echo " (Reboot Required) " + echo "" + echo " (x) Exit " + echo + read -p "Please enter your choice: " choice + case $choice in + a|A) setsudo;; + b|B) optimize;; + c|C) iconcache;; + d|D) ffinstall;; + e|E) ytdlpinst;; + f|F) bpkernel;; + g|G) debtesting;; + x|X) exit;; + *) echo "invalid answer, please try again";; + + esac +done +} + +# Begin main program: + +mainmenu + +done + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ffinstall b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ffinstall new file mode 100755 index 0000000..74127b0 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ffinstall @@ -0,0 +1,31 @@ +#!/bin/bash + +# ffinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ffinstallr () { + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznixOS12Xdev/launchers/Firefox-Latest.desktop /usr/share/applications/ + rm -r /opt/FFDL +} + +ffinstallr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/gototesting b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/gototesting new file mode 100755 index 0000000..a861d3c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/gototesting @@ -0,0 +1,26 @@ +#!/bin/bash + +# gototesting -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +totesting () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznixOS12Xdev/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade +} + +totesting + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/iconcache b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/iconcache new file mode 100755 index 0000000..42d2846 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/iconcache @@ -0,0 +1,30 @@ +#!/bin/bash + +# iconcache -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +iconcacher () { + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ +} + +iconcacher + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/optimize b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/optimize new file mode 100755 index 0000000..e1733cd --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/optimize @@ -0,0 +1,25 @@ +#!/bin/bash + +# optimize -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +optimizer () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznixOS12Xdev/sources/sources.daedalus /etc/apt/sources.list + apt-get -y update +} + +optimizer + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/setsudo b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/setsudo new file mode 100755 index 0000000..7460481 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/setsudo @@ -0,0 +1,24 @@ +#!/bin/bash + +# setsudo -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +setsudoer () { + read -p "Type your user name, be exact, and press Enter: " ANS + usermod -aG sudo $ANS +} + +setsudoer + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ytdlpinstall b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ytdlpinstall new file mode 100755 index 0000000..d60cafa --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/scripts/ytdlpinstall @@ -0,0 +1,24 @@ +#!/bin/bash + +# ytdlpinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ytdlpinstlr () { + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp +} + +ytdlpinstlr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources-calamares/sources-final b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources-calamares/sources-final new file mode 100755 index 0000000..b9c9429 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources-calamares/sources-final @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Writes the final sources.list file +# + +CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g") +RELEASE="daedalus" + +cat << EOF > $CHROOT/etc/apt/sources.list +# See https://wiki.debian.org/SourcesList for more information. + +# Main Repo - main contrib non-free non-free-firmware +deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware + +# Security Repo - main contrib non-free non-free-firmware +deb http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware + +# Updates Repo - main contrib non-free non-free-firmware +deb http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware + +# daedalus-backports, previously on backports.debian.org +deb http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware + + +EOF + +exit 0 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources-calamares/sources-media b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources-calamares/sources-media new file mode 100755 index 0000000..4bbe529 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources-calamares/sources-media @@ -0,0 +1,25 @@ +#!/bin/sh + +CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g") +MEDIUM_PATH="/run/live/medium" +RELEASE="daedalus" + +if [ "$1" = "-u" ]; then + umount $CHROOT/$MEDIUM_PATH + rm $CHROOT/etc/apt/sources.list.d/debian-live-media.list + chroot $CHROOT apt-get update + exit 0 +fi + +# Remove the base sources, we will configure sources in a later phase +rm -f $CHROOT/etc/apt/sources.list.d/base.list + +mkdir -p $CHROOT/$MEDIUM_PATH +mount --bind $MEDIUM_PATH $CHROOT/$MEDIUM_PATH +echo "deb [trusted=yes] file:$MEDIUM_PATH $RELEASE main" > $CHROOT/etc/apt/sources.list.d/debian-live-media.list +chroot $CHROOT apt-get update +# Attempt safest way to remove cruft +rmdir $CHROOT/run/live/medium +rmdir $CHROOT/run/live + +exit 0 diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources/sources.daedalus b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources/sources.daedalus new file mode 100644 index 0000000..4c09bdc --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources/sources.daedalus @@ -0,0 +1,15 @@ +# Main +deb https://deb.debian.org/debian/ daedalus main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ daedalus main contrib non-free non-free-firmware + +# Updates +deb https://deb.debian.org/debian/ daedalus-updates main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ daedalus-updates main contrib non-free non-free-firmware + +# Security +deb https://security.debian.org/debian-security/ daedalus-security main contrib non-free non-free-firmware +# deb-src https://security.debian.org/debian-security/ daedalus-security main contrib non-free non-free-firmware + +# Backports +deb https://deb.debian.org/debian/ daedalus-backports main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ daedalus-backports main contrib non-free non-free-firmware diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources/sources.testing b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources/sources.testing new file mode 100644 index 0000000..3126b8c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/sources/sources.testing @@ -0,0 +1,3 @@ +# Main +deb https://deb.debian.org/debian/ excalibur main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ excalibur main contrib non-free non-free-firmware diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/slide1.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/slide1.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/slide1.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/splash.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/splash.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/splash.xpm b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/splash.xpm new file mode 100644 index 0000000..73a6a8a --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/splash.xpm @@ -0,0 +1,14048 @@ +/* XPM */ +static char * splash_xpm[] = { +"640 480 13565 3", +" c #01040C", +". c #01060F", +"+ c #01050D", +"@ c #02040B", +"# c #01050E", +"$ c #01060E", +"% c #01040D", +"& c #010711", +"* c #02060F", +"= c #01060D", +"- c #010611", +"; c #010712", +"> c #010610", +", c #020816", +"' c #000710", +") c #010816", +"! c #000714", +"~ c #010815", +"{ c #010917", +"] c #010713", +"^ c #010714", +"/ c #010919", +"( c #020A19", +"_ c #02091B", +": c #02091A", +"< c #020919", +"[ c #010918", +"} c #020A1A", +"| c #010814", +"1 c #010A19", +"2 c #010916", +"3 c #03091A", +"4 c #010A18", +"5 c #020B1A", +"6 c #020B1C", +"7 c #020B1D", +"8 c #020B1E", +"9 c #030B1C", +"0 c #020D1F", +"a c #020C1E", +"b c #030B1D", +"c c #020D21", +"d c #020B1B", +"e c #020C1F", +"f c #020C21", +"g c #020C20", +"h c #020E23", +"i c #030C1E", +"j c #030C1F", +"k c #020D1E", +"l c #030E24", +"m c #021027", +"n c #020E22", +"o c #020D22", +"p c #020F25", +"q c #010F26", +"r c #020E24", +"s c #020E26", +"t c #011028", +"u c #010F27", +"v c #010E25", +"w c #02112A", +"x c #02112D", +"y c #020F28", +"z c #02122C", +"A c #02122E", +"B c #01112B", +"C c #02102A", +"D c #021029", +"E c #03122C", +"F c #01102A", +"G c #02112B", +"H c #021433", +"I c #02122D", +"J c #021432", +"K c #03122D", +"L c #021533", +"M c #02132F", +"N c #02112C", +"O c #031432", +"P c #021536", +"Q c #031533", +"R c #021639", +"S c #021331", +"T c #021534", +"U c #031534", +"V c #031638", +"W c #021738", +"X c #021638", +"Y c #021434", +"Z c #021435", +"` c #031433", +" . c #03183B", +".. c #02183C", +"+. c #03183C", +"@. c #031739", +"#. c #02173A", +"$. c #031A3F", +"%. c #021A40", +"&. c #031940", +"*. c #021940", +"=. c #03193E", +"-. c #031941", +";. c #031A40", +">. c #02193E", +",. c #03193D", +"'. c #031B43", +"). c #031A42", +"!. c #031A41", +"~. c #031C45", +"{. c #031B44", +"]. c #021A3F", +"^. c #031B45", +"/. c #041C45", +"(. c #031C47", +"_. c #021D48", +":. c #031D49", +"<. c #041D4A", +"[. c #041D44", +"}. c #04204C", +"|. c #041D47", +"1. c #041D49", +"2. c #031F4B", +"3. c #041E4B", +"4. c #04204D", +"5. c #04214E", +"6. c #06234F", +"7. c #05224E", +"8. c #04214D", +"9. c #062251", +"0. c #062350", +"a. c #041F4E", +"b. c #04204F", +"c. c #092554", +"d. c #072352", +"e. c #082453", +"f. c #0B2757", +"g. c #082454", +"h. c #0C2857", +"i. c #0A2656", +"j. c #0A2857", +"k. c #082655", +"l. c #092857", +"m. c #092757", +"n. c #092858", +"o. c #0A2958", +"p. c #0C2B59", +"q. c #0A2859", +"r. c #0C2B5B", +"s. c #0D2B5D", +"t. c #0B295B", +"u. c #0B2A5B", +"v. c #0C2A5C", +"w. c #0C2B5C", +"x. c #0A295B", +"y. c #0C2C5D", +"z. c #0E2C5E", +"A. c #0E2E5F", +"B. c #0D2D5F", +"C. c #0D2D60", +"D. c #0F2F62", +"E. c #0D2D5E", +"F. c #0E2E61", +"G. c #103063", +"H. c #113164", +"I. c #0F2F63", +"J. c #113066", +"K. c #102F64", +"L. c #102F65", +"M. c #103064", +"N. c #0F2E64", +"O. c #123167", +"P. c #102E64", +"Q. c #123168", +"R. c #113067", +"S. c #133268", +"T. c #14336A", +"U. c #123269", +"V. c #133469", +"W. c #133369", +"X. c #113268", +"Y. c #133269", +"Z. c #113167", +"`. c #15366C", +" + c #14356B", +".+ c #13346A", +"++ c #15346B", +"@+ c #17376C", +"#+ c #16376D", +"$+ c #16366D", +"%+ c #15366B", +"&+ c #173770", +"*+ c #1B3B74", +"=+ c #193972", +"-+ c #16366F", +";+ c #183871", +">+ c #163670", +",+ c #183771", +"'+ c #163870", +")+ c #183770", +"!+ c #183872", +"~+ c #183B75", +"{+ c #1A3A75", +"]+ c #193B75", +"^+ c #173A74", +"/+ c #1A3D77", +"(+ c #193C76", +"_+ c #193B77", +":+ c #173976", +"<+ c #1A3C77", +"[+ c #193B7A", +"}+ c #1C3E7A", +"|+ c #1A3C79", +"1+ c #1C3E7B", +"2+ c #1B3E79", +"3+ c #1B3E7A", +"4+ c #1A3D79", +"5+ c #1D407C", +"6+ c #1D3F7C", +"7+ c #1C407C", +"8+ c #1A3E7A", +"9+ c #1B3E7C", +"0+ c #1B3F7D", +"a+ c #1C407D", +"b+ c #1B3F7C", +"c+ c #1A3E7B", +"d+ c #1A3E7C", +"e+ c #193D7B", +"f+ c #1A3F7D", +"g+ c #1B407F", +"h+ c #183E7D", +"i+ c #183E7C", +"j+ c #1A407E", +"k+ c #183D7C", +"l+ c #1A407F", +"m+ c #173D7C", +"n+ c #193F7E", +"o+ c #173D7E", +"p+ c #173C7D", +"q+ c #163C7B", +"r+ c #193F7F", +"s+ c #193F80", +"t+ c #1A4081", +"u+ c #183F80", +"v+ c #143B7C", +"w+ c #173E7F", +"x+ c #163D7E", +"y+ c #153C7E", +"z+ c #194082", +"A+ c #163D80", +"B+ c #173E81", +"C+ c #153C7F", +"D+ c #133A7D", +"E+ c #143B7E", +"F+ c #12397C", +"G+ c #11387B", +"H+ c #133C7E", +"I+ c #143C7E", +"J+ c #153D80", +"K+ c #143A7F", +"L+ c #133A7F", +"M+ c #143B7F", +"N+ c #123A7E", +"O+ c #143B80", +"P+ c #133B80", +"Q+ c #12397E", +"R+ c #11397E", +"S+ c #123A7F", +"T+ c #10387D", +"U+ c #10387E", +"V+ c #0F377C", +"W+ c #0D357B", +"X+ c #0E367C", +"Y+ c #0E367B", +"Z+ c #0D357A", +"`+ c #0C357A", +" @ c #0D367C", +".@ c #0F377D", +"+@ c #0B3379", +"@@ c #0C347A", +"#@ c #0A3278", +"$@ c #083177", +"%@ c #093177", +"&@ c #083076", +"*@ c #072F75", +"=@ c #072F76", +"-@ c #062E75", +";@ c #093077", +">@ c #062E74", +",@ c #052B6D", +"'@ c #052D73", +")@ c #052D72", +"!@ c #042A6A", +"~@ c #042C6F", +"{@ c #042C6E", +"]@ c #052C72", +"^@ c #042A6B", +"/@ c #042B6D", +"(@ c #052D71", +"_@ c #042869", +":@ c #042969", +"<@ c #042B6A", +"[@ c #042965", +"}@ c #042867", +"|@ c #042865", +"1@ c #042662", +"2@ c #042864", +"3@ c #042661", +"4@ c #042866", +"5@ c #04265D", +"6@ c #04265F", +"7@ c #04255E", +"8@ c #042761", +"9@ c #042762", +"0@ c #042359", +"a@ c #04255D", +"b@ c #052459", +"c@ c #03245A", +"d@ c #042356", +"e@ c #042358", +"f@ c #042153", +"g@ c #042257", +"h@ c #032255", +"i@ c #032254", +"j@ c #032152", +"k@ c #032154", +"l@ c #032050", +"m@ c #031F4F", +"n@ c #022152", +"o@ c #031F4D", +"p@ c #032153", +"q@ c #031D4A", +"r@ c #021F4C", +"s@ c #031E4B", +"t@ c #031D48", +"u@ c #031E4C", +"v@ c #031C46", +"w@ c #031C4A", +"x@ c #031A43", +"y@ c #03183A", +"z@ c #03183E", +"A@ c #03193F", +"B@ c #041A42", +"C@ c #04193F", +"D@ c #03163B", +"E@ c #03173A", +"F@ c #03163A", +"G@ c #031639", +"H@ c #021537", +"I@ c #021636", +"J@ c #031435", +"K@ c #031331", +"L@ c #021535", +"M@ c #021332", +"N@ c #03122F", +"O@ c #02132E", +"P@ c #021330", +"Q@ c #02122F", +"R@ c #01040B", +"S@ c #02040F", +"T@ c #020610", +"U@ c #000712", +"V@ c #01050F", +"W@ c #010817", +"X@ c #010915", +"Y@ c #010A1A", +"Z@ c #020814", +"`@ c #010715", +" # c #020817", +".# c #000914", +"+# c #01091A", +"@# c #020818", +"## c #020918", +"$# c #020A1B", +"%# c #010818", +"&# c #020A1C", +"*# c #020917", +"=# c #030A1D", +"-# c #030A1C", +";# c #020815", +"># c #030C1D", +",# c #020C1D", +"'# c #020B1F", +")# c #010D23", +"!# c #010D20", +"~# c #020D20", +"{# c #020E20", +"]# c #010E23", +"^# c #021028", +"/# c #021129", +"(# c #030F26", +"_# c #020E25", +":# c #011029", +"<# c #011230", +"[# c #03112A", +"}# c #01112C", +"|# c #021430", +"1# c #031434", +"2# c #031536", +"3# c #031431", +"4# c #031637", +"5# c #03183D", +"6# c #02193D", +"7# c #021739", +"8# c #04183C", +"9# c #031B41", +"0# c #021941", +"a# c #021B42", +"b# c #031B42", +"c# c #041B46", +"d# c #031B46", +"e# c #041F4B", +"f# c #05214E", +"g# c #05204D", +"h# c #031E4A", +"i# c #05204E", +"j# c #05204C", +"k# c #06224E", +"l# c #05224F", +"m# c #052150", +"n# c #06224F", +"o# c #072453", +"p# c #062351", +"q# c #092555", +"r# c #092656", +"s# c #0A2858", +"t# c #082756", +"u# c #092958", +"v# c #0B2958", +"w# c #0B2959", +"x# c #0A285A", +"y# c #0A295A", +"z# c #0E2D5F", +"A# c #0F2E5F", +"B# c #0D2C5E", +"C# c #0C2C5E", +"D# c #0E2E60", +"E# c #123166", +"F# c #143369", +"G# c #143269", +"H# c #15346A", +"I# c #14356A", +"J# c #123369", +"K# c #15356B", +"L# c #14346A", +"M# c #16366C", +"N# c #15356C", +"O# c #16376E", +"P# c #15356E", +"Q# c #193974", +"R# c #17376F", +"S# c #1A3A74", +"T# c #173873", +"U# c #163973", +"V# c #183974", +"W# c #1B3D77", +"X# c #1A3C76", +"Y# c #1B3E78", +"Z# c #1A3C78", +"`# c #193B78", +" $ c #183A78", +".$ c #193C79", +"+$ c #1A3D7A", +"@$ c #1C3F7C", +"#$ c #193C78", +"$$ c #193D79", +"%$ c #1C407E", +"&$ c #183D7B", +"*$ c #193F7D", +"=$ c #183F7D", +"-$ c #193E7D", +";$ c #1B4180", +">$ c #1A4080", +",$ c #183D7E", +"'$ c #183E7F", +")$ c #163C7D", +"!$ c #153C7D", +"~$ c #163D7D", +"{$ c #173E7E", +"]$ c #173E80", +"^$ c #153D7F", +"/$ c #11387D", +"($ c #11397F", +"_$ c #0C3479", +":$ c #0D367B", +"<$ c #0B357A", +"[$ c #0C3379", +"}$ c #093178", +"|$ c #0A3479", +"1$ c #072E75", +"2$ c #052D74", +"3$ c #052F76", +"4$ c #062E73", +"5$ c #042C70", +"6$ c #052B6E", +"7$ c #062D73", +"8$ c #042A6D", +"9$ c #042B6C", +"0$ c #04296A", +"a$ c #032B6C", +"b$ c #042967", +"c$ c #052866", +"d$ c #042966", +"e$ c #042A68", +"f$ c #042764", +"g$ c #052661", +"h$ c #04255C", +"i$ c #052762", +"j$ c #05265F", +"k$ c #04255A", +"l$ c #042660", +"m$ c #042459", +"n$ c #05245A", +"o$ c #04245A", +"p$ c #042458", +"q$ c #032459", +"r$ c #032052", +"s$ c #022050", +"t$ c #032051", +"u$ c #032151", +"v$ c #031E4F", +"w$ c #031C48", +"x$ c #031D4B", +"y$ c #041B48", +"z$ c #02173B", +"A$ c #04183E", +"B$ c #03173C", +"C$ c #021637", +"D$ c #031535", +"E$ c #021431", +"F$ c #031436", +"G$ c #031636", +"H$ c #031330", +"I$ c #011332", +"J$ c #01040A", +"K$ c #00040D", +"L$ c #01050B", +"M$ c #02050D", +"N$ c #010813", +"O$ c #020713", +"P$ c #000812", +"Q$ c #010710", +"R$ c #000814", +"S$ c #000711", +"T$ c #010819", +"U$ c #000713", +"V$ c #030B1E", +"W$ c #010D21", +"X$ c #030D21", +"Y$ c #020F24", +"Z$ c #020F27", +"`$ c #020F26", +" % c #021026", +".% c #011231", +"+% c #031332", +"@% c #021230", +"#% c #021538", +"$% c #02183D", +"%% c #041B44", +"&% c #041D46", +"*% c #041E49", +"=% c #031C44", +"-% c #051F4A", +";% c #05214D", +">% c #04204E", +",% c #041E4A", +"'% c #03204C", +")% c #04214F", +"!% c #062250", +"~% c #05214F", +"{% c #0A2655", +"]% c #072756", +"^% c #0C2757", +"/% c #0C2959", +"(% c #0C2B5A", +"_% c #092758", +":% c #0A2957", +"<% c #0D2B5C", +"[% c #0B2A5A", +"}% c #0B2B5C", +"|% c #0A2A5B", +"1% c #0C2B5D", +"2% c #0D2D5D", +"3% c #0F2F61", +"4% c #102F62", +"5% c #113064", +"6% c #123265", +"7% c #0E2D62", +"8% c #0E2D63", +"9% c #102F63", +"0% c #123267", +"a% c #143469", +"b% c #16356C", +"c% c #17376D", +"d% c #18386F", +"e% c #16376C", +"f% c #193A70", +"g% c #183870", +"h% c #14346D", +"i% c #173972", +"j% c #193A74", +"k% c #193A75", +"l% c #1D3F79", +"m% c #193C77", +"n% c #1A3B78", +"o% c #193B79", +"p% c #183A77", +"q% c #1B3C79", +"r% c #1A3C7A", +"s% c #1B3D7A", +"t% c #1B3F7B", +"u% c #1B407E", +"v% c #1A3E7E", +"w% c #1B3F7F", +"x% c #183F7F", +"y% c #1B4182", +"z% c #18407F", +"A% c #163D7F", +"B% c #183F82", +"C% c #11387C", +"D% c #133B7D", +"E% c #153C81", +"F% c #0F367B", +"G% c #10377C", +"H% c #0C367B", +"I% c #062F75", +"J% c #083178", +"K% c #073077", +"L% c #062E72", +"M% c #052C73", +"N% c #052B6F", +"O% c #052C6E", +"P% c #062F72", +"Q% c #052E74", +"R% c #052C70", +"S% c #052D70", +"T% c #052C6F", +"U% c #042B6E", +"V% c #042A6C", +"W% c #042968", +"X% c #042763", +"Y% c #04255B", +"Z% c #05245C", +"`% c #042760", +" & c #052358", +".& c #04245B", +"+& c #032358", +"@& c #022052", +"#& c #032354", +"$& c #032458", +"%& c #032355", +"&& c #032253", +"*& c #042154", +"=& c #031E4E", +"-& c #031F4E", +";& c #041E4C", +">& c #041C48", +",& c #031A44", +"'& c #041B45", +")& c #02193F", +"!& c #02193C", +"~& c #01122C", +"{& c #01112A", +"]& c #01050C", +"^& c #010612", +"/& c #020A18", +"(& c #020711", +"_& c #020A1E", +":& c #020A1D", +"<& c #020B19", +"[& c #030D20", +"}& c #030F25", +"|& c #020F22", +"1& c #03132E", +"2& c #031333", +"3& c #021532", +"4& c #03173D", +"5& c #041C46", +"6& c #041E47", +"7& c #041F49", +"8& c #041D48", +"9& c #031D47", +"0& c #021E4A", +"a& c #041F4C", +"b& c #041F4D", +"c& c #052251", +"d& c #072454", +"e& c #072554", +"f& c #092657", +"g& c #0C2858", +"h& c #082758", +"i& c #0C2A5A", +"j& c #0E2D5D", +"k& c #0D2C5D", +"l& c #0D2A5C", +"m& c #0C2C5F", +"n& c #123165", +"o& c #113166", +"p& c #123066", +"q& c #103065", +"r& c #113267", +"s& c #17366D", +"t& c #13336B", +"u& c #17386E", +"v& c #1A3A72", +"w& c #18376F", +"x& c #17386F", +"y& c #183971", +"z& c #193970", +"A& c #173772", +"B& c #16376F", +"C& c #1A3C74", +"D& c #193973", +"E& c #183A74", +"F& c #163A73", +"G& c #183B76", +"H& c #1B3D79", +"I& c #1B3E7B", +"J& c #193D7A", +"K& c #193E7C", +"L& c #1B3E7E", +"M& c #183E7E", +"N& c #173E7D", +"O& c #19407F", +"P& c #143A7D", +"Q& c #163D82", +"R& c #163E80", +"S& c #163D81", +"T& c #11377C", +"U& c #10377D", +"V& c #0D347A", +"W& c #0C367A", +"X& c #0B367B", +"Y& c #083078", +"Z& c #0A3279", +"`& c #062F74", +" * c #052C71", +".* c #062D71", +"+* c #042C6D", +"@* c #052A69", +"#* c #05255C", +"$* c #05255D", +"%* c #05255E", +"&* c #052760", +"** c #04265E", +"=* c #042357", +"-* c #05245B", +";* c #04235A", +">* c #042255", +",* c #032357", +"'* c #032356", +")* c #032256", +"!* c #022153", +"~* c #03204F", +"{* c #031E4D", +"]* c #021F4E", +"^* c #031F50", +"/* c #041C47", +"(* c #03183F", +"_* c #02173D", +":* c #011431", +"<* c #02030B", +"[* c #00060F", +"}* c #020611", +"|* c #000611", +"1* c #010510", +"2* c #010C1F", +"3* c #010C1D", +"4* c #011027", +"5* c #031029", +"6* c #031028", +"7* c #02112E", +"8* c #03132F", +"9* c #02163A", +"0* c #031737", +"a* c #03193C", +"b* c #061F49", +"c* c #021D47", +"d* c #031D46", +"e* c #051E4A", +"f* c #031F4A", +"g* c #05224D", +"h* c #082552", +"i* c #082452", +"j* c #072250", +"k* c #062352", +"l* c #0D2959", +"m* c #092756", +"n* c #0B2A59", +"o* c #0A2959", +"p* c #0D2C5B", +"q* c #092759", +"r* c #113163", +"s* c #14346B", +"t* c #18376E", +"u* c #15356D", +"v* c #183970", +"w* c #13346C", +"x* c #183A73", +"y* c #163872", +"z* c #183B77", +"A* c #1C3E79", +"B* c #1E407C", +"C* c #183A76", +"D* c #183C78", +"E* c #173A76", +"F* c #183C7A", +"G* c #1D417F", +"H* c #1D407F", +"I* c #173D7B", +"J* c #183F7E", +"K* c #173D80", +"L* c #143C80", +"M* c #0B3479", +"N* c #042D73", +"O* c #052A6D", +"P* c #042B6B", +"Q* c #032A6B", +"R* c #042A69", +"S* c #042868", +"T* c #052660", +"U* c #052359", +"V* c #032258", +"W* c #042051", +"X* c #042256", +"Y* c #02204F", +"Z* c #021F4D", +"`* c #021F4F", +" = c #031C49", +".= c #03173B", +"+= c #021334", +"@= c #011128", +"#= c #03122E", +"$= c #000610", +"%= c #000813", +"&= c #000916", +"*= c #030C20", +"== c #030A1B", +"-= c #030F27", +";= c #010F23", +">= c #02102C", +",= c #02173C", +"'= c #041C44", +")= c #02183B", +"!= c #031D45", +"~= c #051F4B", +"{= c #031E49", +"]= c #072350", +"^= c #072450", +"/= c #092452", +"(= c #092654", +"_= c #082857", +":= c #092859", +"<= c #0B295A", +"[= c #0F2D5F", +"}= c #0E2D60", +"|= c #133266", +"1= c #123266", +"2= c #113065", +"3= c #103166", +"4= c #16366E", +"5= c #14356C", +"6= c #1A3972", +"7= c #1A3A73", +"8= c #193872", +"9= c #183972", +"0= c #1B3C75", +"a= c #1B3B76", +"b= c #1C3F79", +"c= c #1A3D78", +"d= c #1D407B", +"e= c #1E4280", +"f= c #1A3F7E", +"g= c #1D4384", +"h= c #1B4283", +"i= c #194081", +"j= c #193F81", +"k= c #133A7E", +"l= c #123B7D", +"m= c #0F367C", +"n= c #0C367C", +"o= c #072E73", +"p= c #073075", +"q= c #052E73", +"r= c #052B70", +"s= c #042C71", +"t= c #062E76", +"u= c #042D70", +"v= c #052868", +"w= c #052A6C", +"x= c #042863", +"y= c #04255F", +"z= c #032359", +"A= c #042254", +"B= c #031B47", +"C= c #041C49", +"D= c #031D4C", +"E= c #031231", +"F= c #02122B", +"G= c #00040B", +"H= c #010812", +"I= c #020A17", +"J= c #010A1B", +"K= c #020D23", +"L= c #020E21", +"M= c #02102B", +"N= c #03112C", +"O= c #031738", +"P= c #041F4A", +"Q= c #031E48", +"R= c #03204D", +"S= c #0A2757", +"T= c #0B2857", +"U= c #0D2A59", +"V= c #0D2A5A", +"W= c #0E2D5C", +"X= c #0E2D5E", +"Y= c #0B2B5D", +"Z= c #0F2F60", +"`= c #113165", +" - c #123268", +".- c #16356B", +"+- c #18386E", +"@- c #17386D", +"#- c #17376E", +"$- c #193971", +"%- c #173870", +"&- c #1A3974", +"*- c #173971", +"=- c #193C75", +"-- c #1B3E77", +";- c #1C3F7B", +">- c #1E417D", +",- c #1C417F", +"'- c #1B3F7E", +")- c #1B417F", +"!- c #163C7C", +"~- c #12397B", +"{- c #173E83", +"]- c #153B7F", +"^- c #123A7C", +"/- c #143C81", +"(- c #0F377B", +"_- c #0C377C", +":- c #0B3278", +"<- c #083176", +"[- c #063075", +"}- c #052A6B", +"|- c #032967", +"1- c #032966", +"2- c #032761", +"3- c #031F51", +"4- c #02183F", +"5- c #020712", +"6- c #010B1C", +"7- c #010A17", +"8- c #020916", +"9- c #030D22", +"0- c #010E22", +"a- c #011330", +"b- c #031230", +"c- c #031430", +"d- c #021635", +"e- c #02183E", +"f- c #01183D", +"g- c #031E47", +"h- c #021B41", +"i- c #052250", +"j- c #042050", +"k- c #0B2B59", +"l- c #0F2E5D", +"m- c #102E60", +"n- c #0F2E61", +"o- c #0E2D61", +"p- c #123368", +"q- c #19386F", +"r- c #183A72", +"s- c #173A73", +"t- c #1B3D7B", +"u- c #1D3F7B", +"v- c #1B3F7A", +"w- c #1F417D", +"x- c #1B3E7D", +"y- c #193E7E", +"z- c #1A3F7F", +"A- c #1B4181", +"B- c #194083", +"C- c #153C80", +"D- c #082F75", +"E- c #063176", +"F- c #042D74", +"G- c #052E72", +"H- c #042D71", +"I- c #042B6F", +"J- c #032968", +"K- c #032864", +"L- c #052865", +"M- c #021E4D", +"N- c #041F4F", +"O- c #041D4B", +"P- c #041C4A", +"Q- c #021D49", +"R- c #02050F", +"S- c #02040C", +"T- c #000815", +"U- c #010A1C", +"V- c #030B1F", +"W- c #031A3D", +"X- c #051F4C", +"Y- c #072351", +"Z- c #0B2756", +"`- c #0E2C5D", +" ; c #102F66", +".; c #18396F", +"+; c #1A3B72", +"@; c #1C3C75", +"#; c #1B3B75", +"$; c #183973", +"%; c #1A3B76", +"&; c #193B76", +"*; c #1C3F7E", +"=; c #173D7D", +"-; c #193E7F", +";; c #143C7F", +">; c #123A7D", +",; c #0D3579", +"'; c #0A3277", +"); c #093179", +"!; c #062D74", +"~; c #083077", +"{; c #052B6C", +"]; c #052A6A", +"^; c #052864", +"/; c #032865", +"(; c #052763", +"_; c #03255D", +":; c #042152", +"<; c #031943", +"[; c #04173D", +"}; c #031537", +"|; c #021333", +"1; c #011026", +"2; c #011129", +"3; c #011432", +"4; c #011636", +"5; c #041B42", +"6; c #031B48", +"7; c #021C46", +"8; c #04204B", +"9; c #06214E", +"0; c #072451", +"a; c #082551", +"b; c #0E2B5B", +"c; c #0F2E60", +"d; c #18376D", +"e; c #18396E", +"f; c #1A3970", +"g; c #17366F", +"h; c #193A72", +"i; c #1D407D", +"j; c #1A3D7B", +"k; c #1D4280", +"l; c #1C4281", +"m; c #193F82", +"n; c #13397C", +"o; c #143A7E", +"p; c #0B3378", +"q; c #093378", +"r; c #062D72", +"s; c #03296A", +"t; c #032B6B", +"u; c #052765", +"v; c #052764", +"w; c #04245C", +"x; c #05255A", +"y; c #032257", +"z; c #011638", +"A; c #000612", +"B; c #030C1C", +"C; c #030E23", +"D; c #030F29", +"E; c #01122D", +"F; c #04183F", +"G; c #04193D", +"H; c #051E49", +"I; c #05234E", +"J; c #0B2858", +"K; c #0C2A59", +"L; c #0F2E5C", +"M; c #102F61", +"N; c #102F60", +"O; c #133366", +"P; c #113063", +"Q; c #133368", +"R; c #13336A", +"S; c #1C3D78", +"T; c #193D77", +"U; c #1C407F", +"V; c #1A4181", +"W; c #18407E", +"X; c #13397E", +"Y; c #143D80", +"Z; c #143A80", +"`; c #0E357B", +" > c #073076", +".> c #062C72", +"+> c #062B6F", +"@> c #052969", +"#> c #031A45", +"$> c #031538", +"%> c #01122E", +"&> c #02112F", +"*> c #020715", +"=> c #010B19", +"-> c #030A1A", +";> c #020819", +">> c #010C20", +",> c #010F25", +"'> c #021229", +")> c #03112B", +"!> c #04173A", +"~> c #031F4C", +"{> c #082451", +"]> c #0A2654", +"^> c #0D2858", +"/> c #0A2756", +"(> c #0D2B5B", +"_> c #0B2A5C", +":> c #0F2D60", +"<> c #133164", +"[> c #123263", +"}> c #16346B", +"|> c #17356C", +"1> c #17366C", +"2> c #193A71", +"3> c #1B3A73", +"4> c #1B3C76", +"5> c #1C3F78", +"6> c #1D4381", +"7> c #184080", +"8> c #153B7C", +"9> c #133A7B", +"0> c #133B7E", +"a> c #153D82", +"b> c #0E377D", +"c> c #073277", +"d> c #042D72", +"e> c #052E75", +"f> c #052F72", +"g> c #032969", +"h> c #052662", +"i> c #022150", +"j> c #021D4B", +"k> c #041E4D", +"l> c #031942", +"m> c #04163A", +"n> c #011434", +"o> c #011331", +"p> c #03091B", +"q> c #010C1E", +"r> c #030B20", +"s> c #020F23", +"t> c #021634", +"u> c #051C47", +"v> c #021E49", +"w> c #0B2755", +"x> c #0C2958", +"y> c #0C2A5B", +"z> c #0D2C5C", +"A> c #112F61", +"B> c #0F2F5F", +"C> c #123164", +"D> c #143268", +"E> c #16356D", +"F> c #193A73", +"G> c #193B73", +"H> c #183A75", +"I> c #1A3D76", +"J> c #1C3E7C", +"K> c #1D417E", +"L> c #19407E", +"M> c #183E80", +"N> c #1A4182", +"O> c #12397D", +"P> c #133B7F", +"Q> c #0A357A", +"R> c #0A3178", +"S> c #072F74", +"T> c #032C6E", +"U> c #05296A", +"V> c #031840", +"W> c #041A44", +"X> c #011536", +"Y> c #020C1C", +"Z> c #020D24", +"`> c #041E48", +" , c #05204B", +"., c #05214C", +"+, c #07244F", +"@, c #102E5F", +"#, c #102E62", +"$, c #103062", +"%, c #1D407A", +"&, c #1D4180", +"*, c #1C4080", +"=, c #1C4282", +"-, c #0D387D", +";, c #0B357B", +">, c #042C6C", +",, c #010511", +"', c #01040F", +"), c #01040E", +"!, c #02050E", +"~, c #02040D", +"{, c #01030B", +"], c #010309", +"^, c #010207", +"/, c #01030C", +"(, c #02091C", +"_, c #020B20", +":, c #020E27", +"<, c #020F29", +"[, c #041940", +"}, c #00050E", +"|, c #000917", +"1, c #030D23", +"2, c #010F24", +"3, c #010F2A", +"4, c #021231", +"5, c #011635", +"6, c #021942", +"7, c #041C43", +"8, c #021B45", +"9, c #05204A", +"0, c #06214D", +"a, c #112F62", +"b, c #123264", +"c, c #133267", +"d, c #103066", +"e, c #1A3B73", +"f, c #1C3F7A", +"g, c #1E407D", +"h, c #1D407E", +"i, c #1E427F", +"j, c #1B407D", +"k, c #183F81", +"l, c #052F75", +"m, c #083075", +"n, c #052968", +"o, c #042663", +"p, c #021A42", +"q, c #010206", +"r, c #010105", +"s, c #010103", +"t, c #000002", +"u, c #000001", +"v, c #010104", +"w, c #000101", +"x, c #010102", +"y, c #000000", +"z, c #010101", +"A, c #010002", +"B, c #031334", +"C, c #011433", +"D, c #010B1B", +"E, c #030F23", +"F, c #021A41", +"G, c #072452", +"H, c #0E2A5A", +"I, c #0A2A59", +"J, c #082757", +"K, c #123366", +"L, c #193870", +"M, c #1A3A71", +"N, c #163971", +"O, c #173B75", +"P, c #1C4181", +"Q, c #1D4080", +"R, c #183E81", +"S, c #193F83", +"T, c #153E80", +"U, c #063076", +"V, c #082F76", +"W, c #072E74", +"X, c #042765", +"Y, c #052761", +"Z, c #02060E", +"`, c #010208", +" ' c #000102", +".' c #000100", +"+' c #010204", +"@' c #000003", +"#' c #010001", +"$' c #010615", +"%' c #021943", +"&' c #021436", +"*' c #000811", +"=' c #010811", +"-' c #021C44", +";' c #041A40", +">' c #051D48", +",' c #062252", +"'' c #072353", +")' c #0E2C5C", +"!' c #103061", +"~' c #143466", +"{' c #133367", +"]' c #143368", +"^' c #19386E", +"/' c #193A6F", +"(' c #193871", +"_' c #1C3C76", +":' c #1D3C76", +"<' c #1C3E78", +"[' c #1A3E78", +"}' c #1E4180", +"|' c #1C4180", +"1' c #1A3F80", +"2' c #1A4180", +"3' c #032A69", +"4' c #032866", +"5' c #020207", +"6' c #010205", +"7' c #020203", +"8' c #020204", +"9' c #021539", +"0' c #01060C", +"a' c #030D1F", +"b' c #021128", +"c' c #011532", +"d' c #01183B", +"e' c #051E48", +"f' c #07224F", +"g' c #082450", +"h' c #0E2C5B", +"i' c #133168", +"j' c #1C3D77", +"k' c #1E417B", +"l' c #1D417D", +"m' c #173C7A", +"n' c #194080", +"o' c #163C7F", +"p' c #093076", +"q' c #042E73", +"r' c #04245D", +"s' c #02040A", +"t' c #010D22", +"u' c #051F49", +"v' c #092551", +"w' c #082554", +"x' c #153469", +"y' c #153369", +"z' c #18386D", +"A' c #1B3A75", +"B' c #1C3E76", +"C' c #1D3D76", +"D' c #1D4079", +"E' c #1D417B", +"F' c #163E7C", +"G' c #0E387D", +"H' c #0C337A", +"I' c #052D6F", +"J' c #032A6A", +"K' c #042766", +"L' c #011534", +"M' c #030D1E", +"N' c #030B1B", +"O' c #030E25", +"P' c #021737", +"Q' c #02183A", +"R' c #031A3E", +"S' c #031C43", +"T' c #021B44", +"U' c #07234F", +"V' c #092553", +"W' c #0F2B5B", +"X' c #113162", +"Y' c #173771", +"Z' c #1B3C77", +"`' c #1E407A", +" ) c #1B3D78", +".) c #1E427E", +"+) c #1E4381", +"@) c #1D4382", +"#) c #153D81", +"$) c #123A80", +"%) c #0C357B", +"&) c #072F77", +"*) c #010308", +"=) c #020105", +"-) c #030F24", +";) c #010F28", +">) c #011533", +",) c #0D2B5A", +"') c #123062", +")) c #112F63", +"!) c #0F3065", +"~) c #1E3E77", +"{) c #1C3B75", +"]) c #1F437F", +"^) c #1F4381", +"/) c #1D4281", +"() c #1B4285", +"_) c #173F81", +":) c #083074", +"<) c #042E72", +"[) c #020206", +"}) c #010003", +"|) c #010004", +"1) c #00050D", +"2) c #00070F", +"3) c #011535", +"4) c #04183D", +"5) c #04204A", +"6) c #06224D", +"7) c #082350", +"8) c #0F2C5B", +"9) c #1A396F", +"0) c #19396F", +"a) c #1C3D72", +"b) c #1D3D75", +"c) c #1B3C74", +"d) c #1A3B75", +"e) c #173F82", +"f) c #0E357A", +"g) c #0E377C", +"h) c #010613", +"i) c #02030A", +"j) c #020D25", +"k) c #00060E", +"l) c #02050B", +"m) c #01132F", +"n) c #041739", +"o) c #021A43", +"p) c #021B43", +"q) c #0A2753", +"r) c #0E2A59", +"s) c #0E2B5A", +"t) c #113062", +"u) c #123065", +"v) c #16346A", +"w) c #15336A", +"x) c #17366B", +"y) c #1C3C74", +"z) c #1C3B74", +"A) c #1E417A", +"B) c #1D3F7A", +"C) c #1B4080", +"D) c #1B4282", +"E) c #173D7F", +"F) c #163E81", +"G) c #042B70", +"H) c #020104", +"I) c #02081A", +"J) c #010A16", +"K) c #021736", +"L) c #04193E", +"M) c #082553", +"N) c #0F2D5E", +"O) c #0E2C60", +"P) c #1A3B70", +"Q) c #1D3E77", +"R) c #1E3F7A", +"S) c #1C3F7F", +"T) c #020613", +"U) c #020612", +"V) c #020D1D", +"W) c #01122B", +"X) c #051C45", +"Y) c #092957", +"Z) c #163568", +"`) c #1A3B74", +" ! c #1B3A74", +".! c #1E407B", +"+! c #1E417E", +"@! c #1F4382", +"#! c #173F7D", +"$! c #0F367D", +"%! c #073078", +"&! c #042C73", +"*! c #042D6F", +"=! c #032A6C", +"-! c #020103", +";! c #041A43", +">! c #011537", +",! c #031027", +"'! c #06214C", +")! c #092653", +"!! c #092652", +"~! c #112F5F", +"{! c #0F2E5E", +"]! c #143266", +"^! c #153568", +"/! c #18376B", +"(! c #1A3A70", +"_! c #1C3D75", +":! c #1D3F77", +"~ c #204482", +",~ c #062F76", +"'~ c #052867", +")~ c #020409", +"!~ c #01091B", +"~~ c #0E2C5F", +"{~ c #143467", +"]~ c #1B3A71", +"^~ c #1C3D73", +"/~ c #1D3E76", +"(~ c #1E3F77", +"_~ c #1F427C", +":~ c #21447E", +"<~ c #093176", +"[~ c #062C70", +"}~ c #052E76", +"|~ c #052C6D", +"1~ c #051D46", +"2~ c #07204A", +"3~ c #051E47", +"4~ c #0D2857", +"5~ c #0D2C5A", +"6~ c #112E60", +"7~ c #122F61", +"8~ c #133265", +"9~ c #153367", +"0~ c #133165", +"a~ c #143468", +"b~ c #163469", +"c~ c #1E4078", +"d~ c #1E3E79", +"e~ c #20427F", +"f~ c #0A3379", +"g~ c #020309", +"h~ c #041638", +"i~ c #041639", +"j~ c #030F28", +"k~ c #061E4A", +"l~ c #07224E", +"m~ c #0A2653", +"n~ c #0A2856", +"o~ c #123160", +"p~ c #112F60", +"q~ c #123064", +"r~ c #153468", +"s~ c #1C3C72", +"t~ c #1D3C77", +"u~ c #1F4380", +"v~ c #1E4281", +"w~ c #1A4184", +"x~ c #0B367A", +"y~ c #0D347B", +"z~ c #020307", +"A~ c #030E21", +"B~ c #01173A", +"C~ c #031C42", +"D~ c #041D45", +"E~ c #041B47", +"F~ c #0F2B5A", +"G~ c #112D5D", +"H~ c #102F5E", +"I~ c #102D5D", +"J~ c #0F2D61", +"K~ c #123063", +"L~ c #113061", +"M~ c #143366", +"N~ c #17376A", +"O~ c #1B3B72", +"P~ c #1B3D76", +"Q~ c #1D3E78", +"R~ c #194181", +"S~ c #10387C", +"T~ c #052A6E", +"U~ c #03255F", +"V~ c #010B1A", +"W~ c #021840", +"X~ c #0C2855", +"Y~ c #082352", +"Z~ c #0B2856", +"`~ c #122E5E", +" { c #153467", +".{ c #153569", +"+{ c #1B3A6F", +"@{ c #1F3F78", +"#{ c #1F427F", +"${ c #032867", +"%{ c #010106", +"&{ c #021633", +"*{ c #03173E", +"={ c #031839", +"-{ c #041E46", +";{ c #06204D", +">{ c #0D2D5B", +",{ c #0F2C5C", +"'{ c #102D5C", +"){ c #133264", +"!{ c #18366C", +"~{ c #1B3B73", +"{{ c #1C3F77", +"]{ c #1E417C", +"^{ c #1D3F7D", +"/{ c #1B4281", +"({ c #153B7A", +"_{ c #0C3378", +":{ c #0A367A", +"<{ c #010409", +"[{ c #010B1D", +"}{ c #010C21", +"|{ c #03112D", +"1{ c #092451", +"2{ c #19376D", +"3{ c #1D3C73", +"4{ c #1E3D77", +"5{ c #1D4282", +"6{ c #1E4485", +"7{ c #19417F", +"8{ c #143D7F", +"9{ c #13397D", +"0{ c #0A347A", +"a{ c #052B6B", +"b{ c #000816", +"c{ c #010E24", +"d{ c #031532", +"e{ c #051D49", +"f{ c #052049", +"g{ c #06204B", +"h{ c #08234F", +"i{ c #0A2652", +"j{ c #0B2653", +"k{ c #102F5F", +"l{ c #123163", +"m{ c #143264", +"n{ c #163569", +"o{ c #1D3E75", +"p{ c #1C3B76", +"q{ c #1F3F7A", +"r{ c #1D4078", +"s{ c #1E4382", +"t{ c #11397D", +"u{ c #042E74", +"v{ c #041A41", +"w{ c #061F48", +"x{ c #06224C", +"y{ c #0A2552", +"z{ c #0A2754", +"A{ c #0B2754", +"B{ c #0C2756", +"C{ c #112D5C", +"D{ c #0F2D5C", +"E{ c #102E5E", +"F{ c #1B3A70", +"G{ c #1E3E76", +"H{ c #1D3D74", +"I{ c #1D3C75", +"J{ c #1A3D75", +"K{ c #1E3F79", +"L{ c #204381", +"M{ c #1F4482", +"N{ c #183E84", +"O{ c #0E357C", +"P{ c #052967", +"Q{ c #030E22", +"R{ c #02193B", +"S{ c #08224D", +"T{ c #07234E", +"U{ c #0B2855", +"V{ c #102C5B", +"W{ c #102C5C", +"X{ c #163668", +"Y{ c #1B3B71", +"Z{ c #1C3B71", +"`{ c #1D3D77", +" ] c #20437D", +".] c #1E4181", +"+] c #03255E", +"@] c #020205", +"#] c #02122A", +"$] c #031129", +"%] c #05214B", +"&] c #0A2553", +"*] c #0C2C5A", +"=] c #163468", +"-] c #1A386F", +";] c #1C3B72", +">] c #20427D", +",] c #204380", +"'] c #1E4282", +")] c #183F83", +"!] c #083277", +"~] c #061F47", +"{] c #06204A", +"]] c #0B2654", +"^] c #0D2957", +"/] c #153366", +"(] c #122F62", +"_] c #153269", +":] c #163669", +"<] c #1A386E", +"[] c #1D3D73", +"}] c #1B3E75", +"|] c #1A417F", +"1] c #093277", +"2] c #000915", +"3] c #010D1E", +"4] c #061E48", +"5] c #051F47", +"6] c #0E2E5D", +"7] c #112F5E", +"8] c #11305F", +"9] c #143265", +"0] c #17376B", +"a] c #17366A", +"b] c #1E4179", +"c] c #1F417C", +"d] c #214380", +"e] c #073176", +"f] c #020714", +"g] c #020106", +"h] c #011430", +"i] c #0B2753", +"j] c #092651", +"k] c #0C2856", +"l] c #112E5D", +"m] c #0D2D5C", +"n] c #122F63", +"o] c #18386B", +"p] c #1C3B73", +"q] c #1E3D79", +"r] c #1D3E79", +"s] c #1F427D", +"t] c #204480", +"u] c #1E4482", +"v] c #0A3177", +"w] c #083278", +"x] c #053076", +"y] c #032762", +"z] c #02070F", +"A] c #07204B", +"B] c #0E2958", +"C] c #123162", +"D] c #1D3C74", +"E] c #1B3C73", +"F] c #1F3F77", +"G] c #1F4279", +"H] c #042B69", +"I] c #020B21", +"J] c #010C1C", +"K] c #030F22", +"L] c #061E47", +"M] c #061F4B", +"N] c #0B2854", +"O] c #123061", +"P] c #133064", +"Q] c #173569", +"R] c #17356A", +"S] c #1D3E74", +"T] c #1F3F75", +"U] c #1E3D76", +"V] c #1F3F79", +"W] c #1F407B", +"X] c #20427E", +"Y] c #20437E", +"Z] c #1D4181", +"`] c #1A4083", +" ^ c #153B80", +".^ c #0E367A", +"+^ c #093278", +"@^ c #083378", +"#^ c #00060D", +"$^ c #051F48", +"%^ c #0A2551", +"&^ c #132F5F", +"*^ c #102E5D", +"=^ c #18366A", +"-^ c #18366B", +";^ c #16366A", +">^ c #15356A", +",^ c #1C3D74", +"'^ c #1E4079", +")^ c #224482", +"!^ c #214582", +"~^ c #1D427F", +"{^ c #193E82", +"]^ c #00030A", +"^^ c #051E46", +"/^ c #0F2F5E", +"(^ c #153368", +"_^ c #18376C", +":^ c #1B3970", +"<^ c #1E3F76", +"[^ c #1F427A", +"}^ c #1E427C", +"|^ c #1E4483", +"1^ c #183D81", +"2^ c #000309", +"3^ c #04173C", +"4^ c #051C48", +"5^ c #071F4B", +"6^ c #08234E", +"7^ c #06204C", +"8^ c #09244F", +"9^ c #072550", +"0^ c #0F2A59", +"a^ c #1A396E", +"b^ c #1B396F", +"c^ c #1F4281", +"d^ c #0B3279", +"e^ c #020308", +"f^ c #03102A", +"g^ c #071E4A", +"h^ c #203F78", +"i^ c #1E3F78", +"j^ c #1F427B", +"k^ c #214581", +"l^ c #214583", +"m^ c #1B4284", +"n^ c #021025", +"o^ c #02142F", +"p^ c #061E49", +"q^ c #071F4A", +"r^ c #041F48", +"s^ c #092450", +"t^ c #12305F", +"u^ c #19376B", +"v^ c #18386C", +"w^ c #19386D", +"x^ c #1D3E73", +"y^ c #204079", +"z^ c #203F7A", +"A^ c #204280", +"B^ c #1A4280", +"C^ c #073177", +"D^ c #010E27", +"E^ c #041738", +"F^ c #041A3E", +"G^ c #021D45", +"H^ c #0C2754", +"I^ c #133062", +"J^ c #1D3C72", +"K^ c #1E3E74", +"L^ c #203F79", +"M^ c #204179", +"N^ c #20437F", +"O^ c #1F4282", +"P^ c #1E4383", +"Q^ c #113A7D", +"R^ c #082F77", +"S^ c #021023", +"T^ c #03142F", +"U^ c #031736", +"V^ c #021A3E", +"W^ c #072049", +"X^ c #07234D", +"Y^ c #112E5E", +"Z^ c #1C3A71", +"`^ c #1E3D74", +" / c #1D3F78", +"./ c #1E417F", +"+/ c #1A4084", +"@/ c #0C3478", +"#/ c #0B347A", +"$/ c #053075", +"%/ c #03112E", +"&/ c #021B40", +"*/ c #031F47", +"=/ c #0A2550", +"-/ c #0D2955", +";/ c #0F2C5A", +">/ c #14305F", +",/ c #153365", +"'/ c #143365", +")/ c #18376A", +"!/ c #1F3E77", +"~/ c #20447F", +"{/ c #224481", +"]/ c #214482", +"^/ c #1B4183", +"// c #0C2854", +"(/ c #153266", +"_/ c #173669", +":/ c #1F4079", +"( c #E4DB1B", +",( c #DAD21F", +"'( c #C2BB25", +")( c #908C31", +"!( c #31353D", +"~( c #041B40", +"{( c #222A3F", +"]( c #878438", +"^( c #BFB82C", +"/( c #D9D023", +"(( c #E4DB1D", +"_( c #E3DA1F", +":( c #DBD322", +"<( c #C9C129", +"[( c #ABA532", +"}( c #6F6D3D", +"|( c #262F45", +"1( c #061D47", +"2( c #2A3347", +"3( c #32384A", +"4( c #31394A", +"5( c #2A344A", +"6( c #1F2D4E", +"7( c #323C50", +"8( c #323B4F", +"9( c #333C51", +"0( c #152A54", +"a( c #203154", +"b( c #303C54", +"c( c #333D56", +"d( c #333E57", +"e( c #2C3956", +"f( c #122F5F", +"g( c #10305E", +"h( c #133161", +"i( c #1E3E75", +"j( c #204383", +"k( c #21252A", +"l( c #E6DD14", +"m( c #F6EC0D", +"n( c #6A672A", +"o( c #7D7A33", +"p( c #DAD11F", +"q( c #E7DE1A", +"r( c #9A9531", +"s( c #1C253B", +"t( c #041B41", +"u( c #7E7B37", +"v( c #DFD620", +"w( c #F8EE0D", +"x( c #E5DC1D", +"y( c #B2AC32", +"z( c #3E4142", +"A( c #051D4A", +"B( c #112349", +"C( c #C5BE2E", +"D( c #E9E01D", +"E( c #43474A", +"F( c #12264E", +"G( c #BFB935", +"H( c #ECE21D", +"I( c #4C4F4C", +"J( c #424951", +"K( c #7F7E4A", +"L( c #B3AD3E", +"M( c #DAD22D", +"N( c #F4EA14", +"O( c #DAD22C", +"P( c #1B2D56", +"Q( c #123060", +"R( c #1A396C", +"S( c #1F417A", +"T( c #1F407A", +"U( c #1E427D", +"V( c #093579", +"W( c #032A6D", +"X( c #010203", +"Y( c #222526", +"Z( c #6A6728", +"`( c #161F32", +" _ c #A8A22B", +"._ c #F3E910", +"+_ c #F7ED0E", +"@_ c #C6BF27", +"#_ c #2E3440", +"$_ c #928E38", +"%_ c #F2E912", +"&_ c #74733F", +"*_ c #062049", +"=_ c #08204C", +"-_ c #5C5D44", +";_ c #F1E716", +">_ c #B4AE38", +",_ c #6E6E49", +"'_ c #F3EA14", +")_ c #A8A33F", +"!_ c #70704D", +"~_ c #D2CA2F", +"{_ c #ECE21E", +"]_ c #F7ED0F", +"^_ c #DBD32D", +"/_ c #133061", +"(_ c #153465", +"__ c #19376A", +":_ c #19396C", +"<_ c #19386C", +"[_ c #1F4076", +"}_ c #1F3E75", +"|_ c #1F417B", +"1_ c #1F3E79", +"2_ c #20437C", +"3_ c #020208", +"4_ c #021C47", +"5_ c #00050C", +"6_ c #212529", +"7_ c #F7ED0D", +"8_ c #6A6727", +"9_ c #A6A02C", +"0_ c #E7DD1A", +"a_ c #C2BA27", +"b_ c #A8A22F", +"c_ c #A49F30", +"d_ c #B9B22B", +"e_ c #DDD51C", +"f_ c #C9C227", +"g_ c #222A3E", +"h_ c #696738", +"i_ c #F0E714", +"j_ c #E7DE1C", +"k_ c #C5BD2B", +"l_ c #A29C32", +"m_ c #AEA82F", +"n_ c #CAC32C", +"o_ c #E8DF1A", +"p_ c #73713D", +"q_ c #B5AF37", +"r_ c #F0E717", +"s_ c #5C5D47", +"t_ c #18294C", +"u_ c #D1C92E", +"v_ c #E3DA23", +"w_ c #353E51", +"x_ c #999544", +"y_ c #1C2F58", +"z_ c #133160", +"A_ c #163466", +"B_ c #19376C", +"C_ c #1F3E74", +"D_ c #1E3F74", +"E_ c #1F4078", +"F_ c #21407A", +"G_ c #1A3F83", +"H_ c #5E5C2F", +"I_ c #65622A", +"J_ c #656224", +"K_ c #26292C", +"L_ c #817E30", +"M_ c #F4EA10", +"N_ c #F5EB0F", +"O_ c #ADA72E", +"P_ c #3E413C", +"Q_ c #262D3A", +"R_ c #8D8833", +"S_ c #ECE216", +"T_ c #ACA62F", +"U_ c #0F1F40", +"V_ c #CDC526", +"W_ c #F6EC0E", +"X_ c #B5AE2F", +"Y_ c #414441", +"Z_ c #3F4243", +"`_ c #8F8B39", +" : c #DDD522", +".: c #F5EC0F", +"+: c #08214A", +"@: c #434748", +"#: c #C6BF30", +"$: c #11254C", +"%: c #888542", +"&: c #F6EC0F", +"*: c #928F42", +"=: c #999546", +"-: c #F1E817", +";: c #D4CC30", +">: c #A9A442", +",: c #C7BF36", +"': c #132E5F", +"): c #143261", +"!: c #122F60", +"~: c #133263", +"{: c #113160", +"]: c #153264", +"^: c #173468", +"/: c #1D4283", +"(: c #1C4182", +"_: c #183E82", +":: c #153E81", +"<: c #052966", +"[: c #020306", +"}: c #333631", +"|: c #E2D919", +"1: c #97922A", +"2: c #011737", +"3: c #6A6837", +"4: c #EBE216", +"5: c #F1E812", +"6: c #666535", +"7: c #4F503C", +"8: c #F3E911", +"9: c #C0B92C", +"0: c #0E1F40", +"a: c #051D45", +"b: c #041C42", +"c: c #1D2844", +"d: c #9B9637", +"e: c #61603F", +"f: c #A19C3B", +"g: c #F5EB11", +"h: c #767546", +"i: c #2B364D", +"j: c #DFD625", +"k: c #D7CF2B", +"l: c #1F2E4E", +"m: c #838148", +"n: c #BBB53C", +"o: c #8B8848", +"p: c #3B4351", +"q: c #B6B03E", +"r: c #1B2E56", +"s: c #102E5C", +"t: c #21417A", +"u: c #20417A", +"v: c #163C7E", +"w: c #163C80", +"x: c #052E71", +"y: c #000103", +"z: c #010E20", +"A: c #031634", +"B: c #A29C2A", +"C: c #B9B225", +"D: c #0E1C37", +"E: c #8C8833", +"F: c #C8C028", +"G: c #0F1D3B", +"H: c #8E8937", +"I: c #5F5E3B", +"J: c #061D46", +"K: c #2E3649", +"L: c #DFD724", +"M: c #D5CD2A", +"N: c #1E2D4D", +"O: c #A09B3C", +"P: c #F5EC11", +"Q: c #7A7847", +"R: c #08244E", +"S: c #0C2753", +"T: c #B6B03C", +"U: c #1C2F57", +"V: c #0F2B59", +"W: c #122D5C", +"X: c #122D5D", +"Y: c #20427B", +"Z: c #1F4179", +"`: c #234682", +" < c #214480", +".< c #595619", +"+< c #9D9717", +"@< c #BEB715", +"#< c #CAC216", +"$< c #C6BE14", +"%< c #AFA816", +"&< c #78731A", +"*< c #0D1420", +"=< c #757124", +"-< c #B2AB1C", +";< c #C8C01A", +">< c #C8C018", +",< c #B0A91D", +"'< c #716E26", +")< c #011736", +"!< c #212736", +"~< c #E1D81A", +"{< c #E9E016", +"]< c #414236", +"^< c #16223A", +"/< c #CFC726", +"(< c #58573B", +"_< c #E9E01A", +":< c #262C3A", +"<< c #071E48", +"[< c #8A8740", +"}< c #8F8B3F", +"|< c #46494A", +"1< c #E9E01E", +"2< c #C8C133", +"3< c #11254D", +"4< c #0B2552", +"5< c #143062", +"6< c #1A386C", +"7< c #1E3D73", +"8< c #1F4383", +"9< c #193E80", +"0< c #030E26", +"a< c #36361C", +"b< c #BAB216", +"c< c #F0E60D", +"d< c #F5EB0D", +"e< c #D2CA12", +"f< c #57551F", +"g< c #ABA517", +"h< c #EAE110", +"i< c #EAE111", +"j< c #EAE10F", +"k< c #CBC317", +"l< c #0D1726", +"m< c #2A2C24", +"n< c #E5DC13", +"o< c #E8DF12", +"p< c #40402A", +"q< c #363726", +"r< c #C5BD1A", +"s< c #F4EA0E", +"t< c #BCB41E", +"u< c #212528", +"v< c #21262C", +"w< c #D9D118", +"x< c #EAE113", +"y< c #E8DF13", +"z< c #636129", +"A< c #262A2D", +"B< c #D6CD1A", +"C< c #C6BF1F", +"D< c #162033", +"E< c #6E6D31", +"F< c #E8DF16", +"G< c #EAE115", +"H< c #EAE016", +"I< c #95902B", +"J< c #747033", +"K< c #B1AA2A", +"L< c #817D37", +"M< c #A6A033", +"N< c #AFA931", +"O< c #E6DC1A", +"P< c #212A3F", +"Q< c #06214A", +"R< c #1E2D4C", +"S< c #D3CB2C", +"T< c #E2D923", +"U< c #2E374B", +"V< c #B5AF38", +"W< c #606048", +"X< c #DBD32C", +"Y< c #1C2E56", +"Z< c #143060", +"`< c #133262", +" [ c #133060", +".[ c #173568", +"+[ c #1A396D", +"@[ c #20427A", +"#[ c #21437D", +"$[ c #22457F", +"%[ c #214381", +"&[ c #010306", +"*[ c #030408", +"=[ c #00040C", +"-[ c #49471D", +";[ c #D9D012", +">[ c #E7DD10", +",[ c #615D1B", +"'[ c #B5AE17", +")[ c #D7CF15", +"![ c #0E1725", +"~[ c #2D2E23", +"{[ c #F2E90E", +"][ c #F5EC0D", +"^[ c #504E22", +"/[ c #D0C818", +"([ c #B7B01D", +"_[ c #0E1623", +":[ c #21262D", +"<[ c #E6DD16", +"[[ c #8C8728", +"}[ c #8D882A", +"|[ c #D7CF1C", +"1[ c #DDD419", +"2[ c #292D31", +"3[ c #011639", +"4[ c #AFA826", +"5[ c #F5EC0E", +"6[ c #656335", +"7[ c #262E3D", +"8[ c #D2CA22", +"9[ c #0E1E3F", +"0[ c #A9A331", +"a[ c #F1E714", +"b[ c #363A3D", +"c[ c #041C41", +"d[ c #051D44", +"e[ c #051B45", +"f[ c #071F48", +"g[ c #07214B", +"h[ c #717044", +"i[ c #F4EA12", +"j[ c #A5A03C", +"k[ c #5F6047", +"l[ c #F1E717", +"m[ c #B7B138", +"n[ c #092350", +"o[ c #0D2855", +"p[ c #B6B03D", +"q[ c #1B2D54", +"r[ c #102F5D", +"s[ c #112C5C", +"t[ c #132F5E", +"u[ c #143262", +"v[ c #1B396D", +"w[ c #1A3A6E", +"x[ c #1A3A6F", +"y[ c #1E3D75", +"z[ c #20407B", +"A[ c #1C4381", +"B[ c #093379", +"C[ c #042C72", +"D[ c #020209", +"E[ c #041A45", +"F[ c #21241F", +"G[ c #D3CA13", +"H[ c #F0E60E", +"I[ c #D1C913", +"J[ c #BEB616", +"K[ c #C5BD15", +"L[ c #DCD312", +"M[ c #2D2E20", +"N[ c #B1AA18", +"O[ c #F2E80E", +"P[ c #D7CF16", +"Q[ c #2D2E21", +"R[ c #BAB31A", +"S[ c #E6DD13", +"T[ c #C5BD1B", +"U[ c #C0B81A", +"V[ c #DAD214", +"W[ c #6C6921", +"X[ c #21262B", +"Y[ c #161F31", +"Z[ c #CBC31D", +"`[ c #E6DC16", +" } c #3C3D31", +".} c #9F9924", +"+} c #797632", +"@} c #D1C921", +"#} c #E4DB18", +"$} c #22293A", +"%} c #C6BE26", +"&} c #ECE316", +"*} c #29303D", +"=} c #918D35", +"-} c #999434", +";} c #051C43", +">} c #10234A", +",} c #C3BC32", +"'} c #EBE21C", +")} c #4C4F4A", +"!} c #C8C130", +"~} c #EAE11D", +"{} c #464A4B", +"]} c #0B2450", +"^} c #1C3157", +"/} c #0D2856", +"(} c #11305E", +"_} c #123261", +":} c #133162", +"<} c #1C3C6F", +"[} c #1F3F76", +"}} c #1F4483", +"|} c #10397B", +"1} c #041F51", +"2} c #A39C18", +"3} c #C2BB14", +"4} c #4B491D", +"5} c #26261D", +"6} c #ACA51A", +"7} c #615E20", +"8} c #EEE40F", +"9} c #C7BF16", +"0} c #0E1522", +"a} c #2D2E22", +"b} c #F4EA0D", +"c} c #F3E90E", +"d} c #A59F1D", +"e} c #212427", +"f} c #928D23", +"g} c #F3E90F", +"h} c #BEB71C", +"i} c #5B592A", +"j} c #EEE512", +"k} c #B7B025", +"l} c #53512F", +"m} c #ECE314", +"n} c #BFB724", +"o} c #0E1A31", +"p} c #222734", +"q} c #E6DC18", +"r} c #CCC423", +"s} c #05183A", +"t} c #A6A030", +"u} c #59593C", +"v} c #56563D", +"w} c #F4EA11", +"x} c #EDE417", +"y} c #8D8938", +"z} c #0D1E3D", +"A} c #08214B", +"B} c #07204C", +"C} c #08214C", +"D} c #595B48", +"E} c #EFE618", +"F} c #D1C92D", +"G} c #A29D3E", +"H} c #1C3056", +"I} c #122F5D", +"J} c #10305F", +"K} c #122E5F", +"L} c #143163", +"M} c #173466", +"N} c #1E3D78", +"O} c #23437C", +"P} c #21447D", +"Q} c #214683", +"R} c #37361D", +"S} c #E9E00F", +"T} c #C3BB12", +"U} c #1C1F1F", +"V} c #0E1420", +"W} c #B7AF17", +"X} c #E3DA11", +"Y} c #212421", +"Z} c #2A2B23", +"`} c #D8CF14", +" | c #EBE110", +".| c #54521F", +"+| c #2D2F26", +"@| c #A69F20", +"#| c #021127", +"$| c #B9B11E", +"%| c #6A6729", +"&| c #A6A023", +"*| c #6F6C2B", +"=| c #0D1A31", +"-| c #C5BE20", +";| c #E9E015", +">| c #474733", +",| c #2D3130", +"'| c #F2E911", +")| c #B7B029", +"!| c #898531", +"~| c #CEC626", +"{| c #DDD421", +"]| c #A9A333", +"^| c #69683C", +"/| c #343840", +"(| c #062048", +"_| c #09214D", +":| c #B1AB39", +"<| c #E0D824", +"[| c #0A244F", +"}| c #0E2A58", +"|| c #0E2B59", +"1| c #112C5D", +"2| c #133261", +"3| c #173567", +"4| c #1D3B72", +"5| c #1F3E78", +"6| c #234785", +"7| c #1C4384", +"8| c #10367B", +"9| c #000308", +"0| c #948E15", +"a| c #ECE30F", +"b| c #45441D", +"c| c #3E3E1F", +"d| c #ECE20F", +"e| c #726E1C", +"f| c #B1AA1C", +"g| c #8E881A", +"h| c #2D2F27", +"i| c #E0D714", +"j| c #262A2C", +"k| c #636125", +"l| c #4D4C26", +"m| c #21252C", +"n| c #E6DD15", +"o| c #292E31", +"p| c #DCD31A", +"q| c #D7CF1B", +"r| c #21262F", +"s| c #837F2A", +"t| c #96912A", +"u| c #505033", +"v| c #747136", +"w| c #65633A", +"x| c #EDE317", +"y| c #CFC729", +"z| c #A59F35", +"A| c #5E5D3C", +"B| c #40444A", +"C| c #E7DE1F", +"D| c #8B8842", +"E| c #1B2D55", +"F| c #122E5C", +"G| c #132F61", +"H| c #1A3A6D", +"I| c #1C3B6F", +"J| c #214179", +"K| c #10397C", +"L| c #0D3479", +"M| c #02020A", +"N| c #C8C012", +"O| c #BDB513", +"P| c #C3BC16", +"Q| c #A6A01A", +"R| c #7C781C", +"S| c #BEB719", +"T| c #0E1521", +"U| c #ABA51D", +"V| c #011025", +"W| c #262929", +"X| c #E9E012", +"Y| c #777327", +"Z| c #77732A", +"`| c #F4EA0F", +" 1 c #9F9927", +".1 c #343630", +"+1 c #D2CA1E", +"@1 c #1C2334", +"#1 c #615F2E", +"$1 c #9D972E", +"%1 c #999432", +"&1 c #767337", +"*1 c #F1E814", +"=1 c #C6BF2C", +"-1 c #565740", +";1 c #092049", +">1 c #B4AD36", +",1 c #D5CD2B", +"'1 c #1F2D4D", +")1 c #0B2553", +"!1 c #0F2B58", +"~1 c #0E2A57", +"{1 c #132E5E", +"]1 c #143162", +"^1 c #1C3B70", +"/1 c #1D3B71", +"(1 c #1F3E76", +"_1 c #1F4075", +":1 c #22447E", +"<1 c #1F437D", +"[1 c #1E4481", +"}1 c #04296C", +"|1 c #010408", +"11 c #21231C", +"21 c #E4DA0F", +"31 c #8D8718", +"41 c #A19B18", +"51 c #C2BA18", +"61 c #454421", +"71 c #E4DB11", +"81 c #E0D713", +"91 c #3C3C24", +"01 c #7C7822", +"a1 c #161D2A", +"b1 c #DBD216", +"c1 c #898424", +"d1 c #21262E", +"e1 c #0E1A32", +"f1 c #BDB621", +"g1 c #BDB623", +"h1 c #F1E711", +"i1 c #67652D", +"j1 c #666432", +"k1 c #9A952C", +"l1 c #01183C", +"m1 c #61603B", +"n1 c #9C9732", +"o1 c #47493B", +"p1 c #B5AF2E", +"q1 c #E9E019", +"r1 c #EBE119", +"s1 c #807C3A", +"t1 c #3A3F48", +"u1 c #E5DC20", +"v1 c #DAD228", +"w1 c #24304C", +"x1 c #0C2651", +"y1 c #0A2451", +"z1 c #1B2E54", +"A1 c #0D2A56", +"B1 c #0F2A58", +"C1 c #102C5A", +"D1 c #0F2D5B", +"E1 c #143263", +"F1 c #204078", +"G1 c #36361B", +"H1 c #F3E90D", +"I1 c #F6EC0C", +"J1 c #78741A", +"K1 c #47451B", +"L1 c #49471A", +"M1 c #49471E", +"N1 c #494821", +"O1 c #49471C", +"P1 c #49471F", +"Q1 c #9B9518", +"R1 c #D0C813", +"S1 c #161B21", +"T1 c #C5BD18", +"U1 c #747020", +"V1 c #575520", +"W1 c #0E1729", +"X1 c #D5CD17", +"Y1 c #8F8A22", +"Z1 c #454530", +"`1 c #B0A925", +" 2 c #5E5C31", +".2 c #9F9928", +"+2 c #696739", +"@2 c #979232", +"#2 c #3E413D", +"$2 c #BEB72E", +"%2 c #E0D71F", +"&2 c #EEE417", +"*2 c #666540", +"=2 c #072048", +"-2 c #ABA639", +";2 c #96923F", +">2 c #0B234F", +",2 c #0E2955", +"'2 c #0E2B58", +")2 c #1C3A70", +"!2 c #1D3C71", +"~2 c #21437B", +"{2 c #204583", +"]2 c #5E5A17", +"^2 c #D6CE13", +"/2 c #0E1520", +"(2 c #96911C", +"_2 c #A9A31A", +":2 c #2E2F27", +"<2 c #454425", +"[2 c #0D192F", +"}2 c #D3CB18", +"|2 c #918C24", +"12 c #938E28", +"22 c #E2D918", +"32 c #363832", +"42 c #454531", +"52 c #ABA52A", +"62 c #7A7738", +"72 c #8C8834", +"82 c #061E44", +"92 c #959136", +"02 c #D3CA25", +"a2 c #D1C928", +"b2 c #172545", +"c2 c #062149", +"d2 c #515348", +"e2 c #EDE419", +"f2 c #E5DC21", +"g2 c #383F4C", +"h2 c #1C3057", +"i2 c #13305F", +"j2 c #153265", +"k2 c #143165", +"l2 c #1F437B", +"m2 c #21447F", +"n2 c #11397C", +"o2 c #10377B", +"p2 c #041E4E", +"q2 c #01112D", +"r2 c #000918", +"s2 c #6D691B", +"t2 c #D8CF12", +"u2 c #5D5A1F", +"v2 c #EDE40F", +"w2 c #D3CA15", +"x2 c #252820", +"y2 c #021024", +"z2 c #0D1728", +"A2 c #D3CB19", +"B2 c #212730", +"C2 c #DED519", +"D2 c #8A852E", +"E2 c #2A2E34", +"F2 c #EFE612", +"G2 c #BEB627", +"H2 c #938E2F", +"I2 c #757236", +"J2 c #1D2842", +"K2 c #959038", +"L2 c #F3E913", +"M2 c #F5EB10", +"N2 c #656441", +"O2 c #112449", +"P2 c #BEB734", +"Q2 c #EDE41A", +"R2 c #868241", +"S2 c #A9A43B", +"T2 c #09234F", +"U2 c #1D3157", +"V2 c #1F4583", +"W2 c #10377A", +"X2 c #11387E", +"Y2 c #062C71", +"Z2 c #6E6A1C", +"`2 c #D4CC11", +" 3 c #D3CB13", +".3 c #D3CB12", +"+3 c #D3CB14", +"@3 c #B7B018", +"#3 c #0D141E", +"$3 c #252824", +"%3 c #D6CD13", +"&3 c #EBE210", +"*3 c #595620", +"=3 c #2D2F28", +"-3 c #454420", +";3 c #0D1525", +">3 c #918C21", +",3 c #7E792A", +"'3 c #F5EB0E", +")3 c #B0AA2A", +"!3 c #1C2333", +"~3 c #DFD61A", +"{3 c #D5CC1F", +"]3 c #0E1C36", +"^3 c #01173C", +"/3 c #041A3F", +"(3 c #B1AB2D", +"_3 c #454639", +":3 c #051B41", +"<3 c #061D44", +"[3 c #ADA730", +"}3 c #A39D36", +"|3 c #081F49", +"13 c #0A234C", +"23 c #6C6B44", +"33 c #F3E914", +"43 c #AAA437", +"53 c #102248", +"63 c #C2BB33", +"73 c #ECE31B", +"83 c #4E514A", +"93 c #1C2E55", +"03 c #14305E", +"a3 c #153161", +"b3 c #143161", +"c3 c #183466", +"d3 c #193769", +"e3 c #203F75", +"f3 c #204076", +"g3 c #20427C", +"h3 c #1C4285", +"i3 c #113A7C", +"j3 c #052F73", +"k3 c #02060C", +"l3 c #615D1E", +"m3 c #434119", +"n3 c #AEA718", +"o3 c #918C1B", +"p3 c #2D2F29", +"q3 c #454426", +"r3 c #D3CB17", +"s3 c #6A672E", +"t3 c #2D3030", +"u3 c #666431", +"v3 c #C7BF23", +"w3 c #EDE314", +"x3 c #303434", +"y3 c #0E1E3E", +"z3 c #D2CA24", +"A3 c #E4DB1A", +"B3 c #22293C", +"C3 c #494B40", +"D3 c #F3E912", +"E3 c #BFB82F", +"F3 c #09224B", +"G3 c #182849", +"H3 c #CFC72C", +"I3 c #383E4C", +"J3 c #585A4A", +"K3 c #F0E617", +"L3 c #BAB336", +"M3 c #0B2651", +"N3 c #0C2755", +"O3 c #112C5B", +"P3 c #153262", +"Q3 c #123161", +"R3 c #183568", +"S3 c #183668", +"T3 c #1A386A", +"U3 c #1B396C", +"V3 c #1F437E", +"W3 c #10387A", +"X3 c #10397D", +"Y3 c #0C3279", +"Z3 c #000715", +"`3 c #39381F", +" 4 c #75701A", +".4 c #7A761B", +"+4 c #C1B916", +"@4 c #0E151F", +"#4 c #2D2F24", +"$4 c #444428", +"%4 c #0D172B", +"&4 c #D3CB1A", +"*4 c #918C25", +"=4 c #AAA426", +"-4 c #F2E910", +";4 c #E7DD16", +">4 c #D2CA20", +",4 c #9E992C", +"'4 c #837F2F", +")4 c #454739", +"!4 c #F0E614", +"~4 c #C5BD2A", +"{4 c #C9C22A", +"]4 c #07214A", +"^4 c #84813F", +"/4 c #95913F", +"(4 c #08204B", +"_4 c #08224C", +":4 c #0A234D", +"<4 c #B2AC37", +"[4 c #F1E816", +"}4 c #646449", +"|4 c #0E2957", +"14 c #0E2B57", +"24 c #123260", +"34 c #1C3A6E", +"44 c #1B3B6E", +"54 c #1B3A6E", +"64 c #1F3D74", +"74 c #204178", +"84 c #1E407E", +"94 c #0F377A", +"04 c #032660", +"a4 c #21231B", +"b4 c #E4DA10", +"c4 c #A59E15", +"d4 c #41401E", +"e4 c #E2D911", +"f4 c #3E3D1D", +"g4 c #0E1626", +"h4 c #918C22", +"i4 c #6A672C", +"j4 c #01132D", +"k4 c #5E5C2C", +"l4 c #EFE611", +"m4 c #B3AD23", +"n4 c #848029", +"o4 c #54532F", +"p4 c #C9C124", +"q4 c #0E1D38", +"r4 c #04183B", +"s4 c #A09B31", +"t4 c #8F8A36", +"u4 c #1C2642", +"v4 c #E1D81F", +"w4 c #C8C02C", +"x4 c #081F48", +"y4 c #082049", +"z4 c #273147", +"A4 c #DCD425", +"B4 c #D9D028", +"C4 c #232D49", +"D4 c #09224D", +"E4 c #05214A", +"F4 c #414549", +"G4 c #C9C131", +"H4 c #13284F", +"I4 c #09224E", +"J4 c #0A234F", +"K4 c #0B2550", +"L4 c #0C2752", +"M4 c #112D5B", +"N4 c #12315F", +"O4 c #143160", +"P4 c #153463", +"Q4 c #163264", +"R4 c #173365", +"S4 c #163365", +"T4 c #1A376B", +"U4 c #1B3B6F", +"V4 c #1D3B70", +"W4 c #204177", +"X4 c #22447F", +"Y4 c #C5BD12", +"Z4 c #D8D011", +"`4 c #16191B", +" 5 c #0E141F", +".5 c #C3BB15", +"+5 c #0D1626", +"@5 c #161E2E", +"#5 c #CDC51C", +"$5 c #E3DA17", +"%5 c #393B2F", +"&5 c #C6BE20", +"*5 c #E8DF15", +"=5 c #474834", +"-5 c #0E1B35", +";5 c #CFC722", +">5 c #6E6B34", +",5 c #393C3A", +"'5 c #E5DC19", +")5 c #E8DF18", +"!5 c #34383E", +"~5 c #061C43", +"{5 c #313743", +"]5 c #BBB42E", +"^5 c #071F47", +"/5 c #9B973C", +"(5 c #F5EC10", +"_5 c #7E7B42", +":5 c #08224E", +"<5 c #A09B3E", +"[5 c #7A7845", +"}5 c #0F2A57", +"|5 c #102D59", +"15 c #0F2C59", +"25 c #143061", +"35 c #183567", +"45 c #1A386B", +"55 c #1E3C73", +"65 c #204176", +"75 c #22427A", +"85 c #183D80", +"95 c #062F73", +"05 c #010913", +"a5 c #8B8616", +"b5 c #88821A", +"c5 c #010B1E", +"d5 c #938D1C", +"e5 c #ADA61A", +"f5 c #2D2F23", +"g5 c #444421", +"h5 c #0D1729", +"i5 c #031633", +"j5 c #8F8A29", +"k5 c #898529", +"l5 c #525231", +"m5 c #EDE313", +"n5 c #0F1C38", +"o5 c #7E7B2D", +"p5 c #DAD11C", +"q5 c #343634", +"r5 c #04193C", +"s5 c #0E1D3B", +"t5 c #B9B22A", +"u5 c #ABA52F", +"v5 c #65643C", +"w5 c #4D4E3D", +"x5 c #051C41", +"y5 c #8C8839", +"z5 c #9C9738", +"A5 c #071E46", +"B5 c #061D45", +"C5 c #3C4146", +"D5 c #E7DE1D", +"E5 c #CBC32C", +"F5 c #182749", +"G5 c #07224B", +"H5 c #2B354B", +"I5 c #E0D724", +"J5 c #D6CE2C", +"K5 c #202F50", +"L5 c #0A2450", +"M5 c #092550", +"N5 c #DBD32B", +"O5 c #0F2C58", +"P5 c #112D5A", +"Q5 c #163262", +"R5 c #163263", +"S5 c #143362", +"T5 c #143363", +"U5 c #153466", +"V5 c #1D3B6F", +"W5 c #203F76", +"X5 c #214177", +"Y5 c #214178", +"Z5 c #1F407D", +"`5 c #10387B", +" 6 c #2A2A1B", +".6 c #E2D910", +"+6 c #E9DF0F", +"@6 c #676416", +"#6 c #34331D", +"$6 c #A69F16", +"%6 c #36361E", +"&6 c #5D591E", +"*6 c #D5CC15", +"=6 c #26271E", +"-6 c #F2E90D", +";6 c #444426", +">6 c #918C23", +",6 c #40412E", +"'6 c #E6DC15", +")6 c #CAC21C", +"!6 c #A09B2A", +"~6 c #77742F", +"{6 c #0E1B32", +"]6 c #C9C122", +"^6 c #CAC221", +"/6 c #373937", +"(6 c #0E1D3A", +"_6 c #A9A330", +":6 c #E3DA1C", +"<6 c #393D3C", +"[6 c #A09A31", +"}6 c #EAE019", +"|6 c #A39E30", +"16 c #545540", +"26 c #59593E", +"36 c #B0AA33", +"46 c #F2E814", +"56 c #656544", +"66 c #09214C", +"76 c #8A8742", +"86 c #8F8B42", +"96 c #132F60", +"06 c #1B396E", +"a6 c #021B46", +"b6 c #041C4B", +"c6 c #010D1D", +"d6 c #8C8617", +"e6 c #F5EC0C", +"f6 c #EDE30E", +"g6 c #A09915", +"h6 c #4B4920", +"i6 c #21231D", +"j6 c #1C1E1E", +"k6 c #3E3D1F", +"l6 c #69651D", +"m6 c #B0A918", +"n6 c #E8DF0F", +"o6 c #45431F", +"p6 c #161A1C", +"q6 c #D1C914", +"r6 c #5A581C", +"s6 c #454428", +"t6 c #0D1628", +"u6 c #918C20", +"v6 c #212526", +"w6 c #B8B121", +"x6 c #EEE411", +"y6 c #58562E", +"z6 c #262B32", +"A6 c #D9D01A", +"B6 c #DBD21A", +"C6 c #292D30", +"D6 c #4F4F33", +"E6 c #DFD61B", +"F6 c #878332", +"G6 c #414237", +"H6 c #16213A", +"I6 c #0F1C39", +"J6 c #333737", +"K6 c #6E6C37", +"L6 c #CDC525", +"M6 c #7B7835", +"N6 c #011739", +"O6 c #9F9A32", +"P6 c #AFA92F", +"Q6 c #67653A", +"R6 c #3C3F3E", +"S6 c #172441", +"T6 c #262E40", +"U6 c #4B4D3E", +"V6 c #989336", +"W6 c #C8C12B", +"X6 c #0F2042", +"Y6 c #051D43", +"Z6 c #565744", +"`6 c #EFE617", +" 7 c #BBB433", +".7 c #0A224D", +"+7 c #1E2B4C", +"@7 c #D4CC2B", +"#7 c #E1D824", +"$7 c #2E374A", +"%7 c #55584B", +"&7 c #5B5D4C", +"*7 c #5B5D4B", +"=7 c #5C5E4F", +"-7 c #5C5E50", +";7 c #BEB83A", +">7 c #DED62A", +",7 c #5F6150", +"'7 c #5C5F51", +")7 c #5A5E52", +"!7 c #253555", +"~7 c #102D5B", +"{7 c #22417A", +"]7 c #11397B", +"^7 c #0F367A", +"/7 c #0F387C", +"(7 c #062C73", +"_7 c #0E131C", +":7 c #B7AF16", +"<7 c #EEE50E", +"[7 c #DED512", +"}7 c #D9D111", +"|7 c #DDD411", +"17 c #EBE10F", +"27 c #D8D014", +"37 c #D8D013", +"47 c #BBB41A", +"57 c #2E2E22", +"67 c #444425", +"77 c #0D1727", +"87 c #E6DD12", +"97 c #716E29", +"07 c #A6A025", +"a7 c #03132D", +"b7 c #726F2D", +"c7 c #A49E2A", +"d7 c #716F33", +"e7 c #EBE116", +"f7 c #DCD31C", +"g7 c #DAD21D", +"h7 c #E5DC1A", +"i7 c #989233", +"j7 c #DCD421", +"k7 c #DAD121", +"l7 c #E0D720", +"m7 c #EFE515", +"n7 c #E8DF1B", +"o7 c #585842", +"p7 c #112348", +"q7 c #C2BB30", +"r7 c #ECE21A", +"s7 c #4C4E47", +"t7 c #757446", +"u7 c #F5EB12", +"v7 c #A29D3C", +"w7 c #24314E", +"x7 c #E8DF20", +"y7 c #696B50", +"z7 c #102C58", +"A7 c #122D5B", +"B7 c #102B59", +"C7 c #163565", +"D7 c #1C3A6F", +"E7 c #021E4B", +"F7 c #21221A", +"G7 c #B6AF17", +"H7 c #403F1D", +"I7 c #26271F", +"J7 c #D7CF14", +"K7 c #2D2E1F", +"L7 c #454429", +"M7 c #262A2F", +"N7 c #D8CF1C", +"O7 c #DCD31B", +"P7 c #2A2E2D", +"Q7 c #0E1B33", +"R7 c #BAB322", +"S7 c #EEE413", +"T7 c #575630", +"U7 c #676534", +"V7 c #8B8733", +"W7 c #0E1D3C", +"X7 c #7B7837", +"Y7 c #E5DC1C", +"Z7 c #6B6A3E", +"`7 c #706F42", +" 8 c #A7A23A", +".8 c #09224C", +"+8 c #0A224E", +"@8 c #14274D", +"#8 c #C6BF32", +"$8 c #44484B", +"%8 c #23304D", +"&8 c #E7DE21", +"*8 c #F6EC10", +"=8 c #696B52", +"-8 c #102C59", +";8 c #142F5F", +">8 c #153160", +",8 c #163564", +"'8 c #163362", +")8 c #163464", +"!8 c #1B3A6D", +"~8 c #1F4077", +"{8 c #11377B", +"]8 c #837F1A", +"^8 c #D4CC13", +"/8 c #E0D712", +"(8 c #B5AE16", +"_8 c #676417", +":8 c #0D1624", +"<8 c #D4CB15", +"[8 c #22252B", +"}8 c #E7DD14", +"|8 c #9F9921", +"18 c #78742C", +"28 c #43432E", +"38 c #E7DE16", +"48 c #C9C121", +"58 c #041839", +"68 c #343734", +"78 c #A59F2C", +"88 c #E1D81B", +"98 c #EAE117", +"08 c #535237", +"a8 c #2E323D", +"b8 c #898536", +"c8 c #C5BE28", +"d8 c #E3DA1E", +"e8 c #ADA731", +"f8 c #41433F", +"g8 c #172646", +"h8 c #D3CB2A", +"i8 c #E3DA20", +"j8 c #353C49", +"k8 c #5E5F49", +"l8 c #112E5A", +"m8 c #143361", +"n8 c #173363", +"o8 c #183464", +"p8 c #163465", +"q8 c #1B386C", +"r8 c #204077", +"s8 c #1C1F1D", +"t8 c #54521C", +"u8 c #918B18", +"v8 c #A9A317", +"w8 c #AFA815", +"x8 c #A6A017", +"y8 c #8D881B", +"z8 c #57541C", +"A8 c #36361D", +"B8 c #3C3B20", +"C8 c #3C3B1F", +"D8 c #3C3B1D", +"E8 c #3C3B1E", +"F8 c #3C3B21", +"G8 c #3C3B1C", +"H8 c #3C3B23", +"I8 c #313222", +"J8 c #393925", +"K8 c #3C3B22", +"L8 c #393A25", +"M8 c #0D1523", +"N8 c #303227", +"O8 c #3C3C2A", +"P8 c #3C3C27", +"Q8 c #36382A", +"R8 c #3C3C28", +"S8 c #3C3D2E", +"T8 c #161D2B", +"U8 c #2D302D", +"V8 c #3C3D2C", +"W8 c #393B32", +"X8 c #303331", +"Y8 c #3C3D32", +"Z8 c #3C3D34", +"`8 c #363932", +" 9 c #262B35", +".9 c #656230", +"+9 c #97922E", +"@9 c #ABA42B", +"#9 c #9E992F", +"$9 c #767336", +"%9 c #31343A", +"&9 c #2D333B", +"*9 c #64633B", +"=9 c #949033", +"-9 c #AAA432", +";9 c #AFA930", +">9 c #A8A232", +",9 c #928E36", +"'9 c #61603E", +")9 c #2B3241", +"!9 c #031C41", +"~9 c #082046", +"{9 c #061E45", +"]9 c #373D48", +"^9 c #3C4145", +"/9 c #323948", +"(9 c #0A224C", +"_9 c #07224C", +":9 c #09244E", +"<9 c #383F4E", +"[9 c #3D434C", +"}9 c #3D444E", +"|9 c #32394B", +"19 c #384150", +"29 c #3D444D", +"39 c #3E454F", +"49 c #3E4552", +"59 c #3D4550", +"69 c #3D4450", +"79 c #3D4551", +"89 c #3E4755", +"99 c #3E4654", +"09 c #3E4754", +"a9 c #102B58", +"b9 c #122F5C", +"c9 c #132E5D", +"d9 c #153362", +"e9 c #153163", +"f9 c #153363", +"g9 c #153364", +"h9 c #193668", +"i9 c #1A3769", +"j9 c #1B396B", +"k9 c #1D3D72", +"l9 c #21417B", +"m9 c #11387A", +"n9 c #0F387B", +"o9 c #062F77", +"p9 c #01060B", +"q9 c #05193B", +"r9 c #04183A", +"s9 c #0D254F", +"t9 c #08234B", +"u9 c #0B244E", +"v9 c #09234D", +"w9 c #0A264F", +"x9 c #09254F", +"y9 c #0E2855", +"z9 c #0E2A56", +"A9 c #112C59", +"B9 c #143364", +"C9 c #183566", +"D9 c #1C3B6E", +"E9 c #032053", +"F9 c #03204E", +"G9 c #030B1A", +"H9 c #04193B", +"I9 c #081F4B", +"J9 c #0F2853", +"K9 c #0D2854", +"L9 c #173463", +"M9 c #193567", +"N9 c #1E3C71", +"O9 c #203E75", +"P9 c #0E3579", +"Q9 c #03245B", +"R9 c #042767", +"S9 c #052560", +"T9 c #04245E", +"U9 c #062B6B", +"V9 c #062B6C", +"W9 c #062B6E", +"X9 c #05183B", +"Y9 c #01173B", +"Z9 c #051C42", +"`9 c #071F46", +" 0 c #08204A", +".0 c #08234D", +"+0 c #0B254F", +"@0 c #09254E", +"#0 c #08234C", +"$0 c #0C2551", +"%0 c #0E2954", +"&0 c #0D2853", +"*0 c #102B57", +"=0 c #112C5A", +"-0 c #102D5A", +";0 c #153162", +">0 c #1B386A", +",0 c #21427C", +"'0 c #234581", +")0 c #324C81", +"!0 c #445F94", +"~0 c #37568D", +"{0 c #486395", +"]0 c #526C9B", +"^0 c #546D9E", +"/0 c #526C9E", +"(0 c #536EA0", +"_0 c #556FA4", +":0 c #5770A4", +"<0 c #5972A6", +"[0 c #566FA4", +"}0 c #5871A3", +"|0 c #5A72A1", +"10 c #5C74A3", +"20 c #5E75A5", +"30 c #5A72A0", +"40 c #506A9A", +"50 c #516A9C", +"60 c #4F6898", +"70 c #476395", +"80 c #425E93", +"90 c #425F95", +"00 c #436096", +"a0 c #3D5C97", +"b0 c #365590", +"c0 c #345491", +"d0 c #385894", +"e0 c #355694", +"f0 c #2E4E8C", +"g0 c #2B4C8A", +"h0 c #2D4D89", +"i0 c #2C4D8C", +"j0 c #294B8C", +"k0 c #244889", +"l0 c #264A8B", +"m0 c #22478B", +"n0 c #20468B", +"o0 c #1B4185", +"p0 c #12377A", +"q0 c #0E3376", +"r0 c #0A3173", +"s0 c #0A3175", +"t0 c #073278", +"u0 c #063078", +"v0 c #041F50", +"w0 c #021F53", +"x0 c #020C1B", +"y0 c #03193B", +"z0 c #051B42", +"A0 c #051B40", +"B0 c #082149", +"C0 c #08244C", +"D0 c #0B234D", +"E0 c #0C2450", +"F0 c #0A254E", +"G0 c #0B234E", +"H0 c #0E2652", +"I0 c #122E5B", +"J0 c #173362", +"K0 c #173465", +"L0 c #173566", +"M0 c #21427A", +"N0 c #21447C", +"O0 c #21457F", +"P0 c #0B327A", +"Q0 c #294D90", +"R0 c #4368A8", +"S0 c #BACBE8", +"T0 c #D4E2F5", +"U0 c #CCDCF2", +"V0 c #D1E1F5", +"W0 c #D3E2F5", +"X0 c #D3E1F5", +"Y0 c #D0E1F4", +"Z0 c #CFDFF3", +"`0 c #CEDFF4", +" a c #D1E1F4", +".a c #D3E1F4", +"+a c #D3E2F4", +"@a c #D2E1F5", +"#a c #CFE0F3", +"$a c #CEDFF3", +"%a c #CFE0F4", +"&a c #D0DFF3", +"*a c #CCDEF3", +"=a c #CDDEF3", +"-a c #CDDFF3", +";a c #CADCF4", +">a c #C8DAF0", +",a c #CBDBF0", +"'a c #CCDDF2", +")a c #CCDCF0", +"!a c #C9DAEE", +"~a c #C8D9ED", +"{a c #C7D9EE", +"]a c #C5D7F0", +"^a c #C1D4EE", +"/a c #BED1EC", +"(a c #C0D2EC", +"_a c #C2D2EC", +":a c #BFD1EA", +"b c #071F45", +",b c #072149", +"'b c #09204C", +")b c #0A244D", +"!b c #08244D", +"~b c #0D2551", +"{b c #163364", +"]b c #133B82", +"^b c #36538D", +"/b c #D2E1F4", +"(b c #C2D6F4", +"_b c #B6D0F1", +":b c #A8C5F0", +"c c #A2C2F0", +",c c #A5C3F0", +"'c c #AAC8F0", +")c c #E2ECF7", +"!c c #B6CAEA", +"~c c #2C5296", +"{c c #020710", +"]c c #020F21", +"^c c #01173D", +"/c c #0B254D", +"(c c #09244D", +"_c c #0A254F", +":c c #0B2650", +"d c #B3CDF3", +",d c #B5CDF3", +"'d c #B3CCF4", +")d c #AEC9F2", +"!d c #ACC8F2", +"~d c #ACC9F2", +"{d c #B0CBF3", +"]d c #BBD2F3", +"^d c #B2CCF0", +"/d c #8EB4EF", +"(d c #8FB4EE", +"_d c #9CBDEF", +":d c #9DBEEF", +"e c #ADCAF2", +",e c #B1CCF3", +"'e c #8FB3EB", +")e c #89B1EE", +"!e c #83ABEA", +"~e c #87AFEC", +"{e c #8EB3EE", +"]e c #81AAE8", +"^e c #81A9E7", +"/e c #D5E4F4", +"(e c #DEE9F6", +"_e c #6286C1", +":e c #194086", +"f c #6F97D7", +",f c #6A92D3", +"'f c #6891D1", +")f c #749AD7", +"!f c #A6C2EB", +"~f c #BED4F1", +"{f c #B3CDF0", +"]f c #B3CCF0", +"^f c #B3CDF1", +"/f c #B3CDEF", +"(f c #B4CEF0", +"_f c #B0CCF1", +":f c #B0CBF1", +"g c #8FB4ED", +",g c #98BBEF", +"'g c #88AFEB", +")g c #779FDF", +"!g c #729BDB", +"~g c #7CA0D9", +"{g c #B5CEF1", +"]g c #B7D0F0", +"^g c #B6CEEF", +"/g c #B5CEF0", +"(g c #AFCBF0", +"_g c #ADCAF0", +":g c #B8CFF2", +"h c #0F1520", +",h c #A29C18", +"'h c #EEE50F", +")h c #9F9918", +"!h c #6F6C2F", +"~h c #A9A326", +"{h c #A9A328", +"]h c #A9A329", +"^h c #A9A327", +"/h c #A9A32C", +"(h c #A8A229", +"_h c #A29C29", +":h c #958F2C", +"i c #C6BF33", +",i c #898644", +"'i c #0D2752", +")i c #0F2652", +"!i c #112C57", +"~i c #132E59", +"{i c #132E5B", +"]i c #112E5C", +"^i c #1C3F7D", +"/i c #153D7D", +"(i c #133A7C", +"_i c #0E3578", +":i c #16397A", +"j c #8AABE2", +",j c #84A7DF", +"'j c #7EA1DD", +")j c #6E95D5", +"!j c #85A9E4", +"~j c #6C93D3", +"{j c #6990D0", +"]j c #6990D1", +"^j c #678FCF", +"/j c #668DCD", +"(j c #678ECF", +"_j c #688FD0", +":j c #6D94D4", +"k c #122D58", +",k c #112E5B", +"'k c #183463", +")k c #183364", +"!k c #1E3C6F", +"~k c #1F3D71", +"{k c #1C3C70", +"]k c #1F3D73", +"^k c #214278", +"/k c #22457E", +"(k c #163D7C", +"_k c #5B76AB", +":k c #E3EDF5", +"l c #456DB0", +",l c #537CBD", +"'l c #5881C1", +")l c #6991D2", +"!l c #7AA3E1", +"~l c #87AEEB", +"{l c #B1CBF2", +"]l c #9CB4DD", +"^l c #173F84", +"/l c #041840", +"(l c #0E131A", +"_l c #C6BE13", +":l c #EAE00E", +"m c #7F7B1C", +",m c #807C1E", +"'m c #B9B118", +")m c #D7CF13", +"!m c #817C1B", +"~m c #807C1F", +"{m c #807C1D", +"]m c #63601E", +"^m c #B5AE15", +"/m c #F1E80F", +"(m c #E1D814", +"_m c #C0B81E", +":m c #7C7820", +"n c #BBD1F1", +",n c #ACC7F0", +"'n c #87ABE4", +")n c #7097D8", +"!n c #6188CA", +"~n c #3D64A8", +"{n c #436BAE", +"]n c #436AAD", +"^n c #3F66A9", +"/n c #4E75B8", +"(n c #658ECD", +"_n c #6A93D3", +":n c #C0D3EE", +"o c #6C95D5", +",o c #A1C1F1", +"'o c #CBDBF3", +")o c #315696", +"!o c #424118", +"~o c #E9E00E", +"{o c #8C8718", +"]o c #908B1A", +"^o c #C2BA15", +"/o c #171D26", +"(o c #BCB51B", +"_o c #EDE410", +":o c #292B24", +"p c #1C1F1E", +",p c #63601F", +"'p c #BCB516", +")p c #BDB514", +"!p c #D6CD12", +"~p c #E5DC11", +"{p c #BDB51A", +"]p c #BDB516", +"^p c #BDB518", +"/p c #938D1A", +"(p c #A09A1C", +"_p c #C3BC17", +":p c #8B861D", +"

Q c #2A5092", +",Q c #00070E", +"'Q c #051938", +")Q c #071A3A", +"!Q c #061B3A", +"~Q c #092042", +"{Q c #0B2245", +"]Q c #071D43", +"^Q c #0C2347", +"/Q c #0A2246", +"(Q c #1C345F", +"_Q c #1F3762", +":Q c #1E3562", +"R c #11284E", +",R c #162E55", +"'R c #152D55", +")R c #1A335D", +"!R c #203763", +"~R c #1E3762", +"{R c #1F3D6D", +"]R c #173875", +"^R c #0C3374", +"/R c #0C3275", +"(R c #163773", +"_R c #BBCDE9", +":R c #8BB0E6", +"S c #0E264A", +",S c #152D53", +"'S c #0F254E", +")S c #183058", +"!S c #1E3864", +"~S c #213965", +"{S c #223A68", +"]S c #203966", +"^S c #233E6C", +"/S c #233D6C", +"(S c #223C6D", +"_S c #163A78", +":S c #103676", +"T c #143977", +",T c #0C3273", +"'T c #0E3377", +")T c #123573", +"!T c #A8BCDA", +"~T c #ABC9F1", +"{T c #86B2EE", +"]T c #5880C0", +"^T c #668FCF", +"/T c #88B0EE", +"(T c #D6E5F5", +"_T c #4567A6", +":T c #071E3F", +"U c #88B4F1", +",U c #547ABD", +"'U c #547CBF", +")U c #587EC2", +"!U c #5F87C7", +"~U c #90B6F0", +"{U c #C2D8F4", +"]U c #86A0CE", +"^U c #041539", +"/U c #03132C", +"(U c #061937", +"_U c #0B1F42", +":U c #162D54", +"V c #213A63", +",V c #203862", +"'V c #1D3660", +")V c #243C66", +"!V c #243B67", +"~V c #253D69", +"{V c #25406D", +"]V c #233E6E", +"^V c #203E6E", +"/V c #213F71", +"(V c #0E3474", +"_V c #0C3274", +":V c #8FA4C9", +"W c #04245F", +",W c #042253", +"'W c #010A15", +")W c #021530", +"!W c #071D3E", +"~W c #0E2447", +"{W c #0D2248", +"]W c #0F274B", +"^W c #12284D", +"/W c #11284D", +"(W c #13294F", +"_W c #152B50", +":W c #162E54", +"X c #0E244A", +",X c #12294E", +"'X c #142A51", +")X c #1A3157", +"!X c #1D335D", +"~X c #1F3B67", +"{X c #243E6D", +"]X c #1B3F78", +"^X c #123977", +"/X c #0D3275", +"(X c #6680B0", +"_X c #90B5EB", +":X c #97BDF2", +"Y c #072E71", +",Y c #10316F", +"'Y c #A5BDE1", +")Y c #7EA5E2", +"!Y c #93BAF0", +"~Y c #90B6F1", +"{Y c #92B9F3", +"]Y c #92B8F3", +"^Y c #93B8F2", +"/Y c #97BCF2", +"(Y c #8FB5F4", +"_Y c #7FA4DF", +":Y c #6D93D4", +"Z c #243D68", +",Z c #253D6B", +"'Z c #243E6A", +")Z c #233D6D", +"!Z c #0F3473", +"~Z c #113676", +"{Z c #093072", +"]Z c #5572A4", +"^Z c #8BB3EE", +"/Z c #82A7E2", +"(Z c #5B82C3", +"_Z c #5D84C7", +":Z c #537BBE", +"` c #233F6D", +",` c #153774", +"'` c #123775", +")` c #143878", +"!` c #113775", +"~` c #0D3373", +"{` c #0C3172", +"]` c #0A3072", +"^` c #0A3073", +"/` c #0D306F", +"(` c #A1B8DB", +"_` c #90B4EB", +":` c #89AEE8", +"<` c #8DB3EA", +"[` c #9FBFF2", +"}` c #9DBEF2", +"|` c #9BBDF2", +"1` c #95B9F3", +"2` c #7DA6E6", +"3` c #88B1F0", +"4` c #A5BCE2", +"5` c #030F21", +"6` c #061A37", +"7` c #0B2040", +"8` c #0E2344", +"9` c #142B50", +"0` c #172E54", +"a` c #152B53", +"b` c #1B3259", +"c` c #1F365D", +"d` c #1C345B", +"e` c #1B335A", +"f` c #253C66", +"g` c #233D6B", +"h` c #25406F", +"i` c #163875", +"j` c #133775", +"k` c #123674", +"l` c #0D3372", +"m` c #0F3676", +"n` c #0C3174", +"o` c #092F73", +"p` c #133472", +"q` c #ADC4E5", +"r` c #8BB2EA", +"s` c #8CB1EB", +"t` c #8BB2EB", +"u` c #9CBDF2", +"v` c #7AA1E0", +"w` c #6087C8", +"x` c #5D84C6", +"y` c #5980C3", +"z` c #AFC6EA", +"A` c #1A3F82", +"B` c #072D72", +"C` c #04142D", +"D` c #0C1F40", +"E` c #0D2142", +"F` c #102649", +"G` c #0D2346", +"H` c #142A4E", +"I` c #1D345A", +"J` c #1E355C", +"K` c #1E365D", +"L` c #213861", +"M` c #1F355F", +"N` c #223862", +"O` c #273F6C", +"P` c #243D6A", +"Q` c #26416E", +"R` c #274270", +"S` c #143875", +"T` c #25427B", +"U` c #8BB1EA", +"V` c #86ADE9", +"W` c #93B8EF", +"X` c #A3C2F2", +"Y` c #85AAE5", +"Z` c #648ACB", +"`` c #6289CA", +" . c #5C83C5", +". . c #658DCD", +"+ . c #7DA6E4", +"@ . c #04132E", +"# . c #061B3B", +"$ . c #11284A", +"% . c #172D53", +"& . c #182E55", +"* . c #1C3259", +"= . c #172D55", +"- . c #1E345C", +"; . c #1C325B", +"> . c #233A63", +", . c #253C68", +"' . c #243D67", +") . c #28406C", +"! . c #273F6A", +"~ . c #254070", +"{ . c #163975", +"] . c #103373", +"^ . c #0E3372", +"/ . c #082F70", +"( . c #3E5A8D", +"_ . c #97BAF0", +": . c #8CB3EC", +"< . c #A1C1F0", +"[ . c #96BBF0", +"} . c #93B8F1", +"| . c #6E94D5", +"1 . c #5C82C4", +"2 . c #7CA5E3", +"3 . c #A4C4F3", +"4 . c #3B5C99", +"5 . c #051633", +"6 . c #091C3F", +"7 . c #0E2345", +"8 . c #11274A", +"9 . c #0F2548", +"0 . c #12294B", +"a . c #172D52", +"b . c #183054", +"c . c #172E53", +"d . c #1A3057", +"e . c #213760", +"f . c #253C67", +"g . c #263D68", +"h . c #273E69", +"i . c #223B65", +"j . c #29406E", +"k . c #163876", +"l . c #143874", +"m . c #123574", +"n . c #093071", +"o . c #5772A2", +"p . c #9FC0F3", +"q . c #97BCF3", +"r . c #91B9F0", +"s . c #7AA1DD", +"t . c #749BDB", +"u . c #8CB3F0", +"v . c #4E70AA", +"w . c #01102C", +"x . c #061734", +"y . c #051734", +"z . c #041632", +"A . c #041432", +"B . c #0F2648", +"C . c #162B50", +"D . c #12274E", +"E . c #182E54", +"F . c #1C345A", +"G . c #223962", +"H . c #243B69", +"I . c #1D3B6A", +"J . c #173A75", +"K . c #153775", +"L . c #153874", +"M . c #143773", +"N . c #0F3675", +"O . c #728BB6", +"P . c #92B8EE", +"Q . c #95B9EF", +"R . c #A3C4F1", +"S . c #9EBFF2", +"T . c #9BBEF2", +"U . c #97BAF2", +"V . c #97BBF3", +"W . c #7CA3E0", +"X . c #779FDE", +"Y . c #6281B9", +"Z . c #0A1D3D", +"` . c #102447", +" .. c #102547", +"... c #102648", +"+.. c #11264B", +"@.. c #162B4F", +"#.. c #182E53", +"$.. c #192F58", +"%.. c #1A325A", +"&.. c #1D355C", +"*.. c #253D66", +"=.. c #253C6B", +"-.. c #26406C", +";.. c #253F6D", +">.. c #183C76", +",.. c #133774", +"'.. c #143676", +").. c #0E3272", +"!.. c #0C3271", +"~.. c #8FA6CD", +"{.. c #8CB3ED", +"].. c #A2C2F2", +"^.. c #9EBEF2", +"/.. c #7CA3E1", +"(.. c #7299DA", +"_.. c #7298D9", +":.. c #749CDB", +"<.. c #769FDE", +"[.. c #8AB2F0", +"}.. c #9FC1F2", +"|.. c #7C97C8", +"1.. c #0A2F73", +"2.. c #091E3F", +"3.. c #122648", +"4.. c #0E2243", +"5.. c #0C2446", +"6.. c #162D52", +"7.. c #172C54", +"8.. c #193055", +"9.. c #1F365E", +"0.. c #1E355D", +"a.. c #2A416D", +"b.. c #25406E", +"c.. c #133674", +"d.. c #0F3373", +"e.. c #092F70", +"f.. c #092F71", +"g.. c #0E306B", +"h.. c #9EB5DA", +"i.. c #91B6EF", +"j.. c #8EB5EF", +"k.. c #A3C2F1", +"l.. c #9CBEF3", +"m.. c #9CBDF3", +"n.. c #96BBF3", +"o.. c #92B9F0", +"p.. c #91B8F0", +"q.. c #94B9F0", +"r.. c #94B8F1", +"s.. c #7FA6E2", +"t.. c #79A0E0", +"u.. c #87AFEE", +"v.. c #8DAAD8", +"w.. c #092E72", +"x.. c #051E4D", +"y.. c #001028", +"z.. c #01122A", +"A.. c #011531", +"B.. c #061835", +"C.. c #0D2042", +"D.. c #0E2446", +"E.. c #1D335A", +"F.. c #213860", +"G.. c #20365F", +"H.. c #29416D", +"I.. c #25406C", +"J.. c #173975", +"K.. c #143775", +"L.. c #113474", +"M.. c #123676", +"N.. c #163572", +"O.. c #ADC5E8", +"P.. c #9CBEEF", +"Q.. c #90B6EF", +"R.. c #94B8EF", +"S.. c #A6C5F1", +"T.. c #80A6E3", +"U.. c #7EA7E4", +"V.. c #A9C8F3", +"W.. c #9EB7E1", +"X.. c #0C3071", +"Y.. c #011229", +"Z.. c #041633", +"`.. c #0E2548", +" +. c #0F2649", +".+. c #12294C", +"++. c #1A3055", +"@+. c #152C52", +"#+. c #162E53", +"$+. c #152C51", +"%+. c #1B3158", +"&+. c #283F69", +"*+. c #233B65", +"=+. c #26406D", +"-+. c #193C74", +";+. c #294479", +">+. c #9BBDF0", +",+. c #9EBEF3", +"'+. c #9BBCF2", +")+. c #96BAF3", +"!+. c #6F95D6", +"~+. c #7299D9", +"{+. c #698FD0", +"]+. c #79A0E1", +"^+. c #8FB5F0", +"/+. c #A8C0E7", +"(+. c #143678", +"_+. c #041631", +":+. c #0E2144", +"<+. c #112749", +"[+. c #0B2345", +"}+. c #11284B", +"|+. c #152B4F", +"1+. c #182D52", +"2+. c #152D52", +"3+. c #172F54", +"4+. c #162E52", +"5+. c #20375F", +"6+. c #1F355D", +"7+. c #223861", +"8+. c #273F68", +"9+. c #273E68", +"0+. c #1B3A69", +"a+. c #173974", +"b+. c #153773", +"c+. c #133773", +"d+. c #153875", +"e+. c #103474", +"f+. c #0C3170", +"g+. c #103473", +"h+. c #0D3271", +"i+. c #082E70", +"j+. c #0A3171", +"k+. c #435F91", +"l+. c #9CBDF0", +"m+. c #8FB4EF", +"n+. c #A9C6F1", +"o+. c #A4C3F2", +"p+. c #A0C0F3", +"q+. c #9DBFF2", +"r+. c #769DDB", +"s+. c #759CDD", +"t+. c #668CCD", +"u+. c #7096D7", +"v+. c #B4CBEF", +"w+. c #214283", +"x+. c #061833", +"y+. c #071938", +"z+. c #112548", +"A+. c #0D2547", +"B+. c #12274C", +"C+. c #152A4F", +"D+. c #183055", +"E+. c #182F54", +"F+. c #1A3158", +"G+. c #263D66", +"H+. c #28406A", +"I+. c #29406A", +"J+. c #2B426E", +"K+. c #223D69", +"L+. c #153872", +"M+. c #163874", +"N+. c #143673", +"O+. c #113573", +"P+. c #0B3170", +"Q+. c #0B3272", +"R+. c #647FAE", +"S+. c #9DBDF0", +"T+. c #A9C6F2", +"U+. c #A5C4F3", +"V+. c #9EBFF3", +"W+. c #98BAF1", +"X+. c #96BAEF", +"Y+. c #95BAEF", +"Z+. c #5E84C5", +"`+. c #7FA8E7", +" @. c #355591", +".@. c #051632", +"+@. c #0B1F3F", +"@@. c #0F2245", +"#@. c #122649", +"$@. c #102346", +"%@. c #0D2244", +"&@. c #0D2447", +"*@. c #192E53", +"=@. c #162C50", +"-@. c #20365D", +";@. c #1E345D", +">@. c #1F375E", +",@. c #233963", +"'@. c #243A64", +")@. c #183B74", +"!@. c #153873", +"~@. c #0E3375", +"{@. c #879CC0", +"]@. c #9EBFEF", +"^@. c #9FBFEF", +"/@. c #96B9EF", +"(@. c #9CBDF1", +"_@. c #84ACEB", +":@. c #C0D5F3", +"<@. c #4E6EA9", +"[@. c #04235C", +"}@. c #021C45", +"|@. c #0A1E3D", +"1@. c #0A1E3E", +"2@. c #0A1F3F", +"3@. c #0C2040", +"4@. c #0C2243", +"5@. c #10254A", +"6@. c #1B3156", +"7@. c #1E365E", +"8@. c #253B65", +"9@. c #223B64", +"0@. c #273F69", +"a@. c #233C68", +"b@. c #263F6C", +"c@. c #1A3971", +"d@. c #163873", +"e@. c #163974", +"f@. c #143774", +"g@. c #113674", +"h@. c #113574", +"i@. c #0B3171", +"j@. c #0D3270", +"k@. c #99AFD3", +"l@. c #9FBFF0", +"m@. c #9BBCF0", +"n@. c #A5C3F2", +"o@. c #98BCF0", +"p@. c #9DBEF0", +"q@. c #688ECF", +"r@. c #82A9E9", +"s@. c #85ACE8", +"t@. c #9EC1F1", +"u@. c #6A88BD", +"v@. c #051733", +"w@. c #091E3D", +"x@. c #0C1F41", +"y@. c #0E2244", +"z@. c #102749", +"A@. c #162D4F", +"B@. c #13284C", +"C@. c #1D3359", +"D@. c #1C3359", +"E@. c #192F57", +"F@. c #21395F", +"G@. c #274069", +"H@. c #29426B", +"I@. c #263E69", +"J@. c #183873", +"K@. c #143572", +"L@. c #163774", +"M@. c #0A2F72", +"N@. c #103271", +"O@. c #9FBEF1", +"P@. c #A6C5F3", +"Q@. c #A6C4F2", +"R@. c #9DBDF2", +"S@. c #9BBDF3", +"T@. c #99BBF2", +"U@. c #9EBEF0", +"V@. c #79A1DF", +"W@. c #80A7E2", +"X@. c #B0CAF1", +"Y@. c #849FCC", +"Z@. c #031539", +"`@. c #010B18", +" #. c #04132D", +".#. c #152C4E", +"+#. c #1F355C", +"@#. c #1F365C", +"##. c #213960", +"$#. c #28416B", +"%#. c #283F6C", +"&#. c #2A426E", +"*#. c #264170", +"=#. c #113473", +"-#. c #113373", +";#. c #0F3573", +">#. c #103372", +",#. c #0B3073", +"'#. c #1E3B75", +")#. c #B0CAEE", +"!#. c #A6C5F0", +"~#. c #A0C0F0", +"{#. c #99BAF0", +"]#. c #9BBCF1", +"^#. c #7DA4E2", +"/#. c #97B0DB", +"(#. c #071834", +"_#. c #061837", +":#. c #061735", +"<#. c #081D3C", +"[#. c #102548", +"}#. c #182E51", +"|#. c #1D335B", +"1#. c #223860", +"2#. c #193465", +"3#. c #163972", +"4#. c #123672", +"5#. c #0A3070", +"6#. c #072E6F", +"7#. c #2D487C", +"8#. c #9BBEF0", +"9#. c #A0BFEF", +"0#. c #99BBF0", +"a#. c #AAC7F2", +"b#. c #9DBDF3", +"c#. c #9BBDF1", +"d#. c #6F95D5", +"e#. c #668DCF", +"f#. c #779DDD", +"g#. c #86ADEA", +"h#. c #81AAE9", +"i#. c #000810", +"j#. c #061736", +"k#. c #071A38", +"l#. c #0F2447", +"m#. c #0E2647", +"n#. c #172D50", +"o#. c #1E345A", +"p#. c #1E345B", +"q#. c #21385F", +"r#. c #1F355E", +"s#. c #123572", +"t#. c #0F3474", +"u#. c #082E6F", +"v#. c #072E70", +"w#. c #4A6699", +"x#. c #9DBDEF", +"y#. c #94B8EE", +"z#. c #ABC7F2", +"A#. c #9EBEF1", +"B#. c #A4C2F1", +"C#. c #5C83C6", +"D#. c #88AFEE", +"E#. c #AFC6EB", +"F#. c #1A3D82", +"G#. c #031229", +"H#. c #041733", +"I#. c #071937", +"J#. c #0F2243", +"K#. c #112447", +"L#. c #10274A", +"M#. c #13294C", +"N#. c #132A4C", +"O#. c #1F375F", +"P#. c #1E345E", +"Q#. c #243B64", +"R#. c #293F69", +"S#. c #283F6B", +"T#. c #263F6B", +"U#. c #26416D", +"V#. c #133672", +"W#. c #0E3472", +"X#. c #0C3372", +"Y#. c #0E3271", +"Z#. c #0A306F", +"`#. c #0B3071", +" $. c #7088B1", +".$. c #A9C6F0", +"+$. c #A2C1EF", +"@$. c #A0C0EF", +"#$. c #A9C6F3", +"$$. c #9EBFF0", +"%$. c #7AA2E2", +"&$. c #85ADEC", +"*$. c #2B4C8C", +"=$. c #01060A", +"-$. c #031733", +";$. c #051936", +">$. c #081C3B", +",$. c #102444", +"'$. c #0D2043", +")$. c #12274A", +"!$. c #13294B", +"~$. c #1B3057", +"{$. c #1B3157", +"]$. c #21375E", +"^$. c #263C65", +"/$. c #253B64", +"($. c #1D3C6B", +"_$. c #133572", +":$. c #133673", +"<$. c #153776", +"[$. c #0F3372", +"}$. c #082F6F", +"|$. c #0E3371", +"1$. c #869BBF", +"2$. c #A3C4F0", +"3$. c #ABC7F0", +"4$. c #A1C0EF", +"5$. c #688FD1", +"6$. c #83ABEB", +"7$. c #3C5E9B", +"8$. c #04152F", +"9$. c #091D3C", +"0$. c #0B1E3F", +"a$. c #122548", +"b$. c #132A4D", +"c$. c #132A4B", +"d$. c #162B51", +"e$. c #1A2F55", +"f$. c #1E355B", +"g$. c #1E365C", +"h$. c #223960", +"i$. c #21375F", +"j$. c #253B66", +"k$. c #283E68", +"l$. c #163775", +"m$. c #113471", +"n$. c #103472", +"o$. c #0F3472", +"p$. c #0F3272", +"q$. c #97AFD6", +"r$. c #98BAF0", +"s$. c #86ABE7", +"t$. c #9FBDED", +"u$. c #A8C6F3", +"v$. c #9EBEED", +"w$. c #5980C1", +"x$. c #95BBF0", +"y$. c #ABC9F2", +"z$. c #5173AE", +"A$. c #05152F", +"B$. c #071836", +"C$. c #0F2246", +"D$. c #182E52", +"E$. c #1D3358", +"F$. c #233960", +"G$. c #22385F", +"H$. c #233962", +"I$. c #233961", +"J$. c #263C66", +"K$. c #253E68", +"L$. c #223C6B", +"M$. c #143672", +"N$. c #153470", +"O$. c #AAC2E5", +"P$. c #A4C4F0", +"Q$. c #A1C1EF", +"R$. c #85ACE7", +"S$. c #87ACE3", +"T$. c #ABC7F1", +"U$. c #9FC1F0", +"V$. c #BED4F3", +"W$. c #081A3B", +"X$. c #0E2145", +"Y$. c #0F2547", +"Z$. c #0D2546", +"`$. c #142A4D", +" %. c #1C3257", +".%. c #1C3258", +"+%. c #21385E", +"@%. c #2A436C", +"#%. c #1D3A69", +"$%. c #173871", +"%%. c #173973", +"&%. c #113572", +"*%. c #103573", +"=%. c #0F3171", +"-%. c #092F6E", +";%. c #082D70", +">%. c #072D6E", +",%. c #1E3B72", +"'%. c #B1CAEF", +")%. c #AAC7EF", +"!%. c #A3C2F0", +"~%. c #A5C4F0", +"{%. c #92B6EF", +"]%. c #82A9E4", +"^%. c #769BD8", +"/%. c #A8C7F3", +"(%. c #A9C6F4", +"_%. c #5E85C8", +":%. c #8BB3F0", +"<%. c #819DCD", +"[%. c #071839", +"}%. c #0C2142", +"|%. c #11264A", +"1%. c #172C51", +"2%. c #192E54", +"3%. c #1F375D", +"4%. c #253C63", +"5%. c #273E67", +"6%. c #223964", +"7%. c #263F69", +"8%. c #263E67", +"9%. c #223E6A", +"0%. c #143872", +"a%. c #143772", +"b%. c #123472", +"c%. c #123673", +"d%. c #103272", +"e%. c #0C3171", +"f%. c #062C6C", +"g%. c #082E72", +"h%. c #445F95", +"i%. c #99BCEF", +"j%. c #8BB2EC", +"k%. c #80A6E2", +"l%. c #7196D4", +"m%. c #9FBCEA", +"n%. c #A1C2F0", +"o%. c #A2C1F0", +"p%. c #A0BEED", +"q%. c #587EC1", +"r%. c #5F85C7", +"s%. c #91ADDA", +"t%. c #061834", +"u%. c #071837", +"v%. c #152B4D", +"w%. c #152C4F", +"x%. c #152A4E", +"y%. c #20375E", +"z%. c #153771", +"A%. c #113470", +"B%. c #123474", +"C%. c #0D3272", +"D%. c #062D70", +"E%. c #5D76A5", +"F%. c #8FB7F0", +"G%. c #9ABCEF", +"H%. c #89B0EA", +"I%. c #7CA3DF", +"J%. c #7499D7", +"K%. c #8BACE2", +"L%. c #ADC8F2", +"M%. c #A9C7F3", +"N%. c #A7C7F2", +"O%. c #A3BDE3", +"P%. c #051530", +"Q%. c #061A38", +"R%. c #0C1F3F", +"S%. c #12284A", +"T%. c #152A4D", +"U%. c #1A2F54", +"V%. c #223961", +"W%. c #243A62", +"X%. c #253C65", +"Y%. c #143674", +"Z%. c #0D3171", +"`%. c #0B3070", +" &. c #798EB1", +".&. c #95B9EE", +"+&. c #A3C1EF", +"@&. c #82AAE5", +"#&. c #7BA2DE", +"$&. c #7B9FDD", +"%&. c #779BD6", +"&&. c #AFCBF3", +"*&. c #9DBCEC", +"=&. c #A2C3F3", +"-&. c #ADC6EE", +";&. c #1C3E80", +">&. c #062E70", +",&. c #051731", +"'&. c #04142E", +")&. c #0C1E3D", +"!&. c #0D2040", +"~&. c #091E3E", +"{&. c #0B203F", +"]&. c #0F2345", +"^&. c #112648", +"/&. c #172D51", +"(&. c #20365E", +"_&. c #243B63", +":&. c #092F6F", +"<&. c #072D6F", +"[&. c #0D316F", +"}&. c #89A0C7", +"|&. c #97B9EF", +"1&. c #95B7ED", +"2&. c #6E94D2", +"3&. c #A8C5F2", +"4&. c #9BBAEB", +"5&. c #5C84C6", +"6&. c #6087CA", +"7&. c #30518F", +"8&. c #081B38", +"9&. c #0F2344", +"0&. c #0C2140", +"a&. c #102445", +"b&. c #132749", +"c&. c #142A4C", +"d&. c #1A3056", +"e&. c #22375E", +"f&. c #263C64", +"g&. c #27406B", +"h&. c #1E396B", +"i&. c #163772", +"j&. c #143771", +"k&. c #123471", +"l&. c #113472", +"m&. c #103371", +"n&. c #0D3170", +"o&. c #082E6E", +"p&. c #0D2E67", +"q&. c #9EB6DA", +"r&. c #96B9EE", +"s&. c #7CA3DE", +"t&. c #769DD9", +"u&. c #7399D7", +"v&. c #6C92D0", +"w&. c #9FBCE8", +"x&. c #A6C4F0", +"y&. c #A6C6F1", +"z&. c #94B5E8", +"A&. c #5D82C4", +"B&. c #5C82C5", +"C&. c #6086C8", +"D&. c #7A9FDA", +"E&. c #7299D8", +"F&. c #4868A3", +"G&. c #0B1E3E", +"H&. c #091D3D", +"I&. c #162C4F", +"J&. c #14294D", +"K&. c #172E50", +"L&. c #1B3055", +"M&. c #243A63", +"N&. c #29416A", +"O&. c #243C65", +"P&. c #2C436F", +"Q&. c #0E3270", +"R&. c #0E3171", +"S&. c #0B306F", +"T&. c #13326B", +"U&. c #ABC3E4", +"V&. c #8DB4ED", +"W&. c #99BBEF", +"X&. c #94B7EE", +"Y&. c #7AA1DC", +"Z&. c #749CD8", +"`&. c #7096D4", +" *. c #6D93D1", +".*. c #8CAEE3", +"+*. c #8FB0E7", +"@*. c #97B4E6", +"#*. c #ACC6ED", +"$*. c #7B9DD8", +"%*. c #5D85C7", +"&*. c #90B0E5", +"**. c #8AB2EE", +"=*. c #6583B9", +"-*. c #081937", +";*. c #091A38", +">*. c #071936", +",*. c #081B3A", +"'*. c #0A1F3E", +")*. c #122546", +"!*. c #112649", +"~*. c #13284A", +"{*. c #192F51", +"]*. c #1A2F56", +"^*. c #243B62", +"/*. c #293F6A", +"(*. c #284370", +"_*. c #243E6E", +":*. c #1A396B", +"<*. c #15366F", +"[*. c #133671", +"}*. c #153772", +"|*. c #133571", +"1*. c #153673", +"2*. c #133574", +"3*. c #09306F", +"4*. c #082D71", +"5*. c #254075", +"6*. c #8AB0EC", +"7*. c #90B4EA", +"8*. c #A0BFF0", +"9*. c #7299D6", +"0*. c #6B91D0", +"a*. c #799CD7", +"b*. c #B8CFF1", +"c*. c #A8C7F1", +"d*. c #A7C7F1", +"e*. c #AAC7F0", +"f*. c #AFC9F1", +"g*. c #92B3E9", +"h*. c #A7C1EA", +"i*. c #BED3F2", +"j*. c #97B5E4", +"k*. c #4A71B5", +"l*. c #6A90D2", +"m*. c #030D1D", +"n*. c #061631", +"o*. c #081936", +"p*. c #081A38", +"q*. c #0D2041", +"r*. c #122749", +"s*. c #14284B", +"t*. c #172D4F", +"u*. c #192D51", +"v*. c #162C4E", +"w*. c #1C3156", +"x*. c #1F355B", +"y*. c #273D68", +"z*. c #273E6B", +"A*. c #133670", +"B*. c #12356F", +"C*. c #0A2F6E", +"D*. c #425D8F", +"E*. c #88AEE8", +"F*. c #6F96D2", +"G*. c #698FCD", +"H*. c #6B91CF", +"I*. c #688ECB", +"J*. c #B1C9EF", +"K*. c #8FB1E7", +"L*. c #6288CA", +"M*. c #6A8FCF", +"N*. c #84A5DE", +"O*. c #5B81C4", +"P*. c #4C73B5", +"Q*. c #4369AC", +"R*. c #87A3D2", +"S*. c #052052", +"T*. c #02070C", +"U*. c #02132B", +"V*. c #142B4E", +"W*. c #182F51", +"X*. c #20365C", +"Y*. c #20385E", +"Z*. c #233A62", +"`*. c #27406A", +" =. c #243D66", +".=. c #0F3271", +"+=. c #082E6D", +"@=. c #062D6E", +"#=. c #0A2F71", +"$=. c #617AA6", +"%=. c #89B1EA", +"&=. c #81A7E3", +"*=. c #83A9E5", +"==. c #8BB0E9", +"-=. c #8DB3EC", +";=. c #779ED9", +">=. c #6A90CE", +",=. c #698ECD", +"'=. c #A3BEE8", +")=. c #B8CFF3", +"!=. c #A9C7F0", +"~=. c #ACC9F0", +"{=. c #B2CBF1", +"]=. c #8BAEE5", +"^=. c #5E84C7", +"/=. c #9AB5DE", +"(=. c #081B39", +"_=. c #0E2141", +":=. c #102446", +"<=. c #13274A", +"[=. c #152B4E", +"}=. c #172E4F", +"|=. c #182D51", +"1=. c #20375D", +"2=. c #253B63", +"3=. c #223C68", +"4=. c #1B396A", +"5=. c #183B73", +"6=. c #173872", +"7=. c #133471", +"8=. c #103470", +"9=. c #123571", +"0=. c #103471", +"a=. c #0E3170", +"b=. c #7B90B7", +"c=. c #A2C1EE", +"d=. c #84ABE5", +"e=. c #7AA0DC", +"f=. c #92B6EE", +"g=. c #85ACE6", +"h=. c #769ED9", +"i=. c #7299D5", +"j=. c #688ECC", +"k=. c #87A8DC", +"l=. c #B2CAF2", +"m=. c #81A5DF", +"n=. c #5E86C8", +"o=. c #AAC2E7", +"p=. c #051732", +"q=. c #0C1F3E", +"r=. c #14284A", +"s=. c #152C4D", +"t=. c #182D50", +"u=. c #1B3054", +"v=. c #22385E", +"w=. c #21375D", +"x=. c #2A416B", +"y=. c #233C66", +"z=. c #1A3A6C", +"A=. c #143671", +"B=. c #123370", +"C=. c #113571", +"D=. c #0F3370", +"E=. c #0C316F", +"F=. c #0C306F", +"G=. c #0A2C69", +"H=. c #6F96D1", +"I=. c #789ED9", +"J=. c #6A8FCD", +"K=. c #8AB1EB", +"L=. c #7EA4DF", +"M=. c #7299D4", +"N=. c #6C93CF", +"O=. c #6D93CF", +"P=. c #6B91CE", +"Q=. c #7499D5", +"R=. c #B6CDF3", +"S=. c #B4CCF2", +"T=. c #AFCCF2", +"U=. c #7CA1DD", +"V=. c #6288C9", +"W=. c #4269AE", +"X=. c #7DA6E3", +"Y=. c #BDD5F3", +"Z=. c #AFC8ED", +"`=. c #214284", +" -. c #000817", +".-. c #061531", +"+-. c #071A39", +"@-. c #071B3A", +"#-. c #142B4D", +"$-. c #193052", +"%-. c #192F53", +"&-. c #1E3459", +"*-. c #253A61", +"=-. c #21365E", +"--. c #283F68", +";-. c #153870", +">-. c #143670", +",-. c #153973", +"'-. c #123470", +")-. c #113370", +"!-. c #0C3270", +"~-. c #0D3371", +"{-. c #0A306E", +"]-. c #0B2C6A", +"^-. c #99B3D9", +"/-. c #88AEE7", +"(-. c #729AD4", +"_-. c #658BC8", +":-. c #7398D4", +"<-. c #6287C5", +"[-. c #84ABE6", +"}-. c #749BD6", +"|-. c #7197D4", +"1-. c #6D94D1", +"2-. c #6F95D2", +"3-. c #6E93D0", +"4-. c #6A91CD", +"5-. c #6E93D1", +"6-. c #A5C0EA", +"7-. c #7FA4DE", +"8-. c #6C90D0", +"9-. c #6086C9", +"0-. c #BBD4F3", +"a-. c #365794", +"b-. c #071A37", +"c-. c #091A3B", +"d-. c #0D1F3F", +"e-. c #0B1F3E", +"f-. c #112547", +"g-. c #112849", +"h-. c #1A3153", +"i-. c #172C4E", +"j-. c #1D3258", +"k-. c #1E3359", +"l-. c #243A61", +"m-. c #15376F", +"n-. c #14356E", +"o-. c #143770", +"p-. c #0F326F", +"q-. c #0B316F", +"r-. c #0D3070", +"s-. c #0B2E6E", +"t-. c #13316D", +"u-. c #7AA1DB", +"v-. c #5F84C2", +"w-. c #6A8ECC", +"x-. c #5D82C0", +"y-. c #6D94D2", +"z-. c #84A8E2", +"A-. c #9ABAEE", +"B-. c #739AD7", +"C-. c #92B2E2", +"D-. c #B7CEF2", +"E-. c #B5CDF1", +"F-. c #769CDA", +"G-. c #B5CFF4", +"H-. c #506FAA", +"I-. c #071835", +"J-. c #081939", +"K-. c #081A3A", +"L-. c #122647", +"M-. c #15294B", +"N-. c #13284B", +"O-. c #152A4C", +"P-. c #192E51", +"Q-. c #192E52", +"R-. c #23395F", +"S-. c #22395F", +"T-. c #13366E", +"U-. c #16356F", +"V-. c #153670", +"W-. c #103370", +"X-. c #072D6C", +"Y-. c #254074", +"Z-. c #97B9EC", +"`-. c #759BD7", +" ;. c #6289C6", +".;. c #5B81BF", +"+;. c #668BC9", +"@;. c #5B7FBE", +"#;. c #6C92CE", +"$;. c #749BD7", +"%;. c #6B93D0", +"&;. c #6A91CE", +"*;. c #678DCB", +"=;. c #6A90CD", +"-;. c #6D93D0", +";;. c #6F94D1", +">;. c #B7CEF1", +",;. c #B9CFF2", +"';. c #6A91D3", +");. c #5B83C5", +"!;. c #6482B8", +"~;. c #000913", +"{;. c #010C1A", +"];. c #071B39", +"^;. c #0F2242", +"/;. c #0E2342", +"(;. c #172C50", +"_;. c #182C50", +":;. c #1F345B", +"<;. c #213761", +"[;. c #233B64", +"};. c #233C67", +"|;. c #28406E", +"1;. c #153671", +"2;. c #113371", +"3;. c #062C6D", +"4;. c #062D6D", +"5;. c #385283", +"6;. c #93B6EB", +"7;. c #6E94D0", +"8;. c #6086C4", +"9;. c #5A80BE", +"0;. c #5F85C3", +"a;. c #587DBC", +"b;. c #678CCA", +"c;. c #638AC7", +"d;. c #7399D6", +"e;. c #658BC9", +"f;. c #658CCA", +"g;. c #A6C1EC", +"h;. c #B7CEF3", +"i;. c #B6CDF2", +"j;. c #4B71B5", +"k;. c #5078B9", +"l;. c #7692C3", +"m;. c #061732", +"n;. c #0D2140", +"o;. c #112546", +"p;. c #0F2749", +"q;. c #162C4D", +"r;. c #1A2E53", +"s;. c #1C3055", +"t;. c #203459", +"u;. c #1D3259", +"v;. c #1D3965", +"w;. c #213867", +"x;. c #13356F", +"y;. c #13346E", +"z;. c #12346F", +"A;. c #072D6D", +"B;. c #446197", +"C;. c #85A9E1", +"D;. c #6389C7", +"E;. c #5C83C0", +"F;. c #557BB9", +"G;. c #5D83C1", +"H;. c #5479B8", +"I;. c #6589C7", +"J;. c #6389C6", +"K;. c #779DD8", +"L;. c #6F95D3", +"M;. c #88A9DE", +"N;. c #BFD3F2", +"O;. c #ADCBF2", +"P;. c #B1CDF1", +"Q;. c #6990D2", +"R;. c #A9C8F1", +"S;. c #B1CDF3", +"T;. c #84A0CF", +"U;. c #091B39", +"V;. c #102443", +"W;. c #112545", +"X;. c #162A4B", +"Y;. c #172B4E", +"Z;. c #1B2E51", +"`;. c #1E335B", +" >. c #21375C", +".>. c #233A61", +"+>. c #253B62", +"@>. c #2A416A", +"#>. c #253B67", +"$>. c #263D6A", +"%>. c #16356E", +"&>. c #14376F", +"*>. c #15356F", +"=>. c #133570", +"->. c #10326F", +";>. c #0C2F6F", +">>. c #09306E", +",>. c #082A68", +"'>. c #5F7FB4", +")>. c #5379B7", +"!>. c #4F74B2", +"~>. c #5278B6", +"{>. c #4268A6", +"]>. c #799BD4", +"^>. c #7399D4", +"/>. c #A3BEE7", +"(>. c #668CC9", +"_>. c #668CCA", +":>. c #BAD0F1", +"<>. c #BAD0F2", +"[>. c #4E74B7", +"}>. c #688ECE", +"|>. c #7FA6E6", +"1>. c #ACCAF2", +"2>. c #93AFDB", +"3>. c #082A67", +"4>. c #061733", +"5>. c #132747", +"6>. c #102344", +"7>. c #162A4D", +"8>. c #172C4F", +"9>. c #1A3052", +"0>. c #182E50", +"a>. c #1B2F54", +"b>. c #223A60", +"c>. c #273D66", +"d>. c #13346D", +"e>. c #163770", +"f>. c #0F316F", +"g>. c #0F336F", +"h>. c #0E326E", +"i>. c #0C3070", +"j>. c #072E6D", +"k>. c #082A65", +"l>. c #6F90C7", +"m>. c #7096D1", +"n>. c #597FBD", +"o>. c #4B71AF", +"p>. c #496FAE", +"q>. c #4268A7", +"r>. c #3B619F", +"s>. c #4066A5", +"t>. c #698DC9", +"u>. c #C6D9F2", +"v>. c #A3BDE6", +"w>. c #658CC9", +"x>. c #A2BEE9", +"y>. c #AECCF2", +"z>. c #4068AA", +"A>. c #5379BC", +"B>. c #7CA4E4", +"C>. c #9DBAE4", +"D>. c #11306D", +"E>. c #051937", +"F>. c #091C3A", +"G>. c #0E2143", +"H>. c #132748", +"I>. c #1B2F52", +"J>. c #20355A", +"K>. c #1C3158", +"L>. c #1F355A", +"M>. c #273D64", +"N>. c #20355D", +"O>. c #294069", +"P>. c #253F6B", +"Q>. c #153570", +"R>. c #123473", +"S>. c #10336F", +"T>. c #0F326E", +"U>. c #082F6E", +"V>. c #072E6E", +"W>. c #092A64", +"X>. c #7296D0", +"Y>. c #6990CB", +"Z>. c #567CBB", +"`>. c #4D73B2", +" ,. c #476DAC", +".,. c #335999", +"+,. c #759CD6", +"@,. c #6B92CE", +"#,. c #678DCA", +"$,. c #759BD8", +"%,. c #85A9E0", +"&,. c #A2C1ED", +"*,. c #658CCC", +"=,. c #5A80C3", +"-,. c #3E66A9", +";,. c #6890D0", +">,. c #A5C6F2", +",,. c #A1BFEB", +"',. c #1D3B73", +"),. c #031127", +"!,. c #041630", +"~,. c #041732", +"{,. c #091B3B", +"],. c #0B1E3D", +"^,. c #0E2242", +"/,. c #0F2647", +"(,. c #12294A", +"_,. c #20365B", +":,. c #2B426C", +"<,. c #283F6A", +"[,. c #233964", +"},. c #1D386A", +"|,. c #193767", +"1,. c #173670", +"2,. c #173671", +"3,. c #163671", +"4,. c #123570", +"5,. c #0E326F", +"6,. c #0B2F6E", +"7,. c #0A2E6E", +"8,. c #072C6F", +"9,. c #102F68", +"0,. c #749AD5", +"a,. c #648BC7", +"b,. c #466CAA", +"c,. c #345999", +"d,. c #294E8F", +"e,. c #5C82C0", +"f,. c #6990CD", +"g,. c #7097D4", +"h,. c #AFC8EE", +"i,. c #BCD2F2", +"j,. c #92B3E7", +"k,. c #6088C8", +"l,. c #335087", +"m,. c #041833", +"n,. c #0D2242", +"o,. c #142B4C", +"p,. c #263C63", +"q,. c #284069", +"r,. c #223B66", +"s,. c #273F6D", +"t,. c #143570", +"u,. c #10336E", +"v,. c #11346E", +"w,. c #0D2F6F", +"x,. c #062C6B", +"y,. c #213D73", +"z,. c #779CD9", +"A,. c #5B81BE", +"B,. c #5076B4", +"C,. c #486EAD", +"D,. c #446AA9", +"E,. c #3A609F", +"F,. c #2D5493", +"G,. c #254B8A", +"H,. c #4B70AE", +"I,. c #648AC9", +"J,. c #799ED9", +"K,. c #8DADE0", +"L,. c #B9CFF1", +"M,. c #88ABE2", +"N,. c #678DCE", +"O,. c #456399", +"P,. c #051834", +"Q,. c #051636", +"R,. c #0A1D3C", +"S,. c #0D203F", +"T,. c #15294C", +"U,. c #182C4F", +"V,. c #233A60", +"W,. c #20385F", +"X,. c #283E67", +"Y,. c #11346F", +"Z,. c #0E316D", +"`,. c #0A2D6D", +" '. c #436298", +".'. c #4D73B1", +"+'. c #3F65A3", +"@'. c #3B61A0", +"#'. c #355B9A", +"$'. c #29508F", +"%'. c #264D8C", +"&'. c #4064A2", +"*'. c #6389C8", +"='. c #678ECC", +"-'. c #7398D6", +";'. c #789DD8", +">'. c #83A8E2", +",'. c #385FA5", +"''. c #5674A9", +")'. c #14294C", +"!'. c #162B4C", +"~'. c #1E3257", +"{'. c #1B3056", +"]'. c #172E59", +"^'. c #19386A", +"/'. c #15346E", +"('. c #13336D", +"_'. c #14366E", +":'. c #0F316E", +"<'. c #0E316F", +"['. c #0B2F6F", +"}'. c #092E6E", +"|'. c #062D6C", +"1'. c #072F6E", +"2'. c #052B6A", +"3'. c #052C6C", +"4'. c #062A68", +"5'. c #5272A9", +"6'. c #698FCB", +"7'. c #547AB9", +"8'. c #3D63A2", +"9'. c #385E9D", +"0'. c #2B5292", +"a'. c #244A8B", +"b'. c #335796", +"c'. c #658BCA", +"d'. c #648BC9", +"e'. c #648BC8", +"f'. c #688FCB", +"g'. c #7097D3", +"h'. c #82A7E3", +"i'. c #567CBF", +"j'. c #5A82C4", +"k'. c #466CAF", +"l'. c #4A70B2", +"m'. c #77A0DF", +"n'. c #6C88B9", +"o'. c #091A39", +"p'. c #0A1B3B", +"q'. c #0E2343", +"r'. c #192D4F", +"s'. c #14294B", +"t'. c #192D50", +"u'. c #172E51", +"v'. c #162A4E", +"w'. c #182C51", +"x'. c #1E3358", +"y'. c #1A2F57", +"z'. c #23385F", +"A'. c #2B416A", +"B'. c #14356D", +"C'. c #12346C", +"D'. c #0C306E", +"E'. c #0B2F6D", +"F'. c #052C6B", +"G'. c #062D6B", +"H'. c #072C6D", +"I'. c #5376AE", +"J'. c #5D84C0", +"K'. c #5177B5", +"L'. c #335998", +"M'. c #305695", +"N'. c #2E5495", +"O'. c #254B8B", +"P'. c #2E5493", +"Q'. c #557AB8", +"R'. c #668CCB", +"S'. c #6288C6", +"T'. c #7096D3", +"U'. c #94B2E0", +"V'. c #5780C2", +"W'. c #5B84C6", +"X'. c #4167AA", +"Y'. c #4168AA", +"Z'. c #7795CA", +"`'. c #000C1D", +" ). c #03142D", +".). c #081935", +"+). c #081A39", +"@). c #0A203F", +"#). c #0C2141", +"$). c #0D2241", +"%). c #102544", +"&). c #14294A", +"*). c #1A2F52", +"=). c #1D3055", +"-). c #1D3257", +";). c #1F3459", +">). c #253E67", +",). c #14346E", +"'). c #13346F", +")). c #10336D", +"!). c #0F326D", +"~). c #0E306D", +"{). c #072A66", +"]). c #5B80BA", +"^). c #557CB8", +"/). c #4369A7", +"(). c #395F9E", +"_). c #325897", +":). c #2C5292", +"<). c #2A5091", +"[). c #224889", +"}). c #264E8C", +"|). c #678DCC", +"1). c #759BD5", +"2). c #5981C4", +"3). c #91B5EE", +"4). c #81A1D6", +"5). c #062254", +"6). c #0B1D3D", +"7). c #0C203F", +"8). c #0F2343", +"9). c #162A4C", +"0). c #283E65", +"a). c #273E66", +"b). c #15366D", +"c). c #13336C", +"d). c #15346D", +"e). c #11336F", +"f). c #0F3270", +"g). c #082D6C", +"h). c #0E2E68", +"i). c #658AC6", +"j). c #5177B4", +"k). c #3F65A4", +"l). c #2F5594", +"m). c #284E8E", +"n). c #2F5494", +"o). c #284F8D", +"p). c #395E9C", +"q). c #7399D5", +"r). c #749AD6", +"s). c #6187C5", +"t). c #668DCB", +"u). c #A3BFE9", +"v). c #6289C9", +"w). c #5F85C6", +"x). c #91B5ED", +"y). c #A6C3F1", +"z). c #95B2E2", +"A). c #102C61", +"B). c #051833", +"C). c #081A36", +"D). c #071737", +"E). c #122849", +"F). c #172A4D", +"G). c #22365C", +"H). c #1D3461", +"I). c #1E3564", +"J). c #223867", +"K). c #17366E", +"L). c #13356D", +"M). c #12336E", +"N). c #133771", +"O). c #11356F", +"P). c #0A2F6D", +"Q). c #0A2E6D", +"R). c #082F6D", +"S). c #072F6D", +"T). c #062C6E", +"U). c #678DC9", +"V). c #4C71AF", +"W). c #3E64A3", +"X). c #2D5392", +"Y). c #2B5191", +"Z). c #295091", +"`). c #3A5D9B", +" !. c #4E72AF", +".!. c #234A8A", +"+!. c #274C8C", +"@!. c #5E83C2", +"#!. c #6188C6", +"$!. c #5E84C2", +"%!. c #5D85C2", +"&!. c #6187C6", +"*!. c #7297D4", +"=!. c #88ACE3", +"-!. c #638AC8", +";!. c #BFD4F2", +">!. c #AEC8F0", +",!. c #5D86C7", +"'!. c #5E87C8", +")!. c #89AEE9", +"!!. c #90B2E8", +"~!. c #1A3569", +"{!. c #071736", +"]!. c #081837", +"^!. c #0C1E3F", +"/!. c #0D2141", +"(!. c #1F3358", +"_!. c #18335F", +":!. c #14356F", +"~. c #082D6E", +",~. c #052863", +"'~. c #5171A8", +")~. c #5276B4", +"!~. c #4166A5", +"~~. c #3C60A0", +"{~. c #294F8E", +"]~. c #284F8E", +"^~. c #234A8B", +"/~. c #28508E", +"(~. c #2D5393", +"_~. c #294F90", +":~. c #294E8C", +"<~. c #567CBA", +"[~. c #7397D1", +"}~. c #6B91CB", +"|~. c #85ABE5", +"1~. c #7298D4", +"2~. c #5F85C4", +"3~. c #5E85C2", +"4~. c #98B6E5", +"5~. c #90B0E6", +"6~. c #7EA2DD", +"7~. c #6C92D2", +"8~. c #355DA1", +"9~. c #5075B6", +"0~. c #7294D0", +"a~. c #46649B", +"b~. c #031126", +"c~. c #071838", +"d~. c #0E2142", +"e~. c #15284B", +"f~. c #1A2E52", +"g~. c #192D52", +"h~. c #263D63", +"i~. c #12326D", +"j~. c #13356E", +"k~. c #13336E", +"l~. c #05265D", +"m~. c #5F82BD", +"n~. c #496FAD", +"o~. c #2C5291", +"p~. c #2A518F", +"q~. c #274E8D", +"r~. c #264D8E", +"s~. c #254B8C", +"t~. c #1E4585", +"u~. c #4A6FAD", +"v~. c #799CD5", +"w~. c #7499D6", +"x~. c #769DD8", +"y~. c #5D84C2", +"z~. c #7CA1DC", +"A~. c #B3CEF2", +"B~. c #8BAFE7", +"C~. c #AEC8F2", +"D~. c #8BACE3", +"E~. c #5D84C4", +"F~. c #365DA1", +"G~. c #335C9F", +"H~. c #5777B2", +"I~. c #061934", +"J~. c #081938", +"K~. c #112446", +"L~. c #1A2F53", +"M~. c #1C3159", +"N~. c #253C64", +"O~. c #173364", +"P~. c #14336D", +"Q~. c #12326C", +"R~. c #12336C", +"S~. c #10326E", +"T~. c #0D306E", +"U~. c #0C2E6E", +"V~. c #0A2A60", +"W~. c #6186C1", +"X~. c #4167A5", +"Y~. c #264C8D", +"Z~. c #254D8C", +"`~. c #204788", +" {. c #365B99", +".{. c #6C94D0", +"+{. c #5E85C3", +"@{. c #638BC8", +"#{. c #5C84C1", +"${. c #ACC7EE", +"%{. c #7CA2E0", +"&{. c #8EB1EA", +"*{. c #6D94D3", +"={. c #86ABE5", +"-{. c #7795C9", +";{. c #010F29", +">{. c #0A1D3B", +",{. c #15294A", +"'{. c #172B50", +"){. c #1D3158", +"!{. c #1A3464", +"~{. c #12356D", +"{{. c #15336E", +"]{. c #10326C", +"^{. c #11326F", +"/{. c #10316E", +"({. c #082D6D", +"_{. c #052A67", +":{. c #062E6C", +"<{. c #0E2E66", +"[{. c #5C83BE", +"}{. c #3D62A1", +"|{. c #345A99", +"1{. c #2D5492", +"2{. c #2C5392", +"3{. c #294F8F", +"4{. c #244B8A", +"5{. c #22498A", +"6{. c #284D8D", +"7{. c #4C72AF", +"8{. c #5980BD", +"9{. c #6187C4", +"0{. c #5A80BF", +"a{. c #92B3E3", +"b{. c #749AD8", +"c{. c #658BCC", +"d{. c #3A62A6", +"e{. c #81A6E2", +"f{. c #7A9AD1", +"g{. c #020915", +"h{. c #122748", +"i{. c #1B2F51", +"j{. c #192F52", +"k{. c #253B61", +"l{. c #14346C", +"m{. c #0D316D", +"n{. c #0C306C", +"o{. c #0C2F6E", +"p{. c #092D6B", +"q{. c #0B2E6D", +"r{. c #092D6D", +"s{. c #072C6C", +"t{. c #052B69", +"u{. c #062B6D", +"v{. c #395F9D", +"w{. c #4368A7", +"x{. c #315796", +"y{. c #2A508F", +"z{. c #284E8D", +"A{. c #2F5695", +"B{. c #2E5594", +"C{. c #3A5E9C", +"D{. c #587EBC", +"E{. c #7EA1D9", +"F{. c #6E94D3", +"G{. c #0E2A5E", +"H{. c #000F24", +"I{. c #051532", +"J{. c #071935", +"K{. c #0A1C3A", +"L{. c #172A4C", +"M{. c #182B4E", +"N{. c #1A2E50", +"O{. c #172F51", +"P{. c #1F3965", +"Q{. c #052D6C", +"R{. c #254681", +"S{. c #5277B4", +"T{. c #3D63A1", +"U{. c #274D8C", +"V{. c #264C8C", +"W{. c #2C5493", +"X{. c #214788", +"Y{. c #234887", +"Z{. c #4E74B2", +"`{. c #5981BE", +" ]. c #6A8FCB", +".]. c #B5CEEE", +"+]. c #6F95D4", +"@]. c #6087C7", +"#]. c #547BBC", +"$]. c #3B62A6", +"%]. c #1A3669", +"&]. c #031024", +"*]. c #04132C", +"=]. c #15284A", +"-]. c #132647", +";]. c #1C2F52", +">]. c #172B4F", +",]. c #1C3254", +"']. c #2B426D", +")]. c #12346D", +"!]. c #0F316D", +"~]. c #0C2F6B", +"{]. c #092E6C", +"]]. c #072C6B", +"^]. c #062A6A", +"/]. c #062B6A", +"(]. c #042C6B", +"_]. c #052A68", +":]. c #31538D", +"<]. c #3F64A2", +"[]. c #2E5492", +"}]. c #2C5391", +"|]. c #274F8D", +"1]. c #1F4586", +"2]. c #1F4687", +"3]. c #4468A6", +"4]. c #5279B7", +"5]. c #A5C1E8", +"6]. c #557CBD", +"7]. c #5178B9", +"8]. c #5B85C6", +"9]. c #2C487C", +"0]. c #0B1C3A", +"a]. c #1B3053", +"b]. c #192E55", +"c]. c #2A4069", +"d]. c #0F326C", +"e]. c #082D6B", +"f]. c #092E6B", +"g]. c #072B6C", +"h]. c #395D97", +"i]. c #446AA7", +"j]. c #3E63A1", +"k]. c #345998", +"l]. c #2E5494", +"m]. c #2B5291", +"n]. c #244C8A", +"o]. c #234989", +"p]. c #1D4485", +"q]. c #305492", +"r]. c #537AB7", +"s]. c #5076B5", +"t]. c #5279B8", +"u]. c #557CBA", +"v]. c #5C82C1", +"w]. c #82A4DA", +"x]. c #597FC2", +"y]. c #5A84C5", +"z]. c #4369AD", +"A]. c #486FB3", +"B]. c #547ABC", +"C]. c #405F97", +"D]. c #051635", +"E]. c #091A37", +"F]. c #102343", +"G]. c #192C4F", +"H]. c #1A3054", +"I]. c #193363", +"J]. c #153261", +"K]. c #14336C", +"L]. c #11326D", +"M]. c #0E316C", +"N]. c #0D306C", +"O]. c #072D6B", +"P]. c #072B67", +"Q]. c #3C619C", +"R]. c #4A70AD", +"S]. c #4A70AE", +"T]. c #4066A4", +"U]. c #2F5595", +"V]. c #264C8B", +"W]. c #1F4485", +"X]. c #4F76B4", +"Y]. c #547BB9", +"Z]. c #577DBC", +"`]. c #557BBA", +" ^. c #547CB9", +".^. c #597FBE", +"+^. c #678ECA", +"@^. c #ABC7EF", +"#^. c #5E84C6", +"$^. c #5D83C4", +"%^. c #648AC8", +"&^. c #94B5E9", +"*^. c #557FBF", +"=^. c #5F88C9", +"-^. c #7599D5", +";^. c #779EDE", +">^. c #5273AD", +",^. c #04122A", +"'^. c #081835", +")^. c #061633", +"!^. c #0A1B3A", +"~^. c #182D4F", +"{^. c #1E3560", +"]^. c #1B3765", +"^^. c #13346B", +"/^. c #11336B", +"(^. c #11356E", +"_^. c #0B2F6B", +":^. c #0C2F6C", +"<^. c #0A2C6C", +"[^. c #092C6A", +"}^. c #4066A2", +"|^. c #3D609F", +"1^. c #476CAA", +"2^. c #4C72AE", +"3^. c #496FAB", +"4^. c #244A8A", +"5^. c #224888", +"6^. c #2A5190", +"7^. c #355998", +"8^. c #5179B7", +"9^. c #547BB8", +"0^. c #5278B7", +"a^. c #557CB9", +"b^. c #9CBBE8", +"c^. c #AAC6EF", +"d^. c #638ACA", +"e^. c #8BABE1", +"f^. c #84A6DF", +"g^. c #557ABC", +"h^. c #95B2E4", +"i^. c #5F85C5", +"j^. c #82A6E0", +"k^. c #365CA1", +"l^. c #7699D3", +"m^. c #5E81BF", +"n^. c #172B4D", +"o^. c #1C3256", +"p^. c #1C3662", +"q^. c #173565", +"r^. c #183667", +"s^. c #14336B", +"t^. c #11326A", +"u^. c #0F316B", +"v^. c #11346D", +"w^. c #0E306E", +"x^. c #0A2E6B", +"y^. c #082B6B", +"z^. c #3F66A3", +"A^. c #3C619F", +"B^. c #375C9B", +"C^. c #214987", +"D^. c #1D4584", +"E^. c #204686", +"F^. c #486DAC", +"G^. c #567DBA", +"H^. c #5379B8", +"I^. c #537BB8", +"J^. c #5C82BF", +"K^. c #6085C3", +"L^. c #84A5DC", +"M^. c #A2BFEC", +"N^. c #6187C8", +"O^. c #6489C8", +"P^. c #0A1B37", +"Q^. c #041834", +"R^. c #1D3155", +"S^. c #11316C", +"T^. c #11326C", +"U^. c #0E316B", +"V^. c #082E6C", +"W^. c #092C6B", +"X^. c #082C6C", +"Y^. c #4166A4", +"Z^. c #3B5F9D", +"`^. c #325896", +" /. c #1F4685", +"./. c #224988", +"+/. c #4F75B3", +"@/. c #5178B6", +"#/. c #537AB8", +"$/. c #7498D2", +"%/. c #B3CEF1", +"&/. c #ACCAF0", +"*/. c #97B6E7", +"=/. c #5E84C4", +"-/. c #91B3E7", +";/. c #90B2E5", +">/. c #0C2555", +",/. c #051630", +"'/. c #061839", +")/. c #162D50", +"!/. c #1B3560", +"~/. c #12316A", +"{/. c #10336B", +"]/. c #11316B", +"^/. c #11336D", +"//. c #0F316C", +"(/. c #0B2E6B", +"_/. c #082C6A", +":/. c #294983", +"(. c #84ABE7", +",(. c #405D92", +"'(. c #041835", +")(. c #14274A", +"!(. c #163368", +"~(. c #13326A", +"{(. c #11346C", +"](. c #0F2F69", +"^(. c #10316B", +"/(. c #0D2F6D", +"((. c #032A68", +"_(. c #032868", +":(. c #062863", +"<(. c #486CA9", +"[(. c #3D62A0", +"}(. c #385E9C", +"|(. c #325796", +"1(. c #325595", +"2(. c #325695", +"3(. c #204685", +"4(. c #123779", +"5(. c #385D9C", +"6(. c #4E74B3", +"7(. c #5A7EBD", +"8(. c #A4C1EC", +"9(. c #A8C5EF", +"0(. c #A8C7F0", +"a(. c #A9C6EF", +"b(. c #567CBC", +"c(. c #6185C3", +"d(. c #31599D", +"e(. c #2E559A", +"f(. c #2B5297", +"g(. c #3F68AA", +"h(. c #4F75B8", +"i(. c #83ABE8", +"j(. c #5171AA", +"k(. c #172B4C", +"l(. c #132849", +"m(. c #162D51", +"n(. c #1B3155", +"o(. c #172C52", +"p(. c #1D3562", +"q(. c #1B3563", +"r(. c #1B3764", +"s(. c #10306A", +"t(. c #11336C", +"u(. c #0D2F6A", +"v(. c #0A2D6B", +"w(. c #082B6A", +"x(. c #042C6A", +"y(. c #0B2C66", +"z(. c #476DA9", +"A(. c #375D9B", +"B(. c #2D5290", +"C(. c #2E5291", +"D(. c #2A4F8E", +"E(. c #234786", +"F(. c #4A70AF", +"G(. c #ABC8EF", +"H(. c #A7C4F0", +"I(. c #A9C5F0", +"J(. c #5177B9", +"K(. c #8CA8D9", +"L(. c #4F74B5", +"M(. c #274F93", +"N(. c #2A5196", +"O(. c #295196", +"P(. c #6083BF", +"Q(. c #031128", +"R(. c #192D4E", +"S(. c #21355A", +"T(. c #173160", +"U(. c #103069", +"V(. c #10326A", +"W(. c #11326B", +"X(. c #0D306A", +"Y(. c #0C2F6A", +"Z(. c #0C316C", +"`(. c #0A2E6A", +" _. c #0B2F6C", +"._. c #486EAA", +"+_. c #3D61A0", +"@_. c #2D5291", +"#_. c #2E5392", +"$_. c #234988", +"%_. c #2C518F", +"&_. c #395E9D", +"*_. c #466CAB", +"=_. c #789AD3", +"-_. c #A6C3EF", +";_. c #6289C8", +">_. c #557CBB", +",_. c #5177B8", +"'_. c #6B8AC4", +")_. c #90AEDE", +"!_. c #4970B1", +"~_. c #476EB0", +"{_. c #30569A", +"]_. c #244B90", +"^_. c #274F94", +"/_. c #3D63A8", +"(_. c #3E67A9", +"__. c #7B9BD2", +":_. c #020C1A", +"<_. c #061936", +"[_. c #061737", +"}_. c #182C4D", +"|_. c #152749", +"1_. c #1C3053", +"2_. c #1D3154", +"3_. c #1B2E53", +"4_. c #193466", +"5_. c #123169", +"6_. c #0F316A", +"7_. c #0F326A", +"8_. c #10306B", +"9_. c #0C2E6B", +"0_. c #0B2D6A", +"a_. c #0B2E6A", +"b_. c #082F6C", +"c_. c #092F6C", +"d_. c #042B68", +"e_. c #446AA8", +"f_. c #385D9B", +"g_. c #6889C0", +"h_. c #2F5492", +"i_. c #244988", +"j_. c #214685", +"k_. c #254B89", +"l_. c #274C8B", +"m_. c #4167A6", +"n_. c #4B71B0", +"o_. c #4C72B1", +"p_. c #5E83BF", +"q_. c #ACC7EF", +"r_. c #A2C0EE", +"s_. c #5D85C4", +"t_. c #547BBB", +"u_. c #486FB1", +"v_. c #254D91", +"w_. c #284F94", +"x_. c #295195", +"y_. c #3C64A8", +"z_. c #6288C8", +"A_. c #5177BB", +"B_. c #799FDE", +"C_. c #99B4E1", +"D_. c #0B2350", +"E_. c #132649", +"F_. c #16294A", +"G_. c #1C3154", +"H_. c #1B2F53", +"I_. c #1D3054", +"J_. c #153263", +"K_. c #183468", +"L_. c #173467", +"M_. c #12326A", +"N_. c #0E2E69", +"O_. c #0D2F6B", +"P_. c #092D69", +"Q_. c #092F6B", +"R_. c #2B4C86", +"S_. c #456BA8", +"T_. c #3F65A2", +"U_. c #7898CE", +"V_. c #2A4E8D", +"W_. c #5A7FBD", +"X_. c #9FBCE9", +"Y_. c #A7C5F0", +"Z_. c #A6C3F0", +"`_. c #A6C5EF", +" :. c #A7C7F0", +".:. c #9EBCEB", +"+:. c #4F76B7", +"@:. c #4D72B4", +"#:. c #446DAF", +"$:. c #22498E", +"%:. c #274E93", +"&:. c #295095", +"*:. c #2C5498", +"=:. c #5679B7", +"-:. c #7493CA", +";:. c #3B63A6", +">:. c #8AAEE6", +",:. c #122D60", +"':. c #0E2241", +"):. c #162B4D", +"!:. c #1D3255", +"~:. c #1C355D", +"{:. c #163267", +"]:. c #10316A", +"^:. c #102F6A", +"/:. c #0E3169", +"(:. c #0E306A", +"_:. c #0F306B", +"::. c #082C6B", +"<:. c #345792", +"[:. c #446AA6", +"}:. c #4066A3", +"|:. c #3E62A1", +"1:. c #294F8D", +"2:. c #355A99", +"3:. c #8BA9DA", +"4:. c #A5C2F0", +"5:. c #A5C5EF", +"6:. c #AAC6F1", +"7:. c #9CBBEB", +"8:. c #4B72B3", +"9:. c #2B5196", +"0:. c #224A8F", +"a:. c #2A5095", +"b:. c #2D5398", +"c:. c #91B1E4", +"d:. c #051430", +"e:. c #091A36", +"f:. c #1F3356", +"g:. c #1C3054", +"h:. c #112F66", +"i:. c #0F306A", +"j:. c #103169", +"k:. c #0E316A", +"l:. c #0B2E69", +"m:. c #062B69", +"n:. c #3A5F9A", +"o:. c #4067A2", +"p:. c #092E70", +"q:. c #5277B6", +"r:. c #7D9ED4", +"s:. c #A2C0F0", +"t:. c #A2C3F0", +"u:. c #9AB9E9", +"v:. c #567CBE", +"w:. c #4D74B5", +"x:. c #4A71B2", +"y:. c #476EAF", +"z:. c #21488E", +"A:. c #254C91", +"B:. c #4269AB", +"C:. c #86A8E0", +"D:. c #84ABE8", +"E:. c #375489", +"F:. c #020B18", +"G:. c #091938", +"H:. c #091B38", +"I:. c #0D2445", +"J:. c #223659", +"K:. c #1B3154", +"L:. c #20355C", +"M:. c #103168", +"N:. c #113069", +"O:. c #0E2F69", +"P:. c #0F336D", +"Q:. c #0D306B", +"R:. c #082D6A", +"S:. c #082B67", +"T:. c #3E62A0", +"U:. c #3C639F", +"V:. c #39609D", +"W:. c #315795", +"X:. c #153A7B", +"Y:. c #3A5F9E", +"Z:. c #4E73B2", +"`:. c #6A8ECB", +" <. c #94B4E6", +".<. c #456CAE", +"+<. c #4F74B6", +"@<. c #1F468C", +"#<. c #21498E", +"$<. c #254D92", +"%<. c #2C5497", +"&<. c #345C9F", +"*<. c #4F75B5", +"=<. c #4970B0", +"-<. c #4E75B5", +";<. c #6083C1", +"><. c #82A8E5", +",<. c #4969A0", +"'<. c #0B1C39", +")<. c #0D2344", +"!<. c #1E3255", +"~<. c #113168", +"{<. c #0B2F6A", +"]<. c #092C68", +"^<. c #092D6A", +"/<. c #103068", +"(<. c #3E64A2", +"_<. c #3C629F", +":<. c #3A609D", +"<<. c #244A88", +"[<. c #456BAA", +"}<. c #597DBC", +"|<. c #90B1E6", +"1<. c #5076B7", +"2<. c #4A71B3", +"3<. c #466DAE", +"4<. c #436AAB", +"5<. c #7AA2E0", +"6<. c #557BBC", +"7<. c #20478C", +"8<. c #20488D", +"9<. c #295096", +"0<. c #2F579A", +"a<. c #4469AA", +"b<. c #577AB8", +"c<. c #5E80BC", +"d<. c #000F26", +"e<. c #000F25", +"f<. c #102347", +"g<. c #132B4D", +"h<. c #113068", +"i<. c #103167", +"j<. c #0F2F68", +"k<. c #102F69", +"l<. c #0D3068", +"m<. c #0F2F6A", +"n<. c #0C2F69", +"o<. c #0B2F69", +"p<. c #0A2D6A", +"q<. c #062969", +"r<. c #456BA9", +"s<. c #39609C", +"t<. c #2F5593", +"u<. c #1F4585", +"v<. c #4D72B1", +"w<. c #4F74B3", +"x<. c #94B3E4", +"y<. c #9CBCF0", +"z<. c #88AAE2", +"A<. c #5278B9", +"B<. c #466DAF", +"C<. c #446BAC", +"D<. c #486FB0", +"E<. c #456BAC", +"F<. c #284E92", +"G<. c #1F478C", +"H<. c #1E468B", +"I<. c #264D92", +"J<. c #345CA0", +"K<. c #355CA0", +"L<. c #7294CE", +"M<. c #051A41", +"N<. c #00030B", +"O<. c #010A14", +"P<. c #05152E", +"Q<. c #1B2E52", +"R<. c #12336A", +"S<. c #0F3069", +"T<. c #0F3169", +"U<. c #102F6B", +"V<. c #0C2F68", +"W<. c #082C69", +"X<. c #082C68", +"Y<. c #072B68", +"Z<. c #032964", +"`<. c #032763", +" [. c #294A81", +".[. c #3A619D", +"+[. c #244A89", +"@[. c #6489C6", +"#[. c #7B9FDC", +"$[. c #5E84C3", +"%[. c #87AAE0", +"&[. c #9ABBF0", +"*[. c #87AAE4", +"=[. c #446CAE", +"-[. c #31589B", +";[. c #1B4388", +">[. c #2B5296", +",[. c #244C91", +"'[. c #2A5296", +")[. c #2F589B", +"![. c #3960A4", +"~[. c #769CD9", +"{[. c #071734", +"][. c #071738", +"^[. c #07193A", +"/[. c #0F2141", +"([. c #19305E", +"_[. c #0F3067", +":[. c #0E3068", +"<[. c #0A2D67", +"[[. c #0E326B", +"}[. c #0B2D69", +"|[. c #375991", +"1[. c #446BA8", +"2[. c #305593", +"3[. c #5579B7", +"4[. c #7296D2", +"5[. c #7EA2DC", +"6[. c #9DBDF1", +"7[. c #98BAEF", +"8[. c #5379BA", +"9[. c #4269AA", +"0[. c #3E66A8", +"a[. c #284E93", +"b[. c #1D458A", +"c[. c #2C5599", +"d[. c #325A9E", +"e[. c #31589C", +"f[. c #7FA4E1", +"g[. c #091933", +"h[. c #081934", +"i[. c #0E2E67", +"j[. c #0F2F67", +"k[. c #0C2C67", +"l[. c #0E2F68", +"m[. c #0E2F6A", +"n[. c #0B2E68", +"o[. c #0C2E6A", +"p[. c #052965", +"q[. c #3B5E9A", +"r[. c #4268A5", +"s[. c #365A98", +"t[. c #2E5391", +"u[. c #2D5391", +"v[. c #456AA9", +"w[. c #4A6FAE", +"x[. c #7B9FDA", +"y[. c #496FB2", +"z[. c #4168A9", +"A[. c #3961A4", +"B[. c #1C4388", +"C[. c #1F478D", +"D[. c #234B90", +"E[. c #2C5499", +"F[. c #30579D", +"G[. c #85ABE7", +"H[. c #061630", +"I[. c #071833", +"J[. c #09193A", +"K[. c #0F2445", +"L[. c #192C51", +"M[. c #182D53", +"N[. c #1B315B", +"O[. c #18315E", +"P[. c #0F3066", +"Q[. c #103067", +"R[. c #113269", +"S[. c #103269", +"T[. c #0C2E68", +"U[. c #072D6A", +"V[. c #042A66", +"W[. c #072760", +"X[. c #4166A1", +"Y[. c #3E64A1", +"Z[. c #7496CD", +"`[. c #89AADB", +" }. c #2A4E8C", +".}. c #41619B", +"+}. c #678AC5", +"@}. c #476DAB", +"#}. c #466AA9", +"$}. c #4A6DAD", +"%}. c #4C70B0", +"&}. c #6D92CF", +"*}. c #95B8F0", +"=}. c #94B7F0", +"-}. c #93B7F0", +";}. c #7DA2DB", +">}. c #4A6FB2", +",}. c #4067A9", +"'}. c #2F579B", +")}. c #1C4287", +"!}. c #1C4489", +"~}. c #1B4287", +"{}. c #1B4389", +"]}. c #496FB1", +"^}. c #87ADEA", +"/}. c #304C80", +"(}. c #000509", +"_}. c #04132F", +":}. c #061632", +"<}. c #102546", +"[}. c #0F2E67", +"}}. c #0B2E67", +"|}. c #0A2E68", +"1}. c #0C306A", +"2}. c #0C2E69", +"3}. c #042A67", +"4}. c #597DB8", +"5}. c #3E64A0", +"6}. c #4467A4", +"7}. c #7394C7", +"8}. c #2F5491", +"9}. c #7598D1", +"0}. c #33528A", +"a}. c #486CAC", +"b}. c #4469A8", +"c}. c #6084C1", +"d}. c #96B8F0", +"e}. c #95B8EF", +"f}. c #92B6F0", +"g}. c #91B5EF", +"h}. c #8FB6EF", +"i}. c #4E75B6", +"j}. c #456CAD", +"k}. c #3F66A8", +"l}. c #3B62A5", +"m}. c #244A8F", +"n}. c #184085", +"o}. c #194186", +"p}. c #355DA2", +"q}. c #6387C5", +"r}. c #668DCC", +"s}. c #5C85C7", +"t}. c #436299", +"u}. c #1C345C", +"v}. c #1B325D", +"w}. c #14326A", +"x}. c #0D2F67", +"y}. c #0C2E67", +"z}. c #0F2E6A", +"A}. c #092C69", +"B}. c #032A67", +"C}. c #7195CF", +"D}. c #4F73AF", +"E}. c #3F66A1", +"F}. c #3D64A0", +"G}. c #375C9A", +"H}. c #2B518F", +"I}. c #204584", +"J}. c #0A2D68", +"K}. c #2A4F8F", +"L}. c #3C61A0", +"M}. c #5E81C0", +"N}. c #8CB3EE", +"O}. c #8EB4F0", +"P}. c #97BBEF", +"Q}. c #7DA3DD", +"R}. c #5077B8", +"S}. c #466CAD", +"T}. c #365DA0", +"U}. c #194187", +"V}. c #375FA2", +"W}. c #416AAC", +"X}. c #3960A6", +"Y}. c #7B9FD9", +"Z}. c #91B9F4", +"`}. c #92BAF3", +" |. c #7DA2DD", +".|. c #5576AF", +"+|. c #020913", +"@|. c #17305D", +"#|. c #123067", +"$|. c #0D2D67", +"%|. c #0D3069", +"&|. c #0E2D68", +"*|. c #092B68", +"=|. c #0A2D69", +"-|. c #072C69", +";|. c #092E6A", +">|. c #234176", +",|. c #779CD6", +"'|. c #4C72AD", +")|. c #365C9A", +"!|. c #305494", +"~|. c #173A7B", +"{|. c #6889C1", +"]|. c #1A3E7F", +"^|. c #5B7EBD", +"/|. c #8DB4EE", +"(|. c #8BB2ED", +"_|. c #80A5E1", +":|. c #32599C", +"<|. c #184086", +"[|. c #3D66A8", +"}|. c #335B9E", +"||. c #355CA2", +"1|. c #3D65A9", +"2|. c #87ACE6", +"3|. c #8CB1E9", +"4|. c #6189C6", +"5|. c #5E80BA", +"6|. c #05142E", +"7|. c #081A37", +"8|. c #16294D", +"9|. c #1D3357", +"0|. c #192E58", +"a|. c #19305D", +"b|. c #112F64", +"c|. c #0E2F67", +"d|. c #0F2E68", +"e|. c #0D2F69", +"f|. c #0F326B", +"g|. c #0D2E68", +"h|. c #0A2E69", +"i|. c #052B68", +"j|. c #32528A", +"k|. c #5A7FB9", +"l|. c #7FA2DA", +"m|. c #5276B0", +"n|. c #2C5290", +"o|. c #1E4583", +"p|. c #3F649E", +"q|. c #234580", +"r|. c #4668A3", +"s|. c #325594", +"t|. c #2D4F8B", +"u|. c #305290", +"v|. c #5B7FBC", +"w|. c #2B508F", +"x|. c #2F5493", +"y|. c #4469A9", +"z|. c #567BBA", +"A|. c #89AFE9", +"B|. c #8AB1ED", +"C|. c #8BB1EF", +"D|. c #8BB1EE", +"E|. c #80A4E1", +"F|. c #385FA2", +"G|. c #244B8E", +"H|. c #1D4589", +"I|. c #325A9F", +"J|. c #345CA1", +"K|. c #13264A", +"L|. c #0F2F66", +"M|. c #0E2F66", +"N|. c #0B2D66", +"O|. c #0D2D66", +"P|. c #0C2D66", +"Q|. c #0B2D67", +"R|. c #032965", +"S|. c #3F629C", +"T|. c #486DA8", +"U|. c #3F659F", +"V|. c #335997", +"W|. c #305694", +"X|. c #466AA7", +"Y|. c #8FB0E6", +"Z|. c #89ABE1", +"`|. c #B2CBEF", +" 1. c #A5BFEA", +".1. c #4467A5", +"+1. c #365997", +"@1. c #254A8A", +"#1. c #88AFEA", +"$1. c #8AB0ED", +"%1. c #8AB0EE", +"&1. c #82A7E1", +"*1. c #4F75B6", +"=1. c #285095", +"-1. c #2A5297", +";1. c #335BA0", +">1. c #3C65A8", +",1. c #6B92D1", +"'1. c #081E49", +")1. c #020E1E", +"!1. c #081734", +"~1. c #102D61", +"{1. c #0F2E65", +"]1. c #0C2F67", +"^1. c #0F3068", +"/1. c #0D2D68", +"(1. c #0B2D68", +"_1. c #072A69", +":1. c #032863", +"<1. c #4E70AB", +"[1. c #486DA9", +"}1. c #4367A4", +"|1. c #244786", +"11. c #335693", +"21. c #4265A0", +"31. c #3F639E", +"41. c #3C5F9C", +"51. c #2F5190", +"61. c #395C9A", +"71. c #204586", +"81. c #375D9C", +"91. c #8AB0EB", +"01. c #88AEE9", +"a1. c #89AFEA", +"b1. c #89ADE9", +"c1. c #89AEEA", +"d1. c #87ADEB", +"e1. c #85AAE4", +"f1. c #2D5397", +"g1. c #183F84", +"h1. c #1A4288", +"i1. c #355EA2", +"j1. c #6C95D3", +"k1. c #071934", +"l1. c #091B3A", +"m1. c #0F2748", +"n1. c #172C53", +"o1. c #16305C", +"p1. c #0E2E64", +"q1. c #0E2F65", +"r1. c #072966", +"s1. c #072A68", +"t1. c #0B2B63", +"u1. c #5177B1", +"v1. c #466CA7", +"w1. c #39609B", +"x1. c #3F64A1", +"y1. c #466BAA", +"z1. c #4C71B0", +"A1. c #88ADE9", +"B1. c #86ACE8", +"C1. c #89ACE9", +"D1. c #88ACE9", +"E1. c #87ACE9", +"F1. c #87ABE7", +"G1. c #88ACE8", +"H1. c #88ADEB", +"I1. c #8AAEED", +"J1. c #8CB3F1", +"K1. c #87ACE7", +"L1. c #3960A3", +"M1. c #21478C", +"N1. c #557BBF", +"O1. c #203C70", +"P1. c #15315F", +"Q1. c #0D2E64", +"R1. c #0B2E66", +"S1. c #092C67", +"T1. c #062A66", +"U1. c #082B68", +"V1. c #062968", +"W1. c #5279B3", +"X1. c #4269A4", +"Y1. c #2A508E", +"Z1. c #123778", +"`1. c #0F3273", +" 2. c #45649C", +".2. c #5F7FB5", +"+2. c #1E407F", +"@2. c #14397D", +"#2. c #39609E", +"$2. c #4267A7", +"%2. c #4A6EAE", +"&2. c #5377B7", +"*2. c #7DA2DE", +"=2. c #86AAE6", +"-2. c #88ACEA", +";2. c #86AAE8", +">2. c #86AAE7", +",2. c #87ABE8", +"'2. c #88ADEA", +")2. c #8AAEEC", +"!2. c #89AFEC", +"~2. c #8CB2F1", +"{2. c #93B8F0", +"]2. c #8AAFE9", +"^2. c #1F468B", +"/2. c #1F468A", +"(2. c #3D65A7", +"_2. c #517ABA", +":2. c #7DA6E5", +"<2. c #335289", +"[2. c #04152E", +"}2. c #0B1D3B", +"|2. c #122A4C", +"12. c #112F65", +"22. c #0F2F65", +"32. c #0D2E65", +"42. c #0D2E66", +"52. c #0A2C67", +"62. c #062A67", +"72. c #022967", +"82. c #23437B", +"92. c #567BB7", +"02. c #365D98", +"a2. c #284E8C", +"b2. c #38578F", +"c2. c #A1C3F3", +"d2. c #5A79B0", +"e2. c #345B99", +"f2. c #4267A6", +"g2. c #4A6EAD", +"h2. c #5479B7", +"i2. c #7A9FDB", +"j2. c #85A9E5", +"k2. c #84A8E4", +"l2. c #85A9E7", +"m2. c #89ADEB", +"n2. c #8AAFEB", +"o2. c #8BB1F0", +"p2. c #8FB4F1", +"q2. c #8DB1EA", +"r2. c #4C72B3", +"s2. c #4067A8", +"t2. c #1E458A", +"u2. c #1A4186", +"v2. c #365EA3", +"w2. c #48689E", +"x2. c #0E2D66", +"y2. c #0D2F68", +"z2. c #092C66", +"A2. c #072A67", +"B2. c #072C68", +"C2. c #052964", +"D2. c #305189", +"E2. c #5579B3", +"F2. c #325895", +"G2. c #6C8CC1", +"H2. c #7396CC", +"I2. c #2B4D8A", +"J2. c #214686", +"K2. c #476CAB", +"L2. c #4D71B0", +"M2. c #7498D4", +"N2. c #86ABE6", +"O2. c #83A7E3", +"P2. c #84A8E6", +"Q2. c #83A8E4", +"R2. c #87ABE9", +"S2. c #85AAE8", +"T2. c #86ABE9", +"U2. c #88ACEB", +"V2. c #8BB0EB", +"W2. c #90B5F0", +"X2. c #4B71B2", +"Y2. c #476DAE", +"Z2. c #3E65A7", +"`2. c #234A8E", +" 3. c #2C5398", +".3. c #3961A5", +"+3. c #7BA2E1", +"@3. c #5D7FB9", +"#3. c #132F62", +"$3. c #0C2C64", +"%3. c #0A2C6A", +"&3. c #052862", +"*3. c #032662", +"=3. c #3F6199", +"-3. c #5276B1", +";3. c #345A98", +">3. c #214785", +",3. c #5373AA", +"'3. c #5074B3", +")3. c #82A6E2", +"!3. c #83A7E4", +"~3. c #83A7E5", +"{3. c #83A9E7", +"]3. c #8AAEEA", +"^3. c #8BB0EC", +"/3. c #8CB2F0", +"(3. c #4D73B4", +"_3. c #3960A2", +":3. c #20478B", +"<3. c #234B8F", +"[3. c #3D66A9", +"}3. c #668AC7", +"|3. c #061738", +"13. c #0E2140", +"23. c #162C54", +"33. c #152F5D", +"43. c #163260", +"53. c #0E2F64", +"63. c #0F2E66", +"73. c #092B69", +"83. c #072C67", +"93. c #062B68", +"03. c #032765", +"a3. c #4668A2", +"b3. c #3F65A0", +"c3. c #264B89", +"d3. c #2C4C88", +"e3. c #6C90C8", +"f3. c #5075B4", +"g3. c #7B9EDB", +"h3. c #81A5E1", +"i3. c #85A9E6", +"j3. c #8AAEEB", +"k3. c #5076B6", +"l3. c #2B5195", +"m3. c #264C91", +"n3. c #284F93", +"o3. c #285093", +"p3. c #20488C", +"q3. c #355EA0", +"r3. c #3C65A7", +"s3. c #456EB0", +"t3. c #7396D1", +"u3. c #0B1C3B", +"v3. c #162D4E", +"w3. c #182F53", +"x3. c #14305D", +"y3. c #0E2E63", +"z3. c #0E2D64", +"A3. c #0D2D65", +"B3. c #0E2E65", +"C3. c #0B2B64", +"D3. c #0C2E66", +"E3. c #0A2D65", +"F3. c #082B66", +"G3. c #062B67", +"H3. c #042862", +"I3. c #072861", +"J3. c #5075AE", +"K3. c #385E99", +"L3. c #2D518F", +"M3. c #264B8A", +"N3. c #0D3472", +"O3. c #103875", +"P3. c #093070", +"Q3. c #799CD8", +"R3. c #82A6E3", +"S3. c #82A6E4", +"T3. c #84A8E5", +"U3. c #89ADEA", +"V3. c #496FAF", +"W3. c #3E65A6", +"X3. c #1E468C", +"Y3. c #1D458B", +"Z3. c #335C9E", +"`3. c #3B64A6", +" 4. c #6A92D1", +".4. c #7B9FDB", +"+4. c #000511", +"@4. c #182E56", +"#4. c #132C5A", +"$4. c #0D2E63", +"%4. c #0C2C65", +"&4. c #0A2D66", +"*4. c #072B65", +"=4. c #597DB7", +"-4. c #345997", +";4. c #254A88", +">4. c #234886", +",4. c #0B3271", +"'4. c #09316F", +")4. c #365C9B", +"!4. c #5175B4", +"~4. c #80A4E0", +"{4. c #81A5E2", +"]4. c #89AEEB", +"^4. c #5178B8", +"/4. c #4B72B2", +"(4. c #345A9D", +"_4. c #194185", +":4. c #1C4389", +"<4. c #315A9D", +"[4. c #7EA3DE", +"}4. c #04122B", +"|4. c #051934", +"14. c #162E5C", +"24. c #17335F", +"34. c #0C2D63", +"44. c #0C2D64", +"54. c #092C65", +"64. c #082B65", +"74. c #082C66", +"84. c #062966", +"94. c #05265E", +"04. c #062765", +"a4. c #1B376B", +"b4. c #4367A3", +"c4. c #4468A5", +"d4. c #3E629F", +"e4. c #284D8C", +"f4. c #264C8A", +"g4. c #0B3371", +"h4. c #5579B6", +"i4. c #7FA3DF", +"j4. c #81A5E3", +"k4. c #86ABE8", +"l4. c #4D73B5", +"m4. c #1D4488", +"n4. c #1B4288", +"o4. c #264E93", +"p4. c #365EA1", +"q4. c #7FA5E2", +"r4. c #02060B", +"s4. c #071A35", +"t4. c #122850", +"u4. c #14315E", +"v4. c #0F2E63", +"w4. c #0D2C62", +"x4. c #0F2F64", +"y4. c #0D2D63", +"z4. c #0B2E63", +"A4. c #062965", +"B4. c #325085", +"C4. c #5D81BA", +"D4. c #3A5E9B", +"E4. c #325592", +"F4. c #274A88", +"G4. c #0E3573", +"H4. c #0D3473", +"I4. c #395D9C", +"J4. c #567AB8", +"K4. c #5A7EBC", +"L4. c #7DA0DB", +"M4. c #80A4E2", +"N4. c #92B6F1", +"O4. c #8CAEE6", +"P4. c #6D8EC8", +"Q4. c #1E4589", +"R4. c #173D82", +"S4. c #2D5294", +"T4. c #5478B5", +"U4. c #6C93D2", +"V4. c #041435", +"W4. c #0A1C3B", +"X4. c #11294B", +"Y4. c #152C5A", +"Z4. c #122E60", +"`4. c #102D5F", +" 5. c #0F2D63", +".5. c #0D2F64", +"+5. c #0B2D65", +"@5. c #092C64", +"#5. c #062865", +"$5. c #04275F", +"%5. c #446397", +"&5. c #587CB5", +"*5. c #325693", +"=5. c #32528C", +"-5. c #809DCE", +";5. c #42639F", +">5. c #2A4C8A", +",5. c #2C4F8D", +"'5. c #2F5393", +")5. c #4E72B0", +"!5. c #567BB9", +"~5. c #80A3E0", +"{5. c #80A2DF", +"]5. c #8BAFEC", +"^5. c #90B2E9", +"/5. c #6588C4", +"(5. c #6986BF", +"_5. c #254B8F", +":5. c #254A8E", +"<5. c #244A8E", +"[5. c #6B8BC2", +"}5. c #5174B1", +"|5. c #234A8F", +"15. c #1B3A72", +"25. c #0E2648", +"35. c #0F2C5E", +"45. c #0D2C63", +"55. c #0D2D64", +"65. c #0C2B64", +"75. c #082B63", +"85. c #072A64", +"95. c #0A2C68", +"05. c #082C67", +"a5. c #4C6FA8", +"b5. c #4C70AB", +"c5. c #345795", +"d5. c #4969A1", +"e5. c #A6C3EC", +"f5. c #6D8FC8", +"g5. c #5879B2", +"h5. c #345794", +"i5. c #335795", +"j5. c #2A5090", +"k5. c #486DAB", +"l5. c #5B7FBD", +"m5. c #91B4EC", +"n5. c #4D74B4", +"o5. c #224A8D", +"p5. c #1B4286", +"q5. c #224588", +"r5. c #4465A4", +"s5. c #1D4387", +"t5. c #1C468B", +"u5. c #23447E", +"v5. c #020F20", +"w5. c #031020", +"x5. c #021228", +"y5. c #16315A", +"z5. c #152C59", +"A5. c #132D59", +"B5. c #142D5B", +"C5. c #0C2D62", +"D5. c #0C2D65", +"E5. c #0C2C63", +"F5. c #0D2C65", +"G5. c #0A2C64", +"H5. c #092B65", +"I5. c #082A66", +"J5. c #092B66", +"K5. c #082963", +"L5. c #4F73AD", +"M5. c #4E73AC", +"N5. c #315694", +"O5. c #32538D", +"P5. c #264986", +"Q5. c #224685", +"R5. c #244785", +"S5. c #4367A6", +"T5. c #678AC7", +"U5. c #7DA1DD", +"V5. c #8FB2EC", +"W5. c #2A5195", +"X5. c #1E4588", +"Y5. c #184186", +"Z5. c #395C97", +"`5. c #061935", +" 6. c #12274B", +".6. c #152B56", +"+6. c #0E2E62", +"@6. c #0B2C64", +"#6. c #082B64", +"$6. c #072A65", +"%6. c #072965", +"&6. c #052A66", +"*6. c #122E62", +"=6. c #5277B2", +"-6. c #466CA6", +";6. c #274B89", +">6. c #224785", +",6. c #6E91CE", +"'6. c #7FA2DF", +")6. c #80A6E1", +"!6. c #8BB0EE", +"~6. c #91B3EA", +"{6. c #3B61A2", +"]6. c #295194", +"^6. c #254C8F", +"/6. c #21488B", +"(6. c #264D93", +"_6. c #31599C", +":6. c #3962A5", +"<6. c #4066A6", +"[6. c #071832", +"}6. c #102748", +"|6. c #162D59", +"16. c #132E58", +"26. c #112D5E", +"36. c #0A2D63", +"46. c #0A2D64", +"56. c #0A2C62", +"66. c #0C2E65", +"76. c #0A2B64", +"86. c #0B2C65", +"96. c #092D67", +"06. c #05265C", +"a6. c #203D71", +"b6. c #264A88", +"c6. c #254987", +"d6. c #7094D0", +"e6. c #8AAFED", +"f6. c #8CB2EE", +"g6. c #4568A8", +"h6. c #2A5194", +"i6. c #284F92", +"j6. c #1F4689", +"k6. c #1E4489", +"l6. c #22498D", +"m6. c #254D93", +"n6. c #30589C", +"o6. c #365EA2", +"p6. c #06162F", +"q6. c #0F2E62", +"r6. c #0C2B61", +"s6. c #0B2C62", +"t6. c #0B2C63", +"u6. c #0B2D63", +"v6. c #0B2B62", +"w6. c #062A65", +"x6. c #072967", +"y6. c #062964", +"z6. c #042964", +"A6. c #304E84", +"B6. c #476BA6", +"C6. c #244886", +"D6. c #224684", +"E6. c #7598D5", +"F6. c #7FA3DE", +"G6. c #8CB0ED", +"H6. c #93B7F1", +"I6. c #94B7F1", +"J6. c #5E83C0", +"K6. c #295093", +"L6. c #335A9D", +"M6. c #355C9F", +"N6. c #1D4487", +"O6. c #1C4387", +"P6. c #516FA8", +"Q6. c #2C4F91", +"R6. c #7191C9", +"S6. c #6385C0", +"T6. c #142A54", +"U6. c #0D2D62", +"V6. c #0B2B61", +"W6. c #0C2E64", +"X6. c #092A62", +"Y6. c #072B66", +"Z6. c #34538A", +"`6. c #385C97", +" 7. c #214684", +".7. c #1E4484", +"+7. c #214787", +"@7. c #779BD7", +"#7. c #89ACE8", +"$7. c #8AAFEA", +"%7. c #93B6EC", +"&7. c #345B9D", +"*7. c #30579A", +"=7. c #274F91", +"-7. c #20478A", +";7. c #294F92", +">7. c #22488B", +",7. c #173F83", +"'7. c #183F85", +")7. c #143C83", +"!7. c #2F5090", +"~7. c #274B8E", +"{7. c #224689", +"]7. c #1E468A", +"^7. c #597BB7", +"/7. c #6186C5", +"(7. c #071732", +"_7. c #0C2C62", +":7. c #0A2B63", +"<7. c #092B63", +"[7. c #0A2C65", +"}7. c #082A63", +"|7. c #062963", +"17. c #032560", +"27. c #32558F", +"37. c #2F5390", +"47. c #204684", +"57. c #7BA0DB", +"67. c #8CAFE7", +"77. c #6C94D2", +"87. c #32599B", +"97. c #2C5295", +"07. c #30589A", +"a7. c #395FA2", +"b7. c #295092", +"c7. c #22498C", +"d7. c #20488B", +"e7. c #13387D", +"f7. c #173C80", +"g7. c #92ADDF", +"h7. c #4566A2", +"i7. c #194286", +"j7. c #194087", +"k7. c #1C448A", +"l7. c #071733", +"m7. c #0E2546", +"n7. c #142B56", +"o7. c #0D2D61", +"p7. c #0A2A62", +"q7. c #0A2962", +"r7. c #0B2A63", +"s7. c #092B64", +"t7. c #092C63", +"u7. c #062A64", +"v7. c #06255B", +"w7. c #325793", +"x7. c #2D518E", +"y7. c #264A87", +"z7. c #375C9C", +"A7. c #264E90", +"B7. c #234A8D", +"C7. c #214486", +"D7. c #6488C9", +"E7. c #183F86", +"F7. c #184087", +"G7. c #1B4186", +"H7. c #3B5B9A", +"I7. c #21478A", +"J7. c #153F83", +"K7. c #345DA0", +"L7. c #4F78B8", +"M7. c #091A3A", +"N7. c #0D2C5F", +"O7. c #0B2B5F", +"P7. c #0A2B60", +"Q7. c #092B61", +"R7. c #082A62", +"S7. c #0A2A63", +"T7. c #092A63", +"U7. c #082C63", +"V7. c #082C64", +"W7. c #072964", +"X7. c #062864", +"Y7. c #325893", +"Z7. c #85AAE2", +"`7. c #6386C1", +" 8. c #254D90", +".8. c #1B4489", +"+8. c #1D448A", +"@8. c #294A83", +"#8. c #041333", +"$8. c #000408", +"%8. c #15294E", +"&8. c #112E59", +"*8. c #0E2B5D", +"=8. c #0D2C61", +"-8. c #0B2B60", +";8. c #0B2C61", +">8. c #0A2C63", +",8. c #0A2B62", +"'8. c #092962", +")8. c #072A62", +"!8. c #092D65", +"~8. c #072A63", +"{8. c #062961", +"]8. c #062962", +"^8. c #395D99", +"/8. c #274D89", +"(8. c #224786", +"_8. c #4D71AD", +":8. c #80A4DF", +"<8. c #9BBBF1", +"[8. c #5275B2", +"}8. c #284F91", +"|8. c #254D8F", +"18. c #21498C", +"28. c #1F4589", +"38. c #385DA1", +"48. c #1F478B", +"58. c #20488E", +"68. c #3760A2", +"78. c #3860A3", +"88. c #476AA5", +"98. c #000307", +"08. c #122A55", +"a8. c #0A2B61", +"b8. c #08295F", +"c8. c #092A61", +"d8. c #092961", +"e8. c #072860", +"f8. c #2A497E", +"g8. c #385C98", +"h8. c #284E89", +"i8. c #5074B1", +"j8. c #739BD7", +"k8. c #7BA2E0", +"l8. c #4E73B1", +"m8. c #264D91", +"n8. c #264D90", +"o8. c #254C8E", +"p8. c #214A8C", +"q8. c #21488C", +"r8. c #1C4488", +"s8. c #21488D", +"t8. c #285094", +"u8. c #284F95", +"v8. c #4E71AF", +"w8. c #04122C", +"x8. c #061634", +"y8. c #0D2B5E", +"z8. c #0C2A5E", +"A8. c #0D2C60", +"B8. c #0C2C61", +"C8. c #0A295F", +"D8. c #092A5F", +"E8. c #0C2E63", +"F8. c #052561", +"G8. c #34568E", +"H8. c #40649E", +"I8. c #2F548F", +"J8. c #284E8B", +"K8. c #294D8A", +"L8. c #153C7A", +"M8. c #5174B2", +"N8. c #87AFEA", +"O8. c #87ACE4", +"P8. c #769EDB", +"Q8. c #7DA5E2", +"R8. c #5D82BF", +"S8. c #274D91", +"T8. c #234B8D", +"U8. c #375FA3", +"V8. c #2E569A", +"W8. c #3F64A7", +"X8. c #051431", +"Y8. c #061532", +"Z8. c #132B4F", +"`8. c #112956", +" 9. c #122B59", +".9. c #0C2B60", +"+9. c #0C2C60", +"@9. c #092A60", +"#9. c #0B2D64", +"$9. c #052962", +"%9. c #052963", +"&9. c #03265D", +"*9. c #062253", +"=9. c #4266A1", +"-9. c #355994", +";9. c #2A508B", +">9. c #2F5590", +",9. c #234686", +"'9. c #244787", +")9. c #254A89", +"!9. c #234A89", +"~9. c #284C8C", +"{9. c #80A3DE", +"]9. c #84A9E5", +"^9. c #82A8E2", +"/9. c #79A1DE", +"(9. c #274E90", +"_9. c #163C82", +":9. c #193D7E", +"<9. c #214A8E", +"[9. c #0F254C", +"}9. c #112950", +"|9. c #0C2A5D", +"19. c #0B2B5E", +"29. c #0B2A60", +"39. c #0A2A5F", +"49. c #07285F", +"59. c #082861", +"69. c #072961", +"79. c #05275F", +"89. c #052860", +"99. c #052861", +"09. c #032661", +"a9. c #032760", +"b9. c #092558", +"c9. c #5B7EB7", +"d9. c #365A96", +"e9. c #2D518D", +"f9. c #2C508E", +"g9. c #244987", +"h9. c #4D72AE", +"i9. c #83AAE5", +"j9. c #8BB1EB", +"k9. c #7EA5E1", +"l9. c #7EA6E3", +"m9. c #769DDA", +"n9. c #284E91", +"o9. c #1A4085", +"p9. c #1B4387", +"q9. c #5F81BB", +"r9. c #93B6EA", +"s9. c #6587C1", +"t9. c #1E488D", +"u9. c #264B90", +"v9. c #2C5297", +"w9. c #000207", +"x9. c #041026", +"y9. c #132952", +"z9. c #102853", +"A9. c #102B5B", +"B9. c #102C5D", +"C9. c #0D2B5F", +"D9. c #0F2C60", +"E9. c #0C2A60", +"F9. c #0A2A61", +"G9. c #082961", +"H9. c #042860", +"I9. c #042861", +"J9. c #143064", +"K9. c #5F83BC", +"L9. c #4B6EA9", +"M9. c #3D619C", +"N9. c #315591", +"O9. c #2D508E", +"P9. c #284D8B", +"Q9. c #224683", +"R9. c #2B4F8D", +"S9. c #294D8B", +"T9. c #254988", +"U9. c #2A4E8E", +"V9. c #355B99", +"W9. c #5177B3", +"X9. c #7DA1DC", +"Y9. c #85ABE6", +"Z9. c #89B0E9", +"`9. c #91B5F0", +" 0. c #A3C1F0", +".0. c #395EA0", +"+0. c #2C5395", +"@0. c #1F478A", +"#0. c #20468C", +"$0. c #4469AB", +"%0. c #90B4EC", +"&0. c #90B3E9", +"*0. c #264C8E", +"=0. c #174286", +"-0. c #3C5EA0", +";0. c #6581B7", +">0. c #061635", +",0. c #112A4F", +"'0. c #112A55", +")0. c #0C2B5F", +"!0. c #0A2A5E", +"~0. c #052961", +"{0. c #062761", +"]0. c #03265E", +"^0. c #04265C", +"/0. c #284477", +"(0. c #6287BE", +"_0. c #486CA7", +":0. c #3D619D", +"<0. c #325692", +"[0. c #2C508C", +"}0. c #284C8A", +"|0. c #254888", +"10. c #244887", +"20. c #274A8A", +"30. c #547AB6", +"40. c #80A5E0", +"50. c #7FA5E1", +"60. c #9DBCED", +"70. c #7BA4E1", +"80. c #7FA8E4", +"90. c #80A9E5", +"00. c #3B60A1", +"a0. c #2D5497", +"b0. c #2B5194", +"c0. c #5B7FC0", +"d0. c #5E84C1", +"e0. c #7CA3DC", +"f0. c #4F72B0", +"g0. c #194287", +"h0. c #1C4289", +"i0. c #2A5397", +"j0. c #264477", +"k0. c #041025", +"l0. c #132953", +"m0. c #122854", +"n0. c #0B2A5E", +"o0. c #0B2A5D", +"p0. c #0C2B5E", +"q0. c #0B2A5F", +"r0. c #06295E", +"s0. c #072A60", +"t0. c #082962", +"u0. c #062860", +"v0. c #062760", +"w0. c #03235B", +"x0. c #405D8F", +"y0. c #6286BE", +"z0. c #4367A2", +"A0. c #2F538F", +"B0. c #2E528E", +"C0. c #2A4E8B", +"D0. c #284B89", +"E0. c #2B4E8C", +"F0. c #274A89", +"G0. c #274C8A", +"H0. c #264988", +"I0. c #294E8D", +"J0. c #274D8B", +"K0. c #577BB8", +"L0. c #7CA0DA", +"M0. c #8DB1EB", +"N0. c #99B9EC", +"O0. c #7BA5E1", +"P0. c #81ABE7", +"Q0. c #81AAE7", +"R0. c #2F5699", +"S0. c #21498B", +"T0. c #1E4689", +"U0. c #193D80", +"V0. c #1E458B", +"W0. c #2C559A", +"X0. c #030E1F", +"Y0. c #031023", +"Z0. c #0D295B", +"`0. c #09295F", +" a. c #082A60", +".a. c #082960", +"+a. c #072862", +"@a. c #032862", +"#a. c #4A6A9E", +"$a. c #6386BE", +"%a. c #3F629E", +"&a. c #305491", +"*a. c #305490", +"=a. c #274B8A", +"-a. c #597CB7", +";a. c #234483", +">a. c #294D8D", +",a. c #294C8C", +"'a. c #264989", +")a. c #2B4E8E", +"!a. c #5E81BE", +"~a. c #7DA1DB", +"{a. c #86AAE5", +"]a. c #9CBCF1", +"^a. c #9DBDEC", +"/a. c #7DA7E3", +"(a. c #83ADE9", +"_a. c #83ADE8", +":a. c #88B1EC", +"b. c #052258", +",b. c #0F2B5D", +"'b. c #668AC1", +")b. c #486BA5", +"!b. c #294D89", +"~b. c #274B87", +"{b. c #274B88", +"]b. c #2A4D8B", +"^b. c #315593", +"/b. c #224584", +"(b. c #5D7EBB", +"_b. c #335896", +":b. c #375B99", +"c. c #4C6DAA", +",c. c #34589A", +"'c. c #365C9E", +")c. c #486EAF", +"!c. c #4971B2", +"~c. c #6786BE", +"{c. c #5376B4", +"]c. c #274E92", +"^c. c #325B9D", +"/c. c #2E4B7F", +"(c. c #03060B", +"_c. c #030F20", +":c. c #10254B", +"d. c #08285B", +",d. c #07275F", +"'d. c #06255C", +")d. c #264A86", +"!d. c #234783", +"~d. c #284B87", +"{d. c #294C8A", +"]d. c #4367A5", +"^d. c #3F63A1", +"/d. c #365999", +"(d. c #3B5F9E", +"_d. c #4165A3", +":d. c #6185C1", +"e. c #041123", +",e. c #0F2952", +"'e. c #0A285B", +")e. c #09285A", +"!e. c #09275B", +"~e. c #09295B", +"{e. c #09285D", +"]e. c #07275C", +"^e. c #03275E", +"/e. c #042259", +"(e. c #355893", +"_e. c #224581", +":e. c #274A85", +"f. c #1B3A76", +",f. c #355997", +"'f. c #305391", +")f. c #305392", +"!f. c #4C71AD", +"~f. c #7198D2", +"{f. c #6B92CC", +"]f. c #678CC7", +"^f. c #81A4DE", +"/f. c #8AADE7", +"(f. c #8CB2E9", +"_f. c #8CB2EB", +":f. c #81AAE6", +"g. c #A9C9F0", +",g. c #89B4EF", +"'g. c #7297D1", +")g. c #2C5194", +"!g. c #3D5E9C", +"~g. c #5E7CB5", +"{g. c #355B9F", +"]g. c #466FB0", +"^g. c #0D2044", +"/g. c #0B2243", +"(g. c #0A2555", +"_g. c #0B2656", +":g. c #07285B", +"h. c #06275B", +",h. c #05255B", +"'h. c #07275E", +")h. c #05245D", +"!h. c #345690", +"~h. c #042559", +"{h. c #4C6594", +"]h. c #243964", +"^h. c #476BA8", +"/h. c #0A3170", +"(h. c #375994", +"_h. c #749AD4", +":h. c #7197D0", +"i. c #83AEEA", +",i. c #8CB2EC", +"'i. c #3C61A1", +")i. c #2B5294", +"!i. c #1E4488", +"~i. c #265094", +"{i. c #0B2045", +"]i. c #072655", +"^i. c #032156", +"/i. c #022051", +"(i. c #062559", +"_i. c #2E508B", +":i. c #05255F", +"j. c #042156", +",j. c #022151", +"'j. c #31548E", +")j. c #284A87", +"!j. c #05295F", +"~j. c #516EA0", +"{j. c #9AB6E2", +"]j. c #5070A9", +"^j. c #80A5DE", +"/j. c #779ED8", +"(j. c #7BA1DA", +"_j. c #9FBFEC", +":j. c #1B4184", +"k. c #80AAE6", +",k. c #6187C2", +"'k. c #5C7EB7", +")k. c #99BBEE", +"!k. c #6B8BC1", +"~k. c #21478B", +"{k. c #1E4487", +"]k. c #1D3F7E", +"^k. c #718EC0", +"/k. c #163A7D", +"(k. c #1D4388", +"_k. c #1A4388", +":k. c #062554", +"l. c #8BB3ED", +",l. c #33599A", +"'l. c #07234C", +")l. c #07214D", +"!l. c #072551", +"~l. c #052352", +"{l. c #062353", +"]l. c #062354", +"^l. c #052557", +"/l. c #042252", +"(l. c #0E3069", +"_l. c #274982", +":l. c #264680", +"m. c #88A6DA", +",m. c #6282B8", +"'m. c #98B6E3", +")m. c #16397C", +"!m. c #668ECC", +"~m. c #022250", +"{m. c #385687", +"]m. c #1E3A6D", +"^m. c #082B69", +"/m. c #6283BA", +"(m. c #80A7DE", +"_m. c #82A9DF", +":m. c #82A9DE", +"n. c #040E1F", +",n. c #02214F", +"'n. c #022251", +")n. c #052256", +"!n. c #0D2E62", +"~n. c #0A2F69", +"{n. c #3D5B8E", +"]n. c #26447A", +"^n. c #24457F", +"/n. c #0E326C", +"(n. c #224380", +"_n. c #7698CF", +":n. c #4E6EA8", +"o. c #143873", +",o. c #5474AA", +"'o. c #85ACE1", +")o. c #84A9DE", +"!o. c #86ABE0", +"~o. c #94B7E8", +"{o. c #A1C2EF", +"]o. c #C0D6F1", +"^o. c #C4D9F2", +"/o. c #C7D9F3", +"(o. c #98BDF3", +"_o. c #9CC0F3", +":o. c #80A3DA", +"p. c #637AA6", +",p. c #627BA6", +"'p. c #5F78A3", +")p. c #57719D", +"!p. c #526C98", +"~p. c #4D6794", +"{p. c #4A6592", +"]p. c #476390", +"^p. c #456090", +"/p. c #3E5A8B", +"(p. c #3B5889", +"_p. c #375486", +":p. c #314D81", +"q. c #010304", +",q. c #040406", +"'q. c #030405", +")q. c #021232", +"!q. c #030305", +"~q. c #010303", +"{q. c #010202", +"]q. c #020202", +"^q. c #030E27", +"/q. c #020405", +"(q. c #030304", +"_q. c #030204", +":q. c #03080E", +" $ , > ' > ) > ! $ ~ { $ ] ^ $ ] > & ^ & ! ] ~ / ( _ : < [ / { [ / { } ; | { : 1 2 < { } 2 3 4 : } 5 6 { 7 8 9 0 a } 7 7 b 8 8 6 7 c a 8 b 6 6 d e f g 0 a h 7 i 8 0 7 j k c l m n n h c o p q r r s t u v m p w p t x y z A w B x z C D E D F G H I I A z J A I K L H M N O M P Q R M S T U S H V W P X H Y Z ` P V . .. R X +. @. . #. $. .. %. &. @. *. =. +. -. ;. >. ,. &. '. ). !. '. ~. {. {. {. ]. ^. '. '. ^. /. (. _. :. <. [. }. |. 1. }. 2. 3. 4. 5. 6. 7. 8. 5. 9. 0. 0. a. b. 9. 9. c. c. d. e. d. e. c. e. f. g. g. h. i. j. k. i. l. m. m. n. o. f. o. p. q. q. r. s. t. u. v. v. w. s. x. y. z. A. B. A. C. D. E. F. F. F. F. G. H. I. J. K. L. L. M. N. O. J. L. L. P. N. Q. R. S. S. T. Q. U. V. W. X. T. Y. Z. T. X. `. + .+ ++ @+ ++ `. #+ `. $+ %+ &+ *+ =+ -+ ;+ &+ ;+ &+ &+ >+ ,+ '+ )+ !+ ~+ ~+ {+ ]+ ^+ /+ ~+ (+ ~+ ~+ /+ ~+ (+ _+ :+ <+ /+ [+ }+ |+ |+ 1+ 2+ 3+ 4+ |+ 4+ 3+ 5+ 6+ 7+ 8+ 3+ 9+ 0+ 8+ 8+ a+ b+ c+ d+ d+ e+ e+ d+ e+ c+ f+ d+ d+ f+ 0+ 0+ g+ h+ i+ j+ h+ k+ l+ m+ n+ h+ h+ h+ n+ h+ k+ o+ p+ m+ q+ h+ n+ r+ s+ t+ u+ s+ o+ v+ s+ w+ w+ x+ s+ x+ x+ x+ y+ z+ A+ A+ B+ A+ C+ C+ D+ A+ E+ F+ D+ G+ C+ D+ C+ E+ H+ I+ J+ K+ L+ F+ D+ M+ E+ N+ L+ O+ L+ O+ P+ L+ L+ Q+ Q+ R+ R+ R+ S+ T+ U+ R+ Q+ R+ V+ W+ X+ U+ X+ U+ X+ W+ W+ Y+ Z+ `+ @ W+ Y+ .@ +@ @@ W+ #@ +@ @@ #@ $@ +@ +@ #@ @@ #@ %@ %@ %@ &@ &@ %@ &@ *@ *@ %@ =@ -@ ;@ *@ >@ ,@ '@ )@ -@ !@ ~@ ~@ {@ ]@ ^@ /@ (@ ^@ _@ !@ {@ :@ <@ [@ }@ |@ 1@ 2@ 3@ 2@ 4@ 5@ 2@ 1@ _@ 6@ 7@ 6@ 8@ 9@ 6@ 0@ 6@ a@ b@ c@ d@ e@ f@ g@ 0@ h@ i@ j@ h@ k@ e@ l@ l@ l@ m@ n@ o@ l@ p@ q@ o@ :. :. r@ s@ t@ u@ s@ u@ (. (. s@ v@ w@ ^. x@ ,. s@ =. y@ ). -. ^. -. z@ A@ A@ B@ C@ +. z@ @. &. D@ E@ F@ G@ H@ X I@ Y J@ H@ ` V J K@ L@ M@ H N@ Y L@ K@ O@ O@ P@ Q@ Q@ N Q@ C A I ", +"R@ S@ R@ + + R@ + + # > T@ ; & R@ > U@ > V@ # > & > . & T@ > ; W@ ; ^ | ) | & ; ; > ] ^ X@ Y@ ) | ~ 1 Z@ [ / / `@ # ) { ) .# +# +# < @# b 2 _ { < W@ ## $# < %# < { $# Y@ 7 $# 5 &# *# =# a 6 -# ;# d a e ># } a { ,# c g f '# a e d a b 0 e h )# h !# h h f ~# {# r o ~# n r ~# ]# ^# /# n (# x C w _# Q@ D m I :# ^# C z w N <# P@ K@ [# N }# N A J z x U z I Y O@ N@ Q@ |# T J Y L@ L@ K@ S P 1# 2# 1# 3# 1# J J@ Z @. E@ 4# Y 1# #. . 5# 5# 6# 7# +. +. 8# W . .. . . &. 9# ;. 0# A@ a# !. ;. .. ~. '. b# c# t@ d# v@ v@ v@ v@ :. v@ v@ e# f# }. g# h# i# }. j# g# k# 7. 6. 6. l# 9. m# 4. n# 9. d. 9. o# m# p# c. e. c. d. c. q# q# d. q# i. l. r# r# s# l. t# l. u# v# n. o. q. t. w# q. t. x# y# v. u. u. s. z# A# B# E. A. F. C. C# D# G. G. G. G. G. G. E# K. J. N. M. L. J. F# O. L. S. O. J. J. O. S. S. G# H# I# O. G# F# Y. J# K# `. `. J# L# T. W. I# M# N# #+ N# N# O# N# &+ &+ P# ;+ -+ ;+ &+ ;+ Q# ;+ R# S# T# U# ]+ V# (+ W# X# U# ~+ (+ /+ Y# /+ Z# `# _+ ~+ Z# 1+ |+ `# `# $ |+ .$ 1+ 3+ +$ 4+ @$ #$ $$ 8+ +$ 0+ c+ 7+ b+ e+ d+ %$ 9+ 0+ 0+ 0+ d+ 0+ &$ i+ d+ 0+ 0+ %$ g+ m+ l+ *$ m+ =$ l+ n+ h+ m+ -$ k+ h+ h+ ;$ n+ l+ -$ n+ l+ l+ >$ ,$ s+ '$ s+ w+ o+ o+ )$ x+ !$ ~$ {$ ~$ x+ x+ ]$ B+ A+ A+ A+ A+ A+ B+ A+ A+ A+ D+ E+ y+ C+ E+ C+ A+ ^$ A+ D+ L+ M+ C+ E+ F+ N+ O+ Q+ /$ Q+ R+ /$ /$ /$ /$ R+ T+ P+ S+ T+ .@ V+ R+ R+ V+ X+ X+ X+ .@ ($ X+ .@ X+ _$ W+ :$ <$ @ @@ W+ +@ @@ W+ @@ @@ [$ +@ #@ %@ +@ &@ %@ %@ #@ #@ &@ &@ }$ %@ |$ *@ 1$ =@ =@ *@ -@ *@ 2$ 3$ '@ 4$ *@ !@ )@ 5$ ~@ 6$ 7$ 8$ ~@ (@ 9$ 0$ !@ a$ b$ c$ 4@ ,@ d$ 4@ 4@ !@ e$ f$ 3@ g$ 3@ 9@ h$ a@ i$ j$ 7@ k$ l$ m$ n$ o$ p$ f@ f@ i@ 0@ n@ l@ q$ r$ i@ f@ s$ l@ p@ l@ l@ t$ j@ h# u$ v$ s@ u@ q@ :. t@ w$ w$ :. w$ x@ x$ (. q@ y$ ^. !. -. !. ). b# ^. ). $. ). *. &. &. A@ !. z$ 5# A$ W #. I@ B$ C$ D$ #. E$ Y V S F$ E@ D$ S M@ M D$ G$ J A N@ H$ I$ H$ M J N@ P@ /# P@ ", +"* R@ J$ K$ # L$ M$ # N$ O$ > > & . ] V@ ; # P$ # > & ; ] . Q$ ] ~ ; ~ P$ & ) R$ W@ [ S$ | W@ { T$ ~ W@ ~ ~ ( ;# U$ [ { 2 { { W@ / ~ [ [ ) +# ## $# / : 2 } } { $# < < $# 6 -# $# ( } $# ~# &# e } g $# V$ b b [ 7 / 9 V$ a 6 V$ !# $# 7 j c a W$ o c X$ Y$ e ~# ~# o n h c Z$ c v h h h m ^# D c p `$ Y$ ^# C % ^# ^# I M N C N Q@ M Q@ N x x A G .% I x x Q@ M T J O@ Q@ P@ L@ +% A L@ P@ M@ ` P J L @% I@ Y H@ G$ C$ I@ #% L@ Y @. E@ z$ #. C$ W $% &. R =. A@ A@ $% A@ &. +. A@ =. $. $% =. =. z@ &. %% ^. {. &% ^. ~. x@ (. v@ *% ^. ~. =% t@ -% }. h# ;% g# >% ,% h# 4. '% 8. 7. 8. )% 9. !% m# ~% 9. e. d. c. d. e. c. e. {% e. g. q# g. c. e. v# v# ]% ^% t# o. /% l. j. s# (% q. t. _% :% (% <% t. <% [% }% t. v. |% 1% A. 2% D# D. 3% D# 4% 5% G. 6% G. H. D. 7% 8% J. 9% O. J. S. O. O. S. O. 0% I# T. S. S. G# Q. a% W. H# L# T. Y. W. J# ++ W. ++ b% c% c% L# #+ #+ d% P# e% f% g% -+ ;+ -+ P# -+ h% ;+ Q# =+ i% j% j% ~+ /+ k% ^+ ~+ ~+ ~+ (+ /+ ~+ (+ l% m% n% 6+ m% m% o% p% p% q% r% s% 1+ $$ 1+ 1+ t% 3+ 6+ $$ $$ 8+ @$ c+ $$ b+ d+ d+ d+ d+ a+ a+ %$ f+ 0+ 0+ m+ 0+ %$ %$ d+ u% n+ h+ n+ *$ l+ v% w% n+ l+ j+ m+ n+ n+ m+ n+ h+ r+ h+ m+ n+ h+ x% u+ y% s+ s+ z% '$ o+ o+ x+ w+ o+ v+ x+ u+ A% A+ A+ B% C+ A+ A+ B% A+ A+ C+ E+ A+ B+ C+ E+ D+ E+ F+ C+ I+ C+ L+ C% E+ C+ D% E% L+ K+ Q+ P+ S+ /$ F% R+ G% S+ T+ R+ S+ T+ V+ S+ T+ V+ ($ U+ W+ .@ .@ .@ .@ X+ W+ W+ @@ H% H% @@ +@ +@ @@ +@ +@ W+ +@ @@ +@ #@ +@ %@ #@ %@ I% }$ }$ J% >@ &@ K% >@ &@ L% -@ *@ >@ M% 4$ >@ '@ N% O% '@ ]@ )@ P% '@ Q% R% 9$ S% T% 8$ U% :@ V% |@ !@ b$ b$ 9$ W% l$ |@ ^@ f$ X% l$ l$ Y% a@ 2@ d@ h$ Z% `% 0@ o$ p@ & .& +& @& #& i@ $& %& p@ && t$ i@ p@ m@ j@ r$ t$ j@ *& t$ =& u@ o@ -& m@ ~. ;& <. u@ {. d# u@ >& ~. $. (. ,& z@ q@ c# -. '. x@ '& ;. %. 5# )& &. )& z@ !& 5# 5# .. z@ X P D$ D$ V P #% Y ` Y P P Y +% H H P@ S N w ~& G K@ A N {& H$ C ", +"+ % V@ # % R@ + + ; + > = ]& # ^& ; V@ + - V@ . & ] ] & ] - < ) / ~ ] ] N$ [ ~ ~ ] ) ~ `@ /& ) { W@ ~ ; { ) W@ ; (& | ) / 2 { } [ } ## $# 1 { ( | 4 $# _& $# < :& 6 6 8 ( 8 6 6 a e 9 $# 8 g <& < $# 8 &# e 8 a a g e i f g [& a }& n e e |& a c ~# r r h c h n Z$ `$ `$ _# {& 1& y h `$ y Z$ D :# x Z$ x C I N I I K x x A G 2& M A @% Q@ z }# A I 3# J I Y Q@ 3& Y K@ O@ A L J L@ X J H T U R S E$ #. L@ L@ C$ V D$ F@ #. C$ G@ =. V 4& .. z@ $% !. 5# %. b# %. ). ;. A@ !. ). &. &% 5& 6& x@ 7& v@ 8& 9& (. 7& v@ b# 9& -% ,% ,% }. 4. 0& a& b& 6. ;% u@ 7. 7. 6. 6. 6. ~% m# 6. ~% !% c& 9. d. m# 9. 9. d. e. {% c. i. d& q# {% i. i. e& f& g& o. j. o. n. o. n. n. t. h& i& j& <% v. s. k& x# l& s. y. z# s. z. 1% B. m& D# F. D. C. G. F. D. F. n& L. L. o& p& O. O. N. q& J. S. F# V. W. r& 0% G# F# Y. T. Y. Y. s& T. b% W. ++ b% T. L# s& T. + e% t& u& v& w& x& R# y& ;+ &+ z& g% &+ ;+ !+ A& B& C& D& k% (+ V# E& F& ~+ ~+ (+ (+ (+ /+ /+ _+ :+ :+ G& H& 2+ Z# |+ |+ |+ s% s% 6+ 3+ 1+ $$ 3+ |+ #$ $$ $$ I& e+ t% 7+ 7+ d+ %$ %$ %$ J& %$ K& 0+ 0+ u% *$ 0+ 0+ f+ d+ %$ L& l+ *$ h+ h+ l+ h+ n+ n+ n+ n+ n+ ;$ n+ h+ h+ m+ n+ h+ M& N& o+ s+ '$ s+ O& s+ y% t+ u+ u+ '$ u+ x+ w+ w+ z+ B+ B+ A+ C+ C+ E+ C+ C+ C+ B% P& C+ C+ A+ A+ A+ C+ D% C+ A+ E% Q& D+ B+ R& S& L+ P+ Q+ P+ L+ /$ T& Q+ T+ S+ R+ R+ T+ R+ Z+ T+ T+ S+ U& U+ V& X+ .@ X+ U+ .@ W+ Y+ X+ W& X& `+ +@ @@ @@ +@ .@ @@ @@ #@ W+ _$ @@ @@ +@ #@ %@ #@ }$ #@ %@ }$ Y& &@ *@ Z& `& >@ &@ &@ =@ >@ >@ * )@ >@ '@ R% .* R% ~@ (@ U% S% W% W% :@ b$ 9$ ^@ }@ +* |@ :@ 4@ g$ @* e$ 2@ |@ #* $* d$ %* &* b$ .& ** .& o$ =* -* %* a@ ;* e@ q$ i@ d@ >* h@ ,* '* )* j@ !* l@ *& ~* m@ u$ {* ]* ^* q@ x$ o@ q@ w$ (. (. :. d# =% t@ 5& !. /* x@ !. &. ,& !. -. ). ~. !. =. &. #. .. =. (* .. _* z@ $% z$ I@ P H@ P L@ H@ H@ D$ L@ H H P@ P T S H$ T K@ P@ P@ N A A :* H$ H P@ J ", +"$ <* $ + % + [* ]& % ]& L$ + # }* . ; ]& V@ T@ & |* 1* Q$ U$ ' & N$ - U$ ^ ; # & U@ ] > | ;# > ^ ) ^ [ | { ~ 2 ~ 1 | | 2 { } : 6 ) , 1 /& [ ) { / $# %# %# d 6 7 < *# e ## 6 $# [ } $# / 6 V$ 7 } &# 8 $# ## $# b 8 ~# 6 2* V$ ,# e 3* 9 g 8 c ~# 0 ~# ~# (# _# ~# n ^# Z$ h ~# Z$ p c 0 c p 4* G r y m y 5* D :# :# p t D ^# u N G 6* D x A x D 7* P@ z Y T A S I@ 8* P@ 3# z S Q@ J M@ P@ Y S T M@ 9* J 2& D$ L Z J J .. P P X +. 0* +. $% ;. &. A@ >. A@ +. -. +. A@ !. ). A@ %. x@ $. x@ !. a* '. |. b* =% {. '. c* |. d* ). t@ '. e* c# e# 9& 3. f* f* q@ 4. }. g* 7. n# 6. 6. 7. k# 8. 5. -& 7. h* i* 9. j* k* d. d. e. {% c. c. d. i. i. i. {% f. l* m* m. g& j. l. n* h& o. w# (% o* v. x# p* q* x# x# x# z. v. v. k& E. z. s. B# B. D. F. m& D. D. F. H. r* H. G. 5% 7% 9% G. n& O. J. 0% O. S. J. r& S. Z. S. F# F# F# Q. T. W. ++ ++ ++ J# s* T. ++ + s& b% u& #+ $+ t* u* R# v* R# w* -+ &+ =+ =+ &+ ;+ ;+ D& )+ x* =+ Q# y* ^+ ~+ ~+ (+ /+ ~+ (+ (+ ~+ ~+ /+ z* p% o% H& Y# A* B* C* s% H& r% s% D* E* 4+ 8+ 3+ s% 7+ 8+ t% a+ @$ D* 7+ 0+ 0+ F* 9+ d+ e+ 0+ %$ G* %$ *$ f+ 0+ j+ 0+ H* L& ;$ *$ h+ h+ h+ h+ n+ l+ n+ I* n+ l+ n+ h+ l+ n+ n+ ;$ s+ l+ '$ t+ s+ s+ J* x+ '$ s+ w+ w+ u+ w+ w+ x+ x+ x+ A+ B+ C+ B% B+ K* E+ A+ C+ A+ B+ B% C+ E+ D+ P& F+ E+ E+ E+ M+ E% C+ F+ D+ L* P+ P+ O+ R+ P+ Q+ L+ S+ Q+ S+ R+ P+ P+ G% R+ U+ R+ T+ V+ R+ X+ X+ X+ @@ W+ W+ U+ W+ .@ V+ H% M* .@ X+ @@ +@ +@ +@ #@ #@ +@ +@ +@ +@ @@ #@ #@ &@ %@ &@ %@ &@ &@ %@ &@ * &@ %@ =@ &@ '@ *@ *@ -@ >@ N* 2$ ]@ O* 9$ T% ~@ {@ ~@ P* U% Q* 1@ R* :@ /@ [@ d$ !@ X% S* f$ f$ 6@ 3@ T* %* X% l$ 9@ l$ X% 6@ U* 7@ .& o$ .& V* k@ m$ f@ W* p@ %& f@ X* u$ m@ Y* l@ -& Z* `* t$ o@ u@ -& ^* = W* -& u@ =& s@ t@ x@ %% b# w$ ). ^. v@ ^. z@ 5# (. *. ;. A@ ;. ). ,& 5# B$ .= G@ %. z@ &. z@ E@ H@ @. Z P Z J V E@ 2# ` 1# R M@ S += H@ S M J S Q@ O@ N@ I @= I #= w N ", +"[* # # * & - . - V@ . & T@ . $ V@ T@ V@ V@ > # > - ] $= & `@ . ] |* ] %= ~ ] | < 6 | ^ | ) Y@ [ ;# ~ ~ ~ ~ &= 4 $# / } | : { %= & 2 %= / { d < : < &# ( Y@ &# $# $# 1 d d 6 $# / 7 V$ b b V$ } *= [ a b 9 6 7 d ~# [& b g ~# 6 f a ~# == b c _# c {# c o -= _# ;= ~# p W$ Y$ n j c y Z$ C N q Z$ p ^# C C n N @% m N I z w x >= x P@ w A J I A I Q@ Q@ J A L@ H L Y C$ A G H$ U C$ P@ T H P@ H #. S L@ .= J C$ V 7# C$ I@ +. B$ ,= ,. 5# C$ 7# &. 7# +. . +. '= &. %. b# ;. )= b# b# . {. ~. /. /. d* v@ c* d# ). != t@ ^. t@ q@ ~= c* q@ {= v@ 2. l# }. a& 7. 7. '% 7. 6. ]= f# 7. m# p# ^= /= c. e. c. c. e. d. e. c. 9. (= e. q# q# i. i. i. j. w# /% m* _= k. := n. v# r. n* <= x# (% r. s. s. v. s. v. s. B# B# [= z. z. A. D. }= C. }= C. C. H. D. D. H. G. D. |= 1= M. 2= J. L. V. L# O. 3= S. O. F# F# F# H# H# T. H# T. N# T. T. T. ++ b% N# H# ++ T. + u& t* 4= ;+ $+ 5= ;+ -+ &+ &+ ;+ -+ &+ 6= 7= 8= 9= 0= D& a= (+ X# W# (+ (+ /+ Y# (+ /+ b= /+ m% `# 1+ }+ (+ c= Z# d= `# `# 2+ }+ t% 8+ 6+ I& 8+ 3+ 4+ t% t% a+ e+ 8+ a+ 0+ 0+ d+ 0+ 0+ 0+ G* 0+ e= 0+ i+ K& %$ f+ u% 0+ %$ ;$ j+ j+ l+ ;$ f= l+ h+ n+ i+ l+ n+ l+ n+ n+ n+ m+ l+ >$ n+ >$ t+ g= s+ l+ h= u+ s+ i= u+ w+ j= '$ w+ w+ !$ i= A+ A+ A+ B+ B+ C+ E+ C+ A+ C+ B% E+ A+ I+ C+ C+ A+ D+ D+ E+ E% k= C+ E+ l= N+ S+ L+ /$ S+ S+ S+ L+ /$ R+ S+ P+ P+ P+ R+ U+ X+ V+ V+ V+ R+ X+ .@ R+ X+ W+ m= X+ V+ F% @ n= m= V& @@ @@ #@ @@ @@ +@ +@ %@ W+ @@ #@ #@ %@ #@ +@ %@ #@ %@ #@ #@ +@ $@ o= *@ =@ p= 4$ *@ '@ q= {@ r= s= t= 2$ * 9$ ~@ u= T% (@ R% 6$ v= 9$ w= !@ !@ d$ x= :@ b$ f$ 9@ ** 6@ 2@ 8@ T* y= 7@ .& .& g$ p$ 8@ h$ m$ e@ .& z= A= =* ,* i@ )* u$ *& '* ~* l@ ~* ]* *& -& l@ <. B= u@ C= u@ (. s@ ~. D= (. {* (. (. '& ). ^. !. x@ ^. {. &. A@ *. &. x@ =. v@ A@ %. -. -. .= 5# >. z$ 5# $% L@ P 4# B$ 5# 4# I@ H@ O E= J T P Y S J@ M T M S Q@ @% Q@ F= z A S G z ", +"# ; # G= V@ + R@ + . V@ > # > . # V@ ^ * > H= - 1* . & > & U$ . ]& ] | { ~ ; & & ~ { 2 N$ N$ W@ ~ %# 2 2 < 4 2 ) $# : 2 } { W@ U$ 2 2 7 I= &# $# } $# 7 &# j $# [ 8 8 ( ~# J= $# / { $# e $# &# 7 ~# } &# 6 7 < 6 c g e ,# a e e K= 6 2* e a 7 j l h g c L= (# y g `$ n 0 l m {# r ~# Z$ s p p -= ^# M= `$ m C ^# C C A B ^# N N H$ A N M I z N@ J O@ I N= N M P@ A I Q@ E$ P@ I H S 1# L@ I@ L@ A X H )= H 4# V L@ I@ V V C$ T E@ .. 5# .= I@ +. H W P X O= 7# ). .= B@ C@ &. ). A@ +. 6# '. != ). != d* =. '= ~. '. b# 1. (. {. P= *% _. Q= q@ |. P= }. 2. 3. '% 8. 8. 8. 7. 7. R= 6. f# m# ^= 9. b. 9. d. 9. p# d. c. e. e. c. e. e. q# f. c. i. S= S= S= T= l. U= [% o* V= w# o. i& t. (% W= v. t. s. z. X= z. z. [= B# [= X= Y= m& F. Z= B. 3% H. H. D. D. D. M. 9% L. 8% `= 2= L. O. o& S. S. F# p& O. - S. .- F# J. G# Y. H# L# Y. T. M# K# b% +- b% K# b% u& @- #- #- ;+ B& $- g% g% &+ %- g% *+ =+ ;+ 7= &- g% *- 9= {+ (+ ]+ k% ~+ (+ =- -- X# Y# Y# (+ /+ m% _+ `# m% Z# `# 3+ A* 4+ ;- c= 4+ 8+ 1+ @$ t% t% >- 7+ t% $$ I& b+ 8+ d+ d+ G* b+ 0+ 0+ %$ %$ %$ G* %$ n+ ,- 0+ %$ G* d+ '- f= )- ;$ n+ v% n+ l+ l+ h+ l+ n+ h+ n+ n+ h+ >$ l+ n+ n+ h+ !- '$ )$ s+ s+ u+ '$ s+ w+ w+ s+ u+ x+ u+ x+ u+ ]$ B% C+ A+ C+ B% B% A+ C+ y+ C+ E+ C+ B+ ~- C+ B+ A+ R& C+ O+ {- ]- C+ ^- N+ S+ O+ O+ Q+ L+ O+ O+ Q& /$ /- Q+ Q+ /$ Y+ X+ ($ R+ (- V+ V+ Y+ X+ ($ W+ X+ X+ W+ X+ m= X+ _- `+ V& W+ @@ X+ @@ +@ +@ %@ :- @@ +@ @@ +@ %@ #@ #@ +@ %@ %@ *@ *@ %@ #@ %@ <- >@ %@ [- >@ *@ I% L% o= 6$ S% )@ (@ ,@ T% 5$ +* a$ 5$ {@ /@ R* d$ 4@ :@ W% }- |- 9@ 4@ b$ X% 4@ 9@ 2@ 1- 9@ 7@ 2- %* 7@ ** 3@ o$ o$ h@ m$ X* m$ i@ i@ )* u$ >* =* ~* {* ~* s@ t$ 3- t$ -& m@ C= -& s@ q@ w$ :. '& t$ x$ (. ~. d# >& ^. (. C@ v@ v@ /* x@ ). !. ). x@ A@ 5# $% -. 4- 0# 6# z@ #. ,. G@ .= H 7# .= #. 7# J G@ C$ M@ T L@ Y H@ J J Y L@ ` J S A Q@ Y G I I A I N ", +"= - M$ % ]& V@ # > V@ ^& ] | | N$ - 5- = . > + + 1* ; S$ ; ) . R$ ] H= ] ] & ~ N$ *# | *# ] | | ; ) [ ## $# 6- { ^ < 7- [ | [ [ X@ *# -# d { 4 } < ( / W@ b 6 ( ,# &# 8- d } a < $# 2 b a e *= -# $# $# b e $# e a 7 6 ,# h 9- c o h !# o 3* a c ~# n r c ~# s o L= r ^# r o r h Y$ 0- /# u m t `$ G D `$ I D B G p I C `$ :# /# z A 8* H$ I F= a- b- G Q@ x c- H J H$ J K@ P@ C$ H L L@ H T L@ P@ P@ Y L@ d- H T J@ #. O= E@ L@ R G@ . e- )& f- @. y@ G@ V (* e- 6# +. -. +. 5# A@ !. *. A@ b# '. v@ ^. ^. g- h- 9& v@ 9& ^. |. :. ). ,% *% 9& '. &% 0& 1. 9& q@ ;% ~% }. 6. 6. 8. 7. 6. 6. 6. 7. b. i- !% j- 9. m# m# 9. d. c. e. o# {% {% c. g. q# {% c. f. c. g& g& s# m. l. o. o. k- (% (% w. <% l- t. t. s. s. s. z. z. [= Z= m- B# E. D# F. n- D# F. D. G. D. G. G. o- G. O. J. 2= O. L. J. J. E# J. S. O. O. S. H# p- - Q. Q. H# H# T. T. T. I# K# ++ M# ++ `. K# + @- d% q- ;+ P# &+ d% %- &+ &+ -+ &+ ;+ ;+ ;+ S# =+ ;+ r- {+ ^+ ~+ k% ^+ ^+ s- ^+ /+ Y# (+ /+ W# (+ m% `# Z# Y# |+ t- u- 1+ s% 1+ 4+ v- w- 1+ 7+ 8+ 1+ t% t% 8+ c+ %$ 8+ t% 0+ %$ e+ %$ 0+ 9+ %$ e= %$ %$ *$ u% 0+ G* 0+ 0+ x- y- k+ I* l+ z- n+ n+ m+ l+ n+ m+ m+ l+ n+ l+ r+ m+ m+ n+ n+ A- t+ '$ '$ s+ u+ '$ '$ u+ !$ x+ t+ u+ w+ '$ x+ A% A+ B% B+ C+ A+ A+ D+ C+ A+ A+ B- A+ E+ y+ E+ A+ E+ E+ E+ C- E% C- A+ D+ k= Q+ O+ L+ Q+ R+ S+ E% L+ O+ L+ P+ S+ T+ Y+ T+ T+ S+ S+ R+ V+ V+ T+ X+ W+ .@ W+ X+ X+ Y+ Y+ <$ X& W+ @@ W+ #@ X+ W+ @@ #@ +@ +@ @@ +@ %@ %@ &@ %@ &@ +@ #@ &@ &@ &@ %@ &@ 4$ >@ D- E- * =@ Q% 4$ *@ 7$ I% F- q= G- * Q% R% /@ {@ H- I- 9$ J- X% J- V% e$ :@ ^@ f$ J- X% 1@ 3@ K- 6@ c$ 8@ L- 6@ .& h$ X% a@ m$ m$ 0@ d@ ;* m$ c@ 0@ e@ 0@ i@ >* f@ ^* ^* t$ M- p@ k@ -& m@ N- =& (. O- q@ <. '. P- :. Q- :. b& x$ c# (. ^. '& v@ ). )& ^. A@ >. 5# -. ;. z$ 5# .= E@ R z@ 5# +. V E@ B$ X ` C$ 5# Y T T X T H Y E= J I I P@ M A z H$ A z A N :# A A ", +"& > $ R- + S- R@ + # # 1* Q$ + V@ H= - & - H= ; & - > ] > & - 2 ) ; [* 2 ~ ^ | | | ; 1 ] - ) ) { T- | ## { ~ 2 1 & ) 2 : [ ## < $# -# ## { < 6 7- 3 { -# &# { $# V$ Y@ ( &# :& ) < Y@ ( 7 7 7 7 V$ j U- i 6 7 } : V- n L= $# n L= 7 e ,# g e $# c n ~# o Y$ `$ j h _# L= _# h l n n _# y r _# p r G C C G ^# #= N ^# {& N C N D Q@ S M A Q@ I S A K z H$ M L@ P@ E$ P@ T I #= U L T P@ P@ D @% C$ P@ Y D$ H G@ 4# P =. I@ z$ V C$ X . L@ R 5# )& ). G$ $% A@ '= b# ). A@ z@ &. W- =. &. b# ^. '& '= (. 5& $. 5& v@ {= *% '= {= w$ b# _. :. {= 2. 9& e# e# 7& j# >% X- }. 7. 7. 6. 7. 8. 6. ^= !% 9. 5. Y- 9. e. e. e. e. c. e. c. {% e. {% {% i. f. Z- q# f. f. h. S= t# m. n* o. l. l. o. o* s. i& v. v. k& s. z. [= z. s. 1% 1% `- z. [= F. C. D# C. C. F. F. D. H. H. H. J. E# ; J. J. L. O. S. O. S. p- o& R. p- p- r& Q. T. T. T. F# H# b% ++ K# ++ M# %+ t* s& .+ #+ .; t* 4= ;+ &+ z& +; #- =+ ;+ ;+ &+ &+ -+ ;+ Q# @; x* #; $; ~+ ]+ %; ~+ X# /+ E& (+ (+ ~+ /+ Y# &; `# :+ /+ H& `# s% |+ H& `# ;- u- 8+ 3+ 1+ 8+ 8+ +$ t% $$ b+ G* c+ t% a+ %$ e= %$ 0+ %$ d+ a+ 0+ G* u% i+ %$ 0+ %$ G* *; g+ n+ f= k+ m+ h+ n+ h+ h+ l+ l+ ;$ l+ h+ n+ >$ =; f= l+ h+ h+ M& A- -; '$ w+ u+ s+ o+ w+ w+ s+ i= !$ x+ w+ A% C+ A+ A+ A+ B- B+ A+ A+ A+ B+ A+ C+ ;; E+ C+ A+ C+ D+ E+ D+ M+ E% C- E+ E+ >; Q+ /$ O+ Q+ R+ Q+ /$ O+ k= S+ S+ R+ R+ S+ V+ R+ R+ V+ Y+ ,; V+ V+ V+ V+ X+ .@ Z+ Z+ Z+ W+ H% :$ @@ X+ #@ #@ W+ W+ +@ #@ @@ +@ #@ %@ *@ &@ &@ &@ #@ %@ '; *@ &@ *@ K% ); *@ !; [- ~; &@ Q% >@ '@ Q% {; 5$ R% /@ R% {@ V% {@ O% 8$ N% R% U% ]; /@ @* ^; /; 2@ f$ |@ (; }@ 2@ 7@ 9@ |@ l$ 6@ a@ 6@ _; 7@ 7@ l$ .& =* o$ e@ X* h@ g@ 0@ d@ h@ p@ i@ j@ j@ m@ u@ x$ :; =& l@ -& x$ ^* v@ q@ w$ v@ (. B@ c# /* {. /* 5& w$ (. d# d# '. ;. A@ z@ <; !. . 5# $% (* &. A@ -. 5# =. 5# =. z$ z$ [; }; L@ P@ R H 2# Y D$ P@ I Y H$ |; M J P@ I I I ` H$ z A z I G ", +"+ M$ # . V@ . & + > & . - %= > $ ] - V@ ; S$ > > ; . - > & = R$ (& ] ; & | %= W@ ~ S$ ; X@ ~ ~ N$ ;# 2 ~ 2 | N$ { ) +# 1 { [ } : / ## < ,# d { 1 7 $# } ) ## V$ } : ( $# &# $# ## } 6 } &# 7 } { 9 6 6 8 V$ a g a 7 h g g g e e a e j r a s c 1; c Y$ `$ ~# 2; y h h h h Z$ `$ y Z$ ^# C G y G #= z x A m C m Z$ C P@ x 7* N x M M M@ P@ N@ L@ M I A J S C$ M@ G$ 3; 4; H Y E$ M T U H B$ D$ X .. X H@ z$ @. #. z@ 5# @. @. +. 7# 9* . E@ @. y@ (* . ;. z@ #. +. &. $. 5; -. =. ~. ~. b# A@ &. x@ v@ 6; 7; v@ x@ *% 7; c# h# P= *% {= 8; 9; ;% ;% :. e# f# f# 7. 7. 6. k# 7. ^= 7. 6. i- 0; a; 9. 9. d. d. 9. d. d. e. e. c. Z- Z- i. r# {% {% i. f. g& S= l. n* b; n* w# <= <= p* v. [% r. v. X= z. t. v. B# v. z. k& v. v. c; D# G. D# z# D. H. F. 6% H. G. M. q& `= L. L. O. J. O. F# - S. o& r& J. W. - d; Y. S. .- ++ H# .- b% ++ N# M# M# M# .- b% M# +- e; f; g; R# ;+ g% .; .; &+ )+ &+ =+ &+ &+ &+ Q# !+ h; =+ k% ]+ /+ Q# (+ /+ /+ (+ (+ /+ (+ /+ /+ (+ _+ `# 2+ /+ Z# s% s% H& s% |+ |+ #$ 3+ 4+ 3+ i; 6+ 8+ $$ 8+ j; e+ J& 7+ 0+ b+ a+ %$ %$ %$ 0+ %$ e= G* ,- k; G* u% ,- %$ '- g+ )- f+ h+ n+ m+ l+ l+ ;$ l; m+ m+ n+ ;$ >$ l+ n+ n+ l+ h+ n+ s+ t+ '$ x% J* s+ >$ o+ i= u+ s+ s+ !$ u+ j= A+ C- m; A+ B% B+ B% A+ C+ E+ n; A+ ^$ A+ C+ B% C+ B+ E+ E+ o; Q+ M+ C+ E+ D% L+ L+ E% O+ S+ Q+ T& Q+ R+ S+ S+ P+ R+ G% R+ T+ R+ T+ L+ S+ T+ T+ V+ X+ .@ .@ X+ X+ W+ X+ _- @ W+ W+ X+ @@ #@ p; +@ +@ +@ +@ +@ W+ #@ $@ [- q; &@ *@ &@ %@ ;@ #@ &@ ~; *@ *@ Q% r; 1$ I- N% * '@ ~@ I% * s= s= W% s; /@ w= ,@ t; R* e$ b$ !@ R* ^@ 9$ ]; U% 2@ 4@ |@ |@ X% 6@ u; l$ j$ a@ v; e@ w; a@ 0@ =* x; o$ u$ )* y; p@ ,* >* h@ W* >* >* o@ q@ M- t$ t$ q@ Y* o@ u@ i@ ~. -& l@ :. t@ 7; {. (. s@ 0& x@ &. v@ '. '. *. C@ -. x@ !. !. +. A@ &. A@ B$ -. e- (* G@ +. 5# C$ X B$ .. .= }; L@ G@ C$ 1# S z; P@ H ` ` X S M@ I z H$ Q@ M A I I A x ", +"# L$ . ; R- $= V@ > > = # > & N$ # U@ V@ - ] S$ & > - T@ > |* ; ^ ] ] ] ; | $= | A; ) ) ] ) W@ 2 ^ 5 { | ;# ; ^& J= ) %# | [ [ 1 : ( &# 2 } < == { 5 < : &# } $# [ 6 V$ 9 $# b d ~# X$ } $# b 6 b -# 6 B; a d } ( 1 c o 0 0 g e a 7 Y$ 7 V$ 6 7 ~# n ~# h c h t Z$ _# s p -= n o C; Y$ ,# _# f /# D _# `$ s O@ m % {& B Z$ ^# m D; N G B I A @% M O 7* A J P@ E$ H$ A S A A M E; T J J M J H T G$ P L@ W R P H 4- @. T E@ .= X 5# W @. z@ .= W A$ 5# )= F; A@ ;. ). C@ G; '. $. ). ). ,. ). '. !. h- !. /. =% 8& 7& /* /* |. H; 9& |. 8& {= X- s@ s@ g# g# }. ^= 9; 8. 8. 9; 6. '% '% 8. I; >% !% ^= ~% d. 9. d. d. e. e. {% {% e. e. {% q# q# Z- i. q# g& S= J; f. p* l* K; o* o* L; W= u. v. (% v. t. s. t. t. k& z. v. [= z. s. M; 3% D. B. N; O; P; F. G. 6% G. D. G. H. 9% J. L. L. N. L. E# O. q& p- O. Q; F# F# Q. O. F# H# .- .- ++ ++ ++ + R; Y. b% .- t* b% #+ `. b% d% ;+ u& R# d% &+ =+ =+ =+ -+ &+ 7= D& S# *+ 0= *+ S; T; X# <+ /+ Y# Y# Y# /+ /+ /+ b= /+ Y# Z# Y# Y# Z# s% 1+ 6+ 1+ s% s% @$ 4+ I& 8+ 8+ 1+ +$ D* 7+ @$ 0+ t% 8+ c+ e+ 0+ G* d+ d+ d+ u% 0+ e+ d+ f+ %$ u% u% G* U; '- j+ *$ n+ l+ n+ m+ l+ k+ f= m+ n+ m+ n+ n+ l+ n+ l+ =; m+ h+ '$ s+ t+ V; W; {$ t+ '$ w+ w+ o+ u+ x+ w+ x+ A% C+ B+ A+ B- C+ A+ w+ B+ B% B+ A+ C+ D+ E+ y+ E+ E+ E+ F+ A+ Q+ X; C+ D+ C+ Y; P+ Z; L+ S+ S+ Q+ L+ R+ R+ P+ R+ R+ Q+ P+ G% R+ T+ G% /$ V+ .@ X+ W+ W+ U+ X+ X+ Z+ `; @ X& X+ .@ W+ X+ `; +@ W+ @@ @@ @@ #@ #@ +@ #@ +@ %@ *@ &@ %@ > > <- &@ ~; I% '@ *@ >@ * t= .> U% 7$ * +> >@ )@ * U% * '@ {@ /@ !@ R% V% v; }@ @> W% S* @> X% X% X% /@ 8@ 6@ 6@ m$ o$ m$ o$ a@ Y% 0@ X* ;* -* 0@ )* e@ ;* u$ j@ && f@ ~* l@ o@ i@ n@ p@ l@ l@ u$ m@ 3. j- O- <. =& -& q@ q@ ^. x@ u@ #> v@ d# u@ B= ). &. {. {. !. !. &. -. -. A@ 5# $% &. 5# A@ C@ A@ #. z@ . R #. X $% $> 4# J F@ H@ M J I@ H@ H S %> S Q@ L@ J M J P@ 7* &> K@ M= I z ", +"+ # $ $ R@ # & + # T@ = ; = Q$ R@ ^ > > U@ ; - > > > + S$ & { ] ; [ ) ~ ] | N$ N$ | ~ < [ ^ ) ^ # { ## ; ~ *> , : [ [ ~ ~ 2 : < ] : $# } X@ } *# < [ $# < ## &# V$ : b 7 6 a j &# => V- 8 =# =# V$ -> -# 3* 7 ;> 7 0 h :& i c o e a e i >> a ,# ,# ~# h *= 7 0- ,> ~# r Y$ Y$ p h r `$ c C; y y '> h D M= C G D ^# F +% C C G G A A N C K N O O@ M I U M@ E$ J S D$ )> K@ 8* T L@ P@ X T T L@ I@ H Q@ Y L@ ` D$ O= X R H B$ $% 5# +. W )= #. !> O= z@ A@ . (* ;. ;. &. =. =. ). =. =. {. (* $. '& /. {. v@ {. |. {. |. {= t@ P= j# e* v@ e* Q= h# a& a& a& ~> g# k# 9; ;% 6. 4. 7. 8. 8. 6. ^= Y- e. 0. {> m# 9. d. e. e. 9. {% c. e. ]> {% {% c. f. Z- i. ^> /> m* l* n* K; J; n. s# n* (% (> <% [% o* v. v. s. v. s. u. s. z. _> :> <> Z= 3% F. D# [> 4% H. G. 6% H. H. H. 5% q& F# J. `= O. S. O. O. S. @+ V. L# Y. S. O. F# S. }> b% F# |> ++ T. ++ b% ++ ++ t* b% 1> M# f% #- #- g% &+ u& 2> 7= &+ ;+ *+ ;+ 7= 3> =+ =+ ;+ r- 7= #; ^+ /+ 4> (+ (+ 5> b= /+ ~+ ~+ (+ /+ c= `# Z# /+ _+ s% s% :+ _+ 1+ `# I& @$ 3+ #$ 7+ 3+ I& t% 7+ 7+ %$ 0+ 7+ e+ d+ d+ d+ d+ d+ %$ %$ d+ %$ 0+ *$ u% f+ i+ G* e= g+ l+ l+ 6> l+ l+ l+ q+ n+ l+ l+ l+ n+ n+ n+ n+ n+ n+ >$ ;$ h+ -; s+ s+ >$ W; 7> '$ s+ !$ !$ 8> s+ w+ w+ v+ 9> x+ C+ A+ A+ A+ B% y+ C+ A+ A+ A+ E+ D+ E+ n; B+ C+ C+ E+ C+ E% E% E+ E+ E+ 0> N+ Q& O+ a> O+ /- P+ S+ L+ S+ R+ R+ T+ /$ R+ V+ Y+ T+ S+ T+ .@ U& W+ W+ U+ W+ W+ U+ X+ U+ _- b> X+ `; W+ @@ W+ W+ @@ +@ @@ +@ %@ %@ #@ [$ #@ &@ #@ p= c> [- *@ *@ #@ %@ &@ -@ 4$ p= >@ q= d> e> * P* f> )@ /@ 9$ H- ^@ :@ T% S* 9$ !@ g> 3@ ^@ L- 4@ W% h> X% l$ f$ i$ 2@ 8@ ;* 8@ v; f$ 7@ 0@ X* c@ o$ o$ d@ %& t$ )* g@ +& r$ :; i> s$ {* t$ p@ m@ a. l@ `* =& i> u@ j> u@ ;& k> u@ ~. ). ~. w$ a# {. = w$ (. 5& x@ (. t@ -. {. l> ). !. ). 5# *. !. &. z@ =. (* m> $% E@ a* .= Z E@ n> .= G@ B$ U K@ E$ H Y H E$ o> P@ J P@ L@ H ` H P@ :# I 8* M I ", +"> V@ - * # > Q$ + . . ]& ; $ > + . ; & H= `@ ] - . ] + ~ $ V@ ^ ; Q$ | ~ | N$ | ] { ; ] ~ ~ ~ $# Y@ ] ; $# ) { *# ~ ) ( p> } 6 ## { [ } $# 2 ## &# ## ) : 6 $# < : ( : ~# 2 8 9 e } $# 0 q> ># 7 b } 7 g 6 -# 1 0 ~# e ~# 0 r> J= g h j V- e e n g 7 a '# }& Y$ c Y$ r s> Z$ `$ Z$ Z$ r `$ q G `$ % :# C Q@ A G F 7* E$ D P@ |# I K I z A x w H C A H$ I H S Q@ Y E$ I Y Y M A ` t> C$ 3# C$ I@ T D$ P L@ T C$ T D$ L@ D$ C$ 5# 7# +. E@ +. 7# 5# . . 4- . z$ !. . A@ 5# ;. x@ A@ b# *. . {. u> '. b# v@ ). v@ /* t@ -% _. 9& 9& 1. :. v> 9& d* h# b& a& }. X- 9; 7. }. 8. 9; 8. 7. g* 6. ^= 0. 9. b. 9. d. e. e. e. c. e. w> e. c. c. c. c. d. f. c. q# q# r# l. x> j. o. x> w# n* n* v# o. t. y> (> w. z> v. v. s. 1% t. z. X= A> Z= B> B# }= 4% Z= P; C> D. D. G. G. H. n& L. S. J. `= O. F# J. H# D> L. o& F# Q. Z. V. H# Y. Q. T. H# 1> H# s& ++ t* b% b% ++ b% E> s& u& u& c% 7= &+ f% g% -+ =+ ;+ ;+ 7= 3> 3> F> F> ,+ 9= G> *+ j% /+ a= H> /+ I> Y# b= W# /+ Y# (+ b= |+ o% b= c= s% 1+ |+ s% J> 1+ 1+ 3+ ;- 6+ 7+ @$ @$ @$ 7+ t% K> 0+ 7+ b+ 0+ %$ %$ d+ %$ a+ 0+ %$ 0+ %$ -$ f+ %$ )- G* k; 0+ n+ ;$ g+ j+ ;$ ;$ h+ L> l; ;$ l+ l+ ;$ m+ h+ r+ n+ ;$ s+ n+ n+ s+ s+ j= x% 7> t+ s+ w+ x+ x+ M> N> {$ !$ w+ w+ A+ C+ A+ K* B% A% A+ C+ A+ B+ C+ A+ J+ A+ C+ A+ E+ ~- D% C- L+ M+ O> A+ D% S+ P> L+ Q+ E% R+ S+ R+ /$ P+ R+ R+ T+ G% Y+ X+ V+ T+ V+ Y+ U& V+ W+ X+ @@ W+ @@ X+ X+ X+ .@ Q> W+ W+ W+ @@ W+ W+ +@ #@ +@ +@ +@ +@ +@ +@ +@ %@ %@ ;@ R> #@ *@ *@ *@ %@ *@ S> $@ >@ `& ,@ H- '@ =@ q= ~@ q= * :@ +* T> H- {; R* 9$ {@ U> !@ R* 4@ e$ 4@ f$ }@ X% X% 3@ 6@ 9@ 6@ 8@ l$ i$ c$ h$ 3@ g@ >* ~* q@ m@ -& l@ -& q@ B= q@ '& ^. = x$ w$ c# (. B@ V> w$ ^. d# _. t@ !. '. = {. q@ ^. x@ ,& '. {. b# {. {. W> B= = :. '. x@ ). !. ). &. &. .. A@ e- &. A@ 5# 5# +. &. @. 5# }; X 4# @. G@ H@ T X> J R }; H P A O S H$ J J@ A A G H$ |; Q@ I ", +"* & V@ . V@ # % + R@ [* . R@ + > - - ' $ ; ; . # ; U@ . * # ] V@ > > ] ] *> ; 2 ~ ~ ^ X@ 2 -> *# 2 2 N$ N$ ; N$ / 2 N$ [ == : &# 5 5 ## [ *# : ## { [ $# | | } 2 < a $# -> V$ ) W@ b b &# [ Y> == b 6 b } d b b 7 -# b 6 8 6- q> c a j r ~# c Z> i ~# o *= 7 o ^# ^# L= N p C; ^# m _# h p y p p n `$ x D w s 6* M C I :# C a- {& M= G I A P@ P@ K@ M ^# G P@ L M I L 8* J J Y P@ I@ H L L P G@ 9* D$ 4# L@ P H T I$ J M@ U @. X .= G@ 5# (* . . +. %. A@ 6# ). -. =. ;. =. *. A@ +. =. A@ -. '= 9# &. '. |. 5& ;. |. 1. `> ~. v@ , 8& t@ :. c* , s@ b& b& ., P= e# 8. 4. a& }. R= 6. 7. +, 6. 8. 9. m# 0; Y- 9. e. d. e. {% d. d. e. e. c. c. c. i. i. {% f. g& f. l* f. u# (% J; n* (% t# p* v. q* := r. (% @, v. z. s. k& v. _> s. s. z. A> #, H. $, z# 9% G. H. `= D. D. D. H. K. L. L. Z. o& J. O. S. H# F# S. F# Q; a% F# O. F# T. ++ Y. L# ++ ++ b% q- +- $+ b% s& #- +- u& b% $+ &+ ;+ -+ &+ &+ -+ &+ =+ 7= ;+ ;+ F> S# 7= r- D& ,+ -- %; %; (+ (+ /+ Y# ~+ (+ Y# Y# %, b= |+ 2+ Y# %, s% }+ %, 1+ }+ |+ q% s% s% r% 3+ ;- 6+ t% 8+ b+ %$ F* 7+ K> G* %$ 0+ %$ %$ %$ G* G* %$ u% )- G* 0+ j+ G* &, *; h+ U; j+ l+ *, n+ n+ l+ l+ L> l+ l+ ;$ n+ >$ =, n+ l+ l+ n+ o+ u+ s+ '$ w+ u+ s+ '$ x+ w+ M> '$ w+ w+ x+ '$ C+ A+ A+ B% B+ B- A+ C+ C+ B+ B+ A+ A+ D+ B+ C+ E+ C+ J+ E+ C- O+ M+ C+ F+ 0> Q+ L+ L+ Q+ Q+ R+ R+ R+ S+ R+ L+ S+ V+ T+ U+ T+ T+ R+ R+ T+ T+ T+ .@ U+ U+ W+ X+ W+ Y+ T+ -, ;, @@ W+ +@ +@ W+ W+ V& @@ @@ #@ #@ +@ &@ &@ +@ p; #@ %@ &@ *@ &@ *@ > *@ *@ &@ ~; 1$ 4$ R% T% * Q% ]@ N% ~@ O% >, W% ~@ T% {@ s= 0$ !@ b$ !@ R* 4@ }@ }@ b$ :@ l$ |@ l$ v; 6@ a@ w; d# R b- Z> : %# ,, ', ', 1* ), !, ~, {, ), ], <* ^, ], <* % ), ,, /, S@ ), ^& ^& W@ # (, _& _, :, v <, V L@ #. )& %% '. {. -. c# {. ). )& -. &. )& [, =. B$ )& *. ;. X . z$ 5# e- 2# 4# G@ z@ H@ C$ L@ H@ Y C$ Y A ` S U K@ I$ S A J@ J +% K@ G P@ M@ O@ M ", +". > !, . # + + ' # }, Q$ = # # $ U$ Q$ S$ # # U$ ; > N$ V@ > Q$ ' . $ ; ~ N$ N$ O$ W@ | [ ~ ~ ( ## ) ~ ] 4 ] ## W@ U$ ~ ] ) ~ ( : < ( $# &# ) [ / { 2 : ~ { ~ |, 5 0 a $# ## ( $# V$ [ $# $# d 6 /& { 6 $# 6 9 -# ,# 7 V$ b } ~# 0 o 8 7 e c 9 V$ 7 r L= c ~# c _# p 1, -= }& <, s> % D m p F= `$ 2, _# y w 3, t Z$ G N C M t N 4, w z x Q@ N I P@ S J I N Y P@ Q@ N E$ 5, H +% J P J S S I@ C$ J R Y C$ Q@ C$ Q@ L@ L@ L L@ P T V C$ E@ $% 4& +. 5# b# $% -. %. +. z@ 6, %. A@ .. *. *. '. &. ^. 7, ;. &. '. /. 8, d# 9& ~. ^. ~. ~. 9& v@ t@ h# 9, h# ,% j# s@ 9; 7. 0, f# 8. 2. 9; 6. 6. 6. ^= 7. 7. 0. m# Y- Y- e. d. c. e. {% d. e. c. c. c. h. i. i. g& q# i. i. f. g& g& v# o. (% o. o. n* o. y# v. q* u. n* s. v. v. z. s. A> A# k& A# m- [= a, H. b, 3% H. 6% G. G. H. F. G. 6% c, O. S. J. 3= d, o& J. S. S. S. S. S. S. H# d; .- F# b% t* s* b% ++ ++ s& t* b% s& q- #+ `. N# c% $+ 7= =+ $- .; $- =+ =+ ;+ ;+ g% =+ =+ #; S# e, F> S# y* ]+ S; /+ (+ /+ W# b= Y# Y# Y# /+ (+ /+ `# 4+ W# Y# A* }+ f, 1+ t- |+ |+ g, I& 8+ #$ 4+ t% 7+ 7+ h, 0+ $$ c+ %$ 0+ K> G* G* i, %$ G* %$ i, j+ ,- e= f+ u% j, x- h+ -$ j+ n+ U; n+ h+ l+ h+ n+ ;$ l+ n+ l+ l+ h+ n+ ;$ l+ n+ >$ w+ '$ t+ '$ w+ s+ '$ '$ w+ x+ '$ u+ x+ !$ s+ B% C+ B% C+ A+ B+ B% B+ A+ k, B+ A+ A+ E+ K* B+ C+ C+ A+ E+ k= X; L+ A+ D+ 0> N+ Q+ O+ P+ S+ S+ R+ S+ P+ L+ P+ T+ S+ P+ S+ R+ R+ T+ R+ R+ T+ T+ U+ .@ .@ U+ .@ Y+ @@ @@ X+ -, +@ +@ W+ W+ +@ @@ +@ #@ +@ @@ #@ #@ +@ %@ %@ &@ %@ %@ %@ *@ *@ &@ l, 4$ &@ m, S> -@ ~@ *@ * `& (@ '@ ~@ O% T% 9$ 6$ !@ t; {; u= O% V% @* ^@ 4@ :@ W% |@ /; n, o, |@ 4@ 3@ l$ ** p, 7 . q, ], r, s, t, s, u, s, s, v, w, x, u, x, y, x, u, x, s, x, z, t, x, s, x, A, A, s, t, x, s, v, s, x, s, q, V@ <, &. ^. c# x@ !. !. z@ !. !. &. A@ ). ). =. A@ .= z$ &. E@ z@ (* .= z$ P P L@ L@ P P }; B, T C, J P S H A P@ L@ P@ S S H$ O I H 3# G A ", +"M$ ; R@ ^& T@ $ % V@ > S$ > ; V@ # U@ + Q$ > > & ~ ] & %= ] 1* & ] ~ ) ~ ^ ; `@ N$ ) ] | ) ) ; ; ; X@ X@ W@ U$ [ ) { ) ) / | ~ ~ } { *# 9 [ { ) [ 2 : : 2 { , $# &# D, 6 $# J= $# b &# < J= 6 6 Y> i e *= a b V$ 6 d q> a q> !# L= i c ~# E, c 0 n j 0 ~# n L= ~# r Y$ ^# _# m _# D `$ r o m ^# h ^# Z$ ^# C C p D w I w P@ t 4* P@ x Z$ G x G x C G S H$ I S A H$ H A Z A M L@ 1# L Q@ L@ L@ D$ C$ C$ Y z$ G$ P L@ E$ M@ V L@ R W E$ Y .. A@ C$ z@ . ). B$ 7# $% T #. &. )= z@ .= *. ;. F, =. 5# &. =. {. {. ). !. {. /. ~. ). !. ^. (. v@ 1. 3. s@ *% {= j# ,% h# ;% }. g# 7. a& 9; g* 6. 6. 6. 7. 7. ^= p# m# 0. G, 9. d. d. 9. e. {% c. {% {% c. f. i. q# r# {% f. g& f. H, J; I, V= J, _% x> <= r. m. <% w. p* v. l& v. [= t. t. v. y. z# m- m- X= m& D# b, 6% G. F. 6% H. 6% H. 6% K. S. c, O; K, O. F# S. F# O. S. S. S. F# H# F# H# d; ++ T. b% $+ s& ++ s& s& s& b% ++ e% .; c% u& L, ;+ =+ &+ f% 2> ;+ =+ &+ M, &+ ;+ &+ !+ a= 7= N, ;+ ]+ /+ A* k% O, /+ b= b= (+ Y# b= (+ Y# Y# p% `# /+ -- |+ |+ 3+ t- g, u- s% 1+ I& s% 7+ g, +$ t% 8+ I& 7+ 7+ K> %$ a+ a+ %$ e= G* %$ e= %$ e= e= u% e= %$ j+ j+ U; g+ n+ 0+ ;$ P, Q, v% m+ n+ ;$ n+ n+ h+ l+ l+ r+ n+ h+ l+ n+ =$ J* '$ t+ s+ '$ )$ '$ s+ !$ w+ R, j= u+ u+ o+ S, A+ C+ A+ B+ C+ C+ B% A+ C+ C+ C+ C+ T, A+ A+ A+ C+ A+ D+ M+ C- Q+ C+ E+ D% ;; O+ O+ E% P+ /- S+ R+ R+ Q+ S+ /- S+ S+ R+ V+ ($ S+ R+ R+ V+ T+ .@ X+ X+ .@ +@ #@ W+ @@ X+ X& H% @@ %@ V& @@ +@ W+ +@ +@ +@ @@ %@ #@ #@ +@ &@ %@ %@ &@ %@ %@ > E- U, V, $@ -@ 4$ !; W, ]@ 7$ * '@ Q% 4$ )@ T% ]; N% w= ,@ {; O% /@ b$ 2@ :@ }@ R* 9@ |@ X% 0$ 4@ |@ X, Y, 9@ 5# 1 Z, J$ `, x, v, ' s, v, t, ' u, A, x, x, x, .' z, s, +' @' z, u, s, s, s, y, z, s, y, x, x, s, t, z, x, #' s, +' $' z@ ,& %' ^. !. ;. z@ A@ x@ ^. =. !. =. =. .= !. 5# &. 8# A@ +. 5# D@ L@ H T P H@ V 2# D$ H 7# L@ &' 2# H M M@ J J M@ H H M Q@ N I 6* I ", +"+ # # - }* . # ), # - Q$ ; - - > > + . *' & ] =' ~ - N$ 4 U$ ) ) & U@ ] > - ^ ] { 2 ! ; X@ < R$ 7- [ ) ## : { ) ~ { d ) U@ { [ ## 7 / ] { _ ~ $# :& } : ~ ( } &# $# $# &# d /& { 6 / e &# 6 e b *= e a ~# 6 } a ~# ~# e h n n a c c i ,# a V$ r o Z$ h `$ m % p Z$ p q ^# m `$ ,> `$ D /# r r D G C C G B G y M= N Q@ S |# O@ S I A G P@ J N |# P@ 3; P@ O E$ M P@ T D$ M@ K@ L@ Z J P@ H ` H$ L 7# K@ P I@ 4# I$ 2# X V d- Y $% a* )& +. =. ,. )& 7# 5# A@ A@ +. .. z$ *. !. 0# -' &. A@ ). $. ;' &. a# {. 9& ). 9& v@ v@ `> >' {= e# t@ a& 8& j# , t@ q@ ~> 8. ;% a& 9; 0, g* 4. 9; 7. 6. ^= 6. 9. ,' 9. {> '' 9. d. c. e. e. 9. {% c. Z- c. ^% q# q# Z- h. q# S= o. g& J; w# l* n* p* H, )' v. s. <% (% <% v. v. s. s. z. A> k& c; z. c; A. C. D. D. !' 4% 6% D. G. 6% 6% ~' E# J. N. {' ]' Q. S. Y. S. .- S. F# F# F# F# F# F# H# T. ++ .- .- b% b% W. t* ^' +- f; #+ T. t* .; /' z& z& (' (' 7= 7= )+ (' ;+ =+ =+ =+ =+ _' :' F> *+ {+ <' [' {+ (+ Y# (+ Y# /+ Y# Y# (+ b= Y# &; s% /+ Y# |+ 1+ 5+ H& 1+ |+ |+ +$ 1+ s% t% ;- 5+ 7+ 7+ 8+ x- a+ 8+ c+ %$ d+ 7+ 0+ 0+ e= 0+ k; %$ e= ,- G* e= ,- f= %$ }' g+ ;$ j+ ;$ l+ n+ ;$ ;$ |' g+ l+ h+ l+ ;$ l; l+ l+ l+ n+ s+ t+ t+ 1' s+ 2' u+ s+ '$ u+ x+ w+ )$ x+ w+ w+ x+ B- B+ B+ B+ B+ A+ A+ B% C+ A+ C+ C+ B+ B+ C+ E+ C+ >; D% l= E+ {- B+ D+ E+ k= E% O+ O+ N+ /- P+ P+ R+ L* P+ S+ R+ T+ V+ T+ U+ T+ T+ T+ T+ .@ V+ Y+ Z+ X+ +@ @@ Y+ @@ Y+ H% W+ V& #@ @@ @@ @@ V& #@ +@ +@ &@ +@ @@ @@ Z& :- $@ ~; ~; %@ &@ &@ >@ >@ 1$ U, -@ > * G- ]@ e> Q% I- )@ 3$ q= T% (@ ^@ 3' 0$ 4' :@ ~@ 9$ X% 2@ ^@ 4@ 9@ 3@ 9@ (; u; x= 4@ 3@ i$ 7# *# # ], 5' 6' 7' s, 8' u, x, s, s, y, y, y, y, y, u, u, x, s, x, u, s, s, x, v, y, y, y, s, s, y, u, x, x, r, v, +' !, 4& ,& ). ,& w$ A@ A@ x@ x@ '& e- 5# *. -. z@ z@ 4- *. +. E@ G@ R z$ G@ 1# P Y J@ 9' . 1# 2# P ` H$ H H@ P@ M@ ` 8* P@ Z S M M@ ^# A I E$ ", +"!, > @ . + # T@ + > V@ . T@ 0' ]& ; . ; - . ; $= ] $ 1* 1* H= N$ %= 2 ; N$ Q$ > & ; | ~ U@ ~ ] U@ 2 { ] | W@ ( { W@ | ^ 2 2 / ~ < 2 < { d (, $# &# $# : { U- ,# } ~ { [ :& e == j ~# { $# &# V$ 7 == d e a c a 8 6 8 0 a e ~# Y$ _# o a' a ~# a c a ~# `$ h e `$ r ^# r Y$ p o `$ 1, p b' D q r p n l `$ G G <, C [# x z D K w A M x ^# A 8* c- A N G K@ A M &> M Q@ c' A T T P@ P@ 4# d' M@ I@ E$ 2# L@ T W 2# U C$ G@ J P C$ H P @. L@ H 4# y@ G@ $% A$ &. E@ P #. . ). _* )& ,. A@ =. '. -. ). {. ~. b# p, '. =% '. %% {. {. e' 9, *% -% {= P= Q- 3. P= h# e# a& a& 4. 2. f' k# f' f' g# f' g' ^= ^= a; ]= ~% d. !% !% d. e. {% e. {% {% {% {% Z- {% {% i. i. {% Z- h. /% n* l* S= n* f. n* k- h' (% o. <% w. o. r. v. t. s. z. [= s. z. A# z. [= Z= A. $, F. r* D# G. H. G. 6% 6% G. 2= p& O. J. D> S. O. F# S. i' O. F# S. H# H# H# F# .- .- T. T. 1> b% b% s& M# s& t* b% %+ I# `. @- #+ t* x& ;+ &+ 7= =+ 7= 7= ;+ ;+ 7= =+ =+ =+ =+ @; 0= #; j' Y# X# W# /+ (+ (+ (+ /+ b= Y# k' Y# b= 3+ b= /+ 3+ 1+ H& }+ 1+ H& u- ;- B* 1+ 1+ l' |+ @$ t% 8+ I& b+ 8+ t% e= 0+ 0+ %$ %$ G* %$ 0+ %$ %$ j+ m' %$ %$ j+ G* G* y- ;$ l+ j+ l+ ;$ l+ |' l+ m+ n+ l+ n+ l+ h+ g+ n+ m+ n+ s+ t+ '$ s+ '$ r+ u+ n' u+ o+ x+ w+ i= w+ u+ i= u+ A+ A+ B+ o' A+ B+ B+ A+ E+ C+ B+ C+ A+ A+ E+ E+ C+ A+ C+ C+ C+ Q& E% A+ D+ F+ k= O+ P+ R+ S+ P+ /- /$ Q+ P+ S+ T+ S+ L+ T+ .@ V+ R+ R+ R+ Z+ V+ T+ T+ T+ .@ X+ X+ .@ F% V+ @@ W+ @@ @@ @@ +@ #@ +@ @@ +@ :- +@ #@ #@ [$ &@ p' }$ ;@ %@ *@ >@ &@ >@ =@ $@ -@ &@ 7$ I% s= q' p= R% I- P* T% q= R% @> !@ W% 9$ d$ P* 9$ e$ d$ v; X, S* :@ 4@ W% X% f$ 9@ a@ r' I | s' 5' 6' v, s, x, u, u, s, s, s, x, y, y, x, x, y, u, z, x, s, z, y, u, x, s, y, y, y, y, y, y, u, u, z, u, x, u, `, J@ {. x@ !. /* &. !. &. ). &. &. ;. A@ z@ +. -. >. 4- .. [; A@ B$ 7# R +. E@ .= P Y 7# D$ H@ T T P S z M@ M@ +% N@ O@ Y Y I A F= O@ I %> ", +". > U@ > + > $ R- V@ & N$ . R@ . > # ^ > $ ; & - - ; & & > 1* . & | ) > . ; ^ W@ ) ~ - `@ ~ ( | W@ ## W@ / 4 | | / [ | { ) { Y@ { -# ~ ) X@ ~ / 2 ## $# } } J= ( 7 &# [ a a k b / 6 g 7 ,# *= a 6 6 } V$ 8 7 9 g a 0 c e 0 a ># ~# h e n v K= 8 c c _# o r ~# t' h o c ^# D 9- `$ h n }& `$ Z$ w `$ D M w w a- G A Q@ E= A A 8* A w x )> G M@ Q@ M %> M S K@ P@ Q I@ P L T C$ H Y H J H$ G$ H@ T E$ H R I@ @. X #. #. T C$ #. $% .. +. (* z@ e- #. ,. 0# ). >. {. C@ z@ '. &. )& /. ). =% %% ]. &% '. =% =% `> u' ;. {. ~. *% ^. {= P= _. {= P= P= h# h# a& a& 7. g# a& e# }. g# 9; v' 7. 6. 6. 6. 0. b. ~% 6. 9. w' c. e. d. c. {% e. {% c. {% h. q# g& {% i. U= o. v# l* (% J; w# o* (% p* (% (> s. [% (> y> v. v. [= s. m- m- A# X= z. z# A. 3% D. F. [> D. D. G. G. D. G. 5% E# 2= S. O. `= x' S. J. F# x' - S. S. F# y' H# 1> .- s& ++ H# H# ++ T. %+ z' d; c% @- c% M# `. u& s& x& ;+ ;+ &+ =+ 7= (' ;+ 7= =+ g; 6= 7= A' *+ B' C' _' [' b= %; /+ /+ ~+ D' b= b= ~+ W# (+ Y# b= 4+ b= 2+ `# |+ %, f, ;- d= E' ;- 6+ @$ t% ;- 1+ 3+ 7+ t% e= a+ t% c+ t% b+ %$ %$ %$ d+ %$ %$ e= u% j+ f+ G* ,- 0+ U; f= l+ l+ j+ l+ h+ h+ h+ h+ n+ l+ l+ l+ ;$ n+ l+ n+ h+ r+ s+ y% t+ t+ t+ '$ o+ F' o+ '$ u+ w+ '$ s+ i= w+ w+ A% B+ B% C+ B+ B- B+ B% A+ A+ B+ C+ C+ C+ C+ E+ E+ A+ E+ C+ E+ S& L+ E+ D+ D+ E+ Q& /- S+ L+ P+ T+ S+ G% /$ P+ P+ S+ Q+ R+ R+ V+ T+ R+ R+ V+ T+ V+ Z+ V+ V+ @@ X+ X+ +@ F% X+ G' X+ W+ +@ }$ H' +@ @@ #@ #@ &@ #@ %@ &@ D- #@ %@ .* &@ %@ &@ #@ &@ *@ .* Q% I% 7$ Q% >@ * >@ *@ 5$ S% I' (@ Q% 0$ !@ I- J' ,@ 9$ }- !@ !@ V% f$ 9@ f$ |@ 9@ K' /; c$ v; W* G | J$ 5' 5' v, s, x, u, x, u, s, u, u, y, y, y, z, u, y, s, x, u, s, z, x, s, u, y, u, u, y, y, x, y, y, y, u, y, x, 6' Z W> b# -. {. w$ A@ !. -. &. &. 5# B$ V> . z@ !. F@ &. @. .= X G@ +. e- z$ C$ G@ V P G@ P H ` L' E$ @% S H 8* Y P@ A J A E$ A O@ ~& P@ ", +". $ > ~ > > $ ]& + & + $ S$ ; ; U$ > ] & > # ; - S$ S$ |* }* & ~ ; ; 2 | > ~ [ [ W@ ] ; 2 ~ ## U@ ~ ; [ ~ U@ ~ | { ~ ## d | / 7- [ /& 6 / 1 < +# M' &# 2 [ } $# $# $# 0 7 $# a ## : b &# 2* [ N' 6 8 b 7 $# e *= e b e j c ~# ~# i o e 7 e ,# c a e o r W$ n n s> t `$ Z$ r `$ Y$ r `$ s r O' % :, z ^# D N ^# A ^# G G p E N A I O@ G O@ E$ P@ Q@ A M P@ P@ |# H Y A D$ J L@ 4# P@ J T S C$ Y S H J 7# Q #. V P' z@ z$ H@ E@ z@ Q' (* *. #. I@ . G@ -. R' $% 0# . *. ). A@ p, A@ =. !. ]. ). 5& &% {. ^. !. d* S' |. '. |. |. v@ 8& T' *% (. :. h# v> _. j# j# h# f* g# f# 8. u@ l# n# U' ^= ^= 6. 6. ]= Y- m# ^= V' c. d. e. Z- {% c. c. {% h. Z- Z- c. i. Z- c. f. {% W' l* /% m* x> o. p* b; W= n* y> z. W= p* `- [= m- A> X= s. z. [= [= N; A> X' D. P; n- D. G. G. O; O; 6% H. `= L. O. J. E# `= F# H# ]' 0% - S. O. S. O. T. 1> d; 1> ++ .- .- s& ++ s& +- s& t* K# b% s& #- /' q- R# Y' =+ ;+ &+ =+ 6= ;+ =+ $- 6= C' h; #; #; *+ G> j' X# /+ Z' &; ^+ Y# %, (+ b= Y# `' b= (+ ) o% 2+ b= 2+ 1+ u- s% s% s% A* f, K> s% 7+ I& g, i; l' 7+ a+ .) 7+ 7+ G* %$ b+ G* %$ a+ d+ 0+ G* +) k; j+ G* ,- f+ 0+ G* w% ;$ )- l+ |' P, ;$ ;$ @) l+ n+ n+ n+ @) >$ =, @) l+ >$ r+ h+ s+ t+ s+ s+ x+ s+ s+ i= x+ !$ s+ w+ w+ u+ x+ k, B% B+ B+ A+ C+ A+ R, B+ A+ E+ B+ A+ A+ C+ C+ E+ A+ D% R& C+ S& #) E+ M+ C+ k= O+ O+ O+ S+ S+ T+ S+ R+ G% S+ R+ Q+ S+ R+ $) S+ S+ V+ T+ Y+ V+ Z+ X+ Z+ @@ @@ V& _$ _$ %) X& W+ +@ W+ Z& +@ #@ @@ +@ #@ +@ :- #@ #@ #@ +@ +@ &@ %@ *@ &@ #@ %@ =@ &@ -@ `& 6$ '@ )@ Q% &) r; Q% ~@ I' S% )@ 5$ 9$ /@ !@ w= W% :@ }@ W% J- |@ v; d$ 6@ X% ** 2@ 9@ 9@ z= Z$ ^ R@ *) =) v, s, x, y, y, y, x, x, s, y, x, u, s, u, z, s, u, x, t, z, z, t, x, t, A, x, x, y, z, u, u, y, s, z, x, x, o> p, x@ ^. !. {. ^. &. -. -. &. (* &. a# ,= z@ =. (* A@ A@ )= z$ y@ V 2# F@ 2# P }; P z; H A Y P P@ H 3# Q@ J S z G A Q@ /# A w w w ", +"L$ $ + $= > + R- # V@ # Q$ # H= + . V@ & # V@ U$ | ; - ; 1* + T@ > ; 2 ; . ## *# ] ) ) W@ ~ [ ^ ) ~ ~ ] W@ ) ) W@ ~ T- `@ 2 { ( ) ;# < V$ [ 2 $# Y@ { [ %# $# W@ ) } } 7 < b 6 7 a 7 { Y@ ,# d e $# 6 e } b ~# ,# e g n 9 8 &# e 7 a 3* 8 L= ,# 8 V- a K= L= (# 7 ~# r h b' h h w h r Z$ _# 4* n -) q Z$ ;) D ^# m _# t N F D M= z w I A |# S P@ O@ H M E$ J 7* w 8* P@ M S 3& H P@ >) P@ J Q@ 3# Y J H@ ` 2# T U C$ E@ X S G@ G$ #. R $% H $% .. C$ P ,= 5# z$ *. )= .= z@ .. -. ). >. &. {. [, -. !. '. ). '. p, =% b# '. /* v@ {. v@ 5& 9& u' 8; ,% h# a& e# P= P= e# q@ d* |. f' a& a& ;% 7. 7. ^= ^= 6. ^= v' 6. i- 0. 6. d. c. {% {% c. d. e. e. {% e. w' Z- g& q# q# f. f. g& ^> f. j. v# V= (% ,) n* n* r. v. p* p* i& z. <% z. 1% [= [= [= m- ') m- [> r* )) n- G. H. H. G. D. G. H. 5% o& L. O. O. 1= F# S. q& !) F# .- S. F# H# 1> H# Q. F# b% .- .- b% f; f; c% t* t* q- q- $+ + u& +- #+ R# 7= 3> =+ g% 7= =+ =+ =+ ;+ *+ ~) *+ {+ *+ *+ {) a= /+ ]+ X# ~+ (+ ~+ /+ %, b= %, b= Y# -- `# <+ Y# %, 1+ |+ s% s% H& %, %, 3+ g, 5+ $$ @$ 1+ 7+ ]) 7+ a+ t% 7+ K> %$ K> G* G* G* G* e= G* %$ %$ f+ G* G* ^) j+ U; w% /) U; l+ @) l+ L> ;$ @) l+ l+ ;$ l+ ;$ l+ >$ l+ n+ n+ n+ ;$ M& t+ t+ '$ w+ u+ >$ -; i= w+ o+ u+ u+ i= !$ ]$ B- () B+ B+ C+ B% B+ A+ C+ B- A+ B+ C+ A+ A+ C+ E+ B+ _) B+ C- {- M+ A+ E+ k= L+ O+ L+ /- /- P+ R+ S+ S+ R+ L* /- R+ T+ T+ V+ T+ V+ S+ V+ T+ T+ .@ U+ X+ X+ ($ Y+ Y+ .@ G' @ H' W+ W+ X+ +@ +@ +@ @@ +@ +@ +@ %@ %@ #@ %@ %@ #@ %@ &@ $@ > %@ &@ 7$ I% -@ >@ L% :) L% u= 4$ q= S% T% * <) d> 9$ ~@ 6$ U% !@ V% R* :@ X, 4@ 2@ 4' b$ 8@ 6@ 1@ T* w@ c $ @ `, [) s, s, s, z, y, y, z, u, s, z, u, u, s, x, u, s, x, x, z, u, u, x, u, z, s, x, }) u, y, y, x, t, y, x, |) v, :, A@ ,& ,& '. '. F, ). &. ^. ,& (* z@ B$ 6# A@ +. z@ .= =. #. +. .= }; 2# H L@ +% D$ J L@ P P M@ J J S J Y |; P@ J A A P@ Q@ A G I A ", +"# . R@ L$ 1) # > $ S$ V@ V@ V@ + . ), !, # > 2) U@ Q$ %= ~ & 1* . { %= U@ ~ 2 ~ ) ~ ] ; U@ { <& ~ & ) ~ *# | %= ] ## ) 1 | 2 ~ 2 2 6- [ { ## V$ < W@ $# $# -# $# [ { ># } e i V$ == c a %# $# 7 6 6 a b d j 6 &# 2* V$ d 7 c i 9 6 c i V$ $# d 7 6 l `$ n o ~# r ~# e Y$ s> ^# C; _# h p >= F= /# w p 1; ]# p ^# :# `$ ^# x M= N M= w G N M I N@ [# P@ M w M= H P@ H 7* E$ P@ K@ 3# O 3; P@ K@ Y J Q@ 4# S 3) T d- H X Y C$ P@ L V V D$ E@ C$ P z$ I@ E@ z@ -. z$ .= I@ B$ *. y@ z$ &. A@ -. &. A@ 4) !. *. ;. z@ $. *. {. 9# {. ;. '. -' &% b# 5& ,% 5) 8& 9& &% ~= -% e* e# t@ '% e# X- 6) g# a& j# 7. U' 6. 6. ^= ^= ^= 7) ^= Y- Y- a; V' c. c. e. c. d. Z- c. c. Z- h. Z- i. f. T= W' f. l* l* ^> /% (% 8) o. o. V= W= (% w. z> n* j& v. s. [= B# [= z. A> c; c; a, Z= 3% )) )) 5% H. H. G. D. `= H. P; K. J. O. O. `= O. O. S. J. O. S. S. 9) F# F# T. T. .- H# .- x' .- ^' b% ++ s& s& f; f; s& u& f% e; u& 0) =+ =+ $- a) b) 7= ;+ =+ M, ;+ =+ @; #; !+ 7= c) a= d) /+ S; W# ~+ (+ /+ %, /+ (+ ~+ /+ (+ Y# %, %, b= u- s% s% 1+ 6+ }+ ;- 3+ 1+ 1+ 5+ ;- g, @$ t% 7+ 7+ K> 7+ 7+ 7+ a+ %$ 0+ %$ e= 0+ e= G* ^) u% f+ %$ G* l+ U; U; ;$ '- u% l+ l+ l+ l+ n+ l+ g+ l+ l+ ;$ l; A- l+ n+ h+ n+ n+ h+ =; -; t+ t+ i= s+ i= i= x+ t+ M> w+ x+ u+ ]$ ]$ B+ B+ B% C+ A+ B+ A+ A+ A+ B% A+ A+ e) A+ C+ B+ A+ ^$ C+ O+ O+ M+ I+ D+ E+ Q+ O+ E% a> N+ R+ L+ Q+ R+ T+ P+ S+ R+ R+ U& .@ T+ R+ Y+ Z+ V+ V+ T+ R+ S+ .@ .@ X+ Y+ f) g) X& @@ @@ @@ [$ W+ W+ @@ #@ +@ %@ #@ #@ %@ #@ #@ %@ &@ &@ &@ &@ *@ &@ D- &@ 7$ >@ l, q= S% '@ R% 6$ 9$ r= O* 6$ I- 5$ ~@ N* N% R* 9$ R* {@ P* :@ 2@ :@ X% f$ K- 6@ X% X% ). e h) i) r, [) v, s, s, u, y, x, x, u, y, x, u, v, A, t, s, u, y, y, u, x, u, u, y, y, u, y, y, y, y, y, y, u, y, s, s, v, j) x@ ^. ~. {. '. !. -. &. &. &. z$ ). ;' (* .= A@ )& .= @. .. e- #. X G@ V 4# V P O S P M@ G@ C$ J@ L@ P H$ O M@ E$ +% P@ 8* x M S M )> ", +"R@ k) M$ R@ l) + ; > - ]& ]& U@ V@ Q$ ; V@ ; ; | N$ ^ ; S$ & S$ - ; | U@ N$ 2 ^ `@ R$ . ; ;# | d O$ %= ; %= ] N$ { ) | [ { } < | ## - 8- ) %# U- ) *# $# } ) [ $# $# $# : } ## ) 4 $# %# : < $# 8 } 6 X$ e '# a e [& e D, } a a 8 i $# &# d 7 8 a ,# X$ o b o c e `$ p c h [& h r s> Y$ y ^# C y `$ p `$ ~# D m m N N ^# 0- N M t q P@ O@ P@ I B G H$ B I 3# E$ M m) 7* P@ )> @% @% M S L S P Y J 1# 7# 4# H H$ E$ L@ P@ U V n) C$ H@ H 7# D$ T 9* A@ 5# ,= e- +. (* 5# 6# ). *. ,. A@ ,. =. )& !. ;. o) A@ ;. ). ;. ). 5& {. ;. ;. !. p) (. -' 9& (. :. v@ v@ `> ,% 9& t@ ,% e* a& ~= a& 0, g# 9; g' ;% g# 8. k# 7. 7. 7. ]= q) !% m# l# {> {% c. e. e. c. {% {% e. c. r) {% f. f. T= h. l* g& g& /% s) K; h' ,) (% ,) (% n* r. )' (> p* z. z. z. z. [= z. [= A> t) m- A. c; c; 5% 4% H. 5% D. H. u) n& G. E# O. S. c, 0% 0% F# c, v) .- ]' S. H# d; d; H# w) H# H# .- 1> x) ^' s& s& c% q- s& $+ q- +- d% 0) e; d% v* y) y) +; @; *+ @; C' v& *+ ;+ h; @; &- z) r- _' %; [' W# %; /+ ]+ (+ /+ Y# %, b= /+ b= A) %, %, b= B) |+ 4+ }+ ;- J> |+ 5+ @$ 5+ 1+ 3+ 3+ I& t% l' @$ @$ 7+ .) 7+ .) a+ K> %$ %$ e= k; G* G* e= ,- g+ %$ u% ,- U; g+ l; /) ;$ l+ -$ C) ;$ l+ z- ;$ n+ l+ n+ r+ l; l+ ;$ >$ j+ l; l+ M& s+ ,$ {$ D) t+ t+ s+ t+ E) j= u+ i= x+ B+ B+ z+ B% B+ A+ B- B+ B% A+ ^$ B+ E+ ^$ R, A+ B+ C+ F) C+ C+ S& E% A+ A+ C+ C- O+ O+ L+ L+ /- S+ L+ R+ S+ Q+ R+ R+ P> S+ T+ V+ S+ V+ V+ V+ V+ .@ Y+ V+ X+ W+ @@ +@ Y+ Z+ b> -, V& +@ @@ @@ W+ @@ +@ [$ #@ @@ +@ %@ #@ <- &@ #@ #@ %@ %@ *@ ~; .* 1$ >@ >@ '@ '@ R% G) )@ ]@ 5$ * * e$ * ^@ 5$ @> b$ 2@ |@ V% P* T% 3' 6$ ^@ 9@ v= o, u; 7@ a@ )& 6 . J$ `, =) H) 8' x, y, y, u, s, u, u, x, x, y, u, u, u, x, y, u, s, u, y, u, u, y, x, u, u, y, y, u, y, u, y, u, s, x, I) 4- E@ {. A@ !. {. x@ *. !. ). .= &. !. &. &. !. >. 5# C$ $> F@ =. 5# )= z; L@ H .. C$ S H P@ Y P@ L@ H ` #= S P@ P@ I N w w x Q@ @% I ", +"+ V@ ]& $ * . + . > + . V@ > > $ - - - . V@ = N$ U@ U@ U@ ^ ~ ] ; ) ) ] - | & ^ ] { ; & Q$ ~ ) 2 { d 1 %= `@ %# ~ W@ ## ~ W@ J) W@ $# } ) ## 1 b W@ < 6 *= W@ 6 1 /& / a a V$ ( J= 7 V$ } 6 => 7 7 e k 6 i n a j a 8 e V$ q> a 6 &# ~# ,# i o o 7 a a j e r n h o c c r Z$ ^# `$ `$ p Y$ p c m u q 4* G I m z I ^# D O@ A 8* A S w %> ^# x A M z L@ S Q@ M Y Y o> H S P@ H@ H L@ L@ L@ P@ L@ T L P I@ 2# Y I@ P@ Y U U }; J E@ X K) 5# A@ .= A@ E@ +. +. &. y@ . L) +. V> #. &. A@ A@ -. /. /. $. ^. ^. '. /. {. != v@ |. d* (. 1. Q= e' &% 8& {= h# a& g# a& }. s@ s@ 4. g# ;% ;% 4. 7. g# 6. 6. ^= a; ^= 0. b. i- ^= 9. e. {% e. c. M) {% c. {% Z- Z- Z- g. J; f. l* f. g& w# g& K; (% H, (% p* p* (% (% )' <% (% N) z. s. s. [= [= [= s. A# X= A# t) $, D. O) 6% D. C> C> C> P; H. `= J. S. a% O. {' H# J. J. L. H# O. H# F# O. .- .- 1> H# 1> 1> ^' d; t* t* q- ^' .- t* t* b% t* d% P) f% .; $- ;+ 7= 7= *+ =+ =+ 7= *+ 7= =+ 7= #; @; 0= Q) A' W# (+ R) W# /+ (+ (+ ~+ Y# b= D' Y# b= Y# f, %, %, H& J> b= A* 6+ u- 1+ 1+ 1+ 6+ I& 7+ 1+ l' ;- ;- a+ a+ 5+ .) l' e= e= e= e= e= G* 0+ 0+ %$ u% )- e= g+ '- %$ S) l+ l+ ;$ ;$ l; ;$ n+ n+ n+ ;$ ;$ l+ ;$ l+ l+ l+ n+ >$ n+ )- l+ r+ '$ s+ >$ O& o+ '$ s+ x+ i= t+ s+ N> w+ '$ s+ ]$ B% B+ B+ B+ B+ R, F) A+ m; B+ A% C+ C+ B+ A+ B+ ^$ B- S& E% A+ E+ A+ C- E% O+ L+ O+ L+ S+ L+ P> Q+ S+ /- S+ T+ S+ V+ Q+ R+ V+ V+ Y+ X+ @@ .@ U+ W+ W+ W+ @@ Z+ Z+ %) _- U& @@ @@ #@ @@ @@ +@ #@ +@ #@ +@ #@ &@ %@ %@ &@ %@ #@ %@ &@ $@ &) I% >@ *@ >@ '@ )@ q= q= -@ ~@ q= 5$ * U% I- /@ 5$ {; !@ V% W% 2@ }@ 2@ X% e$ P* R* a@ X, :@ -* 7# $# $= J$ r, 8' 7' u, z, s, s, z, y, y, x, s, x, u, y, y, y, u, y, y, x, x, s, x, u, u, s, z, y, y, y, y, s, s, t, y, A, t, T) E@ -. F, -. ). !. e- ,& {. !. {. B$ F, z$ 4& *. V> .= 4) ,= G@ z@ . ,= H H@ Z Y H P Y S L@ H A Y S S S H J H |; N J M@ Q@ P@ N ", +"S$ & $ + R@ L$ ]& S$ S$ }* - ; | V@ > . |* - # - - > S$ ! - & > ~ 2 U) R$ ; ] ^ { ^ ; | *# > ] ; ; < { | 4 $# { ) < ; ; ~ *# [ 2 ~ ~ / $# [ } $# 6 ~ &# ( { ) 9 +# 6 7 [ $# { 8 : } V$ V) d b D, d 0 e ~# 6 g 8 8 a d e ,# b e n a e j e ,> e o p Y$ r h r s> r p `$ p D /# `$ p h `$ h p n p t C w C P@ 8* y N G Q@ :# %> G A W) ~& A L@ Q@ 3# b- Q@ O@ A L@ H P O J J Y J Q P@ M U X P@ R G$ H H T G$ T $% y@ V ,= 5# F@ .= 4- 2# . z@ z@ E@ . z$ =. 5# z@ >. -. F, &. ,. 5# ). x@ X) [. ,& '= ~. '= {. != `> 1. d* 8& |. P= , 7& , , s@ a& g# a& 4. }. s@ 8. j# g# 7. a; {> 6. n# g' 7. 6. 6. 0. d. Y- 6. i* d. 9. e. h. e. c. c. {% Z- Z- Z- Z- q# f. h. f. l* (% T= S= n* x> i& Y) n* (% (% (> [= W= @, z. z> z. s. k& A# z. z# [= [= A> !' P; )) H. 6% 4% P; n& Z) 6% G. {' F# 0% H# E# S. S. F# F# F# F# F# F# 1> F# .- H# F# 1> s& .- F# s& 1> t* t* ^' b% u& b% t* d% e; z& P) v& ;+ ;+ =+ =+ 7= 7= &+ 7= =+ *+ @; `) ! *+ C& _' Z' /+ W# <' b= b= Y# /+ (+ b= Y# b= Y# <' A* %, k' B) J> .! d= 6+ B* 1+ d= 6+ 6+ >- #$ +! @$ >- 8+ %$ K> l' 7+ b+ e= G* %$ %$ %$ G* e= ^) G* %$ d+ G* %$ e= %$ @! n+ l+ j+ ;$ @) l+ l+ ;$ ;$ ;$ l+ l+ ;$ l; l+ l+ @) n+ M& n+ n+ A- s+ s+ t+ #! w+ o+ '$ s+ i= s+ i= N> '$ s+ t+ ]$ A+ B% B% B+ B+ B+ A+ C+ C+ B+ E+ E+ B+ A+ B+ B+ ;; E+ A+ E% L* D+ C+ D+ M+ L+ L+ Q+ O+ /- Q+ Q+ E% /- S+ R+ R+ S+ T+ Y+ Y+ R+ T+ V+ V+ X+ .@ Y+ T+ U+ W+ X+ `; U+ @@ H% $! X+ X+ +@ #@ %@ X+ @@ #@ #@ #@ #@ +@ <- &@ &@ &@ &@ %! &@ * -@ R% >@ =@ -@ `& S> u= ]@ 1$ `& *@ (@ )@ '@ &! +* *! {@ N% =! W% <@ W% L- W% 4@ :@ W% u; |@ Y, c@ J +# V@ ], s, 6' x, u, t, s, -! y, y, s, H) u, y, y, y, y, y, y, u, z, u, u, z, u, u, y, y, y, y, y, y, y, y, y, y, u, }) A, ), G@ ). x@ l> ;! -. ). 5& !. A@ ;. ;. e- z$ >. #. A@ 5# (* @. .. 5# A@ G@ 1# 2# }; X Z O B$ H Y >! L@ O H$ M@ H S M@ Z E$ A Q@ I ~& I x ", +"Q$ # + & # ] T@ ^& ~ Q$ # & Q$ . Q$ & ; - ; # V@ > ] - . . | ; ; > ## N$ & N$ { | Z@ ) 1 { ) U$ W@ ) 2 ~ 2 ) $# ) W@ H= [ { < 6 | ~ { ~ { [ | [ ) 1 # / X@ } ## Y@ 4 ( : < W@ $# $# 6 $# ,# 1 [ b 2* ( q> a ,# 6 e &# a' 7 ~# q> a $# b ~# L= ~# n ,# `$ j Y$ Z$ s ~# c ,! b' _# 9- n -= G z Z$ m p ~# G D s h C C I m M C Z$ I M D D B (# M z z A }# A M I A N@ G @% z E$ K@ d- E$ Q@ O@ T C$ M T D$ G$ P H@ T T L@ L@ L@ e- 7# E$ 7# . R z@ W z@ .. =. e- )= )& *. e- =. !. !. A@ (* @. x@ A@ &. x@ {. b# +. -. '. '. {. &% =% 5& ~. d* /. H; *% 9& e* P= {= e# ~= q@ h# j# 4. 0, '! 9; f# 7. 9; 8. U' ^= a; 6. ^= 6. 9. !% )! !! i* e. {% c. c. {% c. Z- Z- c. Z- c. g& l* h. g& g& j. g& l* n* h' b; (% l- h' (% z> N) ~! `- [= {! E. A> <% z# m- [= [= [= m- c; P; )) G. $, 6% ]! 9% n& O; G. ^! S. F# S. ]' E# S. F# H# y' /! .- H# S. H# .- H# .- H# f; d; 1> t* ^' t* .; ^' d; c% t* f; (! 0) d% +- g; @; =+ ;+ _! 7= 7= 7= 7= =+ 7= 7= `) {+ _' :! - ;- ;- 7+ l' 7+ i, a+ l' l' G* G* a+ G* 0+ 0+ [! ,- ^) G* %$ ,- e= ,- d+ ,- w% @) l; ;$ f= n+ l; l+ l+ l+ n+ n+ n+ l+ n+ >$ A- n+ }! l+ m+ h+ s+ y% |! 1! t+ t+ t+ '$ o+ s+ s+ u+ x+ o+ u+ A% A% A+ C+ C+ B% A+ A+ A+ C+ A+ A+ A+ B+ C+ A+ C+ ;; 0> A+ C- Q& F) C+ C+ E+ O+ O+ O+ L+ R+ P+ R+ S+ /$ Q+ R+ R+ T+ T+ T+ T+ T+ T+ R+ T+ U+ S+ V+ T+ W+ U+ .@ @@ Y+ .@ q; %) X+ _$ @@ W+ +@ +@ #@ +@ +@ #@ %@ %@ #@ &@ %@ *@ *@ *@ #@ R> ~; =@ &@ =@ ~; I% )@ * Q% * (@ T% H- P* H- * I- {; /@ Q* P* R* b$ b$ X% 4@ f$ 4@ S* 4@ `% T* l@ M@ / # q, r, [) z, y, z, u, y, y, y, u, u, x, u, u, u, x, u, s, y, u, A, A, z, u, s, y, y, y, y, y, y, u, s, u, z, x, v, s, 2! 3! ). &. {. ;! ). p) '& (. '& ,. &. &. -. 4- 4- (* #. #. [; F@ 4! . D$ 4# @. X M@ #% $> K@ Y }; Z A Y P@ N= M L@ O M@ 4, H 8* P@ P@ x S ", +"# @ . . ]& > = + Q$ . V@ > & [* # }* ; > V@ $ . ] . > $ Z@ ) N$ P$ $ & X@ ] - > | W@ ) X@ 1 ] `@ [ Y@ ) 5! N$ ; { ~ W@ { 6- U$ $# 8 { [ &# N$ *# } { { { R$ { $# :& } 7 $# < $# ( $# : 7 ( g a 7 7 8 e ~# Y@ [& e e 8 &# ~# e 6! n e g o ~# 7 ,# C; 9- o q e h C; a 0- n n L= n y h (# p ^# `$ `$ 5* _# z ,! h r Z$ D Z$ m G G F= y G ^# N S A K@ A N N@ G M Q@ A Y M |# O@ P@ ` P@ d- H x O J D$ S @. L@ W W Y I@ X O d- L@ 7# T L@ $% 7# @. A@ L@ E@ E@ +. =. I@ !. +. ]. -. . +. =. ). 0# !. F, !. =. =. A@ R' {. '. =. '. 5; %% 5& /* `> 9& 7! *% :. *% ., P= h# j# e* 8; Q- g# g# '! 9; ;% 7. g# U' q) ^= ^= a; ^= ^= {> Y- e. 0; 0. c. c. e. c. {% c. {% 8! {% c. Z- {% i. g& g& l* l* l* l* /% l. b; /% 9! n* (% (% r. v. W= `- [= z. 0! m- A> [= m- A# m- t) z. X' r* G. r* $, G. 6% G. O; O; 6% E# a! J. S. Q; S. b! F# S. c! 1> H# y' F# H# H# F# 1> d; d! ++ c% c% s& N# #- b% t* s& f; #- t* d% q- L, ;+ =+ =+ e! 7= 7= 7= ;+ 7= @; =+ *+ {+ #; `) f! g! Z' Y# h! b= b= Y# Y# /+ b= %, Y# Y# %, %, }+ H& b= A* 6+ 6+ i! ;- f, k' j! +! g, +! 5+ 6+ 6+ 7+ t% a+ b+ l' l' K> 0+ b+ e= e= e= i, %$ %$ G* &, u% e= ,- k! 6> Q, f= f= g+ l+ ;$ ;$ ;$ ;$ ;$ l+ l+ ;$ f= h+ >$ '$ l+ n+ h+ l+ l! i= t+ s+ u+ n' t+ s+ t+ N> x+ '$ s+ x+ w+ '$ x+ A% B- B% C+ B- A+ B+ C+ A+ A+ R, B% C+ A+ C+ A+ ^$ I+ ^$ C- E% C- D+ E+ E+ C- O+ O+ /- R+ S+ S+ R+ /- S+ S+ S+ P+ S+ V+ U+ G% V+ T+ V+ Y+ Y+ Y+ X+ X+ .@ W+ X+ W+ W+ :$ m! +@ X+ +@ @@ +@ @@ _$ W+ &@ #@ @@ #@ +@ #@ %@ %@ &@ *@ *@ >@ *@ -@ =@ &@ =@ )@ )@ * r; 2$ ~@ T% S% ~@ 6$ O* ~@ /@ /@ /@ (@ P* <@ }@ a@ R* d$ W% v; 8@ T* 2@ W* y ;# ]& ], H) z, z, x, u, u, y, u, x, s, z, u, y, x, y, z, y, s, y, z, x, s, A, y, y, y, y, y, y, y, y, u, x, s, x, s, x, s, 2! M@ d# x@ c# &. !. B$ ]. x@ >& ). =. !. >. F; $% )& +. A@ B$ z@ V z@ C$ Y }; C$ H 2# D$ T V J 1# H$ Q@ n! M O@ #= @% 8* S G b- P@ x A M ", +"J$ + + + R@ - . * + }* ; S$ T@ > # V@ ~, & > > Z@ N$ [* ^ > ^ U$ N$ ; S$ - { H= - o! ; S$ ) } { { ) 4 , | ) 6 %= ] { ## ) < ~ { } / { d { ## $# ) ~ < / 6 8- Y@ /& 7 ( ## b ( *# } b == $# =# ># 7 < 6 7 7 a' j e j &# L= ~# &# g a e ~# j a b c g c s> c X$ h `$ t p h `$ `$ r h p! ^# q w m 6* Q@ Z$ ^# 4* q D `$ Z$ m I G I I G P@ q! M N K@ A y A E$ E$ I H A P@ Q O@ P H 8* ` 7# J T H ` T G$ H G@ 0* C$ D$ r! T I@ J D$ G@ E@ X .= 2# V C$ s! G@ @. &. *. #. >. 0# 5# #. 5# )& *. t! &. {. )= '. 9# '. '= |. u! =% {. ~. 9& 5& '& =% /. `> v! Q= -% P= {= s@ j# j# }. , g# a& a& 9; 9; 7. n# f' w! 6. ^= 7. 6. ^= ^= 0. e. d. a; d. c. {% c. {% {% {% {% h. Z- h. h. f. f. H, x! l* f. g& ^> (% V= V= (% ,) (% p* p* t. {! W= z> z. z. z. [= A# `- A. c; [= y! Z= !' 6% n- $, H. H. H. O; H. O; z! J. S. F# O. F# a! F# J. H# F# H# F# .- 1> .- .- H# d; .- Y. .- 1> t* t* t* q- q- s& s& c% d% q- f% f; 2> =+ 7= M, 7= &+ ;+ =+ *+ *+ *+ *+ @; S# *+ C& A! a= /+ A* <' Y# -- b= Y# <' b= b= b= %, b= m% |+ b= b= 1+ 6+ 6+ t- s% 2+ ;- l' u- 1+ t% t% 6+ 5+ l' l' l' l' t% 7+ 0+ G* e= G* e= a+ G* G* e= %$ j+ ,- e= k! )- &, f= ;$ U; )- g+ n+ l+ n+ l+ ;$ n+ n+ l; ;$ n+ r+ n+ ;$ l+ g+ ;$ O& '$ t+ t+ i= t+ t+ s+ u+ N> u+ s+ N> u+ w+ u+ i= B% B% B% B+ B+ B+ B+ A+ C+ A+ C+ C+ B! B+ B+ B% F) R& E+ S& /- S& A+ C+ 0> O+ E% Q& /- R+ R+ R+ L+ /$ T+ S+ P+ T+ G% X+ V+ V+ V+ V+ Z+ Z+ Y+ X+ W+ +@ W+ @@ _$ Y+ Y+ _- :$ W+ +@ +@ +@ +@ +@ #@ #@ #@ @@ %@ +@ +@ &@ &@ #@ &@ &@ '@ >@ *@ ~; >@ V, .> `& >@ ]@ -@ C! '@ H- '@ d> 9$ 9$ O* /@ !@ R* P* b$ :@ f$ b$ ^; 9@ h> y= 6@ X% m@ p O$ *) =) s, s, 8' u, y, u, s, v, H) x, 8' s, x, y, u, s, z, y, z, s, x, s, s, y, y, y, y, y, u, y, s, w, s, u, s, x, x, r, y ^. %% ^. D! ^. (* x@ '. ,& A@ )& x@ A@ E@ A@ .= &. ). .. )& Y z$ R G@ V V n> 2& J }; M P X Z O ` P@ P@ K@ A M S 8* H$ A t N= #= ", +"!, # . > + # N$ T@ - $ $ R- & 5- V@ E! # ; ] . | N$ ] & ] ; | | !, ; > ] ~ > - & ) ~ ~ 2 / ] ) $# ) ] | { | ) [ W@ 5 < Z@ $# 7 ( ( 6 Y@ [ ) 4 { { d ,# d X@ 6 } 7 2 W@ # < d V$ =# b 6 6 $# ( 7- e ~# 7 6 ,# e 7 a ~# r d j F! X$ j ~# *= 7 c n r 8 i o ~# h C; 9- c h 9- p Y$ m % r ^# F= D Y$ u Z$ D ~& Z$ G /# w z G A O@ J J O A P@ A I A M x P@ N J A O@ @% T H C$ P@ E$ P@ P C$ P H E$ Z E$ U 2& W H C$ I@ Q' @. L@ H@ .. X C$ H@ V @. z@ G! -. $% 5; 5# B@ E@ e- z@ ;. &. =. '. ). /. ~. ^. ,& S' H! ~. =% '. '. 5& d# /* &% %% v@ d* e* u' I! J! , P= j# , a& a& g# 8; j# 9; 8. 9; g* 6. 6. a; 7. ^= a; q) i* d. !! {> {% d. e. c. {% c. c. e. {% h. Z- i. f. f. K! g& /% /% H, K; n* W' (% w# L! W= (% <% s. p* W= s. v. z. [= z. z. A> A. X= m- [> !' r* O; 6% 4% n& H. O; H. 6% C> a! J. S. S. M! ]' F# .- H# S. S. S. O. .- .- 1> .- .- 1> 9) 1> d; ^' t* t* 0) f; q- f; q- +- q- N! (! M, h; =+ O! 7= 7= *+ 7= 7= *+ 7= *+ y) C' P! c) Q! {+ A* b= g! /+ (+ %, b= b= Y# b= Y# %, %, b= r% 2+ l% f, s% 5+ 1+ t- B* ;- 4+ 6+ 6+ t% I& 6+ 6+ .) l' +! l' j! l' e= e= G* G* G* K> R! 0+ e= ^) ,- )- e= e= )- ,- g+ ;$ &, ,- l+ l; l+ l+ l+ l+ l+ l+ l+ n+ l; >$ n+ l+ n+ h+ ;$ ;$ >$ t+ s+ r+ r+ '$ s+ s+ x+ '$ s+ x+ w+ x+ x+ k, B+ A+ B+ A+ A+ A+ K* ]$ A+ B+ m; B+ B+ A+ B+ B+ e) S! E+ C+ #) T! E+ D+ I+ O+ L+ P+ /- P+ S+ /- Q+ S+ P+ S+ S+ P+ T+ T+ X+ T+ R+ V+ T+ V+ X+ .@ U& W+ .@ W+ W+ Z+ f) <$ U! @@ +@ V+ @@ +@ @@ #@ #@ %@ +@ m, %@ #@ *@ +@ *@ &@ &@ *@ >@ &@ e> '@ r; *@ S> -@ s= 2$ r; ~@ H- S% * I' !@ /@ :@ {@ b$ W% !@ V% W% X% R* 1@ b$ W% j$ 6@ w$ h ;# V! ], [) H) s, x, x, u, H) z, u, x, s, u, y, y, u, x, y, z, x, u, u, y, x, s, u, y, y, y, u, +' u, u, s, z, y, u, y, u, v, W! ). x@ z@ ^. '. A@ ). !. &. ). *. z$ -. B$ +. 7# .= +. .= +. B$ F@ .= 4# T D$ L@ H L@ P ` ` O ` O P 4# H$ S A G O@ 8* A z /# M `$ ", +"R@ . & . # ; # = . . X! $ + Y! T@ V@ + & ; }, | [* . $ ] ; ] ) /& ; S$ ^& ] ; 2 - 6 ] ; W@ Z@ { W@ Z! { ^ ~ d /& } 2 W@ { ~ ^ } } : ] 6 ~ { ) 2 / : &# &# ) , d $# Y@ { / $# < &# b b $# &# a $# 0 i e e 9 < 6 8 c &# 6 F! V$ d *= `! t' r h a r h e ~ F! 9- r ~# c n ~# ^# n p p `$ /# y :# 4* G h Z$ -= 4* z C F= `$ Z$ I I )> N w M= N x x w G S S I .~ P@ o> A o> P@ M@ P@ J P@ T Q@ P J L@ L@ d- H@ ,= H$ T P G$ ,= I@ A@ .. V R' E@ z$ G$ 4- 5# +. >. 5# 0# e- e- . (* z@ =. A@ ,. 0# %. &. =. /. A@ 5& '. ). {. ^. /. &% +~ ^. 5& v@ {. S' e* ,% P= _. {= {= _. j# {= h# a& g# a& ., 0, 9; 6. a& g# ^= ^= a; ^= 7. 6. a; !! e. @~ h* #~ c. c. e. e. {% h. {% Z- h. Z- f. g& m* K! g& x> o. ,) r) (% ,) U= 9! W= ,) p* <% t. (> $~ [= m- [= m- z. z. A> A> A> 0! N; N; 3% r* $, A. o- G. 9% D. H. 6% O. F# F# F# H# z! H# F# S. S. S. .- .- H# .- .- F# 1> s& d; 1> 1> b% t* s& q- 9) q- d; %~ s& t* t* &~ &~ a) @; 7= *+ =+ *+ @; 7= =+ 7= &+ @; @; ! @; *~ j' a= /+ S; Z' -- A* =~ 5> %, k' %, k' %, /+ }+ B) D' %, 2+ s% f, s% ;- u- B* ;- 1+ 6+ $$ @$ ;- l' t% -~ G* .) l' i, %$ %$ e= G* ;~ ^) %$ ^) e= >~ l; &, %$ f+ G* &, &, ;$ )- l+ w% l+ ;$ n+ n+ l+ ;$ n+ l+ ;$ n+ l+ n+ n+ h+ h+ n+ n+ '$ s+ s+ r+ )$ t+ t+ {$ i= s+ u+ u+ w+ x+ y+ A+ B% B+ B+ A+ C+ E+ A+ A+ A+ B% B+ B+ C+ D+ E+ A+ A+ A+ B+ E+ E% 0> E+ G+ D+ E% O+ O+ O+ Q+ P+ L+ O+ S+ R+ S+ T+ V+ T+ T+ V+ S+ R+ Y+ V+ @@ .@ .@ T+ X+ W+ X+ Y+ X+ W+ <$ X+ @@ +@ +@ '; @@ W+ #@ #@ M* :) %@ %@ %@ %@ #@ &@ %@ %@ -@ *@ (@ &@ >@ I% I% I% ,~ `& l, (@ {@ '@ '~ {@ r; '@ R% {@ R* ]; R* J- :@ :@ `% 8@ 9@ 9@ l$ l$ &. e ] )~ [) v, v, r, y, u, y, s, u, y, u, s, u, y, y, z, x, z, z, s, H) u, u, x, y, y, y, y, y, x, x, y, s, |) x, z, A, A, z, [) !~ (. {. {. {. d# x@ '. ). ). -. ). &. .. B$ &. 5# H@ B$ E@ +. 5# &. =. V D$ H +% J G@ V H Z C$ L@ P J H 2& J +% N J +% I ~& S N@ I ", +". ^& > ; N$ V@ ] ] > . $ }* & # & # T@ ]& > # ; ; . & | ^& %= ] N$ ; | X@ ' | # ; X@ ] ' 1 ~ ;# ~ 6 # ) [ > ~ { ; ] { W@ { } / ( 4 [ / W@ ~ 2 &# -# ) W@ &# } W@ < == $# ## d ,# V$ 7 a j g V$ 8 a i a 6 0 +# 7 a 6 a ,# 7 b 8 c L= e 8 ,# n ~# o s g L= 9- h n Y$ p h r p D D t q Z$ C C ^# `$ q t w F= C z w ~& w G w 8* D Q@ C w I z J Q@ E$ 1& Z |# L@ I@ E$ L@ 2# K@ Y P@ 3) T 2# E$ D$ 4# J X G$ H Y G$ T V V @. H@ E@ @. ,= .. +. e- ]. -. z@ 5# A@ .= ]. z@ *. O= ). '. %. 0# F, =. '. {. %% {. =% H! ~. '. =% /. /. T' {. &% Q= t@ 7& g- {= {= {= P= , P= j# g# g# f' 6) '! s@ ;% k# 9; 6. ^= 6. 6. ^= 6. ^= a; m# n# h* V' d. c. c. Z- {% Z- c. {% c. h. h. f. g& l* Z- l* V= (% H, i& p* /% (% (% (% p* p* p* z> W= )' N) @, [= [= [= [= m- A> A> m- ~~ c; G. r* O; |= {~ n& |= 6% 6% {~ Q; S. J. S. c! .- H# Y. H# x' H# H# H# .- H# F# .- .- 1> d; 1> 1> 1> 1> f; 9) f; t* s& t* ]~ d% ^~ f% /' =+ *+ =+ =+ C' *+ @; *+ C' *+ @; 7= *+ *+ /~ (~ g! l% Y# h! D' b= Y# %, b= b= %, %, l% /+ b= d= %, k' %, }+ f, B* B* _~ :~ B* g, 6+ 7+ i; g, 7+ l' .) i, 9+ .) 7+ a+ G* ^) ^) G* G* e= G* e= e= %$ %$ %$ e= G* %$ *, l+ l+ )- ;$ l; ;$ l; ;$ l+ h+ h+ l+ l+ l+ l+ l+ h+ l+ n+ l+ n+ u+ s+ s+ r+ =; s+ t+ t+ w+ o+ '$ t+ u+ w+ w+ B+ B+ B+ k, B+ B+ B% B- B% A+ C+ A+ B% A+ A+ E+ A+ A+ C+ C+ E+ O+ M+ C+ P& C+ M+ L+ L+ E% L+ /- Q& C- N+ R+ R+ T+ S+ /$ /$ U+ R+ R+ T+ T+ .@ W+ X+ Y+ X+ X+ W+ +@ W+ W+ @@ H% @@ +@ @@ @@ W+ :- +@ W+ +@ q; #@ %@ %@ *@ +@ *@ *@ <~ >@ %@ &@ &@ *@ >@ I% T% q= [~ I% }~ * >@ (@ r= (@ (@ |~ ~@ O% J- ^@ n, :@ I- W% f$ |@ f$ l$ y= z$ e }* *) ^, H) v, t, y, y, u, x, z, y, y, x, t, u, x, u, s, +' z, v, u, y, z, u, s, z, x, y, u, s, t, y, y, y, x, t, x, u, u, v, `@ -. '. -. !. !. >. &. -. '. z@ ). d# z$ 4& ). E@ V E@ z@ V C$ . P 7# W J@ V I@ Y H@ #. H P@ A Y T J E$ S O M S H |# M z I #= ", +"% . U@ . & & # . . ; # ]& $ Q$ % % 1* U@ H= > V@ ; > > ; ] ] | - > %= U@ - ; & & > 2 X@ Z! ; ; Q$ ; { [ > N$ ] 2 ) ) N$ 6 { ~ 2 ) [ *# < [ / ## ) ) : $# { &# ) 2 a V$ 6 7 e } b } i e a 7 7 5 } :& b c 6! 8 a o ~# ~# !# e 7 n [& 7 e t' 0 o o `$ r L= q h L= t' r _# h `$ m `$ m ~& ^# y w C w Z$ ^# :# 2; ^# u ^# w A A O@ J I z M G A w M H P@ M Q@ L L@ Y P@ L Q@ O H Y J 2# z$ T L@ T U H@ L@ J C$ H U V D$ d- X $% +. B$ $% U )& ]. =. B$ )& )= !. =. >. 0# B$ !. F, b# A@ B$ ,. A@ ^. 1~ $% =% '= b# 5& =% '& {. '. 2~ P= +~ 8& 3~ >' -% e* , e# P= j# , s@ h# 9; g# 0, g# a& 6. 7) ^= 6. ^= ^= ^= ^= 6. a; Y- i* a; !! c. c. c. {% Z- {% {% Z- c. 4~ Z- {% i. g& c. l* l* ,) /% r) n* /% s# (% p* 5~ (% p* s. l- z> L! {! s. 6~ 7~ ') A> Z= M; m- t) $, 6% 8~ H. 8~ 9~ 0~ |= 6% ]! ^! a~ S. S. O. b~ c, S. F# H# H# H# v) d; .- .- H# .- .- 1> t* ^' d; ^' t* q- c% f; #- b% t* f; f% q- .; f% ;+ *+ 7= *+ *+ C' *+ 7= @; @; @; @; `) A' C' C& ~) c~ -- d~ R) b= -- %, b= Y# Y# b= b= Y# b= }+ 3+ b= k' b= A* s% g, g, }+ u- e~ g, 5+ 7+ ;- i; 7+ 7+ e= G* .) l' K> %$ G* e= G* %$ k; ,- e= G* e= ,- 0+ e= G* ^) k; l+ l+ u% j+ g+ n+ l+ h+ f= h+ ;$ l+ ;$ ;$ l+ h+ ;$ ;$ n+ |' ;$ u+ t+ t+ s+ O& o+ t+ i= N> u+ i= s+ w+ u+ i= ]$ B+ B+ B% B% B% B+ A+ B% C+ E+ A+ A+ C+ A+ C+ E+ A+ A+ R& E+ E% A+ E+ A+ E+ k= O+ O+ E% E% P+ /$ R+ O+ O+ S+ /- O+ Q+ S+ $) X+ R+ R+ R+ T+ Y+ .@ X+ @@ U+ .@ .@ W+ X+ m= X& f~ #@ +@ @@ @@ `; #@ %@ '; #@ #@ +@ *@ &@ &@ %@ %@ &@ &@ >@ > ~; >@ 4$ >@ ~@ I% G- `& 5$ '@ (@ 0$ {@ R% /@ {@ d$ <@ 9$ 1- 4@ W% W% W% 9@ l$ x= 4@ e@ H } ; g~ q, v, [) v, u, x, x, s, x, z, x, v, =) u, z, y, s, z, z, x, y, y, y, y, x, z, v, x, x, s, z, z, y, u, s, =) s, u, +' q, Y! A@ (. q@ &. &. ,& -. '. A@ ). A@ -. ,. A@ >. E@ G@ E@ h~ E@ i~ V T D$ S S E@ }; C$ Z E@ H &' @% Q@ Y L@ T ` M P@ P@ J Y #= M I G ", +"]& # T@ * }* = > - > & > . ]& ] - V@ & %= U@ # E! ; & P$ ^ ] | S$ ] > H= ] ; > ] & & / { ) ] ; { ^ R$ ; ) ~ ~ | ) | W@ 2 < [ 5 { [ { ~ / { W@ -# 2 } ) / $# ## &# V$ &# d d $# ## 7 8 b } 7 2* } 7 &# : d 0 6 8 a a a i ~# c 6 7 8 8 8 e a _# r h ^# h o r -) r r c Y$ `$ ^# |& t G h j~ G G G y q m D C B w % ^# D P@ M A J P@ w x M z 8* C E$ H P@ P@ P@ L@ L N@ L@ T 3) L D$ M@ L V P #. E$ H@ R J &' H R I@ 4# H +. .= .. e- +. $% )& . 7# >. )= &. *. A@ ). H! >. e- 0# %. z@ %% %% &. H! 5# &. '. b# o) != |. v@ '= 6& 9& ~. /. {. d* *% k~ , j# e* 1. j# {= j# g# g# j# l~ s@ 9; a& 7) k# 7) U' 6. !! ^= a; ^= i* V' m~ i* e. e. c. c. c. Z- h. K! K! Z- {% ^% f. n~ h. l* U= H, H, p. )' 8) p* n* (% o~ p* z. `- W= @, m- N; A> A> z. m- a, p~ m- A> Z= [> n& q~ r* )) C> ^! O; 6% n& r~ c, 0% O. J. 0% {' F# y' H# F# b! d; v) .- 1> 1> d; ^' d; d; d; ^' f; f; u& f; t* f; f; f; q- f; ]~ s~ (! 7= @; *+ O! *+ *+ C' *+ 7= @; C' @; #; t~ B' =~ t~ Y# A* Z' b= b= Y# b= b= %, b= %, b= b= ) }+ 2+ %, `# 1+ 6+ }+ 6+ 6+ ;- 6+ J> 1+ @$ 8+ 6+ @$ .) l' G* i, .) a+ e= e= %$ e= u~ u~ %$ G* e= G* |' -$ 0+ f+ *$ u% Q, Q, v~ j+ n+ ;$ l+ ;$ l; ;$ ;$ n+ n+ ;$ ;$ y% ;$ l+ n+ l+ n+ r+ i= s+ s+ t+ n' s+ s+ N> u+ u+ N> '$ i= u+ ]$ B% B+ w~ B- B+ A+ B+ B% B% E+ K* B+ E+ C+ A+ A+ C+ F) F) H+ C+ C- A+ ^$ C+ B+ M+ O+ E% E% O+ L+ Q+ L+ E% S+ P+ P+ R+ T+ P+ T+ T+ T+ R+ G% V+ Z+ @@ X+ Y+ W+ X+ @@ @@ _$ Y+ x~ y~ +@ @@ +@ +@ W+ @@ +@ }$ %@ #@ +@ %@ #@ *@ ~; ~; *@ >@ [- &@ I% l, e> >@ d> /@ N% /@ H- O% H- U% (@ {@ )@ 0$ S* !@ {; }- w= W% W% b$ X, |@ e$ )* S [ . g~ *) z~ s, x, u, x, y, s, u, y, x, x, y, y, y, y, x, y, y, y, s, t, y, s, u, y, z, z, u, x, s, t, s, u, x, x, s, s, x, s, + O= A@ ^. = !. 5# *. )& A@ ;. F, A@ ). F@ -. z@ A@ >. E@ R 9* .= .= F@ &' D$ C$ X V L@ E@ H@ H@ J Q@ J@ P J H S Q@ H$ S T H$ S A H$ ", +"!, T@ > $ . . > > > . + = o! |* ' # # H= # > !, > > ] - > - > > > X@ | U$ | N$ - 2 ) ^ ^ { U@ [ ^ . |* R$ 2 | ] ) 2 [ W@ /& 2 ,# ( $# 6 ~ $# $# Y@ $# 8 Y@ 1 / / &# 7 b : 6 == $# a &# a ~# 8 a 6 d e 7 b e A~ $# ( 6 &# e L= e ~# c e *= i e 8 L= n e Y$ h c h c (# o h o r p 4* ^# b' O' % <, p N= y p q w C ^# M= D G /# A }# H$ G C P 8* H E$ L@ |# G P@ I E$ A J P@ M H$ S 3& 3; :* H$ M@ O@ J L B~ T U C$ L L@ H +. e- y@ z$ 7# +. )& e- .= 6# A@ @. A@ &. 5# 5# )& F, V 4) !. %. F, A@ '. &. A@ A@ !. C~ ~. b# D~ -. {. =% '. 5& ~. {. /* D~ {. v@ t@ 1. *% '! E~ 1. j# P= e# a& g# f' g# g# g# f' f' f' 9; v' !! 6. a; 6. ^= !% d. {> a; c. c. d. c. Z- {% c. Z- {% {% h. h. g& f. F~ r) H, H, H, U= (% G~ W= W= H~ l- h' I~ s. W= `- z. z. [= A> m- [= y! J~ <> K~ L~ X' P; 0~ 6% )) ]! 6% H. D> {~ M~ {' E# O. F# O; N~ H# v) H# H# v) F# .- d; d; .- d; 1> d; 1> d; ^' f; t* d% 0) t* t* f; f; ]~ d; t* /' e! $- *+ 7= O~ *+ *+ *+ *+ C' @; *+ C' C' C' C' P~ j' Q~ /+ Y# Y# Y# b= b= b= Y# Y# Y# %, b= %, %, ) %, }+ 1+ g, B* 6+ g, ;- u- t- g, +! 7+ 6+ 6+ 7+ t% 7+ e= 7+ l' i, G* G* ^) G* %$ e= e= ^) ^) ^) j+ e= e= *$ u% e= S) S) )- l+ n+ l+ l+ l+ l; l+ n+ ;$ l; n+ M& >$ l+ ;$ l+ ;$ O& R~ s+ >$ s+ )$ s+ t+ i= w+ u+ s+ u+ w+ w+ w+ B- B+ A+ B+ A+ B+ C+ A+ B% A+ A+ A+ B+ A+ C+ B% B+ D+ A+ ;; R& E% C- B+ A+ A+ C+ Q& O+ O+ E% O+ R+ L+ Q+ P+ S+ P+ S+ S~ P+ S~ S+ R+ T+ R+ G% V+ U+ W+ X+ +@ .@ X+ @@ _$ Z+ H% :$ W+ @@ @@ #@ +@ #@ +@ +@ #@ +@ +@ #@ %@ }$ %@ D- %@ #@ &@ *@ '@ '@ -@ -@ `& T~ )@ Q% C! 9$ w= U% R% /@ <) U% 0$ 9$ 1@ :@ :@ e$ 2@ f$ U~ `% v; f@ Z$ | # *) r, s, v, x, u, u, y, u, x, y, y, u, z, y, u, x, u, y, x, y, u, u, x, s, u, z, y, y, u, x, s, z, x, x, s, x, x, x, x, s, q, R E~ W> B@ 7; ). E~ A@ A@ ). &. ). ). )& )& l> z@ +. &. z$ #. I@ =. ` Z P T H L@ M@ P H ` 1# P Y L@ Y Y H Y P@ J N@ Q@ Q@ 3# A ", +". . = + ]& . $ $ Q$ > $ ! U$ 5- U$ > # . . # V@ - ~ ) N$ ] ^ U@ ] ; > - ; > - & ; R$ ] 2 [ { ) 2 | [ [ W@ ] ] ] %# [ Y@ X@ 2 < $# ( [ } Y@ [ 2 6 7 $# 2 < b } ~# $# $# } 6 e 6 _ e ,# V~ ~# g d 8 a 6 g V$ ,# 6 &# < V$ ,# d e ~# ~# e 7 7 *= r Y$ h c c o n a _# _# {& n h m D b' m K= m D C N /# y Z$ D `$ w I Z$ w I A M N@ N I P@ C w x A E$ P@ E$ U ` L |# J P U Y H@ E$ L@ U O U C$ C$ H T I@ J H D$ V Y F@ @. 4# @. (* z@ 7# e- >. ,. -. +. A@ e- W~ ). !. ). B$ .. ;. 5# 5# 5# )& &. &. {. ;. ;. +~ !. ;. |. |. e' D~ |. &% _. '& d* |. 9& *% e' '! -% e# g# , g# 0, 0, 9; g# f# f' k# f# 9; k# v' ^= 7. 6. 6. ^= i* c. X~ q) Y~ c. e. c. {% Z- h. Z- {% 4~ {% Z~ f. g& K! h. H, ^% H, l* n* V= `~ h' W= p* 5~ W= s. `- {! @, @, m- [= [= s. [= [= L~ A> A> t) 4% 0~ n& G. z! z! 6% r~ O; O; { c, S. F# v) .{ F# v) H# H# .- H# H# H# F# 1> 1> d; 1> .- d; ^' +{ f; f; c% (! q- q- f; f; q- s& /' f% (' 7= *+ e! =+ 7= =+ *+ C' 7= @; *+ @; @{ @; P~ j' d~ b= b= h! <' D' Y# k' k' k' b= b= %, Y# 3+ |+ %, A) 1+ 1+ ;- 1+ |+ %, b= g, 1+ ;- 7+ >- g, #{ t% t% i, K> l' .) u~ e= G* G* h, G* G* ^) e= e= j+ %$ G* ,- /) %$ }' S) ;$ )- ;$ ;$ l; ;$ l+ m+ ;$ l; ;$ n+ A- A- ;$ ;$ n+ l+ J* W; t+ y% '$ y% u+ y% y% u+ x+ u+ u+ u+ u+ w+ i= C+ A+ B+ A+ B+ A+ B% A+ A+ A+ B+ B+ A+ C+ B- A+ B+ B+ B+ D% T! Q& S& E+ C+ C+ O+ E% E% L+ S+ /- O+ Q+ R+ V+ T+ S+ R+ R+ R+ T+ R+ R+ /$ R+ U+ .@ .@ X+ X+ @@ .@ X+ +@ +@ _- ;, #@ +@ +@ @@ @@ +@ #@ %@ %@ #@ ~; &@ &@ &@ ;@ W, %@ &@ `& U, &@ )@ '@ >@ )@ '@ 7$ Q% )@ 8$ [~ }@ /@ ^@ !@ 0$ W% !@ /@ }@ ${ /; X% 2@ W% }@ X% q@ h ] > *) 6' %{ s, s, #' u, u, y, s, x, z, x, u, y, u, 7' u, A, y, y, u, x, w, x, x, s, x, t, v, x, =) v, s, s, H) s, x, s, x, s, q, J@ (. ^. !. ;. ;. {. ;. !. &. $. (* .= 5# E@ =. -. &. !. .= ). G@ 5# X 1# G@ C$ .= . G@ .= 4# X B$ L@ Z Y ` Q@ P@ 3# +% I P@ I Q@ J @% ", +"Q$ [* > Q$ L$ * R@ + = Z, ; . $= $ ] # V@ # & - ^& %= . . > & | H= ^& N$ ; # | | U@ - | - ; /& { 1 { W@ ~ { Y@ W@ / 2 2 } / 4 2 : < ( $# $# ) W@ < Y@ &# $# 9 W@ J= } $# / d b ( } /& 7 0 $# 8 U- 7 ,# 6 ~# d ,> W$ ,# $# 7 $# V- 7 a e ~# e g X$ a c h % n o V$ e K= g p r r `$ p 2, Y$ r /# /# C C C w N= Z$ h `$ p ^# D y 8* [# C Q@ N .~ I C A {& A E; |# P@ Q@ Q@ D$ S O H Y S z U 3& P T J +. P L@ M@ P C$ Y 2# L 7# R +. 4# C$ 6# I@ C$ &{ 7# X !> *{ z$ ={ G@ E@ +. =. 6# z@ )& z@ +. )& =. F, /. =% '. '= ;. A@ '. S' 5& 3~ != +~ -{ Q= -% /* |. 7& *% w$ e* -% P= ;{ `> , j# h# a& a& }. ;% 9; 9; n# f' n# U' U' ]= ^= a; q) q) @~ c. )! (= c. c. {% {% {% {% Z- Z- Z- Z- Z- f. l* K! r) v# l. >{ ,) H, p* b; ,{ p* '{ W= W= j& A# L; ~! p~ z. [= [= z. L~ ') M; N; m- [= N; 5% $, b, ){ q~ 6% O; 6% H. {~ F# c, c, b~ a% H# .- !{ .- y' F# H# .- F# .- .- 1> d; 1> ^' c! d; d! q- q- q- ]~ d% t* f; q- ]~ ]~ ^~ ~{ @; C' *+ @; 7= *+ *+ @; b) @; *+ 0= B' #; *+ {{ C' Q~ b= `' S; b= l% A* Y# %, %, k' k' %, 3+ s% %, %, ]{ 1+ f, ^{ g, 6+ .! d= e~ i! @$ ]) 6+ >- l' 7+ +! K> j! l' K> e= e= G* >~ e= u~ %$ G* G* ,- )- G* ,- K& 0+ &, w% )- j+ l; ;$ @) l; ;$ @) ;$ g+ /) l+ /{ h+ ({ r+ l+ >$ ;$ l+ >$ t+ '$ >$ n' t+ s+ y% u+ '$ t+ t+ w+ u+ s+ k, m; B+ B% R, A+ B% A+ C+ B+ A+ B+ E+ B+ A% B+ A+ C+ B+ A+ E+ Q& E% B+ C+ C+ L+ E% E% L+ L+ /- P+ /$ O+ /$ G% T+ R+ V+ S+ T+ R+ V+ _{ Y+ Y+ W+ .@ @@ V& X+ W+ +@ @@ X+ :$ :{ f~ @@ +@ +@ #@ @@ +@ #@ +@ +@ #@ %@ &@ *@ &@ %@ &@ =@ *@ >@ D- 1$ (@ `& L% G- H- `& d> {; ,@ {; {; S* R% 0$ 9$ }@ W% !@ g> ^@ 1- }@ ^@ 9@ |@ {. h & <{ *) `, s, r, x, y, x, x, r, v, x, y, u, u, s, u, y, x, s, z, x, y, s, s, x, x, s, x, s, x, x, u, =) x, x, s, y, s, A, x, s, q, <, v@ &. '& ;. %% A@ c# ,& 5# )& &. ). &. 4- &. (* 8# +. V A@ ,= (* A@ E@ H X E@ 2# 2# T T C$ b- Q@ M@ L@ L@ P@ P@ I P@ Q@ J #= Q@ A M ", +" + + M$ & # # $ ; - - > ^& ^& & ; & U@ V@ [* $= > . & - 2 ! - ^& ~ N$ S$ | N$ & 5- ; ^ %= 2 ~ } ( ~ } *# V$ 1 ) - ^ ## / ) { ,# $# W@ | 6- ( == } } e d -> } e ( 8 [{ ( } &# [ 6 6 V$ &# V$ [ a 8 7 7 d 6! }{ a 8 9 9 ~# $# i [& g q> ~# h -) 7 `$ K= l n 7 r r h p :, p r p q s> ,> Y$ I z D `$ M z /# C r z y w G Z$ w A I K@ Q@ K 1& |{ Z z H$ A B K@ M 3# A 8* O H S O@ Y d- X H J T T Y C$ #. d- O= 7# @. C$ C$ Q' X E@ >. L@ V H$ +. . E@ (* .. =. $% +. z@ ). 0# 9# A@ ,. ,. *. *. A@ ). *. x@ '. x@ /. {. /. |. 5& `> %% w$ /. %% v@ {. u' k~ *% -% :. 5) {= *% 0, , , l~ a& g# 9; 9; 9; f' f' n# n# 1{ ^= 6. a; v' a; @~ e. )! V' e. c. {% h. {% Z- h. h. Z- h. K! K! f. K! r) K! H, H, ,) H, (% (% p* W= ,{ b; K; W= `- $~ W= @, [= ') m- z. X' m- 0! A> A> ') 0! b, C> {~ H. C> G. 6% ]! 6% ]! b~ D> G# ]' H# H# 1> a! H# H# H# .- 1> 2{ c! 1> H# d; d; d; 1> ^' d; f; ]~ t* t* z& ]~ 3{ f; 3{ 3{ ^~ O~ 7= *+ &+ 7= @; ~{ ;+ =+ =+ @; @; C' 0= h! 4{ F> @{ P! Y# Y# S; {{ f! Y# %, %, b= Y# %, %, ]{ 6+ H& k' b= /+ b= B* 1+ 1+ f, k' 1+ 1+ -~ l' 5+ l' 7+ .) K> G* i, j! .) i, e= G* ^) ^) u~ G* e= e= k; j+ G* ^) G* e= &, 5{ n+ k! j+ l+ ;$ l; l+ @) l+ l+ l+ n+ ;$ l+ l; =, l+ l+ ;$ n+ >$ t+ 6{ y% 7{ V; '$ s+ u+ u+ t+ '$ i= w+ i= i= w+ B+ C+ A+ m; B% w~ B+ C+ A+ B+ B+ C+ ]$ C+ A+ ^$ 8{ 8{ R& E% /$ 9{ C+ C+ P> S+ L+ Q& L+ /- /- Q& O+ R+ R+ P+ R+ V+ R+ T+ Y+ R+ Y+ Y+ V+ U& U+ X+ Y+ m= U+ X+ +@ @@ @@ 0{ M* +@ &@ #@ +@ &@ #@ #@ #@ #@ #@ %@ *@ m, &@ &@ *@ -@ [- p= >@ >@ )@ -@ I% &@ (@ 9$ ]@ 2$ T% (@ }- O% U> :@ a{ /@ }@ W% !@ !@ 4@ 0$ P* b$ 3@ !. f ~ + J$ [) 5' ^, v, z, x, s, x, s, x, y, x, z, u, y, y, s, u, -! y, x, u, x, x, x, x, z, y, y, 7' x, v, v, }) v, v, 6' s, s, s, =) >> x@ p) (. !. !. -. ). '. -. A@ ). )& -. &. .= ). 5# #. 8# ,= .. #. E@ +. $> G@ V 2# P L@ P P M 1# E$ M H H K@ Q@ A Q@ Q@ N@ P@ A I ", +"R@ # T@ # # S$ > > & & . > % + . |* V@ V@ . S$ V@ $ U$ ; & # . N$ - ; 4 | . > ] *# | ; | b{ Y@ | < ) [ } } / / | ] ( ## : 7 { 6 } ( { 8 X@ < $# { 6 b _ : [ { ( e 7 6 7 } 6 9 e [& 6 e e $# ( } 7 i i V- V$ ># &# 0 2* n {# a j a c k L= c{ h Y$ % ^# r K= ,> 4* w ^# r p 1; m `$ Z$ /# h ^# P@ ^# m 2; u /# )> _# /# G w C O@ B Q@ J 3# F= I H O@ H$ A I a- b- 3# 8* r! M J E$ d{ L V :* P@ >) T J T H H@ I@ d- C$ D$ L z$ z$ 4# W D$ Q' )& z$ . e- )= ). z@ 5# !. =. #. &. >. 5# ;. '. A@ 0# -. &. x@ =. %% ). -. ). %% %% '= {. |. D~ 6& +~ {. e{ |. f{ H; t@ , P= P= 7& e# P= j# g{ f' g# 0, 9; a& 9; 4. g' n# h{ i{ 6. 6. a; j{ 1{ 0. 9. V' a; ]> Z- h. Z- h. 8! {% Z- h. {% c. h. l* K! r) r) g& H, V= (% V= (% ,) (% V= G~ W= l- j& k{ H~ {! m- [= A> m- l{ m- A> m- ') m{ <> r* G. P; H. q~ |= O; M~ z! 8~ M~ D> F# F# F# n{ S. v) 1> 1> .- .- 1> .- .- 1> !{ d; 1> ^' 1> 1> d; +- t* t* f; f; d% 0) f; f; ]~ s~ +; 6= 7= *+ *+ o{ O! @; @; *+ @; 7= *+ 7= C' p{ C' P~ _' ) Y# q{ <' b= r{ Y# Y# _~ %, %, Y# b= %, |+ A* k' k' k' B* |+ g, .! k' 6+ 6+ g, l' i; g, +! 7+ .) e= e= l' ]) G* e= %$ %$ e= G* e= ^) G* k; ,- +) e= >~ ^) G* s{ l+ l; k! l; l; ;$ ;$ l; ;$ ;$ n+ h+ ;$ ;$ ;$ l+ ;$ n+ l+ l+ ;$ t+ s+ s+ r+ x% t+ s+ '$ w+ w+ M> u+ u+ w+ u+ w+ B+ B% B+ C+ B+ E+ B+ B% A+ A+ C+ B+ D+ E+ A+ A+ C+ E+ R& A+ O+ E% E+ C+ H+ L* Q+ Q& Q+ L+ S+ O+ R+ t{ T+ R+ P+ R+ R+ Y+ V+ T+ V+ G% m= U+ `; W+ V+ W+ @@ W+ W+ Z+ W+ X+ @ @@ :- +@ +@ %@ #@ %@ %@ *@ #@ &@ +@ -@ %@ %@ S> *@ C! p= &@ I% 4$ -@ )@ p= I% * * R% *@ u{ u= {@ }- )@ {@ ~@ R* |@ P* W% ^@ <@ ^; !@ 7@ X 7 ; ], ^, q, r, x, t, s, y, s, y, v, x, z, x, s, s, u, z, s, s, r, s, v, v, x, u, u, x, s, u, u, s, s, s, H) A, v, r, 8' u, t, s, H) ;> A@ ;! T' &. b# d# x@ z@ x@ &. ). A$ l> A@ 7# .. 7# x@ $% V @. E@ .= B$ V H 2# 1# L@ C, S J 2# P 2# O P@ S L@ A H M J 8* 1# S z ", +"* & . . . # V@ S$ S$ - ; | * V@ > |* # . > H= # & - N$ ^ ] ~ ~ ^ ^ %# ~ ; N$ N$ 7- N$ ) T- ) ~ # 2 { } ) { | R$ ] ~ 1 ) : W@ ~ { e W@ 2 X@ ~ /& $# } $# 6 } 7 +# e } } 7 6 7 $# { < } c | ~ ,# e *= e 7 D, k 8 6 k ~# [& s> 7 e 8 h ~# ~# 8 a e r `$ c o 0- `$ `$ n ^# r o c h Y$ h Y$ _# r 2; D D ^# G D 5* C ^# w z w I B H$ O@ M P@ A P@ 8* @% M J O@ H$ P@ P@ L@ ` P@ P 4# P |# H A S L L@ T T V 7# C$ L@ 4; Y D$ C, Y P H J 7# $. >. >. P +. 5# &. )= =. e- %. ;. .= -. &. )& &. A@ ). ;. &. ,& A@ -. x@ /. ~. ~. v{ {. {. d* w{ &% &% v@ `> u' P= e* {= P= {= x{ h# 1. P= d* 0, g# e# g# 8; h{ 0, 6. n# 7) g# g' a; g' @~ y{ m~ z{ c. A{ m~ {% {% {% Z- 8! Z- h. B{ Z- {% K! K! l* r) K! H, l* C{ 8) '{ p* h' I~ i& W' D{ p* E{ N) H~ p* j& [= t) m- A> A> A> :> y! a, a, 8~ O; 6% O; C> 0~ 6% |= M! O; O; ]' L. a% F# n{ n{ x' .- H# x' 1> .- 1> d; 1> d; 1> d; 1> d; d; 9) F{ s& s& d% ^' f; f; q- z& ]~ q- z& O! b) @; G{ H{ O! C' ;+ *+ @; I{ *+ @; ~) a= @; J{ #; S; <' K{ h! b= %, b= b= %, %, b= k' k' Y# c= %, k' b= c= f, d= B* w- %, >- ;- g, i; 7+ 6+ i! 7+ l' L{ e= K> ]) ^) e= i, e= e= >~ .) +) k; >~ e= s{ [! k; k; ,- M{ &, &, g+ j+ ;$ n+ ;$ ;$ ;$ l+ l+ h+ ;$ ;$ A- >$ n+ l+ n+ n+ l+ i= N> s+ y% r+ w+ t+ u+ u+ i= M> w+ N> i= i= j= B% k, A+ B% A+ B% B+ B% B% B% B% B+ B% B% A+ B+ C+ C+ F) C+ C+ N{ S& B+ E+ C+ O+ E% O+ a> Q+ P+ S+ O+ P+ S+ P+ L+ L+ R+ T+ Y+ R+ R+ T+ Y+ W+ Y+ V& .@ X+ W+ W+ W+ X+ `; _- H% O{ @@ @@ %@ %@ %@ +@ %@ +@ %@ &@ }$ %@ &@ J% V, * %@ p' =@ &@ >@ *@ (@ N% )@ ]@ * e> U% )@ I- R* b$ /@ b$ v= 9$ ^@ ^@ W% P{ X% x= a@ Y 6- T@ R@ *) ^, r, v, z, x, s, s, x, s, x, v, s, s, =) u, y, z, s, 6' x, u, u, y, y, y, y, y, z, u, y, x, H) x, x, x, v, s, u, u, x, s, ] $% {. !. '. ). z@ '. b# ). *. %. 5# A@ *. =. G! x@ +. .. .= =. 5# H P T Y H P D$ Y H L@ H ` S H$ ` S J ` H$ K@ P@ A z O I ", +"1* > ]& % !, & $ # # ]& ^ | L$ . ; $= ; & ; | | H= > > |* H= ~ ; $= U$ ~ ~ 2 N$ N$ | & U$ { 2 { ) ^ $# W@ { ) { / U$ /& %# N$ [ ~ $# { } $# # ## d ( { Y@ / < Y@ b / 7 [ < 6 0 6- 7 1 [ 8 -# 8 $# V$ b c e $# ~# 3* 8 &# ,# j 0 g a 6! L= s> 8 i [& 7 n 9- t' n n h w Z$ r n c o p _# c{ Q{ Z$ r h /# :# M {& 4* D C w w ^# F= C P@ P@ I M 3# N N N@ 1& N@ 3# Q@ 3& Q M N@ S O@ E$ H H K@ I S P T L@ O C$ V L@ L J P G$ C$ 1# U 7# V R 5# $% #. B$ A@ 7# )& V R{ 5# =. 4- F, ). *. &. e- (* !. A@ &. 5# ;. B@ ). a* H! D~ /. !. D~ 7, u> >' v@ ~. != 5& e' d# {= e* P= , {= P= , S{ , , j# a& g# k# T{ ., , n# n# f' 1{ v' q) ^= q) !! v' q) e. U{ @~ V' c. {% Z- {% Z- {% Z- h. h. K! g& g& V{ r) K! l* r) W{ g& i& p* h' W= I~ I~ l- H~ @, k{ l- H~ z. [= A> [= [= m- A> M; l{ )) q~ C> n& n& 6% ]! |= M~ u) z! {~ 6% E# {~ r~ b~ X{ c! F# b! H# H# H# 1> 1> ^' d; c! 1> d; d; t* 1> q- q- 9) 0) f; f; q- t* f; 9) q- Y{ (! z& *+ N! Z{ b) C' 7= *+ C' C' 7= *+ *+ `{ S# {{ /~ q{ <' Y# S; %, D' Y# %, k' /+ D' _~ `' %, %, %, ] _~ k' _~ %, ]{ 6+ k' 6+ i; e~ i! 5+ >- i! i; l' ]) K> K> l' l' e= e= G* G* G* ]) K> +) G* ^) k! k; e= G* u% G* .] .] U; )- k! l+ l+ l; ;$ l; l; n+ l+ ;$ ;$ >$ n+ f= l+ n+ >$ n' i= t+ t+ t+ s+ y% t+ i= u+ w+ y% '$ w+ u+ x+ i= k, A+ B+ B+ A+ A+ A+ R& A+ B! C+ C+ B+ B+ B+ B+ B+ C+ B% E+ Q& S& C+ E+ E+ M+ O+ O+ /- S+ R+ S+ Q+ L+ Q+ /- /$ Q+ Q+ R+ R+ R+ S+ Y+ V+ W+ Y+ @@ X+ .@ W+ W+ W+ @@ V& <$ H% @@ +@ +@ #@ #@ +@ #@ #@ +@ #@ @@ '; &@ $@ > p; J% =@ *@ -@ =@ >@ s= ]@ -@ '@ )@ R% 2$ 0$ R% 6$ T% !@ <@ V% !@ 0$ S* ]; J- W% W% f$ +] K@ Y@ & ^, 6' +' @] s, s, x, z, x, u, u, s, x, x, s, y, y, y, s, s, y, x, 7' y, u, u, y, y, u, x, y, z, z, u, z, u, s, u, s, u, 8' x, V! 5# B@ &. '& #> ;! A@ V> &. ). &. E@ $% =. e- .= h~ .= z$ z@ 7# Z V C$ 1# P |; J P@ |# Y E$ R H Y T +% K@ H$ L M I I )> S S S ", +"# # # # !, > - V@ + + = $ > > # ; > # V@ N$ ; & & Q$ ^& & R$ ; ] 2 %= 2 ] V@ 2 /& | Z! ; { [ ) ; *# d ~ 1 7- 2 W@ 2 ) ] 2 ~ & < 1 < ) a J= : | { 1 ;# 7 { $# $# &# d V$ 6 i < $# 7- &# 6 b a a 6 e 8 d ~# i &# 7 6 {# e L= a q> a n n n 0 c L= n o -) ;= % p q> p ~# r n Y$ l ;= c G p ^# #] C q D D M z Z$ w N /# F= J }# $] N E$ z I A N M T U E$ N w M@ D$ N x O@ T H T J M@ Y T X D$ 7# L@ P' W I@ Y #. 7# T C$ L 2# A@ E@ z$ W @. @. $% z$ ,= $% )& E@ )& A@ B$ >. z@ =. &. !. !. !. ;. B@ ;. b# /. '= '. =% ~. =% {. '= '= b# 6& Q= *% t@ *% P= ~= %] u' g{ '! , e# 9; 0, g# g# 0, e# f' 9; f' 6. k# 1{ 6. 6. a; a; !! @~ !! a; &] !! q) V' c. {% {% Z- h. h. h. Z- h. r) h. f. H, K! l* H, W' H, b; $~ (> (% (% W{ *] h' j& p~ E{ k{ N) N) [= [= [= m- m{ [> !' 0~ 0~ q~ q~ ]! z! 0~ 0~ C> |= |= O; {~ =] a~ Z) y' n{ a% c! y' y' c! x) H# ^' ^' ^' .- d; d; 1> d; d; 1> q- f; f; 0) q- q- f; d! -] ;] O! ^~ 0) +- v& H{ v& C' @; @; 7= *+ @; @; 7= `{ P! Q) f! Q~ <' D' <' R) 5> k' b= Y# %, %, _~ %, %, %, H& Y# _~ k' k' ]{ >] d= 6+ k' 6+ i; i! e~ l' i! ,] 7+ 7+ .) e= l' l' i, e= e= e= ^) u~ ]) ;~ ^) e= %$ u% %$ %$ ,- ^) G* .] '] g+ l+ ;$ l; l+ l+ ;$ l+ l+ l+ l+ ;$ l+ l+ l+ ;$ ;$ ;$ l! D) s+ y% t+ s+ A- g= t+ i= N> y% t+ u+ s+ w+ ]$ B% B- B% A+ B+ B% B% B! B- A+ A+ K* C+ A+ C+ A+ A+ D+ J+ B+ )] a> F) C+ F+ C- K+ O+ /- Q+ S+ P+ S+ L+ Q+ R+ E% R+ T+ S+ R+ R+ T+ R+ T+ _$ m= .@ X+ W+ Z+ X+ W+ @@ Z+ +@ _- :$ W+ @@ @@ +@ p; #@ %@ #@ +@ +@ >@ %@ &@ D- > !] %@ D- * 1$ -@ 4$ ^@ '@ G) .* R% 6$ N% S% ~@ (@ >, P* X% }- W% g> U% x= J' b$ X% i@ D *# $ i) q, r, q, x, s, s, t, y, t, x, u, s, s, |) x, x, x, z, u, u, x, s, z, u, s, s, y, z, A, v, x, x, u, x, z, x, x, s, s, s, x, x, q, B$ '. ;! A@ x@ ). (* =. =% x@ )& P )= z@ )& $% H@ &. .= 2# 2# @. U C$ L@ O R S P T D$ P C$ ` 2& +% J E$ S z I M J w @% ^# I ", +"$ # ]& > # > . $ + & ' S$ N$ - ^& = > R- & . # M$ Q$ # > . H= > ] | ; 2 { V@ { | ; [ ] ~ 1 $# ## Y@ ) `@ ~ ;# ] } ^ ] ! } 2 [ d J= { ) ~ 6 i W@ [ / Y@ : { *# &# } $# 6 8 } ## } [ } } c e $# == _ =# b a N' $# e a 0 -# e {# e ~# L= g c ,# 2, ~# [& o g n C; _# r `$ n h r 0 [& r r m `$ q m t w I G z z G I p ^# `$ w N J O A M x E; x I G M z 7* I Y Q@ I |# P@ P P d- E$ Y L@ E$ S J C$ G$ X d- U Y . z@ y@ #. E@ .. #. @. X +. #. =. )= .. E@ (* 0# )= ;. 5# &. )& =. &. 5# &. ). x@ v{ b# ,& S' z@ ,. 5# /. {. D~ '. +~ &% ~] |. &% w{ 7! {] 7& t@ P= f{ g{ -% '! h# s@ {= j# g# 0, 9; l~ l~ 9; 8. U' f' ]= ]= n# v' {> g' a; !! ]] w> a; @~ c. Z- {% K! Z- Z- K! h. ^] h. h. f. ^> h. F~ l* g& g& W' (% ,) '{ p* ,{ W= L! z> z. k{ E{ `- l- m- m- m- A> 0! L~ [> /] (] q~ 0~ M~ q~ C> z! O; ~' E# {' C> M! F# x' y' _] x' ]' H# !{ :] x) |> .- 1> ^' .- H# d; d; ^' q- <] F{ q- f; M, F{ 3{ z& q- 3{ ]~ ]~ (! f% [] y) y) ~{ C' C' *+ *+ *+ ~{ C' _! ~) `{ ~) _! Q~ j' -- b= S; /+ }] A) %, %, b= b= k' %, b= c= %, b= k' k' A* }+ k' -~ %, ]{ I& +! i! ;- >- g, .) .) l' L{ ]) l' i, e= G* G* %$ G* i, u~ ^) e= >~ 6> %$ G* f+ G* ^) &, /) 6> u% ;$ ;$ g+ l; l+ l+ ;$ ;$ l+ l; n+ l+ ;$ ;$ l+ l+ |] 2' y% t+ }! =, /{ t+ s+ '$ u+ '$ |! y% s+ u+ u+ w~ R, B+ B% A+ k, B+ B% B% B% B% B- B+ C+ A+ C+ B+ D+ J+ C+ C- O+ J+ C+ E+ M+ L+ L+ L+ a> /- P+ L+ E% E% /$ S+ R+ T+ T+ R+ R+ R+ V+ G% .@ `; W+ W+ W+ @@ @@ W+ X+ @@ @@ H% H% #@ @@ #@ +@ [$ &@ %@ #@ }$ }$ *@ &@ #@ =@ V, S> 1] *@ 2$ '@ I% >@ * )@ T% G) G) R% ^@ P* W% P* !@ !@ W% ^@ 4@ d$ 4@ d$ !@ /; |@ u@ C ] ], `, 6' 5' +' r, s, x, s, s, z, x, u, H) s, v, z, x, s, x, t, u, v, u, u, x, u, s, x, u, x, A, u, y, x, s, x, x, x, s, s, v, s, v, 6' 2& ^. ^. ,. !. (* &. !. A@ &. !. 4) A@ ,& >. &. 5# V> R V> E@ F; G@ E@ C$ R E@ E@ 2# 1# Y D$ 2# Y P@ }; H J P@ A z O@ Q@ G x I I ", +"]& [* V@ & . 0' > . = }, ; . > . ^& # . ; T@ # N$ - ; T@ - 1* | ; ' ] 2] { ) - ] Z! ; | | ) 2 ) ~ 2 & U$ { ( ~ ] 7 *# X@ ( ## ) W@ ## ;# ~ d ( / 1 ( ~ 2 4 3] N' d U- 7 6 7 -# 4 9 Y@ $# :& J= X$ &# 2 3* '# b a c{ i 9 -# a ,# c 0 a ~# e a r p 2, n h c f h h n p _# `$ X$ `$ ^# Y$ Z$ Y$ ,> `$ Z$ w G w G B `$ m {& ^# F= z N w N M D D z I I z F B P@ |# K@ m) ` 1& W |# E$ J E$ L@ H$ H L@ C$ M L@ C$ H C$ K@ 7# H 4# #. z$ 4# +. 4# 4# P B$ $% .= *. #. A@ ,. $% $% >. $. *. =. +. e- b# b# x@ &. .. x@ ;. &. &. D~ '. /. ~. ~. /. S' '= >' &% 3~ 4] 5] >& /* != `> e* ., ,% , P= P= s@ P= 0, e# P= l~ 9; I! 0, f# 9; g# f' f' 7) i{ j{ y{ ]= !! ]> #~ q) q) w> c. {% Z- K! h. K! Z- h. K! h. l* g& r) F~ l* l* W{ W' W' p* W' h' 6] I~ 7] l- L! p~ W= N) 8] A> [= A> A> m- ') 9] ') ') 0! 0~ 0~ ]! O; O; 6% {~ r~ z! { b~ F# Q; r~ D> =] ^! c! b! 0] a] ^' 1> .- d; d; 1> 1> d; 1> s& 9) ^' 9) f; q- ^' f; +- f; q- ]~ F{ s~ .; N! e, 7= 7= *+ *+ @{ @; C' G{ C' *+ @; `{ S# @{ B' ~) S; Y# <' <' b] D' b= %, %, k' k' %, %, k' d= k' %, k' ] _~ c] i! ]{ d= 6+ .) i! -~ l' d] g, 7+ 5+ ]) i, u~ .) R! e= ^) e= L{ ^) G* e= e= ^) 6> k! ^) +) k; ^) U; l; ;$ k; k! ;$ z- l; l+ l+ ;$ l+ l; l; ;$ @) ;$ A- l+ @) ;$ l! >$ y% y% A- V; s+ t+ s+ s+ t+ t+ s+ w+ w+ u+ z+ z+ B% B+ B% A+ B+ B+ A+ C+ A+ B+ A+ A+ C+ B+ B+ _) C+ A+ S& Q& #) E+ C+ E+ L+ O+ Q+ S+ L+ /- S+ /$ L+ Q+ R+ R+ R+ T+ T+ V+ V+ T+ T+ Z+ Y+ W+ V+ Z+ W+ W+ W+ X+ W+ @@ `+ Q> +@ #@ #@ +@ #@ *@ %@ %@ ~; }$ ~; D- > 1] &@ 4$ e] >@ 4$ >@ *@ >@ * .> R% ]@ s= ,@ * I- (@ * +* 9$ +* 4@ Q* !@ 9@ V% 2@ ^; X% '. c{ f] % z~ z~ =) s, s, 8' u, z, x, t, u, u, x, x, x, x, =) g] x, s, x, x, x, y, y, z, u, v, s, s, s, u, y, u, s, y, x, y, }) s, s, x, v, 6' N ). ~. = B= -. ). x@ &. )& L) ). 5# >. z@ -. (* =. (* ,= z@ )= B$ 2# 4# X R G@ 2# 2# Z ` M@ L@ +% K@ P ` Q@ P@ P@ H$ F= A w z x ", +"]& o! . $ > . S$ . ^ H= S$ Y! - ^ `@ > U@ + - - V@ | ; . % - N$ ^ 5- > + ^& U@ ] N$ ] N$ | | N$ | , | ) - ~ ~ | | %# ~ ## } $# X@ } : { _ ## & ## 6 X@ } } I= V$ } ( : $# [{ ># g b ( -# b 6 ~# ,# $# 7 a &# ~# c n a 7 =# g 0 o [& a L= ~# ~# e e Y$ o e a c C; n r h ~# ^# p ;= ;) r u h p `$ D p G w ^# w Z$ ,> G m M O@ N= G I C ^# I O@ L N P@ h] J J O U I 3& P@ T J J D$ T ` K@ H Y 3# ` Y I@ @. J .= I@ L z$ 5# 7# . C$ .= H V .= y@ +. 5; X +. x@ ;. *. 5# =. $. A@ $. ). A@ y@ '. b# a* !. S' +. &. '. !. H! {. {. !. D~ /. |. ~. =% 1~ 3~ +~ *% 9& d* k~ -% , P= , P= h# e# 0, e# j# '! 9; I! l~ f' k# ]= 9; 7) k# v' 1{ i] ^= !! j] Y~ h* q) V' e. Z- Z- Z- k] h. h. h. K! K! K! g& H, K! H, l* U= h' G~ ,{ p* l] m] W= ,{ l- l- k& W= l- [= A> z. m- m- A> ') n] ') 0! a, a, C> ]! |= H. q~ ]! 9~ r~ ^! Z) b~ F# 1> b~ b~ :] H# H# 1> o] d; d; .- 1> 1> 1> 1> d; .- 1> ^' d; 9) f; t* q- f; f; f; ]~ f; M, Y{ N! f% p] ~) 7= @; c) @; @; @; ~) C' C' C' @; _' C' C& @; q] l% Y# r] D' 5> D' %, Y# b= %, k' %, k' %, %, /+ %, %, k' s] g, 5+ _~ 5+ 7+ e~ g, #{ .) d] i! .) .) +! .) .) t] e= e= >~ ^) ^) K> %$ G* e= ^) k; ^) e= k; )- k! ;$ ;$ u] j+ ;$ |' g+ l+ @) l; l+ ;$ ;$ @) @) n+ M& ;$ n+ ;$ n+ l; y% t+ y% n+ x+ t+ '$ o+ i= s+ i= w+ u+ u+ x+ A% B+ B+ B% B+ B+ B% B+ A+ B+ B+ B% B% A+ B+ B+ B% B+ A+ ;; S& E% L+ E+ E+ M+ O+ P+ O+ E% L+ /- Q+ Q+ L+ S+ T+ S+ V+ R+ T+ T+ R+ (- V+ V+ W+ .@ V& Z+ W+ W+ @@ Z+ @@ @@ M* v] +@ +@ +@ Z& #@ @@ %@ #@ &@ U, w] x] > %@ >@ $@ =@ *@ 4$ -@ -@ )@ !; S% R% * R% ]@ * U> * T% }@ ^@ {; W% P{ P{ 3@ P{ W% y] 5# h > + ^, 6' v, s, y, t, u, u, x, t, z, s, u, x, u, x, s, v, =) y, u, s, x, y, x, u, x, s, y, x, s, x, u, y, s, s, s, v, z, s, x, x, H) v, `$ !. -. {. x@ A@ {. B@ ). d# C@ 4- A@ 5# #. E@ +. 4& E@ X T E@ H@ J E@ R )= }; J Y P #. H M@ S M P@ H Z J z H }# K@ 1& I H$ ", +"]& H= !, R@ V@ # # $ # & z] ; . Q$ V@ & > > . V@ R@ - *' }* - > ; ; > ^& ] U$ . & X@ | P$ | ) 4 2 *# R$ & 2 ~ > ~ 2 | { &# 2 / /& [ ] +# J= 1 { ~ ( ~ W@ } , 6 9 -> == $# $# 7 q> ~# a 6 7 /& == e e 8 $# 7 6 e 7 8 &# [{ g g ,# Y> , 8 e 8 a a K= a ~# ~# !# 6 c o 2; p 4* r p ~# s K= h o 0- m D p `$ ^# y u `$ D B N w z 5* z D Q@ 2; W) s D A O@ L J T O@ O E$ |# O E$ J A P O T H T s! J C$ X J L D$ H D$ Y Z 7# C$ D$ y@ ,= E@ P A@ +. E@ 8# C$ @. E@ A@ Q' A@ ,. +. z@ 5; !. =. 9# *. x@ ;. b# ). ,. %% {. [. T' ^. &% {. /. /. ^. &% 3~ 3~ &% |. A] 3~ -{ >' -% P= 7! , '! , a& j# '! j# '! g# ;% ., j# n# n# f' ]= f' 7) y{ ^= {> ]= a; /= Y~ !! w> Z- Z- {% {% {% K! l* Z- Z- h. B] f. g& K! K! H, l* l* H, H, W= ,{ )' p* I~ W= h' z> @, H~ z. z. m- A> A> N) A> ') [= C] l{ ') t) 0~ ]! q~ 0~ 9~ 9~ { {~ O; =] =] S. =] x' r~ H# H# H# H# .- .- d; !{ d; d; .- d; 9) ^' d; ^' ^' t* f; q- 0) q- q- Z{ ]~ O~ f; Y{ ^~ D] *+ *+ v& E] y) C' @; F] b) *+ *+ b) P! ~) 7= P~ d~ W# b= d~ R) b= G] %, Y# b= %, Y# %, b= %, %, %, k' /+ %, .! B* 1+ c] 2+ 7+ g, g, .) .) g, 6+ -~ ]) i, K> .) l' ^) e= ^) G* ^) R! G* >~ e= e= ,- %$ e= |' g+ 6> /) 5{ /) j+ ;$ |' &, |' l+ ;$ l; l; ;$ L> l; l; C) ;$ >$ ;$ l+ n+ y% t+ }! r+ x% y% t+ w+ x+ w+ o+ u+ w+ u+ i= ]$ B% k, B+ B+ B% A+ B+ A+ C+ A+ B% B+ B+ A+ A+ A+ A+ ^$ ;; C+ E% L+ k= A+ C+ k= O+ E% O+ P+ P+ C- M+ Q+ R+ S+ S+ /$ S+ V+ Y+ Y+ V+ R+ X+ W+ X+ X+ V+ V+ @@ X+ Y+ X+ @@ <$ &@ &@ +@ +@ Z& +@ %@ +@ +@ %@ &@ e] *@ W, &@ *@ 7$ !; *@ *@ *@ -@ `& `& Q% s= T% R% R* +> ~@ 9$ (@ V% :@ H] }@ b$ b$ 1@ 9@ R* |@ 4# e & ], z~ q, q, s, s, x, s, =) x, u, v, t, s, s, s, H) x, s, s, x, y, s, x, s, u, u, x, z, x, s, y, x, |) u, A, s, v, q, s, s, x, s, H) 6' I] {. !. &. z@ ;. ). '. &. -. =. -. z@ z$ 7# -. z@ A@ (* 7# G@ 5# 5# E@ R +. X C$ H@ 1# P@ L@ P@ O S I I H Z N J H$ N= A G b- G ", +"V@ k) ]& R@ * + $ & # & # N$ ; N$ $ + > + !, # > ; ; H= X@ %= U@ > & h) `@ ^ - $= & U@ %= ; | [ 2 ~ - | { ) S$ ) | 2 2 [ /& [ 8 < # ## W@ | %= ~ | { } *# &# 4 ( 6 ( } ) V$ i &# 7 J] 2* q> /& 8 6 i ~# e b 8 g 6 8 e q> 2* 1 K] e X$ 8 e 0 ~# h i n Y$ ,# e o h r `$ r 0 ~# Y$ n Z$ c r 6* o )> N ^# ^# `$ Z$ G z z N I t /# w G A w /# A I N D N Q@ P@ Q@ T H E$ L@ S 8* J H H$ E$ P@ L@ E$ P X O@ P@ X L@ P X 7# T 4# E@ .= Q' z$ z$ R' A@ . )= #. z$ +. O= (* e- G@ !> )& )& A@ &. 5# 9# H! '. b# 7, o) x@ '. 6, '. 0# '. ~. =% &% w{ ~. 5& 6& '= +~ /* 8& e* L] {] M] *% P= , '! P= , e# '! '! , 8; g# 9; ;% g# k# k# 7) k# y{ 1{ i{ i{ {> @~ !! V' N] j{ B{ Z- Z- K! K! K! g& {% c. h. Z- g& g& l* r) l* F~ W' W' W{ b; `~ I~ h' 8) p* l- l- [= L! {! [= O] m- m- A> m- A> L~ m{ m- A> P] 9% ]! 9~ =] n{ O; O; {~ ^! H. r~ Q] =] M! b! b! .- .- H# H# R] d; d; H# .- 1> 2{ 9) ^' 9) 9) ^' q- q- t* e; ;] f; ]~ f; f; 3{ 3{ S] ]~ ~{ z) &~ T] O! @; @; @; @; @; C' C' I{ C' U] c~ V] W] r{ _' h! <' 5> l% k' _~ _~ _~ k' k' b= k' _~ %, k' ] :~ _~ X] i! d= Y] ^{ g, +! ]) +! g, ]) ]) ]) ,] .) .) ;~ ^) R! >~ e= e= i, k; ^) e= @! k! e= ^) k; 6> e= .] Z] l; k! l; ;$ l+ l; l; ;$ @) ;$ @) l; l+ l; l; ;$ n+ l+ l+ A- |! |! >$ 2' i= |! t+ i= i= s+ w+ w+ u+ w+ k, A+ B% w~ B% B% B+ B% B+ B+ B+ `] A+ B+ E+ A+ A+ A+ B+ B+ B+ B+ Q& ^ C+ D+ ^$ P> L+ L+ O+ R+ /- O+ G% /$ T+ R+ T+ Y+ /$ R+ T+ t{ T+ T+ Y+ .^ V+ Y+ Y+ X+ W+ W+ Z+ @@ `; X& f~ +@ W+ +@ +^ @^ +^ +@ +@ +^ w] !] %@ &@ w] > w] S> -@ 7$ u{ C! W, '@ '@ (@ 5$ R% ~@ ,@ <@ +* /@ !@ 9$ }- [@ }@ S* :@ /; a@ 2# 6 > R@ 2! q, q, s, r, v, |) x, y, z, y, s, s, v, x, s, r, r, v, s, t, z, 8' x, x, s, u, x, s, s, t, v, t, u, z, u, s, r, x, s, s, r, v, v, @# A@ x@ '. x@ ^. A@ {. ). x@ ). !. ). ;. -. -. ;. I@ 9* +. (* $. z@ C$ H L@ L@ Z X H@ M L' P J C, }; P@ J J Q@ M M z I 2& P@ {& ", +"$ + R@ R@ ]& # #^ . > > =' S$ $ ]& k) ] - $ `@ V@ |* > * Q$ - ] & > ; ; Z, ] - U$ < | { [ ] %= ~ ~ Z@ ] | { | 9 ^ < [ { W@ X@ W@ ) +# ^ / $# N$ &= } 1 &# ( } *# 3* $# a 7 9 &# a' &# : -# $# 7 [ ## { e 8 7 6 b 7 7 e 7 ( a c a 6! 8 b n L= a' g c L= 2, h 9- X$ ~# F! h r L= r % e h h ^# p Y$ y G t ^# @= w w C N G z m F= 4* ^# G G I O@ K@ A %> I Q@ E$ L K@ J |# E$ M N |# L J J S L@ D$ P@ T I@ J T @. B$ X S 2# W }; ,= +. 4# z$ !> +. )= E@ =. >. >. . ). >. !. $% .. *. $% #. x@ &. 5# 5; !. b# '= '= ). x@ {. b# %% ). 5; 3~ 3~ {. 5; +~ ^. ^. '& $^ 1. d* P= ,% e* P= {= {= , '! , , 6) j# 8; U' 9; 6) f' ]= n# y{ 7) %^ y{ !! f' !! !! ^= i* {> !! (= c. h. Z- Z- {% h. {% r) r) r) K! g& l* r) l* r) H, W' H, H, D{ &^ h' )' *^ W= H~ N) A> {! A> A> A> m- A> A> 0! A> ') 0! 0! )) H. 0~ )) )) =] { {~ Z) n{ {~ |= =^ Q] -^ v) y' ;^ >^ c! .- a] .- 1> .- ^' 1> !{ 1> 1> 9) t* ^' ^' q- f; (! f; f; ;] f; Z{ f; f; N! s~ ;] ^~ ,^ H{ O! z) C' @; C' @; C' C' C' C' ~) I{ =~ `{ W# D' d~ '^ r{ %, b= %, k' A) k' %, k' _~ %, %, _~ k' :~ ] w- 1+ s] B* )^ -~ e~ .) >- g, >- l' .) !^ R! l' .) ^) ^) G* ^) e= i, ~^ +) e= e= 6> >~ ^) e= ,- e= }' &, @) )- @) @) ;$ l+ ;$ ;$ ;$ l; l+ l+ l; @) ;$ ;$ n+ l+ l+ l+ A- }! }! y% u+ t+ t+ w+ h= V; t+ s+ i= w+ x+ B% B% B+ B- B% `] {^ A% B+ A+ C+ B+ B% B% A+ B+ C+ E+ E+ E+ A+ O+ M+ C+ D+ 0> P+ L+ O+ O+ R+ S+ Q+ L+ L+ S+ T+ V+ V+ V+ F% T+ V+ Y+ Y+ Z+ _$ T+ .@ Z+ +@ @@ @@ @@ W+ @@ M* H% +@ +@ #@ ;@ +^ $@ %@ &@ p' %@ p' !] !] U, p= 7$ =@ &@ =@ )@ 5$ ,@ S% ~@ '@ r= 7$ R% I- 9$ ^@ |- !@ !@ }- P* W% h> +* |@ 7@ N 7 > ]^ ], *) q, s, s, s, x, z, z, x, x, s, s, s, }) x, #' x, x, A, v, x, s, s, s, x, y, z, u, x, x, s, s, s, s, v, y, u, |) x, s, 6' r, w, ,, 4- &. '& 5# !. ). B$ V> e- >. C@ =. 5# z$ +. !. A@ 5# E@ B$ (* .. F@ 5# 5# C$ H T P L@ L@ X J M 3# Y Z H A Q@ S 8* I M@ P@ I ", +"] > X! # . H= . > = S$ ; ; + . - ; ] | ; S$ # > & ; ; ; ^ [ ^ - ) > %= ; ] 2 | U@ N$ ~ > S$ `@ ^ ( 2 { $# < { J] / W@ / ## { 1 / ) 4 } $# / [ 6 /& Y@ Y> 4 { 4 $# / 7 } W@ 7 $# e 7 d a 7 6 ,# b V$ ) V- } $# 7 0 e a i {# $# b a L= ~# c ~# n p c n h n Q{ `$ m w _# p Y$ n /# 1; Y$ % G :# w `$ G O@ z G w G z ^# w G b' w I [# G E; M A h] E$ Y A J J P@ P@ A T T :* L@ I@ L@ L U P T D$ R I@ D$ I@ Q@ L L@ 1# L@ )= Q' +. ,. @. 5# A@ $% >. +. X (* #. 6# &. 6# >. z$ +. ). *. >. ,. !. -. =% %' b# %% 3~ /. ;. ~. &% &% {. {. ). /. =% 1~ ^. ^^ *% 9& 6& 9, -% P= '! P= , 0, g# '! I! e# 0, ., g# T{ ., ;% ^= {> @~ 1{ g' ^= !! i{ !! !! i* &] !! ^= (= Z- {% Z- Z- Z- Z- h. h. h. h. K! g& l* l* r) l* H, W' U= (> G~ ,{ /^ l- l- H~ `- [= p~ m- m- ') m- ') z. Z= q~ )) <> 0~ 0! X' M~ ]! 9~ {~ ]! M~ 9~ 0~ {~ {~ (^ r~ -^ v) F# n{ :] v) _^ 0] b! F# H# 1> 1> ^' ^' d; 9) f; F{ ^' F{ f; 0) f% F{ :^ ]~ ]~ f; ;] ^~ ^~ 3{ Y{ z) f; <^ ~) ~) @; ~) C' ~) C' @; C' P! ~) {{ I{ l% r{ R) V] r{ b= %, b= b= [^ k' k' b= %, u- %, k' b= k' %, X] i! -~ ]{ }^ i! g, i! .) 6+ 5+ l' l' K> !^ l' ]) G* e= G* G* e= R! i, ,- e= >~ M{ k; G* ^) G* G* ^) v~ |^ 6> k! ;$ ;$ l; l+ l; ;$ l; @) l+ ;$ ;$ l+ @) l+ )- ;$ l+ ;$ |! y% |! h= t+ s+ u+ u+ w+ s+ i= u+ u+ w+ ]$ A+ B+ 1^ B+ B+ B- B% B+ B% A% B- A+ B+ C+ B+ A+ A+ E+ E+ C+ S& L* T, C+ D+ E% /- Q+ L+ /- P+ R+ Q+ Q+ O+ S+ V+ V+ R+ T+ T+ V+ T+ Y+ Y+ Y+ Z+ @@ @@ @@ W+ .@ @@ #@ W+ W+ @^ #@ #@ +@ #@ %@ &@ #@ &@ %@ &@ %@ f~ C! -@ U, )@ '@ 1$ W, q= S% 5$ r= )@ ]@ 6$ 5$ N% N* 5$ {@ ^@ W% ^@ ^@ b$ @> f$ J' 3@ m@ G 6 1) 2^ z~ 5' ^, v, =) H) y, u, s, y, t, x, s, 6' |) v, s, s, z, x, z, z, x, s, s, u, z, s, s, v, x, s, x, x, x, H) y, s, A, x, s, x, s, 6' ), #. A@ ^. d# A@ A@ l> %% B$ !. -. -. !. 3^ &. B$ 5# A@ A@ B$ 4- A@ B$ .= G@ L@ P Y V X P@ P@ L@ T O E$ S P@ P@ x P@ E$ z P@ I A ", +"+ > R@ $ T@ $ # > # ; S$ > + !, > U$ > ; 5- > V@ & ^& V@ V@ - & $= |* ] Q$ U@ U$ { ] & > ] ) ; ; | ] 6 ( ) ;# { b{ ## $# { | [ T- 2 *# W@ +# ) ## ) [ [ } { W@ / ( / < } b :& $# $# 2* 7 7 ~# ,# a b j o [ D, | $# a e a ( 7 c i 7 J] e n ,> n j n s> Q{ Y$ % Y$ g c n 9- h `$ p m m w w o _# ^# s y Y$ 2; D C K C w C ^# ^# G I I F= N t N A I |# E$ |# P@ L@ |# n> E$ T A O T z; M O I@ J T P S z; L@ L P@ P E@ P z$ #. ,= I@ #. $% I@ .= 5# =. z@ z$ 2# Q' ;. ]. v{ &. &. A@ !. 5; +. C@ !. ). p, b# ). X) '= !. b# D~ D~ x@ &. '. {. /. 3~ ~. %% b* v! &% 4^ >' e' 1. 5^ -% A] 6^ 7^ X- , , '! '! 9; f' j# 6^ 8^ g' f' 7) a; ^= 9^ a; y{ j{ y{ m~ 8! w> m~ 8! 8! {% {% )! {% h. K! Z- 0^ K! K! H, g& l* r) H, W{ ,{ F~ s) (> b; W= W= 6] l- l- p~ O] 8] A> m- [= m- m- A> L~ t) K~ 0~ 0~ l{ |= 0~ ]! 0~ 9~ C> {~ ]' 1= ^! {~ Q] (^ Q] =] c! N~ R] !{ H# a^ H# 1> ^' 1> ^' d; d; 9) ^' d; d; b^ t* ]~ f; ]~ f; f; q- f; ]~ F{ N! e! Y{ 7= 7= S] ,^ C' C' C' C' @; *+ C' @; 4{ P! =~ ~) P! A* %, d~ V] %, A) %, k' b= %, %, k' %, %, ]{ _~ k' 2+ _~ _~ >- g, w- k' j! i! +! 7+ l' >- i! .) ]) !^ c^ .) l' u~ ;~ e= e= ^) R! ^) ^) G* ,- )- ,- >~ k; ^) >~ e= @) ;$ k! ;$ |^ n+ @) ;$ @) l; l+ l; l+ l; ;$ )- ;$ ;$ ;$ ;$ ;$ y% t+ t+ 2' {$ t+ t+ w+ w+ i= s+ w+ u+ w+ u+ k, B+ B+ B+ B- ]$ B% B% B% B% B+ A+ A+ A+ B+ B+ B% C+ A+ M+ M+ E% M+ C+ E+ M+ L+ /- L+ O+ P+ S+ R+ O+ /$ L+ T+ R+ V+ R+ V+ V+ Y+ V+ F% f) Y+ @@ X+ Z+ [$ +@ Y+ W+ f) :- <$ @@ d^ W+ @@ +@ <- #@ +@ %@ }$ ~; *@ I% W, *@ D- >@ e> *@ [- (@ (@ q= R% '@ R% 5$ V% T% {; }- {@ 9$ b$ d$ !@ }@ f$ X% |@ q@ % *# V! R@ `, [) +' s, v, x, x, s, x, z, 6' s, s, x, s, s, x, u, u, y, y, u, y, y, x, x, y, u, r, [) s, q, u, r, v, u, z, s, x, u, s, x, v, 5' e^ D@ &. x@ /. /* =. ,& F@ A@ (* 5# 5# x@ 0# 7# B$ .= _* @. ,= R 9* z$ G@ R C$ V H L@ T S G@ P@ |; P@ S A N M@ M@ +% M Q@ Q@ b- A ", +"+ V@ ]& ]& # ; > V@ + # . # $ $ . S$ S$ ] ] - + V@ - 2 ; N$ ; > ] ) ] ~ A; { & . H= ; | ) X@ ~ ; ## { X@ | d [ ^ ] [ ## N$ ] # [ , { < ,# { W@ / ( e [ X@ $# ( ,# &# 7 b $# _ } a } b e ># ># 7 b 8 ~# 6! i g o 3* 7 q> } g ># e [& c s> n Y$ 0 8 Y$ s> c{ ~# h c ;= n ^# `$ t ^# 4* m C p (# p ,> ^# D D w ^# m f^ ;) N I Z$ w I N #= D C P@ A 8* M E$ T #= C$ U H$ P@ z J J L@ T Y I C$ 4# J #. z; T L@ P 0* M@ I@ H@ D$ #% 4# C$ 5# Q' [, . 6# 5# 5# . $% ;' . &. )& R #. ;. A@ . !. !. !. ). )& (* /. =% x@ b# T' =% =% %% ,& /. &% ~. &% D~ >' 9& /. v@ ~] |. k~ 2~ {] g^ ~= _. P= 6^ P= e# '! I! '! g# f' l~ 6) h{ f' ]= n# 7) f' ]= {> A{ 1{ j{ @~ A{ 8! q) A{ 8! Z- h. Z- {% Z- h. h. h. h. r) H, l* H, V{ H, V{ 8) H, /% *^ `~ /^ W= *^ *^ H~ 8] @, {! ~! A> m- [= ') ') ') m{ <> ]! 0~ m{ q~ 0~ ]! M~ ]! ]! 0~ 9~ =] 9~ 6% 9~ M! =] Q] R] a] b! v) 1> /! _^ 1> 9) .- H# d; 9) 1> 9) q- q- 9) F{ :^ q- f; ]~ ]~ ]~ ;] q- ;] (! N! P) y) @; ,^ y) @; @; C' C' @; ~) h^ @{ C' `{ i^ /~ @{ Q~ b= l% q{ Y# b] j^ %, %, k' %, k' _~ _~ b= %, :~ _~ k' f, w- -~ e~ s] d= i! >- i; t] g, g, ]) k^ u~ ^) t] .) u~ l^ l^ G* e= e= ^) e= ^) >~ k; k! ^) e= e= G* ^) ;$ l; l; l; l+ l; l; ;$ l+ l+ @) ;$ ;$ @) ;$ ;$ l; ;$ l+ l+ ;$ >$ |! y% >$ W; y% t+ t+ i= w+ t+ N> w+ u+ w+ j= B% B% m^ B- B- B% B+ A+ A+ B+ B+ B% A+ B+ B+ B+ D+ A+ B+ M+ E% O+ F+ A% E+ O+ L+ Q+ ^ P+ T+ S+ G% L+ T+ R+ R+ R+ T+ Q+ V+ T+ T+ Y+ _$ V+ @@ W+ Z+ W+ +@ W+ @@ Z+ @@ W+ q; +@ #@ &@ +@ %@ &@ #@ #@ #@ *@ &@ ~; =@ >@ =@ 5$ 2$ >@ e] Q% =@ '@ M% R% R% O% a$ !@ R% R% ,@ 9$ g> f$ }@ 8$ }@ !@ !@ w$ r ~ + *) 5' [) v, x, v, x, s, v, u, u, s, s, -! s, u, y, z, y, v, =) x, v, s, x, s, s, s, u, 8' u, s, x, u, t, H) s, s, }) s, H) r, x, =) v, s, N 5# {. !. ,& 0# {. x@ '. ;. x@ &. &. %. 9* B$ *. A@ E@ A@ B$ #. .= X $> D$ O Y S J M@ T H$ J@ T +% a- P@ A %> B, N A N Q@ I ", +"+ + !, & # & Q$ $ > * & ' ; $ * * ; $= U@ }* - ; S$ N$ > . > & ; | - - ]& ^& [ | (& ; U@ ] N$ N$ 8- ~ ] ) - { N$ < 4 } 2 [ 1 [ [ ) 4 ~ 2 ~ $# 6 @# / 2 ## d { d $# 0 8 $# < a 7 7 ## j $# 0 V$ V$ 6 V$ '# '# e a c j 7 0 ,# 7 0 e ~# o ~# e |& o ^# ,> Z$ o n t' Y$ n^ h h c t' ,! n D r m 4* p I m Z$ 4* Z$ ^# o^ x C G D z I I {& C C #= z N J S A E$ H H |# J J L O@ M O H L@ J P I@ 3& O J d- X U d- G@ T E@ +. E@ T =. G$ $% A@ .. z$ W }; $% %. +. &. G! Q' 5# ;. ,. 9# b# *. 4- F, !. F, ). 7, C@ b# !. %% {. /. 1~ ^. &% ^^ 3~ D~ |. 6& -{ 3~ p^ >' k~ q^ r^ p^ P= P= A] , , ~= 9; , 9; 9; 7) h{ 6) ., f' 6. f' @~ s^ y{ y{ a; i{ y{ q) m~ #~ i* !! &] B{ c. h. h. r) Z- 8! Z- h. h. h. W' r) F~ 0^ F~ s) W{ I~ )' h' h' W= H~ *^ l- t^ z. O] H~ @, p~ m- m- [= m- 7~ |= q~ 0~ <> /] 9~ 0~ O; 6% ]! 0~ ]! ]! ]! z! 9~ x' Z) N~ a] u^ v^ d; b! :] o] w^ 1> 1> ^' .- d; d; 9) f; F{ ^' Z{ ;] f; ]~ ;] ]~ ;] ;] ]~ ^~ s~ x^ e! C' S] y) O! ~{ *+ *+ @; ~) ~) ~) C' C' P! ~) Q) y^ z^ k' %, d~ A) b] A) k' k' A) b= %, k' k' %, k' k' %, b= A^ ]{ ]{ g, 6+ s] .) i; e~ t] #{ e~ -~ t] 7+ ]) u~ t] u~ e= ^) G* ^) e= R! k; k; ^) >~ k! ^) ^) ^) ^) ^) l; l; l; )- @) ;$ l+ @) l+ |' |' |' l+ l; l+ l; l+ l+ l+ l+ n+ B^ n' s+ D) O& D) t+ s+ h= i= '$ s+ y% i= w+ '$ B% {^ R, () B- B% B+ B+ C+ C+ B% B% E+ A+ C+ E+ A+ 0> T, E+ M+ E% E% C+ D+ M+ O+ O+ Q+ Q+ P+ P+ E% Q+ Q+ R+ T+ R+ T+ T+ Y+ V+ F% T+ T+ Y+ U+ X+ +@ Z+ Z+ @@ @@ p; @@ #@ @^ X& d^ #@ &@ %@ +@ %@ %@ $@ <- V, =@ *@ *@ >@ > C^ I% *@ q' * r; >@ (@ ,@ 5$ R% N% * /@ W% !@ P* 8$ /@ c$ :@ (; !@ E@ o ~ # V! g] x, r, s, 8' v, z, s, H) z, H) x, z, =) s, s, x, s, v, s, s, s, z, z, s, s, s, s, v, s, 7' z, s, v, s, s, s, 8' v, t, @] 5' }) v, v, D^ x@ /. {. '. &. e- ;. ). &. =. )& ,= =. 5# 5# z@ ,. .= 5# z@ .= z@ z@ 2# J@ E$ Y H E$ L@ H P J A I P@ z M A M H M A I )> ", +"Z, + # > = & > = . T@ & $ $ $ . & > | ] & > . ' > . # > & ; ] . . & Q$ ] | | ~ | ( ; ; W@ { ~ ] ^ Y@ Y@ [ { [ ## 2 6 ) ) } 4 < $# d 4 < 6 } ) W@ -# 7 d 6 Y> } D, &# $# { $# 6 ,# : 7 ,# 7 &# c V$ 8 a 7 g ~# e 6 } V$ a 0 c L= h h e L= l !# W$ [& c c{ p ~# ]# r K= K= s n g c{ Y$ w 4* % ^# Z$ {& z w O@ H$ z t N z I G C z I A M M Q@ 8* S P@ H H$ L H E$ 3# I D$ O P@ P T T y@ T 4# E@ 4# @. E^ 7# L@ G@ .= R P H 4& .= W .= O= P ,= . e- *. 5# A@ ,= &. 5; 5# F^ 9# !. 0# &. z@ b# {. /. X) 6# %% !. =% %% '. /. &% 3~ &% /. G^ |. 3~ 6& ~. /* g- P= p^ =% 4] e* , ~= g{ , '! j# j# e# 0, I! g# T{ 6) k# 9; a; 1{ 1{ y{ 7) ]= ^= y{ y{ H^ A{ i] N] A{ {% Z- B{ K! K! K! f. K! K! r) r) H, H, ,) r) V{ F~ V{ C{ s) h' '{ l- H~ 7] W= H~ k{ ') H~ {! [= 0! A> I^ ') m- ') ') ') l{ l{ 8~ K, 6% ]! { 9~ =] =] 9~ =] Q] Q] =] Q] b~ Q] /! }> %~ w^ N~ d; 1> 1> d; 9) ^' 1> ^' 9) J^ Z{ ;] f; ;] f; [] ;] ]~ ]~ ]~ O~ ;] K^ H{ O! C' @; G{ C' *+ *+ 7= C' ~) *+ C' C' V] L^ M^ c~ @{ r] A) K{ j' b] b] A) f, %, j^ %, %, b= %, %, k' _~ k' s] k' w- g, X] ] s] g, e~ ]) l' e~ N^ l' t] -~ G* .) ]) i, e= ^) G* ^) ^) G* G* >~ ^) k; k; ^) e= 6> ,- v~ O^ P^ )- l+ ;$ ;$ ;$ l; l; ;$ |' /) l; l+ ;$ l+ ;$ )- l+ l+ |! t+ y% |! t+ t+ s+ s+ s+ i= u+ y% t+ w+ u+ N> N> R, m; {^ S, B% B% B+ ]$ B+ B+ A+ B+ C+ E+ D+ B% E+ C+ A+ A+ O+ E% C+ C+ l= Q^ E% L+ /$ P+ P+ L+ /$ L+ R+ R+ T+ V+ R+ V+ V+ X+ T+ V+ Y+ .@ +@ Z+ @@ @@ W+ @@ +@ _$ +@ @@ c> @@ #@ %@ +@ #@ %@ =@ &@ p; o= R^ [- %@ *@ `& $@ C! * q= )@ 1$ ]@ o= 5$ R% r= }@ N% /@ v; b$ {@ d$ /@ b$ }@ W% 6@ P h ) R@ g~ ^, v, r, s, s, s, s, =) v, u, v, s, s, r, v, x, s, v, x, s, x, v, v, v, v, s, s, s, s, s, s, +' 6' r, s, s, s, s, r, s, s, H) x, +' ^, K= &. {. (. !. ,& ;. ). v{ x@ 5# !. 5# !. )& +. +. 5# [, A@ A@ z$ z@ ` D$ z$ P H P S M@ M@ J L@ H +% K@ Q@ M@ :* @% P@ +% G I I ", +"R@ 5- - T@ Q$ + % V@ + [* $ Q$ . > $ ' N$ ^& N$ 1* N$ U@ %= N$ & ; X@ ] ~ ; ] > ~ - > ] / { | 2 J) 2 { { { | | ~ ) W@ V~ [ $# ] U$ ) | -> ## ) / < *# { / ) < { *# *# 1 / b | : < U- ( : $# == $# &# d } 7 7 7 ## 6 e e 9 } 7 6 F! n a c 0 n C; 6 S^ `$ p 6! (# e C; n o `$ 9- ~# p r ^# c g j /# F= m ^# F= m 1; I ^# x O@ C {& F= %> D Z$ E O@ I E$ G :# O@ I J 3# A M@ E$ P@ Y E$ J O T^ P@ T 4# X L L@ Y C$ U^ B$ L@ P 1# C$ X @. 4# 7# 4) ,. ;. +. O= 5# L@ ;. =. A@ 5# )& B$ +. &. =. *. ). )& 0# &. 5; V -. A@ V^ {. %% 1~ '= '= '= &% 3~ {. 7, d* 3~ W^ &% &% -' e' $^ 7! H; 7! k~ P= , -% , P= j# 9; P= 0, '! l~ l~ X^ 0, f' {> 7) n# ]= ^= q) q) y{ y{ y{ m~ j{ q) N] ]> {% {% h. h. h. K! F~ Z- K! K! l* g& W' V{ H, V{ '{ (% '{ C{ H, Y^ H~ H~ p* o~ l- A> 8] 8] @, [= 0! A> A> A> A> ') 9] <> <> q~ 6% 9~ ]! =] 9~ =] =] =] =] =^ Q] Q] b! x' {' x' ;^ x) x) /! d; ^' .- d; d; d; ^' d; d; ]~ F{ 9) Z{ ]~ f; (! ;] f; ;] Z^ ;] `^ ;] N! x^ v& @; @; *+ C' @; *+ *+ C' @; @; C' C' 7= 7= Q) @{ V] / <' d~ b] {{ D' Y# k' k' Y# k' _~ _~ k' k' %, k' _~ _~ B* >- w- %, d= g, i! >- .) >- g, l' >- ]) ./ .) .) .) e= l^ e= ;~ >~ ^) G* e= ^) e= )- e= G* 6> ,- &, .] /) @) ;$ l; l; l; @) l+ ;$ ;$ ;$ ;$ |^ ;$ l+ ;$ l; l; l+ ;$ y% t+ y% t+ h= s+ t+ t+ i= t+ t+ u+ w+ i= i= w+ ]$ K* +/ E+ B+ B+ C+ A% B+ A+ C+ B+ J+ B+ B+ A+ C+ R& ^$ ^$ M+ Q& C+ D+ E+ >; O+ O+ O+ L+ P+ P+ Q+ L+ O+ R+ S+ V+ V+ Q+ V+ X+ T+ _$ @/ V+ Z+ @@ W+ W+ W+ @@ @@ @@ +@ [$ #/ %) @@ #@ #@ #@ %@ }$ %@ > Z& =@ V, %@ '@ p= >@ Q% *@ $/ '@ L% )@ /@ T% R% )@ (@ H- |~ 0$ ~@ 9$ /@ 9$ }@ W% |@ +] H@ a & + g~ [) 6' %{ r, 8' s, s, v, }) s, s, s, s, z, x, s, x, s, 6' 6' v, }) =) s, =) x, v, v, s, s, v, q, x, s, s, =) x, x, s, q, s, v, 6' x, =) @# ). {. '& d# -. v@ =. A@ L) !. ). {. !. +. x@ &. G! @. +. B$ +. #. L@ J@ V }; E@ H H P J S |; L@ H$ 1# +% M +% S M I M z I ", +"+ Q$ + & ; 2) > M$ R@ > V@ Q$ ; & . > Z, > U$ ^& ) { ' > V@ ; ; & - ; $ ; ^& ^ ) ( { N$ ; Z! 2 ## [ T- | ( ) (& 1 ~ 1 ) ; 2 { ) : [ / / W@ ~ ~ } { 1 $# d ## ,# ( : [ } { e _ 6 $# == ( e } -> 6 $# $# 6 } j V- c V$ c L= r X$ L= j ~# ~# L= h L= ~# r 6! Y$ h % O' Y$ p n D m `$ ^# n^ o n D m m `$ `$ `$ N M= F= w %/ y {& F D m G w M G I D N M A L@ T K M@ S Y L@ O 8* 3# d- T L I@ T Z X J T 0* I@ 4# Q X I@ I@ L >) z$ +. y@ .. e- E@ z$ @. +. W A@ +. A@ ;. ;. 6# -. ). *. %. x@ '. A@ &/ ). ). {. 7, x@ {. A@ H! '. &% &% =% ). 1~ 3~ ~. 3~ &% e' != &% 9& t@ */ >' g{ , *% , '! j# ;% P= '! , 0, ;% I! =/ h{ @~ v' {> U' v' 1{ i{ 1{ j{ H^ q) /= U{ -/ ]> Z- K! Z- h. Z- K! r) Z- V{ Z- g& l* W' F~ F~ F~ ;/ h' G~ >/ b; `~ 7] W= W= H~ H~ @, p~ l- p~ A> A> 0! A> ') ){ 0! 0~ 0~ <> ,/ '/ 9~ 9~ 8~ z! 0~ Z) ]! =] r~ N~ R] R] a] n{ n{ N~ n{ .- d; )/ w^ d; 9) d; 1> d; 9) d; d; t* 9) J^ Z{ ]~ ]~ s~ ]~ t* f; J^ ;] Y{ e! P) ~{ C' C' 3> *+ G{ C' @; ~) y^ C' C' !/ _' C' Q) :! `{ <' r{ d~ K{ A) 5> k' b= ] k' %, k' %, `' %, _~ k' ] ] B* s] i! Y] .! ~/ e~ {/ e~ #{ e~ e~ ]) N^ L{ e= t] l' u~ i, >~ ]/ ^) >~ e= e= ^) ^) +) +) >~ )- )- G* U; /) l+ k! ;$ s{ |^ l; ;$ ;$ ;$ l; l+ ;$ |' ;$ n+ l; @) ;$ ;$ ;$ y% y% y% s+ u+ t+ y% s+ u+ u+ ^/ N> u+ u+ i= u+ M> B- B- B+ A+ B+ A% B+ A+ B+ B+ _) C+ B% B+ E+ B+ ;; E+ E+ E% A+ B+ C+ E+ C- E% O+ E% L+ P+ R+ /$ Q+ R+ S+ S+ R+ Y+ Y+ Y+ V+ Y+ Y+ Z+ W+ +@ W+ Z+ W+ @@ #@ @@ @@ d^ +@ |$ @@ +@ +@ #@ %@ =@ %@ %@ &@ $@ >@ 1$ *@ q= > u{ N* )@ * '@ Q% ~@ R% d> !@ 5$ O% !@ P* /@ g> 0$ W% ^@ b$ b$ =* J ( ; R@ g~ ^, z~ q, s, x, s, s, v, s, H) x, s, r, v, +' q, v, x, x, x, s, s, s, z, x, g] r, x, v, s, q, q, r, v, s, 6' s, s, s, v, v, z~ 6' -! 6' - =. p, x@ ^. D! ). &. ). w$ &. &. &. A@ 8# d# E@ 5# #. .= .. P P @. 1# I@ D$ X H T P 1# H L@ P@ H$ H$ M@ |# 7* |; S J S N 2; ", +". # V! V@ S$ . . # ; S$ . > & U@ | & . `@ | N$ - ^ { U@ Q$ ; N$ ^ Q$ > V@ ; | ; ; ~ U@ T@ . ; | 2 X@ 2 { Z@ ) , ] } | R$ 2 `@ ] 1 2 } ( 7 ) { [ [ +# : 1 { d ## 8 } { 1 d : i 7 [{ $# 6 6 c d [ Y@ &# -# c &# e J= n 0 o e 0 &# n a' c c s> Y$ g i f h ~# h m % 9- n q `$ Z$ l D r Y$ 4* b' m /# $] 4* m /# G ^# E N N /# E N m z H O@ F= E$ A A H S P@ A A |# M J T H H I L@ T H E$ T O= T L X C$ L@ P L@ C$ T 2# s! E@ +. ,. L) . $% e- z$ z@ ;. >. z@ v{ >. 5# )& A@ ). $. $. b# ;. F, ;. 9# ]. '= ). %. '. ;. x@ %% '. b# +~ 5& /. u> {. =% 3~ ~. D~ |. &% 9& H; 3~ `> 5^ ~= -% -% '! 7^ j# l~ '! I! I! 9; s^ 6^ 6) U' v' y{ j{ H^ H^ @~ ]= // ]= j{ A{ ]> m~ A{ {% h. h. K! K! Z- K! r) r) h. r) l* H, W' F~ F~ C{ V{ b; F~ h' I~ '{ l- 7] H~ l- ~! @, 8] ~! O] m- m- m- ') 0! 0! ') 0~ 0~ <> <> (/ ]! 9~ 9~ 8~ M~ { b~ { _/ b~ =^ Q] Q] u^ u^ N~ 2{ _^ w^ b^ .- _^ ^' .- x) ^' d; 9) ]~ Z{ ]~ F{ ^' ]~ ;] Y{ f; ]~ ;] ]~ ;] M, O! H{ O! ~{ C' *+ ~) C' C' @; C' @; y) z) i^ C' ~) r{ :/ V] r{ K{ V] '^ r{ b= k' k' k' k' k' b= %, _~ _~ %, _~ _~ B* B* i! g, X] _~ +! i! +! >- i! i! t] .) +! G* u~ .) u~ u~ e= %$ ^) i, k^ ,- e= ^) 6> ,- ^) %$ M{ ^) }' |' @) j+ |' l; @) @) l+ @) l; ;$ l+ l; |' ;$ ;$ A- l; l; ;$ l; >$ t+ y% y% i= M> ^/ t+ u+ i= u+ M> B+ B- m; B- C+ A+ B% C+ B% B+ A+ C+ B! A+ B+ C+ E+ C+ J+ C- T! A+ C+ D+ S& O+ L+ L+ L+ S+ R+ Q+ L+ Q+ V+ S+ /$ V+ V+ W+ T+ T+ Z+ _$ @@ +@ W+ Y+ @@ Z+ #@ W+ +@ Z+ +@ |$ !] d^ +^ p; +@ ~; ~; %@ %@ %@ *@ I% `& `& >@ `& Q% r; >@ t= 2$ )@ (@ S% N% N% I- O% /@ [/ u; 0$ :@ 4@ !@ P* p@ H$ / $ ], 5' 2! r, v, v, v, s, s, 5' s, g] x, s, s, s, x, s, @] v, s, s, u, x, v, v, s, v, x, }) =) v, @] +' s, s, v, r, v, 6' 6' v, v, 5' v, v, x, <* 5# &. 5# ;! {. x@ &. ). *. z@ 5# ;. -. =. z@ .= z$ +. $% &. G@ C$ .= D$ I@ H@ 4# 2# H L@ Y T Y Q@ O I N@ M@ w 3; Q@ S A z n! ", +"+ ; + % > & & V@ & . $ > & & Z, = = Q$ > U) ] & > ; - Q$ & & & N$ > N$ X@ - Q$ ~ ] ## } X@ 2 ^& X@ ; > | ) N$ ~ [ | ~ | W@ *# ( ] # 4 e { 2 { ## %# J= < } $# ## 6 b &# a 2 } &# 8 b 6 6 9 d } 1 5 9 a $# 6 3* J= '# h e h ,# 7 a ,# ~# s> n W$ 7 p n Y$ n Y$ p 0 r h p y Z$ Y$ c Z$ h t b' Z$ ^# w w % G w 6* G F= y O@ G I )> ~& M n! I M= Q@ w I A Q@ 3) 3# O T G$ J S L 3# L@ 1& E$ J ` C$ L@ s! I@ Y 7# R W H R 9* t> 4# $% @. +. @. 0* R >. &. .= A@ )& A@ A@ =. v{ R' ;' v{ ;. *. ]. ;. !. !. 9# '. 6, '= b# '. b# v{ ^^ '= /. =% 3~ 5& /. ^^ W^ ~. &% W^ ~. 3~ u' H; -% 7! -% -% , , , j# 9; '! I! 6^ '! I! I! 6^ h{ =/ 1{ 1{ y{ y{ {> N] A{ !! @~ m~ 8! X~ i{ B{ 8! Z- h. K! Z- K! r) r) r) K! g& H, W' F~ F~ }/ F~ l] `~ |/ W= G~ H~ *^ I~ l- 1/ C] p~ 8] ~! ') m- m- A> ') ') 0! K~ =] 0~ ]! <> 9] 0~ 0~ q~ 2/ =] ]! Q] 9~ u^ =^ =^ Q] u^ u^ N~ x) 1> x) 2{ d; d; d; ^' ^' 9) 9) ^' d; Z{ F{ ^' F{ q- +- 3/ 3{ 3{ ]~ 3{ ;] 3{ ^~ N! s~ S] C' C' ~) @{ C' C' @; @; C' ~) y^ P! ~) :/ y^ @{ '^ '^ V] '^ r{ r{ %, k' _~ k' _~ k' %, k' _~ _~ ] %, 4/ g, i! i! B* _~ N^ e~ #{ N^ l' d] -~ .) 5/ R! a+ .) .) u~ e= >~ G* >~ e= e= ^) ^) +) G* M{ ^) e= e= e= k! @) l; +) l; 5{ ;$ ;$ l; l+ ;$ ;$ ;$ ;$ l+ l; A- ;$ ;$ h+ ;$ >$ t+ t+ t+ N> n+ y% t+ s+ u+ t+ t+ s+ w+ s+ s+ M> B+ B- B% B% B+ B% A+ B+ B% B- B+ K* C+ A+ A+ A+ E+ J+ C+ E+ O+ A+ A+ A+ C+ E% L+ /$ L+ /- /- S+ /$ Q+ S+ R+ S+ T+ R+ V+ V+ Y+ Y+ Z+ W+ W+ @@ Z+ Z+ W+ @@ @@ +@ _$ #@ +^ 6/ [$ }$ +@ %@ <~ %@ %@ %@ &@ +^ e] &@ =@ )@ 7/ t= >@ '@ s= * ,@ C! 6$ r; 8$ 8/ +* 0$ }@ }- ~@ 4@ b$ P{ 4@ q@ w [ > R@ *) q, v, q, v, z, s, =) x, u, s, r, v, q, v, 7' x, x, s, v, s, +' r, v, g] q, q, q, =) s, v, t, x, x, x, 7' x, 6' ' x, s, A, 6' v, r, g] V! X {. ^. 5& {. ). A@ -. [, '. -. .= e- &. &. z@ >. V z@ ,. 4& .= 4# $% V $> P J C$ J D$ H S H K@ E$ Y H$ ` P@ A M O@ G G ", +"+ V@ $ . ] !, + # [* o! . - ; T@ $ ]& $ > & P$ `@ /& ] N$ ; 2 N$ N$ ; N$ & ; & | ^ ## ( - ~ X@ N$ | | /& & & R$ ~ ] | ~ ~ 2 { ) 2 ^ { ] [ ;# & W@ Y@ / +# / [ $# $# [ g ~# ( / < J= ,# J= &# 8 < ( q> ,# 6 $# e e j 8 D, 6 7 W@ 7 6 {# a ,# 9 7 0 X$ e n a r X$ s> h a h s> p p Y$ Y$ `$ _# h u 1; h D ^# h m I G M w E y I G O@ 6* N H$ I |# M A C P@ O@ T L@ |# O@ J T L@ L@ H 3# T I O@ I@ P T 4# Q@ L H@ I@ >) 2# Y )= W E@ @. ,= W =. *. +. C$ $% .. z@ A@ C$ B$ *. A@ ;' v{ 9/ &. ;. =. z@ ). =. 0# b# v{ D! ;! b# 1~ =% '= 0/ 3~ b# != ;! L] '. /. &% w{ w{ w{ &% &% p^ -% e' -% H; P= g{ ~= '! '! '! '! '! P= I! I! l~ a/ 8^ s^ 1{ 1{ {> y{ b/ H^ y{ y{ y{ H^ V' B{ c/ &] B{ Z- {% c. h. h. K! h. r) r) 4~ V{ K! F~ C{ V{ d/ V{ '{ e/ *^ h' *^ W= Y^ D{ f/ g/ [= h/ 8] ') ') ') [= m- ') 0! 9] ]! 0~ 0! 9] ]! ]! ]! Q] =^ =] =] =] =] 9~ Q] Q] i/ -^ { Q] v^ 2{ w^ /! z' d; 1> 9) ^' 9) 9) ^' ^' f; 9) d; F{ q- ]~ 0) ;] s~ ]~ ;] O! [] j/ ^~ S] S] C' C' (~ F] *+ C' ~) ~) C' @; C' @{ ~) C' C' @{ d~ A) k/ l/ r{ [^ k' _~ %, %, k' k' %, %, b= k' ] ] s] i! e~ i! m/ ] >- #{ e~ #{ l' N^ >- ]) .) .) u~ t] .) >~ G* ^) i, ;~ ^) l^ ^) e= e= ^) 6> ^) ^) >~ e= /) l; ;$ )- )- /) g+ P, l; l+ l; ;$ ;$ ;$ l; >$ l; l; ;$ ;$ ;$ ;$ >$ t+ t+ y% r+ i= t+ s+ w+ w+ s+ N> u+ w+ s+ n/ w~ B% B% B% B% B- B% A+ A+ B% A+ C+ A+ C+ B+ B- m; E+ B% E+ E% Q& A+ C+ D+ k= O+ O+ L+ S+ a> P+ Q+ Q+ R+ R+ P+ P+ V+ .@ .@ R+ Y+ Y+ _$ W+ W+ @@ +@ +@ W+ W+ #@ %@ #@ #@ @^ R> &@ &@ > #@ *@ %@ #@ *@ 7$ $@ -@ $@ >@ !; *@ *@ '@ ]@ 5$ ~@ u= R% {@ {@ t; 3' /@ !@ ^@ /@ P* n, |@ =! x@ ^# ) Q$ R@ J$ q, 6' q, s, v, x, =) v, v, s, s, x, v, =) s, v, v, s, s, x, v, q, v, 6' g] v, s, v, v, v, s, s, s, x, v, [) 6' t, H) =) s, 6' +' v, s, s' S (. (. /* ). ,& ). !. &. {. $. A@ e- E@ .= _* V D@ $% 7# R C$ P Y L@ C$ ` ` T P@ Y Z T Y P@ Y P@ U 1# N@ Q@ G F= z P@ ", +". # ~ ; . + > * ' - # . . & + ]& ]& ; | - ] ] S$ [ ; | | | ; & - - ) U$ ~ < [ > ^& ; | X@ 2 { ; & ~ { ) ; | ; *' $# | N$ 2 < < { N$ | { Y@ $# Y> +# ) / { Y@ } &# 2 < } Y> a 8 &# } $# d a j 6 a j i V- Y@ i a 8 k ~# j L= Y$ L= b 8 a o/ ~# ~# n Y$ s> |& n s> p m r n^ c w r ]# h p _# Z$ 4* ^# `$ }& p ^# p m D N H$ M 3# C /# E$ O@ P@ I @% 8* L J >) L@ A I M P@ L@ S H M P@ 4# Q J J I@ P %> L L@ }; W G@ 4# V I@ z$ #. . .= @. (* z@ E@ .. y@ !. >. =. )= !. )& ,. . ;. !. v{ 9/ ). =. ,. p, p/ S' %% ). '= q/ {. '= %% r/ !. 3~ 1~ D~ u! '. -{ 5] |. e' 3~ &% w{ *% 8& s/ 5^ g{ 9, t/ 6^ u/ I! h# 0, 0, '! I! 9; 6^ I! 6^ f' 7) ]= i{ v/ 1{ 1{ y{ y{ 7) a; 8! ]> A{ Y~ h. h. K! h. r) K! r) K! K! r) r) F~ r) r) K! w/ r) s) W' h' W= W{ l- E{ 8) H~ ~! 6~ h/ 8] 0! L~ m- 0! 0! l{ ') K~ 9] /] <> 9] q~ ]! ]! 9] (/ =] 9~ ]! 9~ 9~ x/ y/ z/ R] u^ /! o] a] !{ A/ a] ^' ^' d; .- 9) ^' 9) d; 9) 9) Z{ 9) ;] ;] f; O~ f; 3{ ;] [] O! Y{ K^ H{ O~ ~) ~) ~) b) ~) @; C' @{ ~) ~) @{ B/ ~) C' (~ Q) d~ / c~ '^ / C/ [^ Y# k' k' b= k' k' _~ k' }+ _~ %, _~ D/ }+ i! D/ k' _~ l' i! >- N^ #{ d] ]) .) l' u~ !^ .) E/ ^) e= ./ ^) >~ e= ^) ^) ^) e= f+ e= ^) ^) ,- F/ *, g+ /) k! l; '] |' l; l; |' l; l; l; l; l; ;$ l+ l; l+ @) A- y% |! y% |! G/ N> |! y% u+ s+ t+ M> N> i= u+ j= B% B+ B- B% B- B% B+ B+ B+ B+ B+ B% B% A+ B+ H/ A+ C+ E+ C+ M+ O+ M+ F+ F+ D+ k= L+ O> S+ S+ S+ Q+ G% L+ P+ S+ S~ T+ V+ V& R+ V+ Y+ Y+ +@ W+ Z+ V& @@ Y+ W+ #@ @@ +@ '; |$ |$ }$ #@ #@ +@ %@ *@ &@ &@ I% Y& &@ e] > *@ >@ Q% q= U% N% d> )@ ~@ r= * d> ^@ P* u= ,@ 9$ Q* e$ |@ f$ {. _# | # g~ *) q, q, 6' 5' |) u, x, @] v, s, v, s, v, g] s, z, s, u, s, v, +' q, 6' +' x, x, s, x, s, s, A, x, H) x, s, 6' r, v, v, s, r, v, r, v, s, q, N= ~. ,& '& d# x@ E@ {. A@ &. z@ !. A@ .. 5# A@ $% z@ 5# @. E@ V L@ L@ 7# P E@ 2# Z D$ I H S S H$ b- A A b- A 8* S N@ x z ", +"# . + . + . + I/ * # R@ V@ . S$ $ > ~ ; & > > S$ 1* # | & S$ N$ Z! ; S$ ~ [ ~ - ~ & ; ; * 5! . 8- Z@ } 4 5 ## `@ { `@ | `@ J/ `@ / } [ { { 6 X@ &# 6 ) [ ) [ [ ] 2 ) J= 8 8 } $# 6 a +# d c Y@ 6 e b /& 6 g &# 7 L= L= ~# L= 0 c ~# K/ ~# 0 ~# L= n [& e a L= p n |& L= h ^# 1; ]# Z$ p }& q C p p Z$ c p c{ 4* m B ^# 2; m N z {& M O@ L/ M/ N/ O/ P/ }# 1& T P@ H #= T L M J P E$ @% 3# Q U J O@ H I@ I@ @. T U T X C$ I@ T D$ #. G$ #. z$ .= $% +. L@ z$ $% +. =. O= )= z@ ,= =. )& 0# )& &. %. 9/ C~ !. >. 7, p, b# x@ 5; &. ). x@ {. /. '= D~ w{ ^^ '= &% &% -{ w{ Q/ W^ w{ 3~ R/ k~ g^ g^ M] 9, S{ S/ , '! '! 9; '! , 6^ g# I! X^ 6^ %^ 1{ y{ H^ j{ T/ j{ j{ y{ 1{ N] y{ {% q) U/ w> K! h. h. w> K! K! K! h. K! F~ K! l* r) K! r) l* W' W' V/ p* ,{ ~! W= 7] o~ 8] O] N; l- L~ L~ m- A> m{ ,/ ') ') m{ m{ 9~ ]! { |= 9~ 0~ ]! 9~ ]! Q] =^ =^ 9~ =] i/ Q] W/ =^ W/ ^! w^ 0] X/ 2{ d; !{ ^' d; ^' d; ^' 9) F{ ^' F{ f; ;] ;] N! 3{ ;] ]~ K^ ;] ;] H{ S] S] *+ *+ v& @; C' @; @; @; ~) ~) C' C' ~) y^ ~) c~ V] K{ b] Q~ Y/ [^ r{ b] _~ k' %, %, %, k' %, _~ _~ k' k' _~ .! s] Z/ s] ] >- i! i! #{ l' 6+ >- t] ]) #{ ^) l' ]) i, ^) e= >~ ^) G* L{ ^) ^) ^) +) +) ^) >~ )- %$ @! Q, @) l; l; l; l; ;$ `/ l+ l; ;$ l; l; l; l+ n+ ;$ l+ l+ y% A- =, g= |! s+ i= y% t+ i= s+ h= ( u+ s+ u+ u+ z+ ]$ ]$ B% A+ B+ A+ R, A+ B% B+ B% B+ A+ C+ B- o' B+ J+ A+ A+ S& O+ E+ D+ F+ k= L+ O+ R+ f) Q+ T+ V+ T+ T+ S+ V+ T+ V+ Z+ V+ Z+ Y+ Y+ .@ W+ _$ Z+ W+ p; p; W+ @@ +@ @@ +@ q; C^ %@ #@ *@ %@ #@ &@ &@ p= *@ >@ e] <- &@ *@ =@ *@ '@ Q% R% 7$ M% U% /@ s= '@ ^@ T~ 8$ }- R* !@ V% X% 7# g ;# . J$ *) [) 8' @] s, z, =) H) v, v, s, v, u, A, s, 8' v, %{ x, s, s, x, [) v, r, v, s, s, s, s, +' s, z, v, s, s, s, s, x, v, q, 5' s, [) v, s, 5' M= ^. x$ (. ^. ). x@ {. =. ). '. &. &. =. +. z@ B$ e- 4# >. .= E@ 7# H@ i~ G@ C$ U F$ Z 2# H P@ P@ H E$ 4, M S ` M S N I A ", +"+ # $ # Q$ .( # L$ & . * . * Q$ & S$ ] N$ & > & - . 0' . ; N$ | > H= o! ^ N$ | `@ U@ ; N$ E! ] . X@ 2 | ~ N$ | | - ] U$ 4 ~ ^ | U$ { ) { | X@ | } } 6 W@ $# d < &# $# 6- 1 b { < ## } &# &# 7 -# : 7 0 b } < b -# *= 6- q> ~# c L= n ~# {# O' s> ># e r [& g e c o p ;= ]# ~# [& Y$ n /# ^# Z$ !# ^# 1; m y o h w % `$ y G ^# x z B O@ n! P@ +( @( #( $( %( I N z D I O@ Q@ 8* H$ E$ H |# J G$ T ` L@ E$ 4# X L@ P C$ 3# V H T I@ U X &( *( =( -( ;( >( ,( '( )( !( #. $% G$ ~( *. )& %. *. 4- *. B@ z$ !. A@ {( ]( ^( /( (( _( :( <( [( }( |( 1( X) /. D~ /. /. %% 1~ w{ &% &% W^ e' >' H; e{ 7! 2( 3( 4( 5( P= '! 8^ '! 0, l~ I! I! j# h{ 6^ 6( 7( 8( 9( 0( y{ y{ 1{ y{ H^ H^ v' q) ]] a( b( c( d( e( r) K! K! K! K! K! F~ r) K! l* l* F~ F~ V{ G~ `~ W' h' f( E{ p* l- f( g( h( m- ~! 8] A> @, m- 0! A> A> 0! m{ /] 9~ M~ {~ 8~ =] 0~ ]! 9~ =] =] 9~ 9~ 9~ Q] u^ Q] a] Q] W/ N~ ^' _^ 0] -^ 1> 2{ ^' ^' 9) ^' F{ ^' F{ ^' ^' J^ F{ f; O~ 3{ `^ ]~ i( ;] ]~ O~ S] S] ~) ~) z) U] ~) G{ @; @; C' ~) @; U] ~) `{ h^ i^ ~) @{ b] K{ d~ '^ j^ [^ k' ] _~ _~ k' k' _~ k' k' k' ] %, s] d] ] -~ ] :~ -~ i! +! l' g, {/ .) ]) #{ ;~ ]) .) t] u~ e= h, ^) e= >~ e= ^) e= ^) M{ >~ >~ k; k; v~ j( @) l; |' l; ;$ l; ;$ ;$ /) ;$ @) l; ;$ |' ;$ n+ l+ ;$ r+ ;$ >$ t+ t+ y% N> i= y% t+ t+ t+ N> i= y% u+ w+ u+ i= B% B% B% B+ B- z+ ]$ B- B+ B+ B% C+ C+ C+ A+ A+ A+ A+ E+ C- O+ ;; E+ D+ C+ L+ O+ R+ Q+ S+ V+ R+ Q+ /$ S~ R+ R+ T+ G% V+ T+ Z+ T+ X+ W+ Z+ f) @@ +@ W+ W+ @@ @@ '; %@ <- @^ %@ +@ #@ +@ &@ %@ %@ 1$ &@ *@ <- *@ 1$ -@ R% !; )@ R% 9$ /@ S% )@ * V% U% N% * }@ 9$ W% }@ |@ +] H e N$ ]& g~ ^, v, z~ 6' s, v, =) s, v, s, H) s, u, s, s, +' +' r, s, =) x, x, r, s, q, q, +' z, r, s, +' H) s, q, q, s, q, q, ^, e^ 5' ^, [) z~ +' 8' ^, '# *. p) (. ). ). ;. -. &. G@ A@ w$ &. A@ (* z@ z@ E@ B$ )& 5# 5# V H@ E@ 4# $> Y 1# 2# J J@ n> Y I Y Y 8* H Q@ I 8* E$ A A ", +"R@ > # . > [* V@ = > > + & > # H= | ; > > $= 5- N$ ; $ ] ] N$ ; > P$ > & - - Q$ ' ] N$ ; > ^& N$ | U@ U@ %= ; N$ ; [ ] { ~ [ 7 { { ) < 2 / { } } ) ## /& ~ / $# [ Y@ 9 7 { J= -# 7 6 6 &# ## &# b ~# 6 ,# k b c c Q{ a 0 n E, 0 [& j Y$ g 6 a e e ~# X$ [& r t e % c c p ,> 1; m D 4* w ^# /# ^# n m C m b' D C /# D I G P@ I >) k( l( #( m( n( G I M o^ P@ N Q@ H H A E$ #= T C$ 8* O@ H J d- d- L n> 7# E$ d- C$ r! . G$ o( p( #( #( #( #( #( #( #( #( q( r( s( =. +. 4- z@ z@ $% -. A@ )& e- t( u( v( w( #( #( #( #( #( #( #( w( x( y( z( 1~ -{ 3~ =% /. w{ ~] w{ 3~ e' 4] 5^ 3~ A( B( C( w( w( D( E( '! I! , a& j# '! '! '! 9; F( G( w( w( H( I( v' !! g' y{ H^ 1{ J( K( L( M( N( w( w( O( P( Z- K! h. K! K! r) r) F~ r) x! V{ F~ V{ G~ G~ W{ '{ H~ W{ Q( h( Y^ 8] 7] m- L~ 8] O] o~ ') 7~ ') [= I^ 0! 0~ 9~ <> { O; 9~ 9~ 9~ 0~ =] 9~ 9~ u^ =] 9~ =] Q] =^ =^ :] N~ x) 2{ w^ R( ^' ^' ^' 9) 9) w^ 9) 9) 9) Z{ F{ Z{ 9) f; f; ;] ]~ O~ Y{ ;] `^ `^ O! j/ @; b) h^ U] G{ o{ ~) y^ @{ ~) ~) !/ C' K{ y^ :/ b] @{ S( D' T( K{ b= j^ _~ k' k' _~ ] ] _~ k' k' _~ _~ %, ]{ g, ]{ B* w- s] U( g, i; >- #{ e~ N^ ]) -~ L{ !^ K> .) i, ^) u~ e= ^) i, ^) e= ^) e= +) %$ e= ^) k; e= }' l; ;$ k! l; |^ @) l; l; w% l; l; l; Z] /) ;$ =, l; ;$ =, l+ r+ t+ t+ t+ N> N> s+ t+ y% x+ w+ `] N> i= N> t+ M> B% B% B% B- m; B+ ]$ A+ A+ A+ A+ C+ C+ B- B+ A+ A+ I+ E+ E+ E% L* F+ E+ D+ E% O+ P+ O+ Q+ L+ T+ T+ /$ Q+ S+ T+ T+ Y+ F% Y+ Z+ Z+ V+ @@ F% Y+ +@ p; +@ +@ +@ +@ #@ [$ +@ V( +^ %@ &@ %@ *@ > > >@ *@ *@ >@ W, 1$ >@ -@ )@ !; r; T% ~@ T% r; R% H- 6$ 6$ q= 0$ ^@ {@ W( 9$ .& ` 0 ; + R@ ], =) 6' q, v, v, H) v, g] ' s, q, v, s, s, s, r, q, s, v, x, s, @] s, v, +' q, r, ^, @] s, s, X( q, q, v, =) v, s, s, x, t, 6' 6' q, [) ^, !~ x@ ). ). p, x@ A@ ). A@ 5& $% .= 0# x@ ,. 5# .= D! 5# +. .= ,= P 5# V J C$ J J@ U K@ H H 1# P@ +% M@ O@ O )> P@ A M n! I ", +"R@ . = # # # ^& . L$ ]& - > $ . > . U@ 5- ; . T@ ] & }* ; - Q$ > & - # S$ ; %= ; %= ] ; T- > { ] ] Z! ; X@ | & N$ *# X@ < , , $# | < 2 ^ 2 W@ { { b | 1 ## [ 6 $# i 6 7 6 d } 8 $# e $# 7 < e ~# a &# e i 7 7 b 9- $# ## 9- ~# a c n |& L= e ># j L= c -) h Y$ !# c{ h r Y$ j p p h O' m /# C ^# b' Y$ 2; m 4* r 4* G b' w x C G A P@ Y( l( #( m( Z( D G G |# 8* M E$ M@ T J S L@ L I@ J T H T I@ 1# d- O U 3# S X O `( _ ._ #( #( #( #( #( #( #( #( #( #( +_ @_ #_ . +. ;. ;. =. ;. 9/ ;' -. $_ %_ #( #( #( #( #( #( #( #( #( #( #( +_ &_ 3~ =% ~. &% 3~ 5& x@ 5& 4] w{ *_ W^ 2~ ,% =_ -_ ;_ #( #( >_ %] 6^ , , a& , I! 8^ I! ,_ '_ #( w( )_ ]= 1{ q) !! H^ !_ ~_ {_ ]_ #( #( #( #( #( ^_ P( h. Z- K! K! F~ K! ^% V{ r) H, V{ F~ d/ W{ ;/ W{ V{ W= W{ W{ /^ W{ 7] 8] /_ m- p~ 8] p~ I^ y! K~ ') ') 0! 0! M~ 9] (_ 9] ]! r~ Q] {~ =^ Q] 2/ __ u^ =] Q] Q] =^ =^ N~ :_ <_ %~ _^ :_ <] 9) 9) 9) 9) 9) ^' Z{ F{ Z{ ]~ F{ J^ F{ ]~ Y{ F{ `^ O! ;] 3{ 3{ e! [_ 3{ K^ G{ }_ }_ G{ ~) @{ @{ @{ C' C' C' @{ d~ h^ r{ ~) i^ %, |_ 1_ A) l% A) k' 2_ _~ k' ] 2_ _~ k' k' _~ k' b= :~ _~ _~ i! .! s] -~ e~ i! ]) #{ i! .) ]) .) e= i, .) G* e= >~ l^ G* e= u~ >~ >~ ^) +) k; M{ ,- k; ^) G* l; ;$ u] @) @) |' ;$ ;$ l; @) l; ;$ l; l; ;$ >$ >$ |^ n+ n+ l+ A- |! t+ s+ i= y% t+ i= u+ u+ u+ n/ N> u+ w+ k, B% K* B% R, B- +/ w~ B- A+ C+ R, B+ B% _) B! A+ R& ^$ E+ E+ E+ S& D+ F+ G+ k= E% L+ Q+ Q+ S+ P+ L+ /$ L+ R+ R+ V+ V+ T+ V+ _$ p; Z+ Y+ _$ Y+ V& +@ +@ #@ +@ +@ %@ &@ +@ |$ q; :- %@ *@ &@ %@ %@ ;@ *@ W, %@ *@ >@ >@ `& S> q= >@ I- )@ u= T% Q% ,@ R% U% S% R* e$ /@ /@ !@ *& N@ b V@ V! g~ q, q, q, q, v, g] 8' =) q, s, ^, 6' }) [) ^, 3_ 6' 8' v, q, 6' 5' e^ q, 2! e^ r, s, ^, q, q, q, [) g] r, r, 6' x, +' r, 6' 6' r, g~ z~ 6' # A@ !. 4_ !. ). A@ &. -. ). )& !. &. =. . E@ E@ B$ @. z@ ). D@ J@ 5# @. V L@ }; J ` U }; O H A O E$ z @% A P@ O I z F ", +" T@ H= . V@ > $ . 5_ ]& 1* $ . Q$ & > R- > H= Q$ W@ T@ ; . ; $ ; (& # - }* ] Q$ ] ; P$ ^ > ; ; ~ O$ 5- O$ $= ] N$ N$ ~ { / *# X@ [ 4 [ } [ 4 Y@ ~ ) J= ( ~ 1 } 6 &# d 6 { 2 ## 6 ( a 6 a &# ~# :& e $# k 7 c 7 =# ~# a ~# 9 a f c &# ,# n {# n c c c ~# L= h p c e e h h % Y$ Z$ n n h :# {& D ,> F= r h c{ ^# ^# p `$ N /# D I z C G 6_ @( #( 7_ 8_ z w M E$ M o> A J P@ L S 4# Y E$ H U d- C$ L E$ H P@ R P W X R 9_ 7_ #( #( #( 0_ a_ b_ c_ d_ e_ 7_ #( #( #( f_ g_ A@ +. e- A@ =. >. ,. h_ i_ #( #( #( j_ k_ [( l_ m_ n_ o_ #( #( +_ p_ ^^ =% ~. ~. &% &% /. 6& 3~ 3~ D~ w{ &% |. 5^ 5^ q_ #( #( r_ s_ P= '! I! g# I! '! '! t_ u_ #( #( v_ w_ H^ H^ 1{ 1{ y{ x_ #( #( #( #( #( #( #( #( ^_ y_ Z- Z- h. h. K! r) B] r) r) V{ V{ F~ V{ V{ V{ 8) d/ 8) W' `~ f( *^ z_ H~ I~ I^ p~ H~ A> A> A> 0! 0! ') 0! m{ X' A_ 0! /] =] Q] 2/ =] Q] Q] Q] Q] Q] Q] Q] Q] Q] u^ /! N~ W/ _^ B_ x) /! 9) d; d; 9) 9) 9) Z{ Z{ F{ 9) J^ F{ ]~ ;] ;] C_ ;] q- ;] ;] s~ a) D_ [] O~ G{ <^ ~{ ~) C' ~) ~) C' @{ ~) C' @; @; P! E_ Q) d~ `' `' F_ r{ [^ '^ D' _~ %, b= _~ ] _~ k' k' %, :~ :~ ] ] ] d] c] >] #{ ,] >- N^ l' d] N^ 7+ t] !^ R! ]) .) R! e= ^) ^) e= >~ e= e= ^) ^) k; M{ e= >~ e= >~ /) l; l; g+ l; s{ l; @) l; ;$ l; ;$ ;$ |^ l; =, l; l; ;$ ;$ ;$ r+ s+ |! t+ s+ u+ t+ |! N> u+ i= t+ '$ h= V; t+ `] G_ B- B% B- {^ `] B% B- B+ B+ B+ B% A+ B+ A+ B% R, J+ B+ C- E% C- C+ C+ E+ k= Q+ O+ R+ R+ N+ Q+ /$ G% T+ L+ T+ V+ Y+ V+ f) V+ V+ Y+ X+ +@ X+ @@ +@ W+ @@ W+ +@ #@ #@ $@ @^ @@ *@ #@ %@ *@ U, %@ %@ 7$ &@ m, *@ -@ '@ q= !; '@ ~; ,~ 2$ U, !; ~@ U% R% 9$ P* }@ /@ W% {@ {* ^# Y@ Q$ <{ z~ z~ z~ [) v, 6' r, =) [) 5' 6' ^, q, q, q, q, r, [) x, +' s, 6' q, 5' 6' r, ^, i) q, 5' %{ s, s, 6' q, g] [) [) s, v, r, 6' ' @] g] 5' ^, ^, V@ .= v@ ^. d# ^. A@ '& +. l> &. &. V> z@ *. 5# E@ .. 5# .= V E@ P P 1# ` 1# 1# Z H T . H H Z P@ P@ 3# S G q! J I I z ", +"+ [* + ]& . $= 2 . # k) # - # M$ & H= k) + ; & | $ = * - U@ & . * ; - & ; | Q$ S$ R$ V@ ] { /& { | | | [ 2 & `@ - 6 [ < 1 ] ~ < ~ Y@ X@ 1 N$ ) { | / ~ %# +# < 5 8 < R$ a ># 6 e 6 a 8 < 0 6 7 9 ,# } a n 0 e c a 7 o g i ~# ~# 0 ,# a L= L= e 6 8 o c K= n^ E, n 2, p `$ (# L= h h _# ^# _# m n h D B G G G ^# /# y w C 1& L/ H_ I_ J_ K_ z M E$ G n! |# P' O P@ U P@ C$ Y L T D$ L O@ P C$ >) 7# d- 2# P 4; L_ M_ #( #( N_ O_ P_ Y . =. .= Q_ R_ S_ #( #( 7_ T_ ,. #. !. (* #. 5# U_ V_ #( #( W_ X_ Y_ 0# ). 5; %% %% Z_ `_ : .: p_ {. =% D~ &% ~. 3~ 1~ L] &% 3~ D~ +: W^ W^ e{ p^ @: D( #( #( #: $: '! '! g# '! , I! %: &: #( +_ *: f' 1{ y{ g' 7) 1{ =: #( ]_ -: ;: >: ,: #( #( ^_ P( K! K! r) ^] F~ h. r) r) F~ r) l* H, V{ V{ W{ '{ '{ `~ W= ': `~ ): o~ 8] 8] !: ~: {: O] ]: ') A> y! l{ m{ m{ 8~ m{ m{ 9] /] ^: =] =] =] 9~ ]! =] =] Q] u^ Q] N~ n{ Q] =] o] <_ -^ d; :_ X/ F{ ^' 9) ^' 9) t* d; F{ ;] F{ J^ s~ f; ]~ P) 3{ ;] ;] ]~ ^~ O! (! [] O~ y) b) o{ S] S] F] C' @; ~) C' ~) ~) C' d~ (~ Q) `{ R) k' q{ %, %, A) A) %, _~ j^ %, k' k' ] k' _~ _~ k' k' _~ :~ e~ Y] ] >- #{ i! N^ .) i! -~ .) .) .) u~ t] t] e= ^) R! u~ ^) ]) R! k; ^) >~ +) k; e= G* ^) ^) @) @) P, ;$ )- s{ l; ;$ ;$ @) |^ l; ;$ ;$ |^ y% l; l+ l; l+ l+ l+ /: |! y% t+ i= t+ (: t+ N> '$ s+ |! i= u+ N> z+ `] +/ _: B% A+ B+ B- B- B% B+ B+ A+ B% A+ C+ C+ A+ ^$ R& :: O+ O+ E+ C+ G+ D+ Q+ L+ O+ R+ P+ L+ Q+ G% /$ R+ V+ V+ F% Z+ Z+ Z+ Y+ Z+ _$ _$ +@ @@ @@ +@ +@ @@ [$ +@ +@ &@ @^ $@ %@ &@ *@ I% @^ &@ =@ R^ &@ 4$ *@ u{ S% )@ 2$ Q% 7$ O* -@ R% 6$ G- T% ~@ P* 9$ u= :@ U% <: ^. `$ 1 > <{ q, 6' q, =) v, x, s, [) 5' r, q, s, z~ 6' g] t, s, 6' ^, +' r, +' ^, q, q, 5' r, 6' q, r, g] s, =) @] e^ +' [: ^, v, 6' q, r, `, [) 5' +' e^ R@ V {. {. {. ,& ^. !. &. x@ 5# &. (* !. ). -. &. z@ &. P z$ E@ . ` J@ L@ L@ T P P ` M@ D$ O H N A O S x O@ G G K z ", +"> V@ # L$ T@ $ & # . . V@ * & Q$ | H= $ & o! . & S$ ; [ ) ~ V@ ' H= H= ; V@ ' ~ %= > ; N$ X@ X@ ) N$ ; ~ N$ ~ ; N$ 2 { / *# X@ ( ^ [ D, { { Y@ { ) W@ { { ## 6 W@ a == 7 1 Y> j Y@ $# $# [ a +# } 6 k 7 Y> 6 8 } b 6 b 6 V$ 7 e e 0 8 j ># e {# ~# Q{ ~# a e -) g Y$ :# n p ^# Y$ Y$ o Y$ n y ^# ^# D % D 1; D w w :# 6* t M D G O@ x D 3; z I n! I M J }# J O@ M O P@ P@ Q@ 8* J 0* I@ L@ L@ J D$ P@ H I@ I@ .= T }: |: #( #( N_ 1: ,. #. E@ 2: ,= $% )= F@ 3: 4: #( #( 5: 6: B$ $% . ;. R' 7: 8: #( #( 9: 0: q/ ). %% 7, b# ,& a: b: c: d: e: %% {. %% D~ &% 3~ ~] 3~ [. 3~ &% +: 4] `> g- {= 7! f: w( #( g: h: 6^ u/ s/ l~ 0, i: j: #( #( k: l: 6^ @~ {> f' q) i{ m: n: o: p: X~ N] q: #( #( ^_ r: Z- h. Z- h. K! h. K! 4~ r) U= l* l* C{ V{ W{ W{ W{ `~ s: I~ t^ t^ Y^ t^ 8] !: m- A> o~ ') ') m- 7~ m{ 0! m{ 0! m{ 0~ 9~ 9~ ]! 9~ ]! (/ =^ =] {~ =] _/ =^ R] N~ :] =^ Q] =^ a] 2{ d; z' <_ d; ^' ^' !{ 1> ^' 9) 9) Z{ F{ F{ Z{ ;] ;] (! [] ;] 3{ 3{ 3{ 3{ }_ ^~ K^ D] ^~ C' @{ y^ t: @{ C' G{ b) C' ~) ~) y^ ~) y^ k/ y^ u: b= d~ y^ b] b] k' k' _~ k' k' :~ _~ %, _~ _~ k' k' k' ] e~ X] k' ] e~ i! d] N^ .) d] N^ ]) ]) ;~ ^) t] ]) l^ >~ u~ ^) >~ e= ^) >~ e= ^) +) +) >~ k; e= e= j( Z] u] j+ @) @) l; @) |^ @) l; l; l; l+ ;$ ;$ ;$ ;$ l+ l; 5{ C) A- y% y% A- /{ y% t+ y% u+ y% t+ h= u+ u+ N> w~ v: B% B% A+ w: K* B+ m; B+ C+ A+ B+ B% B+ A+ A+ A+ ^$ D% A+ Q+ O+ J+ C+ E+ P+ S+ T+ V+ T+ V+ Q+ O> Y+ T+ G% T+ T+ F% V+ W+ Y+ p; @@ #@ @@ Y+ @@ +@ %@ +@ @@ @@ 1] :- !] f~ %@ #@ v] #@ %@ S> >@ >@ =@ >@ =@ M% )@ C! Q% q= {@ x: R% 9$ R% 6$ 5$ ~@ V% ~@ u{ :@ [/ d$ ,. Y$ [ > s' g~ 2! ^, [) 6' s, =) q, q, 5' x, s, r, ^, 8' 6' q, q, v, e^ e^ ^, y: s, ^, q, ^, v, q, 6' z~ 3_ u, r, v, 6' q, 6' q, r, 2! s, v, *) *) z~ q, ], i) ` '. (. ). &. ^. b# !. x@ &. 5# A@ A@ B@ 5# A@ E@ 6, z@ O= R $% _* #. S P 2# V R L@ G$ P C$ L@ @% M M H$ O@ H$ #= A Q@ A ", +"# + + + $= $ U@ & S$ & > & & & *' > ; ] $ # & ^ ) { ] > ] N$ ] > | N$ ; - ]& N$ P$ ] @# N$ ^ 1 X@ ;# & N$ N$ ) } W@ 2 { %# } } { %= X@ Y@ [ { 1 2 < -# ) ( _ [ | / 7 $# V$ d b D, 8 6 7 : 7 a [& i ~# V$ 6 a e e $# g ~# a e } c ,# 6 &# 8 Q{ X$ n n r o L= o c Y$ :# z: h p h p Z$ w 4* D ;= t ^# z 2; Z$ Z$ (# % O@ ^# n! A I D 8* N@ w ^# A G |# B 3# 8* J L@ P@ +% d- :* P@ A: T E$ A d- Y E$ T G$ C$ P' L@ B: #( #( #( C: D: P' 9* X R V Q' e- 5# .. E: W_ #( #( F: G: 5# $% *. ,. H: w( #( .: I: 9# ). b# H! ;. )& H! %% {. 0/ !. %% J: 1~ =% =% 3~ w{ +~ &% /. 3~ W^ w{ -{ 3~ 4] k~ -% K: L: #( #( M: N: I! '! 0, , O: w( #( P: Q: R: 6^ 7) g' f' v' y{ S: y{ j{ j{ y{ j{ T: #( #( ^_ U: r) h. K! K! K! V{ V: V{ V{ r) l* F~ V{ W: W{ V{ V{ X: d/ p* 7] W{ *^ f( *^ !: I^ ') 0! A> A> ') ,/ ') m- A> m{ m{ 9~ ]! 9~ ]! =] ]! =] 9~ 9~ ^! n{ b~ =] =^ )/ n{ Z) =^ Q] )/ /! <] w^ <_ .- 1> d; 9) 9) 9) F{ ^' J^ F{ Z{ 9) ;] ]~ ;] e! f; f; s~ ;] 3{ `^ ^~ N! 3{ [] @{ C' ~) C' ~) @; C' @; @; ~) @{ y^ y^ ~) k/ y^ t: Y: Z: z^ b] b] %, _~ %, %, k' k' k' _~ c] _~ j^ k' ] Y] s] -~ Y] :~ N^ `: i! < ]) ,] < ]) l' ]) e= ]) l' ^) >~ i, ^) ^) e= ^) ^) e= ^) M{ k; e= ^) 6> >~ @! Z] @) @) @) @) ;$ l; l; @) l; l; l; @) l; ;$ n+ ;$ ;$ ;$ l; ;$ r+ |! t+ A- >$ y% t+ t+ w+ w+ '$ y% V; '$ u+ m; j= B% B- k, B+ B+ B- B% C+ C+ B+ B+ B+ E+ B% E+ C+ B+ I+ A+ Q& L+ O> F+ F+ P> /- R+ R+ /$ P+ S+ /$ G% T+ G% T+ T+ /$ V+ T+ Y+ Z+ Z+ Z+ X+ Z+ +@ #@ +@ #@ &@ &@ &@ %@ %@ q; p= #@ p; > #@ %@ $@ > e] &@ &@ .> !; '@ R% C! q' R% T% Q% 5$ /@ '@ q= N% /@ ~@ |@ ^@ l$ X f ~ + R@ V! q, ^, q, 6' v, x, [) v, v, @] s, 8' [) =) q, s, s, q, ^, ^, v, q, q, ^, q, e^ q, q, z~ ^, e^ 5' 5' =) x, 6' v, 6' 6' 5' v, ^, q, 5' z~ 6' q, ^, G ^. B= {. v{ '. ). x@ ). &. )& !. x@ C@ A@ z@ &. A@ G@ C$ 5# 4# R z$ D$ |; T L@ L' P X n> O K@ H Q@ H P@ I ` P@ M A 8* ", +"X! ; * $ = & ; Q$ V@ > > - - Q$ & ' & Q$ N$ & # Q$ > 2 | ^ ; ^ ~ N$ & *' ~ & { - ; ) & ^ ; N$ | 2 (& ; > Z! *# { ~ X@ /& 4 6 { 7 Y@ T- [ N$ ) : ## X@ < < 6 W@ d } < Y@ } } ( } 6 &# < 7 g V$ .< +< @< #< $< %< &< *< e =# o a [& q> 7 e ~# i _# n ,# h a n 9- i C; q r K] 4* ,> Y$ D o 4* 2; ^# ^# Z$ =< -< ;< >< ,< '< b' I w I D A z D G J O@ P@ F= N P@ M Q@ H$ T^ H P@ d- H O J L 3# J P@ L L H M )< X> I@ T !< ~< #( #( {< ]< . C$ @. Z #. C$ B$ .. C$ z$ ^< /< #( #( %_ (< $% . W~ ;' b_ #( #( _< :< 9# !. !. b# ). H! H! x@ x@ 9# H! 1~ X) << =% b# w{ &% H! &% /. 3~ &% &% ~. +~ &% b* *% *% [< +_ #( 7_ }< I! '! '! |< 1< #( #( 2< 3< '! 6^ 1{ a; 7) 1{ j{ y{ y{ j{ 4< H^ H^ T: #( #( ^_ r: h. K! h. F~ K! F~ K! V{ F~ K! F~ K! r) V{ F~ F~ V{ f( G~ H~ Y^ &^ 7] Y^ I~ g/ 5< ') p~ h/ ') A> 0! A> 0! 0! ') m{ 9~ ]! ]! ]! Q] 9~ =] 0~ Q] Z) ^! b~ 9~ 9~ Q] =^ u^ u^ u^ /! N~ 6< _^ o] w^ w^ ^' ^' ^' F{ 9) ^' F{ Z{ F{ F{ 7< ;] ;] ^~ q- ]~ [] ;] 3{ 3{ s~ a) `^ T] *+ C' @; ~) @; C' *+ ~) ~{ C' ~) ~) @{ y^ i^ E_ y^ E_ '^ z^ '^ b] _~ _~ b= k' _~ k' _~ _~ .! _~ %, k' k' g, ] Y] A^ i! }^ U( i! e~ #{ #{ e~ N^ ]) ]) K> .) ]) R! v~ u~ L{ >~ e= u~ >~ G* e= +) 6> ,- l^ k; ^) @! 8< ;$ l; k! |^ l; /) ;$ l; ;$ l; f= ;$ /) *, @) ;$ ;$ l+ A- l+ /: t+ }! =, 2' t+ t+ |! u+ u+ M> j= u+ o+ s+ ]$ 9< B% B+ A+ B+ B% B% B+ C+ A+ A+ A+ C+ E+ D+ C+ E+ J+ 8{ E+ M+ L+ 0> 0> A+ H+ P+ S+ O+ P+ S+ R+ T+ /$ V+ T+ V+ Y+ Y+ V+ V+ Z+ _$ Y+ Z+ Z+ _$ +@ +@ @@ W+ +@ +@ %@ %@ #@ 6/ q; %@ }$ %@ &@ %@ W, &@ $@ &@ &@ !; =@ -@ Q% T% *@ T% R% G- (@ ~@ w= ,@ )@ u= b$ @* R* .& H e 2 T@ V! V! q, z~ ^, q, q, r, 5' 5' q, q, s, =) q, 6' q, 5' =) 6' q, z~ q, v, r, 3_ ^, [) q, 6' q, 6' [) z~ @] ^, [) 6' r, q, %{ g] [) ^, r, [) q, q, q, ^, 0< v@ :. <. w$ x@ !. 5# A@ A@ ). &. A$ A@ &. *. L) z@ .. }; U G@ E@ +. R R H@ O G@ +% O H Y P }; P@ Z M M Y Y H$ z 3# ", +"]& . & & $ # k) + = ; + * V@ . # ^ . Q$ & ^& T@ . . N$ | ^ | ] N$ ~ X@ N$ | 5! | ~ N$ H= ; ; ; { S$ ; N$ | X@ ; N$ { ~ ~ / { ( 1 ## -# / 6 6 ~ [ 4 Y@ | } 7 V$ | 6 6 V~ ## } 9 ,# ( $# ,# 6 &# a< b< c< #( #( #( #( #( d< e< f< 7 i '# a 8 V$ g< h< h< h< i< h< j< h< h< j< h< i< h< h< k< l< r p m< n< i< o< p< q< r< s< #( #( #( #( s< t< u< b' 2; % ^# P@ I v< w< x< y< z< N@ ^# O@ A< B< x< x< C< D< P@ O T T H P T E< F< G< H< I< L C$ T J< W_ #( #( K< L@ .= E@ W e- z$ W F^ H@ W H@ y@ L< 7_ #( #( M< >. $% $. %. N< #( #( O< P< $. 9# %. *. *. x@ H! b# b# ^^ b# /. %% %% /. {. 3~ 3~ 3~ 7, 1~ 3~ &% /. Q< $^ v@ b* *% p^ R< S< #( #( T< U< I! I! V< #( #( ;_ W< l~ I! 8^ h{ g' N] y{ s^ y{ 1{ y{ y{ j{ i] T: #( #( X< Y< K! Z- h. r) r) r) h. F~ F~ F~ r) K! V{ V{ V{ V{ F~ L! W{ V{ '{ Z< 8) G~ Q( ~! `< `< ~: [ ') ') ') 9] 0! ') m{ ,/ /] ]! ]! .[ 9~ r~ Q] x/ u^ :] ^! .[ x/ =^ =^ u^ u^ 6< Q] =^ N~ _^ ^' <_ +[ F{ F{ ^' ^' 9) 0] ^' ^' 9) ;] Z{ Z{ 3{ 3{ H{ (! ]~ M, H{ J^ }_ Y{ ^~ j/ s~ O! @; @; @; ~) C' C' @{ y) z) C' @{ ~) `{ t: @[ ~) y^ A) T( y^ c~ D' k' k' _~ k' _~ k' _~ k' %, _~ #[ _~ k' ] $[ ]{ N^ _~ >- e~ e~ < t] e~ -~ t] ]) %[ ;~ .) i, R! e= ^) c^ ^) u~ ^) e= ^) ^) M{ +) e= k; k! v~ ^) '] @) ,- ;$ l; ;$ l; @) l; l+ /{ l; ;$ /) l; ;$ |^ ;$ ;$ *$ l; y% t+ |! A- r+ t+ |! t+ i= s+ j= t+ t+ s+ x+ s+ B+ B+ A+ A+ B% B+ B+ y+ B+ B+ A+ C+ C+ A+ C+ C+ E+ _) D+ M+ L+ O+ D+ E+ D% H+ P+ L+ /$ /$ T+ /$ G% F% V+ R+ V+ V+ Y+ Y+ .@ V+ R+ f) Z+ _$ %@ @@ @@ #@ #@ #@ %@ &@ #@ 1] @^ %@ *@ *@ &@ *@ %@ ~; =@ =@ T% 7/ !; ]@ T% C! `& S% 5$ R% ]@ '@ ^@ /@ U% /@ T% b$ b$ e@ O h { > R@ J$ 5' g] +' [) 5' %{ r, H) r, 6' `, ^, z~ 2! ], 3_ 6' z~ ], g~ &[ =) v, e^ z~ q, q, v, +' q, r, 6' 6' ^, 5' e^ *[ e^ 5' 5' v, v, q, q, *) *) q, *) _, '. %% '. B= ). (* ). '. b# 5# =. !. ). ,& -. =. B$ z$ z$ 7# #. R z; .= 5# }; L@ E@ H V Z Y H Q@ S P@ P@ M S A P@ A G ", +"% . + > =[ + T@ . = ; | S$ # # $ . + + * T@ & - ! ] ] | ; ~ & | ; ; & . > | U@ %= N$ ) { Z@ & ~ 4 N$ Z! | Z! | | / 4 | ( < [ 1 d } D, ( ~ &# } b &# ( 7 Y@ :& D, $# : ( } 7 ## a k -[ ;[ #( #( #( #( #( #( #( #( #( >[ ,[ g 8 7 7 e '[ #( #( #( #( #( #( #( #( #( #( #( #( #( )[ ![ n h ~[ {[ #( ][ ^[ /[ #( #( #( #( #( #( #( #( ([ _[ G ^# D F= w :[ <[ #( m( 8_ A Z$ O@ z [[ m( #( 7_ }[ A M E$ 4# P Y :[ |[ #( #( 1[ 2[ 0* 3[ L@ 4[ #( #( 5[ 6[ E$ L@ @. 7# 6# 5# B$ $% $% @. P +. 7[ q( #( #( 8[ 9[ )& ]. >. 0[ #( #( a[ b[ c[ V^ 9# 5; b# ). '= =. d[ X) %% 1~ L] '. e[ /. /. D~ %% '= f[ w{ &% &% $^ 3~ g[ $^ v@ k~ Q< h[ i[ #( w( j[ 6^ k[ l[ #( #( m[ a/ '! 6^ I! 6^ n[ i{ j{ o[ H^ j{ H^ y{ j{ X~ p[ #( #( ^_ q[ h. K! K! F~ r) K! V{ F~ r) F~ F~ V{ V{ F~ V{ F~ V{ r[ `~ s[ `~ &^ ,{ 8] Q( t[ o~ o~ A> u[ `< 0! ') A> ') ') m{ m{ y/ ]! 9~ y/ /] r~ =] =] ]! =] ]! 9~ Q] u^ 6< v[ )/ /! u^ 6< W/ A/ <] /! w[ x[ 9) 9) 9) 2{ ^' F{ Z{ F{ Z{ ]~ 9) J^ 3{ 3{ Y{ f; f; [] 3{ `^ }_ [_ [_ O! y[ ~) C' ~) G{ @{ ~) =+ ~) C' ~) @{ C' @{ !/ i^ i^ t: b] `' z[ r] %, b= _~ k' ] k' _~ ] ] _~ ] ] k' _~ :~ _~ m/ A^ %, X] e~ X] {/ t] -~ i! ]) N^ ]) k^ t] .) i, >~ ^) G* ^) l^ >~ e= ^) l^ +) u% G* >~ u% +) >~ O^ @) u] u] P, A[ l; l; @) ;$ ;$ ;$ |^ l; @) =, n+ l; ;$ ;$ ;$ t+ t+ t+ s+ A- s+ t+ t+ u+ i= y% y% s+ t+ u+ t+ `] B+ B+ A+ B+ B% B+ B+ B% E+ B+ C+ C+ B% B+ A+ C+ ^$ A+ C+ E% L+ M+ D+ F+ D% P+ E% Q+ /$ Q+ /$ G% G% /$ T+ V+ T+ V+ T+ V+ Z+ Z+ Y+ Z+ @@ @@ @@ @@ @@ @@ +@ %@ +@ +@ 1] B[ q; D- &@ *@ *@ '@ >@ *@ 1$ *@ >@ )@ 2$ d> *@ T% )@ C[ H- 8$ ,@ {@ |~ {; 6$ P* 8$ W% r$ J j ; . R@ 2! *) q, [) [) %{ D[ 5' v, 5' @] *) ^, 5' 5' e^ z~ *) ], q, [) q, 6' 6' ^, ^, 5' ^, [) q, 3_ e^ %{ q, e^ q, e^ q, ^, e^ e^ r, q, z~ g] e^ e^ q, q, / 0# (. (. >& c# ,& A@ &. A@ ). &. E[ -. *. .= .= +. 9* z$ F@ E@ 2# $> T }; D$ H@ C$ T H Y P M Q@ P@ J K@ M a- H A M@ .~ ", +"# . + ; R@ + > ; = > ] $ Q$ - . S$ # T@ & . & W@ *' | ] ] | ] N$ & & + > , . ) ~ %= ^ { { ~ X@ ; ; H= 2 2 ^& | 2 ~ : [ H= ~ == < [ < { $# 1 { [ } $# { [{ b 7 d &# $# : $# d ( b ># F[ G[ #( #( #( H[ I[ J[ K[ >[ $( #( #( L[ M[ ~# a e 8 N[ O[ O[ O[ O[ O[ O[ O[ O[ O[ O[ $( #( #( P[ _[ 6! n Q[ {[ #( ][ R[ #( $( S[ T[ U[ V[ m( #( #( s< W[ ^# s )> G ^# X[ l( #( m( Z( ~& I 1& H Y[ Z[ #( #( `[ } %> T O P 4, .} 7_ #( N_ +} T 4# P D: @} #( #( #} $} X V C$ 7# y@ #. z@ +. z@ .= ,. A@ A@ %} #( #( &} *} >. >. 9/ =} w( #( w( -} &. R' %. ). 5; '. ;} '. =% 1~ /. X) %% D~ 1~ =% =% 3~ f[ L] `> 3~ $^ W^ w{ $^ q^ f{ X) p^ , >} ,} #( #( '} )} !} #( #( ~} {} 8^ 8^ l~ 6^ 8^ ]} %^ y{ y{ y{ 1{ j{ y{ j{ N] p[ #( #( ^_ ^} /} h. Z- r) r) K! r) F~ F~ V{ V{ F~ r) F~ F~ >/ V{ (} C{ G~ f( L! e/ 8] H~ I~ o~ 8] g/ 0! _} :} 0! ') A> m{ 0! m{ <> 0~ ]! =] =] 9~ 9~ 9~ y/ =] Q] =] Q] =] Q] Q] R] ^! /! =^ =^ W/ 6< !{ ^' <} F{ 9) ^' 9) F{ F{ Z{ ^' J^ ]~ F{ 7< F{ ;] [] ]~ ;] `^ 3{ 3{ i( D_ ^~ [} y[ C' ~) C' [_ <^ b) C' @{ @{ @{ C' y^ @{ L^ y^ =~ 1_ '^ Z: k/ / A) j^ :~ _~ _~ C/ _~ k' _~ %, k' _~ k' k' k' ] k' ^{ ]{ s] i! e~ e~ l' .) e~ -~ ]) .) .) u~ ]) u~ e= e= e= e= G* ^) >~ h, ^) >~ }} k; >~ >~ 6> k; c^ l; l; k; l; /) &, 5{ |^ l; l+ l+ l; ;$ g+ l; A- G/ @) ;$ ;$ =, t+ t+ |! =, t+ i= y% s+ u+ u+ y% s+ i= N> i= B- B% B% K* B+ B+ A+ A+ B+ C+ A+ A+ B+ C+ A+ B+ D+ F+ F+ D% ~- C- L+ D+ n; |} R+ L+ Q+ Q+ O+ S+ G% Q+ F% V+ R+ R+ Z+ V+ Z+ X+ Y+ Y+ Z+ Z+ Y+ @@ +@ @@ #@ #@ +@ %@ #@ #@ 1] @^ &@ *@ &@ %@ p= &@ I% 4$ I% >@ e> Q% H- )@ * N% 8$ 5$ T% 9$ /@ {@ /@ 9$ O* :@ /@ 1} Q@ q> | = ], ^, [) q, [) 2! e^ ^, 5' [) @] r, g] *) q, 6' q, z~ 2^ *) ^, q, ], ^, r, i) *) e^ e^ e^ e^ ^, 2! q, *) 5' 3_ ^, z~ 2! e^ 5' %{ 5' e^ ^, q, e^ *) 6' - $% ^. 5# :. 9& ~. {. ). e- ). ,& .. 5# +. &. -. 4& z$ z@ B$ #. R E@ V P L@ L@ a- Y Z H J J@ P@ A M@ P@ S A Q@ I M@ P@ ", +"]& L$ $ = . R- # - + $ | ] $ $= . [* k) k) . Q$ *' ~ ^ & { | | ^ < ] # # 2 Z! T- 2 | ~ *# ~ , < h) Z! U$ S$ 2 ## Z! | X@ | ~ [ 4 } [ => 2 6 < ( j } } &# $# [ d $# ~ ( Y@ } 6 6 V~ Y@ == $# 2} #( #( $( 3} 4} ~# [& ~# 5} 6} d< #( #( 2} } 8 ~# e o a 7 j k s *= L= p n 7} 8} #( #( 9} 0} c n a} {[ #( #( b} c} d} e} G b' `$ f} g} #( #( h} z y m w x k( S[ #( m( %( O@ P@ W) Q H i} j} #( #( k} H L@ E$ A l} m} #( #( n} o} P@ L@ E$ p} q} #( #( r} @. s} ,. C$ X W E@ X +. 7# E@ A@ A@ &. t} #( #( W_ u} >. ;. $. v} w} #( #( x} y} z} e- 7, H! %. b: H! %% p, S' '. X) D~ -{ D~ '= '= /. L] e' w{ w{ w{ W^ $^ 3~ u' A} M] B} C} D} E} #( #( F} g: #( w( G} I! I! 8^ 8^ 8^ =/ t/ h{ m~ g' 1{ v' j{ j{ j{ i] q: #( #( X< H} U/ ^] Z- h. h. 0^ ;/ K! F~ F~ F~ K! F~ F~ V{ C{ H, I} `~ L! ,{ t^ Z< t^ J} [ H~ t^ K} L} `< Q( m- ') 0! M} 0! ') m{ 9~ 0~ /] y/ ]! 9~ Q] _/ x/ =^ =] u^ R] Q] 9~ Q] r~ u^ /! u^ R( W/ 2{ w^ A/ +{ d; d; ^' ^' F{ 9) ^' ^' ]~ ]~ F{ ;] 3{ ]~ K^ 3{ 3{ ]~ O! ;] [] s~ S] ;] y) /~ C' <^ G{ @{ @; C' ~) ~) @{ @; y^ P! C' Z: N} d~ D' u: O} [^ b] b= k' _~ P} ] :~ :~ k' k' k' ] :~ %, ]{ s] i! g, k' i! +! e~ i! ]) i! e~ ]) .) #{ i, t] t] !^ ]/ R! >~ ^) >~ e= >~ e= ^) +) k; Q} ^) u] >~ e= @! }} )- @) /) |' ;$ l; l; /) l; l+ l; |^ ;$ l; l; ;$ ;$ l+ ;$ >$ y% y% G/ /{ N> s+ g= s+ u+ s+ (: t+ w+ i= j= A+ B% B+ B+ B% A+ B+ A% C+ B% B+ B% C+ B+ A+ C+ C+ D+ ^$ C+ S& O+ C+ F+ >; /$ R+ Q+ S+ S+ S+ R+ L+ /$ T+ T+ Z+ Y+ V+ Z+ Z+ +@ _$ _$ _$ #@ W+ @@ @@ :- p; #@ &@ %@ %@ &@ c> !] #@ *@ &@ *@ *@ 1$ *@ =@ > `& R% T% )@ Q% N* G) !; .> S% ~@ U% +* O% ^@ s; S* _. m 6 { + ], ], V! q, 2! g~ ^, e^ [) 5' ^, ^, [) *) *) z~ [: `, *) *) *) r, e^ ], ^, *) 2! ^, e^ z~ e^ 5' 2! q, 2! q, [) q, ], *) ^, 5' q, q, ^, v, 2! V! *) `, # R q@ :. (. ^. (. F, ^. =. >. {. &. 5# 5# z@ A@ +. A@ &. z@ E@ +. z@ X 2# H@ H@ F@ L@ V C$ J Y S Q@ M@ A M A Q@ P@ K I ", +"]& + + & # $ + |* . & R$ ^& + > T@ + N$ N$ P$ > U$ & ; Q$ ; !, H= ~ N$ ] ] V@ # ) ) ) ~ 2 | ( & 1 2 | ~ 2 < { | ~ | 2 ] $# 6 -> ## 6 d } < d $# } 6 } $# } 7 < a Y> $# 6 b -# } a e R} S} #( #( T} U} $# 7 a i i V} W} #( #( X} Y} &# k L= s> ~# j o n Y$ c 7 0 Z} `} #( #( | .| e e n +| {[ #( #( $( @| ^# #| B /# p :# $| #( #( n< +( F= 8* z {& +( S[ #( m( %| w A P@ M L #= &| #( #( g} *| z N@ =| -| #( #( ;| >| L J T d- ,| '| #( #( )| #. 7# E@ U )= !& )= X 5# X X $% @. E@ !| 7_ #( 7_ u( )& =. E@ 0: ~| #( #( #( .: {| ]| ^| /| 0: !. !. {. %% ;} H! %% a: D~ u! 1~ /. 4] L] u! 1~ 3~ 3~ W^ w{ (| W^ 3~ b* 5^ q^ _| :| #( #( #( #( #( <| U< 6^ I! '! I! t/ [| =/ 6^ !! a; 1{ i] j{ 7) j{ H^ p[ #( #( X< q[ c/ B{ Z- h. K! r) }| || F~ r) r) r) V{ F~ C{ r) W: C{ `~ '{ l] l] 1| Y^ H~ t^ o~ 2| z_ 7~ p~ o~ O] m- 0! 0! ,/ ') ,/ 9] /] ]! 9~ 3| 9~ =] Q] =^ 9~ Q] =] Q] =^ =^ =^ u^ u^ =^ v[ 6< :_ _^ F{ w[ +[ 9) 9) ^' ^' F{ F{ F{ F{ Z{ f; Z{ J^ ;] 4| O! `^ ;] `^ O! 3{ ;] 3{ S] i( `^ i( z) @; ~) (~ ~) y^ @{ ~) ~) y^ I{ @{ ~) :/ Q) 5| :/ D' P! M^ [^ j^ k' _~ _~ _~ _~ _~ ] _~ k' ] 2_ %, k' c] c] Z/ ] -~ >- {/ i! -~ #{ e~ .) 7+ ]) #{ e= t] R! >~ .) ^) >~ ^) 6| ^) ^) ^) e= +) ^) >~ k; +) e= c^ P, ;$ k! |^ l; l; ;$ l; l+ l; l+ ;$ ;$ l+ l; ;$ n+ A- ;$ )- A- t+ |! y% 2' 7| t+ t+ |! i= s+ g= u+ w+ u+ s+ w~ B% B- B% B- B- B% M> A+ C+ B+ A+ E+ C+ E+ A+ C+ C+ C+ n; C% /$ M+ D+ E+ k= T+ R+ G% V+ R+ Y+ 8| Q+ F% Z+ V+ T+ Y+ f) Z+ W+ Z+ Y+ W+ #@ @@ @@ @@ `; p; #@ #@ #@ &@ &@ B[ !] #@ %@ &@ &@ >@ =@ *@ > Q% 7$ '@ I% -@ 7$ 7$ e> )@ O* M% I- T% V% H- {; w= 9@ z@ % 1 ] # ]& R@ ], e^ ^, 5' z~ 5' g] 5' ^, q, q, [) 5' e^ ^, z~ 2! q, ^, *) ^, ^, *) e^ e^ `, V! 9| V! e^ 5' e^ *) ^, [) q, e^ `, ^, ], ], q, z~ ], e^ z~ g] q, J$ ` D= v@ v@ >& !. A@ (* ). &. p, F, !. ;. [, (* +. #. z$ 5# G@ 5# V }; 1# P 1# H@ X T H J Y M P Y S Q@ G w G I G ", +"= > H= ; > # # & $ N$ ]& . & . Z, + & & & ' X@ & . H= - N$ ; | ) ) | - N$ ] . > - X@ ~ ) ## { & ] W@ [ < | N$ 4 X@ ## | [ { /& ^ %# { 1 6 6 ( 8 } | ~ $# } 5 a < 9 ( 7 D, } Y> ,# 0| #( #( a| b| 6 :& $# b e 7 ~# c| d| #( $( e| '# a L= e 8 7 &# L= ~# r -) ~# f| #( #( ][ g| c r ,# h h| {[ #( #( i| j| G 4* F= m 1; m k| ][ #( d< l| Q@ Q@ F= )> m| n| #( m( Z( I M N= w H n! o| p| #( #( q| r| H s| 5[ #( 7_ t| X> I@ d- L@ T u| 5[ #( #( 9_ 4; W C$ I@ ,. .. .. X a* 7# W #. !& #. v| 7_ #( w( =} &. =. $. %. w| x| #( #( #( #( #( #( _< y| z| A| x@ %% X) q/ !. %% 1~ a: ,& a: =% +: 1~ /. 3~ w{ W^ w{ f{ w{ 3~ 2~ q^ k~ w{ B| C| #( #( #( +_ D| '! I! I! 6^ 8^ [| [| =/ 6^ I! v' 1{ j{ y{ y{ H^ H^ T: #( #( X< E| c/ i] }| K! K! K! }| F| W' F~ r) V{ V{ F~ F~ C{ C{ F~ F~ W' Y^ G~ Y^ W{ `~ H~ o~ 2| o~ G| 7~ Q( p~ I^ A_ 0! 0! m{ m{ m{ .[ 9~ y/ /] =^ =] 9~ 9~ =] 9~ Q] Q] =^ Q] =^ Q] u^ u^ 6< v[ H| o] I| +[ A/ 9) ^' 9) ^' F{ F{ ^' Z{ Z{ ;] F{ Z{ F{ ;] 3{ &~ J^ 3{ [] }_ 3{ 3{ H{ j/ [] H{ @{ ~) C' F] J| @{ @{ @{ y^ @{ ~) @{ @{ i^ c~ h^ t: b= K{ u: @[ b] D' k' k' |_ _~ k' ] :~ ] _~ _~ k' _~ s] _~ i! s] :~ Y] g, e~ >- .) i! < t] l' t] ^) t] ]) ^) ^) >~ l^ G* ^) l^ ^) l^ ;~ +) s{ e= e= +) l^ ^) /) ;$ ;$ l+ l; |' l; l; l; ;$ ;$ ;$ l; l; l; ;$ ;$ ;$ t+ G/ A- y% |! |! >$ u+ i= y% y% u+ i= s+ '$ w+ s+ i= B+ `] B% B% B+ B% C+ A% A+ B+ B+ B+ A+ C+ C+ C+ B! D+ C+ E+ F+ Q+ L+ D+ F+ F+ K| R+ L+ G% R+ S+ G% /$ /$ F% Z+ V+ Y+ f) L| @@ X+ Z+ Z+ _$ @@ W+ #@ @@ +@ V& #@ #@ #@ #@ <- c> +^ >@ *@ &@ %@ 1$ S> o= -@ '@ >@ &) 4$ '@ 7$ 6$ T% T% U% O* R% S% (@ :@ W% |@ z$ q *# ; ], J$ z~ z~ q, q, ^, 5' z~ 3_ ], ^, q, r, g] *) ], g~ g~ ^, g~ 2! *) ], ], e^ ], g~ ^, V! ], 2^ e^ [) 2! *) e^ 2! g~ V! *) ], R@ g~ ^, q, *) *) M| V! Z d# q@ w$ {. !. ;. -. ). A@ %. '. '. !. 5# =. z@ +. .= V C$ D$ 2# E@ 2# P P J Y ` J@ E$ L@ T J J Y M I M +% A :# ", +"= N$ > + ; T@ %= & ] # $ $= - . . ; + # !, ; Q$ . & ^ . { ~ ~ ] *# ; & & ] N$ & H= | |* W@ ~ N$ | ~ N$ ] ## X@ ; N$ ] 2 | ) V~ [{ { ) 2 , ~ [ < $# 4 } } ( d [ $# d 1 d / 7 / ,# $# N| #( #( O| ># 0 ># b a 0 $# b ~# P| #( #( Q| j e ~# c o 7 a t' n a o R| s< #( #( S| T| L= ]# e n h| {[ #( #( U| h ^# @= m y V| Y$ W| X| #( 7_ Y| ~& N N O@ v< l( #( m( n( E$ P@ D G O@ I t> Z| `| #( 7_ 1 .1 |: #( #( +1 @1 I@ L@ r! Y L@ #1 W_ #( #( $1 R Q' X E@ L G@ !& E@ R O= .. z$ z$ V w| W_ #( #( %1 )& z$ %. %. %. &1 q( #( #( #( #( #( #( #( #( *1 =1 -1 x@ =% 7, 1~ J: '. ;1 3~ ). /. L] 6& &% ~] ^^ 4] *_ 3~ W^ w{ b* 5^ A} p^ >1 #( #( #( ,1 '1 '! '! S{ 6^ '! 6^ 8^ 6^ 6^ 8^ s^ H^ )1 j{ H^ H^ H^ T: #( #( X< Y< !1 // ~1 }| r) F~ }| }| K! K! r) K! r) F~ F~ V{ 8) V{ V{ C{ z_ l] *^ I~ {1 t^ t^ t^ t^ g/ I^ 5< ]1 I^ L} ') 0! ') I^ ') ') /] 9] ]! y/ .[ /] 2/ =] ]! Q] 9~ u^ z/ =^ u^ =^ u^ =^ u^ u^ o] w[ a^ :_ <] ^' ^' 9) ^' 9) ^1 F{ ^' ]~ /1 J^ 7< K^ ;] s~ `^ ;] s~ ;] `^ (1 T] _1 T] i( F] @{ ~) <^ F] @{ ~) ~) y^ I{ C' E_ /~ ~) :! ~) y^ :/ '^ V] Z: b] :1 k' k' ] k' %, k' _~ _~ _~ ] ] _~ k' :~ Y] X] k' <1 < {/ i! >- -~ m/ t] .) t] R! i, l' i, e= ^) e= ^) ^) i, u~ ^) >~ >~ u] +) >~ [1 ,- G* /) @) ;$ 6> l+ /) g+ @) @) @) l; l+ |^ ;$ ;$ l; >$ ;$ >$ y% n+ 2' D) |! t+ i= i= y% s+ '$ i= u+ j= u+ u+ t+ M> w~ R, B% B+ B% B% y+ B+ C+ A+ A+ A+ A+ A+ C+ C+ A+ A+ D% D+ M+ L* E+ D+ D+ D% N+ L+ Q+ L+ V+ R+ /$ /$ G% T+ _$ Y+ f) F% Z+ Y+ Z+ Y+ _$ Z+ W+ W+ @@ _$ +@ +@ p; +@ :- &@ e] e] &@ &@ *@ *@ *@ %@ =@ I% q= q= L% q= ]@ ]@ -@ V% {@ * }1 q= S% ,@ 9$ ^@ 6@ C$ m 6 ; R@ R@ g~ z~ g~ *) *) q, z~ ], ^, 2! *) q, *) z~ z~ q, 2^ 2^ 9| g~ ^, g~ ], V! *) <{ ], *) ], V! ], ], ], ], J$ s' ], ], 2^ *) *) ], q, e^ 9| e^ ^, [) i) |1 M= ^. v@ ^. w$ (. <. =. A@ x@ A@ ). *. A@ D! =. F; +. .. 9* )& G@ Y 5# @. R E@ P }; S I #= S 1# Y A M@ Q@ I Q@ @% A 2; ", +"+ . # > + + - . T@ V@ - X! * U@ 2) ; N$ . ; Q$ ' > S$ }, # |* ; ~ ~ ^ - > H= 1* # > ] N$ ~ X@ W@ ~ ) ~ ] | ) , /& 2 H= | { 5 ) W@ ; } ## W@ /& ( -> } } ## ~ ## 9 ( $# a $# 7 6 / $# ,# 11 21 #( #( 31 6 $# i [& D, 7 b 0 r 41 #( #( 51 8 0 j e 8 c L= Q{ n ~# 61 71 #( #( 81 91 }& /# c W! ^# ~[ {[ #( 7_ 01 Y$ n^ {& ^# `$ q `$ a1 b1 #( $( c1 A 4* I z d1 l( #( m( n( 1& G |# O@ M K E$ e1 f1 #( #( m} g1 #( #( h1 i1 H E$ D$ L@ Y D$ j1 m( #( #( k1 L@ y@ @. E@ P' O= I@ ={ H@ 7# !& l1 z$ z@ m1 W_ #( #( n1 *. =. . e- ). ;. o1 p1 q1 #( #( #( #( #( #( #( #( r1 s1 %% ;. q/ q/ L] '& d[ =% D~ 3~ &% w{ &% w{ '& 1( Q< w{ +: b* 7! 5^ t1 u1 #( #( #( v1 w1 I! 6^ ]} '! , I! 8^ 8^ X^ =/ x1 %^ y1 H^ j{ j{ o[ p[ #( #( X< z1 X~ A1 B1 F~ K! K! C1 F~ r) r) r) F~ V{ r) H, F~ V{ V{ F~ V{ l] t[ D1 8) `~ D{ H~ t^ [ `< 5< ,/ [= E1 ') m{ ,/ A_ 0! 0! m{ y/ 9~ 0~ 9] 3| x/ 6< Q] 9~ =^ Q] =^ =^ =^ u^ 6< 6< =^ u^ u^ a] _^ ^' :_ /! F{ F{ ^' F{ 9) 9) 9) ^' J^ F{ Z{ Z{ x[ 3{ 3{ `^ 3{ [] 3{ 7< `^ [] S] S] H{ [_ !/ B/ F] F1 @{ @; @; @; ~) ~) /~ @{ y^ ~) c~ !/ @{ b] @{ d~ A) j^ k' k' _~ k' ] _~ _~ |_ b= 2_ ] :~ ] _~ :~ e~ D/ >] N^ ,] d] N^ ]) g, t] l' t] ]) i, .) l' i, e= ^) ^) ^) !^ e= e= ^) >~ M{ u] e= +) )- l^ @! *, l; G* k! l; |' s{ l; @) ;$ ;$ @) l+ ;$ l+ s+ @) ;$ l+ ;$ L> A- y% t+ t+ i= w+ }! t+ u+ i= t+ w+ u+ N> t+ A% B% B+ A+ B+ B% o' B+ o' A+ E+ A+ A+ D+ C+ B% E+ A+ I+ >; E+ S& O+ F+ F+ D+ t{ Q+ L+ Q+ /$ T+ G% /$ G% R+ R+ T+ R+ V+ _$ +@ W+ _$ _$ _$ @@ Z+ +@ @@ %@ +@ #@ #@ &@ %@ %@ @^ $@ *@ &@ >@ >@ >@ > *@ 7$ *! )@ G- 6$ M% * !; '@ T% U% +* /@ ~@ P* _@ z= n> }& *# 2 # ]& ], ^, q, e^ e^ V! e^ g~ g~ V! V! J$ e^ 9| *) ]^ ], ], *) *) e^ ], R@ 2^ <{ R@ ]^ *) J$ ], ], ], S- ]^ V! e^ R@ ]^ V! q, q, J$ ]^ *) `, *) q, R@ J$ o D! u@ >& ^. w$ ). '. x@ !. *. ). ). ). 5# &. &. e- &. z$ z@ )= R e- &. G@ J H 7# J H Y |; x A H I H A M 1# P@ z ", +"]& 0' . . # > }* V@ . & # = > Z! ] $ > & & - $= =' ]& - # & ; - ~ X@ 2 . $= - & & ] 2 ^ ] U@ U$ ^ ^ R$ U@ } 1 X@ X@ N$ ( 5 `@ } %# / $# ;# 1 ( | ~ / [ ) } d } } 6 | $# } [ [{ ## G1 H1 #( I1 J1 K1 L1 -[ M1 N1 -[ O1 -[ P1 Q1 #( #( R1 a 0 7 9- *= '# e V$ e S1 T1 #( #( {[ U1 2, c Y$ c c r a} {[ #( m( V1 l /# ,> (# n ^# p W1 X1 #( #( Y1 w {& A {& :[ l( #( m( n( o^ P@ 8* N n! I m) O@ Z1 y< #( #( 7_ #( #( `1 J H$ J 5, L T E$ 2 m( #( #( .2 . G; y@ 8# )= V E@ E@ >! .= E@ +. $% =. +2 W_ #( #( @2 ;. A@ *. )& $. t( c[ $. #2 ]( $2 %2 %_ 7_ #( #( #( #( &2 *2 b# q/ X) H! b# %% x@ 1~ /. D~ w{ w{ =2 3~ 1( 7& w{ W^ g[ g[ A] -2 w( #( #( #( 7_ ;2 6^ '! '! 6^ 6^ I! I! 6^ =/ 8^ >2 v/ y{ y{ y{ j{ ,2 q: #( #( X< H} B{ '2 !1 B] K! }| V: V: K! r) V{ r) r) F~ V{ F~ V{ F~ W{ t[ V{ Y^ t[ t[ `~ z_ o~ l- f( o~ &^ 0! O] O] ') 0! 7~ A> 0! A_ ,/ 2/ 9~ =] y/ m{ y/ =^ =] Q] ^: =^ Q] u^ =] =^ u^ 6< =] u^ u^ =^ o] <_ _^ v^ )2 F{ Z{ F{ Z{ b^ F{ 9) F{ Z{ F{ !2 `^ ;] ;] `^ 3{ ;] `^ 3{ 3{ ^~ _1 j/ 3{ O! ~) ~) i( F] y^ C' C' C' C' C' @{ @{ ~) V] '^ ~) y^ [^ ~2 y^ S( D' 2_ k' _~ _~ k' _~ _~ _~ k' k' k' ] >] ] _~ D/ e~ :~ Y] ]) g, i! ]) N^ N^ t] t] ]) #{ u~ t] e= e= >~ e= ^) R! i, ^) e= >~ e= k! ~^ {2 ^) 6> ,- @! l; k! k! ;$ P, '] l+ ;$ l; l; l; g+ ;$ l; @) ;$ l+ l; l; l; >$ t+ y% t+ |! i= |! |! u+ u+ i= t+ y% u+ '$ ]$ A+ A+ B+ R, B% B+ A+ K* B+ C+ A+ A+ A+ D+ A+ E+ D+ C+ C+ E+ k= L+ /$ F+ F+ K| /$ Q+ /$ G% T+ V+ f) G% V+ V+ V+ _$ _$ p; _$ +@ _$ _$ @@ +@ Z+ #@ +@ +@ @@ #@ #@ %@ %@ R> w] e] &@ *@ #@ W, `& m, 1$ `& &@ R% 9$ r; * Q% )@ * 8$ '@ R% ~@ T% s= !@ p@ L@ ~# } ] + R@ J$ e^ 5' e^ 5' e^ e^ e^ e^ e^ ], J$ ], e^ 2! g~ ], <{ 2! ^, q, e^ )~ R@ 9| *) `, ], J$ R@ ]& J$ s' ], J$ J$ `, 2^ R@ V! 5' e^ *) )~ V! R@ *) ], ^, b l> E~ p) H! &. &. A@ -. ). ). '. A@ &. ;! A@ 5# F@ &. 6# E@ C$ 2# $> 4# C$ P P C$ V H +% S J @% S o> J S A M I z ", +"# ]& ]& # . 2) # $ & . . ; . ; [* $ & ; . > Z, 5! ] U@ & | ; ; - `@ ! ; ~ ; |* ] > # ^& ~ | ] | | U@ %= 2 ) X@ ] | & U@ Y@ ~ | 2 | [ ~ { { ## ,# } } | { ,# 5 $# b 6 [ $# Y@ d } ]2 I1 #( #( $( $( $( $( #( #( #( #( #( #( #( #( #( ^2 /2 e V$ *= 7 c ~# ~# n (2 $( #( #( _2 `$ s> p Y$ s> |& Z$ :2 {[ #( ][ <2 ^# p % {& b' Z$ Y$ [2 }2 #( #( |2 G z O@ ^# 6_ l( #( m( %| O@ z M A O@ L M 8* A 12 7_ #( #( #( 22 32 J A J L H@ J E$ 42 5[ #( #( 52 7# V O= @. V 4# O= @. E@ G; ,. @. . +. 62 +_ #( #( 72 +. A@ .. =. ;. !. ;. . *. 82 ;} H! 7: 92 02 +_ #( #( #( a2 b2 a: '= 1~ 1~ X) X) L] &% 3~ ~] L] /. +~ Q/ w{ c2 W^ *_ b* d2 e2 #( #( ;_ #( #( f2 g2 I! I! I! 6^ I! 6^ 0, 6^ 6^ =/ %^ j{ j{ j{ H^ H^ T: #( #( ^_ h2 ^] U/ ~1 B1 K! r) 4~ r) B] K! }| F~ F~ F~ V{ V{ C{ C{ G~ G~ l] 7] Z< e/ t^ &^ ~! 8] i2 (} Z< :} 6~ Q( ') 0! ') ,/ A_ ,/ m{ j2 9] ]! 0~ k2 9] 9~ Q] y/ x/ Q] =^ Q] =^ =^ u^ =^ =^ u^ =^ <_ N~ +[ 2{ w[ <] 9) 9) F{ ^' F{ 9) F{ Z{ 9) 9) 9) x[ [] ]~ f; &~ C_ f; 3{ Y{ K^ S] [] S] `^ ~) G{ b) o{ C' C' @{ @{ F1 y^ U] ~) @{ 4{ (~ Z: @{ '^ b] K{ '^ l2 [^ j^ _~ ] j^ ] ] k' _~ _~ ] ] B* _~ _~ s] A^ m2 P} >- d] e~ ,] < g, >- ]) .) #{ u~ ]) u~ ^) >~ i, e= ^) R! e= k; e= ^) G* +) +) e= k! >~ &, /) u] ,- l; P, C) @) ;$ l; |' l; l+ ;$ l+ l; A- ;$ ;$ r+ j+ 2' V; s+ y% V; N> s+ s+ u+ w+ i= m; t+ t+ N> z+ w~ B% B+ B+ B% B+ B+ B% B% A+ B+ B+ o' A+ E+ D+ E+ E+ E+ n2 k= O+ Z; o2 E+ |} S~ Q+ /$ G% V+ V+ T+ f) L| F% Y+ _$ Z+ Y+ Y+ X+ _$ Z+ Z+ _$ p; @@ +@ @@ +@ +@ <- +@ *@ %@ $@ E- I% %@ *@ C^ I% 7$ *@ *@ I% 7$ G- )@ =@ '@ V% O* 4$ 4$ T% U% 9$ ^@ ^@ p2 H j ~ & ]& R@ ], 2^ ], *) `, *) ], e^ e^ e^ 2! J$ V! J$ ], ], J$ J$ ], ]^ R@ R@ ]^ L$ J$ R@ R@ 2^ R@ J$ J$ R@ ]& R@ *) J$ R@ J$ R@ ], )~ R@ R@ ]^ ], R@ V! ], {, g~ W@ -. E~ {. x@ '& ^. w$ &. (. ;. z@ z@ e- =. '. =. A@ ;. &. G@ P .= 5# G@ 4# P Y H P M@ M@ 3; |; J Q@ #= A O@ P@ P@ Q@ q2 ", +"> # # + U@ > > & U@ . . & - > > ; ^ # Z, . > > 5- . }* & ; U@ ) ~ > ; - ; *# %= Z! .# ^ ] ] N$ > ^& r2 X@ ^ N$ 2 ; S$ R$ | }* |* ;# ) ) / | d ,# { 8- D, /& ; Y@ ) 6 : $# d i 6 ( } s2 I1 #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( t2 /2 8 V$ b a *= g s> u2 v2 #( #( w2 x2 L= Z$ L= s> Y$ y2 `$ ~[ {[ #( ][ <2 ^# h /# w `$ p ^# z2 A2 #( #( |2 /# z b' D 6_ S[ #( m( %( #= O@ A 1& O@ J w P@ O@ B2 C2 #( #( 7_ D2 T L T M@ Q T I@ J E2 F2 #( #( G2 7# E@ . X z$ d- L@ L@ 7# )= ,. =. E@ >. H2 #( #( 7_ I2 C@ !. >. ;. .. t( &. )= !. b# b: 9# ;. 9# J2 K2 L2 #( #( M2 N2 {. X) J: '= L] L] D~ D~ &% &% &% 3~ &% w{ W^ w{ W^ w{ O2 P2 #( #( Q2 R2 i[ #( w( S2 I! '! I! I! '! I! I! 1{ =/ 8^ T2 H^ y{ y{ j{ H^ p[ #( #( ^_ U2 !1 w/ A1 N] B] r) h. r) F~ F~ F~ F~ V{ d/ C{ C{ C{ V{ d/ d/ d/ `~ &^ {1 t^ W{ [ o~ ~! u[ z_ f( /_ ~! 0! 0! ,/ m{ M} ,/ I^ ,/ 9] 9~ 9~ 9~ y/ 9~ Q] x/ x/ __ Q] u^ =^ i/ u^ Q] 6< u^ 6< =^ 6< +[ 2{ 9) d; <] 9) d; Z{ 9) F{ Z{ F{ 9) 3{ F{ Z{ 3{ 3{ f; [] Z{ ;] `^ i( `^ 7< H{ S] H{ T] F] F] <^ b) G{ ~) y^ @{ ~) ~) ~) @{ @{ B/ Z: t: y^ {{ c~ k/ S( r{ A) _~ _~ :~ :~ ] :~ k' _~ _~ k' _~ _~ ] ] e~ g, k' w- ,] e~ d] t] < < t] ]) ]) >~ ]) .) >~ ^) u~ >~ >~ >~ ^) k; >~ l^ >~ k; >~ %$ k! /) M{ @! l; V2 ;$ l; l; @) l+ l; /) ;$ l+ l+ l; l; n+ l; l+ A- l+ ;$ t+ |! y% |! ;$ n' t+ u+ u+ s+ t+ o+ '$ u+ N> u+ C+ S, _: A+ A+ B% A+ A+ B+ A+ C+ C+ C+ D% G+ D+ D+ E+ D+ F+ o; Q+ W2 F+ D+ 0> S+ X2 /$ G% R+ R+ T+ Y+ V+ R+ S+ Y+ V+ V& +@ Z+ _$ Z+ Z+ :- +@ +@ +@ #@ @@ %@ #@ &@ #@ 1] c> E- R> &@ > [- Q% &@ p= $@ Q% (@ Y2 (@ -@ '@ /@ O% S% w= '@ )@ V% +* :. K ~# ~ ] R@ ^, i) V! ]^ J$ *) 2^ *) J$ J$ ], ], V! R@ R@ R@ ]^ # R@ R@ J$ ], ]& R@ R@ R@ ], )~ s' R@ {, R@ ]^ J$ ]& R@ ]^ ]^ R@ 2^ 2! g~ J$ ], )~ `@ &. :. O- v@ ^. v@ u@ A@ {. B@ p, &. ). B$ ). z@ )& B$ 5# -. X z@ V X 2# R }; O V J Z +% O +% P@ A Q@ M H E$ A +% ", +"L$ ]& L$ + > $ . ]& # $ T@ ; T@ U$ Q$ & - $ ; > *' > + ; # & - ^ ^& T- ] ] | U@ U@ ; - P$ Q$ S$ U@ ; ] ] ) ( `@ & X@ Z! %= | | ; ~ ) ( *# 2 Y@ $# Y@ ~ 5 ( a 1 [ [ J= Y@ 7 < $# b /& } Z2 I1 #( I1 `2 3 3 3 3 .3 .3 .3 +3 3 3 .3 3 @3 #3 j *= 0 L= c u $3 %3 #( #( &3 *3 a' X$ }& |& s> Y$ E, L= =3 {[ #( ][ -3 p w 1; w D m y ;3 }2 #( #( >3 `$ {& w C m| n| #( m( %| Q@ L O@ x O@ P@ I E$ M ,3 '3 #( #( #( )3 T d- I@ P L 4; O= E$ !3 ~3 #( #( {3 ]3 W W |# P C$ #. O= . d- 5# ^3 E@ /3 (3 #( #( N_ _3 :3 /3 =. $. B$ 6# ;. )& &. *. 9# !. H! 9# 9# <3 [3 w( #( #( }3 '= '= %% a: '= |3 ~] ^^ &% 3~ w{ W^ ^^ w{ 13 w{ W^ w{ 23 33 #( w( 43 53 63 #( #( 73 83 6^ '! 6^ '! I! I! l~ h{ =/ 6^ H^ y{ H^ v/ H^ p[ #( #( ^_ 93 N] A{ U/ A1 /} F~ V{ F~ F~ r) r) F~ r) C{ V{ F~ V{ C{ C{ V{ 03 d/ d/ `~ l] &^ e/ 8] a3 Z< e/ b3 I^ 0! ,/ m{ c3 I^ ,/ m- 0! 0! 0! 9] ]! ]! =] 9~ Q] Q] /] d3 =^ Q] Q] u^ =^ Q] u^ 6< Q] u^ u^ R( +[ a^ ^' d; F{ 9) Z{ F{ F{ F{ F{ F{ Z{ J^ 7< J^ ;] ]~ e! J^ `^ 3{ H{ `^ e3 }_ [_ f3 [] F1 @{ i( F] <^ C' C' @{ ~) y^ h^ y^ @{ @{ C' u: B/ i^ b] q{ Y: [^ 2_ %, Y# g3 k' _~ 2_ _~ :~ ] _~ ] _~ $[ s] m2 A^ X] s] -~ g, d] ]) #{ e~ #{ t] ]) u~ ;~ ]) l' e= i, ^) ^) ^) G* e= G* >~ ^) 6> +) >~ +) }} k! l; l; l; )- l; l+ @) l; ;$ ;$ l; l+ n+ |' l; l+ l; n+ l+ n+ ;$ |! t+ t+ y% C) >$ |! |! u+ u+ i= s+ i= x+ x+ u+ ]$ h3 C+ B+ B+ A+ A+ A+ B+ C+ D+ K* B+ B% A+ A+ D+ E+ D+ F+ D+ O+ O> G+ D+ i3 N+ Q+ /$ G% S+ T+ T+ Y+ f) T+ Y+ _$ Y+ V& @@ +@ Y+ _$ p; +@ +@ @@ +@ +@ @@ #@ %@ %@ &@ *@ !] E- D- *@ &) $@ Q% *@ &@ &@ 1$ I% '@ 7$ Q% j3 ]@ ~@ )@ 6$ (@ T% 9$ R* !. G e ; N$ + @ e^ J$ V! *) ], R@ R@ R@ R@ 9| ], R@ k3 R@ <{ $ J$ + R@ g~ R@ J$ R@ $ . ]& =[ G= R@ R@ R@ R@ R@ R@ R@ ]& R@ R@ R@ R@ R@ J$ J$ + 2^ 2^ . z@ d# ). c# (. '& w$ x@ x@ .. ). =. 5# &. 5# &. A@ +. .= =. +. )= G@ #. H@ 5# G@ X P ` L K@ P@ L@ P@ H$ U M H$ G Q@ +% ", +". # S$ & - Z, & > R- = . . & = ; ] ; . > Q$ O$ + . . & * N$ ; | ~ ; - | ^ %= N$ ; # V@ ~ 2 U$ ^ { > | ## [ ~ 2 %= %= X@ ( X@ D, 1 W@ 1 Y@ [ ) { 1 } b ## } { Y@ 6 3* [{ ## J= $# 6 ## l3 I1 #( d< m3 6 &# / : _ / 9 ~# d } e 6 7 8 $# V$ e j n c n3 #( #( m( o3 n h |& r r L= p a [& p3 {[ #( ][ q3 `$ w l b' 2, p _# z2 r3 #( #( >3 (# Y$ D t m| S[ #( m( s3 A n! ~& z E$ M z A t3 C2 #( #( #( #( h1 u3 T L J P T 7# J T v3 #( #( w3 x3 W G$ ` D$ H@ #. #. E@ F^ .. =. ,. y3 z3 #( #( A3 B3 C@ =. z@ A@ >. 9/ =. e- ]. v{ b: b: 5; b: 9# 7, C3 D3 #( #( E3 J: X) %% %% '= X) &% =2 ^^ (| 3~ w{ ~] W^ F3 w{ w{ G3 H3 #( #( f2 I3 g[ J3 K3 #( #( L3 6^ 6) '! 6^ 8^ 8^ v/ =/ 8^ M3 y{ j{ y{ %^ j{ p[ #( #( X< 93 A{ c/ N3 A1 o[ B{ Z- K! r) h. V{ V{ w/ V{ O3 d/ V{ C{ V{ V{ C{ t[ V{ e/ `~ t^ Q( f( /_ Z< o~ P3 5< m{ Q3 ,/ ,/ m{ ,/ m{ ,/ m{ M} A_ 9~ =] /] R3 3| S3 y/ y/ T3 u^ u^ z/ =] 6< v[ U3 v[ v[ 6< W/ +[ )2 ^' d; F{ ^' F{ 9) 9) d; 9) )2 F{ Z{ :^ Z{ 3{ ;] K^ K^ `^ 3{ K^ `^ ;] y[ H{ j/ `^ G{ @{ i( [_ [_ F1 ~) *+ y^ y^ ~) @{ K{ y^ @{ Z: y^ q{ S( Y/ ~2 [^ A) %, ] _~ %, k' |_ ] k' _~ _~ %, k' k' Y] ] e~ e~ >] V3 e~ d] < .) d] i! .) t] t] >~ t] k^ l^ R! ^) ^) ^) l^ R! e= ^) >~ /) 6> ^) e= ^) >~ ^) @) l+ /) l+ l; @) l; A[ ;$ l; l; @) ;$ @) ;$ ;$ ;$ ;$ y% ;$ |! y% |! |! N> /{ t+ t+ s+ x+ x% ^/ t+ u+ u+ w+ A% B+ B% B- B+ A+ B% B% C+ E+ C+ C+ A+ B+ I+ D+ C+ D+ E+ D+ F+ L+ P> E+ D+ W3 X3 T+ R+ S+ T+ V+ .^ F% Q+ Y+ V+ Z+ _$ V+ m= X+ p; Z+ Z+ Y3 p; @@ +@ #@ m, _$ %@ #@ %@ &@ <~ @^ p' =@ ~; #@ 4$ '; -@ !; 7$ 2$ =@ '@ >@ '@ s= ]@ T% '@ |~ u= ~@ x= 5# ^# 7 2 U@ + . # J$ * J$ % R@ R@ R@ J$ J$ V! ], + . + ]& L$ + R@ <{ ]& J$ R@ . ]& + > ]& R@ R@ 9| J$ ]& R@ R@ + ]& R@ ]^ J$ R@ R@ R@ > F@ (. v@ q@ {* b# %% (. x@ )& ). ). -. &. 5# 5# !. &. 5# B$ E@ V . P G@ P Y T L@ s! Y 2& T 1# Y K@ O@ S @% J @% x ", +"Z, . # + - & = . $ + & . * + > ] & $ # . H= + > . o! - . Q$ + ; > A; & $= %= N$ H= > 2) H= N$ `@ U@ ~ . ^ ~ W@ ~ { | N$ X@ N$ Z! N$ Z3 2 V~ 7- 2 { ~ ) } [ } W@ 2 W@ 2 < 4 $# &# < [{ 9 `3 b} #( $( 4 6 $# b 1 J= &# i i 6- e h j k e :& e 8 ~# n .4 H1 #( #( +4 @4 p n 0 ~# Y$ s> ~# `$ Q{ #4 {[ #( ][ $4 Y$ p m m ^# Z$ s> %4 &4 #( #( *4 w ^# ^# W) +( l( #( m( %( t N P@ O@ I M 3# A =4 #( #( -4 ;4 #( #( >4 Y[ L@ L@ T J G$ L@ U ,4 #( #( 7_ '4 W C$ T 4# E@ X 7# E@ +. .= 5# .. )4 !4 #( #( ~4 ,. 6# ;' +. z$ C@ ;. 6# b: %. ,. 5# 9# ;' 9# b: !. P< x( #( #( {4 J: '& ). u! '= '= /. &% ^^ 3~ w{ f[ 1~ W^ 3~ W^ ]4 ^4 &: #( 7_ /4 (4 _4 :4 <4 #( #( [4 }4 '! I! 8^ 6^ ]} x1 l~ =/ 8^ h{ =/ y{ y{ y{ T: #( #( X< 93 H^ U/ // |4 14 4~ K! K! K! r) V{ V{ w/ d/ F~ F~ V{ V{ V{ V{ d/ W{ d/ e/ >/ t^ t^ Z< 8] o~ &^ i2 P3 I^ 0! 24 ') ,/ ,/ L} ]: m{ m{ 9] 3| ,/ A_ A_ Q] =^ Q] Q] x/ =^ =^ Q] u^ __ u^ =^ 34 34 u^ =^ +[ w^ a^ 44 54 a^ Z{ Z{ 9) 9) J^ F{ !2 J^ F{ Z{ 64 ]~ 3{ s~ [] `^ ^~ ;] ;] 3{ S] x^ [] H{ ~) @{ *+ ~) ~) ~) @; ~) 74 y^ ~) c~ V] t: :! i^ 4{ S( b] u: c~ Z: r{ _~ Y# _~ _~ ] ] :~ ] _~ $[ k' .! s] _~ :~ 84 $[ >] Y] e~ X] i; ,] e~ ]) V3 ]) R! R! .) !^ ^) >~ >~ ^) e= u~ e= >~ >~ e= k! %$ e= e= e= )- .] s{ 6> k! @) v~ s{ @) ;$ l; l+ ;$ l+ U; g+ =, y% ;$ ;$ ;$ ;$ l+ |! y% y% r+ V; t+ s+ s+ u+ u+ m; u+ y% u+ E) A+ B- B+ C+ A+ B% B% A+ B+ B+ C+ C+ C+ A+ C+ C+ C+ D+ >; D% E+ L+ L+ F+ F+ 94 t{ G% /$ f) R+ Q+ V+ Y+ V+ V+ T+ T+ Y+ Z+ Z+ #@ +@ _$ Z+ %@ `; +@ +@ %@ +@ &@ %@ &@ &@ %@ e] E- *@ &@ #@ *@ W, &@ S> '@ >@ *@ (@ 7$ '@ '@ '@ 5$ r= 8$ I- V% 04 E@ N 7 2 > $ > > + S- R@ R@ @ g~ # S- + R@ = + + = + . + . + + # $ - - L$ + # * % > # + S- + J$ Z, + R@ R@ V@ !, R@ J$ + R@ R@ # R x$ <. q@ :. x@ (. (. '& '& *. ;! ;! &. -. ). v{ $% @. @. E@ E@ @. Z $> P F$ T K@ ` ` J T E$ T H P@ S P@ G I$ H$ ", +"]& Q$ & ]& J$ ]& + > * N$ k) + # # ; | & . T@ . > $= > $ H= ; + H= | W@ - ; > - ^& | & & N$ | > N$ |* ; N$ N$ U$ ~ - { X@ X@ 2 | ; N$ | > 1 | &= [ ) < D, { X@ W@ W@ Y@ Y@ { d _ 2* *# [ } a4 b4 #( #( c4 } b j a L= a {# {# 7 e e ~# $# 0 j g 8 8 d4 X} #( #( e4 f4 a' _# r 8 n s> E, i 1, )> #4 {[ #( ][ <2 Y$ w ^# /# #] ^# /# g4 &4 #( #( h4 N m D 2; +( l( #( m( i4 j4 A I I I 8* O@ k4 l4 #( #( m4 n4 5[ #( 7_ I< D$ T H L@ L@ C$ L o4 g} #( #( p4 q4 L@ L@ r4 #. H@ L@ #. 7# X #. ,. s4 #( #( #( t4 =. )= :3 $% &. ;' 6# ;. b: 5; b: v{ ). 6# !. !. 0# u4 v4 #( #( w4 a: '& '& X) x4 D~ w{ ~] ~] ^^ y4 q/ Q/ +: W^ W^ z4 A4 #( #( B4 C4 D4 ]4 E4 F4 1< #( #( G4 H4 I4 M3 6^ J4 =/ s^ 8^ M3 K4 L4 j{ 1{ v/ T: #( #( X< 93 S: -/ A1 N3 14 N] }| r) w/ r) F~ V{ V{ r) C{ V{ 0^ r) M4 >/ >/ t[ d/ `~ e/ t^ N4 &^ O4 o~ Z< `~ Q( I^ L} P4 h/ ]: c3 Q4 R4 S4 m{ ,/ 9] 9~ 9] m{ .[ =] a] r~ Q] =^ .[ =^ =^ u^ 9~ =^ T4 u^ u^ u^ R( o] /1 U4 44 V4 F{ 9) F{ F{ F{ F{ Z{ Z{ J^ F{ Z{ 7< `^ ]~ `^ 3{ s~ ]~ ]~ ^~ S] j/ j/ `^ ~) @{ ~) F] W4 y^ C' @{ F1 @{ @{ @{ `{ q{ y^ Y: y^ Z: r{ t: :/ '^ b] ] ] _~ :~ _~ _~ k' _~ _~ _~ _~ ] ] ] ] e~ X4 $[ Y] N^ e~ i! t] {/ N^ l' .) ]) ,] .) ]) l^ G* >~ L{ ^) i, ^) >~ G* ^) 6> +) ^) e= ^) k! @! |' 5{ s{ l; l; 2' ;$ l; ;$ ;$ l; ;$ ;$ l+ l+ >$ ;$ l+ l; g+ ;$ l+ t+ s+ y% u+ N> y% u+ u+ u+ u+ o+ u+ w+ x+ k, B+ A+ B% A+ C+ B% B+ B+ B+ B+ C+ C+ C+ B+ B+ C+ E+ C+ l= k= /$ X; F+ D+ D+ X3 /$ Q+ Q+ T+ R+ V+ Y+ Z+ Z+ _$ Z+ Z+ _$ _$ W+ @@ _$ Z+ '; @@ @@ #@ #@ &@ *@ &@ %@ *@ %@ *@ !] Q% >@ *@ >@ *@ &@ &@ -@ R% >@ =@ d> R% '@ d> d> T% )@ I- N% _; .= ^# j { }* & & $ = !, + L$ R@ # V@ # & > Q$ ; V@ * & ] U@ . % # & ] ' . > - T@ ]& + > # . + # # !, ]& > # + R@ R@ M$ + 7* = x$ (. s@ u@ B= {. w$ ). {. ). (* =. -. r4 A@ A@ .= >. 5# &. _* V R 4# V H@ J Y C$ L@ L@ Y P@ +% P@ N Q@ M@ Q@ A ", +"* H= & Z, . . R@ $ # ' # + # > ] - ; ]& # V@ ; ; . & & > | ) ~ %= R$ ] ^& U@ ; U$ ; H= ; . N$ - ] & ~ | ~ ; ~ 1 | %= U$ | H= | U$ | ( 4 { ] { { Y@ 2 ] $# d Y@ V$ $# 9 ~ %# Y> [ == 6 Y4 #( #( Z4 `4 : b } a 7 c {# ~# j 6 b ~# ># a V$ :& 5 .5 #( #( {[ J1 7 e ~# e i n^ 1; % ~# |& Y$ #4 {[ #( ][ 61 h h {& D D N N +5 r3 #( #( *4 G z G h 6_ S[ #( m( %| m) K G E K S @5 #5 #( #( $5 %5 e1 &5 #( #( *5 =5 L@ T T I@ L@ 4# -5 ;5 #( #( ._ >5 C$ X @. I@ s! 7# .= . E@ +. ,5 '5 #( #( )5 !5 $% =. 5# z@ >. 7# z@ @. ~( 5; =. +. ;. +. ~5 ;} >. {5 &2 #( #( ]5 b# X) X) /. 1( 0/ D~ ^5 ~] D~ w{ =2 W^ w{ +: F3 /5 w( #( (5 _5 H; _| 2~ x{ :5 <5 w( #( g: [5 t/ 6^ '! 8^ 6^ 6^ 8^ 8^ K4 =/ v/ H^ H^ p[ #( #( ^_ 93 }5 o[ A1 /} }| |5 4~ 15 V: r) F~ K! V{ V{ F~ F~ C{ F~ F~ V{ F~ C{ G~ f( ~! d/ 8] P3 a3 f( z_ a3 h( 25 L} O] o~ m{ L} M} A_ S4 3| ,/ 35 A_ 3| 3| 3| { { Q] Q] Q] u^ u^ u^ =^ =^ 45 T4 6< u^ 6< _/ o] 2{ <] :_ a^ 9) <] Z{ ^' F{ J^ +{ Z{ J^ ;] Z{ J^ ;] ]~ 3{ Y{ ;] 3{ 55 x^ ^~ O~ j/ }_ C' C' C' <^ 65 G{ @{ @{ F1 F] ~) U] @{ @{ h^ b] t: k/ T( y^ 75 b] C/ %, _~ k' _~ `' _~ _~ :~ %, _~ :~ ] ] _~ ] #{ i! _~ <1 >- e~ d] t] 3+ i! .) .) ,] u~ .) ]) u~ e= u~ !^ ^) u~ e= ^) ^) e= e= k! e= e= e= j+ G* 5{ @) v~ u% @) ;$ w% l; l; k! l; l; l; l; l+ G/ =, l+ l+ ;$ n+ l+ =, 1' t+ i= i= '$ t+ s+ t+ j= n/ i= x+ u+ 85 B+ A% E+ k, C+ B+ C+ A+ A+ E+ C+ C+ A+ B+ A+ E+ D+ D+ D% E+ Q+ O+ D+ F+ ^- S~ /$ L+ /$ Q+ V+ V+ Y+ Z+ V+ Y+ Z+ L| _{ _$ W+ +@ _$ :- _$ +@ %@ #@ +@ @@ %@ #@ *@ &@ *@ D- !] $/ &@ 95 *@ *@ =@ I% -@ I% -@ =@ '@ )@ 9$ 0$ (@ >@ -@ N% s= +& E@ p g | ; `@ S$ !, + # + $ ]& !, V@ ] |* S$ > - & 5- . & > | ) ; ^ { - ] O$ Q$ ] & & ^ N$ R$ $= . * ' S$ & 5- & Q$ Q$ ' - # ]& . + R@ S- c{ w$ k> q@ :. {* (. -. d# x@ (* x@ -. 5# .= z@ =. 4- 5# .= z$ B$ H Z S R D$ #. S T H@ L@ H C$ Z J I J A Q@ M@ @% ", +"= > - - Q$ ]& ]& ]& + L$ . * $ . + $ V@ $ $ $= V@ o! . U@ . > P$ ; { ] - > - S$ ] - N$ > > ; & S$ X@ ^ | 2 | - ~ 2 [ 2 ;# 05 X@ 2 N$ | ~ [ ~ 1 { [ ^ ~ { ( / } W@ } d Y@ d a $# 6 7 a5 $( #( I1 b5 d ~# $# 9 a a $# e 8 6 k 0 6 0 c5 ~# d5 I1 #( #( e5 r 0 L= a g ~# c m D p p m f5 {[ #( ][ g5 r K/ p h ^# ^# w h5 }2 #( #( >3 `$ z z ^# +( l( #( m( %( M I A F= i5 P@ j5 m( #( m( k5 Q@ S l5 m5 #( #( g1 n5 L@ Y T E$ P' W o5 W_ #( #( p5 q5 H r5 Y P a* d- C$ )= s5 t5 #( #( #( u5 )= e- ,. T 4- v5 w5 =. ,. x5 9# ,. 9/ 9# =. b: *. 9# y5 7_ #( #( z5 A5 x@ ). 1~ /. a: B5 W^ &% ^^ =2 =2 3~ H! 4] C5 D5 #( #( E5 F5 p^ 7! 5^ G5 s/ H5 I5 #( #( J5 K5 6^ 8^ 8^ 8^ 6^ L5 8^ M5 s^ j{ y{ y{ T: #( #( N5 93 H^ o[ ~1 o[ ^] O5 /} V: K! 0^ r) P5 r) r) F~ C{ F~ t[ F~ V{ d/ V{ G~ t[ t^ Y^ e/ `~ b3 Z< b3 Q5 t^ u[ R5 ]: S5 T5 L} L} ') ,/ ]: A_ c3 A_ .[ 9~ =] U5 =] { 9~ Q] =] 6< Q] __ u^ 6< u^ u^ 6< 6< +[ H| V5 b^ a^ a^ +[ 9) F{ F{ F{ Z{ ;] Z{ Z{ ;] J^ J^ 7< ;] 3{ ;] }_ W5 }_ X5 3{ W5 [_ j/ H{ s~ y^ ~) W4 F] Y5 U] @{ [} b) @{ @{ @{ @{ @{ Z: @{ t: '^ T( T( b] r{ A) k' _~ ] ] :~ _~ _~ _~ :~ ] k' _~ X] s] A^ >] :~ ,] e~ Z5 ,] l' d] #{ ]) ]) u~ u~ ]) ]) R! t] l^ >~ ^) ^) ^) e= ^) e= k; e= e= ^) )- e= &, &, ;$ ;$ l; ;$ |' @) @) /) s{ l; l+ ;$ l; ;$ l+ ;$ |^ l+ ;$ l; h+ s+ t+ y% n' D) '$ s+ y% s+ j= '$ '$ |! E) R, B- B+ B% B% A+ A+ B% D+ A+ D+ C+ C+ E+ C+ E+ C+ D+ ^- E+ O> L+ R+ G+ G+ G+ `5 Y+ /$ Q+ Y+ G% F% F% o2 Z+ V+ Y+ Z+ @@ _$ Z+ p; _$ p; [$ @@ +@ #@ +@ '; #@ %@ #@ *@ ;@ c> $/ *@ D- 7$ >@ ~; '@ >@ e> >@ -@ * >@ )@ w= -@ * Q% T% /@ o@ T `$ 8 ~ | ] & - > - }* . > T@ . > %= | > ; - & H= ! ^ X@ / R$ X@ X@ , ~ : { W@ ~ 2 *# ^ X@ { R$ 2 ; ~ *# ; ) & ; & . & . + > = V@ c t@ x$ w$ k> :. {* ). ,& l> )& &. &. =. V> A@ ). +. B$ 5# ,. @. V E@ ` 2# K@ Y }; Y T P H M P L@ H S #= A 8* I ", +". + & X! = . * + + # > !, & ]& Q$ ; ^& Q$ > # Q$ . S$ > & Q$ + | ) ; O$ ~ ) ~ /& X@ Z! Z! N$ # N$ N$ %= P$ N$ ~ ] ] N$ W@ ~ > 5! U@ ] 7- I= <& $# { ) # Y@ W@ ( 6 /& { | 9 &# 6 d 7 7 7 6 d 6 .6 #( #( +6 @6 5 ,# b 7 *= $# 0 0 #6 $6 %6 7 0 g &6 a| #( #( *6 =6 ~# c h L= 7 _# j s> s> `$ p Z$ M[ -6 #( ][ ;6 D z % o 4* % D %4 }2 #( #( >6 G w b' M 6_ l( #( m( n( c- x A N O ,6 '6 #( #( )6 o} H$ A |# !6 #( #( M_ ~6 T E$ W L >) L@ {6 ]6 #( #( #( ^6 /6 .= W C$ 4) V E@ (6 _6 W_ #( #( :6 <6 z@ A@ $% $% z@ [6 }6 |6 !( ]. %. )& %. %. %. 9# v{ 16 (( #( #( D3 26 %% '= x@ /. ^^ %% J: D~ 4] ^^ =2 ~] w{ Q/ f[ 36 w( #( 46 56 W^ 2~ b* 66 13 D4 '! 76 +_ #( +_ 86 , '! 6^ I! '! I! 8^ =/ M3 j{ y{ H^ T: #( #( X< 93 b/ o[ ~1 ~1 |4 c/ A1 r) F~ r) C1 |5 F~ F~ C{ V{ C{ C{ C{ C{ G~ V{ C{ C{ &^ a3 {1 &^ Z< `~ i2 e/ ): o~ 96 S4 E1 2| ') 0! ,/ A_ ,/ ,/ ,/ A_ 9~ =] =] A_ x/ 9~ =^ =^ =^ =] 9~ u^ =^ __ u^ =^ u^ v[ v[ R( W/ X/ 9) 0] 06 ^' F{ ^' d; J^ 9) F{ Z{ Z{ Z{ J^ 7< 3{ 3{ ]~ C_ 3{ i( 3{ }_ C_ i( j/ K^ S] ~) @{ [_ 74 74 B/ @{ C' @; @{ ~) t: ~) y^ Z: E_ y^ Z: Y/ y^ r{ [^ D' _~ _~ 2_ P} $[ $[ :~ :~ _~ ] ] _~ >] >] e~ e~ m2 -~ N^ e~ d] ]) #{ +! ]) ]) #{ R! ]) t] .) u~ >~ >~ ^) >~ ^) ^) ^) R! e= ,- e= ^) 6> e= >~ @! l; l; ;$ l; l; g+ l+ ;$ ;$ ;$ @) ;$ l+ l+ n+ l+ l+ ;$ -$ l+ n+ =, s+ y% 2' x% y% t+ s+ u+ u+ t+ i= w+ w+ k, B- B% A+ A+ B% E+ A+ E+ D+ A+ A+ D+ E+ G+ E+ B+ D+ E+ D+ D+ Q+ Q+ O> D+ F+ Q^ T+ R+ f) V+ V+ G% G% G% G% Z+ V+ _$ p; p; @@ @@ Z+ _$ _{ +@ @@ #@ +@ &@ +@ #@ &@ m, '; &@ c> e] $@ =@ I% Y& >@ *@ -@ `& 7$ Q% >@ >@ 2$ )@ )@ q= G- (@ -& }; _# F! 5 W@ X@ P$ ) U$ | U@ - > & ; N$ Z! ] ; 2 { ^ ~ /& { | | 2 7- ) } @# ## ) } { 2 4 == < | R$ } /& : ) 2 | ; ^ (& ; ] S$ Q$ & S$ . { a6 j- (. q@ b6 q@ '. (. x@ ). !. A@ b# b# C@ *. z@ B$ E@ G@ )& G@ L@ G! E@ P L@ J E$ A J Y M@ M O N 3# J J A M@ ", +"= * . R$ > + # . & U@ * ^ + > & & T@ }* . S$ ; . . S$ Q$ & T@ ; ; ; ^& V@ ~ 2 4 ^ | | & }* - ; ] ; U@ ; ~ ^ W@ | { [ 2 ] - & & ' /& ## N' d { 1 %# W@ ( 6 a < &# 6 ## c6 } < X$ &# $# &# d6 e6 #( #( f6 g6 h6 i6 a j6 k6 l6 m6 n6 d< o6 7 6 p6 q6 #( #( f6 r6 {# 8 e a L= L= n g l `$ m m L= M[ {[ #( ][ s6 `$ D m p m 4* % t6 }2 #( #( u6 `$ p `$ C v6 S[ #( m( %| M 3# O@ M M w6 #( #( x6 y6 n! 3# b- H z6 A6 #( #( B6 C6 T T T Y T L D6 ;4 #( #( #( E6 F6 G6 H6 I6 J6 K6 L6 7_ #( #( %_ M6 l1 ,. y@ $% 5# N6 O6 #( 7_ q( P6 Q6 R6 S6 )& T6 U6 V6 _< #( #( #( W6 X6 7, Y6 '. J: q/ J: 1~ D~ << /. ~] w{ &% 4] Z6 `6 #( #( 7 w{ W^ +: A} D4 .7 -{ u/ +7 @7 #( #( #7 $7 6) 6^ S{ =/ 8^ 8^ %7 &7 *7 =7 -7 ;7 #( #( >7 ,7 =7 =7 '7 )7 !7 X~ A1 A1 w/ w/ F~ C1 F~ ~7 C{ V{ K! r) C{ C{ `~ C{ d/ t[ >/ W{ Z< &^ f( a3 z_ 8] h( o~ Z< L} A_ S5 0! m{ m{ ,/ m{ m{ ,/ A_ =] .[ Q] 9] ]! =] 9~ Q] =^ =^ 6< u^ =^ __ u^ =^ u^ T4 u^ v[ :] !2 9) +[ I| Z{ Z{ Z{ Z{ Z{ J^ Z{ Z{ J^ 7< C_ J^ e3 C_ 3{ `^ J^ 3{ O! 3{ C_ s~ j/ [] D_ C' ~) D_ [} 74 @{ C' C' J| ~) ~) @{ E_ {7 u: c~ y^ `' @[ q{ S( r{ b] j^ _~ ] j^ P} _~ k' k' ] _~ _~ :~ ] s] s] 84 Z/ _~ V3 d] d] N^ .) {/ ]) ]) l' R! R! t] ]) i, ^) >~ >~ >~ u~ e= e= e= G* u] f+ l^ ,- ^) ^) v~ |' l; k! l; ;$ l; ;$ ;$ ;$ ;$ ;$ n+ l+ ;$ n+ l+ C) l; n+ l+ l+ t+ t+ g= r+ z% t+ t+ t+ x+ x+ t+ u+ w+ i= i= C+ B+ A+ K* A+ A+ A+ A+ A+ C+ C+ E+ E+ D+ E+ E+ G+ E+ n; ]7 ^7 L+ C% W2 W2 |} /7 F% G% Y+ f) V+ f) L| F% L| Z+ Z+ Z+ Z+ W+ W+ Z+ _$ _{ @@ @@ '; &@ #@ +@ +@ *@ &@ &@ >@ > w] I% ~; 4$ *@ >@ S> Q% H- *@ '@ >@ -@ '@ )@ Q% T% (7 T% <. S w o Y@ , ) %= *# *# [ ~ ~ | | ~ { 2 | 2 [ ## ~ ## ( { $# ~ $# [ &# a } a 7 g $# ( a 8 / a } b b 6 } Y@ %# $# } ( ; & Q$ # & ' > { -. (. x$ u$ <. x$ (. {. ^. {. ). (* -. ,& &. !. !. &. -. A@ [; E@ G@ G@ D$ E@ X P H$ H L@ T J 1& A ` A z I K@ I ", +"Q$ $ = . $ + ; . # & ; + - & Q$ # Q$ ] > ]& . # $ > - (& ; & ~ & S$ P$ ; | ] ^ - > | > { (& P$ ; | ; N$ ~ ] U) N$ , V~ - > N$ ) ] 2 ~ d } [ 7 [ 6- | [ a [ V) } } i [ 7 } k < : _7 :7 #( #( #( #( <7 [7 }7 |7 n6 $( #( #( ][ -3 c 6 =6 17 #( #( a| 27 37 37 37 37 27 37 27 37 27 47 l< h Y$ 57 {[ #( ][ 67 n^ _# m @= `$ % Y$ 77 r3 #( #( h4 2; C D 2; +( 87 #( m( %( O@ O@ A O@ 97 g} #( #( 07 %> a7 J P@ H H b7 g} #( #( c7 H H 4# W P T G$ d7 e7 #( #( #( #( H< f7 g7 h7 W_ #( #( #( M_ i7 #. +. .. +. A@ $. ;. O6 #( #( #( #( +_ o_ j7 k7 l7 m7 #( #( #( #( n7 o7 1~ a: >. 9# X) X) %% a: D~ /. /. =% ^^ D~ p7 q7 #( #( r7 s7 +: W^ W^ W^ _| =_ b* A] =_ t7 u7 #( w( v7 I! 6^ [| t/ I! w7 x7 #( #( #( #( #( #( #( #( #( #( #( #( +_ y7 o[ O5 z7 A7 K! B7 F~ 15 P5 V{ t[ d/ d/ d/ d/ V{ V{ C{ d/ &^ W{ G~ G~ [ &^ t^ 8] b3 ]1 /_ G| /_ E1 C7 ,/ L} ,/ m{ 0! A_ m{ y/ /] .[ S3 .[ =] =^ Q] Q] z/ Q] =] Q] =^ u^ u^ u^ Q] v[ u^ :_ w[ )2 +{ !2 D7 J^ Z{ Z{ Z{ Z{ Z{ 9) ]~ 7< F{ Z{ e3 `^ H{ ^~ `^ }_ H{ `^ `^ [} [] j/ K^ i( @{ o{ ~) F1 @{ @{ F1 [} C' @{ y^ y^ ~) (~ :! i^ L^ '^ '^ T( c~ [^ j^ %, ] A) A) _~ ] _~ _~ ] k' _~ ] s] _~ w- e~ ] t] d] {/ g, .) i! +! ]) ]) K> i, t] ]) t] >~ G* G* ^) l^ >~ >~ >~ >~ +) u] %$ ^) k; 6> /) /) l; k! l; g+ $ n+ |' ;$ n+ l+ >$ t+ y% s+ x% s+ s+ o+ N> t+ t+ t+ w+ w+ w+ k, B% B% R, K* A+ K* B+ B+ ]$ C+ E+ D+ E+ E+ E+ E+ D+ ;; D+ F+ k= /$ F+ ^7 `5 C% /$ G% V+ V+ Z+ Z+ p; L| p; _$ Z+ _$ Y+ p; @@ %@ _$ [$ :- p; %@ &@ #@ +@ #@ %@ %@ &@ >@ &@ @^ C! U, >@ >@ &@ I% +^ R% q= > '@ I% N* 1$ Q% I% ~@ ,@ ). J % ~# a ~# ( Y@ 1 1 &# &# Y@ :& : / < $# 8 7 b 6 _ ( &# 7 Q{ j ~# e c K= Q{ X$ !# a e L= 0 V$ *= '# 0 a' ,# b b g *= 7 } } $# *# } ] | ~ ] ~ 4& {* E7 k> x@ (. ~* :. v@ v@ z@ B@ A@ !. A@ ). +. @. *. 5# G@ (* L@ D$ X C$ X L@ @. 2# P Z P@ S S E$ I x N@ Q@ N ", +"# . = = k) Q$ . $ R@ + V@ !, > & . + # & U@ & o! V@ * . + . & > | & ' - . U@ ) - ] & > (& H= U@ ; U$ U$ U$ ' J/ ^ - / X@ ~ 2 { Y@ 2 2 N$ N$ ## : W@ [ ] $# [ 1 4 [ a ( < -# /& } } 8 a ( ># F7 G7 d< #( #( #( #( #( #( #( #( #( #( H[ H7 c O' I7 17 #( #( #( #( #( #( #( #( #( #( #( #( #( J7 _[ c ~# K7 {[ #( ][ L7 Y$ ^# w /# u K/ % l< }2 #( #( >6 /# I ^# t +( S[ #( m( i4 N P@ |# M7 N7 #( #( O7 P7 S P@ J 1& H H Q7 R7 #( #( S7 T7 P@ H |# T E$ L 3; U7 ~3 #( #( #( #( #( #( #( #( #( #( 4: V7 W7 $% .. @. 5# 7# e- +. X7 Y7 +_ #( #( #( #( #( #( #( #( #( #( #( :6 Z7 J: %% '& b# ;} u! |3 0/ J: /. a: ~. =2 ~] 3~ `7 i[ #( w( 8 +: +: +: 3~ W^ .8 5^ =_ {] +8 @8 #8 #( #( ~} $8 6^ 8^ =/ 6^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 o[ }5 b/ N3 V: |5 -8 M4 P5 C{ C{ d/ d/ t[ >/ C{ C{ F~ C{ {1 ;8 Z< >8 b3 ): Q5 ,8 '8 a3 )8 )8 Q4 L} :} I^ L} 0! ,/ m{ ,/ m{ 3| A_ A_ 3| A_ d3 Q] 6< x/ 6< u^ 45 u^ u^ =^ u^ u^ u^ 6< =^ <_ H| 2{ b^ a^ !8 b^ F{ Z{ F{ F{ Z{ F{ Z{ Z{ F{ 9) 9) 3{ ;] [] K^ `^ `^ `^ }_ s~ 3{ ^~ }_ H{ ~) ~) ~) ,^ U] C' G{ ~8 F1 ~) @{ @{ ~) t: u: '^ t: u: b] q{ u: [^ A) _~ _~ _~ _~ _~ ] k' _~ ] ] ] _~ ] _~ -~ 84 ] ]{ e~ e~ e~ .) #{ e~ ,] .) ]) .) u~ .) .) u~ e= >~ l^ >~ L{ >~ ^) >~ ^) u] e= ^) k; k! |' Q, l; /) ;$ ;$ l; n+ ;$ ;$ l; Z] l+ l+ l; ;$ l+ ;$ ;$ l; l+ l; l+ y% y% t+ i= i= t+ s+ i= u+ '$ x+ x+ '$ x+ x+ A+ A+ B% F+ C+ B+ C+ C+ C+ A+ C+ A+ E+ E+ C+ C+ D+ D+ >; F+ F+ /$ S~ W2 G+ {8 Q+ G% F% G% T+ V+ V+ V+ V+ Y+ Y+ Z+ L| _$ +@ @@ Z+ _$ p; #@ &@ &@ #@ #@ <- %@ &@ %@ %@ >@ e] e] %@ &@ %@ Q% r; !; ,~ ]@ 4$ >@ 7$ (@ )@ 95 R% ]@ n, &. }; w /# ~# ~# [& o e *= ~# e 8 g 8 2* e e e b X$ 9- ~# h c h c _# 4* r Z$ t w % m ^# Z$ t ^# `$ o p -) p Y$ 9- o h e V$ c a b i 6 | ## N$ # { $% -& q@ N- u@ B= s@ w@ w$ (. ^. x@ !. 0# &. .= z@ z@ z@ E@ z$ )= 2# .= z$ G@ 2# }; G@ T 4# L }; O J M Q@ z z B #= ", +"+ ; T@ X! # . # = . $ ]& # . > . # $ # # ; > # = ]& . Q$ > ; > ; ^& ] 2 H= # ) X@ ; U$ & & & ; R$ | | ; | ) 2 N$ ^ W@ | | 4 X@ 2 /& [ 6 X@ ( | => / Y@ [ W@ 6- 9 ,# 6 d b d 7 k d 6 ( 8 ]8 ^8 ][ #( #( #( #( #( $( /8 (8 _8 c s> `$ =6 17 #( #( #( #( #( #( #( #( #( #( #( #( #( )[ /2 C; 6 ~[ c} #( ][ q3 h p p 1; b' m G :8 <8 #( #( u6 Y$ w -= 2; [8 }8 #( m( n( A o^ G |8 #( #( '3 18 ~& P@ I K 3& E$ H |# 28 38 #( #( 48 o} L@ L@ r! D$ Q 58 P 68 78 88 #( #( #( #( #( #( 98 t5 08 @. X L) ,. .. e- C@ %. >. $. a8 b8 c8 q1 #( #( #( #( #( #( w( d8 e8 f8 9# 5; q/ %% J: d[ q/ J: 1~ f[ J: 0/ /. /. ^^ g8 h8 #( #( i8 j8 W^ w{ +: W^ W^ +: q^ =_ _4 g{ (4 k8 l[ #( #( >_ t/ 6^ =/ 8^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 A{ w/ !1 P5 |5 C1 -8 B] l8 ;/ V{ d/ w/ W: t[ d/ V{ t[ >8 t[ &^ Z< Z< Z< m8 n8 b3 D{ o8 '8 u[ 25 ]: S4 m{ 3| ,/ ,/ A_ ,/ M} S4 p8 ,/ ,/ ,/ 3| =^ Q] =] .[ d3 =^ 6< q8 34 u^ 6< v[ 34 v[ !8 <_ 9) F{ ^1 <} <] Z{ F{ 9) F{ F{ F{ J^ F{ J^ Z{ Z{ J^ 3{ ;] H{ `^ 3{ 3{ 3{ `^ j/ r8 K^ `^ G{ ~) C' j/ G{ y^ @; G{ F] ~) ~) @{ y^ @{ @{ c~ i^ F] D' T( P! r{ [^ 2_ k' ] ] _~ _~ ] _~ k' k' ] ] ] $[ >] A^ :~ _~ Y] i! i! e~ .) g, e~ .) ]) ]) V3 ]) .) ]) >~ >~ ^) e= e= e= e= ^) >~ G* 6> i, ^) k; k; G* @) C) k; ;$ l; @) @) ;$ ;$ ;$ l; l+ l+ ;$ ;$ h+ ;$ l; ;$ l+ l; ;$ y% t+ s+ u+ t+ t+ s+ u+ N> '$ s+ '$ s+ w+ C+ B+ C+ D+ D+ ]$ C+ A+ y+ C+ m; A+ E+ A+ E+ E+ C+ C+ D+ n2 D+ C% o2 `5 W2 W2 G% G% G% Y+ Y+ V+ V+ Z+ Y+ _$ G% _$ _$ #@ #@ +@ p; '; _$ p; @@ %@ #@ #@ %@ %@ %@ *@ %@ &@ =@ [- *@ *@ *@ Q% I% e> )@ M% =@ '@ *@ >@ >@ I% e> -@ |@ A@ P b- D ,> ^# ^# m h p c{ _# ]# m 9- r ^# `$ D y C C D w `$ z G P@ G I x I Q@ A P@ S P@ P@ Q@ S Q@ P@ N G {& w w D D D p m r h e e a [ : { ,= j@ ~* -& x$ E7 t@ 1. x$ x$ x@ '. x@ A@ B$ ). 5# )& E@ E@ *. G@ V E@ }; @. ,= H $> J P 1# H Y M@ 1# S M I A x ", +"= $ 0' + R@ Z, M$ $ $ $ = o! + + ]& . S$ Q$ .( # N$ > . > $ ; > > = - ^ X@ | ^ ~ > ^& | ] H= N$ ; > - & ] ! ] ^ $# W@ ] / { *# | | N$ ~ 6 D, ## } 6 2 J= W@ [ ( { 3* d } ,# 1 ( :& d => 7 6 6 Y> 6 s8 t8 u8 v8 w8 x8 y8 z8 I7 a e *= a h g A8 B8 C8 B8 D8 E8 D8 F8 E8 G8 G8 E8 B8 H8 I8 L= 6* c p J8 K8 L8 M8 Z$ ,> p p ^# ^# #= % N8 O8 P8 m| N % G G ^# Q8 R8 S8 T8 P@ P@ }# U8 V8 S8 W8 M E$ 3# M z M A z I L X8 Y8 Z8 `8 M I@ P I@ @. E^ V O= y@ G$ 9 .9 +9 @9 O_ #9 $9 %9 O= .. . X .. 4# z$ .= $. .. &. F^ Q' ;' 9[ &9 *9 =9 -9 ;9 >9 ,9 '9 )9 d[ Y6 !9 ~9 {9 a: %% B5 7, X) X) ^^ ^5 ^5 ^^ 5& ~] ~] ]9 ^9 ^9 /9 w{ w{ +: =2 W^ W^ w{ Q/ (9 (9 G5 _9 :9 <9 [9 }9 |9 s/ I! 6^ I! 6^ 19 29 39 }9 29 49 59 69 79 89 99 49 09 99 H} o[ 0^ X~ z7 a9 V: P5 W: l8 b9 c9 V{ d/ W: W: C{ C{ >/ d/ t[ Z< >/ `~ t[ |/ `~ G~ 7] d9 a3 h( 25 e9 S4 f9 g9 p8 ,/ A_ ,/ 35 h9 i9 j9 h9 M} i9 x/ =^ __ d3 x/ u^ =^ 6< __ =^ u^ u^ v[ v[ v[ v[ +[ w^ !2 A/ !2 F{ 9) Z{ 9) 1> F{ Z{ <] F{ Z{ J^ k9 7< `^ K^ [] 3{ i( `^ `^ [] }_ [} H{ ,^ G{ ~) [} F] G{ ~) @{ C' ~) y^ ~) @{ ~) y^ u: :/ B/ `' A) l9 A) [^ 2_ ] _~ k' ] k' ] _~ ] ] ] k' _~ ] :~ -~ w- _~ ] ]) d] e~ ,] N^ d] k^ t] ]) u~ t] ]) ]) ^) l^ !^ ^) ^) e= ^) >~ G* ^) u] +) ^) ,- ,- G* /) /) k; l+ ;$ C) l; ;$ ;$ @) l+ l; l+ |^ l; l+ l+ g+ l+ ;$ ;$ n+ y% y% u+ '$ '$ t+ i= s+ o+ u+ t+ w+ w+ w+ A% B+ R, G+ D+ A+ K* B! m9 E+ C+ C+ E+ I+ I+ D% E+ E+ D+ F+ D+ M+ /$ n9 G+ G+ ^7 N+ /$ Y+ Y+ Y+ V+ Z+ T+ f) p; _$ Y+ W+ '; %@ #@ p; p; %@ +@ +@ #@ &@ %@ &@ #@ &@ %@ <~ *@ +^ <- &@ *@ W, (@ e> (@ >@ >@ G- (@ (@ U, =@ >@ o9 b$ ^. C$ P@ P@ P@ P@ ` L@ S +% 1# H@ G A I S H$ M A S H E$ ` U J C$ E$ P C$ L@ }; 7# V F@ %. +. @. 5# .= .= B$ B$ z@ H 2# H@ 2# H ` a- T D Q@ x p r g e 6 6! L@ j@ ~* -& :. d# q@ ;& (. l> !. &. 0# 5# >. z@ ). x@ .. &. z@ )= E@ V L@ L@ T J H 4# Z P@ ` +% M O@ A S K@ b- I ", +"I/ Q$ . Z, p9 $ = = L$ > # & ^ Z, ]& + # + N$ ) N$ Q$ |* - . ; . Q$ Q$ Q$ U$ Z! ] & ] > }* ] | | X@ ; 2 & ^ 2 N$ ~ Y@ / ; < O$ ~ 1 N$ ( ## ] ~ ( *# d d | ] ) X@ } ## 1 T$ { : a ## ( =# 6 [ $# 9 5 / d } == 6 ,# e d &# e o } 7 Q{ V$ r j i e [& Y@ h Y$ o 8 8 L= n c ~# n s> L= X$ u `$ `$ E, Y$ D Y$ t t t h `$ G w {& ^# ^# A F= ^# G I w `$ G F= P@ /# m) %> I A S Q M O@ 1& 3; S |# a- I T Q@ d- Y 4# P@ 4# L@ P@ L@ V d- q9 @. 7# O= T @. @. r9 r9 r4 R .. +. ,. Q' =. =. =. ,= C@ =. )& B$ $. C@ . >. $. b: 9/ *. !. ,. A@ ;. b: &. 9# 82 Y6 q/ %% %% ;} X) X) a: /. %% 1~ 0/ f[ ^^ ^^ 5] W^ w{ W^ w{ W^ W^ =2 (| .8 F3 F3 s9 t9 u/ u9 I! v9 w9 8^ 8^ '! x9 I! 6^ 8^ =/ 8^ =/ 6^ v/ M3 j{ b/ o[ b/ H^ b/ y9 o[ b/ ~1 K! z9 A9 V: || r) || C1 F~ F~ V{ F~ F~ F~ d/ d/ >/ t[ `~ >/ G~ a3 >/ [ &^ [ ): a3 f( Q4 Q4 R4 )8 B9 3| S4 35 ]: 35 C9 h9 S3 S3 3| S3 x/ =] =^ 3| 9~ x/ x/ u^ =^ =^ v[ 6< v[ v[ 6< 6< D9 I| a^ 9) H| b^ Z{ Z{ ^' F{ ^' Z{ Z{ F{ J^ Z{ F{ J^ 3{ Y{ `^ 3{ `^ `^ `^ }_ C_ W4 j/ K^ <^ @{ ~) y^ ~8 E_ @{ y^ @; @{ @{ ~) P! @{ t: Z: h^ u: k' W] Y: b] b] A) _~ ] k' k' ] $[ ] ] ] :~ _~ _~ _~ _~ g, Y] s] d] e~ i! i! ]) ,] E/ .) .) #{ >~ ]) .) l' u~ G* e= e= e= ^) >~ l^ l^ +) M{ >~ +) /) i, H* P, @) k! l+ *, @) l; l+ k! ;$ l+ ;$ l+ l+ ;$ ;$ ;$ l; ;$ ;$ ;$ A- t+ y% t+ >$ '$ s+ t+ t+ w+ o+ u+ w+ )$ x+ B+ B% A+ C+ C+ C+ E+ D+ C+ C+ E+ E+ E+ D+ D% C+ D+ D+ G+ W2 G+ L+ G% D+ G+ D% (- T+ T+ V+ V+ T+ F% G% Y+ Z+ Y+ L| _$ _$ #@ #@ p; <~ <~ %@ +@ #@ %@ %@ %@ &@ %@ <~ %@ &@ C^ $/ > &@ 1$ R% * '@ >@ >@ l, C! -@ [- >@ Q% > +] m@ b# v@ F, x@ d# t@ ^. (. v@ {. :. s@ ). (. >& :. q@ v@ p, v@ 5& {. (. 9& 9& Q- :. <. v@ 8& o@ x$ q@ m@ E9 o@ {* W* -& q@ x$ 1. o@ :. !. v@ ~. F, A@ b# 6# 5# H S M A 2; 1; D P@ h$ f@ j- p@ u@ F9 :. ^. w$ 9& '& '& A@ V> A@ )& ). .= V =. .. 5# V ,. G$ |; S Y E@ P Y H$ Q@ O@ O 8* N@ A N J ", +"R@ . $ + 0' .( # . ]& > = # > > > # > $ - U@ & ' ^& Q$ > $= ; ; S$ S$ ^ ; . 2 ] T@ S$ ~ | H= ; & H= U@ ] ] { { ; ' [ R$ W@ 2 *# ~ G9 } 2 *# 6 } ) 2 W@ } } 1 4 6 7 ) { D, ,# } ( ~ 2 == 6 J= [ $# ( ~# [& d d 7 6 :& g 9 9 ~# 5 r e i 0 e j g c n ~# 8 0 n L= ~# c ^# 2, p ~# c Y$ ^# |& t Y$ n Y$ q t 4* m /# t /# b' 4* /# m A I w G z w I /# K |{ z A H$ c- O@ :* M |# H$ O@ H J L |# T D$ L@ |# |# C$ J L@ 4# P' 58 H I@ O= L r9 ={ r5 H9 R{ )= X X . !& #. >. =. >. z@ +. e- /3 r4 .= $% $. $. 4) 6# &. A@ ;' v{ Y6 b: b: 9# b: Y6 9# H! '= 0/ J: x4 r/ %% X) J: '. y4 ^^ =2 w{ w{ &% +: w{ F3 F3 +: W^ W^ F3 q^ 5^ W^ , I9 S{ 6^ 6^ _9 :9 t/ 8^ 6^ 6^ 6^ =/ =/ =/ L4 J9 K9 j{ j{ o[ j{ H^ b/ }5 b/ o[ X~ B7 z9 |4 /} V{ r) V{ F~ C{ C{ F~ t[ V{ C{ d/ C{ d/ >/ C{ >/ `~ Z< Z< Z< Q5 a3 h( L9 Q5 P3 Q4 L} u[ T5 c3 Q4 M9 c3 M} A_ 3| d3 S3 M} S3 T3 Q] Q] z/ x/ =^ =^ 6< 6< 6< v[ v[ v[ u^ 6< v[ u^ <} 54 Z{ I| N9 J^ F{ F{ Z{ F{ Z{ Z{ F{ ;] F{ C_ 7< W5 O9 3{ `^ 3{ O! ]~ `^ 7< [] j/ K^ [} C' @{ ~) F1 <^ @{ @{ ~) y^ @{ @{ y^ y^ @{ Z: y^ k/ k' |_ Y/ [^ C/ j^ k' _~ ] _~ _~ k' %, ] _~ ] k' _~ :~ ] i! d] Y] X4 i! e~ e~ N^ +! e~ N^ t] ]) >~ R! ]) ]) l^ ^) e= >~ e= G* e= >~ G* G* ,- G* e= k; e= G* |' l; @) 6> ;$ @) l; ;$ l+ ;$ l+ ;$ l+ ;$ n+ l+ l; l; l+ ;$ f= >$ t+ y% '$ l+ >$ t+ s+ '$ u+ s+ w+ u+ w+ x+ z+ A+ w~ C+ A+ A+ E+ E+ F+ D+ D+ E+ D+ F+ C+ D+ E+ D+ F+ G+ G+ G% G% {8 W2 P9 n9 V+ V+ Y+ V+ Y+ V+ F% f) f) Y+ Z+ Y+ &@ +@ @@ @@ p; p; &@ p; &@ %@ +@ &@ %@ &@ +@ &@ &@ %@ > E- *@ >@ ,~ q= '@ >@ > *@ *@ >@ '@ !; *@ Z& '~ & i@ Q9 *& w; (; T* 0$ c$ f$ @* |@ R9 S9 T9 r' l$ w; -* w; ;* 7@ 9@ w; 7@ +] 4@ S9 g$ 0$ 4@ n, R* ,@ U9 V9 w= 0$ W9 {; @* L- f$ v; 4@ 8@ X% 7@ y= S9 r' f@ )* *& q@ 9& &. F, z@ #. $% 6@ n$ l@ l@ {* -& (. u@ '. ). ^. &. e- &. ,= *. .= [, 5# @. .. ,= C$ E@ E@ ` M@ |# P D$ C$ Y ` K@ P@ S K@ M A +% ", +"$ Q$ + + = !, > . $ Q$ V@ # ]& T@ & Q$ H= ^ > H= U@ . > ^& N$ # 5_ N$ P$ Q$ - ] ; T- & | . U@ ~ < N$ S$ N$ N$ ; U@ & ~ N$ ~ | ! 4 | N$ N$ < 2 { 2 > ) ~ W@ ) ) { 4 1 { *# 7 [ ) Y@ J] d == { $# } i a &# i 6 k 6- 7 8 a 6 a X$ V$ 8 c a $# 6 ># L= g g D o n ~# j ~# n h a h Z$ n^ h Y$ n ,# Y$ ;= m 2, n p o 1; D D /# z /# ^# w {& n! C #= z x q w N D |# B M H$ E$ T E$ A I E P@ 1& M Y h] E$ O L L 3) d- s! O= J V }; C$ C$ P P' I@ 7# H 7# H@ J d- C$ . r5 X9 +. +. Y9 @. =. =. $. ;' ,. $. )& =. >. /3 ;. :3 Z9 5; ;. Y6 b: 82 5; b: ;} x@ '& !. A5 `9 X) X) '. X) f[ 0/ L] ~] ~] ~] 3~ W^ +: W^ +: w{ W^ W^ F3 +: +: 66 0 .0 C} +0 @0 6^ #0 .0 >2 T2 8^ T2 6^ =/ T2 $0 %0 K4 K9 b/ y9 &0 S: o[ }5 }5 b/ *0 H^ A9 P5 -8 =0 V: V: -0 15 F| C{ V{ F~ V{ >/ C{ G~ W{ V{ d/ &^ `~ &^ f( f( [ &^ Q( b3 a3 Q5 ;0 ]: L} )8 ,/ m{ 3| 35 R4 ,/ S4 d3 3| i9 35 >0 x/ =^ =^ .[ d3 __ U3 v[ 6< 45 =^ v[ 6< v[ v[ u^ H| +[ b^ A/ +[ a^ J^ F{ Z{ )2 !2 J^ 7< F{ 7< Z{ F{ J^ 3{ 3{ W5 }_ i( 3{ `^ D] 65 j/ K^ <^ ~) @{ C' @{ G{ ~) ~) @{ ~) ~) @{ :/ @{ P! Q) i^ t: Y/ #[ ,0 @[ Z: 2_ _~ _~ k' ] g3 ] _~ ] k' :~ :~ %, _~ _~ '0 D/ w- _~ e~ d] e~ #{ N^ e~ ,] ]) ]) G* ^) t] u~ >~ e= >~ >~ >~ ;~ +) k; >~ e= k! k; ^) %$ %$ ^) f+ /) |' ,- g+ /) ;$ |' l+ l+ g+ ;$ l+ ;$ n+ C) >$ n+ l+ ;$ h+ l; |! t+ y% r+ h+ -; t+ s+ w+ w+ '$ w+ u+ x+ y+ A+ C+ E+ y+ A+ A+ C+ E+ C+ E+ D+ D+ D+ E+ G+ E+ E+ D+ >; ]7 Q+ G% O> F+ F% 94 S~ U& Y+ Z+ F% Y+ f) ,; _{ Y+ _$ Z+ _$ p; p; #@ p; p; p; #@ %@ %@ +@ %@ %@ ~; *@ *@ *@ &@ $@ $/ [- &@ *@ K% *@ 1$ > V, >@ >@ *@ > K% +^ :@ )0 !0 ~0 {0 ]0 ^0 /0 (0 _0 :0 <0 [0 }0 |0 10 20 30 40 50 60 70 80 90 00 a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0 n0 o0 G_ Z; p0 q0 r0 s0 t0 u0 S> $@ > G- q= w= 5$ 4' V* z= v0 w0 7@ {* +] h$ =* l@ m@ <. x$ w$ ^. v@ :. ^. %. x@ 5# &. . )& A@ .= ;. 5# z$ E@ C$ T P@ L@ Y H$ H$ M H J O P@ P@ I A M ", +"* * . ' L$ $ + & $ 0' = X! ]& # $ # = Q$ . H= + & ' N$ Q$ H= o! | H= [* - ~ =' ~ . & ] ~ ; ) 4 ~ ~ ; ] ] > & P$ U@ [ W@ ~ H= W@ { ## ; ;# { ] 8- < < [ { 6 ## 1 ) $# ># x0 6 Y@ } } 1 c 6 9 6 i 0 2* 6 [ 0 k 6! n L= a >> ~# 7 0 3* Y> a h 0 e r e 8 c E, n K= r Y$ c n p % }& L= o h r m ^# Y$ r Y$ c h h Z$ 0- m /# D `$ w /# `$ m x )> z z z :# O@ K N M P@ M E$ w A |# L@ w |# M d- 3) E$ I@ C$ Y I@ T J T U 3; L@ C$ E@ T G$ G$ d- H X O= y@ 4# y0 @. n) +. $% $% E@ +. $. /3 $% z@ . ;' L) A@ z0 )& A0 Y6 v{ $. :3 b: Y6 b: Y6 Y6 H! x@ '= J: x4 %% J: J: B0 << ~] << 4] D~ =2 W^ w{ w{ w{ w{ 3~ w{ 3~ W^ +: W^ k~ +8 .8 C0 D0 6^ 6^ E0 F0 G0 J4 =/ H0 [| 6^ =/ 4< =/ =/ S: }5 o[ H^ H^ }5 }5 }5 o[ b/ }5 A9 }5 ~1 a9 I0 l8 P5 r) B7 C{ C{ d/ C{ d/ d/ C{ >/ C{ d/ C{ Z< i2 H~ Z< Q5 a3 J0 Q5 n8 Q4 E1 K0 A_ ]: L0 ]: m{ ,/ m{ ,/ A_ h9 35 M} d3 ,/ S3 =] Q] 3| A_ 45 u^ 6< v[ 6< 6< v[ u^ 6< v[ v[ D9 44 D7 )2 H| N9 /1 9) F{ /1 Z{ Z{ 7< J^ 7< J^ J^ C_ 3{ 3{ ^~ `^ }_ 3{ 3{ s~ K^ }_ S] S] <^ !/ @; @{ @{ @{ U] @{ ~) @{ @{ y^ t: @{ y^ r{ V] y^ r{ M0 y^ Z: N0 D' %, g3 ] ] :~ _~ _~ k' _~ _~ ] ] ] O0 X] -~ ] ]{ t] d] ,] l' i! g, t] .) t] ]) t] ]) R! ^) ^) u~ >~ i, u~ e= >~ ^) e= k! G* e= G* +) u~ }' }' k; l+ ;$ ;$ ;$ ;$ P^ @) Z] l+ l+ l+ h+ t+ n+ l+ l+ l+ ;$ =, t+ s+ s+ r+ u+ t+ t+ s+ t+ t+ s+ u+ !$ w+ w+ x+ A+ K* C+ E+ E+ C+ E+ D+ E+ F+ E+ E+ F+ D+ F+ F+ |} |} F+ k= G% G+ F+ G+ C% G% F% F% Z+ Y+ F% F% f) Z+ V+ Z+ Z+ _$ #@ +@ d^ [$ '; '; %@ %@ #@ &@ &@ #@ %@ %@ %@ *@ Q% $/ 1$ V, >@ 1$ !; !; p= >@ >@ *@ &@ %@ P0 Q0 R0 S0 T0 U0 V0 W0 X0 Y0 Z0 `0 a .a +a T0 @a .a a #a $a %a &a Z0 *a =a -a ;a >a ,a 'a )a !a ~a {a ]a ^a /a (a _a :a . > !, . S$ # + & N$ T@ ]& | - $ . > $ # H= ; ; ] P$ N$ > V@ | ~ | 2 ] | { > ^& ; 2 ^ W@ ~ ; U$ ## ( X@ 1 ) *# 2] N$ . X@ ## ~ ) == d W@ ( W@ } /& 1 } 7 q> } ( } b 6- $# i 0 &# $# } 7 ># ,# e a 6! d W$ r 0- 7 a L= 9 } e ~# e c r n Q{ g ~# c h ~# Y$ p n ~# p ^# m % p n D % n 0- h ^# `$ F= m m Y$ 4* 1; /# M= A m K M O@ F= ~& O@ I S M J z E$ E$ K M M 8* M A |# 3& J d- T C$ U ia L@ 4; C$ 3) O= O= G@ W ={ C$ T 7# W y0 ja r5 y@ 8# F^ G; C@ =. 8# ;' =. $% ,= =. Q' =. ;. :3 ;' /3 9/ Z9 Z9 9# %. b: 9# 9# Y6 b: Y6 '= %% %% X) X) r/ ^5 f[ ^5 ^^ ~] =2 ^^ =2 +: w{ W^ w{ W^ F3 ]4 13 +: F3 (4 +8 =_ ka la S{ 6^ >2 +0 8^ 8^ I! $0 ma I! 6^ =/ L4 L4 %0 j{ }5 o[ }5 na H^ b/ b/ *0 oa pa |4 }| -8 |5 -0 P5 V{ I0 l8 M4 d/ F~ C{ >/ >/ >/ C{ Z< t[ Z< Z< Z< Z< a3 &^ Z< Q5 Q5 Z< ): P3 R4 m{ 0! 0! m{ ,/ A_ ,/ 3| A_ S3 3| ,/ .[ S3 d3 =^ =^ d3 __ Q] =^ =^ 6< u^ =^ =^ u^ R( R( v[ !8 54 a^ qa I| /1 Z{ Z{ J^ J^ F{ F{ 7< J^ 7< C_ 7< `^ ]~ O! `^ `^ `^ 3{ }_ f3 W5 K^ _1 K^ @{ ~) F] @{ @{ (~ @{ @{ ~) ~) y^ y^ @{ @{ :/ '^ B/ @[ @[ y^ t: b] b] :~ ] ] _~ k' ] ] ] k' |_ ] _~ ] ] :~ i! >] _~ ]) e~ d] < k^ e~ e~ ]) ]) t] ]) t] ]) i, ^) ^) ^) ^) ^) ^) >~ e= G* ,- e= e= k; ,- e= ra .] Q, f= l; ;$ ;$ g+ ;$ l+ /) ;$ l; l+ ;$ r+ l+ m+ l+ ;$ n+ l+ r+ t+ s+ '$ w+ '$ '$ >$ s+ x+ '$ '$ x+ x+ v+ x+ A+ A+ A+ A+ E+ E+ C+ A+ A+ C+ E+ G+ G+ D+ D+ F+ >; |} sa k= /$ o2 F+ W2 W2 o2 G% C% f) F% V+ p; L| f) _$ _$ _$ #@ #@ +@ #@ +@ p; %@ %@ #@ &@ %@ %@ *@ %@ &@ &@ &@ 1] E- 1] &@ q' U, *@ D- >@ >@ &@ *@ &@ %@ @@ ta ua va wa xa ya ya za wa Aa Ba Ca Da Ea Fa Ga Ha Ia Ja Ia Ka Ba La Ka Ma Ba Ma Ga Na Na Ha La Ha Oa Ha Pa Qa Qa Ha Ra Sa Ta Ua Va Va Wa Fa Aa Xa Ya Za `a b .b +b #a @b #b $b %b &b *b =b -b 4@ e@ *& u@ a. u@ h# t@ v{ C@ A@ x@ 5# A@ 5# ). &. @. X )= F@ !> 5# T X L@ H J Y J@ Z P@ S J Q@ N= N |; A ", +"L$ J$ ;b [* ]& R@ L$ + - # R@ # ]& ]& 1) [* Q$ !, & V@ + ] . . U@ }* N$ k) ' . & U@ ; Q$ > S$ T- | ; ) 2 N$ ## > X@ N$ X@ .# %= ~ - ! ^ | | / { | *# , ^ ;# /& $# $# { W@ { W@ 1 } { [ { ( / { } $# } < < ( Y> d 3* 0 a a a < J] e &# ~# e a ,# a ~# $# b d 8 g h F! e V- 6 o d _# ;= 2, r |& L= `$ `$ h % Y$ b' F 4* 4* m t ^# Z$ 1; ^# G w w y /# w I ^# t [# w I A I H$ C z I H |# M P@ M 8* J U E$ I@ K) D$ T J C, E$ 4; T G$ L C$ >) r9 O= G$ I@ X R X a* a* . r4 @. r9 G; ,. $% +. )= +. A@ /3 /3 :3 y@ +. ;' ,. &. =. ~( &. ;. 9# Y6 >b 9# b: b: !9 b# J: x@ 0/ J: a: x4 w{ 1~ r/ ^^ a: =2 D~ ~] w{ w{ w{ F3 W^ F3 +: F3 +: +: ,b +8 'b )b C0 'b L5 I4 !b =/ _| =/ ~b =/ 6^ L4 M3 &0 L4 M3 L4 b/ o[ b/ %0 o[ b/ }5 }5 a9 c/ U/ B1 |5 P5 M4 l8 V{ V: F~ C{ d/ d/ C{ t[ d/ d/ `~ >/ >/ Z< &^ Z< &^ I~ z_ Z< n8 n8 Z< ): 2| g9 {b g9 m{ m{ ,/ A_ A_ m{ ,/ y/ 9~ =] .[ d3 3| =] =^ .[ S3 =^ U3 z/ 6< 6< v[ u^ v[ 34 R( 6< H| I| <] a^ 54 )2 Z{ Z{ 7< J^ J^ J^ 7< F{ Z{ Z{ J^ 7< }_ 3{ K^ `^ 3{ }_ 3{ j/ O! `^ j/ [_ @{ y^ J| (~ G{ M^ @; G{ W4 @{ @{ ~) @{ t: t: Z: @{ y^ b] y^ y^ C/ [^ A) ] ] j^ 2_ ] ] ] ] ] ] _~ _~ P} ] )^ X] _~ -~ e~ d] N^ .) #{ d] .) .) ]) k^ t] .) .) e= ^) e= e= e= ^) e= >~ e= M{ e= e= M{ ;$ +) H* S) |^ k; l+ l; l; l+ ;$ l; C) l+ n+ ;$ l; A- l+ ;$ h+ ;$ h+ l+ l+ s+ t+ '$ '$ 8> '$ o+ s+ w+ t+ s+ u+ !$ u+ !$ A+ C+ C+ C+ B! C+ C+ y+ E+ C+ C+ F+ E+ F+ D+ D+ F+ i3 F+ Q+ /$ G% F% ^7 W2 C% F% f) V+ f) T+ Y+ F% _$ p; V+ Z+ +@ R> d^ +@ +@ '; p; '; #@ %@ %@ &@ #@ #@ I% e] >@ 4$ >@ E- E- Q% >@ *@ &@ '@ *@ >@ *@ %@ @@ `; ]b ^b /b (b _b Ia :b .. 5# A@ W> &. 5# $% .= .= 7# V P z$ Z H P D$ H O@ P@ Q@ P@ I I N ~& I ", +"L$ 0' Z, Z, + . ]& L$ (& ' o! . ; & $ > T@ T@ V@ # & > # U@ ] N$ Q$ | H= $ ; ' S$ - > ; | ^ & | ) | N$ | ] S$ P$ | < ;# | ~ ) %= N$ 4 ; ~ I= ( # ~ 2 [ ) ( 6- / < Y@ [ 5 6 7 ) 7 ,# < ) 9 7 ~# &# 0 a '# ( < ~# $# 6 q> 6 e 6 6 ,# 0 7 b L= e 3] c n p {# Y$ 0 2, n h c n g h 0 n^ h h p C; E, Y$ ^# h 5* p `$ N {& b' m ,> #] w D 1; G w 2; w w D Q@ P@ O@ I E$ O@ P@ P@ H M J z P@ M H M@ E$ Q H$ S J J L@ M L@ O= P G$ r! P r9 X @. T 58 . y@ L X +. . +. @. .. 5# W e- ,. +. +. [, R' 6# ;. ;. $% ~( ~( v{ z0 <3 zb t( 6# 5; b# 9# d[ 7, 7, J: b# J: '. X) 7, Ab 7, 1~ y4 W^ f[ =2 W^ w{ 13 +: F3 F3 +: 0 Bb Bb +: F3 Cb Db Eb :5 6^ +0 @0 6^ 8^ 8^ K4 M3 E0 K4 8^ M3 L4 M3 H^ o[ b/ K9 ,2 b/ b/ }5 }5 -8 -8 B1 14 -8 B] F~ F~ W: O3 W: t[ W{ V{ d/ d/ d/ C{ &^ >/ t[ >/ Z< Q5 a3 a3 Q5 a3 Z< Fb a3 f9 {b {b ,/ S5 E1 ,/ S4 A_ ,/ Gb C9 y/ Hb 3| h9 3| .[ x/ __ T3 Q] =^ v[ v[ 34 =^ u^ v[ q8 34 v[ v[ H| 54 V4 +{ I| <_ Z{ ;] Z{ F{ J^ Z{ C_ Z{ C_ 7< C_ 7< 3{ ;] 7< 3{ [] 3{ `^ `^ 3{ T] [_ @{ ~) @{ !/ y^ y^ @{ ~) @{ ~) t: y^ @{ y^ h^ :/ i^ @{ `' C/ :/ :/ [^ t: 2_ _~ j^ k' 2_ _~ _~ 2_ #[ :~ ] k' ] #[ Y] e~ ] X] A^ e~ i! ,] t] d] ]) .) ,] ,] u~ ]) ]) R! ;~ ^) e= e= e= e= G* G* G* ;$ ,- e= G* G* G* .] l+ k! j+ g+ P, ;$ ;$ l+ l+ n+ l+ ;$ ;$ f= l+ n+ h+ l+ ;$ ;$ l+ r+ s+ i= r+ M& t+ s+ s+ '$ s+ x+ '$ !$ !$ '$ H/ B+ A+ C+ E+ E+ F+ E+ E+ C+ D+ E+ E+ W3 C+ D+ D+ Ib W2 F+ /$ /$ G% F% ^7 94 V+ Y+ Z+ Y+ Y+ Y+ V+ f) _$ '; V& _$ :- Jb :- #@ '; p; #@ #@ %@ *@ &@ &@ &@ &@ &@ %@ >@ #@ *@ I% W, >@ I% $@ I% r; *@ #@ #@ +@ %) Kb Lb Mb Aa Ba Nb Ob Pb Qb pb Rb Sb Tb Ub Vb 8b Wb 3b 3b Xb 6b bb pb Tb xa Yb Zb `b c |b |b }b 7b 7b pb pb }b 1b .c +c @c lb #c $c %c %c %c %c lb &c +c db *c =c -c ;c >c ,c 'c `a )c !c ~c .@ T% l$ m$ k@ =& w$ x$ u@ O- ^. ). &. e- &. $% 6# 3^ .= 5# 5# 5# C$ +. D$ Q D$ D$ 2# H 1# L@ H 2& 8* A b- Y G S ", +"$ ; > * ]& . T@ $ ]& ; Q$ = > o! = > + + > ; # Q$ !, ]& * U@ & . & {c . . & ~ N$ ^ ; ^& ^ $ & N$ & S$ /& 2 ' S$ { { | & | ^& ~ | ) { ~ *# | ) 7- ^ [ W@ 2 $# < [ 4 ) Y@ a 6- 9 ,# < ( e 6 7 $# d e i a &# ( 8 a q> 6 7 7 7 ~# k 8 b N' 8 ~# k ,# Y$ c [& L= h `$ Y$ ]c `$ L= n p n Y$ h `$ Q{ ~# D p m % Y$ 4* ^# :# t F= ^# D D ^# C z ^# M z D w G O@ N z P@ Q@ b' M@ M 3& O@ ` O@ z I |# P@ J z K@ L L 2& P' I@ J P 4# G@ L E$ H@ Q' r9 !> y@ @. G; @. Q' E@ ,. +. y0 #. L) L) )= )= $. =. A@ =. 6# >. 6# >. 4- V^ =. ^c A@ 9# Y6 b: 7, 7, Y6 Y6 >b d[ u! L] u! 1~ << r/ f[ X) =2 f[ W^ f[ B0 W^ W^ *_ W^ +: +: Bb F3 W^ +: W^ 13 v9 t9 /c (c I! _c !b :c / t[ C{ Z< d/ }c `~ `~ a3 a3 a3 &^ Q5 Q5 t^ ,8 |c Q5 Q4 S4 f9 3| A_ m{ S4 L} 3| L0 35 35 d3 h9 3| d3 x/ __ __ Q] =^ u^ u^ 6< u^ 6< u^ v[ v[ v[ v[ !8 !8 <] w^ 44 X/ 9) Z{ ^' ^' Z{ 7< J^ /1 J^ J^ 7< C_ `^ `^ 3{ `^ 1c i( `^ }_ 64 i( D_ C' @{ @{ C' y^ @{ ~) @{ ~) @{ @{ y^ @{ y^ B/ y^ '^ @{ L^ c~ 2c S( b] b] j^ :~ _~ _~ _~ _~ :~ _~ :~ _~ ] _~ ] :~ ]{ i! D/ Y] N^ i! i! ]) t] i! < ]) N^ t] i, .) .) R! G* ^) ^) e= >~ %$ G* ^) ^) k; k! ^) ^) e= G* U; ;$ l; l; g+ g+ 6> l; @) ;$ l+ n+ l+ ;$ n+ l+ l+ h+ l+ l+ l; l+ >$ '$ '$ >$ N& i= s+ )$ '$ w+ !$ '$ x+ w+ !$ A% C+ D+ E+ C+ D+ A+ D+ F+ E+ C+ E+ D+ D+ D+ F+ G+ F+ 3c m9 G+ Q+ o2 4c ^7 5c Z+ Y+ Z+ Z+ Z+ Y+ _$ L| Z+ _$ _$ T+ p; [$ W+ &@ @@ p; %@ &@ &@ &@ %@ &@ *@ %@ }$ *@ &@ W, $@ E- >@ *@ l, > 2$ *@ &@ %@ %@ @@ U+ 6c 7c 8c Wa 9c 0c ac bc cc dc ec pb fc `b gc Tb }b Wb 6b hc ic jc `b kc lc mc nc oc mc mc pc pc gc Vb |b |b 1b .c qc rc sc tc %c %c %c %c %c %c %c lb uc vc qb ya wc xc yc zc Ac Bc Cc Dc Ec Fc w= l$ o$ m@ :; `* s@ (. s@ (. F, %. ^. z@ 5# G@ z@ ;. i~ i~ E@ G@ R D$ Y H@ 1# Y M@ Q@ ` S P@ A A I z I P@ ", +". = V@ * ;b = = G= . & Gc - Q$ Z, ]& V@ o! ]& + V@ Q$ ]& > $ ]& . + . N$ & . Q$ S$ *' ; Q$ U@ - ! ~ |* - - Z! ] *# . N$ { ~ ~ & | ) ( ] Y@ X@ ( /& /& d 1 ; ) D, Y@ d 1 $# d d N' 9 } ( $# [ } &# ## a' $# &# $# D, 7 L= [& 0 b 9 V$ a 6 a ,# a e d c g ~# a ~# L= p c L= c s> h 0- Y$ L= Y$ Y$ y2 0 ,> z: c -) n n }& Y$ D 4* D D _# 4* w 2; /# F m 1; 4* 2; w w G I A I M D 8* J I E$ M |# G E$ L@ 3; J U J T Y G$ E$ 3) J I@ 4# V 4# J T H 7# G$ !> @. X z$ W ={ r4 #. ,. E@ 6# E@ C@ .= /3 . C@ W- 5# =. ;' Hc z@ 9# =. A0 t( Y6 Y6 Ic 9# b: 7, b: b: Y6 d[ '& << u! {9 << 0/ a: x4 X) q/ << f[ ~] B0 F3 +: W^ F3 ,b Jc F3 13 F3 F3 W^ #0 D0 Kc )b .0 8^ Lc Mc 8^ 8^ =/ M3 Nc t/ =/ %^ =/ L4 Oc j{ o[ /} M3 o[ ,2 A9 b/ o[ a9 z7 V: -8 a9 Pc Qc M4 M4 I0 Qc F| d/ d/ d/ t[ >/ >/ G~ d/ t[ G~ Z< Z< a3 o8 a3 Q5 P3 d9 Q5 a3 Q5 ]: o8 g9 ]: S4 h9 Rc M} A_ M} d3 A_ M9 A_ h9 x/ =^ d3 x/ u^ u^ _/ u^ =^ =^ v[ 6< v[ 6< 34 <_ <} Sc F{ Tc D7 9) F{ F{ 7< 7< J^ J^ F{ 7< F{ Z{ C_ J^ }_ 3{ `^ `^ T] 1c }_ i( `^ S] ~) ~) @{ C' ~) @{ ~) @{ @{ @{ y^ C' ~) i^ @{ y^ y^ :/ @{ :/ b] 2c Z: C/ b] _~ ] 2_ j^ _~ _~ _~ ] $[ _~ :~ ] _~ s] e~ e~ s] >] i! e~ e~ .) >- >- t] t] t] >~ K> l' ]) >~ e= ^) ^) ^) ^) ^) ^) ^) >~ k; e= e= *; G* &, ;$ /) s{ k! ;$ |' l+ ;$ l+ l+ l+ l+ ;$ n+ ;$ n+ n+ l+ l+ ;$ h+ n' t+ t+ |! r+ s+ y% t+ u+ u+ )$ '$ w+ x+ x+ '$ B+ E+ E+ A+ E+ E+ E+ D+ E+ E+ D+ E+ F+ n2 D+ D+ F+ F+ G+ Uc W2 G% G+ D+ `5 Z+ F% Y+ Z+ V+ Z+ _$ F% L| _{ Z+ _$ _{ +@ #@ +@ _$ '; +@ %@ #@ %@ %@ &@ %@ *@ }$ %@ *@ 4$ V, E- +^ *@ p= >@ -@ *@ &@ *@ %@ +@ ($ Vc Wc Xc Yc Zc `c d .d +d @d #d $d %d `c c Ob &d ab 7b *d *d d `b |b Sb ,d 'd )d sc gb %c !d %c ~d gb %c %c lb {d db ]d ^d /d (d _d :d T@ L$ + + & o! & ]& # V@ . S$ H= ; | ] ; & . ; T@ Q$ 2 ; & ~ - & ~ | ) 2 ] H= &= N$ /& }* 7- 2 2 X@ | 1 ~ ~ | ) N$ { 1 1 2 | ] ) ) | ) { 4 [ ,# $# ( [ b 6 6 2d *# : o 1 7 e $# 7 6! 7 h ( 6- a d ~# a 7 7 a a ~# c 6 a d 0 c a e ~# g e e K= !# % ~# % h p n s> ^# o c ^# p m q `$ w `$ % z m `$ `$ {& `$ N -= :# m % |# C N n! F= ~& o^ I o^ E$ M M P@ N E$ I@ J L t> L@ T M Y |# G$ 0* U L@ d- L@ H E@ 58 3d V 4d +. 5d r4 r9 5d 6# 5# =. +. ,. ,. R' +. e- R' A@ R' :3 v{ =. ;' :3 =. =. b: Y6 6d 9/ b: 5; 9# b: b: X) J: 7d b: H! '= 1( ^5 f[ X) J: f[ Jc ~] W^ +: w{ w{ +: F3 13 w{ *_ W^ F3 +: D4 _9 Q< 8d :4 6^ E0 t/ K4 =/ M3 8^ K4 J9 M3 j{ 9d L4 &0 j{ H^ 0d y9 H^ o[ a9 }5 }5 }5 !1 a9 }5 ad A9 P5 M4 F~ b9 bd cd d/ d/ C{ C{ d/ >/ `~ t[ d/ t[ Z< b3 ): dd &^ Z< Q5 ;0 ed P3 )8 {b M} P3 S4 m{ ,/ M9 fd h9 h9 S3 gd ^: S3 T3 d3 =^ d3 T3 i/ hd <_ u^ v[ 45 45 6< 6< 6< v[ !8 44 +[ D7 ^1 44 /1 !2 J^ 7< 7< F{ 7< 7< 7< J^ 7< J^ 7< }_ `^ K^ 3{ K^ 3{ W5 `^ `^ `^ i( }_ G{ @{ f3 U] ~) y^ y^ @{ ~8 y^ @{ @{ y^ y^ @{ c~ B/ u: S( t: :/ [^ id ] k' ] 2_ P} k' ] ] k' k' ] :~ ] _~ Y] 6+ >- 4/ i! e~ #{ -~ t] e~ e~ N^ ]) .) ^) ]) .) ^) ^) !^ ^) ^) G* u~ k; ^) e= +) 6> ^) v~ k! e= e= g+ l; j+ 6> l; l; l+ l+ l+ ;$ l+ l+ l+ ;$ =, l+ l+ n+ h+ h+ M& x% t+ '$ o+ h+ s+ s+ u+ i= o+ o+ )$ x+ !$ x+ y+ C+ w+ C+ E+ D+ E+ D+ D+ D+ E+ C+ F+ E+ F+ F+ D+ F+ F+ ^- o2 T& F% C% W2 W2 o2 V+ Z+ _$ _$ V+ f) F% _$ p; _{ Z+ p; +@ <~ %@ p; +@ p; :- &@ &@ %@ %@ %@ %@ %@ &@ *@ &@ &@ U, &@ &@ *@ *@ >@ >@ ~; #@ Z+ Vc O> jd kd ld 'a Zb md nd od pd #d qd rd sd td ud ab ic sb *d {* u@ x$ 7; !. !. ). -. !. 4& *. &. . A@ A@ +. @. 5# 1# &' Ld P G@ X J s! Q@ M |; J S S Q@ G ", +"+ = $ $ ; . > . ]& R@ . = > ]& X! o! ; > - - $ ; H= > ^ *' U@ ^ $ . T@ H= Z! # & ; Q$ %= ] 5- ^ ] | | ; | | & N$ ) ] | N$ 2 { < ) U$ ( P$ Z! P$ W@ | H= b{ W@ { ~ ~ Y> d $# < N' '# a B; 2* ( { $# o 4 c b [ e ,# M' K/ d e ~# g a *= 7 L= L= n q> o 7 ,# o c e K= 8 a ~# c L= c{ C; 0- Z$ m |& `$ h r r Y$ ~# D p p r @= D Y$ m F= N G m x 2; `$ C ^# F= G A `$ S O@ I z O@ M U^ M O@ c' P@ 8* ` J o^ P@ J T M@ ` H L@ T L' S I@ G$ C$ O= C$ !> O= q9 W @. E@ G@ . r5 /3 =. $% z$ a* G; /3 =. $% /3 >. $% =. A@ A0 A0 x5 =. /3 >. b: b: b: Y6 b: b: Y6 b: B5 r/ J: '& `9 r/ X) L] ~] r/ =2 L] L] =2 ^^ W^ W^ 3~ F3 W^ w{ w{ W^ +: +: 2~ +: Md Md ka 13 Nd G0 D4 _c K4 ]} L5 Od Nd K4 M3 &0 &0 L4 K9 j{ Pd }5 b/ }5 a9 b/ Qd A9 -8 ad a9 P5 a9 =0 0^ O3 M4 C1 C{ C{ C{ C{ C{ t[ t[ t[ `~ >/ >/ &^ &^ Z< {1 &^ Z< b3 S5 ): '8 S5 Rd M9 Sd ,/ 0! ,/ A_ Td Rc 3| S3 S3 Q] S3 3| 3| 45 45 S3 S3 __ u^ =^ =^ =^ v[ v[ 6< v[ 6< v[ !8 H| 34 F{ <} D7 J^ Z{ 9) Z{ J^ Z{ 7< C_ e3 C_ C_ }_ `^ `^ (! `^ W5 `^ `^ }_ }_ `^ S] j/ <^ F1 [} F] @{ @{ @{ @; @{ @{ y^ @{ @{ @{ !/ t: t: Ud :/ 2c y^ Z: b] b] ] _~ :~ ] :~ k' _~ k' _~ k' ] _~ _~ _~ X] d] 4/ X] i! i! +! .) ,] e~ l' ]) l' i, K> t] u~ ^) >~ ^) e= G* l' k; e= ^) k; k! 0+ ^) G* u% ^) &, '] ;$ k! l; ;$ l+ l+ ;$ ;$ ;$ ;$ l+ l+ l; z- -$ ;$ n+ h+ ;$ s+ t+ t+ '$ n+ M& '$ o+ u+ w+ w+ !$ v+ !$ x+ x+ ]$ E+ C+ C+ C+ D+ E+ E+ D+ F+ F+ F+ F+ F+ W2 F+ F+ E+ n2 W2 ^7 f) o2 F+ Ib 4c T+ Y+ Z+ Y+ f) V+ f) L| L| Z+ Z+ _$ #@ _$ +@ %@ #@ _$ :- &@ %@ *@ %@ &@ %@ *@ *@ &@ *@ *@ R> &@ %@ &@ %@ %@ *@ *@ +@ X+ Vd o' Wd W0 Yb Xd td Yd Zd `d e .e .e rd qd +e @e wc 8b sb 0c #e $e =d %e &e &e nc *e *e =e mc nc rc wd =e -e ,d -e ;e Ad rc =d gb lb >e rc &c &c rc ,e ,d 2b 'e )e !e ~e {e ]e ^e nc /e (e _e :e m, |@ 7@ *& j@ o@ x$ w$ = 5& ,& /* &. &. G@ A@ -. .= .= A@ B$ X 5# C$ 2& P T J@ T ` S Y P@ Q@ 3; Q@ A H S ", +"$= + $ . k) $ # * X! - . ]& k) > ]& U@ . N$ & S$ ; ]& . / H= S$ ^ U@ + ; Z! ] - [* . . S$ ; ~ $# W@ ; W@ ~ ; - - - U$ N$ 2 ) X@ ; } { { ~ [ [ X@ 1 < } ) ; ~ { D, ~ [ [ 6 j 6 $# d : Y@ d 7 a b 0 d &# 6 V$ $# *# ,# n $# ~# 8 i -# g 6 L= L= 3] g {# {# ~# e c 7 Y$ 0 h 8 Y$ h ;= m Z$ s> ,> `$ p G D n m Z$ ^# }& m n^ Z$ % /# z z 2; :# N ^# ^# w /# t I ^# P@ G z O@ N J Y E$ C, S z M / >/ t[ >8 >/ &^ `~ &^ Q5 a3 a3 n8 Q5 S5 |c |c S5 |c c3 c3 7e Sd 35 A_ S3 8e d3 35 /] y/ 3| A_ S3 d3 Q] T3 T3 T3 6< =^ v[ 6< 6< 34 6< 34 v[ V5 34 54 I| b^ H| V4 9e J^ F{ F{ F{ d; )2 Z{ Z{ 7< J^ C_ 7< }_ 3{ K^ J^ 3{ }_ ;] ;] 3{ H{ [_ T] 65 G{ !/ @{ F] E_ @{ @{ y^ y^ y^ F] ~) h^ ~) :! @{ y^ b] F1 u: C/ [^ [^ ] :~ :~ :~ _~ ] k' _~ _~ ] _~ $[ :~ _~ e~ ]{ _~ e~ e~ g, < #{ g, >- t] ]) R! R! t% l' i, ^) ^) %$ e= R! e= G* ^) e= +) G* ^) ^) u% %$ +) /) ;$ n+ j+ ;$ l+ ;$ l; l; ;$ l+ ;$ l+ ;$ ;$ l+ n+ l+ l+ ;$ n+ s+ t+ '$ A- n+ s+ t+ '$ w+ u+ o+ x+ x+ w+ !$ 0e B+ D+ A+ F+ E+ A+ A% E+ >; E+ W2 F+ F+ F+ F+ D+ 94 S~ W2 G+ o2 (- 5c W2 P9 Z+ Y+ Y+ L| F% f) _$ L| L| L| _{ p; _$ #@ #@ +@ m, p; #@ ae %@ &@ %@ S> &@ &@ *@ m, S> &@ W, U, *@ &@ &@ %@ =@ +@ W+ W+ be ce de ee fe ge he Gd ie je ke le me ne oe pe qe re ac &d jc se fe =d nc nc nc nc te ue ve Ad we xe -d we Vb `b ye Ub ,d oc rc ze &c ze &c @c Ae nb ob Be Ce De Ee Fe Ge He Ie Je Ke Le Me Ne Oe @@ n, a@ W* *& m@ -& {. :. w$ /* v@ !. &. x@ ;. 5# E@ )& 5# P X 4# 1# Y H J H 2# O P@ A S A N I H$ I Q ", +"$ = = ]& - . . . . . . - $ ; . # + > ; z] . $ !, ' - Q$ . > ; $ > . T@ ] Q$ ; | | | O$ { Q$ 1 1 | 2 | 5! - ] ) / ~ ## [ { } [ } { < | ## /& *# ~ /& [ 2 } [ / { 6 ,# | } $# 6 } < ) W@ } == } 6 $# 7 k $# a 0 6 a d 0 6 0 0 n L= n a ~# K/ `$ ~# *= g j 8 f 8 e h h s> c ^# p ^# ^# Y$ ^# Y$ % D r h ^# Y$ L= w m /# z 5* A G /# m ^# I /# E; N |# Q@ A M I |# S M |# w H I O P@ T J P L E$ H O= T I@ E$ L@ O= W H I@ D$ n) ja 58 W y@ E@ R y0 4; a* a* +. G; Pe /3 $% ,. ,. /3 .. ;. A@ 6# ;' =. ~( :3 A@ ;. ;} Z9 ~( Ic 82 b: Y6 9# Y6 {9 b: A5 X) q/ b: J: ^5 Qe r/ ^^ Re f[ ~] 3~ 3~ +: w{ +: +: +: 13 13 Se }e }e 13 13 13 t9 [e [e Te :4 :9 Ue Nd $0 / d/ Q5 Q5 >8 a3 Z< &^ a3 )8 b3 d9 |c {b Q4 Ye o8 c3 c3 m{ 3| ]: T3 i9 S3 d3 >0 Ze d3 v[ U3 T3 j9 U3 `e 34 6< 6< v[ 34 V5 f .f 34 Sc Sc )2 +f 54 06 a^ Z{ J^ C_ J^ J^ J^ J^ ;] 9) F{ Z{ 7< 3{ T] `^ }_ `^ }_ }_ y[ K^ [_ T] W4 74 F1 r8 J| F1 @{ ~) @{ E_ @{ !/ y^ 5| y^ S( i^ y^ c~ Z: V] [^ C/ j^ k' k' _~ _~ _~ _~ ] ] ] _~ _~ _~ _~ :~ g, D/ ] e~ e~ e~ i! .) #{ -~ ]) ]) N^ ^) t] V3 i, >~ R! >~ ^) G* K> e= e= ^) %$ u% k; ^) ,- G* k; /) U; U; |' ;$ l; w% l; l+ ;$ g+ n+ ;$ l+ l+ n+ l+ l+ h+ l+ n+ >$ '$ -; s+ J* o+ s+ s+ x+ w+ w+ x+ x+ !$ x+ w+ A+ B+ C+ D+ D+ E+ F+ F+ F+ D+ F+ D+ D+ G+ @f G+ W2 C% W2 W2 o2 /$ ^7 ^7 o2 Z+ Y+ Y+ Y+ F% Z+ _$ F% L| _{ Z+ _$ _$ [$ :- #@ `; '; p; [$ %@ p' &@ %@ +@ &@ &@ &@ >@ D- *@ $/ %@ *@ *@ &@ ~; #@ @@ U+ #f $f %f &f ;c Hd *f =f -f ;f >f ,f 'f )f !f ~f sb {f ]f ^f /f (f {f _f :f oc mc %* X* j- -& ~* a. (. c# <. (. -. =. ^. -. (* W~ A@ e- ,= !> @. G! L@ 4& 1# L@ L@ Y P@ P@ Q@ 8* P@ P@ L@ P@ J ", +"& = ]& = . Q$ ; . . o! = T@ - ]& . ; $ - U@ > . + . > ; V@ & $ > $ S$ & U@ N$ Q$ ] > ; U@ ; ] U@ & & 5- > ; ] | N$ H= | %= ^ X@ [ Y@ ] *> *# Z! %= N$ Z! 1 { %# : } ( [ [ } 7 Y@ V~ e D, $# b Y@ 2 ## &# [ d a $# d } ( 6 2* a a 0 c ,# 6 r e ~# a' a o {# Y$ ]# 8 c e i h &# c {# ^# p p ~# L= p D -) Y$ % % 1; r s> `$ % 6* D ^# m C % /# Z$ ^# /# :# C p ^# G z S I n! P@ J A I M S M w H >) E$ T +% T H 3) O H T L@ E^ r9 W @. V t> V O= n) 4# r9 ja ja bf H9 8# cf y@ r4 a* !& A@ ;. a* =. df )& 5# /3 $% $% A@ A0 /3 ;' z0 v{ ]. ~( ef b: b: Y6 Y6 *. b: B5 J: J: ff x4 r/ 0/ r/ x4 0/ ^5 a: f[ W^ F3 W^ +: F3 +: Md 13 13 }e +: F3 F3 F3 }e [e gf [| t/ 8^ E0 ~b ]} ~b H0 hf L4 %0 L4 if if %0 H^ H^ jf }5 a9 a9 a9 oa oa b/ a9 V: A9 Qd W: =0 6e Qd I0 d/ t[ t[ >/ }c >8 t[ Z< >/ >/ n8 a3 &^ n8 n8 Q5 Q5 P3 P3 n8 Q5 n8 c3 {b o8 c3 Q4 L} A_ K0 Ze Td M9 A_ 35 kf T3 x/ u^ x/ j9 T3 T3 34 v[ u^ T4 .f 34 34 34 34 D9 44 D7 b^ <} Sc ^1 F{ J^ Z{ Z{ J^ 7< J^ J^ 7< 7< J^ J^ 1c }_ 7< }_ 3{ `^ W5 W5 }_ [} j/ [_ S] F1 D_ F] @{ y^ ~) ~) y^ ~) y^ @{ ~) !/ :/ lf y^ mf b] k/ c~ [^ [^ k' :~ $[ g3 :~ :~ _~ k' k' ] k' _~ _~ ] N^ w- ] i! 84 e~ e~ ]) ]) N^ ]) .) .) u~ i, ]) l' u~ >~ l^ e= ^) R! e= ^) ^) +) k! G* G* 0+ G* G* .] Q, H* ,- l+ w% Q, -$ ;$ ;$ ;$ l+ l+ n+ n+ l+ l+ -$ n+ -$ n+ l+ s+ '$ s+ J* ~$ o+ '$ !$ x+ x+ o+ )$ x+ v+ x+ B! C+ C+ D+ C+ D+ C+ E+ D+ F+ F+ D+ D+ F+ W2 W2 W2 G+ G+ W2 /$ G% G% L| f) Z+ ,; p; _$ Y+ Y+ Z+ f) nf _{ '; _$ p; p; :- &@ %@ %@ '; +@ @@ &@ &@ #@ %@ *@ &@ &@ &@ 4$ D- [- !] %@ &@ }$ &@ %@ #@ .@ of pf &b qf rf sf tf uf vf wf le xf yf ^d zf Af Zb Bf Cf {f (f (f Df Ef oc ue kc vd vd vd {f vd vd $e ,e Yb `b Tb Tb Ff Vb Ub ,d Gf nb {d {d Sb Hf 9b Vb If Jf Kf Lf vf Mf Nf Of Pf Qf Rf Sf Tf Uf &@ }@ $* 0@ A= o@ -& q@ w$ ^. d# p, x@ -. A@ !. &. *. &. 8# >. E@ z@ X F@ 4& F@ J L@ P H$ M@ H$ I P@ T 4, S 7* ", +"%= > $ . * & ; $ $= + + + U@ = $= . U@ Q$ > V@ * $ & > Q$ + ^ . Q$ V@ * # P$ S$ P$ .# R$ N$ ~ > > & ; & N$ ] ; | 2 X@ ;# 1 ~ > & | [ ) > { { %= | { [ 2 | < 2 ~ [ -# +# 8 : 1 ## 4 4 6 ,# Y> 6 3* d } 8 } 1 } ,# i ~# b e 6 j k c h 4 a Y$ k 6 6 6! n L= s> h n ~# 2* [& n p X$ e g L= h `$ m s> 4* |& ;= D ^# Y$ N 4* % Y$ _# 2; G 4* z D m /# w F= A z F= E$ Q@ 3; O@ I P@ S O@ O T N@ P@ P@ E$ >) P@ L@ L' T :* T L@ O= O= L@ J L@ Vf T 0* V y@ L G$ y0 . r4 r5 y@ ,. @. @. ,. !& A@ G; a* F^ A0 /3 +. A@ =. /3 )& ;' /3 ~( v{ v{ b: $. 5; b: Y6 H! d[ b: >b X) J: a: J: J: J: J: x4 J: =2 ^5 Re =2 =2 +: W^ F3 +: +: W^ +: F3 +: +: }e [e Wf [e Wf Wf R: [| $0 Xf H0 Yf / d/ t[ d/ >8 >8 >/ Zf a3 o8 Q5 Q5 o8 n8 o8 n8 n8 a3 Q5 Sd M} Sd Ye fd `f Rc g 3| h9 .g S3 h9 M9 3| __ =] =] S3 d3 d3 6< v[ 34 u^ 6< v[ 6< 6< 6< 34 +g @g /1 I| H| ^1 F{ /1 Z{ J^ J^ Z{ Z{ Z{ C_ C_ C_ `^ C_ `^ `^ }_ r8 W5 `^ #g 1c r8 S] [_ W4 F1 f3 F] F] @{ ~) C' @{ @{ @{ @{ t: h^ M^ / y^ t: Z: l/ J| [^ C/ [^ j^ ] _~ :~ _~ ] ] _~ k' _~ k' k' :1 X] e~ e~ :~ X] e~ e~ e~ ]) -~ -~ .) k^ ^) ^) ]) ]) R! e= >~ ./ e= ^) ^) %$ L{ e= %$ k; e= G* G* ^) e= Q, }' 6> )- &, U; l+ l; |' L& ;$ l+ ;$ h+ h+ n+ l+ n+ n+ n+ n+ s+ s+ '$ r+ N& s+ '$ '$ w+ !$ !$ v+ !$ !$ !$ v+ A+ C+ K* D+ E+ E+ E+ F+ E+ F+ D+ F+ E+ G+ W2 W2 F+ W2 G+ $g G% G% G% f) Y+ _$ V& _$ Z+ Z+ ,; p; _$ p; p; _$ <~ '; @@ +@ +@ #@ _$ '; #@ &@ >@ &@ %@ &@ &@ *@ *@ %g 1d m, E- U, >@ <- &@ #@ @@ U& &g *g =g -g ;g >g ,g 'g )g !g 4f ~g {g ]g se se #e ^g ^g /g Cf (f ^f (g _g ub *e we :f ve $e ve $e $e vd X% >* t$ ~* u$ u@ x$ q@ w$ ). x@ &. &. ). $% 4& B$ $% .. X F@ E@ .= P R $> X +% H ` L@ O@ L@ A I Q@ I ", +"= R@ > # = ]& $ S$ ) > = . ] . #^ > # + - & . > ; ] N$ ] { . 2) ] . + S$ ' . Q$ ] - ] ; - N$ ] | ) f] } A; N$ N$ & *# | ~ ; & ] 4 8- | ] ] ; ^& | ~ P$ < *# 7- 7- 2 0 7 2 Y@ ## $# $# : j b ,# d [ 7 Y> Y@ 0 *= n 0 g *= 9 a a ,# L= [{ ,# ~# j ,# ,# 8 bg cg dg eg T1 T1 fg ~# Z$ c p Y$ n y p {# `$ C; n p n n r p h p 2, % r `$ m w z {& ^# G ^# G ^# z N I m) w I 3& A H$ z O@ J >) E$ H T J P@ O@ J L 3& M@ d- L@ G$ Ld T L 0* 4# L@ P' I@ G$ O= W r5 y@ 8# E@ y0 r9 y@ E@ y0 ,. $% #. x5 @. $% A0 a* F; e- =. $. )& ;' =. x5 ;' 82 b: gg 82 9# A5 82 7, d[ X) x4 b# r/ 7, X) r/ Ab Ab ^5 hg ig jg kg lg +: +: y4 +: +: F3 13 +: F3 F3 F3 t9 mg [e }e t/ ng og pg H0 ~b x1 ~b ~b Od &0 H^ qg %0 qg y9 a9 }5 }5 }5 a9 A9 }5 a9 Qd ad A9 cd A9 Qd Qc 03 c9 ad 03 }c }c C{ rg >/ }c J0 a3 >/ >8 a3 a3 a3 n8 a3 n8 a3 n8 n8 n8 n8 Ye Rc Ze sg 7e o8 Ze 35 35 T3 M9 T3 d3 >0 kf T3 __ 45 T3 d3 x/ __ 34 v[ 6< =^ 6< 6< 6< tg 6< <_ Sc b^ )2 44 +{ 7< Z{ 7< 7< C_ 7< 7< J^ 7< 7< 7< e3 e3 3{ H{ W5 }_ `^ }_ `^ K^ W5 S] [] [_ /~ [} [_ [_ @{ C' @{ F] 74 @{ t: t: @{ F_ t: :/ y^ Z: @[ F_ Z: [^ ug j^ k' %, 2_ _~ _~ k' j^ k' :~ k' ] B* B* w- i! .! X] Z/ +! e~ +! -~ e~ l' .) %[ i, u~ .) R! >~ u~ i, e= e= u~ vg k; G* ^) g+ k; e= u% &, +) S) S) f= j+ l+ l+ l+ ;$ ;$ '- l+ l+ l+ g+ l+ n+ n+ n+ ;$ l+ l+ '$ '$ '$ o+ h+ =; s+ '$ '$ x+ i= )$ !$ x+ !$ v+ D+ F+ C+ D+ D+ E+ D+ D+ G+ F+ D+ P& G+ G+ W2 G+ W2 n2 `5 ]7 o2 G% L| f) f) 94 F% _$ _$ _{ _$ _{ p; _$ wg p; _$ p; #@ #@ &@ #@ #@ &@ '; $@ %@ *@ 1] &@ D- *@ &@ ~; p= -@ E- E- &@ #@ &@ %@ X+ $) xg yg Sf zg ve Ag Bg Cg Dg Eg Fg Gg Hg Ig ]g jc Jg Kg #e Lg Lg Mg Ob Ng (g (g Ef _g _g *e *e vd Og Bf Mg zf #e zf *d :g :g fc 7b Pg Ha Xb Qg Rg Sg Tg Ug Vg 1g 2g 1g Wg Xg Yg me 6g Zg pb `g h .h U& n, X% >* j@ ~* {* (. q@ d# x@ ). '. D! 4- B@ &. +. &. .= B$ C$ G@ 4# L@ V ` 4# 2# H P@ D$ P@ L@ E$ %> Q@ A G ", +"p9 ]& $= $ ]& J$ + . = . ]& & Z, .( # # L$ ]& - U@ . Q$ & %= H= ] ' & ~ S$ ; H= T@ # > > > ] ] $= |* ; U@ ; ~ | ' H= P$ H= 4 %= { S$ & ] W@ ) 7- [ ~ ~ N$ /& X@ 4 | / D, <& Y@ &# Y@ Y@ q> / { +h @h #h #h $h %h 6 d } $# 8 $# j 0 ,# g &h *h =h -h ;h L= ~# Y> ~# 6 >h ,h 'h #( #( #( #( #( )h s> 0- |& {# n |& L= `$ m -) c Y$ Q{ Y$ p p p ;= m w 2, % % h 6* D /# }# ^# /# A ^# N /# /# w z 8* E$ N@ I z P@ Y L A E$ O@ J P@ L !h ~h {h ]h ^h ^h /h (h _h :h b A5 '= X) r/ B5 |3 2h 0/ y4 ;1 3h 4h #( (5 5h F3 F3 F3 +: F3 13 F3 +: F3 }e Wf )b 13 6h Wf 8d H0 [e 7h ~b H0 :5 ]} 8h H0 L4 y1 9d &0 x1 S: b/ y9 b/ na 9h b/ A9 a9 A9 A9 A9 a9 a9 Qd Qc t[ rg 0h ah 03 }c d/ C{ t[ t[ >/ >8 >/ >/ >8 &^ Q5 Z< n8 o8 Q5 bh b3 Q5 o8 Ye Sd 35 L0 C9 Td 35 fd Rc 35 Rc M} A_ i9 ch T3 d3 T3 =^ S3 S3 6< =^ =^ 6< u^ v[ 34 34 34 34 34 D9 w^ /1 a^ Sc Z{ J^ 7< 7< Z{ 7< J^ C_ 7< `^ J^ C_ }_ 4| 3{ W5 }_ `^ `^ ;] `^ }_ f3 i( f3 M^ G{ D_ W4 Y5 (~ ~) ~) r8 J| ~) ~) y^ P! @{ u: t: 2c u: u: u: b] b] 2_ ] ] C/ k' :~ :~ k' k' _~ _~ k' X] s] s] -~ D/ 5+ >- N^ e~ >- .) e~ N^ l' t] ,] ./ ]) l' ^) ^) K> ^) ^) K> +) ~^ ./ ^) k; )- G* k; ,- G* H* Q, g+ )- l+ ;$ ;$ |] j+ ;$ l+ l; l+ l+ f= h+ l+ h+ n+ l+ n+ i= w+ '$ '$ =; =$ '$ s+ s+ )$ s+ o+ )$ !$ !$ 9> v+ D+ C+ E+ E+ E+ E+ C+ E+ E+ F+ F+ F+ G+ W2 G+ G+ dh (- 94 G+ C% Q+ (- f) eh R+ T+ Y+ p; _$ f) _{ _{ _$ _$ p; <~ +@ +@ p; %@ #@ %@ <~ %@ %@ &@ &@ %@ > %@ >@ &@ *@ %@ e] $/ v] %@ #@ +@ W+ $) fh gh hh ih $c jh kh lh mh )g nh oh ph qh Ig rh sh sh se th ]g sh ^g sh se {f uh vh %e %e wh xh yh zh Ah ud ud ud Bh Ch 4b Dh 6b Eh Fh Gh Hh Ih Jh Kh Lh 5f 1g 2g Kh Mh Nh Oh Ph Qh Rh _f Sh Th Uh O{ .* |@ .& y; D= q@ k> p2 {. !. /* x@ )& x@ .= -. E@ !. $% .= G@ @. @. V B$ $> E$ +% O K@ Q@ T K@ M S 8* I x ", +"= 0' $ $ $ o! ]& & $ & = = Z, - + X! - & . = . + = T@ N$ Q$ ] ; - > h) & + + # . U@ ^ ^ ^ ; ; [ ; ] ^& ^ 2 ; & H= | P$ & ; | { , ] ~ ^ [ 2 1 ( ~ 1 ~ } Y@ 7- } } a 1 } $# 2 -# Vh #( #( b} Wh &# Y@ 6 ( 2* 7 a i 6 Xh Yh #( #( Zh `h c 0 i h 8 i m( #( #( #( #( #( #( .i g n r L= c{ o n Z$ c{ h % h n^ s> % L= y `$ w 1; m `$ s `$ `$ /# z 2; `$ % A G G m m ^# G z :# M I M O@ P@ O@ L A z I A T +i #( #( #( #( #( #( #( #( #( #( N_ E6 @i #i L@ q9 C$ X9 n) r4 r4 a* !& a* 5d @. G; $i 6# =. R' %i ;' A@ . ;' |h /3 /3 e- $% A0 A0 9# 82 Y6 b: b: 82 >b &i ~( *i B5 r/ J: A5 J: 1( f[ Ab x4 3h 4h #( (5 5h 3~ 13 F3 ,b +: 13 +: F3 F3 }e [e [e Wf =i =i -i ;i >i ,i [e Ue Nd 'i )i H0 L4 L4 L4 L4 M3 %0 ,2 }5 b/ !i ~i a9 a9 a9 a9 Qd Qd A9 a9 {i P5 F~ ]i Qc 0h P5 >/ d/ >/ rg >/ >/ t[ d/ t[ J0 a3 Q5 a3 a3 Q5 n8 o8 S5 P3 n8 Q5 o8 M} g9 p8 Rc M9 Rc M9 h9 h9 y/ A_ 3| M9 S3 T3 x/ Q] __ T3 T4 6< 6< 6< 6< 6< 6< U3 34 Sc v[ .f 44 Sc ^1 Sc ^1 ^1 7< J^ J^ Z{ J^ Z{ C_ e3 }_ J^ }_ 3{ `^ 3{ 3{ 3{ }_ 3{ 7< }_ i( [] 1c [} X5 y) f3 W4 F1 ~) @{ @{ y^ t: @{ O} y^ y^ u: M^ !/ '^ Z: 75 ~2 [^ A) ] ] :~ P} :~ ] _~ ] ] _~ ] ] :~ k' w- w- :~ -~ i! i! i! .) >- i! -~ .) -~ G* +! .) u~ h, ^) ^) %$ G* e= e= u% ^) e= )- G* G* ^i G* e= H* P, l+ j+ l+ l; n+ ;$ n+ n+ ;$ l+ n+ l+ n+ l+ l+ l+ n+ h+ O& /i t+ s+ o+ O& h+ r+ )$ x+ )$ s+ '$ !$ !$ 9> v+ D+ F+ F+ D+ D+ E+ P& (i F+ F+ F+ Ib G+ 4c G+ W2 W2 5c _i W2 F% F% n2 F% f) G% _$ Z+ L| Z+ Z+ p; p; p; _{ p; '; '; +@ _{ +@ %@ %@ '; #@ &@ %@ >@ %@ [- %@ *@ &@ *@ *@ &@ $/ I% *@ %@ #@ @@ ($ :i f si ti ui vi wi U+ r; 6@ X* xi ~> -& u@ q@ (. d# x$ A@ -. -. {. z@ A@ A@ B$ -. $. .= 2# T ` X> Y @% K@ H K@ L@ P@ M@ S K@ P@ A ", +"V@ 0' = Z, X! .( $ o! - $ . > = V@ !, =' Q$ ; # . Z, . H= %= . = ] ]& > ] . . { & N$ ~ U$ ~ ; S$ ~ - |* U@ - *> /& H= P$ X@ > *# W@ ] . ] T- } { { ~ ~ 7- X@ 2 X@ ( d { 1 1 { ## 2 d 6 G9 ,# yi zi #( #( Ai Bi i [{ 1 a 6 ,# Y@ ## Ci $( #( m( Di b [& ~# ~# ,# s8 L[ #( #( H1 Ei .5 Fi Fi Gi !# K/ _# `$ L= n z: p p L= Y$ n^ L= m `$ 2, % C w h t I ^# G 1; w w n^ <, z O@ 4* ~& w `$ M S ^# P@ M N I J M O@ M P@ P@ I L Q c7 #( #( #( #( #( #( #( #( #( #( #( #( #( ._ Hi Ii r9 r9 . r4 .= y0 G; .= E@ O= r5 $% $% =. 5# ~( =. $% R' :3 /3 F^ /3 :3 x5 Ji Ki Ic 9# Y6 9# 82 >b Y6 Y6 ;' ~9 {9 ;1 x4 d[ {9 J: ;1 ~] Li Mi 4h #( (5 Ni Se F3 W^ F3 Bb +: F3 13 #0 13 F3 }e [e [e [e Oi #( #( Pi 8d 7h +8 K4 ng Yf x1 Od 'i x1 Qi Oc Ve S: }5 Ri *0 }5 {i na a9 }5 a9 A9 A9 =0 Qd 0h Si W: {i =0 d/ d/ V{ c9 t[ t[ t[ &^ Z< >/ &^ Q5 Ti a3 Q5 O4 Q5 Ui P3 n8 n8 Vi Td Wi p8 S4 M9 Rc i9 Rc 3| M} Rc 3| >0 S3 T3 j9 u^ 6< d3 U3 6< u^ 6< 34 j9 `e V5 v[ D9 34 !8 H| D9 9e I| I| b^ 7< F{ J^ Z{ 7< F{ J^ C_ C_ C_ 7< J^ 3{ `^ H{ `^ `^ W5 3{ W5 [} [_ H{ i( 65 G{ i( @{ t: F1 @{ @{ @{ y^ y^ t: t: y^ u: 2c k/ :/ [^ u: 2c b] j^ k' k' _~ j^ %, %, ] ] _~ _~ ] _~ _~ _~ X] w- _~ ] #{ i! i! {/ N^ -~ -~ .) t] #{ i, 7+ ]) G* ^) e= ^) G* e= u~ ,- G* G* +) +) G* ,- ,- e= H* ;$ l+ j+ g+ l+ f= l+ l+ ;$ h+ h+ l+ l+ ;$ l+ l+ n+ n+ n+ =$ O& M& '$ s+ =; h+ =; o+ !$ !$ !$ Xi x+ w+ !$ x+ !$ 0e E+ D+ D+ D+ 0e Yi D+ 94 F+ W2 G+ W2 G+ G+ G+ 94 o2 C% G% G% .^ G% F% L| _$ _$ f) @/ L| _$ p; Z+ p; _$ _$ _$ p; [$ +@ #@ #@ '; %@ &@ $@ &@ *@ &@ &@ &@ *@ *@ &@ &@ p= C^ %@ #@ +@ X+ Zi `i j .j +j @j #j me $j >f %j 4i 5i 5i &j Ch *j ic ic rh sh se Lg se sh th ]g se se ]g sh ^g =j ^f -j ;j >j Mf ,j 'j )j !j ~j ~j {j ]j ^j ^j /j (j _j :j * j- m@ ^* :. N- = v@ ~. '. -. A@ &. &. 5# 4& z$ (* +. P L@ P E@ F@ P K@ +% M J@ C$ J@ H K@ P@ S :# ", +"# p9 0' = # = = = . }* . # . > T@ & ]& - = = $ > # . S$ + . > $ + * ] S$ ; =' *' H= | | 7- ] | ' ; ~ ] - & ; ~ ] X@ | 2 ; (& | | ~ } [ 2 W@ { P$ /& ~ X@ /& $# 1 => d } / Y@ 7 ~ 4 D, 8j $( #( $( 9j i &# ,# e 0 D, Y@ G8 >[ #( #( 0j 0} k k e c 7 aj d< #( d< bj @4 ~# L= e n ~# r r Y$ s> r L= n^ n n h Z$ /# cj D w m <, Z$ `$ m @= p ^# Z$ b' w x m w z p y /# G 2; z 1; A A n! N O ` Y E$ L M M@ M J dj #( #( '3 ej ~3 E6 ~3 88 fj gj #( #( #( #( #( F< hj T !> @. r4 G; . r5 r4 $% $% ja a* A0 $% $% =. /3 ;' /3 A@ +. ;' =. t( ;' df &i /3 b: b: Y6 9# Y6 82 ^5 Y6 A5 82 << ^5 2h << J: x4 =2 ij 4h #( (5 5h +: 13 W^ F3 W^ 13 }e 13 mg F3 Cb mg }e [e }e Oi #( #( jj 1e kj ng >2 [| +8 ma lj &0 ng mj %0 ,2 a9 }5 H^ ,2 }5 }5 Qd Qd Qd Qd Qd w/ B7 A9 nj Qc c9 rg }c W: >/ 03 c9 >/ oj d/ >8 &^ >/ Q5 n8 a3 n8 Q5 a3 Ye o8 P3 n8 Zf Ye Rd ]: n8 Ye R4 R4 Rc 35 S3 M9 8e 8e d3 ch j9 d3 d3 __ >0 d3 v[ U3 `e v[ V5 34 6< 6< 6< 34 34 +[ 44 /1 J^ <} .f F{ 7< 7< Z{ J^ J^ Z{ 7< 7< C_ e3 e3 W5 }_ `^ f3 `^ K^ }_ 1c e3 T] W4 [_ [_ W4 F] W4 ~8 F] @{ ~) @{ y^ y^ y^ Ud t: y^ S( J| y^ b] S( V] [^ [^ _~ _~ _~ ] ] k' :~ _~ _~ _~ _~ ] ] ]{ d= >] w- m2 X] e~ i! e~ .) N^ i! < ]) #{ .) e= .) i, e= e= ^) e= e= u~ e= G* ^) ,- G* e= ^) G* G* %$ )- l+ ;$ )- ;$ w% g+ h+ ;$ l+ l+ n+ h+ n+ n+ h+ n+ n+ O& n+ *$ h+ o+ '$ '$ m+ pj )$ o+ x+ x+ !$ !$ !$ !$ !$ !$ 0e D+ F+ F+ D+ D+ (i D+ D+ Ib G+ G+ E+ F+ W2 G+ 4c 5c 4c ^7 G% Y+ f) L| L| _$ Z+ _{ Z+ _$ _$ p; _$ p; p; p; '; '; Y3 _$ #@ #@ %@ %@ &@ > &@ *@ &@ %@ >@ V, *@ %@ %@ > c> qj +@ [$ V& 6c rj 6j pc sj tj [j uj vj wj xj yj 5i 5i zj Ig *j jc &d sh sh sh ^g Aj Kg #e #e /g /g /g se Kg /g 7i {f {f Bj Cj :b Dj ,f Ej Fj Gj (j (j ]j (j (j (j (j 4f )j Hj Ij Jj Kj Lj Oh Mj |i ]e Nj Oj Pj Qj ta )@ f$ d@ d@ j@ d# d# = (. ,& x@ F, A@ '. B@ 5# !. R $> 5# ;. 5# H@ V G@ C$ L@ H T P@ 1& K@ m) J M@ P I G ", +". + 0' = + + 0' * ]& = & ; S$ J$ + * $ - = ]& T@ . . Q$ N$ - - & ] R$ 0' ~ Q$ U@ H= Q$ > ] S$ ~ U@ [ > ^ R$ ~ 5- ; N$ ) - ^ X@ %= ; ; X@ 2 { | | ) | 2 { 2 | 8- } 5 Y@ 1 } $# 9 } ,# 6- | 4 Rj Sj #( #( Tj Uj J= Vj a U- [ e %< #( #( -6 Wj e n C; 8 7 {# Xj $( #( Yj Zj ~# 7 e c h n m 2, r c L= c a -) Z$ p n t p 1; % 1; 4* ;) p t w G A % /# w C ^# N /# /# ^# %> I A I I A A E@ +. a* H9 &k r9 L) =. 5d y0 e- $% >. =. =. /3 A@ ~( /3 $. /3 9# Z9 =. $. $. 5; p/ 9# gg b: >b 0/ b: Y6 82 J: X) x4 x4 r/ x4 ^5 ij *k #( (5 Ni =2 W^ W^ W^ +: 13 13 F3 F3 13 13 }e 13 13 [e =k #( #( jj E0 -k |e =/ =/ H0 hf E0 M3 M3 Od !i ;k ~i }5 b/ >k }5 }5 }5 A9 {i A9 Qd Qd Qd {i {i 0h ,k }c c9 }c }c >8 >8 >8 >8 'k J0 a3 >8 J0 n8 >8 n8 o8 Q5 Z< o8 n8 o8 Ye Zf )k C9 `f Ye M} 3| S3 3| M9 Rc Rc 8e j9 .g 35 d3 d3 45 j9 T3 34 34 34 .f v[ .f 34 V5 34 !k V5 ~k Tc {k 9e D9 <} J^ J^ J^ 7< ]k 7< 7< /1 e3 3{ C_ J^ `^ W5 3{ T] }_ T] `^ }_ W5 W5 j/ ^k j/ W4 F] W4 G{ 74 y^ ~) @{ y^ h^ y^ t: y^ @{ c~ u: B/ 2c [^ L^ u: [^ C/ /k k' _~ _~ ] :~ ] %, k' ] k' k' s] s] s] g, X] _~ w- e~ d] +! ]) i! d] ]) ]) .) e= l' l' G* e= G* e= e= K> e= G* >~ %$ ^) ;~ e= G* %$ G* f= n+ ;$ u% n+ Z] n+ l+ ;$ ;$ z- n+ n+ h+ l+ m+ n+ h+ k+ n+ n+ M& =; )$ )$ M& (k '$ o+ '$ x+ x+ s+ )$ v+ 9> v+ 0e D+ E+ E+ G+ D+ F+ F+ F+ Ib G+ G+ G+ Ib W2 W2 G+ W2 G+ (- o2 G% 8| F% V+ Z+ Y+ p; p; Z+ _$ p; p; p; <~ p; <~ '; _$ p; &@ &@ %@ <~ #@ &@ &@ &@ *@ &@ *@ 7$ %@ m, *@ >@ *@ 1] #@ W+ U+ of _k :k f ak bk ck ]j (j _j dk (j (j _j ]j oe ek fk gk hk ik jk kk ]j lk mk we %b nk 6c .* X% d@ :; ~* a. u@ s@ h# (. d# x@ !. A@ v{ p, >. e- .= +. =. +. @. E@ C$ 2# 1# G@ 1# J S }; A S z |; I N@ ", +"V@ T@ (& & |* & * $ $ & $ ; V@ + ]& + Q$ L$ * Q$ o! & Q$ V@ & H= & H= ; & + ~ > | | & . N$ H= N$ U@ N$ ~ ; > | N$ [ ; | & T@ ; P$ N$ ; 5 { X@ < | U@ ~ ~ { | V~ 1 { 2 %# / } Y@ [ d ,# 9 Y> { c5 ok d< #( #( pk $# 3* k 7 ># qk rk #( #( sk ~# i K/ 0 e c e tk #( #( uk r c g h ~# h s> c s> ]# e K/ n L= |& ^# vk s> t p % Z$ % ;= {& <, D z m s> w w w w E; A D % F= G w 8* G w J P@ O@ S Q@ 8* 7* M J Q x E$ L `j #( #( wk xk T G$ P' H L 4# C$ P yk f7 #( #( #( zk Ak C$ O= 4# r4 X9 r9 Bk ,. r4 G; ,. /3 =. =. =. =. 9/ ~( ~( Ji v{ >. =. /3 c[ ;' 9# Y6 Y6 Ck 82 Y6 Dk Y6 82 82 1( ;1 r/ ff J: J: f[ Ek 4h #( (5 Fk =2 =2 W^ +: +: W^ +: F3 Jc Gk 13 }e 13 13 [e Oi #( #( Hk / J0 Pk a3 Q5 >8 Q5 ;8 n8 n8 a3 o8 o8 o8 o8 n8 C9 Qk o8 R4 o8 `f Rc M9 m{ M9 Ze .g Rc A_ M9 h9 d3 T3 d3 __ gd T4 V5 V5 v[ 34 v[ .f !k .f .f .f V5 44 Rk 9e +g 44 !2 C_ F{ F{ J^ Z{ 7< J^ 7< C_ J^ e3 3{ 3{ 3{ [] `^ W5 }_ }_ T] `^ K^ W4 K^ X5 j/ F1 [} r8 ~) ~) ~) ~) @{ y^ C' y^ q{ u: @[ @{ t: [^ 2c M^ [^ b] [^ ] :~ %, _~ :~ _~ _~ k' k' _~ k' s] c] m2 e~ e~ ] _~ i! g, -~ .) #{ i! ]) ]) .) i, .) .) u~ ^) 0+ e= e= K> K> %$ %$ G* ^) ,- G* %$ 0+ e= ,- l+ ;$ f= l+ g+ l+ l+ l+ ;$ w% m+ l+ n+ l+ k+ h+ h+ h+ m+ h+ h+ h+ s+ )$ )$ F' )$ )$ o+ w+ u+ x+ 8> 9> !$ v+ 9> F+ D+ E+ F+ F+ W2 F+ (i D+ F+ G+ F+ F+ W2 G+ W2 G+ ^7 Sk 4c ^7 F% F% f) Z+ _$ _$ Y+ Z+ '; _$ _$ '; '; '; <~ _$ +@ _$ #@ &@ %@ <~ '; V, &@ %@ &@ > > p' #@ ;@ *@ >@ ;@ 6/ f~ +@ U+ P+ Tk Uk Vk Wk Xk 4f ri Vg Yk Zk `k 5k 4i 4i Xb l *j &d Jg sh sh Lg se th #e .l {f {f {f ^d {f /g =j #e se /g ^d +l @l #l hi pe $l (j dk ii _j dk %l 'f &l *l =l -l ;l >l ,l jk 'l )l !l ~l {l 9g ]l ^l &@ 4@ 7@ A= -& o@ _. {* ^. (. /. /* &. A@ 5# &. 6# $% 5# /l $% z$ X K@ L@ L@ P X E$ P@ A J J P@ P@ S A N@ ", +"R@ ]& - # ; # . + o! # - T@ $ o! = - Q$ 0' . . $ + Q$ ; ] . > $ U@ U$ # k) T@ & ^ N$ T@ H= H= > ; 8- | ] - X@ ^& ) | H= & > X@ 2 1 ; [ ~ 2 ) W@ { ) d 4 | | 8- { ~ D, &# d d [ 6 d 6 Y@ 1 e (l _l #( #( :l ~# r ,> m c |l 1l 2l 3l 4l m s> `$ b' % 4* D G `$ C Y$ /# G T8 5l 6l h| X[ N= w z I w K M A H$ N P@ J J E$ O@ E$ |# J I E$ J `j #( #( wk 7l J 4# C$ S G$ L@ E^ V O= 8l 9l #( #( #( 0l I@ O= y@ @. 8# Q' .= ,. =. $% al bl cl !( dl g_ ;' ;. ~( ,. /3 6# >. z0 A0 Ki 9/ b: b: Y6 el fl gl hl il jl r/ r/ r/ r/ Y6 L] ;1 ij 4h #( (5 kl W^ =2 =2 F3 F3 F3 +: F3 13 }e }e }e }e 13 :4 Oi #( #( jj ~b ll Nd =/ ml K4 ~b 8h hf %0 ng ;k nl ol pl ql rl ql sl A9 a9 tl Pd Qd A9 A9 0h Pc I0 Lk ul oj vl oj ul }c wl xl yl zl Al Q5 >8 Pk n8 Q5 >8 Ye Q5 Q5 o8 d9 n8 Vi n8 o8 K0 fd Bl Rc M9 Rc 8e c3 M} 8e Cl T3 i9 T3 S3 x/ u^ Dl d3 j9 U3 45 6< v[ El 34 34 .f .f 34 .f I| 9e ]k +{ 34 )2 7< J^ 7< J^ 7< C_ J^ C_ J^ 7< 3{ `^ `^ T] W5 `^ }_ 3{ W5 W5 }_ j/ 1c [} ~) y^ F1 r8 Y5 E_ y^ 74 y^ y^ @{ y^ @{ y^ :/ @{ Ud 2c @[ k/ u: [^ b] k' ] ] ] _~ _~ _~ ] _~ _~ _~ _~ ] _~ X] e~ ] ] -~ i! i! k^ .) g, #{ .) l' +! i, .) l' K> G* e= ^) e= K> G* G* ./ G* +) G* ^) u% )- k; Q, Q, H* *$ ;$ l+ n+ n+ h+ l+ n+ l+ l+ -$ l+ h+ m+ n+ l+ k+ =; o+ s+ '$ o+ o+ 8> )$ )$ x+ x+ Yi )$ Xi Fl Gl v: E+ E+ F+ D+ F+ n; E+ n; F+ D+ F+ G+ G+ sa G+ G+ 4c ^7 ^7 $g F% G% f) f) _{ _{ _{ p; _$ Hl _$ _$ _{ _{ _{ L| '; p; <~ #@ #@ #@ '; <~ %@ *@ &@ *@ v] &@ %@ #@ :- *@ #@ %@ B[ B[ M* Il .@ yg Jl Kl Ll Ml $j Nl bc Ol Pl sh Ql Rl 4i oh 6b ph l Ig Ig sh sh sh Kg sh 7i (f {f ^d {f .l Sl Kg sh sh 7i Cf ac Tl Ul Vl &l 4j hi )l [j _j _j _j _j 3g Wl Xl Yl Zl `l m .m Yg 'f je +m gb @m #m $m *@ 4@ $& e@ :; l@ N- -& d# {. >& >& u@ x@ $% z@ &. A$ 5# z@ E@ X T $> H G@ 7# T O= H@ A P@ E$ M q! P@ +% J ", +"R@ # $ ]& > . . + Z, . 1* ; T@ * ]& * R- ]& ; . Q$ = & - & . ^ ; . > Q$ N$ | . ' P$ & P$ P$ H= ; X@ H= ] - ## ] *# X@ ; N$ Q$ N$ 2 N$ X@ ~ { W@ / [ ) 2 / ~ ~ { X@ N$ X@ ( / ~ 4 6 } 6 Y@ %m => 1 [ &m H[ #( #( *m ( 7 d =m b} #( #( -m L= ~# a 8 a ;m >m ,m 'm #( #( )m !m ~m {m ,m ]m s> ~# 0- g K/ C; ]m ^m Yj H[ m( /m (m _m :m ]) ]) d+ G* ^) ^) K> i, %$ e= e= 0+ K& K> G* u% G* %$ S) Q, h, l+ ;$ l+ l+ ;$ n+ n+ l+ m+ h+ h+ ;$ l+ l+ h+ l+ m+ M& M& o+ '$ )$ 9> !$ 8> v+ 9> !$ )$ 8> v+ 9> v+ (i E+ G+ D+ D+ G+ G+ D+ F+ 4c G+ F+ G+ W2 Uc F+ W2 ^7 P9 W2 F% L| f) L| L| f) _{ _$ _$ Z+ Z+ L| _$ _{ p; _$ nf Z+ Z+ #@ %@ %@ <- <~ %@ '; *@ D- *@ S> &@ &@ &@ &@ %@ R> +^ @^ X+ X2 .n +n @n #n $n ^e %n &n *n =n -n ;n oh Rl 5i 5i 5k >n 7k 7k Ig &d Ig jc ]g ]g ^g ^g 7i 7i se #e jc sh sh ^g se Sl ]f wc ,n 'n )n &n ]j ii [j _j _j hi _j !n ~n {n ]n ^n /n Hj Nh (n _n Eg ^e ti `g :n ; . = ; > ]& $ > & $ # T@ + > . = X@ ] S$ . | & $ ; . Z! & %= ; ~ ( & %= & ; | %= { ; ; ~ ~ ~ ) ) [ ~ ~ ; { Z! Z! ; 2 X@ N$ 2 ( 1 ) } 6 a / 4 2 a }n #( #( |n 1n } 2n 3n #( #( X} 4n a e 6 M' j 5n #( #( #( #( #( #( #( #( #( #( 6n j g h Y$ 7n e5 |n #( #( #( #( #( #( #( ][ 8n 9n Z$ m 0n `$ x /# an bn #( #( #( #( #( #( #( cn dn L/ E$ I /# G w z ~& :* J E$ J Q@ |; H %> A M@ +i #( #( 5m 6m L J 4# I@ L@ L@ 0* d- 2# V X en #( #( W_ fn r9 . ={ .= H9 r5 L) gn O< #( #( #( #( #( #( #( i_ hn 9[ A0 A@ $. =. |h ~( in jn kn #( #( #( #( #( #( #( #( &: ln x4 mn r/ r/ nn *k #( (5 Ni B0 Bb B0 F3 F3 on pn h8 #( #( qn rn sn tn #( #( #( #( #( #( #( #( #( #( un Oc ma )i if M3 vn wn #( #( #( #( #( #( #( xn yn Pd Qd Lk zn Mm zn Mm An #( #( Bn Cn Dn En #( #( #( #( #( Fn Gn Hn o8 Z< J0 n8 Q5 n8 Ye o8 Vi In o8 bh Ye ]: Ze Zf Bl Bl d3 ch Jn h9 8e h9 d3 T3 S3 i9 >0 u^ U3 T3 Kn 34 6< 34 v[ `e .f v[ 6< 34 34 .f H| qa 55 Ln Mn J^ 7< J^ 9e 9e C_ C_ J^ e3 3{ J^ C_ `^ }_ j/ W5 3{ `^ `^ `^ `^ ^~ [_ }_ h^ @{ F] #g ~8 74 @{ B/ @{ t: @{ y^ @{ K{ B/ ~2 :/ U] Y: lf k/ j^ A) A) ] :~ _~ k' ] _~ ] `' _~ k' _~ _~ :~ k' e~ i! >] ] >- Z5 i! .) i! g, ]) l' >- a+ i, l' .) .) u~ e= >~ i, K> G* %$ G* G* )- G* e= G* %$ G* '- S) |' )- ;$ l+ ;$ l+ l+ ;$ m+ n+ h+ y- y- l+ n+ n+ h+ m+ q+ o+ '$ Nn )$ M& !- '$ )$ 8> 9> !$ )$ !$ v+ !$ 9> 0e C+ G+ F+ G+ G+ G+ G+ G+ G+ On G+ W2 `5 4c _i f) W2 W2 4c F% f) Y+ f) f) Y+ Z+ p; '; f) L| _$ Z+ p; L| '; <~ <~ #@ %@ +@ &@ &@ %@ &@ %@ m, >@ `& 7$ &@ &@ ~; &@ #@ M* 6/ g) Fc Pn Qn Rn Sn Tn 3f Ih Un Vn Wn Xn Yn Zn `n 5i Bh Ql o Rl 5k 6b 6b bb *j ab &d &d Ig sh ic .o Ig *j ab .o Ig &d sh /g fe td +o @o Vl |k #o _j (j _j (j $o %o &o *o =o gk ~n ^n -o ;o >o je +m ,o Z0 'o )o W+ |@ $* o$ :; -& a. u@ 5& ~. t@ {. !. {. p, z@ E@ $% B$ -. 6# z@ +. X }; G@ ` ` C, Z H A M D$ o> M Q@ E$ ", +"- $ Z, + 0' . $ k) $ 0' . S$ + $ . & Q$ U@ . + $ R@ o! Q$ ; ; $ }* . . [* . . | H= o! ] U@ & ] & N$ ; ; - *# 2 ; ^ ; Q$ H= o! ; =' & | ) ; - N$ 4 { ] 5 1 V~ Z@ ~ 2 <& ( ) 1 ( 1 } [ $# b 1 6- J= !o ~o #( #( _l 5 {o $( #( $( ]o =# ~# d o {# ~# 5n $( #( #( #( #( #( #( #( #( #( ^o g a C; /o (o #( #( #( #( #( #( #( #( #( #( _o :o m D m % m 8 Fb Q5 Q5 Q5 po Ye Vi Vi Vi o8 Ye Ye Td Rc Sd Cl qo `f K0 8e ro so to T3 d3 S3 S3 d3 45 uo j9 gd T3 U3 vo 34 R( V5 34 v[ V5 34 Rk <} wo 9e xo yo Sc J^ 7< C_ Z{ J^ Z{ C_ C_ }_ C_ 7< zo `^ `^ e3 T] }_ K^ }_ }_ }_ T] [_ j/ j/ Y5 [_ ~8 F] ~) @; y^ @{ ~) @{ @{ u: y^ y^ b] y^ u: S( :/ k/ A) b] A) k' _~ _~ k' k' ] k' _~ _~ _~ ] _~ X] g, g, ] w- +! >- g, .) #{ i! d] l' .) #{ G* l' l' i, ^) ^) G* L{ %$ G* u% G* G* u% ,- e= k; %$ G* e= Q, S) 0+ n+ n+ C) ;$ l+ l+ h+ h+ h+ n+ n+ n+ n+ r+ n+ n+ h+ n+ '$ s+ '$ =; h+ pj )$ o+ v+ 8> Ao o+ v+ 9> Xi v+ y+ n; E+ G+ (i F+ F+ F+ F+ F+ G+ W2 sa _i ^7 f) F% P9 4c G% L| L| L| F% Z+ Y+ Z+ Z+ Z+ _{ '; '; p; p; p; p; '; :- %@ &@ %@ S> %@ %@ %@ &@ p= %@ &@ S> *@ *@ &@ &@ *@ q; G' of Bo Co 'd Do Eo +m Ml Fo =n Go Ho Io Jo Ko Lo ud Ql Mo Ch ud 7k Xb 6b Xb Wb 6b 7k ph ph l 7k Dh 5k 6b 6b ab &d ]g ^g /g $e No Oo Lh |k Po Qo dk (j &l Ro So To gk Uo Vo Wo Xo Yo Zo `o p .p +p @p #p $p H' %p o$ i@ &p j@ u@ :. >& B= E~ ^. '. !. ). &. '. ). E@ z$ 0# z@ . V 5# 4# C$ P P H T J A S b- Q@ A z ", +"T@ $ L$ + = p9 > ]& ' $ . Q$ Z, ] > > . - . $= > = > > # Q$ ; # ] N$ > T@ & ; - $ Q$ . ' H= T@ - ; H= N$ Q$ ; W@ { ~ ) | V@ Z! X@ ~ { 2 X@ ~ / 2 , | W@ ( D, ~ d $# d /& ( 6 } [ 6 < ( ## Y@ !# 6 $# *p #( #( d< =p -p #( #( ;p >p j ~# } 7 a j ,p 'p )p !p #( #( ~p {p ]p ]p ^p /p m ~# `$ (p 7_ #( #( c} _p :p

M 3; J o^ I$ L bp #( #( wk 9 3# Q L@ J I@ O= J O= I@ r9 q9 cp dp #( #( ep O= O= q9 ja 5d fp 4: #( #( M2 gp hp ip jp kp lp #( #( m7 mp V^ =. /3 x5 np (( #( #( a[ op pp gm qp rp sp _( W_ tp r/ r/ r/ x4 up 4h #( (5 Ni f[ Jc =2 +: vp wp w( #( 4h xp 13 }e yp zp Ap Bp #( #( Cp Dp Dp Ep Fp Fp Gp H0 'i H0 Hp Ip #( #( ]_ Jp Kp Lp Mp Np *8 #( #( Op Pp Qd {i Qd A9 I0 Qp w( #( Rp Sp #( Tp Up Vp Wp Xp Yp #( #( Zp `p Pk o8 a3 ed a3 n8 o8 n8 Ye Ye n8 Ye Sd Rc Td Vi q Cl h9 .g q so .q h9 3| T3 d3 T3 j9 `e kf gd j9 q8 V5 34 34 V5 34 V5 .f v[ vo V5 Sc V4 +q yo ^1 J^ J^ Z{ 7< 7< 7< Z{ 7< J^ `^ 7< C_ }_ 3{ 3{ }_ ;] 3{ `^ W5 W5 [} j/ j/ [_ <^ <^ r8 @{ y^ @{ ~) Ud y^ @{ y^ t: h^ y^ Z: u: t: r{ :/ y^ [^ C/ b] k' _~ ] %, _~ _~ _~ k' _~ ] _~ k' X] g, e~ Z/ Y] ]{ >- +! N^ ]) -~ i! -~ .) .) i, i, t% .) G* G* e= e= %$ %$ e= 9+ h, %$ ,- ,- G* G* %$ 0+ Q, S) @q j+ n+ g+ l+ n+ l+ l+ n+ h+ l+ *$ ;$ h+ =; n+ n+ h+ n+ =; s+ ,$ '$ !- )$ )$ )$ 9> v+ #q Ao v+ Yi Yi v+ G+ D+ D+ G+ G+ G+ D+ W2 4c G+ W2 4c 4c $q P9 4c f) T& ^7 F% L| f) f) f) 5c _$ _$ p; p; p; Z+ p; <~ <~ <~ p; p; p; %@ &@ *@ #@ '; %@ &@ *@ >@ %@ &@ &@ %@ &@ %@ %@ +@ W+ %q /- &q *q =q -q sf ;q |f >q Wn ,q Ho 'q )q !q ~q Ja oh 4i Ql Dh 5k 5k Ql 5k 6k 5k 4i 5i 5i 5i 5i 5k 5i 5k 5k {q *j Ig se /g ^f ]q Tl ^q /q (q _q (j :q %o * a. l@ {* w$ C= >& %% (* +. z@ E@ 5# +. z@ $% &. .. +. +. 5# P M@ P@ K@ Y Q@ J S P@ @% P@ M 3# ", +"= = * $ T@ M$ & + * . . Q$ Q$ > ; & V@ $ o! & }* z] * - * . * > P$ ; ; - Q$ > # ; `@ *# X@ ~ Q$ [ | ] S$ N$ W@ 2 > N$ ~ V@ | 2 & ) { ^ | < / { ~ ~ W@ | | N$ Z@ *# 2 ( { ) < $# 1 6 } d [ 6 ,# aq bq #( #( cq #( #( d< dq 6 ,# j a 3* ~# ># ~# 0 j )h #( #( eq o 6! 6 [& n Y$ s> fq gq #( #( hq iq e ~# r s> |& c jq kq v6 p `$ D l< lq #( #( mq nq p B :# {& I oq y< #( #( pq qq w w M S K z M I H P@ n! M O@ d- M dj #( #( rq 6m M@ T G$ D$ P 58 4# T 4# O= P sq tq #( #( uq vq r4 ja ja G: wq #( #( xq yq ,. 6# .. $% $% zq Aq #( #( Bq Cq =. /3 b: Dq +_ #( 7o Eq Y6 b: <3 b: Y6 82 Fq Gq Hq A5 x4 ;1 L] Iq 4h #( (5 Jq =2 Q/ 3~ Kq Lq w( #( Mq Nq Oq [e [e [e 13 13 Pq #( #( jj Qq Wf Rq =i =i Sq )i Yf ma Tq #( #( +_ Uq Vq if >k a9 Wq Xq ]_ #( #( Yq {i Zq cd a9 }5 `q w( #( #( #( r .r rg t[ t[ >8 +r @r #( #( #r $r Q5 n8 n8 Q5 n8 o8 Ye Bl Bl %r Ye Vi Td `f Ye o8 c3 Rc .g `f i9 .g 8e T3 n kf El T3 j9 T3 gd El v[ v[ u^ 34 34 v[ 6< V5 V5 34 v[ <} !2 +{ 44 Ln J^ )2 Z{ J^ 7< J^ ]k C_ 7< `^ Z{ 7< }_ `^ T] f3 W5 `^ 64 W5 T] }_ [_ [_ K^ ^k ~8 G{ ^k (~ @{ @{ ~) r8 @{ y^ @{ @{ y^ u: c~ h^ c~ [^ k/ b] r{ b] N0 k' k' %, $[ :~ _~ ] _~ j^ ] k' B* d] i! e~ c] k' >- ]) i! #{ .) g, -~ -~ 7+ i, i, .) ]) e= e= %$ %$ G* G* G* 0+ e= e= |] ,- G* G* G* G* U; S) S) j+ l+ f= n+ n+ l+ n+ l+ l+ l; h+ n+ n+ h+ h+ =; k+ m+ =; o+ ,$ o+ o+ w+ o+ Xi v+ 9> v+ Yi v+ v+ 9> 9> 0e F+ G+ F+ E+ G+ G+ W2 W2 W2 G+ F+ G+ F+ 4c &r W2 _i V& L| L| F% f) F% _$ p; p; p; p; '; m, p; _$ p; '; p; p; %@ &@ %@ %@ %@ *@ wg <~ V, *@ >@ &@ %@ #@ %@ #@ #@ #@ @@ U+ *r =r 6j -r ;r >r ,r 'r )r !r ~r {r ]r ,q Xn ^r /r (r yj 5i 5i Ql 5k 5i _r _r :r !, + ]& Q$ . ~ & . > ; . . ; . # S$ + * #^ ; ~ =' ; U$ & . U@ | | H= H= & ] | - ; ; ; `@ ] ^& { X@ - } ( ~ ## 2 / { ~ W@ } / 2 [ 1 5! | [ 1 6 [ { < [ ^ V~ ) d a 6! 2d d ,# hr I1 #( #( #( #( ir _7 ~# ,# L= d d e e ,# c {# [l #( #( }l h h 0 c {# {# c jr #( #( d< kr g p L= _# A~ {# p ^# 2, l _# p Y$ lr c} #( 7_ mr G F= G /# A ~& N nr 7_ #( or pr M A S n! I P@ M@ S P@ 8* J J S :* H$ dj #( #( 5m qr M L@ d- 4# 4# P' G$ T L@ J L@ I@ rr #( #( sr tr q9 q9 r9 ur 8: #( 7_ vr ,. wr F^ 6# /3 =. A@ xr +_ #( yr zr =. A0 df -} #( #( Ar Z9 Br Y6 c[ >b >b >b 82 82 <3 82 J: r/ J: Iq 4h #( (5 Ni 2h Jc Cr Dr 7_ #( (5 Er F3 +: 13 6h 13 }e =i Oi #( #( Pi Qq Qq Rq s9 =i :c 8h ~b Fr Gr #( #( Hr Ir jf mj Jr *0 Ri Kr Lr #( #( Mr Nr Mm ad -8 {i lo w( #( #( Or Pr Qr 03 oj rg >/ Pk Rr w( #( Sr Tr a3 Z< a3 Q5 n8 n8 o8 o8 Bl %r Vi Vi Vi Rc `f Bl M9 h9 35 Ur 35 8e Vr >0 >0 n h9 S3 j9 __ >0 El U3 gd v[ 34 6< f 34 34 V5 V5 .f @g V4 9e {k <} ]k J^ J^ F{ J^ F{ J^ 7< J^ e3 C_ e3 }_ }_ `^ T] Y5 f3 `^ }_ T] }_ }_ r8 1c j/ W4 F] W4 ~8 G{ y^ y^ ~8 74 @{ y^ y^ V] k/ [^ y^ V] A) y^ T( [^ D' A) k' _~ j^ k' _~ k' ] _~ _~ _~ _~ Y] X] g, e~ w- ] V3 #{ i! g, l' #{ g, l' l' #{ e= i, l' K> G* U; e= G* i, G* k; ,- e= ,- 6> G* %$ f= u% %$ Q, S) g+ *$ l+ n+ w% m+ n+ '- C) h+ h+ h+ n+ M& h+ h+ h+ n+ !- x+ o+ o+ '$ x+ )$ o+ 8> Yi Yi v+ Wr Xr v+ Yr (i ~- F+ (i ~- G+ F+ F+ 3c 3c 4c W2 W2 G+ 4c W2 W2 W2 f) L| F% F% _{ L| nf L| nf _$ _$ p; '; p; _$ p; <~ p; '; &@ %@ *@ <~ %@ &@ <~ '; p' &@ &@ &@ &@ &@ &@ &@ @@ @@ +@ Zr `r s Mb .s Nj =f 6q +s @s #s $s 'q ,q %s Ho Io Yn &s *s 4i [r 4i 5i _r Lo [r xj =s Lo yj }r 5i -s Mo 6b 7k 7k Xb Ch ic &d #e ^d ;s yh >s rd rd ,s 's )s !s ]& L$ + > . + . X! Z, $ ; $ + T@ > [* > # # ^& S$ Q$ ; & > . > - Q$ . ) | X@ ] ; X@ | ] ; $ ; N$ - ) ) ( 2 > X@ ## - N$ ; | W@ 4 [ ( ## { R$ D, ] [ ( ( ## 5 6 $# [ ^ [ / < &# Y> Y> 9 J= :s p /8 #( #( |p 77 h D L= {# h ,# `$ C h h L= h % |s #( #( 1s 2s t w r G [# F= I 3s 4s #( $( 5s M z w I w P@ n! I O@ P@ #= J H >) >) dj #( #( wk 6s |# H ` J G$ r! Ld Y r! C$ L@ 7s 8s #( #( ._ 9s 7s r4 r4 0s #( #( as bs cs #. a* L) /3 $% =. ds es #( 7_ fs /3 A0 ~( gs #( #( ]5 t( gg t( Y6 >b ~9 ~9 82 Y6 >b >b J: r/ x4 Iq 4h #( (5 5h hs is js 7_ #( *8 ks yp 13 }e 13 F3 +: }e }e 63 #( #( Hk Wf Wf [e ls ms ns $0 )i os ]_ #( *8 ps qs rs ,2 qg !i 9h b/ ss ts #( w( us A9 {i Qd Qd lo w( #( #( vs Sm }c }c >8 oj Pk oj ws xs #( #( ys Pk a3 Q5 Ye o8 Vi o8 o8 o8 o8 Ye Ye Rd zs Rc Vi Rc c3 M9 Rc Rc Rc .g i9 S3 >0 .g d3 S3 45 j9 j9 45 El 34 V5 v[ f V5 V5 34 6< V5 ~k Sc J^ Z{ Ln N9 9e 7< F{ Z{ F{ J^ C_ 7< J^ C_ C_ C_ 3{ `^ [} H{ 3{ }_ }_ }_ }_ }_ ^k [} W4 [_ @{ F] b) As @{ y^ E_ J| y^ y^ t: t: P! i^ :/ L^ :/ c~ q{ b] [^ k' j^ k' _~ k' ] _~ :~ :~ ] _~ ] ] ] -~ w- i! 2_ Y] e~ i! i! .) l' 6+ #{ l' l' K> l' l' .) G* %$ G* G* e= G* j, +) %$ e= ,- u% G* |' *$ G* Q, w% n+ l+ l+ l+ w% ;$ n+ w% w% h+ -$ n+ h+ !- h+ h+ Bs h+ M& {$ )$ o+ )$ '$ o+ )$ )$ )$ Yi v+ Fl 9> Yi Yi v+ ~- G+ F+ W2 G+ E+ @f F+ W2 W2 4c W2 Cs sa 4c _i W2 _i F% f) Ds _{ _{ _{ _{ _{ p; ,; '; <~ '; Z+ '; nf Es p; <~ '; *@ &@ &@ *@ %@ '; %@ &@ %@ &@ *@ &@ %@ #@ #@ +@ +@ Il Fs Gs de Hs Is Js Ks Ls Ms Ns Os Ps Os 'q Qs Rs $s Ss Ts Us Vs oh 5i _r xj Ws Xs Ys 4i }r 5k Mo ph Ig &d jc jc 6b 7k 6b &d se {f Zs +l `s t .t +t @t )s )s !s #t To $t %t |j &t ]s &t *t =t -t /s $c /e ;t G% >t 6@ ,t && p@ o@ D= >& E7 ^. w$ ^. x@ 9# ). &. ]. A@ .= R .= 7# C$ H X E$ H P G@ Y M q! A H Q@ P@ M ", +"o! ; > & - $ ]& # # ]& J$ N$ * {c & %= $ $ V@ > > ; | & $ & > & $ ~ | H= ~ & Q$ ~ U@ & N$ & H= ~ > ~ H= - R$ ] R$ ^ *# | U$ ; V~ 4 | | & Y@ | N$ } 2 $# | %# , X@ ( { } } / 4 [ X@ [ 6 $# W@ 7 7 6 6- [ 't #( #( #( )t d ,# K= j 9 i 9 { e c Y> Y> [l #( #( }s } 0 L= a' o Y$ !t d< #( $( ~t !# 2, n n h _# 0- p ^# % `$ 4* $] h5 {t #( #( ]t w ~& D /# z ~& I 4* G ^t #( #( /t I E G N I H$ P@ z E$ 3& M n! H$ J >) dj #( #( 5m z6 |# T E$ U^ O= V O= O U r! n) O= (t #( #( '3 _t E@ ja :t b 82 ~9 x4 ;1 ;1 Ek 4h #( (5 4t 5t 8 &: #( +_ 6t 7t 13 +: on +: F3 13 13 }e Oi #( #( jj }e }e s9 8t Wf 9t 0t )i at #( #( bt ct L4 Kk if !i Jr >k dt et ft #( #( gt Qd tl Lk Mm lo w( #( ]_ ht Sm }c }c 03 oj >8 >8 >8 it #( #( jt Pk >8 o8 o8 o8 Q5 n8 n8 Ye bh Bl Vi sg Sd M9 Rc Cl 8e Rc .g kt .g i9 Rc d3 >0 .g j9 i9 x/ T3 d3 U3 v[ `e 34 34 __ vo V5 V5 .f V5 V5 @g U4 /1 7< <} lt ^1 7< e3 zo 7< C_ C_ e3 C_ Z{ C_ zo }_ }_ N! W5 W5 }_ `^ W5 1c r8 [_ T] [_ ~) y[ ~8 ^k r8 y^ F1 y^ @{ y^ {7 E_ t: J| c~ t: 2c [^ mt Ud b] b] j^ k' k' k' g3 ] ] %, Y# k' k' k' k' >- _~ g, c] ] ]{ -~ i! .) l' g, i! .) .) ;~ K> 7+ .) .) K> G* %$ G* G* i, G* G* e= ,- *$ G* 0+ ,- 0+ }' w% h+ j+ l+ l+ '- z- l+ f= w% n+ n+ n+ h+ h+ m+ h+ h+ q+ h+ q+ nt )$ )$ o+ v+ v+ '$ )$ v+ v+ x+ #q Yi Yr Yr ~- W2 F+ F+ 4c F+ G+ W2 W2 W2 W2 ot 3c _i sa 4c 4c P9 f) F% f) f) f) .^ L| $g _$ _$ p; p; <~ Z+ '; p; <~ <~ '; p; <~ %@ %@ %@ 4$ m, %@ &@ &@ %@ &@ %@ %@ #@ #@ @@ Z+ pt qt rt st tt ut vt wt xt yt Ms Qs Os Os Os Qs %s Ps zt At Bt `n Ja 5i 5i * ]& ]& * = $ $ = | | $ R- $ - . $ | . > Q$ ; Q$ $ ; # & T@ ] Q$ & ~ Z! ' 1 %= & P$ ) N$ Q$ N$ X@ 2 U@ 2 }* U@ *' =' Q$ T@ | ] ; { > 2] { | { W@ { 2 Y@ 2 } /& /& ,# } < 2 Y@ ( | 6 6 d 6 Mt Nt #( #( #( f6 Ot k 7 e 1 ,# 6 d V$ Y> 6! a .i #( #( Pt 9 g s> L= c Y$ Qt #( #( Rt St `$ D s> Z$ L= p r s> 4* Z$ n % b' Tt &3 #( 7_ Ut p F= m m p 4* t /# I Vt #( #( Wt z C G I ~& /# O@ P@ I O@ H$ M M L@ c' dj #( #( rq Xt G$ d- L@ T T Y T L@ 2# U V r9 Yt #( #( N_ Zt y@ ja `t 4: #( 7_ u r9 r5 =. $% .u $% =. $% $% -} #( #( +u /3 F^ =. @u &: #( +_ }t #u gg Y6 >b ;} 82 d[ `9 >b ef x4 J: ff Iq 4h #( (5 $u %u (5 #( w( &u *u 13 13 Se 13 }e Se Wf on Wf Oi #( #( jj =u Wf -u ;u 7h =u >u Yf ,u #( #( 'u hf jf qg qg jf *0 !i )u !u ~u #( #( {u ]u zn Mm Lk lo w( #( ^u /u {i oj (u _u oj oj Pk Zf :u #( #( 0 .g Jn j9 Cl |u d3 n >0 d3 __ 45 45 45 `e gd 34 .f v[ !k 34 V5 V5 34 V5 V5 44 Sc J^ Rk Mn !2 7< J^ C_ +f Z{ C_ C_ Z{ `^ 7< e3 C_ 1c [_ W5 1c r8 }_ 1c }_ zo S] r8 X5 74 r8 r8 ~8 1u ^k ~) @{ y^ y^ !/ t: J| h^ c~ '^ k/ Z: Y: k/ S( @[ b] A) _~ k' ] g3 _~ _~ ] _~ _~ _~ ] Y] Y] 6+ w- d= }^ 2u i! ]) ,] i; w- >- l' a+ G* G* .) l' a+ G* K> e= G* a+ %$ %$ G* ,- u% %$ %$ %$ G* %$ U; l+ g+ K& n+ u% f= h+ h+ -$ n+ k+ h+ l+ h+ m+ n+ h+ q+ M& =; )$ o+ '$ '$ !$ 8> '$ 8> v+ 9> 3u Ao Yi Yr Yi 9> G+ W2 F+ W2 F+ W2 W2 G+ W2 W2 G+ G+ 4c sa W2 P9 ^7 Q+ L| f) P9 F% L| P9 ot _$ @/ '; p; '; <~ '; p' <~ '; %@ '; p; %@ %@ *@ m, %@ p; &@ &@ &@ &@ &@ *@ 1] @@ @@ W+ R+ 4u 5u Qa 6u Hs 7u 8u *n 9u 0u au bu bu Ps Os Qs Os Ps Ps cu du eu fu 4i oh 4i _r ud ph Dh Ig ]g sh jc Kg ^g /g /g /g /g gu ^g Ng {f hu iu ju [q )s ku lu Et }q mu nu ~n nu |j ]n ou pu qu ;o ru su tu @p uu vu p= g$ n$ 1} o@ <. a. t@ m@ c# ~. {. ). ,& '. A@ V> =. ). 5# 7# L@ F@ V P &' T J 3# P@ H H H H P@ I A ", +"p9 p9 + $ # # - . 0' $ # [* ] & + . ] $ $ . . & Z! . Q$ ; ; - > - ]& . $ ; & *' V@ V@ (& > ~ & ] ; U@ Q$ U@ `@ & ] { V~ | N$ ] H= N$ J) H= N$ [ ) | { { 7 2 [ ( { Y@ I= ( 2 6 == d d a { } ( Y@ i p6 0j #( #( #( #( #( wu a e 6 d k o ~# d g ,# 9 )h #( #( eq a A~ L= ~# n 8 xu #( #( yu zu s> -) c C; h b' l !# r D |& b' t Au d< #( 7_ Bu Cu Cu Du Eu Fu Gu Hu Iu Ju )6 #( #( }2 Ku M Q@ {& P@ B M K N %> M 3; d{ P@ t> +i #( #( 5m Lu J U H L@ Q Y t> L' X 4; T X Mu #( #( M_ Nu Ou r9 Pu N_ #( 7_ d_ Qu Qu Ru Su Su Tu Uu Vu Wu Xu w( #( Yu Zu ,. $% `u v #( #( #( .v +v @v #v $v >b >b 82 82 9# B5 ;1 r/ up 4h #( (5 %v i[ #( 7_ &v *v Re Se W^ on =v Se Se Oq 13 }e Oi #( #( Hk Wf /c Qq =v -v =u ;v >v ,v #( #( 'v Jk if !i nl if )v !v Ri Pd ~v #( #( {v ]v ^v Qd Pc lo w( #( /v (v _v (u :v ] _~ :~ k' k' k' k' k' _~ d= g, g, i! ] s] g, +! g, l' 6+ i! l' l' K> i, .) l' ./ e= %$ G* ^) K> %$ ,- G* %$ +) f+ G* u% %$ e= &, g+ l+ 0+ l+ ;$ n+ l+ ;$ l+ l+ n+ m+ m+ h+ m+ n+ h+ m+ o+ o+ o+ M& '$ o+ x+ 8> )$ Xi 8> !$ )$ 8> 8> 9> 9> 9> G+ D+ ~- 4c G+ W2 G+ G+ W2 W2 W2 4c P9 4c On _i W2 f) V+ L| L| L| L| L| L| '; p; p; _$ p; p; 9v @/ '; <~ '; '; '; +@ #@ #@ +@ &@ %@ *@ &@ %@ &@ *@ &@ %@ +@ X+ U+ Fs 0v av bv cv dv ev fv #n >q 0u Qs Qs Os Qs Os Ps Os Os Os Ps gv hv iv jv xj _r Ql ud Ch Ig ]g Mg 7i (f /g 8k 7i ^f fe kv Cf lv $c mv nv ov pv qv ku rv * $ T@ ] $ }* - S$ . U$ S$ & Dv . * . . . Q$ S$ T@ Q$ $ $ ; N$ | H= & ' U@ | R$ ^ %= ~ ^& ~ Ev 2 N$ { ~ 2 1 N$ | 2 ~ 2 ~ [ ^ { 4 X@ d 1 ~ | ( /& b 7 V~ { $# 6 V~ 6 Di m( #( #( Fv #( #( Nt Gv ,# b 7 d a i d c 3] L= [l #( #( }s ~# A~ ~# o |& ~# Hv #( #( 3 V} r h 2, ~# `$ p Z$ 9- L= `$ r V| C J_ m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( q| qq F= M z I I G 8* I M P@ S E$ O@ a- +i #( #( rq z6 P@ d- 3d 4# d- Q 3; Q G$ d- L@ V Iv #( #( Jv Kv r4 O= Lv W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( Mv Zu ;' /3 /3 Nv !4 #( #( #( #( #( Ov Pv Qv Rv >b Y6 82 >b ff << Iq *k #( w( M2 #( w( Sv Tv W^ Re Se W^ on Se }e Uv on [e }e Oi #( #( Hk [e 8d Vv Qq =i =u Wv Xv Yv #( #( Zv ma jf >k Jr !i !i `v Pd }5 w w( #( .w +w {i {i Mk lo w( #( @w #w $w :v ul vl rg oj ul J0 %w En #( &w *w >8 'k n8 n8 Q5 Ye o8 Ye qo o8 Vi =w Vi qo 8e qo -w ;w kt >0 ch .g >0 ch kf Vr ch d3 gd j9 45 gd El El 34 .f V5 U3 V5 34 v[ V5 34 .f V5 <} Z{ Z{ >w >w Z{ C_ Z{ J^ 7< e3 e3 e3 7< 7< 7< 7< 3{ 3{ T] W5 }_ [} W5 }_ T] [} f3 W5 T] j/ C' 74 W4 ^k @{ ~) @{ @{ @{ y^ @{ y^ @{ '^ c~ B/ S( ,w 'w / [^ 2_ _~ _~ k' k' _~ ] _~ k' %, _~ ] b= _~ Y] i! g, _~ s] 5+ i! i! 7+ >- i! 7+ .) .) i, a+ l' 7+ G* ^) G* G* G* G* G* G* G* %$ f= f+ e= G* %$ %$ )w l+ g+ *$ l+ n+ n+ n+ l+ n+ h+ h+ m+ h+ m+ m+ h+ h+ M& '$ !w !- '$ )$ )$ 8> 8> o+ )$ Fl v+ Yr 9> Yi 9> 9> m9 F+ E+ G+ G+ F+ G+ W2 W2 W2 G+ 4c ^7 4c 4c _i 4c F% f) ~w L| P9 f) L| L| p; _$ p; '; p; nf {w p; '; '; '; p; <~ '; %@ #@ %@ +@ '; &@ %@ +@ +@ %@ %@ %@ +@ @@ .@ ]w ^w #b /w (w _w :w vt = + # ]& . > + Z, ]& L$ $ $ > - Z, . Q$ $ . & - Q$ & ; ; U$ . & 2 ] H= Q$ ^ ; H= { & Z! ; > S$ P$ 2 . ] | T- N$ ~ N$ %= ^ 2 W@ ~ | { U@ ; ) ~ N$ ] { d ## { V~ *# < /& [ ( 7- | / Y@ { a4 jw #( #( kw lw S} #( #( mw nw $# a ,# a e ># ~# c 0 [l #( #( eq 7 L= 7 0 L= |& ow #( #( pw p 2, h L= c `$ (# Y$ 1; p `$ Z$ 4* n qw m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( rw sw n! Q@ G I I J P@ F= D J H J 1& M c7 #( #( wk z6 M D$ 0* tw G$ L@ J 0* O= C$ O= uw vw #( #( ww xw r4 r4 yw W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( zw Aw :3 /3 A0 Bw Cw Dw W_ #( #( #( #( #( w( Ew Fw ~9 ~9 ~9 >b x4 Ek 4h #( #( 7_ #( #( Gw Hw x4 Iw Re W^ Oq on }e on 8t Oq 13 Pq #( #( jj =i =u Qq =i Qq Jw Kw Lw Mw #( #( Nw ma Jr if Ow dt ;k Pw na Qw Rw w( #( Sw Tw Mm Qd Lk Uw w( #( Bn Vw rg zn 0 .g .g >0 Rc ch ch i9 d3 T3 j9 gd j9 .x T3 6< f 6< v[ `e f V5 V5 v[ .f .f +x 7< Z{ +f !2 J^ 7< J^ F{ 7< J^ C_ C_ J^ }_ C_ C_ }_ 1c T] K^ }_ `^ 1c `^ K^ W5 65 T] W5 [} F] [} ^k W4 F] @{ y^ @{ @{ @{ y^ @{ y^ u: :/ t: @[ [^ t: S( b] b] ] ] 2_ k' _~ k' _~ _~ k' ] ] ] _~ _~ -~ g, _~ k' 7+ -~ e~ l' l' g, #{ 7+ ]) @$ u~ 7+ K> G* e= K> %$ G* b+ G* u% k; e= g+ ,- %$ %$ %$ G* H* v% '- *$ n+ k+ h+ l+ n+ n+ w% n+ n+ @q n+ @x q+ m+ =; o+ 8> !- )$ '$ o+ 8> x+ 8> 8> Xi v+ Yi Ao #x Yi 9> Yi m9 (i F+ E+ D+ G+ G+ 4c @f @f 4c P9 P9 5c 5c $g L| _{ _$ _$ nf L| nf Z+ p; '; _$ '; <~ _$ _{ :- p; ~w '; p; #@ %@ %@ &@ %@ %@ <~ &@ p' %@ &@ %@ &@ #@ #@ W+ X+ &g $x 8q Eo %x dv &x *x Qs Ns au Qs Os Qs Qs Qs Qs Qs Os Qs Os Os =x -x ;x >x ,x 'x )x !x ac {f /f ]f /f Af Df ~x {x ]x ^x /x Kf (x _x :x 7w ov le |q > ' ~ Z! ; ^ . o! Q$ ^ H= ] U$ Z! & *> N$ ; | - . | ] ! X@ N$ Q$ U@ H= T@ I= { } ) ] 2 } ) ^ +# 6 ( { / ( ) 1 & ~ ( Y@ $# { X@ 4x $( #( I1 5x a 6x #( #( e6 7x $# 0 &# $# 7 a' 8x a 0 [l #( #( eq n h !# n a' r 9x #( #( w2 0x Y$ e c h s> h m ^# `$ Y$ Z$ y L= ax m( #( d< bx cx mr mr mr dx mr ex ex fx fx gx gx hx x ^# F= #= w A H :* o^ M :* b >b ~9 `9 up 4h #( &: Ax w( #( 7_ Bx Li y4 ,b Re 13 +: F3 F3 F3 13 [e Oi #( #( Hk =u =i =u ;u Cx =u Yf Dx Ex #( #( Fx ma 3e if if qs rs qg %0 if w w( #( .w Gx Mm {i {i Hx w( #( @w Ix :v Jx >8 Pk Kx ul 0 >0 Vr n j9 T3 gd j9 El gd 34 34 V5 V5 v[ 34 V5 34 V5 V5 ~k Ux ]k ]k @g Vx ;] J^ 7< 7< e3 C_ Z{ C_ C_ C_ C_ C_ `^ }_ [_ W5 `^ }_ [} W5 }_ W5 [] [} @{ y^ y^ 8v W4 y^ @{ @{ 74 F1 @{ @{ t: y^ y^ t: t: B/ A) @[ k/ ~2 b] C/ j^ k' _~ ] k' k' %, _~ %, k' %, k' k' 5+ w- w- k' %, >- i! .) 7+ >- g, .) l' 5+ G* a+ l' 7+ G* a+ %$ %$ G* e= ,- ,- G* G* *$ 0+ G* G* G* Wx '- Q, U; j+ m+ -$ n+ h+ h+ h+ n+ q+ n+ q+ m+ h+ h+ m+ q+ )$ m+ o+ )$ o+ p+ nt 9> 8> Fl Xi v+ v+ 9> 9> Yr Yr Yi (i G+ G+ G+ G+ W2 W2 4c W2 W2 4c _i ^7 Xx _i _i L| P9 f) f) F% L| L| _{ _{ _{ Z+ _{ '; '; <~ _$ <~ m, m, '; <~ '; %@ %@ %@ p; p; m, '; *@ %@ +@ @@ +@ X+ U+ ta Yx Zx `x y .y +y :w @y Ns Ns Qs Qs Qs Qs Qs Os Qs Os Os Os Os #y cu $y %y &y *y =y -y _x ;y >y ak ,y 'y )y Hh >o qd le !y ~y ke p e 7w ov >o |j !s sv {y To sv ]y gk vv |j ^y /n /n /y 4f )j -f (y _y ge :y }$ n, 7@ *& =* O- = $ # = o! > $ [* [* ; > !, > > . - ; | & ] N$ U@ & . > N$ H= | - ; > . ^ ~ H= - $ Q$ P$ ^ | `@ P$ > N$ | ^ ^ ~ U@ | d ; 05 ; N$ ~ { ~ , / ~ 2 4 => ~ { { ) 4 ^ ) ) ~ d ( }y |y #( #( 1y 2y q> 3y Tj #( #( 4y 2n /& a 6 a e ~# ,# Y> [l #( #( }s n r s> 2, 7 q> xu #( #( Yj 5y n n !# c{ h Z$ -) h h L= }& Z$ E, 6y ][ #( m( 7y m 2; [# G 4* N /# 4* F= A 8* G F= G 8* Q@ I z N J P@ P@ U o> O@ O@ S E$ +i #( #( 5m 8y T J J t> T H t> U d- O= d- 9y 5[ #( #( 0y 58 r9 r9 ay .: #( W_ by y@ wr R{ al +. y0 %i bf cy B$ :3 F^ $% =. |h /3 =. /3 dy /3 dy /3 ey fy gy _( 7_ #( #( hy iy jy >b ky up 4h #( (5 ly my #( #( g: ny Iw Iw 8t Se F3 F3 +: 13 *_ }e =k #( #( oy Wf Wf =i [e =u Qq =i py qy #( #( ry sy ty ;k jf rs dt >k uy vy wy #( #( xy ]v Lk Lk Qd Hx w( #( yy zy Ay Ay By oj Ay (u [v oj Cy |v #( 1v Dy Zf Pk J0 Bl Ye Vi Vi Bl Bl Bl Vi Ey Bl Bl q q so 4v Bl 8e 8e 8e qo q q >0 gd |u ch kf gd gd El gd Fy T3 `e .f .f El tg 34 34 34 V5 .f Tc +x N9 !2 .f 7< 7< C_ 7< 7< J^ J^ C_ C_ 7< C_ J^ W5 3{ s~ K^ `^ W5 H{ }_ }_ f3 f3 _1 F1 @{ @{ <^ [_ J| y^ @{ @{ ~) Ud B/ t: y^ Ud t: t: @{ u: [^ V] u: [^ N0 _~ j^ k' k' k' _~ ] ] _~ _~ ] k' _~ >- c] g, u- k' .) >- e~ +! .) 6+ 7+ .) ]) ;~ i, 7+ l' b+ i, e= %$ %$ %$ e= G* G* G* ,- ,- G* G* u% ,- %$ Gy )w f+ -$ Q, h+ h+ k+ h+ n+ h+ m+ I* m+ h+ h+ h+ h+ !- !w '$ )$ o+ o+ 8> v+ Xi Fl Fl Yi Yi 9> #q 9> Yr Yi ~- F+ n; F+ W2 G+ W2 _i W2 W2 4c 4c W2 Hy _i L| ^7 _{ _{ f) L| L| _{ L| L| nf p; '; '; '; <~ _$ '; '; m, <~ <~ <~ *@ %@ %@ %@ <~ m, %@ *@ %@ &@ %@ #@ W+ ($ ta Iy Jy Ky Ly My &x Ny @s Qs Qs Qs Qs Os Qs Qs Qs Os Os Os Ps Qs Ps gv Oy Py %y %y Qy Ry !y 6g 6g Sy pv Ty Uy Ml 7w 7w Vy Wy Xy p je e Yy Zy Zy ni )s &o }q }q sv e @z #z <- :@ 0@ $z i@ l@ (. O- = t@ = {. 5& &. &. x@ !. &. E@ 5# @. .. @. .= +. R I@ Z H |# ` P@ P@ P@ A P@ A ", +"1* $ L$ ]& . V@ = $ * = $ & . . $ o! > $ Q$ $ > . - # [* $ & Q$ & N$ o! ; $ | $ ~ . 2) U$ - # ] & . & > & ; - & ~ ## R$ R$ S$ N$ | [ ] *# | N$ ~ | ] ## } } | { $# 6 2 ) [ 5 | { ( { } / %z #( #( -6 &z 6 6 6 *z $( #( $( =z 6 ~# a 6! e 5 j 7 -z #( #( eq k a Y$ ,# o ~# *z #( #( <7 St j L= c r p r n n p Y$ -) Z$ p +| or #( $( ;z p Y$ y t n^ ^# @= c m w {& A z F= A N >z I I O@ :* G |# I a- 3; J 3; +i #( #( wk z6 T O C, G$ T H T U I@ I@ U ,z #( #( 7_ 'z @. &k U^ )z !z #( 7_ ~z bf r5 cf a* {z y@ %i r4 /3 +. /3 .u df A0 /3 |h |h A0 |h x5 x5 |h Bw ]z ~9 ^z /z w( #( W_ (z >b >b ^5 up 4h #( (5 Ni _z :z #( #( r_ 0 ch kf n .q T3 j9 f !k gd Fy `e El V5 34 f 34 34 .f ~k V5 ~k Rk Ux N9 +f I| 34 J^ 7< J^ C_ J^ 7< e3 7< }_ C_ C_ zo }_ W5 i( }_ W5 s~ W5 1c W5 T] [_ F1 @{ @{ ~8 ^k F1 F1 ~) @{ @{ @{ @{ t: Ud Ud @{ 2c {7 u: [^ k/ M^ b] b] %, ] ] _~ _~ ] k' _~ _~ %, _~ k' k' >- 4/ B* -~ _~ l' .) i! 6+ l' 5+ i! .) l' #{ K> l' l' 7+ G* %$ G* e= G* b+ %$ G* G* K& f+ h, 0+ ,- u% n+ -$ h+ u% K& *; h+ l+ n+ m+ h+ h+ n+ m+ h+ h+ bz q+ q+ !- Fl 8> )$ 8> )$ m+ pj !$ 8> Xi 9> v+ Ao m9 cz dz cz (i G+ G+ G+ 4c W2 W2 W2 W2 W2 4c Ds _i ez 5c P9 fz L| nf nf L| L| Hl _{ _{ _{ '; '; Hl p; p; '; p; <~ m, m, m, <~ %@ &@ #@ >@ %@ <~ %@ #@ %@ #@ #@ #@ W+ S+ @f gz st hz iz My jz *x kz Qs Qs Ns Qs Ns Qs Qs Qs Qs Os Os Ps Ps Os lz mz Py %y %y nz |w oz pz qz rz sz tz uz Vy Vy vz wz wz wz je p /x xz wf 7w gi fk #t }q To ]y =o |j |j ^n yz cw dw zz 'l Az ^s d Bz b Cz Dz b$ h$ X* l@ l@ o@ q@ E~ w$ x$ ^. *. (* ). z@ A@ &. V .= 5# V J@ R V P P S J K@ J S J@ M H$ H$ N ", +"V@ 1* Z, = 0' V@ $ * . 0' * $ # . L$ . = . + S$ . = ; $ + . . H= ; & N$ Ez & T@ ; S$ . Q$ > | > ; H= . U@ | {c . ; U$ 2 ~ N$ X@ & U$ | 05 2 ~ H= ; [ { N$ [ W@ { X@ 1 1 I= 4 2 5 9 /& 5 [ W@ 7- Fz Gz #( #( Hz _7 V~ 7 k >p Iz #( #( -p Jz c i n ~# 7 {# ,# [l #( #( }s |& ~# c n ]c Q{ Kz d< #( $( :m 0- h h |& Y$ ~# Z$ Y$ Y$ ~# |& Y$ r Lz Mz #( #( Nz c m }# C G ^# r F= A G F= I N A N G O@ A I A c- z O@ G O@ Oz H O@ bp #( #( wk 8y T I H J |# G$ J J L@ G$ Pz Qz #( #( Rz Sz O= C$ I@ Tz Uz #( #( d_ y@ wr Ou al Vz . /3 Wz Xz /3 Yz F^ A0 =. /3 |h |h A0 /3 |h /3 Zz `z x5 Ck Br A .A #( #( +A @A ~9 7d Ek 4h #( (5 Fk 2h #A $A #( #( %A &A Li Re Se *A =v F3 Oq Uv ym #( #( Pi [e Wf Wf }e Qq Qq Qq =A -A #( #( ;A >A ,A 'A )u )A ;k !v ~i !A ~A #( #( {A ]A Mm {i {i lo w( #( ]_ ^A {i zn ul }c }c :v oj [v /A #( #( (A Ye _A Vi Ye =w Nx Q5 n8 Ye n8 Ye Ye Vi Vi Ye Ye Vi qo qo qo Cl 8e i9 35 Cl Jn 35 .x gd .q kf j9 j9 45 U3 gd .x El v[ V5 V5 f ~k 6v ~k ~k 34 Rk <} Vx 9e <} Vx J^ Z{ C_ 7< J^ 7< J^ J^ J^ C_ 7< C_ C_ }_ H{ }_ W5 T] W5 `^ }_ T] [_ T] [} J| y^ T] E_ @{ ~) ~) y^ @{ @{ t: E_ t: J| @[ t: B/ t: C/ Ud Ud [^ k' ] _~ _~ g3 _~ `' ] ] _~ k' k' _~ s] i! g, 6+ -~ _~ 5+ >- i; 7+ 5+ g, #{ 7+ l' :A K> 7+ 8+ a+ %$ G* e= %$ 0+ G* G* G* G* u% j+ %$ 0+ 0+ 0+ j+ m+ m+ i+ h+ y- L> h+ l+ k+ '- h+ m+ q+ m+ =; !- h+ =; o+ )$ !$ 8> o+ v+ Xi Xi 8> )$ Yi pj Xi )$ Yi Yi Yr Yr m9 W2 G+ W2 G+ 4c W2 4c 4c _i 4# V C$ @. P Y +% A J Y |; H A 8* 7* ", +"+ + + Z, = V@ > k3 $ !, $ $ = Z, $ > . + $ ^ [* $ V@ R$ $ . > & . . $ & ; ' | | ] ; H= > & Z! N$ X@ H= ## & ' N$ U@ ] ; U@ Z@ | ] ; X@ ~ 2 Z! ( 2 ; *# | W@ 1 %# 6- [ ~ J) N$ { ( d Y> ( { oA pA #( #( qA rA d W@ e 0 a sA d< #( #( 2} tA a 0 } e 3* {# uA #( #( eq e 0 ~# 8 e 0 U} -p #( #( eg #3 7 p q ~# k m p Y$ h % h vA Y$ wA #( #( xA yA % p (# D N `$ m I M /# z ~& m) n! I z )> Q@ z I z m) 3; M I S L c7 #( #( 5m 8y Oz n> T G$ L@ d- L@ T G$ zA AA #( #( #( K< 7s 58 q9 0* r9 BA #( #( CA DA bf EA wr r5 {z df Wz df ,. F^ A0 |h /3 /3 |h A0 A0 /3 /3 A0 |h |h A0 :3 Br Fq FA #( #( GA ~9 ~9 Y6 HA 4h #( (5 IA x4 r/ JA KA #( #( <| LA Re Se ms on Se on Iw Dp #( #( MA Qq =u Wf =u NA Qq Wv OA PA +_ #( En QA RA Pw SA !i >k !v >k TA ts #( w( UA VA WA Lk XA Uw w( #( #( YA Mm Lk :v A7 [v ul [v ZA `A #( #( B J0 J0 n8 J0 Ti Vi o8 Bl o8 Ye Ye o8 qo qo =w Ye Bl fd Rc q q `f ch to ch .g gd n T3 n j9 T3 gd j9 T3 j9 El gd V5 .f V5 V5 !k V5 V5 ~k .f ~k Ux I| Vx ^1 +f Z{ J^ J^ C_ J^ C_ J^ Z{ J^ ]k 7< 7< C_ `^ }_ }_ W5 }_ }_ `^ 1c [_ [_ [_ }_ G{ @{ o{ ^k r8 y^ @{ F] [_ y^ y^ @{ y^ {7 B/ y^ y^ y^ [^ lf Ud b] [^ k' _~ k' k' k' ] k' k' k' %, _~ _~ Y] e~ i! g, B* k' >- 5+ i! >- l' #{ >- l' .) +! K> a+ ]) G* G* ^) G* d+ 0+ G* %$ G* G* G* G* %$ 0+ d+ 0+ g+ n+ n+ i+ *$ h+ h+ n+ h+ n+ h+ ({ h+ m+ m+ l+ o+ q+ n+ Xi 8> 8> p+ )$ o+ )$ v+ )$ Fl !$ Yr v+ Xi 9> Yr Yr .B &r G+ m9 G+ W2 W2 G+ G+ 4c _i 4c $q P9 _{ 4c _i _i $g ~w _$ L| _{ L| nf p; '; <~ '; '; <~ '; _$ <~ '; <~ <~ <~ p; %@ ;@ %@ %@ +@ %@ m, %@ %@ +@ @@ V+ a> +B @B ]d #B iz $B %B &B Ns Ns *B =B bu bu Qs Qs Os Qs Os Os Os Os Os Ps -B mz %y nz nz nz nz nz ;B Wy wz xz >B ;B ;B &y nz nz &y &y eA wz wz !y ,B !g 'B To &o ^n nu gk nu vv [x hk 2q `y )B 1i !B ~B {B ]B 3b ^B /B (B l$ =* A= k> -& O- C= >& w$ !. +. A@ !. V> ). E@ .. .= X G@ 7# C$ D$ M@ 2# L@ O P@ ` A M I A P@ A ", +"L$ ]& R@ $ + > U@ . Y! ]& J$ = . > L$ Q$ o! + . $ $ $ * 0' M$ ; U@ H= Q$ ] ] *' (& $= N$ | N$ - N$ }* N$ U@ V@ Z@ H= & ~ X@ ; > ^& ( [ ## { 2 H= =' 2 ) ~ J] ] ## { ~ [ T- &= ) ) 1 4 [ 5 { ) ( ( _B H1 #( #( :B } &# d ,# 3* Y> .i #( #( }s $# {# Q{ c :& a h }B #( #( s< |B c s> ~# A~ Y$ s> y s> c{ ^# /# ,> s> 1B d< #( #( 2B /2 s> D N b' C F= M A A 3B L/ z z x O@ ^# M w z I w |# M I P@ U +i #( #( wk 7l J L 3# E$ O@ L@ L@ L@ 4B G2 7_ #( #( 5B =5 O= O= 6B 58 y0 7B N_ #( #( 8B 9B a* r4 H9 0B al !& G; ,. .. aB bB A0 dy F^ cB |h A0 dy dy df |h dB A0 eB fB gB #( #( hB 82 >b jy HA *k #( (5 $u ;1 2h 2h iB 46 #( #( jB kB Se on on }e F3 on lB #( #( >i Wf ;u Wf [e Wf =u Qq mB nB oB #( #( pB qB ,A qg if >k rB sB tB #( #( uB vB vy wB XA zn Hx w( #( #( xB yB zn zn zB Ay oj Jx AB w( #( Sr BB 'k 'k Pk Q5 'k Ye az Vi Ye o8 Bl Bl Bl `w CB q x x Cl Ye Bl q qo qo .g `m DB EB FB El ch kf j9 j9 Fy .x gd T3 V5 !k .f f El V5 v[ .f .f V5 Rk wo Mn 7< Sc +f 64 C_ e3 J^ J^ C_ C_ C_ C_ C_ 7< K^ }_ `^ i( GB 3{ }_ W5 1c [_ _1 [_ T] /~ F1 J| f3 ^k M^ y^ @{ 74 @{ y^ @{ @{ 75 O} :! M^ y^ c~ @[ y^ [^ C/ b] ] k' _~ _~ k' %, _~ _~ ] k' k' ]{ i! g, g, 5+ ] >- 7+ e~ i; l' g, e~ 7+ .) l' i, b+ l' %$ ^) 0+ G* e= G* G* %$ %$ 0+ G* ./ d+ %$ 0+ 0+ f+ h+ l+ n+ *$ h+ v% h+ h+ m+ h+ h+ -$ HB h+ =; 8> !- m+ !- )$ p+ 8> o+ 8> o+ 9> 9> 8> !w 9> Yr ~- Xi Yi 9> Yr G+ G+ G+ W2 G+ W2 4c _i W2 _i W2 4c 4c [A ,; _i P9 f) ~w Xx L| _{ _{ ~w _{ <~ '; p; <~ <~ p; p; '; <~ m, <~ m, '; '; &@ &@ #@ #@ #@ <~ &@ %@ #@ @@ T+ ^l IB JB =e KB LB MB vt >q NB kz au *B au NB Qs Qs Qs Os Os Os Os Os Os Ps OB 8A Py 0A nz nz nz nz nz PB &y nz &y eA 0A &y &y &y &y &y &y >B Wy /x (x wf QB ` A #= P@ I 2& H$ ", +"# = . # . # > . J$ + + . . - * 0' > U@ $ $ * = = . $ ; & . = # ) 5- %= + & > S$ %= Q$ Q$ V@ Q$ ' Q$ & Q$ . ] ) Q$ [ [ 2 ] ~ | %= ] { *# > | } *# O$ ## Z! *> { [ X@ ;# *# 8- X@ Y> } ) *# WB XB #( #( YB ZB 6 $# 6 < 6 $# } `B C #( #( .C } j a 6 e e [l #( #( eq ~# ]c X$ ~# ~# 0 q +C cq #( #( @C #C n s> n t 4* O' -3 $C v6 p Z$ p g4 %C #( #( ][ &C *C ^# >= D w 2; z +( =C -C ;C I I z K@ z q! M z |# I M c' T |# J `j #( #( wk 7l T L J J T J >C ,C 8m #( #( #( `| 'C 58 O= 58 7s r9 7s )C !C #( #( .: ~C bl r5 cf $i R{ {C ]C g_ ^C /C (C _C :C A0 - ]) i! >- l' .) +! 7+ 7+ 7+ G* i, i, 0+ e= %$ 0+ 0+ e+ %$ 0+ K& 0+ 0+ K& u% G* )w l+ *$ h+ y- -$ h+ ({ q+ h+ h+ *$ q+ m+ h+ !- q+ m+ bz !- ({ 8> 8> Xi 8> tC Fl 8> Yi 9> &r Fl G+ Yi Yr Yr Yr F+ W2 G+ F+ 4c G+ W2 W2 4c $q _i _i $g P9 uC L| _{ ,; L| L| L| L| ~w p; _{ nf p; '; '; <~ <~ p' '; nf <~ ~w <~ <~ >@ %@ *@ %@ +@ <~ _$ @@ Z+ R+ vC wC xC %c yC zC (w AC BC CC *B au *B *B bu Os Os Os Os Os Os Os bu *B *B DC EC FC %y nz nz PB &y &y &y %y nz GC HC *y PB PB PB &y &y &y PB PB Ry (x HC qd nu IC IC IC vv JC Nh pi {s `y pi KC ik LC Lh Pf MC kc Xd NC ;@ X% m$ -& {* {* ;& o@ :. a6 !. d# v{ >. *. 5# 5# &. 5# 5# V n) $> F@ T T 4# O @% O J@ P@ I P@ K@ I ", +"# . + # = = > . > Q$ $ ]& = > 0' + & & Q$ > > $ = $ ] & ; ] . # ; ^ S$ ; > & Q$ U@ Q$ ; ; - o! | N$ | . , ; |* /& ~ & S$ ) ] - - *# X@ > N$ N$ ~ ~ { V~ [ 6 2 [ ( 2 { ^ } } N$ ~ OC I1 #( $( PC ## 1 b d => Y> 6 ~# a QC #( #( H[ RC a 0 L= h i SC #( #( Pt ~# |& ~# b 8 ~# A~ n TC 7_ #( #( UC VC WC XC YC ZC 51 _o _o m< `$ p r `$ *3 `C #( #( 7_ D .D +D @D #D $D R[ S[ m( 5[ s6 N B z G O@ I z N M P@ >z E$ J M L dj #( #( %D &D k} *D =D -D ;D >D ,D 7_ #( #( #( M_ 'D n5 O= 58 6B ia 58 7s H9 )D 4: #( #( 7_ !D ~D {D fp ]D ^D /D (D W_ .: _D =. _C |h :D #( D3 b ~9 jy 3C 4h #( (5 Fk 5D 2h hs Iw 6D 7D +_ #( 7_ 8D 9D *A 13 Oq *A 0D Mq #( #( aD bD cD dD eD fD =u Qq NA gD hD #( #( En iD jD kD lD tB P: #( #( mD nD 5z 5z Qw zn Mm Uw w( #( oD Yp w( pD qD rD sD tD uD #( #( Sr vD >8 'k 'k Zf wD 3v Jx Zf =w o8 Ye %r Nx qo Ye qo Vi qo q q Bl q Bl qo x .g Vr kt Vr Vr |u xD yD n Fy j9 gd El gd gd !k 34 34 f !k 34 .f .f ~k .f V5 Mn ]k ]k zD AD C_ J^ 7< Z{ C_ J^ 7< e3 J^ C_ zo 1c }_ }_ j/ W5 }_ `^ j/ 1c W5 f3 W4 r8 r8 E_ !/ ~) y^ @{ y^ @{ ^k ~) @{ y^ @{ t: ~) :/ y^ @{ Z: A) q{ S( b] `' k' _~ k' k' k' _~ ] ] k' _~ b= d= k' k' A* ^{ k' B* +! g, i! .) >- w- .) t% 7+ l' l' 7+ l' K> b+ G* %$ %$ e= d+ %$ h, 0+ *$ G* %$ u% 0+ d+ Wx -$ h+ h+ n+ m+ h+ n+ n+ h+ h+ h+ m+ m+ q+ q+ m+ ({ m+ p+ q+ BD Xi Xi Xi CD 9> Xi 8> Yi 9> Yr D+ Yr 9> Yi Yr D+ G+ D+ G+ G+ W2 G+ W2 4c 4c 4c _i $g On _i $g f) f) L| _{ [A nf nf _{ nf p; p; p; L| <~ m, '; <~ <~ <~ p; p; %@ &@ +@ %@ %@ p; +@ _$ &@ Y+ T+ ]w DD Mb ED Is FD GD HD ID NB *B *B au *B NB *B bu bu bu bu NB bu bu *B *B JD EC mz 9A nz PB PB &y &y &y &y PB vz KD cA nz PB *y &y PB PB *y PB LD >B PB MD wv ]y sv ]y gk &t hk pu ND OD PD QD ;o RD :x SD Ac TD +a UD <~ VD Y% p@ x$ ^* :. q@ :. >& ^. =. $% V> 5# A@ (* 4& z@ 6# H@ }; M@ C$ P P 7# H K@ S H$ Q@ M@ Y Q@ A ", +"> Z, $ 1* T@ . Q$ > * $ + ]& ]& + $ $ $ . = Q$ $ > . Q$ Z, - & - Z, + $ | =' & 1) ] ; ; ' & . > ; o! ; N$ U@ X@ ] ] ; ^ ; ] U@ ~ 2 Y@ 2 ;# *# [ Z! | [ ~ /& | , [ ## ] Y@ } { 2 4 | WD XD #( #( YD ZD } Y@ , } x0 i j ( a `D j< #( #( E _7 /& ,# ~# $# [l #( #( .E ~# ~# L= 0 0 p e m +E @E #( #( #( #( #( #( #( #( #( #( v2 #E m Y$ ^# h p WC or #( #( #( #( #( #( #( #( #( #( #( ][ $E O@ E; A 8* j4 I G A |# O@ z o^ z Q@ d{ +i #( #( #( #( #( #( #( #( #( #( #( #( #( #( %E &E 58 58 4# O= O= ia 58 O= n) X *E !z #( #( #( #( #( #( #( #( #( #( #( .: _D A0 _C A0 :D #( #( #( #( #( #( #( #( #( #( #( =E -E jy ~9 ~9 ;E >E *k #( (5 Ni ff ;1 x4 ^5 =2 ,E 'E #( #( (5 )E on F3 on Se !E ~E #( #( #( #( #( #( #( {E ;v =i Wv ]E ^E /E #( #( #( #( #( #( #( #( #( N( (E _E :E 5z a+ c+ 7+ a+ G* G* ^i %$ K> 0+ %$ %$ %$ i+ u% G* f+ f+ d+ d+ l+ h+ *$ n+ m+ n+ m+ N& h+ l+ 5E ({ m+ ({ q+ q+ ({ h+ =; ({ ({ BD 8> 8> Fl 9> 9> 8> Fl Yr Yi Pn Yr Yr Yr cz G+ W2 W2 W2 On W2 _i On _i On _i 4c f) ,; Xx _i L| _{ _{ L| f) nf '; _{ _{ p; '; '; _{ 6E _{ p; '; ~w %g wg '; p; &@ *@ %@ #@ %@ p; _$ +@ Y+ U+ O+ 7E a 8E Is .y 9E HD NB 0E au *B au *B *B *B *B *B *B au *B *B *B *B *B bu DC aE Oy %y &y PB &y PB PB PB Yy >B MC *y *y *y PB PB PB PB *y PB nz PB Qy bE cE dE ]n gk IC ^n Wo ^y Kj eE Wg fE gE &l . > + = . S$ & T@ $ ]& V@ - # $ ; k) $ # $ V@ Q$ U@ & ] U@ ~ Z! & ] ] . & ; | { ~ Z! | ~ 4 ## { 1 ! | N$ 1 ( ## ~ { { ^ { 4 7 d N$ < D, *# *# Y@ 2 kE $( #( ][ lE 4 D, ( | ) } 4 6 [ d ## mE #( #( b} nE a i ,# 8 uA #( #( eq 6- C; 0 n ]# oE e r r pE qE b} #( #( #( #( #( #( #( m( rE sE D m /# q m Y$ tE uE #( #( #( #( #( #( #( #( #( s< vE wE /# I H$ F= m) %> xE E; E$ P@ h] 3# E$ P@ 3& bp #( #( #( #( #( #( #( #( #( #( #( -4 yE zE AE G$ BE O= O= P' T 58 r9 58 O= C$ r4 CE 88 #( #( #( #( #( #( #( #( #( w} DE EE F^ FE |h GE q1 7_ #( #( #( #( #( #( #( #( HE IE jy 82 82 >b ef hl *k #( (5 JE 2h KE r/ 2h LE Se om S< #( #( 4h ME on on 8C ;u NE qy &: #( #( #( #( #( OE =i NA Qq Qq -u PE QE #( #( #( #( #( #( #( Mr An RE SA _E vy SE TE UE VE w( #( WE XE YE |v #( #( #( #( #( Wm ZE `E Zf Zf J0 qt Xi %F 8> 8> Fl Yi Yr Ao Yi &r cz Yi &r W2 W2 W2 4c 4c W2 4c 4c 5c $g _i F ,F au *B *B *B *B *B *B *B *B bu *B JD JD *B *B JD DC 8A Py 0A PB PB *y PB PB *y 'F eA bA cA cA *y *y PB PB &y &y &y 0A )F At !F sv ou ^y sv gk bw ou `y ~F {F yv ]F (j ^F dc /F A@ ). -. &. 3^ z$ T E@ B$ !> V Z O J C$ T H M x M@ H S ", +". ]& Z, + = X! $ . # ]& + - + . $ . ' $ L$ ; $ V@ ] M$ + * $= . $= & $ . > % + & > ; ; ] ; Q$ }* ' * . S$ S$ %= ## N$ | X@ ~ P$ ] ) ~ ] %= 2 { X@ ( ; U@ ^ X@ ) 2 Z3 ## ~ [ $# /& 2 _F :F c L= s> {# L= h ~# ,# 4F ^o 5F H1 $( {[ 5F 6F 7F 8F s> }& h k `$ ]# ~# t 9F 0F aF bF d< #( s< o< cF dF eF M= E; o^ I 3# /# +% ^# F= z F= 3; P@ G n! z M fF gF hF iF iF iF hF jF kF lF mF nF oF L@ r! pF Y P' 58 7s 7s qF O= r9 58 58 O= q9 ja rF sF vw tF N_ #( M_ Aq uF vF wF |h _C ja ,. dy /3 xF ^D yF zF yr W_ +_ &2 AF BF CF eB ~9 b: 82 >b ~9 DF EF FF GF HF hs Qe << 2h hs Jc IF JF KF xm LF MF NF on 8t on *A OF PF QF ~E RF SF SF TF Qq NA OA Wv UF UF VF WF ;A XF w( YF ZF `F G .G ~i `v VA Qw +G WA vy @G w( #( WE #G $G %G &G *G +_ =G -G ;G >G [v 'k !w h+ h+ )$ 8> !w 8> 8> 8> Fl Yr 8> Fl Yi Yi 9> (i ~- Xr #x #x W2 F+ ~- W2 4c W2 W2 4c 4c On On '; _$ ^G ;@ #@ #@ p; Z+ T+ /G (G _G :G Is yC KB #n + Z, = . + $ M$ ; ]& # $ L$ . # = $ $ U@ . Dv & . > . > > # > . > 05 S$ & & & = & U@ ' Q$ ] X@ | > | ~ | ] 2 1 ; ~ U@ | ] ;# ~ ; ~ ; & - ~ N$ ) : &# ~ [ 5 ( 8- Z! ] ;# d [ e ( D, J= a !# 7 ( ( 7 ># ,# 7 0 8 8 6 M' a a i 6! e a 6 z: [& X$ c a h L= a' p `$ 0 r i ~[ 6G 7G 8G ~[ m L= m Z$ L= Z$ ^# 1; m Y$ `$ D /# 9G 0G aG bG cG dG eG w b' I x I $] M w z A P@ E; A :* J O@ O@ 3& P@ M A E$ U^ J E$ J O J P@ O J I@ L@ L' 0* I@ O= 58 58 G$ O= T n) O= r4 ja r9 r9 r4 58 fG gG hG iG jG kG lG =. R' ,. |h mG /3 A0 /3 A0 /3 |h nG oG pG qG rG sG Yz tG Br gg >b uG jy >b jy >b vG vG ;1 hs 2h @A x4 2h Jc LE x4 LE Se Uv Se Se 8t 8t Oq ;u Re }e [e [e =i Wf 8t =u NA NA Wv [e NA wG Wv ;v xG yG zG AG BG CG rB ml ~i ;k Qw DG EG :E FG Hx w( #( GG HG IG JG KG LG MG NG OG [v Jx PG 'k [v [v QG Nx - 7+ g, 5+ t% l' g, 7+ t% K> K> .) 7+ G* %$ %$ K> %$ i, G* G* 0+ 0+ K& *$ G* d+ 0+ d+ 0+ k+ h+ k+ -$ h+ n+ h+ m+ h+ ({ m+ m+ q+ q+ q+ !w BD m+ )$ )$ !w !- )$ Xi )$ Yi Xi Fl qt cz Yi (G #x &r m9 cz m9 G+ W2 4c _i 4c 4c _i 4c W2 _i L| uC P9 On ez nf _{ L| nf _{ f) F% L| nf ~w p; m, <~ '; m, '; <~ m, '; <~ '; '; ~w o= D- %@ +@ _$ _$ T+ Q& XG @B Da zC yC MC YG * ~* u@ -& ^. >& v@ '. x@ A@ -. z@ &. A@ +. @. ,= P D$ V P ` P@ I L@ 4, P@ +% A N@ |# Y ", +"= # $ Q$ > @ !, & $= & > L$ . + $ ]& + X! L$ = ]& V@ ] - l) > # Z, . ' % + & . & ; Q$ $ ] . Z@ ( W@ P$ Q$ Q$ =' . & f] | X@ > & | ^ S$ /& > ] ~ ^ { X@ } | &= 4 4 == } *# ## { 5 < ( ^ V~ ,# ## Y@ { d ## Y@ J] } 0 => U- [ ,# 6 7 b V$ 7 6 a e i ~# c k c a 0 a h c h 0 0 n n k h h |& q Y$ -) n p r h y % p Y$ Y$ w /# ^# ,> ^# 1; t t w ^# K /# ^# h t Q@ P@ F= M D z A G |# E$ P@ F= P@ a7 A J C, 3# Q@ M L L T P@ I T A: 3d r! tw 3d L U E^ E^ O= 7s 0* G$ V 58 r9 r9 r4 O= @. @. ja ja wr G; %H &H 0B %i $i Vz F^ F^ /3 /3 Ji A0 |h |h |h `z A0 dy *H Yz dy dy Br ~9 ~9 ~9 >b ~9 jy ~9 vG ~9 KE hs 2h KE =H Qe 2h Se hs ;u on ;u =v Oq 8t ms -H ms 13 bC 6h Qq -H Ik NA =u =u =i Wf ;v UF ;H >H ,H 'H )H !H ~H {H ]H ~H ^H /H (H FG _H :H %$ a+ G* G* f+ 0+ 0+ j+ d+ d+ f+ e+ d+ g+ k+ I* k+ m+ h+ m+ n+ k+ m+ -$ m+ h+ m+ m+ !w q+ =; !- Xi ({ !w Fl Fl Xi Yi Yi v+ Fl v+ Yi Xr n; Yr &r dz Yi W2 4c 4c _i _i W2 4c 4c 4c 4c P9 ^7 $g 5H 6H uC L| f) L| _{ _{ nf p; nf nf ~w '; _$ '; '; <~ <~ <~ p; m, <~ <~ +@ #@ :- &@ %@ '; Y+ L+ 7H 8H 9H 0H aH bH cH dH Rs [w =B }G eH au *B *B *B JD *B *B *B *B *B *B *B JD *B *B *B JD JD EC 8A Oy 9A nz PB *y *y fH `G `G `G PB PB nz %y 9A mz aE OB Ps Qs ]e bw sv |j ^n vv vv ^y gH wv hH 8w ri .z [j iH jH kH ui lH mH R> }@ =* nH j@ m@ 0& m ^# ,> s> L= ^# p /# 2; 2; I /# /# [& /# E I w A }# I I Q@ E$ K a- I O@ M J J H$ d- L M@ :* U L t> |# d- J |# |# 3& J T H I@ K) 0* qH O= O= O= 7s 4# H9 O= q9 @. rH q9 &H bf @. Ou sH $i cs W- |h L) ,. =. A0 F^ Xz /3 =. A0 Yz A0 Yz Zz Yz :C dy eB >b >b ~9 >b 82 jy tH ~9 tH vG x4 x4 2h uH 2h 2h LE IF LE vH 9C wH Se ;u 8t on on ms -H xH ;u =u yH zH =u [e =u AH BH OA OA fo CH DH EH 'A FH GH ~H HH CG IH RA !i .G Pd VA :E JH w( #( WE KH Zq XA zB JG zn zB XA - i! i! 7+ e~ 5+ t% 3+ 5+ K> 7+ 7+ %$ K> l' K> G* a+ %$ u% G* %$ f+ u% 0+ K& K& d+ Wx LH m+ i+ I* m+ m+ h+ m+ 5E 5E ({ q+ ({ m+ !w q+ q+ m+ !w ({ Fl 8> Xi Fl Fl Yi Yr MH Yi cz Yr @f NH Yr cz Yr &r G+ _i W2 _i 3c 4c _i 4c _i _i 4c _i $g ot P9 $g Dz _{ f) nf nf ~w ~w %g ~w <~ <~ '; nf ~w _$ m, S> <~ '; <~ #@ %@ [$ #@ #@ _$ V+ ta E% OH PH =e %x .y QH RH SH TH Ps UH VH *B *B *B *B *B *B *B *B JD *B JD *B *B *B *B *B *B JD JD |G 8A mz FC 9A 0A nz PB &y &y nz 0A 0A 9A FC WH XH DC Os Os Os su cw YH |j vv ZH tv `H 2G 2G xv I me .I _j Ih +I @I #I $I %I +@ V% 7@ >* p@ h# ^* _. :. v@ x$ E~ v@ .= ). x@ ). A@ 4) e- 5# G@ X J S +% ` P@ S J T Y E$ N Q@ ", +"$ ;b ]& R@ M$ ]& $ $ ]& $ & + ; V@ = > . > 0' = > = $= . k) > - Q$ Z, ; > Q$ Q$ > > + $= R$ N$ & Z, H= 2 N$ P$ S$ ^ ~ | ) ] ; & ] - | T$ ^ S$ |* # ) { ] ) X@ { ) ; { ) { [ Y@ [ X@ [ 4 4 7- 5 ( ## } 9 e $# d +# a 1 $# 3* $# 6 9 a e ># i ~# 6! ># c L= V) e a e &I ~# n Y$ h C; j h |& r `$ c s> !# ~# `$ ~# p p y C; ^# b' L= p m s> c I ,> Y$ D E N N w G w G E 5* I z I c- |# |# w F= P@ P@ z M A P@ ` m) H$ *I T H T M .~ r! r! Q J d{ V 0* tw =I E^ qH 58 58 58 58 ia -I 58 7s q9 rH 0* q9 ja Ou {z EA Wz Ou ;I A0 F^ >I ;' A0 |h ,I dy |h |h Yz |h dy dy *H Yz Yz 'I >b uH ~9 >b ~9 ~9 jy jy vG vG hs 2h y4 )I Qe hs hs ;1 !I ~I wH wH Uv 8t Oq Oq ms wG {I ]I ^I =u -H =u Ik NA OA /I NA /I Wv (I UF 'H )H rB _I :I - i! .) l' .) %$ b+ 7+ @$ 0+ K> b+ 0+ %$ %$ 0+ %$ %$ u% *$ %$ %$ f+ 0+ 0+ @q h+ h+ q+ h+ q+ m+ q+ m+ ({ ({ ({ ({ q+ ({ ({ q+ q+ ({ !w Xi 8> 8> Xi 8> cz Yr Yr Xi Yi cz Yi n; cz dz 4c 4I G+ W2 4c W2 4c _i _i _i _i P9 P9 On f) _i 5I nf 6I _{ L| 7I [A L| _{ nf nf <~ <~ '; <~ wg p; <~ m, <~ m, m, p; '; #@ +@ +@ Y+ Y+ P+ 8I 9I 0I mc ;r Is aI 7A bI cI #y bu CC CC *B *B *B *B *B *B *B JD JD *B au au *B *B *B *B JD JD JD |G XH aE mz Oy FC FC FC 9A 9A Oy Oy WH 8A EC DC JD bu Qs Qs )r dI Uo ^y bw cw ^y ]n cw 2G pu {F eI eI :q fI +m y 0b gI hI @@ N% X, U* >* -& w$ s@ <. /* /* {. '. &. $% *. A@ .= E@ #. B$ Y J #. M@ ` L@ J J J I Y H@ P@ #= ", +"0' ;b L$ L$ . = + # L$ ]& |* $ L$ ]& $ = V@ = 0' > & > ] - # o! & ' . ; - . . - > # 8- > V@ > > $ o! ; Q$ ~ 2 | N$ ; ~ N$ ^ ] ; N$ 1 ) , . - 2 2 Q$ U@ { -> *# V~ / | d 4 } 5 [ X@ X@ 5 4 1 ,# [ 7 1 b ( 6 e ,# $# d e 1 7 a k &# 7 0 0 ~# &# $# g ,# a e 7 D, ~# L= 0 ~# L= ~# p L= 0 r i [{ c [& n A~ n n^ -= p ,> m Y$ n D m Z$ y s> ^# N /# /# z G ^# G G A w E$ O@ c- H$ N I F= P@ J O@ F= 3& I 3# A E$ J iI E$ H U jI r! d- U Q H 0* H I@ tw tw tw 6B 58 E^ n) E^ q9 58 r9 rH 7s ja r9 1o Ou {z EA bf Wz kI lI =. _C mI Wz _C |h ,. dy A0 A0 dy |h A0 Zz nI dy dy oI pI jy 82 Y6 jy >b ~9 qI vG vG Ab 2h LE ;E wH x4 2h Li rI hs Re sI Uv *A on ms -H tI 8C -H 9C =u uI zH OA ;H UF Wv =u Wv =u vI wI ;v ;H ty >k VA 1z IH xI yI VA zI RA AI - g, 6+ 5+ l' 5+ i; t% t% b+ a+ @$ i; %$ 0+ 0+ 0+ G* a+ 0+ 0+ %$ e+ i+ f+ %$ f+ d+ d+ 5E m+ h+ -$ m+ m+ m+ m+ @x q+ ({ q+ q+ m+ q+ q+ !- q+ BD II Xi Xi Xi Fl Xi Xi Yr 9> Xi Fl Yr #q 3c m9 Yr @f &r 4c 4c _i 4c 4c On On On _i _$ L| _{ $g @/ On $g :- _{ _{ L| _{ _{ wg JI wg _$ '; p; p; ~w p; '; <~ S> '; <~ p; p; +@ Y3 +@ @@ Y+ xg o; KI LI MI (w bH NI Go OI PI QI -B RI VH *B JD JD JD JD *B *B *B JD *B JD JD *B *B *B *B JD *B JD JD JD DC EC EC XH 8A 8A 8A 8A aE XH EC DC JD *B *B bu Qs Qs Ny SI o@ <. C= >& 5# %% ^. ). z@ 4) 5# }; z$ D$ L@ F@ L@ Y P Y O H S S M I P@ A ", +"+ L$ L$ + = 0' # $ + > U@ $ & $= $= & > Y! + + X! $ & & ; ]& V@ # $= S$ = ; Q$ Q$ V@ U@ S$ H= V@ %= Q$ ) $= > 2 & N$ N$ | N$ > ^ & H= . ] | T- %# D, | - > | Q$ %= W@ ) N$ d d => ## W@ 1 } { } X@ <& 5 7- { X@ d $# b 6 ## 9 7 0 x0 8 d 6 $# 6 0 ( } 0 0 d e a : a e 0 a n [& a ~# L= i c h L= _# n ~# L= ~# |& h `$ q ^# Y$ L= r m h F ^# t 4* ^# @= z I 2; w w % 2; G N {& |# F= M F= A I I 1& a- m) G O@ F= a7 M h] J T L M J L H H T r! T U^ 3d E^ tw G$ I@ `I 0* `I 0* P' 58 58 58 7s r4 @. q9 q9 Ou J y0 cs .J +J G; ,. @J #J 5o Wz |h ,. cy dy dy Yz |h |C Yz Yz |h Zz Yz 9o $J eB ~9 ~9 ~9 jy @A jy tH @A ;1 =H r/ wH 2h IF wH Uv hs %J IF wH hs %J Se 8t Se {I ~I uI &J =i wG AH Wv Wv Qq OA /I wG OA OA ;H UF *J *J VA IH =J CG RA gC Qw FG VA :E -J JH w( #( ;J >J XA JG zB zB JG 1I 1I Ay CI qC ,J Ww ,G Nx Jx ,J -w qC -w 'J RG az Vi qo az q Ey qo q 3E Bl q x q qo q x )J x q HI ch x n ch n .q |u gd Fy !J gd gd kf n El 6v vo f 34 .f .f ~k ~k .f Mn Ux )2 Rk yo +x C_ C_ C_ C_ C_ C_ C_ C_ 7< 7< C_ C_ }_ }_ f3 W5 }_ W5 7< W5 f3 [_ [_ W5 F1 ~) ~) @{ W4 J| @{ t: y^ y^ ~) @{ :/ !/ B/ c~ M0 B/ A) y^ y^ [^ b] A) ] %, k' _~ _~ _~ ] k' l% k' _~ _~ ]{ 6+ u- w- 5+ i! t% g, g, l' 5+ 1+ 7+ 7+ a+ b+ 7+ 7+ b+ %$ e= 0+ 0+ G* e+ %$ %$ G* %$ *$ u% 0+ ~J 5E fh {J 5E m' I* m+ ]J m+ ({ ({ q+ q+ q+ q+ m+ ({ BD q+ ({ )$ )$ 8> Xi Fl Fl 8> 9> Fl Fl qt .B cz 3c II cz &r Yr W2 4c 4c 4c On W2 On _i On ot L| L| f) (B ~w 6I <~ <~ <~ <~ <~ m, %@ m, S> p; p; p; &@ +@ +@ _$ V+ vC ^J /J %a (J ;r _J 9E :J -B 6J ;* l@ *& q@ s@ x$ w$ !. d# -. ). e- . &. &. =. #. V B$ P X P P ` P P@ H K@ K@ P@ S E; ", +"# .( ]& . ]& 0' + = # ]& # S$ & ^ $ 0' R@ R@ * $ . & & . $= $ Q$ ] T- + = & $ ; [* V@ . H= ~ ~ | & & $ ! { R$ & S$ ; [* ^& $# ] ) %= S$ { : ) N$ R$ N$ ] ) ; /& 1 ( /& { ~ W@ /& ~ [ /& ( /& | ( { { ( b [ ## 6 5 6 Y> [ [ < 7 } 0 {# 5 } 0 i e o ,# X$ e 6 6 a F! e i e 6! ~# 0 A~ g i h n 0 a n ,> p `$ l t p h Y$ ,> 1; Z$ ^# /# t m h w m D G n D G E; {& z BD qt Fl Fl Yi dz Fl qt Yr Yi oJ pJ <~ <~ nf '; p; %@ m, S> S> '; m, '; #@ @@ V& Y+ vC qJ rJ sJ tJ uJ QH vJ Wn @s qb Aa $e wJ Ps CC *B *B *B *B *B *B JD JD DC DC JD JD JD JD JD *B JD JD JD JD JD JD *B JD JD *B JD *B *B *B *B *B *B *B *B *B NB Os yt xJ nu ]y IC nu yJ $t ou dw zJ 'l .I AJ BJ :x 3J =F Yb 0I CJ DJ *@ f$ 0@ t$ ;& x$ O- o@ w$ '& [, W> {. v{ 5# l> W~ . E@ #. R 2# 4# 2# $> ` Y ` M A G Q@ z Q@ ", +"# V@ M$ $ & ]& ]& + = p9 L$ > S$ + Q$ . V@ Q$ U@ - ' . `@ ]& ; %= - * T@ N$ # $ > & Q$ & & ; & # ; (& - . H= U$ U@ %= 8- H= N$ H= Q$ } J) { | U$ 1 d { ] ; | | H= N$ ~ ## $# ~ R$ | & ~ X@ Y@ 4 1 X@ ( } | 1 -> 7 6- ( Y> ,# 5 c D, { a 6 a 0 i 5 ( [& a 0 6 a 0 k ,# a c h 0 q> 6 L= {# 0 ~# ~# 0 e 0 1; c n r c{ w n^ `$ % L= f 0 Q{ ^# Y$ % m p 1; w m Y$ z w F= G F= E; N I F= 3# z Oz A O@ |# G A P@ E$ H$ T J E$ d{ +% T >) T J T 1# 3d G$ U^ tw 58 G$ 5, 4# I@ 3d `I 0* 7s 6B 7s 58 6B q9 r4 r9 rH @. Ou ja ja ja {z r9 cs F^ Ji Wz 5o |h :3 #J |h dy dy A0 EJ ]z Yz 9o :C tG Yz 8J jy 7d >b jy ~9 jy vG jy FJ ff GJ IF IF 5D Qe wH IF Iw hs IF wH HJ ~I ~I wG HJ tI zH zH tI &J IJ uI Qq Wv NA NA OA Wv JJ {H CG KJ Pw .G 1z =J Pw .G 1z LJ MJ :E }I =J (H @G w( #( NJ |I zn zB zn zn XA $w JG zB JG 0 |u |u j9 gd Fy Fy .x .x PJ f 34 V5 !k ~k .f 3H ~k ~k .f yo +g N9 AD yo ]k Z{ J^ 7< e3 C_ C_ C_ 7< W5 7< 7< T] 3{ `^ `^ W5 `^ `^ zo i( r8 [] X5 1c F] y^ @{ J| QJ W4 ~) @{ 8v @{ @{ h^ @{ V] @{ / 5| y^ 5> z[ r] k' b] A) _~ k' [^ _~ %, _~ %, d= d= %, _~ _~ g, k' ^{ 1+ 5+ 5+ 6+ @$ g, t% g, 6+ 7+ t% 0+ G* a+ c+ %$ e= b+ G* a+ t% 0+ 0+ 0+ 0+ d+ *$ F* 0+ RJ &$ 0+ m+ h+ m' m+ fh {J SJ q+ m+ q+ h+ ({ q+ q+ HB BD MH !w 8> 8> HB qt Xi Fl Yr Yi qt .B qt cz 9> .B TJ dz m9 NH W2 4c m9 4c _i _i 4c W2 On On 6I uC P9 _{ _i P9 On _{ _{ _{ nf ~w '; ~w nf m, m, '; <~ m, '; %@ <~ '; <~ '; '; %@ [$ Y3 F% T+ /- Gy UJ Ca VJ ti ~d YG WJ EC XJ YJ ZJ `J #y K *B au JD JD *B *B *B JD DC DC JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B *B *B *B *B *B JD *B au *B au au au bu yt .K ^n ]y nu ]n ^y tv ]n dw pu +K Zo @K #K $K %K ;r nc &K *K ^l > |@ e@ *& h@ l@ E7 d# d# w$ {. '. &. A@ -. 5# $% z$ .= G@ V .= |; H Y L@ L@ J N@ S +% S P@ K@ ", +";b ]& L$ 0' ]& ]& ]& = V@ L$ $ > + ]& = > $ & 5- > 0' ; ; Q$ . |* > $ ]& ] Q$ H= & H= $ Q$ Q$ > %= ; ~ ; T- O$ ; Z! ) Z! & ~ ; > X@ { X@ ^ 2 U@ O$ ~ ] N$ ; > . ^ | 8- , ## { ~ | [ { ) *# ## d I= } ~ /& 9 5 / U$ } 0 d d } ,# x0 } N' ># 9 ,# V) == e 6 L= j a' a c d ~# ~# A~ Q{ e a ~# c j [& c Q{ ~# 0 h L= % ]# ,! 2; Y$ o m 1; s> F n^ u p /# ^# G I t Z$ D z z B :# B I I M I N m) =K O@ M z M O@ M M E$ 3# P@ J h] S U E$ E$ >) t> E$ d- L@ G$ 3d 0* O T G$ T L ={ 58 C$ 58 6B 7s 58 qH q9 ja r4 ja Ou r9 ja Ou EA al &H -K _C lI #J Xz ;K Xz Wz Xz /3 |h .u A0 Yz Yz eB tG |C dy 7J Br 9J ~9 jy vG jy vG vG >K IF [z [z 4C ;E 9C ,K Iw vH 'K ~I 9C ]I yH *A *A {I 9C ]I Ik ^I NA BH )K OA Qq NA NA BH UF /I 'A !K ~K ~H JJ .G {K ]K bJ }I !u =J _H -J wB zy ^K /K 7z zB Lk 1I IG (K 1I Lk zB 1I 1I DI Jx qC _K EI qC qC qC QG qC qC Jx F QG wD :K -w x !G az Ey 'J q q x qo x 0+ a+ d+ 0+ %$ G* %$ 0+ d+ d+ j+ d+ d+ f+ -$ %$ '- f= i+ q+ q+ h+ HB m+ q+ $F k+ HB }K ({ q+ q+ HB ({ MH qt !w Fl Xi 8> |K |K Yr Yr cz 1K cz Yi 2K m9 4I _i 4c _i 4c 4c 4c $q On _i On On 3K _i _{ _{ ot On _i _{ nf _{ L| nf nf wg nf wg ~w '; '; '; '; '; %@ m, <~ Es p; <~ Z+ #@ V+ T+ a> 4K 5K [f aI hE 7f 7A [w 6K |G |G |G [w #y CC VH 7K *B *B JD *B JD JD JD JD DC JD DC JD *B JD JD JD *B JD *B JD JD JD *B *B *B *B *B *B *B *B JD JD *B *B *B au 8K 9K 0K ]n vv tv [x |j tv 2G pi ik ;o =t Ph 7w De aK _f a /a bK +^ 9$ o$ f@ cK o@ -& :. s@ {. {. !. &. C@ A@ +. 5# T R 2# A@ 4& T P O ` ` Q@ S J K@ P@ P@ M@ ", +"= ] + p9 .( R@ ]& * & $ ]& o! # V@ * . - %= = > = ] T- . > . . {c $ & ; *' ] # Ez | U$ ; S$ # o! > $ - ' H= & { H= & V@ V@ ; ~ ) 5- & | ; ] & N$ { 5- ; | & ; ( { { N$ 2] ~ 2 [ | / 7- ~ N$ 5 /& $# { 2 ) 5 } d d Y> 0 ,# 6 9 ,# } e k J] 7 +# 6 ~# L= a h a' 0 ~# 3] n e ~# 0 a L= ~# L= ~# e a n ]# `$ D ^# ^# _# n 4* :# % r Y$ L= p % ^# z w p r D }& F z w %> F= M A I A w M I A M P@ Q A: E$ ~& A: E$ T J L L :* L I@ L@ L =I G$ 3d O Q S G$ 0* I@ P G$ O= O= 58 58 6B 7s 6B &k q9 C$ q9 r4 ja r4 J r4 &H cf %i >I r5 dK 5o {C |h df :C dy |h A0 |h Bw Yz 9o eK dy fK |C Ck eB tH vG jy vG tH jy ~9 KE !I !I gK >K hK *A ~I iK 5D 'K wH ~I ms *A yH 9C ~I ]I jK kK NA Wv NA OA =u lK /I UF NA lK mK !K ,H EH nK ty ty !K oK }I .G pK 1z pK 1z 5z - d= %, ^{ 6+ s% 6+ g, 6+ ;- i; 6+ I& l' t% .) d+ t% $$ a+ d+ 0+ 0+ d+ d+ d+ 0+ d+ d+ K& f+ d+ d+ &$ e+ ~J bz m+ m+ m+ h+ q+ -$ h+ ]G ({ ({ ({ q+ h+ ({ ({ q+ !w Xi Fl qt Xi Fl 8> qt Yr Yi qt cz &r &r #x m9 &r uK @f W2 _i 4c _i 4c 3c _i _i NH ot On 7I f) On vK ot [A L| _{ _{ L| nf ~w _{ nf <~ <~ m, m, <~ ~w %@ '; p; p; _$ p; _$ p; Z+ V+ Q& wK PH xK 5A yK My l BK Yl [x pu wv 2j KC 'l QB >o %K yC rc CK DK EK FK U> 6@ X* X* -& F9 B= '& (. ^. x@ x@ )& !. &. 5# X G@ .= )& 7# @. C$ 2# Y Q@ H N@ K H@ #= I A ", +"p9 = V@ # 0' ]& ]& 0' # + = 0' = # V@ # V@ S$ . !, > # * k) o! $ . N$ @ Q$ . $ > S$ # $ ; # > Q$ & # N$ & - {c Q$ ~ $ N$ ] ; S$ ; | U@ | ^ `@ 2 N$ *# 2 2 T@ ~ 8- ~ S$ ~ < , } *# ) { Z@ { +# ( 1 7 } ( N$ 2 1 $# ( V$ 7 | J= &# 5 c ># -# 6 b 0 a k 0 ,# 7 a' X$ a Y> 7 ~# ]# V$ n L= ~# 0 h h l i c h 0 p `$ m h r Y$ `$ `$ ]# % ^# s> GK F= #| /# ^# 2; D I m F G w {& F= B A B E; ^# M O@ M I {& M M 8* M I 1& S S J O r! J G$ t> t> G$ G$ G$ J ` O tw qH 4# H O= @. O= 6B 7s 58 r9 58 ={ 58 @. ja rH Ou ja rH r9 cf .J HK 5o ,I IK dK ,. |h F^ cy |h dy %i Yz *H Yz Yz Zz Yz Yz Yz 8J JK jy ~9 uH tH uH tH jy KK hs LE uH 5D 0J wH hs LK 8C ~I IF ~I ~I 9C yH MK yH NK )K OK &J /I ;v PK =u OA UF OA OA ;H UF Pw ;H Pw QK Pw RK bJ 'A JJ IH 1z 1z IH 1z /H SK TK FG XA zB zB DI UK JG VK WK 1I XA JG Ww Ww 0 !J .q j9 gd Fy n T3 El Fy .x V5 V5 D9 !k V5 V5 V5 V5 ~k ZK Tc ~k +f +f !2 7< J^ 7< J^ 7< 7< 7< 7< e3 7< 7< C_ 1c W5 S] `K }_ K^ }_ }_ }_ i( W4 [} [} y^ y^ @{ 74 E_ @{ ~) y^ ~) !/ @{ ~) @{ y^ Z: y^ P! / u: Y/ D' [^ %, k' k' _~ j^ j^ |_ _~ %, b= %, _~ %, d= k' B* i! g, 6+ @$ g, i! .) 6+ 6+ i; t% 8+ d+ a+ t% c+ 0+ 0+ 0+ 0+ %$ %$ %$ G* d+ &$ m+ f+ 0+ f+ j; LH fh m+ ({ q+ h+ h+ ({ HB q+ q+ q+ ({ q+ h+ q+ q+ !w ({ Fl qt .B BD Xi Xi .B Yi dz qt Fl Yr Yr G+ L (i 1K &r _i W2 4c _i On _i G+ 4c ot ez 3K _{ P9 :- .L On P9 $g L| _{ ~w _{ v] wg nf ,; 6E '; <~ ~w ~w '; p; m, <~ <~ p; _$ (- Z+ S+ /- +L /e yK NI %c @L #L Ps Ps =B JD JD JD Os DC JD *B JD *B JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD *B *B JD *B *B *B *B *B *B *B JD *B *B *B *B $L %L 0K |j |j {n Ht &L [x *L Ro 1i xf =L ii |i -L .y ;L >L /b ,L `; U% 3@ ;* g@ -& q@ (. ,& q@ w$ )& =. z@ r4 &. z@ G@ .= P V P G@ L@ H P Q@ 8* A 1& J I I P@ ", +"0' = Y! + L$ # > .( R- > > ]& = # T@ Z, = + . $ > = $ = S$ U@ - & [* o! S$ > Q$ $ > # Ez $ P$ + ] ~ $ V@ H= & { | ; ' ' . & H= 2 P$ ~ ; { ) ] J) ~ N$ ~ | 4 ) { ~ ] 2 | ) T- ~ | 1 ,# | a ( /& 1 4 $# / ,# 6 6 6- $# e ( k !# D, j k ># ,# 0 !# 4 0 7 k a 7 c g i ,# n n g K= h 0 ~# L= ~# s Y$ Y$ h % n 2, 2, Z$ n /# 2; /# n^ /# Z$ m % C z w N t t y w C K }# Q@ w z z P@ O@ A z E$ M P@ P@ P@ :* |# M b- O@ L :* d- T E$ G$ T T 0* L@ T 3d 3d E^ BE 4# 0* G$ O= 7s 58 58 q9 58 7s q9 r9 Ou ja q9 ja Ou Ou Ou &H lI ;I Xz lI dK A0 |h A0 _C {C dB A0 Zz Zz |h :C Zz 9o fK fK GJ JK qI uH 'L jy vG tH )L qI )I 2h ;1 IF 5D wH ~I %J wH ]I {I ~I HJ !L zH 9C ~L {L {L zH zH ]L =u zH Wv Wv OA Wv /I UF OA !K !K ]K bJ ^L }I Pw !K /L IH -J LJ .G 1z pK (L _L :L Fl qt 9> cz 2L qt Fl W2 NH 3L 3c 4c NH 4c W2 4c On 4L 4c 4c _i On 4I 5H nf L| L| 5c On uC nf P9 wg m, wg nf _{ 5H _{ nf m, '; S> '; p; p; p; <~ o= _{ _$ Y+ G% S+ O+ 5L a 6L 7L 8L 9L ]r CC Os Ps =B JD *B bu Ps =B =B DC 0L DC DC *B JD JD JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B JD *B *B JD *B *B *B *B *B *B *B JD JD JD Qs aL ^y bL |j bw RB yz [x cL 2k dL :q I eL |i fL Is gL hL iL jL U+ .* 3@ .& l@ l@ -& v@ c# (. ^. {. A@ ). ,. 5# +. X .= Y P T 1# C$ H$ O@ J J P@ S +% G A M@ ", +"]& J$ * # + = !, $ # % > $ = S$ & = 0' $ T@ = $= = $ > S$ & ; S$ ^ Q$ . ] & Z, = ]& . T@ $ ; {c > $ ' - ] N$ Q$ ~ & * > Q$ H= 2 @# ~ [ ; | ~ - ~ ^ ] X@ & { | ( ~ ] ~ R$ [ { [ { { Y> ( } 2 *# a [ 2 | 4 { W@ $# W$ 6 6 *# c ,# 9 i 3] ,# a L= ># a ,# kL L= L= ~# 6 a 0 e 6 L= o r X$ [& e L= h V$ ,# p m `$ q Y$ s> s> `$ ^# C m m K 4* ^# z 4* Z$ F Z$ /# w z I N /# I I m) z {& N O@ S E$ a7 N O@ P@ n! A M P@ Q T 3; d- T T 0* d- L Vf I T I@ L 4# tw ia 0* 58 C$ 58 58 q9 r9 lL 6B r9 mL r4 Ou q9 r4 ja nL {z HK Wz Bk `z &H HK #J _C A0 _C Wz tG dy Yz Zz |h Zz oL ]z |C |C 9J 82 ~9 jy <3 GJ jy jy pL vG ef @A KE 8C tH qL wH ;u IF ~I IF hK MK rL 9C MK yH ~I ]I PK HJ &J wG ;v OA ;H sL UF /I /I tL ;H sL ,H JJ ]K uL -J ]u JJ bJ GH 5# ). *. F, e- $% 5# 4) I@ P 1# S L L@ ` E$ S A H$ K@ S S ", +"k3 + ]& V@ * M$ = V@ R@ ]& # # + . ; = $ & - = . + * = = Q$ + . S$ > & U@ $ # * > * = ] # > & & ; ; ~ H= V@ ; $ Q$ . - X@ N$ > ~ 5 ) ] 1 | N$ Q$ ] ) ; ^& > ~ ;# | ] ## | W@ ~ N$ ~ d | < ## X@ 6 Y@ / &# 7 a Y@ 6 c < $# } o ~# Y@ 8 3] 0 7 7 a i a 0 k c ,# n ~# L= h 3* ~# n p j ~# r -) -) ~# 0 n u q _# u `$ `$ q m Y$ ^# p m C ^# {& :# `$ w `$ ^# w W) I %> 2; z c- P@ A A %> O@ J |# OL I ` E$ M I I >z A |# O@ P@ A: L@ t> E$ J U Q L d- G$ 4# 0* tw O= O= 58 7s qH 4# 58 q9 rH O= ja q9 ja ja ja J J PL sH QL PL ;I Wz lI QL 5o `z Yz dK dy dy dy Zz dy Zz Zz :C RL 9J eB SL vG vG tH vG tH TL uH UL ;E KE KK uH KK qL IF %J ~I ,K VL ]I ~I HJ WL 9C wH ~I ;v XL ;v yH -u NA tL UF ;H ;H NA ;H ;H ;H /I UF YL nK JJ oK [I QK nK ZL IH 1z TE ^H vL /H -J 1z yI XA zB DI `L CI DI JG 1I JG DI 1I M QG sK Jx ,G qC QG 'G 'G .M 'G qC rC :K :K +M @M xL :K Bl ;w q q #M -w q x CB rC `w x x Tx Tx $M sC Vr T3 kf gd T3 n El El Fy El Fy .f ~k .f !k .f ~k ~k .f .f Ux yo ~k ]k qa Rk ]k Z{ )2 J^ C_ Z{ e3 7< 7< e3 C_ e3 e3 1c W5 O~ }_ }_ W5 [} [_ _1 [_ 1c #g ~) ~) (~ E_ @{ ~) y^ B/ @{ C' ~) y^ V] V] i^ :/ ~) u: S( z[ / b] b] A) k' _~ %, b= _~ %, b= %, k' %, %, %, b= d= 6+ k' f, 3+ 6+ g, 5+ i; g, 5+ 8+ t% c+ l' t% j; 0+ 0+ d+ 0+ d+ b+ d+ d+ d+ e+ K& f+ e+ 0+ I* e+ ]J h+ $F &$ q+ m+ h+ h+ q+ ({ 5E HB HB ({ q+ MH ({ 1L qt Fl Xi Xi .B .B .B Fl dz |K Xi .B NH On pJ 3c NH 4c 4c W2 4c 4c _i On On ot _i On On uC L| uC @/ 5H 6I s0 L| '; ~w nf ~w nf nf '; '; '; m, m, m, '; #@ m, <~ <~ p; Z+ T+ Q& 1A %M &M aH *M =M -M #y [w Xn Os Ps *B *B JD [w Ps UH ;M Wn JD JD JD JD JD JD JD JD JD JD JD JD JD DC DC DC JD JD JD JD JD JD *B *B *B *B *B *B au au au *B >M Ls ,M 'M tv vv ^n ]y |j 2G )M 2j ND ;o Zo me Ph |k !M mk ~M {M iL ]M ^M +^ |@ /M W* W* -& (M (. '. u@ v@ A@ !. )& !. -. &. +. G@ +. C$ O H Y S 2# P@ S H$ K@ 1& H$ A ", +"L$ . L$ # + = L$ > 1) = # > > Z, > # S$ & $ X! = > = + ]& > . 5- > . o! Q$ ; & Q$ ; & S$ ] ; . N$ & U@ Q$ - ; | & V@ ] & & N$ | & ; 7- ; ] 1 ; ) ; ^ 1 , Q$ Z! X@ 2 ~ < ## 2 / ^ , J) [{ ;# 7- | 2 4 | d J) D, $# } J] e 6 } Y@ { } k N' ,# c [& 0- 6 7 a b k h h c h h 7 h L= L= `$ s> 0 L= h ~# r L= e /# Y$ m v h % (# p E, z 4* s> G ^# 1; n^ `$ Y$ ^# G z x `$ w D o^ A I G I S Q@ I H$ n! M P@ A D J H$ A: P@ T T Q U G$ H Q E^ 2# 3d 3d U^ 0* 3d P tw 0* O= tw qH _M tw rH 7s 6B O= :M rH q9 ja Ou {z PL PL sH sH 5o HK Vz y@ k' |_ %, k' %, k' A) .! _~ Y# b= b= %, B* 6+ u- d= ;- s% 6+ @$ 8+ @$ 6+ t% 7+ ;- b+ c+ c+ 0+ 0+ d+ 0+ d+ d+ d+ d+ d+ 0+ &$ Bs 0+ 0+ i+ &$ d+ 5E h+ I* q+ m+ HB }K q+ ({ }K HB 1L ({ HB ({ MH qt bM BD bM BD Gl qt Fl Fl cz Yi Fl Fl dz 1K M jM wv bL bw $t [x eE ^y Mh kM ik uj `o _n _n ,r lM mM nM oM 5G pM +^ '~ ;* A= m@ q@ v@ :. O- ^. {. A@ A@ +. 5# (* ,= E@ 4& R F@ Z 3; 1# P@ J }; H M A P@ Q@ Q@ ", +"+ # ]& + $ ]& 5_ & + $ > + = ; - > Q$ $ $ $ L$ . }* $ %= & ; . > & = # > - > U$ ' 2) Q$ ; . & - U@ X@ Q$ Q$ N$ | U$ > . & Z! N$ Z! ~ / . ; R$ 2 R$ ] 2 P$ ~ ' & | 7- ; *# /& 8- X@ < V~ == ~ } 4 < ( ) N$ Y@ ~ { 4 [ J= [{ : 7 6 a a i b e ~# ,# 8 8 {# ,# 6 ># a ~# 7 e c a j 6! A~ n n c 0 `$ 0- ,> l Y$ h % s> Z$ p t m {& qM :# t 1; p p 2, m ^# /# p N G G D A w o^ G I .~ P@ O@ A j4 m) O@ :* M z z M O@ O@ P@ Q T Q T t> |# d- pF I@ r! A: L I@ jI 3d 5, I@ E^ 0* 7s O= 7s mL 58 mL 58 7s {z @. Ou 7s ja sH J bf Ou rM sM EA &H tM Wz dK Ji |h Wz A0 A0 Zz |h dy |C Yz Bw eK Zz eK 'I vG vG uH jy vG tH vG vG uM KK uM !I 2M IF ~I ]I wH wH vM hK wM xM yM yH )K HJ yH yH lK zM ]L lK AM /I lK OA /I /I OA ;H UF ,H EH BM *J HH KH .G .G 1z ^H .G pK 1z G S ", +"R@ # $ pH > |* $ 0' & M$ # T@ # Z, $ . ; $ * M$ X! Z, $ . Q$ T@ & Gc [* # . $ ; > > T@ $= & > ] | ; Q$ V@ ; N$ U@ | S$ - ~ ; ] H= o! 2 %= ) S$ %= N$ P$ ~ ~ ; R$ 2 & } Z! { *# ) ;# d 2 ) ( ) 1 6 6 ( Y> 4 d q> V~ +# 1 } b a $# '# ,# ># q> b d e a a ~# 0 [& d $# $# a o 0 0 ~# L= ~# 2* h ~# L= Q{ {# `$ c h s s> ~# ^# m q t Y$ m `$ Y$ p t 2, % v p 2; Y$ D F= m w w G ^# G G {& G I I G N %> M m) M P@ I I A H n! Q A: P@ E$ 1# L 3) r! d- U^ S J r! r! A: @N #N 0* 4# 7s BE 58 E^ 58 7s 7s $N 58 r4 q9 Ou rH Ou Ou kI Ou .J %N &N sH Wz 0B &H #J _C |h @J Ji |h *N dy Ji Yz Yz 9o eK Yz RL =N vG >b vG tH uH tH tH tH uH 2M 2M rL 2M KK IF -N 9C ;N !L ]I yH PK >N ~I {L HJ ]I ]I uI wG )K /I aJ OA Wv UF Wv ;H UF ;H bJ JJ mK bJ ]K -J ;k 1z -J 1z (H IH fJ pK (H FG ,N .! f, 1+ 6+ i! 7+ ;- 3+ $$ t% b+ 0+ 8+ 8+ d+ 9+ 0+ d+ d+ 0+ d+ %$ 0+ e+ m' &$ F* m' m' F* {J ({ q+ I* ({ ({ n+ ({ q+ ({ q+ HB HB 1L ({ BD Xi Xi ({ HB Xi Xi qt qt bM .B dz Yr qt 2L cz 4I 4c pJ oJ On On 4c 4c ot 5H On On ot On ot ot 5H nf _{ @/ ot 5H $g L| [A L| ~w ~w nf ~w ~w <~ <~ '; <- S> m, Z+ p; '; _{ f) xg ^N /N (N 8L MC _N :N . 0# z@ )& &. B$ Ld 4# L@ L@ O Q@ H Y A J E$ A K @% ", +"L$ M$ ]& ]& + # + $ . # + # $ $ T@ $ A; ]& * R- + . [* V@ # Q$ ' $ . > U$ %= & ^ ; $ $= ' & | ; 2) =' & & & - - . Z@ ; > . > %= ] > ~ | | U@ *# { 4 ~ T- J= 7- X@ N$ *# N$ N$ 2 { ^ $# Y@ J= $# ( ( 1 7 4 ( 6 } ,# ( } N' } 0 7 ,# ,# B; b V$ ># a 0 7 $# b a' 8 6 a' 7 ,# {# c p 0 ~# e ,# ~# V$ ~# {# ,> % r o ~# n 2, ~# n h /# b' m `$ p q p! v c{ Y$ C D w D )> F= D w 2; I P@ 7s r9 rH 7s q9 7s @. ja {z E@ ja ja %i {z bf PL sH Vz Vz _C ,I >I 5N #J Yz Zz Yz dy Yz Yz |C Yz 6N |C 7N 8N qI tH vG 9N tH jy tH uH KK gK hs KK KK 4C ~I vH qL yM ]I 8C zH tI rI yH yH wG ~L BH 0N BH /I aJ aN /I BH ;H UF UF bJ JJ oK BM BM bN BM vI 1z RA .G :E .G /H CM ^H vL cN dN 7M eN fN WK 1I 1I 7M VK gN hN `L WK EI ,G rK iN sK QG 'G OJ 'G 'G :K jN :K :K 'G :K 'G #M @M .F `w kN `w x RG CB x x rC .F CB kt TG YK Tx lN Vr n Fy EB gd gd !k !k !k Fy .x Fy V5 .f V5 !k !k 34 AL ~k V5 6v Sc Vx J^ Rk mN 9e AD e3 e3 e3 C_ 7< Z{ e3 C_ e3 C_ C_ W5 S] nN e3 [] }_ 3{ i( K^ H{ T] r8 F1 ~) h^ 74 @{ U] @{ @{ y^ @{ ~) :/ y^ V] B' E_ V] `' `' K{ b= c~ D' A) k' k' l% b= %, %, }+ u- B) %, f, |+ s% g, 6+ f, .! @$ I& 6+ 7+ t% s% t% $$ a+ b+ 0+ t% oN d+ d+ d+ d+ d+ e+ &$ K& e+ K& i+ m' F* 5E &$ pN qN ({ 5E |L HB q+ }K ]G q+ MH ({ JM HB HB BD Fl bM bM 1L qt Xi qt Fl |K .B Yr cz qt |K .B NH On 2K 3c 4I 4I On _i On On ot $q 5H ot ot rN 6I uC uC Hl On ot 6I 6I _{ _{ <~ nf wg D- wg %g <~ <~ S> m, '; '; <~ p; L| G% /7 Q& sN #a tN vJ uN -q Vn Io Xn Os Qs wJ #y =B au *B JD =B JD JD |J >M DC *B DC |G |G |G DC JD DC JD DC JD DC JD DC JD JD JD JD JD DC DC DC DC DC JD JD JD *B *B JD JD vN wN xN JC JC Gt /n /n yN 2J 2J *t Zo +K uj `o Jf 1N cH kb %a zN AN Y+ 6$ |@ +& -& h# x$ s@ :. ^. ^. p, ). )& 4- .= (* z@ E@ E@ G@ E@ L X R M@ 3; Q@ E$ P@ K@ M G ", +"+ L$ ]& BN $ . ]& L$ L$ . $ $ # # $ > $ U@ . # . * M$ # * = $ $ k3 & U@ S$ [* & S$ & # ^ ' ; & Z@ 2 N$ |* $ * Q$ & & W@ Q$ | X@ *' . Z@ /& ) H= > ) X@ ( ^ ~ O$ CN | 7- } 2 N$ { %= & { ( [ { d 2 7- $# ,# 6- ~ [ /& $# { d $# J= 6! J= 6 ,# Y> 7 < ,# a $# b e 0 e ~# n q> } k {# n A~ n ,# k e c g {# n c a c 0- n C; K/ Y$ l Y$ % `$ q % ^# D 1; C w F= % m m 2; w 4* C w N N w A O@ z 2; Q@ F= I E; F= q! N I O@ Q 3; T Y L' T G$ U^ H G$ qF L H d- E^ T `I E^ O= DN EN 6B @N @N 58 7s 6B 7s 6B q9 @. r9 {z {z Ou {z Ou EA FN Ou .J nL >I GN ,I bf HN dy Vz IN 9o dy dy A0 Zz |C eK oL dy |C FJ JK tH pI JK tH 2M uH vG tH [z [z 2M 2M qL [z vH %J yM 9C JN wH ~I VL 9C HJ HJ zM zM Cx kK ,H dJ KJ sL Qq bJ ;H ~K ;H bJ JJ ;H nK bJ nK SA 1z eJ [I fJ 1z 1z 1z -J vL KN gN LN MN NN NN ON DI CI PN QN !N qK RN SN sK rK SN _K :K QG }L :K QG :K QG :K 'G 'G OJ }L F #M .F qo F ;w x kN <~ _$ _$ p; p; f) S+ E+ XN b YN ZN >e `N O .O 'q Os Qs Qs Ps [w JD *B JD Ps Ps RI *B =B DC JD DC EC XH EC DC JD DC DC DC JD JD JD JD JD JD JD JD JD JD DC DC JD JD *B JD *B JD JD JD JD CC yt yv Yo Yo [x ou dw 2G 2J +O Yg @O #O ;o Az $d $O tt %O &O *O =O ($ 4$ o$ m$ -O r$ O- >& c# v{ {. ). +. +. %. (* =. A@ R X V z$ X G@ S P J n! S J J E$ J ", +"L$ R@ + $ . + Z, L$ ;b $ . > }* > > . 1) U@ > }* - > Q$ ^& $ $ ' ] $ & $= U@ ' T@ | 2 ; > Q$ * # . T- N$ ; S$ & ' > # Q$ . = | - & H= X@ ~ %= > | { { ## /& | ^ - & X@ 2 ] { ] ~ [ ## : W@ : [ ~ ## == d ( 6 : ( ## 1 ( ,# D, 2 6 i $# 6 a 6 2* ,# i d &# ,# a k i i ~# 0 c i i ~# L= c p c X$ h Y$ r 0- Y$ c Q{ 7 (# G @= ^# p m ]c % 0- V| F G #] w :# {& :# 6* m Q@ B A A F= G A A I G z 3# P@ m) ;O H$ n! P@ L 3; T a- M >O U d- J 3d r! G$ J 0* 3d T pF 0* T 58 tw O= 6B EN 7s 7s 7s 6B 6B r9 Ou FN r4 ja {z Ou {z J PL {z &H &N EA Wz ,O dK Wz A0 'O )O Yz dy 9o |C dy |C Yz oI 6N 6N !O eB KK jy jy tH uH KK jy uM uH uM gK KE KK ~O !I 8C {O uM yH ]O wH 9C ^O yH HJ aJ xM {L OK )K OK /O BH Wv ~K UF (O bJ /I bJ bJ JJ ;H bJ {H .G 1z _O =J 1z -J -J LJ :O x$ q@ ^. c# !. p) ;. x@ z@ #% z@ z@ }; . &' #% .= T L@ P L@ A K@ S A M@ Q@ ", +"# ]& ]& ]& = Z, ]& ]& + > = o! T@ . Z, ]& $ . > = > > . - * {c & P$ . + > S$ > ' U$ ' Q$ > U@ & P$ ; %= > ] ~ $ + - & > > + N$ P$ > ; ~ X@ ~ Q$ ~ ; { ) } V~ 2 | ; ; N$ ## | ; { | 6 6 / { 4 1 2 } *# ( { | d [ 6 [ ,# d $# e b 9 d V$ d 9 } 0 ( a e 6 $# c L= r {# 6! *= M' n L= C; ~# n L= 0- Z$ ~# h p 0 n ]# 1; p ^# {& % `$ Z$ Y$ }& 4* z ^# m F G ^# b' N w N M c- I I F= x |# c- O@ A |# A A o^ O N@ I :* H 3; | + k) S$ & S$ ' . & S$ & $ . ' & *' %= ] ; . R$ %= Ez R$ | > Q$ * & ; U@ $ o! ] ; | N$ ; | { > Q$ | ) ~ ] ; +# { 4 ; P$ %= 7- < / ; | | { / 7- [ ~ ~ &# ( /& { N$ X@ d 7 b [ 9 0 a ,# 7 ,# c ,# k 6! ~# L= 6 i 0 9 i 8 j o a 6 o {# 2* 0 6 a *= 1, p n h {# n % Y$ n 2, o Z$ {& w q r `$ m 1; ~& G D /# {& % m C `$ $] A B M G 8* F= I M O@ E M d{ 1& O@ Oz J M d{ A: Q L ` SO *I T J H L@ U^ G$ L@ G$ G$ #N U D$ qH 58 tw O= 58 @N 6B 7s 7s 58 6B 6B 6B TO {z J UO Ou -I {z Ou wr #J EA I A0 Yz A0 Zz eK Yz VO 7N 5N |C !O tH >b tH tH KK uH tH uM uH uH 2M qO 4C WO uM 9C *A iK HJ ]I =v XO xM 'K XL zM HJ yH NK ~K Wq UF AH /I ]K ,H JJ ;H ;H nK ;H OA UF vO nK ^H vL YL wO wO 1z LJ YO vL pK YO ZO `O !N P .P DI qK +P VK qK !N DI `L DI qK 5O iN CI 'G 'G QG 'G OJ 'G QG .F :K 'G @P #P OJ ;w :K Bl .F CO `w CB P >e -F sf Kt HL #y Qs Qs Os =B =B Ps Ps JD JD JD *B =B Ps RI 'q DC JD JD JD JD JD *B *B JD JD *B au *B JD au au JD JD JD au 7K 7K 7K LO @y au JD JD JD *B JD *B NB yt ,P ]n [x ^y ou ]n tv ^y `y 'P jk )P !P me qd mh ~P =M Ca {P ]P #f <~ 4@ ,* i@ -& m@ -& v@ w$ = A@ A@ ). =. 4# 5# 4) E@ L@ .= G@ H H J@ }; S J T 1# N Q@ C, ", +"+ V@ + + $ $ + + = ]& $ = . X! - . $ & ^& k) * # |* Q$ . T@ $ ; . + ; - + . $ U@ ] $ N$ & & ' S$ & . . S$ H= * > . S$ . %= ; N$ X@ | - ^ 2 P$ %= N$ 4 2] Y@ d 1 N$ =' 8- %= 2 2 ) [ ## < } W@ ## W@ x0 { -> ## Y@ ## 5 } b 9 ( b / d -> b D, b 7 ~# 6 6 a e ## 7 $# 7 ># n a a p h ~# 0 L= L= p o ]# 3] ~# L= h p n 0 Y$ p ~# @= :# Y$ _# ^# m 4* b' Z$ 1; B G }# u w z z F Q@ I G F= n^ I N O@ c- O@ I O@ A M M Q J :* M :* T E$ Oz h] O@ L L@ tw #N 3d ^P 0* P' U U^ 4# 4# BE E^ &k 58 qH 58 58 7s 6B 7s 6B 6B :M Ou 6B rH J Ou {z Ou .J &N .J Wz sM Wz nO IN A0 {C dy dy Zz Zz Zz Zz |C *H Zz fK oI pL uH ~9 uH KK KK 2M KK 9N KK sO uM /P /P /P (P rL *A _P 'K {L )K yH {L )K HJ {L VL 9C tL )K sL tL dJ ;H bJ aJ :P Vw ]K ;H

6+ J> s% 5+ u- 6+ 6+ .) ;- 1+ I& l' 7+ %$ b+ 8+ 8+ ~J %$ e+ e+ e+ F* e+ d+ 0+ e+ RJ Bs e+ m' F* 8P pN q+ HB ({ q+ ({ ({ 1L BD 1L HB 1L HB MH MH Fl BD bM HB MH |K qt .B .B qt aO dz |K |K 4I 4c &r $q _i On UN On _i _i ot ot 5H ot On ot 5H On uC _{ $g JI LM JI nf _{ 7I wg nf nf wg nf 7I '; <~ '; '; _$ '; V+ /$ C- 9P 0P _N aP ;L bP ]r Ps Qs Qs Os Os Os Ps Ps =B =B JD JD JD =B #y UH JD JD JD JD DC DC DC DC DC DC DC JD JD JD au *B JD JD *B *B *B au au kz iM 7K ,F JD JD *B *B DC *B yt +e ]n ]n ^y dw gH ou dw 9r Oh cP +O UI .e 4j Fe dP eP fP gP hP iP +^ X% '* :; m@ j@ x$ w$ {. A@ x@ ). &. )& . .= *. @. D$ J@ =. }; G@ P S J P@ K@ ` J z M ", +"M$ # ]& $ > + ;b ]& V@ jP 0' M$ . + ]& . L$ ]& > 1* * > # . L$ ]& }* H= ]& R- $ & - > Q$ ' ] . & = & %= > !, . & Q$ ] ; A; . ' | N$ S$ N$ Z! ] & %= & X@ T- | 5- 1 6 2 { X@ X@ - | X@ 2 | 2 W@ 2 b{ < : 7 < / ## /& ~ /& 6 <& 6 < 5 [{ 6 e < a [ 4 0 6 J] } 3* 7 c *= 0 e h h c o 0 t' 6! a o e q> ~# c ~# X$ _# r K= Z$ j % m q % m % }& _# h 4* ^# p :# {& (# w C G z N b' x I A A F= I Q@ I B c- H$ I o> I M h] M P@ 3# O@ E$ S c' L :* 3& G$ L@ G$ 3d G$ kP r! d{ I@ 0* qH lP E^ qH 7s EN 7s 7s 58 58 58 $N 6B q9 y@ r4 HK {z r9 bf Ou &H ,I {z dK PL mP dK @J /3 >I oO Zz Yz Yz Zz 9o nP Bw |C |C oI oP uH jy vG KK tH uH tH uH uM 2M /P qO 2M /P 4C pP &J qP rP >N yH MK OK XL HJ HJ {L XO sP KJ 'H UF BH NA ;H tP QK 3M uP dJ vO BM ]K bJ ZL =J {K .G -J LJ -J CM 1z ~. ,. z@ E@ @. E@ L@ J@ P ` D$ H L@ Y M@ S z J I A ", +"S- ]& + R@ > $= J$ L$ M$ # . Z, Gc # Q$ - + p9 # S$ Q$ + $ $ M$ $ . p9 $ X! (& . & & # S$ ^ & > > & & * ; H= $ %= ^ | N$ ) | N$ %= Z! | { S$ ; Q$ P$ ~ X@ ~ - { [ - [ | N$ & & Q$ | ^ | Y@ 1 [ 6- 2 } < ) { d 2 ~ 7 [ $# == 6- 6 &# 7 7 a $# d c ,# ,# [& ,# a c c 0 ~# ~# 2, e 0 z: W$ n ~# K/ k i L= c z: p h Y$ h 4* Y$ V| n V| ^# % Z$ `$ ^# t D ^# ^# C /# o/ ^# m 4* m w w W) ^# A j4 N I w x z I P@ #] J A |# Q q! o> 3# o> 3; S r! A: S U DN L@ K) #N U^ =I tw 3d G$ tw #N #N `I BE 7s 6B O= 6B 58 7s 58 mL E^ 7s ja E@ -I Ou J ja Ou {z QL MP lI NP FN dK Wz |h |h OP 'O Zz |C Zz 7N |M fK RL Zz |C PP vG vG 1M |M 9N KK QP uH uM uH uM KK /P uM uM /P NK WO qP 4C ]I ]I {L {L ]I XL )K 0N RP tP aN >H wG cJ dJ Wq aJ 3M uP ;H cJ cJ ZL YL nK 5M 5M SP pK LJ vL -J LJ 1z o Jf =Q bH -Q &K ;Q >Q X+ ,@ .& g@ -O k> x$ h# v@ (. A@ &. z@ &. -. z@ .. .= V ` S ` 2# J H E$ M H H$ S |; A ", +"+ - + ]& $ + R@ L$ + # + 0' > p9 + U@ $ 0' #^ . ; $ $ > * * - H= & + ' . . ] o! ,Q - ^& H= $ > . # . & k) & > ]& & ] T@ & | # ; | ; =' N$ & N$ H= | %= | [ ] { %# 2 N$ ~ { W@ X@ 2 7- { [ |, ^ , ] ^ $# 2 d ~ 7- 6 ,# d [{ 5 ,# $# < e d 0 6 7 0 a 3* ,# ~# [& 8 9 i ,# a e n !# r ~# s> `$ n {# *= 2, h s> ^# r m _# |& }& 4* r % w % F u Y$ B [# m _# ^# I b' }# % n^ D m ~& w W) I m I x {& M A 8* O E$ Oz E$ G O@ O P@ |# L D$ J i5 P@ A: d- T 3d 3d G$ G$ L@ U^ 'Q )Q 3d !Q tw O= 58 O= mL O= 58 6B 7s E^ 6B Ou ja J q9 {z J Ou Ou HK QL S; k/ D' b] k' <' %, %, %, %, b= Y# f, A* %, k' 1+ i! s% s% }+ %, 2u 6+ 1+ +$ I& s% 1+ 3+ 8+ t% e+ J& t% e+ e+ e+ e+ d+ F* CP e+ 0+ d+ F* I* CP &$ HB ]G 2Q Q 5E HB 1L 1L HB }K ({ ({ HB JM 1L HB 1L qt .B HB MH |K |K |K aO .B |K aO 1K 1K |K On _i $q $q o$ -O l@ l@ :. ^. ,& >. x@ 5# .= ;. +. E@ +. z@ 4# H H$ L@ P@ P@ P@ Y H O@ S Q@ Q@ ", +"]& V@ + = 0' ]& Z, Z, ]& + ]& !, + + ]& ] ; pH .( - V@ X! ; T@ Q$ X! $ Q$ 0' ]& - $ & ^ U@ = {c & 5- ] Q$ > | 2 N$ Z! > ^ Z! & > ' > & H= U@ | X@ Q$ 5 N$ Z! { { N$ ^ ) ~ N$ N$ & . Z@ W@ [ N$ 2 { ## ~ [ d ) d q> } /& d ( d d ) ## ( 6 ~# ,# a 7 0 [ 7 c ># ~# ,# {# a X$ q> 7 0 0 -# c n r n c _# {# [& c *= r n `$ ~# V$ h !# p p n ^# #] /# t h m B w n h -) (# m /# N F= F= b' w I I 8* G I N w P@ z H$ O@ M 1& ~& M h] |# M A: 3& O S P@ U |# U^ Q U^ U^ G$ L@ 3d pF DN G$ Vf tw tw E^ 7s 7s mL 7s 58 6B mL mL mL 7s ja {z r9 {z J ja FN cQ dQ / d~ :/ r{ D' k' %, b= b= k' b= Y# d= B) %, b= 1+ s% 5+ 1+ g, 1+ 2u ;- s% $$ 7+ 3+ 1+ I& t% 8+ 0+ d+ J& d+ d+ d+ e+ d+ e+ e+ e+ F* d+ F* RJ CP F* ({ .Q qQ rQ ]G ({ ({ HB 1L q+ ({ bM BD HB 1L MH bM qt |K Fl qt .B .B bO dz Fl qt dz UN 1K sQ pJ 4c 4I _i tQ On _i On On On ot ot ot ot ot LM LM 5H dM nf _{ _{ HO LM LM ~w Es S> nf nf nf ~w '; '; S> <~ p; _{ F% P+ NH uQ vQ wQ xQ iE yQ zQ AQ Ps Xn Qs Qs Xn Ps Ps Ps #y #y bu *B *B =B Ps $s UH |J JD JD DC JD JD JD *B *B *B *B JD *B *B *B *B JD *B 7K au *B JD BQ au 7K 7K au 7K 7K + + + > . %= & o! Q$ $ = ] ; . ^& Q$ [* . - ; S$ Q$ ; ; S$ . N$ | H= > = T@ > Q$ T@ H= | X@ | N$ X@ S$ ~ { { ; ~ { ~ => | | ~ ] Z! { d { | d ~ 6 [ W@ X@ 1 ( X@ /& V~ | } ( &# 7 *# 7 $# } k ( 1 g n ,# 8 ~# ~# e 7 ~# L= ~# k L= c Y$ ~# s> i 0 C; {# L= r c{ {# :# r 0 `$ n Y$ p n Y$ h D y2 ^# ,> y2 t b' ^# ^# m `$ b' % ^# z 2; G c- M G C O D$ U^ tw 4# `I G$ qF 3d 0* qH 58 !Q qH 6B 7s TO 6B 7s 6B 7s rH @N r9 r4 {z Ou Ou FN {z {z HQ HK sM lI Wz eQ .J Wz dQ :C &N 'O |C Yz Zz dy Yz fK dy |h nP EJ fQ uH uH pL IQ JQ uH KK KQ tH gK uM uM hQ uM hQ LQ 'K hQ hQ iQ &J ]I ~L )K yH )K zM zM XL MQ uO mK OA ;H 3M ,H NQ JJ bJ #w nK OQ YL {K PQ pK ^H SP -J CM ^H M JD au au *B *B R 5Q au *x Az .R ou `l ou /n |N xv /n +R @R ar 5g Az #R MD EQ MC kb $R %R &R T+ L% 3@ 0@ ~* -& s@ w$ 7; A@ ^. ;. &. =. &. &. G@ C$ E@ V D$ T I O P@ S J J Q@ M J I ", +"J$ = $ V@ + # [* + $ $ + $ # E! = + . > P$ ' - . . . = Gc ; . }* Q$ = }* & + & ]& - > S$ ' $ ; $ Q$ ] k) 05 . ; + ; H= ; N$ | H= N$ ; %= > ; ~ ; ; | X@ ~ ) ( { ; { | 4 & 2 J) ; ) ) } [ ~ [ } } 4 ) 6 d 1 4 6 e ,# 7 ,# V~ vk 6 Y> k ~# 7 } e ~# k 7 h a 0 0 6- 8 e 6 f {# ,> p s> s> h r L= n t k l s> s> 2; `$ 2; l Y$ ]# t ;) 2; `$ m Y$ Z$ n % w m s> ^# G b' Q@ z w I z |# 8* 2; 1& F= c- F= M E$ d{ J A O@ L c- J C, Q E$ L c- r! 0* >O 3d 3d G$ DN tw tw O= O= `I @N 6B 58 58 *R 58 7s &k -I 6B 7s -I {z {z J ja J {z J MP kI Ou dK Wz cQ HN =R IN cy -R Zz Zz *H 5N Zz nP |h nP fK fK PP 1M ~9 pI ;R tH tH KQ 2M KK uM KK /P /P uM _P /P rL >R hQ ,R ^I &J 'R {L {L )K XL )K /O RP aN (O ~K aJ OA /I nK JJ ;H nK nK NQ bJ

05 | . $ . ] S$ N$ ) & N$ & ; 8- S$ ; N$ P$ [ | ] ## X@ ' N$ {c U@ [* ; 4 6R ~ ) { N$ ) & 1 ) ^& 1 ## O$ | ## ) / } < $# < < } 5 { 3] ,# : V~ i 8 5 [ ,# 8 0 c Y> 0 b 6 {# 6 7 0 [& e V) } ~# s> Q{ Y> h n p ~# {# `$ h Y$ `$ e Y$ `$ s> `$ 4* 2; h Z$ D m p t m {& Y$ y ^# 4* F= D w w ^# % G I z w z M I A 7R O@ d{ E$ M M E$ J O@ M O 3; 3; |# o> t> qF #N 3; L 'Q 'Q G$ G$ 0* 3d L@ I@ E^ BE !Q @N 7s mL 6B 7s 6B 7s rH 58 6B mL ja J ja ja {z cQ {z kI EA sH =R dK sM lI mI [M `z 8R {Q |C dy |C |C Zz 9R |M 0R 6N =N pL GJ aR oP tH KK uH !L uM >R /P qP /P uM hQ /P rI hQ hQ bR {L tP )K HJ XL zM RP )K MQ 9C aN aN CH aJ nK ~K ]u :P JJ vO nK vO YL

> |* Q$ = # $ Q$ }* > $ . ; . Q$ > T@ . ; ; . o! . > 2 & 2 Z! S$ *# & 2 N$ P$ | ] T@ N$ N$ ; & | ^& 4 Y@ ] 1 / 05 { ) ; - ( /& ] | [ ) `@ $# ~ a 6 ## } 6 | D, 5 ( d ( b $# 6! ,# / 1 6 d D, 7 ~# ,# ~# ,# 6 M' a e 0 ]# 0- 0 c n !# 0 |& L= h ]# s> h c 0 h p q D p (# m m t u 4* b' `$ G /# B ^# m N E; ^# w N /# Q@ A m z 1& >z A Q@ AR I M M d{ O@ H$ P@ M M r! L E$ M@ J *I O r! 3; #N I@ 3d G$ 0* d- DN 0* qH `I _M tw 6B 7s 6B ia 58 q9 -I 6B q9 rH Ou Ou {z {z {z cQ IK EA bf &H MP mP HN {z dK mP Zz BR CR dy dy fK Yz Yz DR fK ^Q |C EJ IQ 1M IQ oP uH uH vG 2M KK uM rO qP WO KK rO uM _P WO _P iQ ER yH XL zM ER )K XL zM MQ XL FR Wq ~K GR RP Wq ]K dJ Wq HR ]u IR JJ nK

M DC JD *B JD DC [w =B |J 5Q DC JD JD *B JD au au *B *B *B *B *B *B JD JD JD JD JD JD au JD JD JD au LO 7K LO 7K *x `R wv `y pu S KL pv .z .I uj uj @K me qd ^j fI !M .S sf +S fr @S Fc ,; y] o$ r$ t$ -& t@ d# :. ^. D! +. 5# !. V ,. F@ E@ L@ H 5# 4# D$ A H$ S M +% I O@ z ", +"]& #S ]& k) T@ # $ L$ M$ .( L$ = + 0' ]& # ]& ]& . S$ * & U@ > Q$ # ' Z, - ; |* Q$ ; # | ; & %= =' ^& $ . S$ ; . Q$ . $= =' Q$ . & ; P$ ; =' N$ > | $= o! P$ N$ H= ] *# Q$ ] 2 +# [ 4 4 X@ [ ( , X@ ## | ~ ~ N$ ~ } { N$ ( ) ## 2 ( ( ~# { 1 q> Y> } ~# k c 6 6 ># 6 a W$ *= z: e ~# k ~# ,# i c ~# ># a r 0 7 s> 0 0 _# r n h ~# n ;) s> `$ p m p `$ w n^ p 4* b' `$ V| p Z$ r 1& m :# C I 2; `$ 8* I $S 7R z Q@ }# T^ c- 8* E$ E$ P@ E$ i5 |# m) E$ Q M L T >O U d- pF 3d r! =I 0* 0* K) 3d #N 3d E^ tw tw 7s 7s 58 tw 7s 58 7s 6B 6B J J sH J FN Ou {z sM {z J dK %S &S *S QL eQ 8R 'O 5N =S dy Zz Zz |h 0R 6N |C -S ;S 0R >S /Q 2M 2M 2M 2M KK uM uM 2M qP WO WO vG aR uM WO uM qP ,S 'R 'S {L MQ HJ zM {L MQ RP MQ )S RP BH (O 3M uO NQ JJ PQ uP Vw QK YL vO nK vO (H /L YL (Q 1z vL _Q KN KN KN $r !S :Q ~S [Q 1I {S ]S AO zO qK nQ CI `L hN TQ _K 5P qK 5P ^S :K fR @P 'G #P /S OJ :K OJ fR 7O FI 'G az )J (S `w #M FI CB q q `w `w F %Q JD JD JD JD JD *B JD *B JD JD *B au 7K *B JD JD JD au *B *B *B JD *B JD 3S LO 7K au Ms 4S jA /n )B 5S ;o 4j |i 5q =t @K (n 4q 5g Az 7w .p 6S Kt YI Jl 7S pM #@ 4@ 3@ h@ -& u@ b# /* ^. !. x@ =. &. &. e- B$ G@ _* G@ L@ Y L@ O P@ M S I A A P@ b- ", +"# 0' ]& V@ + = #^ .( # # 8S .( > .( L$ . + . - & . ]& > . = = & *' Q$ ! . $ - & ; N$ ; | $ Q$ }* ; 2 > Q$ =' A; U@ & S$ ; U@ 9S | N$ ; ; { | S$ N$ | | { ^ | ] ^ /& / 6- ~ ) X@ N$ 5 X@ 2 2 | W@ ;# N$ ~ ) W@ { W@ } b } *# ( d Y> { 6 } $# 0 i a 6 7 b ># 6 a V~ 6 6 ~# q> 0 [{ 0 7 ~# n |& q ~# ,# n h ~# ~# b' n n Y$ ~# u Y$ p n p c r Z$ p `$ Z$ G D p :# M= w G m m F= z F= m 1& I z A F= ~& N@ A O@ 0S 8* 3# E$ |# H$ I a- 3& r! 3; T O A: Q 3d pF 0* C, =I `I 3d pF G$ ^P 3d 0* qH 6B @N 7s 58 7s $N 58 7s 7s q9 {z ja J {z J Ou Ou aS PL bS J dK cS Wz Wz sM ~Q >I 6N dS 8R *H dy 7N Zz |C |C fK pI nP ^Q fQ tH vG eS tH qP vG 2M vG uM 2M uM uH WO >R 2M {O hQ hQ hQ >N yH yH XL zM {L HJ RP fS XL XL AM mK aJ uO FR ]u cJ Vw uP cJ nK JJ JJ

G iS KR qK !N NN qK !N WK DI _K VK VK TQ TQ XP TQ _K jS }L iN iN }L OJ :K 'G |Q OJ }L }L #P ZP 'G rC (S kN `w #M `w x CB d fr uS vS Z+ 4@ wS :; ;& h# u@ v@ (. %% =. !. 6# A@ >. z@ .= X H Z 4# 2# E$ E$ P@ O@ +% ` M O z ", +"]& p9 0' !, ]& . ]& + + BN + - $ ]& ]& + + & # # L$ L$ . > o! & N$ & - ] $ . ] $ ~ %= U@ ; Q$ > o! & - > *' H= ; Q$ =' > ] ' Q$ ] Q$ . ~ & Q$ & & X@ | N$ W@ 2 b{ J= ~ < ~ X@ ] X@ 6 [ | ) [ W@ { { d / [ { < ( 1 X@ => $# xS d 5 } d } 6 } 0 W$ W$ d o ~# 6 e ,# 6 a ,# i k e a ,# o {# h h {# L= 6! Y> r p Y$ n ;= ,> c s `$ _# Z$ h ^# p 2, p `$ D m F= t w F % G `$ ^# w b' E; M z G z M O@ %> I E A M h] J n! n! J A: O 3# P@ O@ T C, |# qF pF G$ G$ ^P #N L@ tw pF yS zS 4# qH 58 ^P 7s 7s 58 6B TO 7s AS HQ HQ rH HQ Ou ja Ou -I BS {z %i CS Wz cQ &N Wz DS ~Q GN IN IN ~Q Zz 5N EJ |C nP 6N eK pL nP 7N =N KK ~9 9N uH ~O uH uM (P sO ES 9N 2M hQ /P rO _P hQ _P _P 'K ]I XL aN )K jQ FS GS AM ]I bN RP uP GR HS dJ IR FR aJ HR IS nK vO vO JJ [I JS CM wO vL KN q NB JD JD JD JD *B JD JD *B JD JD DC *B au au au >q BJ YS xv gO cw 1i yv ZS $j !P {F {F `S 4g .z )n 2f T .T xK oM +T @T P+ O% 9@ g@ p@ m@ t@ /. q@ T' A@ !. l> 5# 5# &. 5# 4# L@ H@ X P A Y ` b- Q@ M S M @% ", +"J$ L$ p9 J$ I/ + = . + ]& + # . I/ ]& $ = > S- + . ' U$ ; $ & - Q$ ' ^ & Z, ] o! ; > - > . . . & & & Q$ {c . #T Q$ S$ ] ; > `@ . U@ R$ - . > ~ 2 ; N$ J= N$ W@ & | { W@ { => | O$ { | ) 6 ;# ] ## V~ ~ %# 7- } N' 5 4 &# ( ( 8- d ## a d 6 b 0 0 ,# d c 6- 7 ,# a a q> c ~# 6 ~# a 9 o K/ ~# p Y$ `$ ,> e 1; r p s> ,> 4* p Z$ p Y$ s> h ^# q C Vj p Z$ ^# ^# D w % t w I q2 G Z$ $T w K {& z z z G >z n! I M M J T^ m) d{ #= J J 3# 3& d- J 3& L T G$ #N #N #N #N ^P 3d 'Q 3d `I qH 3d _M qH 58 $N $N 7s 6B mL $N mL $N -I Ou ja -I :M J {z {z J PL %T FN Wz DS eQ dK @J |C @J Zz 6N |C |C |C |C |C /Q nP 6N 6N pI jy vM 1M LQ 2M KK JQ {O gQ KK qP &T WO _P hQ iQ hQ hQ 'K ]I FS aN VL zM zM XL AM ER cJ :P aN Wq uP NQ #w QK bJ nK QK Vw

T _S qQ 1L 1L 1L HB HB HB ({ HB JM 1L 1L !- 1L JM JM nS Fl Fl |K |K |K .B |K aO aO |K |K ,T UN uK aO dz vK On 'T ot LM uK On ot LM 5H On LM ot 5H LM LM HO LM ~w ~w wg LM ot wg wg ~w S> ~w ~w ~w _{ f) .^ S+ )T !T ~T vt YR aI 1N Ho Qs Qs Qs Qs Rs NB *B *B Os bu bu JD *B Os #y #y JD JD JD Ps JD |J 5Q JD JD *B JD *B *B bu =B Ps Os {T BQ *B JD JD JD *B JD *B 7K au au JD *B *B 7K uR yt mi 0r |N {F |x ]T 8w )B XM pi qu zz iH fO ^T .( . ; L$ ]& = # + > $= . ' > T@ + $ > S$ Q$ ! ; ; > . S$ U@ ; > & Q$ ^ . Q$ ' ; . > ; Q$ $ ; | Q$ > N$ Q$ ] ; > (& | ; ~ N$ ; X@ 2 ^ 4 W@ ) /& { 2 *# , N$ # 8- | < Y@ 8- [ W@ 1 ( 5 ( /& 9 D, xS } 6 6 7 6 } c ~# d i ( a [ ]# ,# a V~ $# e ~# ,# 6! ~# a [& ~# Y@ Z$ 2, 2, ]# L= n h Z$ Y$ -) @= ]c `$ r 0 (# h p p y /# p q ^# :# F= p /# V| w w N w 5* F= $] M A F= G M 2; 1& M ^# K z z d{ |# |# 3# ` d{ Q |# r! T O M 3d ^P #N 3d #N 3d 3d G$ pF r! #N tw E^ EN 3d qH 6B 7s 58 $N mL $N $N 6B ja &k J ja 6B {z J {z FN cQ mP FN sM &S lI dK :T Yz 8R CR *H fK Zz fK Zz 6N nP |C nP fK oI tH gK KK KK 2M uH !L x$ w$ :. gT F, W> A@ A@ A@ >. -. .= .. V X J H S A %> P@ Y P@ I Q@ ", +"0' ]& # L$ ]& ]& ]& ]& # . > + + $= + L$ . X! . L$ R@ $ L$ ]& ^& $ $ > ; o! - ! - & & ^ ; U@ ] ; Q$ > $ Z, . ~ ~ ] [ N$ | ' ; & & %# . & T@ ' ' | & & & h) ) ~ $# [ 7- U$ 4 | X@ | 2 [ Z! 4 ~ ( $# 2 T$ # == W@ 6 6 { d | [ { J] c6 6 *= d a ~# D, 0 d 0 6 e J] ~# ~# ,# a 0 ~# {# h 0 a j e Y$ p ~# `$ L= 0 n l h n^ r q s> ^# ~# ]# h Z$ :# `$ t Y$ D C m m % ^# w G :# G N ^# N F= O@ M 8* w z M M P@ M Oz x Oz E$ 3# o^ O@ S 3; O 3# P@ O@ P@ A: 3d d- U^ 3d #N G$ tw tw 0* U^ tw tw qH _M 3d @N 7s 6B 6B 6B 6B 7s 6B 7s q9 hT :M Ou rH rH J FN Ou J R mT KK uM WO hQ /P {O uM qP 0N nT hQ /P 4C tP XL RP ER XL )K zM RP XL oT aJ IR AM uP Ix Vw pT Ix uP ]u nK YL

T 4T 4T }K ({ ({ JM HB Bs ({ 1L lS lS lS xT 1L ({ JM lS bM |K |K qt |K aO .B aO aO sQ |K |K |K yT sQ TS ^R ot _i ot ot UN LM 5H 5H LM 5H 5H 5H LM zT LM ot 6I ~w s0 wg s0 LM _{ _{ ~w '; ~w nf _{ L| f) o2 E+ AT BT @I CT _J DT jM )e $Q Qs Os bu Qs =B JD *B Os Os Qs bu JD Ps =B Ps Ps JD *B *B JD JD *B *B JD JD JD *B au *B =B Qs ET NB 7K *B DC JD JD DC JD JD JD JD JD JD bu JD *B bu Wn FT cw /n kh GT HT IT JT 'l /y KT LT 1j ,B QB ,f 3g MT MC kb Sh NT OT S+ S> |@ e@ ~* u@ {* t@ w$ ). '. 0# v{ .= .= z@ R @. 7# .= G@ #% C, H M M N@ S M@ P@ H ", +"0' #S R@ $ = ]& . $ ]& ]& $ 0' * ; $= = $ V@ . . . $ . * . T@ ]& o! $ o! $ ^& . > ]& $ T@ S$ R$ ; . ' - = & U@ N$ ; %# $ ; > > T@ . . > H= o! U@ ' N$ ; ' { ; | N$ { [ 1 U@ { ] | & - | | { R$ 2 $# ( ) | 5 < { [ ## 1 X@ } ~ q> J] ( ,# 5 d d 7 j 6 $# d ~# 7 e ~# ,# 7 e a k n L= a' h j |& p h 0 A~ X$ n `$ r s> q _# s> u ]# :# u 4* {& D p o m ^# /# 4* /# ^# ^# p Y$ D G m D 8* m M G 8* N T^ 3# I Q@ PT A A Q QT =K M M@ L :* i5 3# E$ n> O r! H qF 3d #N 3d RT G$ d- L@ #N K) qH 7s `I tw O= 7s @N 7s mL 7s $N $N $N AS 6B ja ja q9 FN J J {z FN bf ST R WT WO qP uM /P qP ~L pP WO pP [T {L XL )K MQ aN tP RP :P AM KJ Wq Wq AM Vw AM JJ ]K uO cJ Ix PQ XT vO YL hJ }P YT ZT vL KN /+ b= k' Y# b= %, k' ] k' u- b= Y# |+ u- %, s% s% |+ I& 3+ 3+ ;- $$ 8+ |+ $$ $$ .$ e+ $$ $$ _S CP F* F* _S _S _S m' qQ QS 8P kS RJ SR 1L lS 1L 1L 1L HB 1L 1L lS JM JM JM bM lS lS xT cO .B |K $U |K qt |K %U 1K bO |K aO bO aO sQ uK &U _i tQ oS &U ot ot ot 5H ot 5H 5H ot LM 5H LM 6H Es nf nf ~w *U LM ~w S> [A _{ nf _{ 7I ^7 W2 k= =U Ga Tn +s .y md @H -U ,q %s Qs Os bu *B *B JD JD Os Ps =B Ps Ps Ps Ps JD DC |G DC |G .H OB ;U [w |G |G bu |J DC *B @y >U `Q #s JD JD JD JD JD DC DC DC JD |J kz WJ DC DC DC $L 2g Mh =L ,U QD KC 'U DQ {F ]T KT )U 'P )j !U 4f fI ,r ~U =M {U %R ]U P+ =@ 4@ m$ o@ -& {* 4_ '. ). 5& A@ &. =. .= 4& 5# ^U E@ S D@ P L@ L@ J H G b- A K@ x ", +"0' 0' ]& ]& ;b R@ L$ . 1* $ # + # ]& + <{ J$ T@ + + > $ > 0' L$ + & $ - - = . > R$ $ $ & . ] . Z, [* P$ 5- Q$ > N$ ; | & & H= N$ $ ; $ ) { %= ] { 7- | H= ## | Q$ N$ Q$ ) ) ) W@ 1 | 2 X@ N$ - { X@ *# ~ { | ) ( [ 4 W@ W@ ## } ( } 4 B; } V$ $# 9 7 d Y@ 7 q> 3] c ~# 6 a Y> ,# 0 n ,# 3* a a a n {# L= h [& r |& ,> h W$ m p L= L= g r m m /# C W$ Y$ ^# 0- Z$ `$ ^# /U Y$ Y$ C t z m D w 8* w 1& G I ^# O@ z N 8* Oz T^ 8* 3# 8* c- O@ 8* SO c- *I J O T O *I O L 3d 0* T (U L@ G$ #N 3d 0* 3d qH qH _M qH mL 6B 7s $N mL 7s 6B -I 58 7s Ou {z Ou HQ FN FN J _U J cS DS HN GN %T HN 'O ^Q dS |C Yz Yz dy |C 6N fK /Q sO nP >S tH vG ~O TL uH ~O 9N X, 0@ j- u@ o@ >& >& !. d# *. -. (* A@ .= C$ J R H L@ Z ` P@ P@ 1# H A z N@ b- ", +"# 0' L$ R@ p9 L$ [* # * # $ + # L$ 0' $ $ = . ]& . Z, T@ + M$ Q$ T@ $ # + Q$ . S$ = L$ - > Z, ] & & ~ > N$ & ; ]& Q$ > ; & Z! | . Z, & | . | H= ; H= 05 X@ | ! | H= ~ ~ 4 ) ) 1 W@ V~ ] X@ Z! Z! ( 8- & 1 } / [ [ ( } 6 /& $# ,# ## 6 6 } &# 7 Y@ 7 c M' : ~# a 0 0- o W$ D, i c 6 L= W$ a 0 c {# 0 h c 2, {# n s> n p n c r ~# 4* m L= Z$ Y$ c L= Y$ 2, B ^# y2 2; r ^# z w w Z$ z b' z O@ z M c- G I 1& T^ G c- c- H$ P@ m) O |# E$ O Q O O@ O T T L i5 U hU iU ^P 3d G$ pF 3d #N G$ @N _M qH @N @N mL mL jU mL $N 7s 7s kU mL 6B BS HK :M mL AS BS J cQ PL q #s au vN iM QU DC *B `Q LO BQ au LO RU *B au au au *B 7K SU Xk TU TU Nf z WM eE /n jA UU kk ;o VU ,l WU Hj Jh +H EQ XU YU Zx ZU `U +^ n, X* -O ~* {* (. H! ). ,& z@ 5# +. @. .= .= i~ G$ V P 1# L@ J P@ A I H$ I Q@ z ", +"- = ]& J$ J$ ]& [* R@ L$ I/ ]& $ + J$ . 0' + $ $= Q$ k) . V@ # . $ $ S$ = # - 0' > T@ Q$ = Q$ Q$ Q$ ; > Q$ & - R$ N$ ; > X@ ~ N$ > ; . $ $ | ; & Q$ ; ] ~ ; X@ ~ ~ ^ 2 { ; ~ ~ | X@ ( ^ N$ | d | /& /& ^ 5 ( ] V~ [ , 6- -# } ) } d D, V~ ( 7 0 ># 1 a 0 n s> k g d c o } d o ~# ,# 0 e ># e h k n o p h s> Y$ 4* ]# l n n n^ w 5* {# Y$ h n h `$ #] z )> F= G w G G w m w a7 1& T^ G F= z N w N 1& V M M |# #= d{ O@ 3# |# 3; M c- P@ SO |# T r! T |# E$ L@ #N 3d 3d U^ 3d 3d #N G$ #N ^P 3d @N .V ^P mL 7s mL 6B 6B $N UO mL mL $N J J Ou ja FN J J {z dK J iT #J +V =S dK |C 'O 8R |C 6N fK 6N Yz @V fK ^Q pO #V 0R $V %V >R 2M sO KK KK 2M ~O VT mT _P J IR >V [P KN }P ,V !R 'V )V 1T QQ UP UP YO UP UP UP ~S !V ~V VP `T sU _K yO yO wU {S PN _K XP xU {V jS ^S }L OJ :K :K }L rC }L fR OJ }L ]V }L }L RG FI HM CB x ;w `w `w x `w `w x Cl yD CB ^V yD yD .x yD +F Fy Fy El !k .x /V Fy V5 V5 ~k V5 V5 .f .f UG 34 .f wo +f )2 {k Sc /1 J^ C_ Z{ J^ 7< 7< J^ 3{ C_ C_ 7< 3{ W5 `^ `^ }_ C_ `^ 3{ `^ ;] j/ i( ~) C' G{ C' @{ ~) @{ C' @; *+ C' ~) ~) `{ @; Q) C' g! Y# <' r] r] Y# /+ b= b= `' %, b= %, %, s% |+ _+ /+ A* s% 1+ |+ 1+ s% 1+ z* p% $$ t% $$ `# 4+ oN 8+ c+ F* 8+ $$ d+ CP CP F* F* CP CP CP _S pN 1L |L QS .Q HB 1L JM 1L lS lS 1L lS xT lS MH |K JM xT aO aO |K |K bO |K .B .B (V bO FU CL aO 3U UN _V |K UN uK ot oS 5H 5H ot ot ot 5H LM LM HO 5H LM LM LM LM uC nf ~w s0 6I ~w nf <~ '; nf _{ L| O> UR :V xe o .e .z -y 8V 6S eP /e 9V 0V 1] ^@ w; >* ~* D= q@ ,& ). ). !. &. &. e- R .= #. 5# H J |# P Y L@ S S A P@ I Q@ ", +"V@ + + M$ R@ # ]& ]& + # = & ]& L$ = ]& . ]& ]& + $ = ^& $ [* $ = - * 1) & + . Q$ . * > & + & T- Q$ =' 2) U$ ' O$ $ & ; |* # > & * ~ > ; > . [ | ' & 2 X@ 7- 2] ) | | | ## N$ 2 ) U$ | & /& ; | <& X@ } Y> 1 : < { 9 b } /& ( 0 5 X@ < Y@ 1 6- $# ,# i 6 0 < 6 } k $# ~# 0 {# i i k 7 n ~# m Y$ h r ,# n p n m p c{ Y$ ,> ;= 4* u t V| m n r -) s> p D {& 2; G {& D D T^ /# q I z ^# G z P@ x N z 3# M P@ V 1& J M 0S 3# h] P@ E$ r! aV A: P@ E$ G$ H L@ G$ ^P #N G$ U^ U^ G$ G$ 3d #N `I ^P `I bV lP 7s 7s mL 7s mL $N cV mL 7s 7s {z FN J -I aS J FN J IK &N IK #J MP %T dV IN A0 mP fK 6N nP fK fK 0R 0R fK nP 0R nP eV $V tH uH 2M fV vM /P /P >R gV hV iV uM ,S WO qP ER jV kV lV RP RP mV Vq aN RP GR RP GR Wq Wq uP HS uP Ix HR Vw Ix Vw KH [P nV #G

q@ O- :. v@ ,& {. e- )& z@ X 5# $% H@ 1# P H Y J n> K@ 2& A H G A ", +"+ M$ + p9 ]& 0' ;b L$ 0' ]& = $= = = + > $ $ . 1* 0' ]& o! * * . & ; + 5- V@ $ $ & Q$ ' |* - $ H= ~ ; S$ - . $ ; & %= N$ ] ] =' T@ Q$ ; ~ - - 2 %# 2) ' & | { ^ ] { X@ | | { ] ) N$ 2 { ] | Z! 1 *# [ ( Y> W@ 2 7- $# ## 5 } 7- B; } 5 { ,# ## d V~ ~# 5 ,# 2* 6- i 7 o ># L= ~# 7 a ,# [& n ~# 0 c 6! z: 0 Q{ o ,> 4* Y$ % L= c ^# :# /# p ;) % `$ a t :# 2; ^# w B w /# z 1; G N {& p }# B m 1& O@ x w A 8* N G M M n! A HV 3# 3# M E$ J M o^ L 3# d{ T K@ r! 3d L@ G$ 3d #N 3d ^P #N #N #N #N _M 3d _M tw @N 7s 58 6B 6B mL -I mL 7s 7s FN J :M AS aS {z ja _U kI eQ cQ GN HN iT dS dS Zz -R IV 6N 0R fK 6N pO fK jT 0R nP JV 9R QP KK TL KV pO LV R 2M hV >R kV &V _P MV ~L MQ RP NV XL XL MQ GR HS GR Wq OV pT =V Vw =V IS aN =V hJ HR YL PV pT YL QV RV KN SV ZT JR YO UP qT QQ !R QQ JR ~R ~S VP yO yO ~S +P +P ON zO +P VK TV OR yU jS qK iN :K OJ :K :K fR }L #P }L ]N OJ }L fR )J }L ]N qo kN CB q `w x W ,W -& h# = = /* &. {. &. E@ H@ @. 5# 9* T P V H@ T P@ S M #= H$ P@ A F= ", +"$ !, $ ]& ]& M$ ]& L$ 0' .( l) L$ $ [* + 0' - > ]& * . # . - Q$ $ + |* ! = > . Q$ = & Z, . $ # = & | & N$ ; U@ & %= (& N$ # Q$ | Q$ + ] ~ ; | 'W ~ ] Q$ ) N$ & Q$ N$ & ) %= > ] ~ ~ J= 4 S$ /& 4 | | 9 /& < [ d 2 } Y@ [ ~ $# ( } N' V~ Y@ %= d ,# ~# V~ e a 0 3* J] Y> L= c ~# 6 L= k c 6 h a 0 6! n c 0 ,# L= 7 Y$ h V| ]c ~# r `$ h /# 1; n p -) h ^# :# `$ n Y$ 4* {& :# G m ^# O@ ^# D {& % w f^ F= M I M P@ G I T^ 0S c- M O@ M U Q@ )W O Q E$ d{ E$ qF ` L |# qF Y d- G$ d- pF #N G$ ^P 3d #N lL G$ lP `I E^ @N mL EN 7s AS 6B mL O= $N BS rH ja hT HQ Ou FN FN BS !W cS sM dS sM dS =S 6N |C dS ~W |C |C nP jT fK #V pO lU JV {W IQ eS >S ]W ^W /W (W KK ~O _W mT 2M uM :W rP M |G RI 0L au *B yt Hj eE /n xv xv gW |N cU hW kh DQ +e 4f xf %l .e &n Ih nd Do _N ;a iW jW @@ 6$ o, kW x$ b& d# w$ :. !. A@ !. 0# +. 9* T X F@ R X C$ P P P@ J P@ H$ I H$ A ", +"= $ # L$ <{ V! ]& k) $ 0' T@ 0' M$ + = L$ !, V@ ]& 0' # $ ]& . ; > R@ ; > S$ > N$ o! = V@ ]& > . ; = N$ ] U@ . T@ ] * ] ; & [* ] ~ U$ > ; | Q$ ; | H= ] S$ X@ | 2 | N$ | U$ N$ R$ ) / & *# N' ) ] < 05 N$ 2 ( ## | [ /& 6 ) V~ } ## 9 d } a } { Y> b J] $# 7 0 n b 7 d 0 e ~# ~# n a c e n ,# 3* 0 h e 0 0 L= ~# L= Y$ p s> )# K= Y$ p `$ Z$ `$ Y$ |& u t 4* _# K/ -) 2, w 2; E `$ #] {& }# z m n^ G z D #] I G M I o^ o^ c- 3# T^ 3# 0S c- c- |# Oz 3# d{ J |# #N H c- G$ 'Q L@ C, G$ 3d tw pF U )Q _M #N pF #N 4# _M `I tw $N mL 6B mL 6B 6B TO mL $N 6B {z HQ mL J {z J _U cV DS DS CR CR _U Wz ~W fK dS mP |C Zz 0R nP fK nP pO lW pO 6N KV oP mW DR DR nW oW WT pP >R J *T (Q _Q qW nV 1T UP lQ _Q UP ~S 1T QQ lQ UP 2E yO yO 2U }U rW +U sW tW +U FM 5P PN jS xU yU yP }L :K yP @P OJ OJ }L yP }L OJ }L {N 7O .F 6O (S Y# b= b= %, Y# %, %, b= b= %, H& Z# A* %, |+ |+ |+ p% p% _+ .$ D* |+ 1+ D* #$ |+ J& CP F* F* CP *P _S CP _S CP CP CP e+ >T uW qJ SR JM XV pN JM HB JM 1L JM JM BU 1L JM 1L lS DU nS xT 7W :S aO |K qt .B aO aO aO aO bO 3U $q sQ ^R 3U bO bO uK 5H _i /R /R ot HO 5U HO 5H ot LM ot LM LM LM 5H s0 nf ~w nf @Q ot uC _{ f) _$ P9 k= vW Be Is wW WS yQ xW )r }V Os Xn Jo Yn ZJ YG yW YG 5V zW 4V AW 4V 5V -M BV 4V BW &x YG 4V #n 6f dW 4V 4V YG 4V 4V }R }R }R }R CW 4V 4V 4V 4V 4V #n YG BV jz W W Fo >M DC =B |J Ms dU /n jA /n jA WM JT 9T ju $W DW !P p :x ji #j $K EW FW GW XI `a %a HW g) IW 1@ e@ =& t@ :. (. ^. d# -. >. G! A@ 5# O= E@ H M J O 1# S M O H +% Q@ 8* 1& ", +"+ ]& + + <{ J$ + p9 + + R@ $ # S$ $ ]& > + . @ > . $ $= = . & . # $ > * $ * ] $ L$ ; ; ] N$ ~ > # $= & & N$ ; N$ . ; ; [* * ; N$ . $= P$ N$ U@ N$ X@ ; ; N$ 4 ] ~ ~ H= N$ { / [ 4 : { 7- *# 7- a V~ { ;# } 9 d Y@ Y@ } 6 /& } 2 *# X@ { 6 8 Y@ ,# $# g K/ ,# D, x0 e D, 9 e -# ~# c 6- {# L= k r o r L= ~# Y$ Y$ n 2, A~ c h L= 2, 4* ^# w _# |& ^# t C t h q q % w @= /# b' w 5* ~& {& x z JW B KW 8* #= O@ 8* 8* 8* A P@ 0S c- 8* 8* 8* 3# |# A 8* 3# LW *I E$ c- MW Vf G$ L@ 3d 3d 'Q d- r! G$ DN K) 3d NW #N $N 6B qH mL 6B 7s $N *R 58 mL hT 6B $N :M FN hT J J _U cQ J QL . 7# ,= 7# 5# 9* M@ L@ Z H H L@ P J@ I O@ H$ A N ", +"+ L$ ]& * ;b L$ M$ R@ L$ ]& + + + X! + . ;b $ > = J$ V@ * - ^& - ]& L$ . $ $ > # $ . ; ] S$ . . - . S$ $ *' ; | ' = ] N$ + ; ; Q$ *X . { | . ] o! $ ; & ] / H= 7- ] 2 *# ^ | | { | ~ X@ ~ 7- J) | { 2 X@ ~ ) 6 / d ,# ~ } ,# 9 { a } Y@ d $# 8 a a ~# D, ,# : 6 c ~# ,# +# c L= 8x ~# n ,# g h L= p n Q{ n ~# Y$ `$ tA K/ r u V| Y$ q Z$ 4* `$ ~# `$ q t 2, p t :# F t :# D /# N m p G A % G K #] z G G 8* n! O@ M M M n! =X 3# QT O@ 3& Q@ SO >z J |# P@ E$ E$ r! I@ G$ 3d tw U^ `I L@ pF `I G$ !Q #N qH _M E^ -X 7s $N $N $N tw $N mL 6B $N $N J $N $N {z J _U J cV MP lI mP &S iT ~Q CR Zz 'O IN fK |C fK fK 5N Zz ;X lU >X lW ^Q mU mU >S ,X DR /W rP ~O mU VT 'X )X ,S :W MV ER RP ,R zM XL Wq MQ XO GR zM Wq AM uP HS !X Vw nK uO RP Wq HR >J YL

J OQ OQ *T =T vL SP #G uL ~S QQ 1T 1T pV 1T ~S [U ~S qT UP +P `T MS {S +P NR +P @U +P +U ~X 5O iN xU XP ^S yP OJ {X }L OJ 'G }L :K fR :K OJ ]N OJ .F FI SG CB )J 7O FI x 0 n i9 xD Fy El `e .x El gd !k V5 .f .f !k .f ~k tg ~k V5 Mn Tc J^ /1 ^1 34 9) Z{ J^ 7< ^1 F{ Z{ Z{ 3{ 7< J^ 7< 7< `^ [] K^ ;] 3{ ]~ 3{ 3{ S] s~ O~ H{ ,^ z) C' C' C' @; @; @; @; C' @; 0= `{ Q) B' C' 4> ]X W# g! <' /+ b= Y# b= %, %, %, b= ) Z# c= ) |+ p% |+ `# p% |+ |+ .$ D* p% D* 3T .$ +$ CP CP CP d+ _S CP CP _S F* CP CP CP _S >T RJ CP }K ^X qJ IO JM HB CU 1L HB lS JM lS lS lS lS |K DU 7W 7W 7W |K bO aO aO bO bO 3U bO bO 4L /X aO ^R UN ,T _V &U vK /R /R 5H 4L LM /R vK tV tV HO HO LM 5H HO 5U s0 wg JI Es 5U oS $g L| ,; W3 Cs (X Yb _X 9U :X =. A@ z@ A@ &. B$ V Y P@ J H O H$ J H S F= M M@ ", +"]& ]& R@ = ]& ;b R@ L$ ;b + + # + L$ > + $ = # = $ + }* !, ]& $ Q$ ]& 0' V@ ; $ % # $ S$ > = $ & & $= | ; = . - U@ ; ; U@ Q$ . S$ $ ; ~ ; . > S$ Q$ H= W@ 2 | | H= | U@ N$ 4 ; 2 ^ N$ ~ Y@ { # 2 ] } 2 } 2 %= / 7- W@ d Y> $# } < ~ Y@ [{ d b B; < e !# 5 $# a ,# a 0 d ~# L= 0 ~# 0 L= *= 3] 0 E, q 0- n e tA c c ~# c 0 n u s p Y$ F Y$ p `$ ~# Z$ 8 Y$ c q 4* % m t w B I c- m #] w O@ n! w n! z w I n! O@ c- T^ M I O@ O@ V Oz U d{ >z A: c- A: E$ A: >O qF pF U^ G$ 3d ^P `I `I #N ^P 3d )Q )Q tw _M @N _M )Q E^ $N $N mL AS @N 9X 6B 0X 6B AS Ou J :M kI _U _U J J MP QL cQ ~Q iT HN dS 8R @V cy nP |C fK nP aX |C fK pO nP pO nP DR bX !O nW cX IQ /P 2M ~O PW gV ,S ,S hQ ,S ~L dX ER hV eX )S tP XL RP Ix HS AM GR oT HS :P Vw AM HR Ix Ix *T

Y# Y# q] ) /+ /+ b= k' Y# %, Y# b= ) 2+ p% <+ `# `# `# |+ `# `# `# `# RR `# RR D* RR `# .$ jX CP CP CP 4W *P CP CP QS _S CP _S QS _S QS .Q 1L XV kR BU kX 1L 1L 1L xT xT lS 1L lS JM :S bM lS CU xT aO |K |K bO |K aO aO |K 3U 3U FU 3U UN UN bO 3U lX LM 5H 5H 5H 5H LM LM LM 5H 5H 5H HO LM HO HO tV HO nf LM _{ s0 5H 6I _{ 94 G+ Yr mX _f nX XR oX xW eO $Q pX XR fW 2X +W BV YW fW jz -M -M dH BV @W fW jz 2X -M @W YG -M zW YG 5V zW 5V fW W 4V 4V cW 4V 5V 5V 4V }R 5V CW }R 4V 4V BV |X fW -M `W qX |X BV yW rX Ny sX /n jA xv eE pu )B jA Ro gW *t 2k 5g tX uX sz #d ke 7g vX -F Hd wX xX yX =@ 3@ 0@ :; l@ -& 4_ ~. ). -. ). e- z$ $% zX E@ .. 4# H@ O= >) D$ ` H P@ M@ P@ K@ Q@ ", +"]& + <{ # + ]& + ]& . # + V@ + M$ + > ]& # k) Q$ ]& - > ;b - > T@ 0' L$ ]& . - > . Q$ > # o! U@ P$ . & . * H= > & S$ $ S$ Q$ & N$ . & & ; 5- N$ ^& ^ Q$ ) { ) Q$ { ~ Z! ~ , X@ N$ W@ T- ; Y@ ; 2 < ] } Z! H= [ X@ } ;# { } W@ ,# a a /& X@ 7 ,# -# V$ 0 7 8 e a Y@ 1 a ~# ~# e e {# ,# i M' b k ~# b ~# ~# g C; 0 L= }{ c {# 0 ~# 1; `$ h h ;) y K/ w Y$ m `$ p `$ ^# u t t z #] z G #] I w w w 2; M O@ m N@ 8* JW n! A M N 8* 3# c- 3# O@ E$ 3# d{ d{ 3# L i5 aV Q A: AX *I BX G$ #N 3d #N MW #N #N ^P `I #N pF _M qH EN qH EN 6B 6B 6B jU 6B AS $N mL CX -I Ou {z HQ AS hT {z DX cS Wz ST EX dS dS EX [M |C mP ~W |C 6N nW nP fK @V DR 0R 0R pO oW mU mU DR >X FX WO ~O sO fV 'X qP hQ _P MV :W dX -V :W &V ~L dX {L GX Wq HS HS MQ GR oT =V HS HR HX IS pT IX IS =V IS pT

+ $ ]& ]& ]& > ]& R@ ]& Z, T@ $ # # V@ > * ^& # ]& = & o! $ . = . > > %= (& . = # ] Q$ & . $ ^ $ (& ~ ~ | ~ . & ) & { | N$ H= 1 *X X@ ~ / U$ ) Y@ [ 5 1 2 } } 2 V~ { 1 ,# d { / Y@ 7 ,# 6 4 $# 1 *# } ( 5 7 ## V~ a [ J] e L= a e 7 d i a' $# e L= 7 ~# t' ~# `$ X$ M' Y$ ~# p q g p r c q % t n `$ `$ p s> % /# G `$ 2; w /# 2; {& ~& /# /U z /# G t I /# 1& z G O@ G n! K a7 Q@ 3# |# |# 1& 0S J Q =X G A: Q SO 0S WX XX YX yS L@ r! #N tw E$ G$ )Q 3d pF 3d 0* ^P @N EN `I qH AS 6B mL $N kU hT mL :M HQ AS Ou BS CX UO ZX :M FN _U CR sM %T dS iT `X ~Q |C [M -R |C fK nP 0R 6N 6N 6N pO >X ^W cX LV LV IQ lU fV sO uM /P /W T VQ qJ JM SR 4T JM lS lS JM JM lS JM lS lS JM 7W .B aO lS xT aO aO 3U bO .B bO aO 3U -Y bO _V /X 3U ^R ^R ;Y ,T &U 5H &U 4L &U 5H vK 5H LM >Y 5H 5H HO LM HO LM ot 5H JI wg _{ dM uC _i ^7 ]7 ,Y 'Y 7f )Y ~P !Y 7T 7T ZQ ~Y cv +W {Y 2X +W ]Y jz fW jz fW +W ^Y fW fW W 2X {Y hM fW ZW -M ZW BV 2X -M zW 5V +y /Y +W -M zW AW YG #n dW 4V }R NU zW cW zW (Y 5V 2X fW FL fW -M W aI _Y GT JT jA $W Mh +K )B WM QD hO KC !P 5g $j :Y ^F 3g cr ]& = Q$ > . V@ + = > A; S$ = H= $ = & ! ~ $ . = . & > $ Q$ U@ ] ' N$ & ' | * ] & # U$ ) ' ~ Z! 'W W@ ; ; S$ N$ N$ 4 %= Y@ 2 D, W@ { 6- | 2 } Z@ Z! Z! ## & ) 2 { /& N$ 2 0 7 6 ## 5 $# ( e } } d j 6 [ 6- ,# e n n k ~# q> ,# c a d b c o !# 7 0 q `$ h L= ~# ~# r _# L= Y$ `$ r _# Z$ s> 1; u p 4* % 4* G `$ t p /# {& 1; {& F= G >= ^# G A m N 8* I a7 8* q! m) O@ M P@ 3# }Y /# c- T^ P@ O@ i5 d{ E$ M O@ d{ *I MW MW 3d L@ G$ .V #N U `I RT L@ G$ #N ^P qH -X -X `I 6B EN 7s mL $N TO mL $N AS J Ou ja aS AS CX aS AS HK |Y BR 1Y eQ dS CR 2Y HN =S |C dS kT fK fK DR nP nP pO nW FX lT pO nP sO fQ DR ^W DR 3Y 'X >R 'X gV mT _P hQ _P _P zM GS -V )K 4Y ^O GR XL GR Wq oT RP AM HS GR HS AM IS pT HR HR pT PV 5Y IS

J |T XT 6Y Y# Q~ /+ Y# /+ Y# /+ Y# (+ Y# Y# /+ G& p% _+ b= `# `# `# |+ aY p% `# oN p% aY bY D* |+ z* D* CP F* _S _S QS F* _S _S QS QS _S _S 6W NX CP cY GO dY TR JM 1L lS JM xT lS BU xT xT lS |K aO xT 7W bO aO |K aO bO aO ,T 3U ,T 3U ,T 4U bO 3U UN yT 3U ;Y On r0 'T /R 5H LM 5H LM HO >Y LM HO LM LM tV HO tV JI ~w wg Es 6H uC BL n2 8= eY VW fY gY hY ~e H= 2 ^ | 'W X@ 2 ~ 2 N$ ~ } [ V~ 4 X@ | *# { X@ 8- [ ( *# d ) a $# 6 < 6 $# 5 k q> { I= a $# ~# 2d $# ,# ,# e K/ Y> ~# e L= e ~# 6 c c L= 2, ~# ~# r Y$ {# _# n _# q n 2, u s> p /# B p u ^# n^ `$ :# B D :# t % z /# z G % x a7 z I D G I F= $T HV c- W) 8* 1& M |# JW |# c- >z M 3# S L Q@ U P@ i5 oY L #N G$ r! G$ DN #N U^ pF RT 3d ^P ^P #N ^P ^P @N 58 lL EN 7s $N TO 6B mL hT mL FN {z :M HQ FN AS CX FN cQ pY ST dK sM &S qY =S =R dS EJ oO BR nW nP 0R rY pO 0R 0R >X |M lW sY tY OW uY cX ^W vY wY (W cX 'X mT _P hQ xY MV yY zY GR dX nU {L AM {L .Y XL HS Wq OV HS MQ HX oT HR pT HR IS [W [W #G IS PQ >V [W nV [P F; -. 0# !. C$ @. G@ X T J P@ L@ Y 1# P@ z c- Q@ H x ", +"L$ . V@ $ L$ J$ R@ = = `Y $ ]& J$ $ ]& ]& # V@ $ X! . # L$ . . . X! > Z, X! o! > k) . $ > U@ & > & $ U@ . ; ; & ' $ & > ; > U@ N$ ; ^ S$ . ~ ) X@ ; ; I= & ~ H= ; & N$ ;# & ; N$ *# ] | 1 2 1 ) 4 ; ; 2 H= X@ 5 [ ## /& { 8 ( { /& b ( 7 ( d X@ 6 b V$ e a d 0 d d e 7 7 6 k ,# ~# ># r ~# L= ,# n L= {# n ]# Y$ h `$ r r h C; Z$ u 1; u :# ^# y m m ^# D 2; w w % #= z #] /# t :# F D z I w A #= Z c- w w M 7R I 8* x O@ M 8* M d{ QT 3& O SO SO E$ qF Q .Z D$ A: L@ ^P #N H 3d #N #N ^P +Z #N )Q BX EN C$ DN `I mL mL 6B 6B 6B $N rH {z ja cV mL BS BS AS FN kI |Y cQ J XT -Z [W =Z =T SW ;Z JX AY -Z qT pV >Z @; `) A! S# (+ b= {+ X# W# Y# b= Y# Y# (+ /+ ^+ c= _+ `# c= -- _+ p% s% `# o% #$ `# D* `# #$ D* D* p% 3T _S F* 5W _S 6W GY QS F* QS _S CP _S QS .Q _S pN JM lS kR BU 1L lS JM 7W xT !Z xT xT xT xT xT DU ~Z IY IY :S 3U bO |K aO aO 3U 3U UN 3U 3U JY ,T yT ,T ,T On {Z LM KY zT LM LM &U tV HO LM 5H tV LM LM &U 5H s0 wg wg ot Es On tQ Xr ]Z xa ^Z dc (w Vn CT @L aI 7L NI NI 7L Do 7L YR QY 1X 1X gY gY ^Y fW fW fW 1X yW +W 1X YR fW fW fW 2X fW fW -M -M -M |X fW YW BV 5V AW YW zW BV 5V YG #n 5V cW RH -M -M hM +W fW YR /Y /Z (Z _Z %W LT LT pu Ro 6V )B cU :Z ar ;o fE (j >f +H * u@ O- = {. '. '. -. 5# &. $> L@ }; C$ J@ L@ J L@ Z S L@ E$ M E$ H$ A ", +"L$ Z, V@ + L$ L$ R@ L$ L$ # # ]& ]& T@ + # > ; . L$ . V@ ]& = T@ T@ & U@ V@ + X! U@ . Q$ ]& $ $= $ ; ] Q$ ; [* - Q$ . . Q$ V@ ] ; o! ] P$ {c ^& . $ ~ N$ X@ & ] { X@ N$ ; S$ & [ 2 N$ | ) H= N$ U@ ) ~ [ 6- ( ; H= ~ { } 7- 2 W@ } } 2 ; 4 ( $# 9 b 7 Y> ( $# ( $# } 6- 5 Y> ,# d e ~# Y> ~# n k c ,# 0 ~# 8 k r Y$ K/ L= n |& c{ ,> h `$ 2, ~# t 4* 2, ,> q 1; p F= n^ $] q p G |Z 1Z ^# {& G E /# xE I G w I t O@ I F= n! z n! 2Z O@ I M 1& ~& |# 0S d{ n! S O@ Q d{ *I *I A: J BX 2# BX L r! qF H #N G$ 3d G$ 'Q ^P +Z ^P @N qH DN E^ AS mL 7s mL $N -I 6B $N mL hT AS FN BS CX AS _U 3Z cQ aS 4Z FN T QS 6W BU xT XV gZ JM lS lS lS 7W xT xT xT xT 7W IY bO nS xT 7W (V 3U bO |K ;Y bO bO 3U aO 3U 3U _V JY lX hZ 3U ^R lX 5H LM 4U LM HO r0 LM 5H LM HO tV 5H 5H HO 5H dM LM 6I nf nf $g sa L iZ jZ kZ lZ mZ [V PY nZ 6u @L NI NI /Y #Q NI gY 7L Do Kl 9L 7L Kl Kl YR fW yW 6A YR ^Y +W 1X {Y yW jz jz BV -M +W YW YW |X -M 2X -M -M -M @W dW BV -M #n cW cW CW BV 5V -M fW hM WS MC Bg Wg (j oZ %W KT /n /n LT |x 2J hO ar (Z :q ]j uX pZ qZ vX IU XI we za rZ d^ {; w; f@ m@ o@ d* {. 7; A@ [, A@ &. (* ^U F@ V E@ G@ 2# M@ M@ Y H P@ I I F= N@ ", +"]& L$ & . = k3 # ]& = E! + 0' = ]& # = . . > 0' # = $ 0' . > ; # # . L$ > . > $ . & . $= & > ] $ $ Q$ ] - k) & %= U@ + ^ ; & N$ ; ; N$ > ^ ~ H= . U@ & ; ## Q$ N$ H= N$ X@ N$ ; ; ~ ] { / 6- ~ ; X@ | { X@ 2 2 2 a ) ) / 6 ~ ) 6 5 <& /& /& ## ,# V$ a e 0 a ~# ,# ~# ~# Y> j o {# ~# e ~# h V$ a L= o n c g r o _# A~ _# p {# q -= h c vA 2, L= w ^# p :# B 4* 4* G /# w b' ^# w 4* G :# n! A a7 8* I ~& I M M 8* z A A c- H$ M O@ 3# E$ Q E$ }Y A: *I L A: J qF U^ G$ r! >O qF U^ #N 3d )Q G$ G$ )Q )Q RT 3d sZ EN qH EN EN 6B mL 6B mL *R mL $N hT CX 7s AS $N $N _U ST pY cQ ST cQ tZ HN |Y BR [M uZ vZ {Q |C fK 6N nP 6N nP DR nW ^W lT _W uY oW wZ nW _W vY pP &Z ^W xZ yZ hQ :W qP MV :U zZ 9Z *V 0N zM AM HS NV =V oT AM HX NV RP }T pT uP PV HR IS IS HX #G OQ PV AZ nV =Z XT gX qW nV $ $ R@ ]& + L$ 5_ $= V@ . S$ S$ ]& + L$ 0' . # U@ k) U@ U$ ]& L$ . . H= . |* Q$ S$ !, U@ ' & ; > . - ; H= Q$ T- . 2 2 H= . `@ %= > N$ [ ~ N$ - S$ ' . 2 ; N$ . %= & ) | H= & ~ /& | D, *# { ~ Z! X@ d { 6 [ : } d } ~ { 7 d 1 /& $# ( { } 5 Y@ d ~# 5 ,# a c a L= ,# a d 7 e 0 0 c c ~# h n a u 0 tA 2, 2, Q{ `$ ]# p ^# m Y$ ]# u `$ p -) 1; w {& p B /# p C ~& /# /# w w N O@ I T^ N z z A z ` Q A: L L L BX 3d pF oY 3d WX )Q #N #N )Q #N `I ^P 3d ^P mL E^ tw #N 7s $N mL mL $N rH AS $N AS AS AS .` AS hT hT FN +` FN aS mP _U ~Q ` OJ }L fR OJ fR :K OJ OJ :K RG fR 7O ;w x CB `w FI q +. E@ @. L@ L@ P S I I z %> Q@ B S ", +"# $ + # # L$ k) V@ > = L$ + M$ = $ & = * . > L$ . ]& ]& H= & # T@ - Q$ > $ - !, Q$ A; > 2) Q$ | H= & S$ ; Q$ - P$ N$ ' ~ ] & ; T@ H= ; ; > & =' ~ ; > ] | Q$ { X@ ] - N$ ] Z! ; 1 ; 2 T- 7- +# { V~ / %= ( &# 1 *# { $# 6 4 { [ ## [ [ 7 } } { &# V$ *# ( 7 6! ,# 6- a a V- 0 ,# 0- 7 {# c ~# {# K/ r ,> n n Y$ [{ c 5` ]# c r /# p ~# t p Y$ c `$ p r % Y$ p -) `$ w w t G p w /# F= m I ~& I D A %> I N b' T^ H$ A =K O@ A 8* V c- |# c- O c- 3& >z c- L L L 3; L T G$ 6` Q |# BX )Q 3d tw 3d ^P #N )Q )Q @N qH tw `I EN hT sZ $N mL 6B -I $N hT AS AS cV hT 7` cV -I CX cQ .` 8` tZ iT HN 2Y #Z 5Z @V @V =S nW nP pO jT nW pO 0R sO LV ^W oW ,X oW DR _W cX 9` ES FX 0` a` 8Z PW gV yZ eX &V :U :W b` FS c` OV d` e` HS =V }T oT AM HS HX PV IS HR pT HR [W PV |T nV nV XT pT f` gX aZ lQ (+ /+ /+ ~+ /+ =- (+ E* p% fZ #$ <+ C* `# p% i` `# :+ i` 3T z* :+ D* 3T i` jX CP CP F* 6W QS QS QS 6W _S _S _S QS j` j` dY NX BU CU k` CU qJ CU xT xT xT lS lS 7W 7W l` 3U m` 7W l` -Y |K aO ,T aO ,T bO hZ ,T ,T yT n` bO 3U yT 3U ,T MZ 5H 5H ^` o` HO LM 5H LM tV LM LM tV LM >Y LM tV HO nf L| L| W3 p` q` r` WU s` t` ,o [` u` |` aP aP 6u QH /Y aI aI @L NI NI (w (w PY 7L lM #Q NI NI 7L 7L NI #Q gY SY lM Kl 1X YR cv fW YR Kl 1X yW 2X -M zW 2X ZW YG -M YG -M BV ZW YW vt ZW fW -M +W OM v` ]j WY w` }j +R x` w` y` xv pu 2j *t lY !U dk gi 5q !l ZQ &x WS Kt Fa z` A` B` a@ t$ b. q@ (. (. 5& ). ;. ;. z@ z$ V 4# $> J P L@ T S S 3# K@ S G E; Q@ ", +"k) E! ]& + . ]& Gc = + . L$ # L$ = + # # + $ # + + + U@ $ = * T@ # ]& + & S$ - # + S$ $ $ > Z3 ] . > > U@ # ] U$ H= + R$ . & & H= =' > H= ; %= { ~ H= U@ & > ] ; =' U@ 4 X@ 2 | ^ ( { ; J) U$ U$ { ~ 2 ( ## 2 N$ } d d Y> V~ ) [ a 6 3] } ( *# N' <& 6 ,# -# k k e k ,# Y@ c } a' ~# z: ~# h s> n 0 c i o ,> ~# % ]# |& L= % K/ Y$ } Y$ :# o g _# `$ _# w 4* Y$ Z$ C` t p ^# :# C }# n! I W) m 8* G /# N 1& E; I $S n! C b' 3# JW 8* E$ E$ 1& M M E$ M HV L d{ M E$ A i5 L L@ 3d hU r! T BX RT `I G$ #N )Q 3d )Q 3d ^P )Q 7s `I _M $N EN mL $N mL 6B hT AS .` AS {z BS D` hT hT E` cQ +` _U mP |Y =S =S =S 5Z HN fK F` G` pO pO DR 0R pO pO pO pO oW nW DR H` cX oW ^W _W &Z gV 3Y &` 8Z gV 'X 0 +F EB .x El j9 El El El f f .f V5 gd f V5 .f V5 ~k ~k V5 V4 +{ +f <} C_ Z{ J^ Z{ Z{ Z{ J^ F{ J^ J^ Z{ J^ 3{ 3{ `^ ^~ ;] 3{ Y{ 3{ ]~ `^ H{ x^ }_ S] *+ @; C' @; @; *+ @; *+ *+ z) 3> *+ @; @; P~ *+ Q~ /+ /+ ~+ I> ~+ (+ Y# ~+ (+ X# (+ ~+ #$ :+ p% ~+ #$ `# p% p% :+ :+ :+ 3T jX `# z* oN FZ E* wT CP _S _S 6W QS j` j` QS QS j` j` S` k` QS VQ HZ lS qJ GZ BU xT xT 7W CU JZ 7W IY !Z 7W l` bO 7W IY IY ~` bO bO 3U bO 3U ,T ;Y 3U UN 3U 3U UN lX ;Y hZ ^R 5H 5H LZ o` tV LM ot LM LM LM ot LM LM LM 5H WN 5H nf L| f) ^- T` Cf U` V` W` * m@ b& C= >& gT -. A@ x@ (* z@ .= }; J P D$ S P O P@ E$ Q@ H Q@ x A ", +"]& 2^ ]& $ # + ]& $ = #^ k) # % + o! # - S$ . $ . * # V@ & = $ $ . $ > . > S$ > V@ $ # + 5_ & o! | $ & . & ] . S$ X! ! P$ * & H= $ ' ^ > Z! H= S$ ' { ; $ H= T- X@ Q$ | N$ ] ~ ~ 2 X@ { 2 1 ~ V~ | 2 2 X@ 4 { 7- 1 2 a ~ | 2 V~ *= Y> } &# } %m | d ,# ,# a ~# a k 0 0 h 0 0 c L= e r 6! a c n {# ~# V$ a c n k 0 p ~# ^# L= K/ u r p Y$ ^# b' ^# 2; Y$ 4* :# ^# w c{ 2; [# z F= z G p /U I n! w M I F= JW .JX aZ pV UP , .!V ~S ' .pV pV qT ) .! .cZ , .cZ cZ ) .cZ [U cZ MS XP {S {S 2U @U yU XP yU 5P XP }L yP :K #P fR fR OJ }L :K 6P }L rC ~ .fR 7P CO ;w `w HM #M x HM T ] .!Z xT IY 7W xT ^ .lS 7W IZ 7W 7W DU sV IY l` ~` aO bO 3U bO bO 3U ,T ;Y yT ,T ,T n` lX / .;Y JY LM LY HO LZ LM HO HO LM HO tV tV LM LM HO HO HO 5H f) L| F% F+ ( .xa Rh [V _ .: .< .tJ }` |` u` |` aP RZ nZ MC [ .QH aI (w NI (w (w (w NI (w @L NI 7L (w @L (w NI (w NI (w 7L 7L Kl Kl YR } .YR 1X YR 2X fW 2X fW fW -M -M fW YW vt 2X dH -M jz jz } .aI /Z _j &n .X ~B )n * `* E7 (. x@ -. x@ F, z@ E@ @. C$ T #% L' T P@ S 8* H H$ H$ 2& Q@ L@ I ", +"]& L$ L$ $ # . + <{ L$ ]& # L$ 5_ ]& 5_ V@ V@ + + # $ $ . ; $ $ U@ Gc > |* > $ + > S$ & . . & = > . = Q$ & . 5- > | & & > . 8- H= S$ ; ] ; %= & H= N$ Z! ^ ; ; ) N$ & ] H= N$ 2 | R$ 7- ## ~ 2 | 4 2 | /& { ( $# == <& } { R$ 1 6 Y@ ## 6 ,# N' &# 6 ( } ## b 7 ~# L= a a ,# W$ a tA e h ~# c a k ~# c n K/ 0- L= Y$ ~# h {# `$ n p L= n 0 h h #| % ,! h F p m u p N /# G 1; B `$ ^# G ^# $T 2; I b' G I x z I I Q@ E; c- A q! 8* I I O@ 5 .M SO 0S I E$ E$ Q P@ SO SO BX U^ *I qF 'Q DN ^P tw `I #N 3d 3d RT RT lP 7s -X tw #N $N mL 58 AS jU $N mL CX $N 0X hT :M $N CX aS BS 1Y 6 .7 .#Z sM #Z @Z dS CR jT nP 8 .nP 9 .0 .|C pO |M DR DR mW oW _W ,X nW a .^W oW bX J [P XT qW PV SW nV HG f .g .6Y h .1T 7Y i .qT qT ~V [U cZ cZ $Y ~V ~V $Y j .DZ sT sT OR sT EY jS jS jS 5P ^S @P }L :K @P yP }L :K }L fR @M RG CB xL FI }L 1Q q CB CB ;w q . > . ; S$ $ ] Z, $ S$ Q$ T@ > > ; ; P$ ] Q$ > ] $ ] =' & ^ & %= %= U@ ; > Q$ 2 2 & S$ ~ ~ ~ ] H= N$ 6 ) ] ) : .# /& X@ | ~ *# ## 6 ) ## 4 Y@ ## [{ / &# W@ 6 d 7- 2 1 } d $# $# 6 7 6 a c o k k 0- 0 L= a ,# j 7 0- 0 6- ~# q q Y$ a 6! }& n ~# n t Z$ /# 2, p ^# p q 4* ^# p Y$ D {& D Z$ z w z w {& z w .^# A I A z I $T z A o^ I A O@ 8* 3# M 1& x .y .=X 3# 3& z .3& A .L r! J qF 3# L pF #N DN =I 3d =I 3d 3d #N ^P RT )Q #N EN lP -X sZ AS $N AS $N mL AS hT AS 6B .` -I 3Z E` HQ _U J IK 4Z %T ST dQ ~Q =S $ .B .fK aX ~W 6N ;X pO 6N 6N _W C .pO ^W DR oW PW ^W ^W cX nW 3Y D .mT %Z E .hV 'X 8Z d .MV zY GR F .zY pW GR HS RP }T RP oT Ix }T G .}T }T HS L` [W [W JX JX [W pT nV nV nV nV -Z OQ AZ f` AY pV pV UP #Y UP !V pV qT 8Y [U cZ cZ cZ }U {S H .{S ,Z sT AO 2U +U jS 5P xU XP 5P yP 5O iN yP }L fR :K OJ fR OJ #P RG LX rC )J #M ;w CB #M x `w `w $ V@ $ + 1* + > ] Q$ 0' ]& 1) = ]& [* $ = * > |* $ ' Q$ = . > ' & }* z] & ~ W@ Q$ $ %= U$ . T@ & & & ] & Q$ | | & ^& ] & | ~ ; & | %= ' ; | > 2 +# | P$ | ^ Y@ D, ~ [ < < { /& &# : 9 d J= [ } { d d } } 1 == 5 3] e } 7 } N' ,# a 0 tA k g a ~# K/ h e c ,> 0 n 0- m h V) ]# ,> ~# 0 p :# m 4* % 2, w Y$ % y 2; :# q ^# B ;) Z$ N z {& I G z T^ c- z G q! O@ z F= M Q@ z .c- 3# 8* 8* c- >z L 3# r! 5 .J A: 3# 3d U^ G$ d- .V ^P bV #N ^P )Q ^P Z .)Q ^P @N 7s bV bV 6B $N mL $N 7s AS AS AS mL .` cV HQ CX {z ST :M #Z ` .MP ST sM ~Q .....5Z uZ pO CR aX jT nP pO fK +..@..DR DR nP wZ _W oW ^W oW nW #..PW RE xZ yZ & .yZ & .8Z )X -V $..4z 4z 4z oT oT %..&..AM PV HX AM HX HX }T HX }T IX IX JX pT PV JX PV qW nV qW *..gX gX AY oV f` pV qT !V BZ #Y qT ..(+ (+ =- /+ (+ Y# X# /+ |+ i` { .(+ C* p% `# :+ :+ p% p% i` k .:+ D* L .:+ QS CP _S VV QS QS ,..6W QS _S S` QS *Y 6W j` HZ GZ RS '` '..CU lS xT xT IY IY xT 7W IY )..l` (V (V !..l` IY aO 3U ,T 3U 3U 3U 3U 3U ,T ,T ;Y 3U n ./ .,T 4U 5H LM HO o` HO tV tV MZ tV tV LM LM ot LM LM ot ot Xx P9 )..~..ti ;r .S Bd {..$n ]..XI JP -r S .^..-r -r u` ;r aK -F -F -F MC nZ #B nZ aP nZ nZ nZ @L V .U .NI @L (w #Q NI NI 7L #Q 7L PY YR #Q YR 9E YR 1X 1X 1X 1X 1X +W Do 7u jz jz +W jz } .} .nZ /..(..3g 3g _..~B :..t ..X ]j ji w` kh !U dk [j Vl <..2 .[..} ._J }..#c bk |..1..V% 0@ s$ (. <. C= ). ). '. ,. =. *. . i~ V W |; X M@ H A S H$ A M A I ", +"]& L$ ;b + + ]& [* 0' + > = 0' + ]& = + . $ + . $ 0' V@ & $ = $ . . ; > Q$ & > . U@ & U$ $ & - ; = o! > 0' H= > > . > | & & U$ Q$ + | N$ & H= ; $ N$ ] > . U@ %= Q$ N$ 2 N$ | ~ | X@ | | ) ; ) { { ^ { [ 2 I= X@ } { 5 d { V~ W@ $# Y> } ## 6 4 /& ( J] q> a 6 7 6 ,# j e 0 a e 0 e n a ~# g a 0 6 h L= o h y2 n h n r #] p Z$ Z$ n^ w p m ^# w 4* :# /# B F= m /# )> z /# {& @= b' 7* I w 1& O@ I A j4 z G G n! 8* c- 3# 3# 3# M y .a7 |# Q 3& Q MW oY U YX r! qF G$ qF qF #N ^P ^P ^P ^P #N RT #N +Z #N .V EN @N !Q _M -X $N EN hT 6B AS $N $N $N hT $N $N hT $N aS 2..@Z 3..4..X ,X nW cX PW oW _W nW _W 6..7..8..0` 8Z yZ 8Z yZ -` -` 4z zY d` 4z -V ; .oT 9..HS oT 0..=V G .L` =V =V oT HX IS ;Z IS [W PV nV AZ qW qW qW f` > .|T lQ f` UP [U ~V BY [U [U !V a..BZ [U ~V ) .cZ rW }U U rW @U sW XP PN @U jS @U jS yU yU yP b..OJ +M 6P :K 'G xL }L OJ 'G )J Ey 'G rC RG `w q ;w `w CB CB CB qo q ..~+ ~+ /+ U# ^+ ^+ ~+ m% C* i` k .J .E* :+ p% ,` i` i` i` E* =Y :+ E* 3T bY k ._S 6W _S 6W S` jX QS 6W c..QS 6W 6W 6W '` 4u dY gZ JM qJ CU 7W !Z xT IY 7W xT IY !Z d..IY (V bO 3U !..l` ~` 3U ,T ,T 3U 3U 3U hZ 3U ,T e..JY ,T lX n .JY f..{Z HO o` o` HO LM &U tV LM LM HO HO 5H 5H LM On ez 94 g..h..FD SZ i..~P j..Ac k..zC lA S .JP S .S .-r u` -r l..m..Hs -F #B cH #B #B nZ nZ nZ 8g @L @L V .@X aI aI (w NI NI n..#Q PY (w YR 7L #Q Do } .cv cv +W 1X Kl cv TZ o..ZN p..Do p..q..r..#B s..^F &n )n & {. =. A@ ;. 4) E@ ,= 5# G@ T J@ S H H@ P@ O@ P@ +% K@ N ", +"]& 0' 0' + ]& ]& > $ + + }* - # # M$ Q$ > R@ V@ + + $ & . $ - # = 1* & $ Q$ > ]& > . ^& $ = ' & $ o! %= . N$ 0' > . & > k) > ~ P$ H= ] T@ & P$ | ; H= X@ U$ (& ; | 5- X@ | ; U@ X@ ( { X@ R$ *# J) { | ^ } ## ! | 1 4 1 ( X@ { < 6- /& 6 d 1 7 $# d $# == d d { Y> d 6 5 a Y> ~# d 0- c d e 0- 3] k ,# n 2* a' 0 n 0- `$ 0- q % L= `$ Y$ `$ ,> n y..Z$ Q{ s> Z$ V| `$ t /# Z$ ^# w b' z../# B B t w E G a7 I G A F= G A I 1& I c- O@ M >z |# c- S n! >z c- )W h] A..|# ` d{ B..L 3; *I G$ G$ ^P #N G$ ^P G$ ^P tw )Q ^P ^P #N .V 58 qH _M _M -X EN 6B AS 6B hT AS mL $N hT $N hT hT AS hT C..hT ` .4..&S pY D..dS #Z =S 5Z kT kT B .^Q pO aX +..0R jT nW pO FX nW tY ^W DR _W oW ^W cX & . @; @; *+ *+ *+ v& ~{ =+ 7= =+ D& *+ @; C' S# W# Y# <+ ~+ ~+ (+ (+ (+ (+ ~+ /+ H> z* :+ :+ J..J..:+ :+ :+ p% p% :+ { .jX { .,` 3T l .bY 4W _S 6W QS QS S` K..6W 6W QS j` 6W QS j` j` m .L..CU JZ HY M..!Z CU xT JM 7W IY 7W 7W xT IY ~` aO IY IY IY bO 3U ,T 3U ,T 3U ,T 3U ,T ]` ,T 3U ;Y n .lX lX HO LM LM 4U LM HO 5H HO HO tV LM HO ot 5H HO ot 4c @f N..O..Nj P..Q..R..Wk S..Kt ]..PM tJ p .[` p .S .S .}` }` }` 2x -F -F aP -F -q aP cH aP nZ @X @L NI @L tt @X PY NI q .NI NI U .PY #Q 7L 7L NI vJ SY 1` 7u 1X Do YR 7L ZN FL WS cv ZN ZN 7L aK T.. * + # * > . * + $ V@ ]& ]& Z, . R@ # Q$ . Z, k) $ . $ S$ > ; %= U@ %= N$ Q$ [* $= S$ ; ] . V@ }* & ; ] $ ; ; % ]& ' & . Q$ - O$ 2 { T- ] < | R$ 2 2 ~ Z! | N$ W@ =# / S$ U$ ) 2 ~ ( 8- 2 $# ## 6 ( : < ) ## a d X@ 5 D, 6- 0 i b e a e 6! d a k J] ~# h V) ,# n L= a c n 6 n 0- K/ vA p ~# ~# s> n ,> h :# `$ ,> % w y n D % % t ^# :# C B 1; N C Y..I n! z A ^# 2; I A M Q@ x O@ I O@ T^ 8* n! |# M c- PT 0S M z .Z..|# A: |# d{ 3; 3; L qF YX oY BX qF G$ 3d #N #N )Q ^P ^P #N ^P _M _M #N NW -X @N 6B hT 7s AS hT hT mL hT $N AS 0X CX hT BS :M 4Z pY ST #Z tM qY dS 5Z B .`..6N +.$Z 0R jT nP nP .+.DR ^W ^W nW lU _W cX cX oW nW ++.@+. .JX L` gX gX nV JX JX f` nV !V *..&+.f .6Y pV , .*+.[U [U ~V [U ~V cZ qT }U }U [U }U =+.+U +P dR 2U tT 5P 5P XP yU xU yP OJ @P jS @P 6P fR OJ fR }L #P .F {N }L x jJ SG ;w CB x q CB `w `w CB CB Tx ch TG CB Jn .q n n +F gd Fy El j9 j9 gd T3 `e V5 V5 U3 f .f 34 V5 .f V5 <} +g Rk Sc U4 F{ 9) Z{ 7< Z{ F{ F{ 7< F{ ;] Z{ 2{ Z{ ;] ]~ k9 `^ f; O! ;] f; ]~ s~ e! O! ,^ *+ 7= @; 7= @; *+ 7= *+ =+ =+ *+ @; _' 9= -+.7= a= (+ (+ k% ~+ (+ ~+ ~+ (+ ~+ ~+ (+ ^+ { .:+ :+ m% `# :+ i` i` ]R ,` z* jX FZ :+ p% jX { .{ .6W 6W VV QS 6W j` QS QS 6W QS j` j` j` j` qJ dY CU xT 4u L..xT xT xT 7W 7W IY 7W l` xT l` xT (V 7W l` l` %U ,T 3U ,T ;Y 3U ,T hZ ,T lX ,T ;Y hZ ^R yT e..&U LM HO o` KZ ot LM tV LM >Y HO tV LM zT 5H ot On ~- ;+.zf _J >+.~P @H /d Bz $n $n 7f 7f PM PM lA p .p .p .}` 2x }` -r ,+.u` '+.|` -F -q |` nZ nZ 6u NI tt 6u )+.NI @L nZ @L NI tt PY @X NI q .NI NI 7L 7L #Q #Q lM 7L 7L 7L WS TZ Do q..TZ 7L ;r iH )n !+.ji ji :Y dk :q hi .X ~+.~B {+._j !+.]+.Fe 2 .Gd ^+.%x Nj PM MI qb /+.(+.]; a@ xi m@ u@ v@ {. {. A@ ). )= G@ X B$ }; H T S T J +% |# H M G z #= ", +"]& L$ # + # $ ]& ]& . 0' + > V@ ]& + = + # Q$ - $ $ . ]& V@ + . 0' > [* ' > & = ]& V@ + . $ - ~ * ; V@ ' o! ]& Q$ > R$ | ]& Q$ > # & N$ > Q$ N$ ^ . H= > ~ N$ Q$ S$ & & U@ ; *# ~ | $ Z! P$ { Z! ] /& ~ [ & , [ X@ V~ { | { ~ ~ 5 1 [{ 3* J] $# 7 7 Y@ 6 ( d d ,# 6 7 ,# } a ,# 7 W$ ,# {# *= ,# a c 0 0 8 ~# 0 ~# ]# a `$ ]# Y$ #| c{ p n 4* Y$ p `$ p n^ `$ Y$ :# t m /# p u 4* N 2; B N #] G$ ^P )Q RT 3d ^P EN lP RT lP @N lP qH -X 7s CX 6B AS kU 9X $N $N AS CX CX .` AS 3Z HQ 3Z :+.pY dS cQ EX dS <+.5Z [+.6N kT }+.jT 6N 0R DR 0 .nP |+.pO nW DR _W C .^W ^W a .1+.2+.& .3+.4+.mT =` :U eX d .jV 9Z $..b` mV 0..J` }T 5+.6+.HX HX IX L` oT 7+.}T |T HX > .qW N` nV IX qW JX qW pT gX gX ;Z oV 8+.&+.9+.BZ , .lQ !R , .#Y ~V F> =+ ]+ /+ a= ]+ ~+ >..~+ (+ ^+ ^+ /+ ~+ a+.:+ :+ a+.(+ i` :+ p% b+.:+ :+ { .FZ bY i` c+.{ .d+.3T 6W =Y j` QS *Y j` j` _S 6W j` 4u j` k` j` m .e+.f+.g+.HZ CU 7W h+.IZ lS l` !Z l` 7W !Z IY DU DU IY IY (V (V ,T ;Y ;Y aO hZ ,T ;Y lX 3U JY i+.j+.yT hZ ]` >Y r0 HO 1..LM HO HO ot tV HO HO tV HO LM On On Xr k+.`c >+.l+.jY jY m+.n+.8E o+.,o 7f 7f 7f PM JP p+.[` JP }` q+.}` S .}` '+.|` Hs T .-q RZ nZ @L 6u aI aI @L aI nZ nZ nZ aI aI nZ aI tt @L NI @L PY PY aI 7L (w PY (w (w jY jY jY WS _ .tt >+.r+.&n &n )n s+._j &n :q dk [j hi .X t+.dk u+.Uy Lf .p Jt RH KB ]B zC tN Ff v+.w+.)@ 3@ X* ~* {= ~. {. !. A@ .. z$ G@ n) 4# T H }; E$ S 1# +% S H P@ Q@ x O@ ", +"+ R@ [* k) # L$ k) 0' V@ = ;b V@ # 0' 0' R@ L$ ]& # V@ > 5_ ]& # ]& $ > [* = . |* . Gc # > ; * V@ ' = * U@ Q$ P$ !, & =' $ - . # ^& Q$ 05 [* $ Q$ H= [* & > & !, ; 2 W@ N$ & & N$ > | ) P$ ; ~ ]& %= | | ] ^ 1 { 2 { D, J] { $# 2 ( ( 2 } $# /& J= W@ D, : ,# $# 5 } -# ,# } } {# 1 ~# 0 d d ~# a 0 ]c L= 6 a c L= L= 6 a 0 ,# ]# c k X$ a n ~# ~# r ^# t L= /# p m Y$ ,> p $S p F= % p w :# G 4* ^# B /# B z I I z @= w K z 1& O@ O@ A 8* 8* K 8* c- M }Y x+. V >z c- H$ QT E$ Q Q *I P@ y+.L G$ 3d qF tw pF pF ^P ^P 0* #N )Q _M r! +Z EN qH #N 9X 6B 6B $N AS 0X hT mL AS $N AS CX HQ AS BS .` 2..4Z z+.|Y 7 .4Z CR ...iT A+.kT fK `..;X pO nP nW jT 0R B+.OW nW nW C+.|+.oW _W ^W a .%Z gV 8Z D+.E+.& .8Z F+.0` E..=` zY 4z pU F+.K` e .G..F+.}T }T =V F..; .HX HR L` IX HS PV pT [W [W G+.nV PV nV f` f` H+.gX SV gX gX I+.h .UP !R [U ~V BY [U J+.qT cZ H..8Y H.. U 2U PN {S DZ K+.sT @U jS XP xU yP yU 5O yP XP #P #P fR }L ^S ^S fR 6P ZP 1Q )J 7O (S Ey `w #M `w rC `w `w CB `w `w q Tx kJ kJ to EB |u EB |u AP El El >0 T3 Fy j9 v[ V5 V5 f V5 v[ v[ 34 34 V5 44 V4 b^ <} <} Z{ Z{ J^ Z{ F{ Z{ F{ Z{ F{ F{ J^ Z{ Y{ f; [] s~ ;] f; f; ]~ D] P) N! N! ]~ y) C' 7= *+ b) *+ 7= =+ *+ 7= 7= *+ *+ {) 7= -+.S# d) ~+ g! ]+ ~+ ~+ ~+ L+.~+ ~+ ^+ ~+ ~+ z* :+ J..U# M+.:+ i` N+.i` :+ J..{ .3T i` d+.3T ,` S` _S 6W k` QS 6W 6W j` 6W k` O+.6W k` j` k` j` GZ IZ !Z L..e+.IY IY L..7W xT 7W 7W IY 7W l` 7W bO (V P+.!..~` ,T ,T ,T 3U ,T 3U ,T yT lX hZ hZ Q+.lX ^R n .tV lX HO KZ tV >Y MZ HO tV HO 5H HO tV HO ot 4c * t$ s@ d# '. B$ z@ +. 3^ r4 @. $> &' 1# H Z M@ J P@ M@ A P@ N@ N I ", +"+ # 1) ]& ]& J$ $ 0' ]& # = ]& # ]& 0' + + k3 $ T@ $ ; = . ]& * . # $ Q$ ^& $ Q$ . T@ ; + V@ A; [* # ; . P$ ] - & & . > > ^ R$ ] Q$ - # $ 5- ] ' S$ U$ & > & ^ | Z! *# ; ] ^ ; | { ; H= N$ ] Q$ ; ] { ] ^ ( { T- ## | { { } < $# ) / 1 6- Y> a ~ a 6 b e d } k 6 6 a 7 e ,# i 0 Vj 0 ~# ~# ~# 7 k 0 t' 0 0 o r X$ n Y$ 0 _# o ,> Z$ ^# s> Z$ p ;= ~# ^# |& m ^# n^ t t /# `$ F= Z$ Z$ ^# /# w I m 1& ^# n! }# C Z$ AR 8* I Q@ #] M 8* V I .@.=X V M M 3# AX z .oY SO A: A: d{ r! oY BX A: #N 3d 'Q `I 3d #N DN U^ E^ _M BX RT 9X EN 7s EN @N 6B AS mL $N AS $N cV $N $N hT hT hT +@.hT @@. J #@.$@.%@.|Y %T CR 7 .qY CR jT &@.$ .nP DR nW *N mU IQ pO DR ^W *@.^W ^W =@._W cX #..yZ 8Z -` E+.gV d .%+.& .%+.8Z -V oT e` -@.c` fS ;@.AM >@.}T HX HX oT IX }T IX IX HS pT IS ,@.[W PV JX nV qW AZ AZ *..gX gX AZ '@.gX AZ 7Y ~V , .[U 8Y ~S H..qT ~S H..cZ ~V 8Y H .iJ yO 2U sT yU P` @U XP {V yU 5P ^S yU #U fR fR fR OJ #P OJ }L OJ OJ )Z OJ }L FI CB x CB #M `w `w CB CB rC x x `w Vr XK i9 $P n El |u |u j9 El T3 gd Fy j9 f 34 V5 f `e 34 34 v[ V5 34 D9 <} 44 F{ U4 F{ )2 J^ 9) F{ F{ F{ J^ F{ Z{ Z{ F{ J^ 3{ `^ ;] ;] ;] ]~ ;] 3{ ^~ &~ N! ]~ 6= *+ ;+ h; j/ @; z) @; 7= =+ =+ 7= 7= _' {) x* 9= {+ (+ (+ ]+ ~+ (+ )@.(+ (+ ^+ ~+ (+ (+ !@.,` i` H> b+.i` _+ ,` i` i` :+ { .3T ,` :+ E* M .FZ QS QS QS QS j` j` 6W j` j` j` j` O+.j` k` j` NX L..gZ L..4u xT IZ e+.!Z xT 7W IY IY IY !Z !..,T (V l` P+.!..;Y e..;Y bO 3U ,T ,T ;Y hZ ;Y ;Y ;Y n .e..;Y ^` / .HO ^` LZ tV 5H LM LM HO tV LM LM LM 5H 4c ~@.{@.ti ]@.^@.tf tt ~U n+.Eo _N 8E Ac o+.7f 7f ]..PM PM PM tJ tJ tJ tJ S .}` ^..}` S .l..}` u` RZ nZ aP -F cH '+.aP aP nZ nZ nZ nZ 6u @X nZ nZ nZ aI @L nZ _ ._ .X+._ ./@._ .jY MC TZ _ .nZ (@.5w ii (j _j (j fE Wg w` dL Wg fE ]j Jh Lf &n iH lk Ee _@.Js tt dv iz 8E we :@.<@.r; f$ [@.X* x$ (. }@.x@ ,& ;. (* 4# V L@ H@ H H Z 3; E$ H J K@ I N H$ I ", +"R@ ]& L$ J$ + ]& I/ R@ R@ + .( ]& # = [* + R@ J$ . # . U@ + 1) + ]& M$ $ [* ]& > > $ & # = . . U@ N$ & ; . S$ o! ), o! = . N$ ^ > | ~ Q$ U@ & Q$ S$ ^ Q$ U@ . ] z] ~ ; N$ ; *# & N$ | { N$ ^ | .# N$ 2 ~ ~ X@ ~ } Y@ 7 5 [ 2 [ X@ 2 ~ Z! &# < } d [ 7 q> } [{ { N' ( 9 } ~# e a ~# k i c {# c n 0 n a L= 8 Y@ ~# L= ]# h 7 h {# c Z$ % n `$ h Z$ ,> p 1; r D c /# :# o `$ `$ u w w `$ w `$ F= w ~& F= z w I E; /# O@ D 1& AR n! AR JW N O@ >z O@ O@ c- c- c- AR c- >z QT 3# ` U A: qF L qF *I yS r! oY ^P ^P 3d 3d )Q )Q ^P BX `I )Q EN sZ sZ 58 |@.@N 7s mL mL 1@.2@.$N :M hT hT 3@.AS HQ CX CX _U kI tZ 4Z 4@.DS e@.,` i` i` i` :+ bY f@.fZ p% bY f@.i` =Y S` 6W 6W j` ,..6W 6W QS 6W 6W XV QS '` g@.HZ HZ L..sV h@.^ .7W g+.7W xT 7W BU !..!..IY !..l` bO l` l` i@.;Y ;Y ,T 3U ;Y ,T 3U ,T hZ n .hZ JY ,T n .;Y zT / .HO HO KY HO MZ HO HO HO HO HO LM ot _i W2 j@.k@.zC l@.0k m@.mk ZV ;c 8L tN _N _N _N n@.k..o+.]..PM 7f ,o lA tJ ,o XI JP S .JP bP V+.V+.u` u` RZ |` |` T .-F |` RZ #B aP aP nZ nZ nZ nZ nZ 6u #B MC 4G nZ 4G o@.4G _ .4G nZ .s _ ._ .#B p@.3g ]j &n _j hi q@.`` w` Wg Wg kY dk |k sz |i 5X ,r r@.s@.bb S..t@.LB 8E nc hL u@.%@ :@ A= j- w$ u@ x@ x@ )& A@ &. A$ @. O= M@ H@ 1# J S E= P@ Y S G Q@ I x ", +"], R@ <{ <{ J$ # 0' $ L$ > # L$ k) > [* + ;b $ 0' . U@ ' k) |* > = ' $= ;b L$ T@ $ X! > > > > > . }* ; T@ U$ - & R$ R$ > & & ; * ] ' Q$ # ; Q$ V@ . Z! > ] 2 2 & Z! N$ | U@ R$ { [ ~ N$ X@ 2 ] ~ [ <& /& < [ [ $# 4 J] [ ~ 2 ( | X@ ( ( 9 } : { 5 d ( d d : 6 5 6 Y> 6 Y> e d a a 0 L= K/ L= } ~# e j n a c n s> L= a 6! K= n s> t m u h 2, `$ t Z$ q D :# p <, t m t n `$ 1; B ^# t :# 1; D ^# G B 2; {& 1; a7 F= 1& a7 T^ I F= z O@ T^ .@.3# =X T^ v@.d{ d{ QT v@.y .i5 T J Q BX BX G$ qF BX ^P qF #N ^P ^P RT G$ )Q RT )Q .V sZ @N NW 1@.6B 6B 1@.hT w@.$N $N :M hT CX CX $N x@.$N CX y@.aS pY +` HN pY z@.CR D..qY @` DR BR ~W A@.6N pO oW nP B@.sY cX ^W nW oW %Z cX cX a .%Z &` & .C@.8Z 8Z D@.*Z d .* .8Z E@.d` -V E@.F@.M` zY HS K` }T =V }T IX }T }T HX Vw AM IX [W qW nV ,@.qW nV qW qW SW 9@.)V AZ @Y f .qW G@.! ., .H@.I@., .qT ) .~V BZ 2E {S cZ 8Y 2U ) .sW 2U rW +U 2U XP @P XP XP jS yU yP }L XP @P }L #P fR h` RG OJ }L )J fR )J 7P #M ;w CB Y tV LM 5H 5H ot #x N@.7a uJ YN O@._d X+.jY vV %c T+.P@.sf _N Q@.8E Kt 7f 7f 7f ,o PM PM lA lA ,o tJ [` S .[` S .S .R@.S@.-r }` l..-q u` RZ RZ 8g #B #B nZ nZ T@.6u MC nZ nZ nZ nZ nZ #B #B nZ MC KB MC #B ;r aK U@.3g ii ii (j Wg ii `` w` fE /y kh (j Ih &n 5X Lf MT V@.W@.X@.Bz aH }..MI mc Ma Y@.Z& 6$ .& {* [y 3. ^. {. z@ A@ B$ B$ .= V V Z@.V P H H A K@ P@ A Q@ b- H$ ", +"+ J$ ]& J$ R@ ]& = ]& # + ]& jP . ]& # + + $ 0' + . # = > # + $ $= L$ J$ + Q$ Q$ - ; > . + > > = U$ U$ ' ; b{ Q$ + ^ . ; & %= N$ H= ^ %= ~ & H= 2 ; [* & H= 2 & ] ] U@ H= %= ) X@ Q$ [ N$ 2 X@ ] [ `@.1 2 d _ , `@.## ] X@ 5 *# /& 6 } 6 [ / D, 2d 6- 4 Y@ $# X@ } } < {# 0 9 Y> } 6 z: ,# ]# ]# |& 0 ~# 0 a {# n e c `$ 2, c X$ L= c L= % ;) V| p 4* Y$ 2, ^# w V| :# h G {& m p p s> 4* Z$ w m w /# F= b' ^# I I z JW A $T {& #.O@ 3# P@ n! 3# a7 2Z 0S 8* |# 0S 5 .T^ QT Z..i5 Z..A: ` Q MW BX G$ r! L 3d #N #N )Q ^P )Q #N #N )Q `I #N ^P E^ bV +@.EN 6B jU AS AS $N 6B AS CX CX mL E` HQ $N .` |Y pY cQ @@.GN pY 9 .5Z qY =S dS vZ Zz 5Z 6Z uZ nW wZ uZ .#..+.cX DR B+.#.._W %Z oW *` *` PW = .8Z d .* .d .E..+#.& .+#. Y NV ;V E..@#.qU G..HR ##.L` HS L` G .IX }T L` }T }T }T qW qW PV > .nV PV qW gX AZ AZ f` nV BZ f` f` 9@.BZ J+.#Y $#.!V QQ [U ~V cZ ~S 2U 8Y %#.$Y &#.sT wU TW hX 2U g` XP xU OR xU xU #P yP iN @P OJ #P RG *#.#P }L rC rC }L OJ )J LX qo x HM x `w x `w x `w x x Tx `w CB Vr n Fy yD n gd j9 El f 45 El `e 34 .f V5 v[ 34 6< V5 V5 v[ 34 44 Ln !2 ^1 ^1 /1 F{ J^ Z{ F{ ^' Z{ 9) F{ ;] F{ J^ ;] ;] Y{ F{ f; 3{ O~ 3{ ;] f; N! Y{ s~ v& *+ =+ *+ *+ 7= 7= 7= 3> ;+ *+ 7= D& ! `) `) D& %; ~+ d@.]+ ^+ ^+ ^+ (+ (+ ~+ U# ~+ J .:+ i` J..G& i` i` ,` ,` :+ i` 3T 4W FZ K .jX M .f@.M .=Y 6W 6W 6W j` 6W k` k` k` O+.O+.k` k` O+.=#.-#.l` ;#.>#.d..l` 7W IY IY 7W l` l` l` IY !Z ~` 3U i@.h+.P+.3U bO ,T e..3U ,T 3U ;Y lX ;Y ,#.;Y / ./ .zT KY HO HO HO LM HO tV r0 {Z 5H HO LM ot _i W2 '#.)#.bH !#.~#.l@.{#./@.0k gb #c sf MI P@._N _N 8E Kt iz Kt 7f ]..PM PM PM PM tJ JP [` S .bP JP S .R@.R@.l..-r -r -r u` R@.R@.-r Hs aP RZ u` |` 8g aP KB -q KB #B aK #B |` KB |` ;r |` ]#.l+.Ed #W _j .X Wg `` MO `` `` dL oZ _Z dk li 3g ^#.+H v` ,B cr 1x ^Y y @I U+.>e Fa /#.^G S% .& p@ :. '. b# ). -. -. E@ P G@ . E@ P }; L@ T Y ` M #= z N@ E$ M ", +"= = # . R@ ]& E! ]& + # - # R@ ]& + 0' $ $ ]& #S ]& ]& . ' + . L$ 0' . # X! $ . $ + * V@ ]& # V@ ^& = |* R$ $ ; ^ S$ # ; . $= = | z] S$ ; U@ | & U@ o! & # & 7- 'W ; ] N$ & ; ; & ~ X@ N$ | %= P$ { Y@ { ~ ^ { [ W@ 1 4 ## 7- X@ ( 2 -> } 6 ~ ( [ ~ [ 7- ( { /& ,# 3* } a L= 8 6 6 !# i a 0 0 {# 0 ~# 0 c o Y$ !# c 2, L= K/ p |& Y$ s> |& % r `$ r c{ p `$ Z$ b' `$ D b' p Y$ C; ;) $S 2; ^# F m w B z z a7 z #= z z A A {& 8* z I N@ 8* c- $T 1& c- c- }Y PT (#.>z iI Q Z..=K 3# E$ 0S _#.:#.yS 3d BX 3d BX ^P ^P #N RT +Z ^P ^P RT YX Z .@N sZ <#._M $N $N mL $N $N $N AS CX .` $N 4..-I 3Z CX aS |Y FN @@.#Z 2Y [#.CR z@.~Q nO B .0R }+.pO aX %` $Z }#.;X wZ _W DR oW %Z nW a .C .=@.cX a .8Z & .gV 8Z d .%+.%+.xZ +#.nU |#.6+. .G .G .Vw }T JX qW nV qW IX [W nV I+.JX JX AZ JX I@.AZ JX )V 8+.Y LM 5H HO LM ot Ib 7#.*d 8#.}i 9#.l@.S+.0#.tf )d %c a#.MI P@.P@.U+.P@.P@.8E 7f 4A $n ]..PM ]..]..7f PM PM [` JP _w Tn }` S .}` S .}` }` -r }` u` -r b#.-r u` |` u` c#.]#.-q _J -q |` ;r -F KB ;r 2x c#.(@.R@.2x Ed d#._j :q `` =L %W kh fE WY }j MO e#.f#.g#.^e |g Ug ,r h#.)e 7L GW iz _N !d 0H xX L N% l$ >* -& {= :. ). *. A@ l> x@ z$ X .= L@ P $> 1# Y K@ 4, b- H$ M I N ", +"R@ 0' R@ L$ L$ L$ J$ 0' #^ .( + R@ ]& ;b + + ]& $ $ R@ ]& # V@ # + $= # . > + Z, L$ > $ Q$ > # $ # = V@ V@ = > > o! . ~ ' = Z, # > N$ S$ Q$ . | . = o! & & 1) ^ }* & & }* Q$ ; ] N$ > ] N$ i#.2 H= Z, 2 | X@ | [ ; { &# 8- | } 5 <& d $# 6 a [ 9 4 [{ $# } [ 7 $# 2 a ,# 5 6 a c6 } J= {# e i g ]# c } ~# n k h Y> ~# c k ,# 0 s> 2, p ~# L= ,! r % Y$ L= |& 1; ^# D L= Z$ :# m #] ^# 4* z G :# w D ^# B ~& z I z 1& q2 z w I I I z 8* I 8* V V c- >z 3# Oz PT v@.>z aV T^ SO J SO c- i5 YX j#.BX E^ U^ k#.k#.#N ^P G$ ^P RT )Q ^P )Q ^P )Q bV sZ # .)Q 6B AS $N hT AS AS $N CX CX hT CX AS #@.hT aS 4..:M #@.ST G` ` .l#.m#.pY CR =S kT ;X 6Z pO DR pO %Z DR $ .n#.pO _W oW _W _W a .a ._W &` gV 8Z yZ yZ o#.%+.* .a` %+.0` I` |#.QW p#.0..q#.}T HS >@.G .L` AM }T r#.L` G .IS Ix [W [W gX nV qW =V gX gX 9+.9+.f` JX qW @Y f` gX &+.aZ ~S ~S pV [U cZ }U }U cZ qT `T 8Y }U sU U 'Z eR CZ vU =..jS PN @U tW XP yP ^S :K :K OJ 'G OJ :K }L OJ RG xL FI #M OJ q RG q ;w 6O a= 7= C& e, S# x* ^+ $; ~+ ^+ ^+ ^+ ^+ U# ~+ ^+ ~+ L+.J .N+.M+.U# b+.f@.i` ,` ,` i` i` s#.QS K .jX M .N+.S` 6W j` 6W QS l .j` j` j` 6W XV k` c..6W k` k` HZ xT t#.HY IY 7W )..] .!..^ .P+.l` ^ .7W l` 3U ,T IY !..!..,T ,T ,T -Y ,T e..,T ,T hZ {Z KY hZ hZ u#.hZ 6#.v#.tV tV KY tV n .{Z LM LM 5H LM sa _i w#.Yb 8#.:b ^@.x#.x#.m@.y#.>e !d z#.ED ED sf P@.P@.U+.P@._N Kt 8E Kt 7f ]..7f ]..lA PM PM ]..PM zC tJ lA }` }` S .S .A#.}` }` }` }` S .-r 2x (@.l+.(@.u` GW 8#.S+.}` u` (@.p@.2x Is 2x 2x hz B#.tS _j fE +R LT WM cU LT GT C#.=L dk [j Mf Vg mi [j VZ .d D#.cv yC ,o ]..rc 1b E#.F#.1$ 7@ >* u@ 5& '& ). A@ .. .= =. C$ }; K@ 4# 4# M@ H H H$ Q@ ~& P@ J I I ", +"]& L$ = ]& L$ ;b $ # R@ = ]& $ + ;b > # L$ ]& . $ 0' + [* + # 0' ]& + $ + + $ . * !, & + & $ 0' Y! & [* & ^ S$ 0' `@ S$ k) $ = . . ' $ . ^ ; ' 2) > . . U$ ] { N$ > $ > W@ - & | X@ | ; N$ ^ | ~ [ d | 2 ) ~ - ~ X@ 1 { I= d 6 } : &# 6 } 6 3* J= ,# $# D, 7 6 ,# 3* Y> k e Y> ~# ~# &# n n 6 c a g h _# 0 n r n L= ># p n n Z$ ~# 4* `$ Y$ ;) `$ s> q n y p `$ G#.1; ,> % 2; {& `$ z D @= t G I E C D 1& 8* z /U z w z G A n! c- c- c- M P@ O@ :#.H#.d{ Q AR Q y .>z SO Q T _#.I#.qF 3d 3d BX (U #N 3d RT #N )Q )Q ^P ^P ^P 3d Z .)Q qH _M lP $N hT hT AS $N AS hT $N CX AS AS aS AS .` J#.FN K#.:+.ST tM ` .B ....D..=S @` pO L#.jT M#. +.vZ L#.N#.3Y nP _W ^W wZ oW *` *@.H` &` gV * .yZ & .d .%+.d .E..E..%+.E@.zY qU |#.-@.F .-V GR O#.HX HX }T HX IX }T }T IX P#.G .Q#.> .gX L` nV JX gX f` JX JX AZ JX f` R#.nV f` f .UP lQ qT qT [U S#.~V H..[U ~V U ,Z {S sT tW 2O ,Z T#.2W PN jS @P 5O 5P :K U#.@P @P #U :K fR 'G }L }L OJ 'G FI OJ fR .F ;w q CB i` M+.L+.V#.K .,` :+ :+ i` ,` 3T jX i` M .l .,` K..j` j` j` QS _S j` j` O+.6W 6W j` j` j` O+.h@.L..IZ !Z =#.W#.X#.l` Y#.l` l` l` l` IY 7W IY ~` bO Z#.l` Z#.~` bO ,T `#.;Y hZ ,T hZ hZ n .KZ hZ / .n ./ .;Y KZ LM tV KZ ^` n .tV HO LM 5H 5H _i uK $.&e ]B .$.+$.@$.U@.S+.Js !d rc zd [R [R 8L #$.Eo _N sf sf _N P@.Kt Kt $n 7f Kt ,o 7f PM PM ]..]..JP PM Tn S .[` XI S .hz S .S .}` S .2x Is 2x 2x 2x 2x S .S .A#.l+.2x 2x tu }` hz 2x *f ~#.$$..X dk `` 8w |N jA xv QD gW DQ `` ~+.ji . X! # }* . ]& T@ . Z, > T@ Q$ # ; U@ > {c > [* 0' U$ U$ > ]& & $ > /& | > & ^ ~ & ] ; ## H= ] R$ & ] ~ N$ ~ ) N$ ~ ~ o! o! X@ 2 ~ P$ ^ [ 2 : [ ) [ { ~ < [ ) -> < /& } { 6- Y> : ~# a 6 ># a ,# ( a i 7 V~ 3* 7 a 2d i ,# ;= n n c ~# ~# ~# ># a L= o _# 0 i k tA c{ Y$ o/ ^# h m s> n L= }& D q h 1; #] :# /U F= w p ^# /U G /# B {& G w G a7 G F= 8* O@ F= $.`I +Z _M EN <#.!Q AS $N mL AS $N CX hT hT +@.CX CX aS E` CX ,$.'$.DX BR 3Z CR ` .)$.EX #@.qY =S DR 0R B .$ .!$.M#.;X 0 .sY DR a .^W cX %Z a .yZ _W *` ~$.%+.gV ~$.& .* .{$.d .8Z E..F+.RE ; .pU zY qU J` }T }T ]$.r#.G .=V F..oT HX JX G .^$./$.> .G .JX gX PV nV JX PV AZ &+.f` gX gX JX bZ f .!V , .@Y 7Y 7= *+ O~ f% *+ =+ =+ g% e, (' $- =+ {+ 8= G> 7= D& j% ^+ Q# ~+ ^+ ^+ ~+ )@.^+ L+.~+ U# e@.i` ,` d@.!@.,` N+.d+.N+._$.:+ f@.l .:$.,` d+.L .<$.*Y j` =Y dY k` ,..j` O+.k` j` 4u =#.j` '` h@.-#.L..xT ^ .[$.IY IY Y#.l` l` l` l` l` !..l` !..~` -Y P+.!..i@.;Y 3U hZ ;Y ,T hZ hZ ;Y / .]` hZ j+.n .}$.;Y KZ HO tV ^` w../ .MZ LM LM HO ot @f |$.1$.yK 2$.3$.zc < .4$.m@.Pf ;c ze gb %c 5j a#.a#.#$.ED sf P@.P@._N sf Kt $n o+.Kt Kt ]..]..,o 7f ]..zC PM ,o [` [` PM _w lA [` [` Tn *f hz S .lA bP S .tu l@.=F hz 2x *f *f hz 2x Tn Tn Tn Ed _d .X :q kh DQ xv eE pu pu QD |N ni hW 5$.(j gi Wg ew ii Uy 6$.~Y KB zC 8E gb qb rb 7$.#@ g$ >* -& v@ '& F, ). !. &. )& V V U X H T J P O@ S M a- G A I ", +"5_ = 1) J$ k) + # k) + L$ + # ]& = & ]& k) # R@ L$ <{ # . $ # # Z, $ |* . = ' S$ X! # U$ $ Q$ ' |* # = & N$ ' > > T@ + $ ; ] Q$ 2 & > > & & ] U$ ] U@ | N$ N$ Z! & %= & ) X@ X@ ) & H= *# | N$ U@ & ) 4 { { { } $# ( } { 4 ## ## } d 2 *# 3* 7 ,# ,# 9 } } ( 4 d 5 2 4 0 6 6! 6! i i W$ c K/ tA 6! h n k a {# 0 ,> L= i e (# s> ^# Y$ L= Z$ 4* Z$ 4* 4* L= h h ~# s> 2; m t /U ^# Y$ :# n! G Y$ F= N a7 /U t /# 1& N= N ;O 8$.$T 8* I 8* T^ O@ T^ 3# 1& z JW Z..z v@.>z }Y Z..P@ |# iI aV Z..(U oY *I BX 3d ;$.pF #N #N #N Z .^P ^P ^P RT #N )Q 9$.EN -X 0$.RT mL AS 3@.$N AS CX $N D` 3@..` CX 3Z .` J#.+` aS pY @@.y@.cS a$.=S )$.#Z 0 .5Z DR ;X +.b$.0R nW aX c$.aX cX 0R *` #..C .xZ *@.d$.e$.d .8Z =` *Z d .E..%+.p#.C@.f$.* .6+.g$.b` mV h$.HX RW i$.i$.HX HS L` 5+.7@.Q#.HX > .> .L` f` gX JX > .AZ AZ ;Z j$.JX AZ k$.AZ f` f` nV , .w H| :^ F{ Z{ Z{ Z{ J^ F{ F{ Z{ Z^ ^' 3/ ;] ;] (! O~ ]~ Y{ M, Z{ Y{ Z{ S] Y{ M, N! ;+ ;+ $- 7= 7= ;+ =+ $- -+ g; ;+ D& !+ =+ r- {+ d) O, V# E& ^+ ~+ ~+ ^+ (+ ^+ ^+ U# U# b+.k .{ .M .b+.,` L .N+.,` l$.k .jX ,` i` c+.m$.,` K..O+.k` 6W k` n$.K..QS j` n$.k` HY j` 6W o$.L..] .IZ !Z O+.p$.l` IY l` IY P+.l` P+.P+.!..!..!..3U 5#.l` -Y -Y ,T hZ ,T ;Y hZ e..e..e..n .lX hZ M@.6#./ .e..yT >Y f..LM HO {Z HO LM WN /R c ~#.r$.s$.t$. - X! U$ . p9 L$ # * > . V@ ; = * . [* . & . $ > ' Q$ * T@ > ; | ; 2] N$ Z3 Q$ R$ ] & Q$ ^ > & N$ ; U$ X@ ) { R$ N$ T@ ' /& %m Z! 05 X@ T- 2 { { D, ( { [ U$ .# X@ 1 2 /& 1 ( 1 6- 5 7 7 9 { 6 a ## { *# 3* $# N' [ k c6 ># b ,# c a j L= c ,# !# ,# h [& o g {# i ~# y2 Y$ % n `$ ^# r u n ~# `$ o p m % ^# :# {& /# L= ^# F= w ^# G F A$.#] I ^# N a7 A n! $T I A 1& n! AR 2Z M o^ O@ T^ c- d{ d{ >z >z >z M 0S H$ }Y Q *I :#.B$.oY A: >$.r! (U .Z #N #N )Q )Q RT )Q RT )Q `I ^P EN -X 9X RT -X $N D` AS $N AS AS AS hT E` hT 3@.0X E` aS +` pY |Y y@.l#.C$.%T 5Z qY B .D..pO kT 0 .z@.uZ nW %` N#.6Z oW +..a .a .uY D$.E$.a .a .8Z 8Z d .& .d .-@.* .* .%+.%+.E..F$.-V f$.G$.F$.|#.H$.I$.G..HX > .Q#.HX =V HX L` G .L` qW gX [W gX gX J$.nV gX IS pT qW &+.9+.9+.f` f` qW [U h .! .K$.! .#Y 8Y [U =+ j% ^+ ^+ ]+ ~+ U# ^+ ~+ /+ U# L+.U# L+.e@.:+ i` L .M$.i` ]R ,` ,` ,` V#.jX V#.M .l .c+.:$.:$.6W k` j` 6W j` O+.O+.k` j` O+.j` O+.k` n$.h@.m .d..l` n$.p$.IZ IY IY ^ .h+.!..!..l` l` l` !..{` 3U P+.P+.-Y ,T 3U ,T ,T ,T e..e..e..lX e..hZ ^` 6#.n .hZ n .HO lX tV >Y tV tV tV LM On Hy N$.O$.(y >c 3$.>c P$.Q$.0#.R$.S$.Yb xe >e T$.~d %c a#.a#.T+.Eo sf MI MI sf P@._N 8E (J (J $n $n 4A 7f $n 7f 7f ]..PM ,o ]..VJ lA PM lA PM ,o < .,o lA lA l@.lA zC U$.lA *f lA ,o ,o ,o < .< .$n 4$.`` w` C#.DQ QD pu pu eE /n jA xv DQ GT fE `` dL w` `` 3g -L vX QH Hs ,o uN YI V$.ZI m, b$ -* N- x$ }@.). x@ &. . A$ G@ F@ D$ ` P |; |; S N@ M@ A Q@ A N O@ ", +"R@ R@ = = G= V@ L$ = = * ]& ]& + G= $ # = . R@ # + # # . ]& > . # = o! 5_ Z, 0' + - . 0' ; & * = ^ S$ $ & > Q$ | ^ S$ $ = $ ; & ; - *' { > N$ - U@ N$ & ] N$ P$ ] ] X@ ~ | | X@ O$ > .# & | H= U$ H= > I= | { ## Y@ 1 2 { 2 | .# d ## { ~ == ( } ) 5 $# a ,# 7 8 } 1 a ># Y@ g 7 7 V$ W$ a a ,# n ~# ~# a a ]# k e ,# L= K/ c 2, L= ]# Y$ 1; ,> 4* u Y$ L= Y$ D `$ b' t w 2; :# {& /# /# m m m 6* /# w 1Z @= m G N 1& n! T^ M 1& c- O@ n! n! I I O@ V =X z ..@._+.O@ Z..Oz y .O 3& O iI i5 iU aV A: )Q 3d *I BX W$.)Q )Q ^P RT Z ..V Z .^P #N EN EN 1@.9$.EN 9X Z .AS AS $N CX $N AS .` hT E` y@.aS aS pY ` .|Y '$.cS X$.D..Y$.[#.Z$.CR vZ aX $ .L#.pO nW sY +.`$.nW _W 1+.#..nW *` %.% .#..C@.xZ * .8Z 8Z d .d ..%.%+.E..-@.-@.qU f$.+%.G$.pU 7+.G..NV e .H$.Q#.=V }T IX L` G .> .G .Q#.L` qW Q#.[W f` qW QV PV pT JX 9+., .h .f` f ., .8Y f .@%.~V cZ [U cZ ~V $Y `T ~V #Y qT #Y OR %Y %Y xU ON _K XP 5P XP XP ^S yP OJ OJ }L }L :K :K OJ #P OJ }L CB }L OJ x SG x `w x rC x x q qo $%.D& %%.~+ j% ~+ ^+ ^+ %%.^+ ^+ ^+ ^+ U# ^+ e@.N+.M .b+.i` ,` i` i` i` ,` M .l .:$.i` :$.s#._$.K..O+.j` )T j` k` &%.j` n$.O+.OX j` k` O+.*%.=#.p$.l` !Z =%.[$.l` ^ .IY l` l` !..W#.P+.P+.l` i@.3U !..-%.i@.hZ ;Y ,T i@.hZ hZ e..u#./ .e../ .;%.>%.n .u#.e../ .6#.tV HO LM HO HO LM ot 3c ,%.'%.$B ]B )%.!%.~%.l@.{%.]%.^%.Zs mc #H -d $c %c %c %c #c /%.tN (%.ED 6L P@.P@.P@.U+.=M 8E XY Kt 4A (J iz $n k..PM ]..]..$n ]..,o ,o ,o ,o < .~#.lA < .,o ,o lA < .7f VJ < .~#.~#.< .< .7f Ac 4$.WY fE UY DQ )B pu jA xv )B WM JT _%.:q (j ii (j w$.ew :..]e :%.WS uJ @I ED TD rb <%.(B ~@ m$ -& m@ s@ ). ). %. +. z@ L@ P Z J J E$ K@ 8* 4, I Q@ S K Q@ x ", +"L$ % L$ L$ + ]& L$ L$ ]& + ]& + # V@ $ = + . . ]& V@ . $ . > # - + + # = > S$ ]& U@ $ # ]& . Q$ . o! - S$ & . . k) . Q$ [* & & $= | - ^ & $ > - S$ Q$ ; Q$ . U$ * . Q$ ] | Z! ) ) X@ | ] ~ | | { ~ 1 [ 7- { [ 4 [ Y@ ( ( [ Z! | { { ( $# ( < $# { { 2 d } &# ) b 0 2* ,# ># ~# 0 d j ,# ~# !# e ~# W$ a ,# i !# k ~# p c a L= p Vj h s> L= h ,> n^ Z$ q 4* ^# q t m 2; ^# <, t p Z$ :# w w w w N a7 n^ {& z QT y .SO Q A: iI *I Q oY *I *I BX `I U^ k#.[%.@N )Q )Q #N +Z ^P RT RT ^P -X sZ 1@.bV 0$.AS $N 0$.hT $N hT AS hT hT hT E` cV 3Z E` C.._U ` .7 .}%.#@.4Z Y$.Y$.EX CR G` nW jT 5Z |%.N#.sY sY <+.|+.^W *@.1%.cX #..*` E .2%.E$.E .d .d .& .8Z * .d .* .* .]$.-@.RE )X 3%.F$.5+.0..}T -V 4%.7+.^$.G .> .L` }T [W > .G .> .L` PV gX 5%.JX qW nV AZ J$.SV OQ g .6%.AY 1T 1T 7%.pV 8%.)V qT [U ~V 8Y `T }U cZ ) .sU $Y P` P` 2U +U %Y PN 9%.^S @P 5P yP OJ Q` OJ +M fR :K :K :K :K }L #P #M ;w OJ rC RG GI `w Px qo x Tx kt x TG kt kt Tx yD x kf ch j9 |u Vr n El gd gd j9 j9 gd U3 45 u^ 6< `e V5 34 V5 34 34 v[ I| )2 +{ I| Sc F{ F{ F{ 9) 9) ^' Z{ F{ Z{ 9) F{ q- -] f; 0) ]~ ]~ ;] F{ ]~ O~ e! &~ s~ =+ 7= =+ 7= =+ ;+ ;+ 6= 7= 7= =+ =+ 9= S# ;+ r- 9= !+ 3#.E& y* y* 0%.%%.(+ ~+ L+.s- ^+ L+.L+.b+.N+.d@.a%.,` ,` _$.N+.N+.L .bY { .N+.f@.l .M .b%.f@.c%.k` k` ,..c+.S` j` k` O+.j` O+.O+.*%.O+.L..IZ IY d%.h@.IY l` !Z !Z l` h+.l` l` !..!..e%.i@.5#.P+.-Y 5#.hZ i@.hZ ,T hZ `#.hZ lX u#.]` f..>%./ .u#.e..f%.6#.tV HO g%.MZ {Z HO 5H $g h%.(f fv i%.,c zc ,c _d j%.k%.l%.m%.vd rc gb !d ~d ~T !d z#.kb a#.a#.#$.MI 6L Bz MI sf 6L =M sf U+.8E 8E 8E 8E Kt $n ]..7f 8E R .7f 7f Kt < .< .< .n%.7f 7f 7f ,o o%.iz iz n%.7f < .$n iz Ac hE p%.`` fE %W KT WM WM KT QD q%.%W UY kY r%.Wg (j dk WM Yg rd lk [N ZN yC @I yK 0H Fa s%.7I V% m$ :; w$ w$ {. x@ !. *. X L@ @. G@ H S Q@ S 1# H$ Q@ N S Q@ G /# ", +"]& J$ # ]& ]& + ]& + 5_ 1) + + $ $ # L$ 1) . $ = # + L$ = # V@ V@ $ & . = ^& $= + o! $ # + $ U@ S$ A; + L$ . L$ V@ V@ = Q$ . $ . & ; T@ P$ > & Q$ ^ & H= | ; ' U@ ; [ . | | ( N$ { 4 ; 4 7- ~ | 2 ] /& ## } *# 4 <& ) ) 2 { Y@ | *# P$ | *# *# *# [ 7 [ 6 1 a b e D, 6 6 M' i i Y> ,# V) ,# ,# L= q> L= n 0 0 !# tA o Y$ L= n r ,> K/ t' 2, h p e n n ~# c |& 1; :# ^# 2; t {& 4* ^# D % t G ^# w $S G w K z D B 2; C G w z E; M A Q@ V Z T^ >z H$ c- 3# 8* >z V 5 .t%.A: H u%.t%.oY SO *I iU (U *I yS 3d k#.BX #N RT #N ^P )Q bV ^P ^P RT +Z -X -X $N bV -X $N D` CX 1@.AS AS .` hT E` E` HQ y@..` .` aS $@.pY ` .D..4Z ` .5Z #Z qY z@. +.jT z@.z@.v%.F` vZ $ .w%.x%.uY *` a .oW #..a .a .#..{$.{$.I` * .yZ d .+#.* .%+.+#.%+.p#.+#.F .G$.y%.f$.7+.1#.F@.HX =V > .G .IX L` H$.G+.IX > .IX nV pT qW AZ AZ JX f` 9+.8%.SW JX AY f` aZ f` BZ H..I@.G@.!V 8Y ~V ~V ~{ &+ =+ &+ =+ ;+ =+ =+ D& &- $%.&+ ,+ %%.%%.T# U# U# U# ~+ z%.U# L+.U# L+.L+.b+.N+.N+.U# i` ,` i` N+.N+.,` jX E* N+.N+.c+.c+.N+.A%.c%.k` j` K..&%.O+.O+.O+.k` O+.O+.k` O+.n$.] .B%.IY e+.OX )..C%.Y#.^ .h+.l` !..l` !..l` !..!..hZ l` P+.-%.hZ e..,T e..e..,T ;Y hZ e..n .hZ e..u#.|~ n .u#./ .MZ HO w..D%.HO ot On 4I E%.Yb F%.mk :b Ac tb G%.H%.I%.J%.K%.Tb nc nc rc -d L%.jb %c %c a#.%c tc T+.M%.#c tN P@.U+.MI sf sf _N _N P@._N o+._N _N o+.8E R .7f Ac Ac k..$n 7f iz 7f 7f $n < .>c 7f R .$n iz $n $n $n Ac sf p%.fE _%.UY y` %W y` UY y` UY ._%.MO `` (j ]j _j /y TI nv cr 1N 7L Tn LB N%.YI `b O%.nA [~ 0q m@ s@ B= c# ). +. 5# A@ #. 4# P V T Y H K@ +% I z P@ 1& #= F ", +"]& # # J$ L$ ]& R@ + = = ]& # = ]& + + L$ + ]& # V@ Z, k) + > . # & . . ]& # . X! = > Q$ > & > T@ + = T@ . Q$ U$ & ; & $= H= S$ | 5- S$ !, P$ 2 N$ ; N$ & `@ | & ; ~ H= 05 > X@ & ~ { & ^ N$ N$ ] 2 X@ 2 X@ 2 4 1 6 X@ / J= 2 } } ## 2 X@ ( { 2 V~ 4 d d 6 } *# ,# a 6 a ,# k 0 z: a a a 9 [& ,# n j L= k e a' z: c{ |& L= h h {# 0- q p 5* -) Y$ _# ,> r s> ^# V| Z$ t t Z$ h p 4* {& F= t 6* {& 2; 1; #] z Y ^` tV tV HO ot c o+.Ac Ac 7f hE _N 8E 8E $n $n YN YN _N S..n+.*&.:q _%.C#._Z C#._Z UY UY C#.%W C#.9T w` WY (j hi GT uj ,f IP md WS aH S .=&.Yb ~d -&.;&.>&.o$ u@ -& v@ d# ^. A@ E@ G@ G@ V }; I@ L@ 1# M@ +% S P@ A Q@ +% I F ", +"]& L$ L$ $ ]& R@ + ]& L$ + $ 2) L$ + . p9 # > I/ ]& + + . > }, # & > $ . + L$ |* > Z, V@ - P$ - . > . # # o! $ ~ > ; $ > & > 2 > { ; ; & =' & S$ > & ] . ' ; | ; U@ ) & 8- ^ & - ) P$ N$ { H= P$ 7- 2 7- d [ 2 4 J= 6 d } X@ 2 /& { 2 <& : 7 5 6 b } 4 0 q> } D, ## d 6! 6! [& W$ a ,# i ~# n o 7 a' c k L= g ~# L= o c n 2, h c `$ n {# K= ;= n `$ m p % Y$ $] V| ^# n :# w F= 1; m K D b' #] 4* z #] /# G z M= M I I Z z z 2Z ,&.F= M q! $T V '&.z . V V .@.c- Oz d{ z .*I A: *I A: A: B..k#.#N XX )&.oY )Q ^P #N yS )Q )Q ^P RT RT _M )Q `I !&.9$.0$.AS hT ~&.{&.0X AS 4...` E` hT 4..BS 4..AS E` ]&.|Y ]&.D..[#.^&.dS ^&.F` 5Z ;X aX z@.0 .0 .6Z /&.N#.w%._W _W a .cX #..%Z #.._W %Z 6@.{$.d .d .xZ {$.d .E..%+.RE (&.p#.@#.3%.]$.;V y%.r#.sP c` _&.G..L` IX IX L` HX > .IX > .IX qW f` gX gX gX f` &+.AZ JX gX 9+.aZ aZ aZ )V I@.) .[U Y HO 5H [&.}&.]B ZV |&.uJ !%.fw 1&.W@.s .)f 2&.;s /w nc nb nc rc -d #H ze ~d %c %c a#.a#.a#.M%.ED #$.ED #c 3&.6L _N sf sf sf S..YN tN sf =M YN }i sf Ac Ac Ac 8E Ac o+.Ac Ac _N YN _N =M sf S..sf sf }i vV 4&.^j `` +R UY 5&._%.6&._Z y` JT %W C#.r%.`` (j ii KT kM fE dU 3R ZM Is ,o Kt iE ~d zf 7&.O% 1@ j- :. O- 5& '. b# )= R V T O= $> Y H S H$ b- I I Q@ x I A ", +"L$ J$ J$ G= J$ = + k) ]& . ]& = ]& V@ # 0' p9 # . $ ]& ' $ ' - S$ . $ + L$ ;b ]& 1* $ . Q$ . S$ - > ] > > ; R$ S$ U@ > H= ; H= # Gc > | N$ ^ # $ # { Q$ & { P$ ~ ) Q$ S$ Z! | Z, X@ ~ U@ H= { ) N$ 2 %= ] Z! | %= 7- 1 [ 4 ) { 2 *# 2 X@ } { 2 d J= ) 6 { / a $# ( -> 5 1 ( 6 *# a' 0 7 Y> K/ ,# 0 a' c ,# 0 ~# b Y> n s> h n 2, 0 n^ c ~# h W$ p ~# 4* -) ,> /# ,> Y$ @= G ,! w p W$ ^# E t m w B Z$ w /U a7 A$.2; G A /# JW z F= 1& a7 a7 T^ Z a7 A T^ T^ V 1& V V O@ z ..@.|# A: 5 .iI A: 3; J 8&.aV SO BX .Z (U qF #N ^P )Q ^P +Z ^P 3d +Z +Z )Q EN 9X {&.<#.0$.6B $N 9&.0&.1@.~&.1@.CX CX .` a&.$N 4..hT y@.y@.pY |Y b&....4Z 5Z D..5Z 5Z c&.0 .$ .z@.}+.M#.=@.M#.w%._W ^W #..a .++._W 6@.*` #..a .{$.8Z d .%+.* .d&.* .* .%+.e&.- .-@.g$.+#.c` pU f&.r#.0..I$.IX HS > .H$.Q#.> .L` G .}T G .G .PV JX f` 9+.5%.9+.AZ JX AZ I+.lQ AZ 9+.'@.)V !V !V 7%.g&.~V [U qT cZ UP ~V qT cZ ~V H .dR ,Z ,Z tW yO dR hX @P TQ yU OJ }L fR :K :K 'G :K 'G OJ }L fR :K q #M 3I `w Px qo `w Bl q CB x q x qo x GI .g h&.Cl kt Vr j9 n j9 >0 j9 `e 6< j9 kf gd 45 V5 v[ v[ 34 34 v[ v[ 34 v[ !8 D9 b^ 9) :_ )2 F{ F{ F{ ^' +{ 9) F{ 9) ]~ ^' ^' 9) f; ]~ s~ ]~ 0) f; q- q- f; Y{ .; f% +; 7= ;+ =+ ;+ 7= =+ =+ =+ ;+ =+ &+ !+ D& ;+ r- Y' i&.U# T# U# ^+ ~+ U# ^+ y* j&.^+ ^+ ^+ L .Y%.N+.a%.N+.k&.l .N+.N+.,` _$.N+.,` K .Y%.l .M .l&.k` j` k` O+.O+.k` k` m&.k` OX OX n$.&%.O+.p$.p$.n&.IY OX [$.IY l` l` !..l` !..!..!..P+.!..`%.;Y :&.o&.-%.hZ e..u#.;Y e..hZ ;Y e..hZ e..e..u#.e..6#.u#.u#.>%.>Y D%.D%.>Y 5H UN p&.q&.VW yQ r&.4G !%.@$.|&.s&.t&.u&.v&.w&.Sb ve mc nb nc rc -d gb >e #H %c %c %c %c ED M%.#c ED %c T+.sf P@.MI MI S..MI tN T+.S..=M S..x&.3&.8E _N .T _N S.._N _N Ac YN sf sf S..~%.S..Bz y&.ti vV z&.ii :q kY }j A&.B&.C&.1 .kY JT %W C#.r%.D&.E&._j cU eE w` ^F $O ZV KB n%.eP 2N Oj V$.F&.(@ 9@ {* w$ v@ ). -. X +. E@ 7# J@ E@ Y P H Z +% Q@ P@ K@ G z M A ", +"% ]& R@ G= .( = + <{ J$ + ]& ]& . & V@ M$ + + . + L$ # . . > + + + . - > #^ . ^& + 0' - > %= |* . Q$ $ U@ . - $ ~ ] & . ; X@ . | =' Q$ T- U$ N$ V@ ] S$ Q$ R$ Q$ N$ ] [ { Z! 2 Q$ 5- } *# ; Z! ) U@ ~ X@ ;# ~ ~ ~ 7- 1 { W@ ~ ## ; V~ ( /& } [ ## 4 6 ) X@ D, _ V) 7 9 e 6 6 5 d a ( ,# ,# ( [& a ,# ~# q> e a' {# h 0 L= r ,> [& 2, n h ;= r n r ,> 0 ,> `$ Y$ ,> 1; V| p F ^# p u n^ ^# B m t B {& G E C` N 2; z I G /# 8* E z 1& 8* I T^ JW n! 8* M c- KW Z c- .@.O@ o^ t%.0S Q 5 .3# L SO B$.B$.B$.:#.k#.#N r! WX ^P ^P `I RT Z .Z ..V G&.RT ^P +Z H&.9X H&.+Z 9X w@.7` hT AS CX $N E` CX CX CX AS CX CX .` z+.|Y pY 4Z ..l#.B .B .l#.B .<+.F` jT <+. +.^&.I&.J&.K&.b$.a .a .uY L&.#..%Z xZ a .#..E$.gV & .* ..%.%+.o#.E..+#.]$.]$.+#.D@.c` - .NV 4%.M&.L` K` 9..}T IX M&.L` HX G .G .HS 7+.L` qW nV qW Q#.f` gX gX AZ N&.O&.nV lQ AZ gX HG !R 1T H+.)V P&.cZ qT cZ qT [U sU $Y cZ sT NR g` 2U 2W ON zO 5P 5P K+.XP TQ ^S fR 'G OJ OJ fR OJ OJ fR OJ :K rC #M :K qo #M RG qo qo q q x `w )J q `w x Tx ch q q Vr >0 T3 .g T3 gd gd `e gd T3 j9 T3 V5 6< 34 `e v[ v[ 34 v[ V5 v[ R( 06 F{ +[ 06 F{ 9) 9) ^' F{ 9) F{ ^' ;] Z{ ^' F{ f; q- f; ]~ f; (! q- ^' 9) f% u& +- .; 7= =+ ;+ *+ 7= ;+ ;+ ;+ =+ =+ ;+ 9= =+ ;+ r- &+ A& ^+ ^+ J@.^+ (+ ^+ U# ~+ U# U# L+.L+.e@.M+.,` a%.M+.N+._$.,` N+.,` _$.k&.i` Y%.K..:$.f@.f@.O+.O+.&%.O+.n$.O+.k` 6W k` O+.m&.O+.Q&.O+.[$.] .R&.Y#.[$.-#.!..!..l` l` !..l` P+.!..!..!..i@.e..i@.Z#.S&.i@.hZ hZ hZ hZ hZ hZ hZ u#.e..>%.u#.>%.u#./ .e..e..6#.HO HO /R 5H uK T&.U&.x$.V&.e Hd Aa =*..* 2@ l@ -& ~. ). x@ R A@ C$ &. V C$ }; 2# H M N@ +% H$ A P@ I M /# ", +"R@ + ]& 5_ + + $ ]& ]& ]& + + . + $ V@ # + + # # R@ # = R- % > > $ V@ > $ 5_ - > .( Z, . & # V@ > > Q$ * ] > $ |* = > > $ . . > $ . & ; Z, $ ^& | ; > & ; ; ; . | ~ . { [ Z! . ] *' Z! | N$ ; & N$ | N$ [ ~ [ 4 : { ] ( [ [ 2 /& d D, [{ ,# < } a e 6 < j } $# b $# ,# 0 :& ~# vk 7 ,# W$ ~# h ~# 0- ~# ,# o o 0 p q h K/ L= r % ]# p r c{ Y$ h 2, 1; n Y$ Z$ Y$ `$ /# Y$ D /# /# {& :# z F= 1& {& G z {& G z 1& 1& 4* w z B A 1& n! c- I =X K c- O@ 3# c- PT A..5 .y .-*.c- L ` ;*.-*.>*.iU I#.qF #N ;$.BX pF 'Q ^P ,*.,*.3d ^P >$.#N bV Z .sZ mL 0$.1@.0&.'*.D` +@.'*.CX CX AS hT )*.AS aS .` E` a$.pY #@.]&.7 .@Z tM B .l#.!$.F` !*.lU ~*.L#.aX A@.x%.{*.0 .%Z _W ++.U%.=@.a ..%.U%.#..6@.d&.yZ ~$.xZ ]$.F$.]*.+#.-@.E..E..@#.4Y p#.]$.^*.;@.G .y%.0..> .IX L` }T =V IX IX IX G .Q#.5%.PV pT [W 9+.JX f` &+./*.AZ AZ pV qW AZ AZ SW pV K$.7Y , .~V 8Y ~V 8Y [U 2U 2U 2U }Q {S @U sT NR jS +P (*.5P _K _K TQ yP fR iN OJ fR #P :K 'G OJ QG OJ .F q _*.QG q F 6O q qo #M q Tx x x qo q q kt ch HI YK kf j9 .q >0 gd j9 Kn uo T3 j9 `e U3 v[ 34 :*.U3 v[ v[ 6< 6< 34 +[ 34 b^ +{ +{ b^ 9) d; 9) d; 9) d; 9) ;] 9) 9) F{ 9) q- z& d% f; M, ;] q- t* u& /' +- M, $- ;+ =+ ;+ ;+ &+ &+ =+ 7= -+ -+ y& !+ !+ <*.'+ &+ L+.L+.J@.U# ^+ ~+ L+.L+.L+.L+.L+.L+.j&.[*._$.b+.}*.N+.|*.N+._$._$._$.1*.N+.s#.2*.M .c+.5T K..6W ,..k` n$.c%.O+.O+.O+.O+.n$.O+.n$.|$.|$.] .p$.)..^ .p$.h+.!..IY f+.!..l` P+.!..P+.!..-Y 5#.,T P+.3*.e..;Y ;Y e..u#.u#.e..n .;Y >%.>%.hZ e..e..6#.f..4*.<&.HO tV o` 5H UN 5*.;j o..6*.7*.Vk 8*.,g j%.s&.9*. *.0*.a*.b*.ye vd +c nb nc nc rc =d -d sc xK -d !d %c jZ tc a#.#c a#.a#.a#.a#.c*.c*.c*.n+.n+.ED S..d*.5j T+.T+.Ac sf sf Bz tN S..MI S..S..ti kH vV yK a#.e*.e*.f*.g*.hi Wg WY w` +R h*.i*.j*.8w JT JT 8w HP kh }j dL k*.tv cE l*.Ks /T p..dv 7f y$.1b La ML %@ X% i@ {* (. ). z@ +. (* G@ T P Y M@ O Y M P@ M S S m) @% I w ", +"# =[ I/ =[ # L$ + = + . ]& + [* + ]& ]& S$ . $ 0' !, ]& k) # # = + # . $ k) . V@ * # S$ $ Z, |* & Q$ > U@ S$ Q$ Q$ ] ] Q$ - = . - . ; $ ~ & - S$ $ Q$ > V@ > o! X@ 2 { { > H= | U$ ; ; ^ ] ] ~ ~ N$ X@ Q$ 2 Z! W@ | X@ } { 2 } / ~ ~ } ## | 8- [ 6 ( ( Y> ## ~# q> 6 ## < d 6 ( d b a K/ e e 0 ,# a m*.9 c ~# a' c z: e e ,# r v r n n h 0- `$ % L= `$ ^# m L= #] n^ q F 4* `$ w Y$ t }& 0- /# /# /# :# F= w {& $S ^# E G /# 1& N a7 8* ~& z..n*.T^ %.hZ >%.hZ e..e..i+.e..u#.6#.i+.;%.v#.>Y HO tV vK r0 D*.Df Q..bc E*.1&.S+.y#.R$.Y&.F*.G*.H*.I*.J*.Vb [f >d te +c +c mc nc rc )d rc -d >e gb gb %c %c tc %c %c #c [R 5j $c [R a#.[R [R kH ti [R 8L n+.YN S..tN Bz ED ti kH ti n+.[R [R [R [R a#.[R [R :f K*.]j :q fE w` L*.M*.N*.Qo O*.KT ni (Z +R }j dL +R P*.Q*.wv gE Kf 'r *n Is zC MI 1b Wa R*.6E c$ S*.(. d# &. -. A@ }; H@ Z D$ L@ P }; D$ H$ P@ P@ K@ G I @% Q@ G ", +"# K$ + + % # = 5_ R@ + L$ + ]& ]& ]& $ + 0' 0' + + 5_ ]& J$ L$ ]& # + T@ . $ |* [* L$ U@ $ T*.= = + $= & > 0' = & $ $ ; . Q$ U$ ] & & *# & P$ U@ ] Z! | ] > . |* & H= ; & ) %= ^& [ & & ^ & N$ ) | N$ ~ 1 2 7- ( [ /& ) | 2 ] ) } Y@ /& X@ ( ~ 5 6 3* q> ( a 6 $# -> { Y@ a j 9 ( $# Y> 0 8 ~# a M' K/ b V~ a 0 c{ 0- s> h n 0- W$ c ~# ,> s> L= 2, h s> ;= 1; c{ #| _# Y$ `$ :# @= 1; m :# 4* :# b' U*.F= {& B z w [# G a7 /# n! 1& z A I O@ O@ I T^ M T^ 1& #= T^ V AR V c- 3# V V (#.y .L |# L oY qF *I A: (U oY #N BX oY #N 'Q +Z RT )Q DN )Q G&.RT )Q RT +Z EN 9X 9$.bV 3@.hT D` 6B E` CX AS AS 4..hT CX :M 9&.a&.y@.pY pY |Y `X !*....$ .0 .5Z B .z@.N#.$ .s*.<+.V*.C ..#.W*./&.oW #..U%._W ++.*` ++.*` ++.d .]*.X*.C@.E..-@.x*.%+.%+.F$.+#.+#.Y*.D@.F$.Z*.e .;@.G$.[W 7+.HX H$.7+.L` Q#.L` nV > .> .X%.gX 8@.G+.AZ f` f` AZ f` &+.AZ AZ 9+.HG )V `*.S#.qT =.~V 8Y ! .) .~V cZ ~V O` sU U NR wU 2U NR VK +U TQ Q` 5O TQ 5P ^S yU jN OJ OJ }L }L }L }L :K OJ ;w FI ;w qo q F CB q x qo x `w q x q x qo .g I .DB Vr .g .q .g ch AP d3 45 T3 S3 T3 T3 u^ 6< 6< v[ =^ 34 v[ V5 !8 u^ 54 /1 9) A/ 54 F{ ^' 9) F{ d; F{ ^' d; 9) F{ 9) F{ 9) f; M, q- q- ]~ t* t* q- q- 0) @- R# ;+ &+ g% v& =+ &+ &+ &+ -+ &+ =+ =+ Y' Y' h; '+ h% E& a+.y* L+.L+.j&.L+.j&.j&.U# L+.L+.L+.M$._$.L .U# ,` i` N+.i` N+.k&.i` l .,` f@.c+.c+.k&.4#.O+.k` O+.n$.k` O+.OX OX n$.n$.k` OX n$.j@..=.L..P+.[$.Q&.] .!..!..!..7W !..P+.Z#.-%.P+.Z#.Z#.;Y S&.+=.Z#.hZ hZ hZ e..e..hZ hZ u#.e..u#.e..u#.e..@=.u#.#=.g%.tV tV KY zT $=.yh %=.&=.*=.==.,g -=.s&.;=.>=.G*.G*.,=.'=.)=.vd vd Ad vd +c {d mc nc nc rc rc gb rc #H ~d %c ~d $c %c [R %c 8L T$.T$.%c [R [R [R !=.5j [R [R n+.T+.[R [R n+.$c [R [R [R [R $c $c $c yh yh ~=.{=.]=..X ]j WY fE `` !n ^=.w` x` y` dL _Z kh w` `` MO dw [x eE QD xf MT Jt aI Is 8E YI 3b /=.f) }- e@ u@ D= ). ). !. 5# G@ Z 1# T H L@ Q@ 1# K@ Q@ M@ A M O@ S I ", +"0' # # J$ ], K$ ]& L$ + % ]& <{ J$ J$ + # [* = =$.# E! k) + . # . # V@ . + ]& V@ ; = > . $ = . $ ]& U$ ; ]& & & > - . U@ Q$ $ ^& $ o! & ; ; > ] & & ' - ; ; ; . . & ) & N$ 2 | | ) | o! [ { | ) { | X@ [ 2 ( Z! 4 `@.{ /& 6 d 4 2 } X@ { [ $# &# [ D, D, 7 $# 1 7 d 5 a } ( 6 Y> &# 6 N' g 0 Y> ~# e 0- ~# c e i ~# c !# c tA ~# Y$ 1; h _# ,> m ^# % % t Y$ t t t 2; 1; `$ /# /# 2; ^# F= :# D #] F= t {& E z G w 1& 8* O@ E; T^ I KW 1& .@.O@ 8* 1& 1& T^ V c- |# c- .@.5 .y .>z :#.L J SO iU oY aV SO 3d j#.k#.(=.#N )Q RT +Z _M #N _=.RT Z .RT Z .+Z AS +@.sZ CX sZ hT $N .` hT CX .` E` .` 4..AS :=.9&.4..3..tZ pY Y$.Y$.<=....B .B .<+.z@.$ .z@.[=..#.c$.sY V*.}=.|=.a .a .1+.a .cX ++.* .e$.#..++.& .E..d .* .G$.]$.d .* .F$.-@.+#.-@.]$.G$.1=.2=.G..(&.K` e .M&.H$.e .IX L` PV > .> .> .5%.I+.f` JX AZ AZ I+.9+.9+.JX f` 9+.AY &+.aZ )V UP , .K$.[U ~V ) .BY cZ ~V 8Y sU [U BY 1U 3=.P` MR 9%.DZ qK {V TQ jS ;T @P yP 'G :K 'G :K QG fR OJ OJ :K }L }L F #M az F q x ;w qo Bl `w q Cl q x x Td CB so Vr .g .g .g ch T3 4=.x/ __ d3 gd gd u^ v[ v[ v[ v[ V5 V5 54 !8 6< Sc d; /1 w^ +[ b^ ^' 9) F{ ^' 9) F{ d; ^' ^' ^' 9) 9) f; f; z& f; q- t* q- (! 0) d% u& v* ;+ =+ $- y& =+ ;+ -+ ;+ z& ;+ &+ g% =+ Q# =+ 5=.-+ 6=.U# E& T# L+.L+.U# L+.j&.j&.^+ L+.j&._$.k&.7=.L+.a%.1*._$.,` ,` _$.,` 8=.m$.V#.m$.4#.9=.m$.,..O+.k` )T O+.0=.n$.OX n$.O+.n$.n$.OX o$.o$.a=.P+.Y#.OX R&.Z%.Z#.l` P+.P+.P+.-%.Z#.Z#.S&.Z#.i@.5#.-%.:&.5#.,T e..,T u#.u#.>%.hZ >%.n .MZ |~ u#.@=./ .IW NL >Y MZ LM NZ b=.c=.d=.s .e=.Ag f=.g=.h=.i=.j=.j=.G*.>=.k=.Sa `b [f vd vd vd Ad l=.l=.wd nc rc =d >e gb >e ~d ~d gb %c yh %c vV jZ [R [R [R [R [R [R [R [R [R e*.e*.[R [R [R [R [R [R yh $c $c yh yh yh zh -d $e m=.dk dk fE `` !n MO kY r%.C#.C#.kh +R fE :q `` `` 2G /n 2G jA n=.:..YZ +y MC LB Yb Da o=.]- a{ >* ;& v@ ~. ;. 5# E@ X L@ H P S P@ J E$ M 7* P@ M I I G G ", +"J$ + # J$ )~ =[ 5_ 0' L$ R@ ]& L$ L$ 0' # = ]& $= # ]& = $ . ]& V@ ]& ' . . . + $ Q$ - + #^ P$ Q$ M$ $= - [* - ^ = & > . . + ; S$ S$ ] ; & 5! ] ; ; ! ; = & # ^& $ ^ > & ; ) & Z! 4 R$ | 2 N$ & N$ > P$ X@ %# H= { | ~ *# ; { ~ | | 1 W@ *# ~ Z@ ~ } 2 D, 4 { [ / ( 6 a { -# 9 9 ## 6 e a ~# 6 0 ,# 7 c c ,# e i o !# a ~# L= Y$ e 0 e z: p s> `$ u c{ _# p |& q L= % Z$ ;) `$ /# p #] q /# @= D {& B ^# {& 2; {& {& T^ F= @ .#= I A z G T^ 1& T^ '&. Z JW 8* AR c- V V 0S =X p=.d{ c- A: 8* 3& Oz 0S AX (U A: A: qF ^P B$.I#.I#.)Q RT )Q p*.YX q=.RT ^P Z .sZ H&.sZ 1@.bV 9X $N hT AS hT AS CX .` E` E` q*.AS |Y 9&.E` z+.|Y z+.pY ...r=....CR ` .<+.<+.8 .$ .$ .c$.v*.vZ %Z s=.t=.u*.1+.u=.*` *` *` E$.d&.6@.*` 6@.d .v=.E..%+.w=.C@.p#.-@.]$.+#.]$.%+.p#.;@.W%.r#.HS y%.7+.> .HX G..M&.}T L` Q#.> .X%.> .JX J$.JX X%.&+.x=.f` 9+.JX JX f` !V f` aZ AZ 7Y #Y y=.[U !V ~V cZ cZ qT cZ sT sT [U #Y {S 2U sW VK ,Z TV OR iJ 5O TQ _K #U :K iN 'G fR QG }L OJ 'G 'G |Q :K #M FI pC `w SG qo q F `w Bl x q q `w Tx `f x `f qo .g Vr j9 j9 .g j9 d3 T3 j9 T3 2H j9 45 v[ 6< v[ 34 34 6< 6< =^ 34 H| 06 <] z=.a^ 9) Z{ 9) ^' d; 9) ^' 1> 9) ^' F{ F{ q- q- s& F{ f; +- f; q- f; f; #+ .; @- R# &+ ;+ ;+ ;+ (' =+ &+ &+ ;+ &+ P# ,+ =+ <*.>+ J@.d@.U# z%.i&.~+ i&.L+.j&.j&.j&.L+.L+.A*.M$.N+.i` A=._$.N+.N+._$.k&.M$._$.k&.B=.b%.m$.8=.s#.C=.&%.O+.n$.O+.0=.Q&.n$.D=.n$.[&.n$.OX E=.>#.p$.R&.^ .^ .g+.R&.l` l` P+.Z#.P+.P+.P+.Z#.F=.Z#.;Y ;Y P+.:&.Z#.hZ ;Y hZ hZ e..hZ e..u#.>%.6#.6#.6#./ .@=./ .e..@=.v#.zT G=.PX _X s&.H=.I=.J=.K=.L=.;=.M=.j=.N=.O=.P=.Q=.|b R=.[f gc ,d S=.Ad Ad +c ;d nb T=.nc &&.rc rc gb )d jZ ~=.-d yh yh [R yh %c jZ yh %c [R [R e*.[R yh [R [R [R [R [R $c e*.yh yh jZ +l >e -d -d =d $e U=._j dk :q `` WY fE _Z y` y` .fE V=.&*.WY &W :q 1G W=.ou /n ew ov X=.=Q jz Is /w Y=.Z=.`=.W9 d@ s@ O- &. . A@ =. G@ X C$ Y J S H$ S P@ #= z I z z w G ", +"L$ =[ + + L$ K$ =[ 0' L$ L$ ]& ]& + # > # ]& V@ + ;b = $ $ = + + . k) $= # ]& $ . $= # . $ > T@ $ > ]& . > # . Q$ ; U@ S$ & & ; ; -.; Q$ ] ; S$ . ] 2 N$ ~ b{ $ | N$ Q$ N$ . | ~ [ R$ { X@ > W@ ; ~ N$ { { [ 2 7- { | J) [ 2 1 2 $# 2 [ ( *# ( 6 4 D, / &# => { D, $# $# { 6- b } } d 6 Y> k d Y@ b !# n ;= g i 0 6! e ># o ~# z: 9 0 ~# s> Y$ p L= h Y$ 0- r Y$ `$ q Y$ D :# C 2, Y$ t ;= D /# b' u #] w z F= b' G z I a7 z 1& #= .-.F= JW #= T^ ~& $T M AR AR 8* V c- .@.1& v@.HV 0S A: 0S ` v@.5 .AX A: *I *I BX +-.I#.+-.yS .Z ^P 3d )Q yS )Q +Z )Q R%.G&.@-._M !&.+@.RT -X 1@.CX .` # .hT .` 4..E` E` hT aS a&..` a&.E` ` .pY 4Z Y$. ..5Z D..M#.0 .$ .t*.#-.0 .#-.OW #...#.$-.t=.#..%Z %-.#..*` *` xZ a .E$.&-.d .E..%+.d .o#.E..p#.*-.]$.%+.+#.J` 1=.=-.F$.;@.oT 5+.}T IX HX IX G .HX G .--.Q#.G .[W qW AZ f` qW f` f` &+.f` 9+.9+.9+.f .8+.AZ AY lQ ~V ) .I@.a..#Y 8Y 8Y ~S ~S , .sT U .U +P +P sT 2U OR 2U AO yU iN @P TQ @P 'G 'G OJ fR QG OJ RG fR :K OJ :K RG |Q %r q 3I 3v Bl )J q x q qo q q q q kt kt `f ch Vr El j9 ch d3 j9 gd 4=.T3 gd j9 U3 v[ v[ 34 v[ 34 6< v[ 6< 6< H| D9 X/ A/ w[ ^' <] ^' 9) d; ^' F{ d; ^1 d; 9) ^' 9) ^' q- q- ]~ d; f; f; q- q- (! /' e; $- ;+ ;+ ;+ &+ &+ -+ -+ =+ &+ -+ -+ Y' >+ %- ;-.6=.A& L+.j&.>-.,-.U# ^+ L+.U# ^+ L+.j&.j&.b+.k&.,` a%.|*._$.N+.N+.'-.K@.N+._$._$.5T m$.4#.)-.V#.n$.n$.n$.0=.OX n$.O+.n$.O+.Q&.n$.n$.n$.n$.R&.p$.C%.!-.Y#.R&.!Z P+.~-.l` Z#.-%.P+.Z#.Z#.-%.e..e..:&.{-.Z#.hZ e..e..u#.e..e..u#.@=.e..6#.6#./ .6#.6#.u#.>%.@=.MZ &U ]-.^-./-.(-._-.:-.<-.[-.,y }-.|-.1-.2-.3-.4-.5-.6-.Be Sb ye S=.S=.Ad =e +c +c nb lc nc rc rc nc =d -d ub jZ -d +l $c yh yh T$.#H :f [R yh e*.e*.[R [R $c $c e*.%c $c $c #H yh #H #H =d =d rc nc wd Bf 7-.Wg :q `` .+R +R C#.C#.+R =L dL w` 8-.C&.fE dL $W 9-.ou zJ DQ _j Lf Gd dW (w >e 0-.|b a-.NL e@ s@ x@ o) x@ &. . B$ T L@ M@ S J N@ 1# A I A B P@ A G w ", +"R@ L$ !, K$ 5_ + K$ ]& <{ R@ R@ ]& 0' ]& V@ 1) + ]& # ]& $ + + ]& Q$ + & $ + V@ > $ . # Q$ Q$ - + $ ^& . . | S$ . = & T- - . # =' ; | ^ o! & $ | ] . ] S$ ' ; Q$ (& ~ . $ Q$ | { Z! { ~ S$ - { ; | R$ N$ S$ ~ { X@ &= H= 2 U@ ) *# 4 @# Y@ 7- *# | X@ [ ( 2 6- [ } { ,# 6 6- b ,# 6 a b Y@ 6 d d 0 b 3* !# 6 s> 3* a k L= 0 i L= ]# [& ~# ~# ~# K/ c h k q K= s> m o :# m p m m Z$ 4* % ^# % G F= /# 1; w G F z m /U a7 n! z C a7 K T^ z z 1& c- KW AR .@.8* O@ T^ V M .@.n! d{ c- Z..:#.b-.:#.o*.*I *I qF A: p*.I#.I#.BX c-.(=.YX ^P #N ^P RT )Q ^P Z .@-.G&.pF @-.d-.e-.-X sZ AS hT CX {&.E` 4..4..hT E` 4..E` f-..` E` 9&.4Z $@.pY Y$.!*.qY ...^&.B .g-.#-.$ .S%.$ .0 .aX [=.h-.i-.1+.=@.1%.*@.%Z xZ ^} E .j-.{$.o#.+#.%+.p#.k-.o#.* .-@.p#.X*.E..-@.eX F$.l-.6+.L` _&.h$.L` }T HX HX H$.Q#.Q#.X%.X%.}T 5%.[W [W > .5%.gX 9+.9+.AZ I+.I+.AZ +Y 9+.AZ 6%.H@.! .qT #Y cZ [U `T sU ~S qT {S [U cZ 1O $Y MR 2U jS hN yO XP sK jS XP rK 'G OJ yP :K rC }L }L fR :K OJ -w .F jJ Px q GI RG -w q ;w q Bl x `w q Cl qo .g Vr >0 d3 ch kf j9 Vr j9 j9 U3 n u^ j9 T3 u^ u^ v[ v[ 45 u^ 6< 6< 6< u^ +[ :_ u^ b^ 0] !{ 1> ^' d; ^' ^' ^' 9) ^' ^' ^' ^' ^' 9) t* q- F{ f; +- q- t* +- t* #+ .; g% (' =+ 7= =+ (' &+ ;+ ;+ &+ P# -+ B& A& g; m-.n-.A& d@.L+.y* L+.L+.j&.L+.o-.3#.L+.U# j&.|*.N+.k&.j&.a%.N+.,` k&.)-.k&.k&.k&.)-.N@.m$.4#.p-.9=.&%.&%.O+.O+.n$.0=.OX n$.n$.n$.n$.OX OX q-.OX ] .e%.P+.r-.s-.f+.l` P+.Z#.P+.P+.Z#.Z#.P+.P+.e..e..:&.-%.+=.hZ >%.e..e..e..e..>%.u#.u#./ .>%.>%./ .@=./ .e../ .f..^` t-.j*.u-.4-.v-.w-.x-.;=.|-.9*.y-. *.z-.A-.k%.B-.C-.Va D-.E-.Yb ob S=.ob pc pc +c yd nc nc nc nc nc =d rc =d =d -d jZ #H yh -d jZ -d e*.#H jZ yh $c $c #H #H $c [R ~=.-d jZ yh ub rc -d nc =d *e ve $e F-.:q fE kh kY _Z _Z _%._Z .w` Wg *l +R !n w` 8w aw tv |j Nh QD ne Ih cr 1N ZM 8L G-.Ma H-.6$ m$ m@ d# x@ &. .= E@ z$ T |; ` K@ H C, H J P@ Q@ x N z M w ", +"J$ #S + R@ L$ + jP 0' J$ L$ 1) = # L$ . + > # # L$ # ]& $ ]& + [* L$ + . ; . ' S$ $ . $= + > $ . k) > U$ & . . ; ; ; . ; o! & 2 ) N$ - S$ |* & ) ] Q$ ; & ' { ; & H= R$ ; ~ 4 | [ & [ & N$ | ~ N$ | 7- %= X@ | [ | $# 2 ( ## $# 6 $# 2] { R$ $# V~ /& { / B; 1 ~ 5 7 { ># 6 &# { 7 7 0 ~# 3* ,# 6! 3* ~# d ~# c{ L= e n h n Q{ L= g c h C; {# n h t' n `$ p |& q ^# `$ /# /# D s> 4* ,> /# G {& 4* w B G z G .[W JX X%.gX I+.f` X%.f` f` AZ BZ JX 9+.6%.7Y 7Y lQ 7%.[U ~V ~S [U ~V S#.2E sT }U 2O {S NR {S P` 3O NN 5P iJ :K 5P TQ 'G @P yU :K }L 'G :K OJ :K QG OJ #M F jJ 'G `w !G RG Vi RG RG Bl q Cl q qo q so 35 Cl so fd kf T3 to to d3 d3 Kn U3 j9 i9 kf `e 6< u^ gd U3 v[ 45 6< /! 6< R( /! D7 a^ <_ 2{ a^ ^' 9) ^' 9) F{ ^' ^' 9) 9) 9) f; t* f; +- f; f; t* t* s& q- q- 0) s& $- g% d% f% -+ &+ ;+ &+ )+ &+ -+ -+ Y' -+ -+ T-.U-.V-.U# V-.$; j&.j&.j&.j&.j&.y* A*.^+ j&.M$.N+.M$.A*.M$.k&.k&.)-.k&.1*.)-.m$.:$._$.8=.8=._$.W-.8=.O+.n$.n$.OX D=.OX OX OX n$.O+.n$.Q&.|$.Q&.n&.h+.!..F=.e%.P+.f+.!..P+.Z#.Z#.S&.!..P+.-%.-%.5#.-%.X-.-%.:&.e..>%.u#.e..hZ u#.>%.6#./ .6#.@=.e..6#.>%./ .MZ r0 Y-.Z-.`-. ;..;.+;.@;.#;.xJ $;.%;.&;.*;.=;.P=.-;.;;.>;.,;.Vb Ff [f ,d ,d ve =e ve nb nc mc mc wd =d =d -d =d +l -d -d yh #H -d +l #H +l +l yh $c #H T$.#H #H #H yh jZ $c #H ub =d rc =d =d nc nc Og wc li :q `` dL .w` w` w` dL kh `` ';.hi WY fE WY x` ^y |j ]n 3q XM );.4f )g De * . = > + Q$ = - k) $ & U@ Q$ $ # $ ; . - & N$ U@ ; H= Q$ > ] > > > $ ] ! & Q$ ] ; ] ; ~ ) Z! R$ ; S$ ; ^ U@ ; | & [ X@ ~ U@ ~ { ) 4 [ /& 6 [ W@ { | { Y@ { ~ { ( [ 3* d &# N' Y> } ,# k *# ~;.5 i } {;.q> 3* 0 a ~# a D, c n K/ o h {# >> {# 9 c s> n Q{ _# s> c{ Y$ L= 1; q p u s> t y..,> $] F % w y ,> % F= w G a7 C` F= B I w N G 4* x I F= z I V 5* JW /U HV ;O n! c- P@ $T 0S 3# M x .5 .oY aV *I Q :#.-*.SO iU iU ];.3d 3d BX .V +Z )Q )Q Z ._M ^P RT RT G&.RT bV _M ^;.RT AS $N $N 0X /;.CX a&.hT AS a&.AS .` 4..a&.4..K#.7 .pY #@.iT #@.<+.B .<+.F` c&.$ .6Z N#..#.0 .(;._;..#.H` D$.#..#..*` L&.++.& .*` {$..%.w=.%+.* .xZ %+.E..:;.E..+#.d .E..6+.+#.p#.+#.6+.1#.]$.9..}T HX IX }T =V > .}T L` L` 5%.G+.<;.gX JX AZ f` gX qW JX [;.AZ I+.9+.I+.gX @Y 8Y #Y };.[U [U [U rU qT 0 i9 S3 gd U3 T3 T3 T3 v[ v[ 6< =^ u^ 6< v[ u^ u^ 6< u^ o] 06 9) :_ X/ ^' 9) ^' d; ^' F{ ^' ^' ^' 9) 9) 9) q- q- c% f; t* t* t* f; t* t* .; #+ O# %- u& e; ;+ =+ ;+ -+ ;+ -+ -+ -+ &+ &+ -+ n-.<*.&+ A*.L+.1;.A*.L+.A*.U# L+.j&.B*.j&.L+.a%._$._$.B*.'-.b%.k&.)-.N+.k&.k&.m$.:$.2;.8=.C=.m$.k&.8=.&%.n$.k` n$.n$.Q&.O+.n$.Q&.n$.OX n$.|$.OX [$.n&.P+.)...=.!-.f+.h+.!..Z#.-%.Z#.S&.+=.-%.Z#.5#.5#.Z#.+=.:&.e..e..u#.>%.3;.>%.e..@=.6#.@=.u#.3;.6#.4;.v#.i+.lX 5;.6;.7;.8;.9;.0;.a;.b;.c;.d;.N=.G*.G*.e;.f;.*;. *.g;.Wb db Vb h;.i;.E-.ob =e pc te {l nc nc rc nc nc =d nc rc -d =d -d -d #H -d -d +l jZ #H $c zh #H -d ~=.#H +l #H ub -d =d =d nc *e we nc _f fe ue tS (j fE dL .kh fE WY :q w` _j X .ru (j Wg dk C&.j;.PD dw /n k;.KL (j fI MT JU #B xe 0H l;.]; & s@ v@ -. F@ 5# +. .= 2# 2# U E$ H +% N@ P@ Q@ Q@ %> w ^# D D ", +"`Y I/ I/ $ I/ $ L$ R@ + 0' L$ }, ]& L$ ]& .( # ]& # T@ o! ;b > + $ ' !, ]& $ V@ ' & Q$ ]& !, . . - %= ' & # & N$ > . !, - > A; $ ! & & M$ ; R$ o! > U$ & ; ^ ; & . X@ 2 | | S$ . ^ ( ;# ~ S$ ' ; | 2 P$ ~ | 4 / } ~ ) N$ ~ 2 ~ < d 1 1 ( ) N$ [ 2 ) 4 ( ## / 5 $# 0 ,# 2 ,# tA [ &# 3* b 0 ~ ,# W$ 0 tA d {# |& ~# 0 {# n !# n 0 n a K= h p c m ^# m s> ;= n Y$ K/ `$ p ^# 1; q Z$ D p F= :# t 1; {& m t w m z {& M= F= a7 /U z W) z w .Q#.Q#.PV f` gX qW JX 9+.gX f` f` AZ &+.AZ f` aZ #Y 0 x so .g .g S3 kf .g T3 j9 __ __ d3 j9 T4 6< 6< tg v[ u^ 6< 6< 6< 6< 6< o] B_ +{ :_ a^ b^ 1> d; d; ^' ^' ^' d; d; ^' !{ (! d; t* f; d% q- t* t* t* t* q- f% /' u& e; g% d% ;+ ;+ ;+ &+ &+ -+ &+ P# ;+ -+ Y' -+ T-.-+ x;.,-.y;.1;.U# j&.U# U# L+.L+.A*.A*.a%.,` 5T b+.z;.)-.)-.N+._$.)-.s#.W-.p-.W-.C=.C=.4#.m$.8=.l&.OX OX OX n$.D=.n$.n$.OX Q&.OX n$.Q&.Q&.Y#.p$.h+.~-.a=.f+.-%.P+.-%.-%.P+.-%.Z#.!..-%.A;.:&.hZ +=.+=.:&.u#.e..e..>%.>%.u#.u#.u#.@=.u#.i+.>%.3;.R* i+.e..o&.B;.C;.D;.E;.F;.G;.H;.I;.J;.K;.H=.xJ j=.D;.j=. *.L;.M;.N;.:g Vb Vb E-.Ub ob [f vd pc vd we ,e {d nc =d rc rc =d =d rc =d =d #H rc #H -d -d -d ub #H =d -d #H -d wh O;.=d =d nc =d =d Q$ ; - & Q$ > > U$ - U@ ; ' & ; | o! . > N$ Q$ ^ & Q$ [* ; & =' ^ . {c ] ~ & } ~ > | [ | ; | 1 ( X@ Z! 2 8- ) ~ 2 { Z! $# d : I= 7- 4 d ( N$ < 1 a a 1 ,# : < 5 6 [ Y> d ,# 0 b 6 ,# !# a L= 7 ~# !# i L= h a e L= n r ~# n n ^# k ~# o 1; o h k q Y$ s> r `$ m t m {& q :# % z b' 2, G :# :# F z F= z )> w a7 n! I x I O@ T^ .@.F= M c- #= H$ .@.O@ V Z V 3# .@.c- c- d{ SO y .i5 A: A: oY 0S U;.Q yS )Q y+.,*.(U +Z yS #N Z .^P )Q )Q _=.+Z 9$.1@.1@.<#.H&.9X V;.6B W;.<#.X;..` hT 4..E` E` 4..E` 9&.+` 4Z l#.` .f-.z@.4Z S%.Y$.s*.z@.Y;.F` M-.Z;.0 .K&.I&.I&.A@._;.@..1%.s;.L&.*` 6@.d .xZ E$.&-.o#.`;. >.E..+#.%+.G$.]$.]$..>.;V -V oU S-.y%.W%./$.l-.+>.H$.e .L` }T HX }T --.G .5%.pT G .[W f` @>.qW f` I+.9+.gX f` AZ AZ g .gX AZ &+.[U #>.BZ ) .[U qT ._K PN %Y TQ ]S iJ jS 5O yU XP :K OJ }L 'G 'G OJ 'G :K :K #P qC 3I Ey ;w |Q Bl 3I Px Bl Ey 3I qo `f q qo -w x >0 ch TG Jn i9 .g j9 kf .g kf S3 45 6< 45 d3 =^ x/ u^ u^ 45 v[ =^ v[ 6< 6< 6< +[ :_ <] +{ +[ a^ w^ d; d; F{ ^' 9) 9) ^' 9) d; z' 9) s& q- $+ 1> t* q- t* q- t* H# u& .; .; ;+ x& =+ ;+ -+ ;+ -+ $- g% P# %>.-+ !+ >+ &>.-+ *>.U# >-.1;.A*.A*.A*.B*.j&.j&.A*.=>.=>.[*.k&._$.[*.'-.k&._$._$.k&._$._$._$.b%.:$.->.8=.A%.m$.&%.n$.=#.n$.n$.D=.n$.n$.n$.n$.Y#.OX Q&.n$.OX p$.)..h+.F=.;>.e%.P+.P+.S&.P+.-%.Z#.>>.P+.-%.+=.hZ 5#.-%.+=.o&.e..>%.u#.u#.e..u#.|~ @=.6#.NL >%.u#.e..MZ ]` ,>.'>.Y&.G;.)>.!>.~>.{>.]>.^>.$b />.(>.G*._>.*;.*;.v&.Rg :>.<>.zf |b Vb Vb `b Yb gc Ad ve [f {l yd nc =d nc nc =d nc =d =d =d =d -d +l jZ -d -d #H jZ =d =d -d ub %e xe &e nc nc =d nc mc ue ue kc kc Tl :j :q dL dL +R _Z _Z %W UY UY kh +R !n Wg Wg WY GT ou [>.k*.J=.}>.ji =t .e :..|>.[X LB 1>.2>.3>.7@ ^* ^. A@ )& F@ X J P Y ` L@ A P@ b- 8* M C z {& A ~& z ", +"R@ K$ L$ 0' ]& ]& + ]& . J$ ]& @ ]& L$ . ]& Q$ ]& # ]& = . # = # ]& . . V@ $= > # - |* Q$ U@ - M$ L$ > - $ . E! = V@ U@ & ; | U$ - $ ' S$ . > ; ] U@ S$ . . H= ^ ] & { U$ (& R$ | Q$ | | ) P$ X@ ~ ; 2 { 2 [ { 2 2 { / ~ 8- } 5 Y> +# 1 2 1 } Y@ ## 2 } 5 V$ b ,# 6 a < 6 3* 5 ,# 2* 2d d ## 8x ,# q> b ,# ,# ~# ~# s> h Y> c c a r 0 ,# o n 0 ,# ~# n^ ,> Z$ c{ Y$ u s> _# q /# 4* Y$ q Y$ :# 2; w B /# @= w 4* {& w G {& z F= /U z F= I M w Z 1& I O@ A A O@ T^ c- c- c- V 5 .4>. V =X z .i5 B..>z ` hU oY *I (U *I #N )Q qF yS I#.iU +-..Z +Z @-.+Z RT q=.Z .RT 1@.9X hT bV G&.0&.UO 7` 3@.hT .` $N CX 5>.9&..` 0$.6>.E` ]&.a$.pY #@.^&. ..7>.5Z #@.B .8>.c$.!$.9>.0 ..#.0>.B+.P-.0>.|+.U%.a>.#..a .*` %+..%.&-.C@.C@.]$.`;.* .E..%+.E..-@.E..1=..>.G$.b>.R-.F .6+.N` 6+.+>.M&.7+.L` HX 7+.oT /$.Q#.5%.c>./$.JX f` JX qW JX gX f` AZ AZ --.nV oV h .HG 9+.' .cZ [U ~V qT [U cZ ~S UP UP {S $Y [U 8Y [O xU sT DI PN VK TQ 5P 5P _K sK }L :K 'G QG :K 8M :K 'G :K qC 3I q jJ wD qo 3E jJ qo RG q qo qo Vi q q Cl Cl .g Vr Cl T3 .g Vr T3 kf n S3 T3 T3 T3 3| __ __ u^ 6< v[ 34 6< 6< =^ 34 u^ +[ 44 <] 2{ /! +[ a^ d; d; d; d; ^' 1> ^' %~ 9) ^' ^' ^' s& t* f; q- c% t* ^' t* t* .; u& #+ R# &+ &+ -+ &+ P# P# P# P# -+ -+ -+ U-.Y' d>.e>.Y' z%.U# z%.j&.j&.A*.j&.A*.j&.j&.j&.j&.B*._$.)-.'-.|*.->.k&.K@.k&.N+._$.k&.f>.2;.2;.g>.C=.m$.h>.OX n$.OX OX OX Q&.[&.Q&.OX .=.Q&.O+.OX [&.a=.s-.h+.d..s-.i>.P+.!..l` Z#.-%.Z#.+=.-%.+=.-%.hZ hZ X-.j>.o&.hZ hZ u#.u#.e..hZ >%.3;.>%.,@ ,@ >%.6#./ .>%.k>.l>.m>.n>.o>.p>.q>.r>.s>.t>.u>.v>.w>.j=._>.j=.j=.*;.i=.x>.Sa pb Vb Vb Vb Ub gc gc [f Ad ve {l {l nc nc =d =d nc nc nc =d -d =d -d -d -d -d =d nc =d =d =d rc =d &e y>.y>.xe nc lc *e .|j [x zJ }x A>.jk eL >o B>._@.Is /%.C>.D>.a@ 0& F, -. +. >. C$ E@ V J@ }; ` J I S w I N 7* x 2; G F= ", +"+ # I/ 0' 5_ 1) + J$ ]& + + ]& R@ R@ ]& k) + [* BN R@ $ $ 0' # . ]& L$ ]& L$ > + + ]& . . # $ Q$ [* > $ = S$ = > - # $= ' !, . ; %= & & ; $ Q$ Q$ & . T@ S$ ; . | | ] . Z! ~ P$ N$ ~ ) | 5 | .# ; 2 X@ Z! ) | | 2 { ## ~ [ } /& d ( $# 6 [ 2 6 4 V~ 1 ( /& Y> 7 2* 5 1 9 Y> 6 $# d d } ## ,# 9 0 ~# 7 d 2* b k ~# ~# ]# d a n c n ~# i e ,> h p ~# v q ;) ~# 4* p Y$ `$ t V| [# `$ `$ p t w F= G b' #| t `$ 2; '&.B G E '&.1& 1& z F= z n! E JW c- G KW T^ O@ Q@ T^ 8* V c- V 0S .@..@.>z Z..aV z .b-.y .oY B$.I#.p*.aV E>.^P *I F>.iU RT zS RT RT 9$.RT RT #N ^P Z .H&.sZ H&.!&.w@.CX E` 0&.2@.$N AS .` E` 9&.,$.G>.9&.E` E` H>.4Z #@.|Y <+.z+.z@. ..~*.$ .$ .0 ..#.$ .v%.<+.pO I>.W*.D$.C+.6@.#..*` 6@.E .++.E$.j-.J>.X*.K>.d .L>.E..* .G$.E..D@.M>.N>.G$.F$.%+.b>.}T 1#.+>.H$.HX HX IX G..IX > .IX Q#.> .Q#.O>.f` X%.f` X%.AZ 9+.AZ f` JX nV AY +Y g .AY )V [U , .7Y BZ ) .UP qT qT [U ~V .ON ON XP 2U TQ _K TQ iN 5P iN /S ,J 'G :K }L 'G QG :K 3I 3I Ey ;w jJ 3v Bl x q qo 3I Bl qo qo qo n8 Bl q 8e Vr M9 i9 `f ch d3 ch i9 T3 T3 T3 45 j9 d3 =^ 34 6< 34 6< u^ u^ 6< =^ 6< u^ W/ w^ ^' _^ o] _^ ^' ^' d; ^' ^' 1> d; ^' ^' 1> 9) 9) d; q- t* t* d% c% q- s& $+ +- @- +- R# ;+ -+ &+ B& -+ -+ -+ ;+ 4= &+ &+ P# Q>.-+ 9= &+ 6=.U# z%.T# j&.j&.A*.B*.B*.j&.B*.B*.B*._$._$.'-.B*.'-._$.k&.->.k&.k&.)-.)-.)-.R>.)-.S>.T>.8=.n$.OX n$.n$.k` Q&.OX Q&.Q&.Q&.OX Q&.[&.Q&.n&.R&.C*.f+.;>.;>.Z#.-%.P+.-%.+=.+=.+=.Z#.Z#.U>.:&.u#.u#.U>.j>.>%.>%.{; >%.V>.e..3;.@=.3;.R* 9$ >t <&.n .v#.W>.X>.Y>.Z>.`>.q>. ,.q>..,.8;.+,.@,.4-.*;.e;.*;._>.#,.$,.%,.Sa fc |b Vb db Vb i;.[f [f ob +c Ad ve we mc nc nc nc nc rc =d =d -d =d -d -d =d rc ub =d =d =d =d nc nc nc &e xe nc mc :f ,.,,.',.h$ 3. w$ ). ). A@ E@ 2# P Y ` E$ K@ Q@ M A H$ +% I K G w B ", +"+ + 5_ J$ ;b + + ]& L$ # % J$ L$ R@ ]& ]& L$ + k) # 0' . . $ M$ # = ]& + + k) $ - . $= $= > - o! > U@ k) Q$ U@ & > & $ & o! $ # N$ & ; %= N$ > N$ > . ; - & ' N$ & H= 4 ) N$ 2 { ; N$ %= Z@ I= X@ N$ %= `@ [ X@ 4 / 2 ) } ( { N$ ) ~ 2 ## $# ## | 2 3* $# X@ 2 { 7 Y> V~ 7 0 /& : 1 ## ) 6 5 5 V$ 0 a ~# ~# k 6 6 ,# 6! 0 ~# s> 0- 0 n e {# t' n ~# L= b' 1; L= Y$ `$ 4* _# V| `$ n Y$ /# ^# 4* #] w F= % G F= {& w ),.:# Y$ G z w G ^# B a7 a7 n! w a7 z Z 8* T^ a7 =X !,.o^ O@ T^ |# 8* o^ V I-.x .t%.~,..@.SO Q y .|# aV I#.I#.iU B$.YX {,.j#.(U YX )Q #N )Q ],.`I ^P )Q RT )Q +Z q*._M +@.+@.bV AS J#.3@.1@.+@.CX AS CX 9&.E` :=.E` E` ^,.4..]&.4Z 3../,.s*.N-.~W z+.N#.z@.0 .M#.(,.T%.O-.mW _;.}#.@..Q-.1%.*` #..*` *` d&.L&.E$.E$.o#.w=.* ._,.* .p#.p#.+#.+#.- .RE F$.@#.1=.c` HX ^$.i$.J` RW r#.HX H$.7+.X%.M&.IX > .G+.HX L` qW AZ 9+.AZ :,.9+.AZ x=.-Z <,.9+.:,.[,.JR 7Y lQ +Y +Y pV ~V [U ~S ~V cZ VP $Y {S VP DY AO !N xU ON hN iJ SN fR TQ _K }L :K OJ 'G 'G 'G :K :K 'G PR 'G rC 3I 3I Bl 3I F q qo Bl qo qo },.Sd Vi q ch so Sx .g |,.Rc T3 T3 >0 T3 T3 T3 u^ d3 A_ 45 __ `e 6< 6< =^ u^ =^ 6< 34 v[ <_ /! X/ X/ v^ a^ 1> d; ^' ^' 9) .- d; F{ ^' b% ^' +- d; t* t* q- t* N# t* t* #- s& (! c% g; g% -+ O# x& &+ &+ &+ 4= u* P# h% P# >+ 1,.e>.<*.2,.L+.j&.3,.A=.U# L+.B*.A*.^+ j&.j&.j&.'-.k&.,` 4,.j&._$.k&.k&._$.k&.)-.k&.)-.b%.S>.8=.g>.S>.D=.5,.Q&.n$.n$.5,.n$.Q&.Q&.Q&./` .=.OX Q&.6,.R&.7,.-%.S&.;>.`%.Z#.+=.Z#.+=.-%.+=.Z#.Z#.-%.+=.o&.hZ -%.:&.:&.u#.>%.e..u#.u#.V>.u#.>%.u#.<&.8,.>%.6#.>%.9,.0,.a,.~>.o>.p>.b,.c,.d,.)>.e,.f,.N=.>=.j=.&;.=;..K xJ g,.h,.i,.pb |b Vb Vb E-.Yb [f ob Ad pc {=.Zs {l wd =d =d &e oc =d rc =d =d -d -d =d =d =d zh -d =d nc =d xe nc nc + <{ G= . $ 5_ Q$ + . + . - V@ # Gc $ %= & $ Q$ - [* # > U@ ; . + . . - ; ' . ^& + Q$ N$ U@ & P$ > =' & ~ ! N$ U@ ~ & X@ ( 2 H= %= Q$ ; Z! +# 2 8- ~ | X@ ( ; X@ X@ { [ 2 | $# $# $# ## <& } 7- *# Z! < } I= d V$ 6 4 } a a d 6- d 7 ,# 4 [{ e 9 7 W$ ,# N' b ,# e 0 0 c c h c c 0 0- `$ ,> m ,> p ,> n p -) Y$ `$ n^ #| % /# m q s> :# /# 2; G ]# 2; {& F= F= C` F= {& B z F= 1& z P%.z $T a7 1& I .@.M c- O@ H$ =X c- =X |# 5 .y ..@.m,.c- SO iU :#.}Y >*.iU SO AX B$.iU BX .Z qF yS .Z 9$.)Q G&.RT RT ^P ^P )Q )Q ^;.Z .$N H&.EN hT -X D` '*.n,.CX E` CX 4...` 9&.3Z a&.4..9&.4Z ` .z+.`X s*.)$.F` !*.z+.0 .z@.N#.o,.!$.7>..#.|+.n#..#.1+.2%.s;.U%.++.++..%.U2 %.&-.E..p#.+#. >.x*.p,.-@.E..+#.-@.]$.S-.F .3%.c` > .M&.G..c` G..c>.G .L` > .H$./$.> .X%.5%.Q#.IX nV gX f` AZ AZ 8%.AZ q,.gX k$.&+.9+.JX lQ g .UP r,.7Y pV ~V ~V YO [U ~V ~S s,.sU qT +P TQ VK ,Z dR +U FM DI rK XP _K 'G OJ 'G QG qC :K 'G QG }L 'G |Q :K az Bl q qo qo Bl Ye Bl qo qo `f o8 x q `f Cl },..g M9 i9 .g S3 i9 .g d3 S3 45 45 45 x/ U3 U3 u^ v[ 6< 6< =^ 6< v[ u^ v[ /! /! -^ @+ /! ^' ^' 9) ^' ^' F{ ^' d; ^' t* d; 1> q- t* t* t* +- t* t* b% s& t* +- #+ s& $- x& @- B& ;+ &+ &+ ;+ -+ ;+ -+ -+ -+ >+ &+ m-.P# z%.A*.z%.t,.A*.L+.z%.j&.A*.L+.B*.j&.A*.9=.k&.u,.v,.->.N+.)-.A%.->.)-._$.S>.S>.C=.S>.g>.)-.8=.Q&.n$.n$.OX OX OX n$.5,.n$.Q&.Q&.Q&.OX Y#.F=.w,.-%.Z#.r-.6,.!..Z#.+=.Z#.Z#.-%.-%.Z#.x,.Z#.+=.>%.Z#.x,.X-.u#./ .4;.3;.@=.4;.@=.>%.3;.@=.>%.>%.3;.f..y,.z,.A,.B,.C,.D,.E,.F,.G,.H,.I,.*;.d;.`&.v&.P=.-;.P=.J,.t&.K,.7U L,.:g |b Vb Vb {g Ub ob gc gc Ad vd +c wd nc nc =d nc rc nc =d nc -d -d =d =d -d =d -d =d nc nc nc &e nc mc *e _f _f fe vd ^f Yb zf M,.N,.`` _%.UY C#.UY UY KT WM DQ y` UY 9T 1k dL GT [x nu .P,.aV *I aV &{ iU oY L SO :#.p*.oY +Z yS oY Q,.G&.)Q ^P )Q RT RT RT RT RT R,.S,.sZ 0X bV sZ hT 0&.w@.0&..` E` CX CX .` 4..E` :=..` 4..a&.4Z M-.f-.<=.#@.8 .Y$.T,.N#.$ .!$.#-.c$.U,.v*.K&.V*.A@.w%.++.U%.s;.*@.++.6@.d .6@. %..%. %.o#.-@.C@.X*.+#.E..* .E..G$.p#.RE V,.mV W,.G .<;.I$.F$.IX IX IX 7+.L` c>.X,.Q#.5%.X%.G .qW JX X%.8@.aN JJ nV x=.0@.f` f` AY JX f .+Y YO pV 1T [U #Y 1T oC ~V cZ ~S +P {S VP yO EY qK ,Z VK PN hN DI rK iN _K 5O }L QG ,G :K qC :K :K OJ 'G 3I RG Zf Bl -w q Bl qo Bl Bl qo Vi Rc Bl 3I q .g `f Cl Vr 8e h9 Cl S3 T3 Vr d3 d3 T3 6< =^ u^ u^ U3 v[ u^ 6< =^ 6< u^ V5 6< 6< 6< :_ _^ d; o] -^ .- F{ 9) ^' ^' d; ^' ^' 1> 1> 1> 1> q- s& c% b% s& |> s& d; s& c% e; c% d% O# R# -+ &+ =+ %>.P# P# h% -+ -+ -+ P# -+ B& <*.*>.j&.j&.t,.A*.A*.j&.A*.v,.j&.B*.B*.v,.B*.A%.k&.A*.Y,.k&.->.)-.->.k&.->.)-.g>.m$.)-.Z,.T>.W-.D=.0=.n$.OX Q&.m&.Q&.OX n$.OX m&.[&.[&.Q&.[&.p$.Z%.-%.f+.`,.n&.-%.P+.-%.-%.P+.Z#.-%.-%.-%.+=.e..-%.+=.+=.X-.>%.>%.>%.@=.P* 9$ 3;.u#.|~ / .>%.3;.%p '.N=.F;..'.+'.@'.#'.$'.%'.&'.Dt *'.=;.`&. *.G*.>=.='.$l -'.;'.qh i,.b*.|b db Vb E-.ye [f Bf Ub gc $e {=.nc ue :f nc nc nc nc =d =d =d =d =d nc =d =d =d =d =d nc '.Wg w` kY UY %W y` DQ WM KT KT JT %W C#.kh =L $W To ,'.6r |q bw ]n ou oi eE @O k,.|i !M aI YN ''.=* k> '& l> E@ $% }; H@ D$ d- E$ S H 7* x P@ I M I F= N D 1; ", +"I/ I/ # % *) J$ 5_ ]& X! 0' # 1) ]& $ R@ + # k) = . + L$ # # $ = - . . > > $ . > # T@ $= S$ # = ]& . & Q$ ; & = $ * & . ]& . & = & > N$ N$ $= . o! & - Q$ P$ | ; =' N$ ^& > | ; ; N$ ; | Q$ ; U$ ~ X@ U@ & Z! ) ] 2 ( I= 1 ~ ~ ! | /& { <& [ 7 4 $# ) { ( 4 { 2 ( ,# 2d } 3* 6 6 a U- ,# 8 } e ~# 6! d e $# c e e 0- e h j c 0 L= c{ n h ~# r n h 0- ># Y$ 4* % ,> r Y$ `$ 1; /# % `$ :# b' [# `$ /# :# $S F= `$ z..G z z m $S z F= G 1& C G 1& G 1& c- Z 8* V O@ Z o^ z ..@.m;.(#.5 . V H#.0S H#.aV Z..o*.B$.*I p*.aV oY iU y+.yS oY *I .Z )Q )Q RT ^P RT +Z _M G&.#N R%.bV 6B 3@.sZ $N 0&.hT {&.n,..` E` E` E` 4..E` y@.J#.a&.9&.9&.z+.a$.L-.<=....z@.)'.[#.!$.T%.F` !'.7>.Y;.A@.sY A@.[=.~'.#..#..%-.*` L&.%+.{'.E$.d&.d&.X*.E..p#.* .- .%+.E..+#.p#.-@.p#.+>.-@.-@.NV IX G..F@.HX > .> .> .M&.G+./$.J$.G+.G .5%.f` f` gX I+.]'.;H bJ ;Z O&.[;.k$.f .AZ h .6Y 1T !V lQ 1T pV qT [U cZ qT ~S +P +P sU zO .U qK {S +P _K hN M rK QG qK rK :K :K 'G :K qC rK 'G :K :K NS Ey az q q QG az qo Vi Bl q q Cl `f q qo 8e fd kt kt `f Ze 8e .g T3 kf >0 d3 d3 __ R3 Q] ^'.45 u^ u^ Q] 34 u^ =^ 45 !8 6< =^ )/ _^ !{ w^ X/ d; d; 1> 1> ^' 9) 9) ^' d; d; d; d; ^' s& +- +- b% t* s& t* s& c% u& u& .; .; 4= &+ P# &+ -+ h% &+ &+ P# %>.P# /'.('.P# _'.*>.j&.B*.t,.x;.A*.j&.A*.L+.L+.v,.A*.B*.A*.=>.)-.Y,.B*.->.k&.k&.k&.)-.:'.->.W-.T>.f>.T>.C=.m$.T>.5,.n$.OX 5,.0=.5,.OX Q&.<'.<'.Q&.[&.j@.OX Q&.r-.f+.E=.R&.;>.['.!..+=.-%.+=.+=.+=.-%.}'.+=.:&.u#.3;.|'.X-.o&.3;.6#.6#.1'.4;.2'.3'.6#.6#.3;.6#.4'.5'.6'.7'.o>.8'.9'..,.0'.a'.b'.0;.c'.2&.L;.*;.d'.e'._>.f'.-;.g'.h,.4b fc pb Vb Vb Vb `b `b [f ob [f vd $e ve ve $e = > > $ # V@ - N$ |* $ > S$ 0' A; - $ $ - ; $ > & ; > > ] > . ; > . & & N$ ; U@ & ; ; S$ S$ > > $ $ k) S$ Q$ | & . 05 S$ Q$ X@ ] S$ N$ ] > N$ 2 < I= 2 ~ | N$ 9 2 4 k $# Y> 1 6 ( d D, J] d } -# Y@ ,# 7 6 4 q> 0 ># d ( ~# 5 q> a 7 ,# ,# 0 0 K/ a !# a } ;= o V| }& ;= p n ,> X$ 2, 0 Y$ ^# q 2, Z$ t Z$ q m t D m t D Z$ 1; a7 b' F= {& D F {& {& 4* z '&.F= ~& I z AR n! 2; Z 1& n! z T^ O@ M Q@ =X Z V 4>. V x .t%.(#. V i5 B..(#.v@.A: (U *I oY o'.SO p'.(=.yS [%.)Q >$.+Z RT )Q +Z G&.)Q +Z H&.bV EN '*.R%.G&.w@.AS 2@.{&.q'.CX .` .` .` E` E` ]&.a&.4Z .` pY <=.4Z $ .#@.Y$.)'.9D $ .S%.T,.r'.s'.t'.8>.u'.v'.M#.w'.x'.a .#..%-.++.#..x'._,. %.x'.-@.y'.p#.* .]$.z'.E..* .]$.+#.+#.+#.F$.e&.F$.mV P#..>.I$./$.X,.--.G+.G .IX X,.5%.L` A'.G .5%.AZ Q#.qW Ix YL nK f` ,@.9+.6%.1T 9+.rU +Y f .!V ~S QQ UP @Y qT ^' B_ w^ d; ^' 1> ^' ^' 1> 1> d; d; d; d; t* s& s& q- s& K# b% t* b% t* u& M# $+ -+ -+ -+ -+ P# -+ -+ B& P# h% P# B'.Q>.P# C'.-+ Q>.j&.z%.Q>.t,.A*.B*.A*.A*.B*.j&.j&.A*.u,.->.->.B*.k&.)-.V#.->.)-.->.)-.:'.2;.N@.p-.8=.T>.->.5,.n$.Q&.[&.D=.D=.[&.[&.[&.[&.Y#.D'.D'.E'.[&.n&.6,.Z#.r-.`,.C*.-%.+=.Z#.Z#.Z#.-%.-%.+=.Z#.Z#.o&.:&.F'.G'.o&.>%.6#.3;.@=.u#.6#.3;.>%.>%.|~ @=.H'.I'.J'.K'.p>.E,.L'.M'.N'.O'.P'.Q'.R'.H*. *.e;.8;.S'.D;.`&.=;.T'.U'.Ga fc pb =. 3^ 2# ` P J D$ H J D$ E$ 8* +% S 7* M Q@ w G B ", +"BN 0' = + # = L$ # K$ + J$ R@ }, $ = ]& + ]& L$ + [* # ]& > V@ . k) Q$ $ ]& $= + = # . |* & S$ $ . $ V@ = . . |* $= S$ - * . $ ] ; $ ] H= Z, $ . Q$ 2) . k) ; > ; S$ Z! ] U$ 5- . ~ 8- | ; [ Z! 2 ~ N$ ; ^& ; S$ { { [ $# ~ & Q$ ) ~ I= ~ } 4 2 6- `'.d | 7 < 2 { 4 } &# J] &# 9 ( 6- V~ D, 6 6 b b e { 6 3* } ># a L= c g ]# c W$ 0- p `! ,# Y$ c c n^ ~# n L= % ^# ;= m Z$ r y ^# /# h ^# {& 4* 2, #] :# m b' @= 4* :# t E F= a7 '&.F= ).I O@ a7 A T^ AR $T n! T^ $T n! HV Z o^ T^ V .@.c- 5 . Z .).(#.SO -*.:#.(U A: oY *I (U Q k#.^P +).(U XX 3d )Q )Q )Q +Z RT +Z )Q )Q @-.+Z sZ 1@.H&.R%.@).#).3@.$).%)..` 4..E` ^,.E` .` 3Z 4..9&.]&.a&.` .<=.4Z !*.#@.B ....&).b&.7>.!$.$ .U,.Y;..#.=@.#-.*).=).w*.1%.L&.++.a .1%.&-.-).;).{$.p#.+#.&-.X*.]$.p#.* .p#.E..E..p#.6+.-@.F$.-@.;@.IX ]$.7+.H$.c>.5%.M&.G .X,.5%.L` H$.^$.G+.gX G .G .,@.}T aJ x=.9+.x=.AY (Q ;Z qW >).@Y #Y 1> F{ v^ ^' d; ^' d; d; d; d; 1> d; s& 1> d; t* t* t* (! t* M# b% |> s& K# u& /' + )+ -+ -+ u* 4= &+ h% -+ h% -+ h% &+ P# ,)._'.P# P# L+.B*.').}*.A*.A*.v,.A*.A*.B*.A*.)).4,.k&.)-.Y,.!).)-.)-._$.)-.)-.->.->.:'.)-.->.8=.A%.~).5,.Q&.OX OX Q&.Q&.Q&.[&.Q&.OX [&.E'.[&.E'.[&.[&.['.-%.6,.;>.C*.+=.-%.-%.+=.+=.x,.+=.+=.x,.-%.o&.o&.X-.+=.u#.>%.u#.@=.|~ u#.>%.{; 3;.3;.|~ @=.{).]).^)..'./).()._).:).<).[).}).H,.*;.-;. *.e;.8;.8;.8;.|).G*.H*.1).`c Be pb zf Vb Vb Vb `b c Yb Zb ^f $e te {=.;d mc nc nc nc =d nc nc =d nc =d =d =d nc nc nc nc nc T=.kc ^f vd vd vd vd ^f Zb Yb #e 2r +e QB dL kY _%.UY 2).2k +K KL Zo Mj uj =t dL ^n To To Q$ - & Q$ - N$ Z! X@ ; | %= ; & & ; |* Gc N$ { N$ Z! ) [ ~ H= | ) N$ { | . < ; X@ { 2 ; ~ $= { ( 1 { [ 2 { [ 3* 2 D, ## Y@ N$ -# 6 } 6- 4 $# } /& &# ,# V) ,# ># 0 e <& L= q> b ># ,# E, a L= j n 3* a K/ -) n p n *= n n n n m (# b' p _# m C t 1; p F t |& p ^# % E F= t :# ^# ^# 1Z z /# I F= z 1& 1& {& I 1& z N JW c- 8* 8* JW P%.>z AR V (#. V T^ V (#.o*.aV ` (U BX *I aV A: oY 3& (U yS [%.(U k#.K-.R%.^P )Q 6).Z .RT Z .RT RT >$.0$.9X H&.Z .7).$).CX 8)./;.CX .` AS 4..0$.4..'$.:=.9&.y@.L-.:=.#@. ..B .:=.F` 8 .9).s*.)'.N#.v*.t'.T%.0>.|+.`$.K&.u*.w*.*@.s;.*` ++.^} %+. %.j-.* .C@.8Z * .%+.+#.%+.+#.+#.E..+#.p#.c` F$.+>.0).1#.G .F$.(&.c>.HX a).^$.X%.M&.> .--.Q#.X%.gX f` x=.JX 9+.:,.pT AZ AZ I+.gX >V 6Y I+.*+. ^' 1> .- H# d; d; .- ^' d; ^' q- t* s& +- s& d; s& s& s& $+ +- `. #+ P# -+ &+ B'.b).P# c).P# b).h% h% d).P# *>.P# m-.h% ').A*.=>.>-.B*.A*.B*.A*.v,.A*.v,.B*.[*.)-.->.)-.B*.e).->.:'.)-.)-.)-.:'.->.:'.->.W-.h>.p-.p-.Q&.OX f).Q&.[&.Q&.[&.Q&.Q&.[&.a=.[&.[&.[&.j@.-%.-%.i>.;>.7,.Z#.x,.+=.-%.+=.x,.X-.g).X-.+=.+=.a{ 4;.X-.>%.u#.{; 3'.3;.>%.3;.3;.@=.3;.6#.>%.h).i).j).b,.k).M'.l).m).m).n).o).p).q).r).j=.S'.G;.8;.8;.s).|).t).F*.u).Xb pb zf Tb db Vb Vb Zb `b Zb gc :f mc Og vd ve *e nc =d nc =d nc y>.y>.xe nc lc . ]& L$ # $ = ]& . $ . . - # $ $ . = > M$ . $ > $= P$ - | U@ $ | > | > > - N$ & { & . U@ | ~ T- ] ] H= . & N$ T- & $ ^ X@ `@ & | U$ /& 2 ~ ] 2 %# H= 8- ~ 2 *# N$ $# ( 6- X@ { ,# Y@ 2 Y@ { < } } 6 Y> $# { J] Y> 6- ,# ,# } ,# k ,# } a z: d 6 6 e $# e e ,# k c ~# n s> Y$ K/ s> n {# ~# q 1; 1; h h r q ]c Y$ ,> n^ `$ @= 4* 2; f^ /# 4* `$ ,> B <, n^ w w 2; F= a7 z z z z a7 z 1& 1& JW z G O@ c- JW 8* T^ Z T^ 1& 2Z 4>. Z V 3# B).C).>z M I-.oY A: oY *I *I oY aV U;.YX D).(U U;.c-.#N ^P RT )Q +Z Z .3d Z .+Z Z .-X H&.G&.+@.{&.3@.w@./;.^,.D` CX .` 4...` 4..` .E` 9&.f-.z+.z+.f-.E).4Z 6Z N#.#@.!$.N#.$ .7>.F).t'.U,.A@.v%.t*.A@.u=.a .1%.*` #..e$.e$.6@.j-.G).d .* .p#.& .* .p#.* .p#.+#.-@.+#.]$.Y*.-@.V,.V%.L` I$.1=.> .}T G .^$.HX L` 7+.X%.R#./$.L` gX JX qW 9+.JX AZ AZ f` [;.f` AZ ZT JX 6%.[W 0@.~S ~S qT QQ QQ LJ H).:Q KS I).+P VK MR DZ +U J).OR +U SN DI TQ qC rK SN QG 8M :K qC OJ az ,G QG Jx fR 3I qo Vi 3v Ey qo Vi Ye Vi Ey Vi qo Td Td qo Td M9 h9 8e 8e M} .g i9 j9 8e h9 S3 d3 __ Dl S3 =^ S3 6< =^ u^ =] u^ u^ u^ u^ =^ W/ /! =^ d; d; 1> d; 1> 1> d; 1> 1> .- 1> 1> d; H# q- t* q- c% s& t* s& s& w& t* t* +- c% K).4= d% @- #+ -+ h% -+ -+ h% P# c).P# h% ('.L).d>.c).M).A*.t,.x;.N).B*.j&.B*.A*.B*.v,.v,.O).=>.->.|*.)).:'.)-.k&.->.->.)-.)-.g>.W-.:'.g>.h>.->.C=.5,.[&..=.D=.D'.Q&.OX [&.Q&.[&.[&.[&.P).['.;>.Q).-%.P+.-%.-%.X-.S&.+=.X-.-%.-%.-%.+=.+=.A;.|~ }$.R).S).F'.3;.6#.@=.|~ 3;.{; 3;.>%.T).i+.U-.U).V).+'.W).X).Y).Z).`). !..!.+!.@!.s).#!.$!.%!.&!.*!.=!.w>.-!. *.>j ;!.}b b*.|b |b Vb db c `b Zb E-.^f vd ue _f ac :f nc nc &e y>.nc y>.y>.nc iE _f _f nc *e $e _f !.^F :q w` =L kh dL =L (Z 7V (Z ,!.'!.=t .I fE 8w gk ~n - . * $ ] . > ' ] .# ^ Q$ > ] & %= H= ] . S$ U@ Q$ X@ | ] U$ o! ^ - + | 2 Z! P$ T- 2 ; ; ; N$ =' ) ~ Z! [ | 8- ) { (& 7- { ~ 5 2 /& Y> } $# d D, == } < { [ 2 $# ,# 0 $# 0 } 6 1 ,# b ( 9 3] 7 d m*.6! a {# K/ a a a b 0 c h z: i Y$ 6! 0 0 ,> h n c y2 ,! Y$ Y$ p r m b' ,> b' `$ #] :# `$ w #] G /# F= E $S {& F= a7 z w '&..*` e$.(!.~'. %.&-.E$.%+.p#.* .* .p#.E..u;.E..-@.p#.+#.y%.+%.]$.G$.> .IX Y*.Z*.H$.H$.c>.G..> .H$.^$.X%.Q#.Q#.G+.f` f` JX gX JX 9+.f` JX k$.PV 6Y AZ qW AY +Y I@.JR QQ UP YO $r |P SK _!.cR +P w;.J).FM WK |O ON _K (u QG _K 5O rK DI sK 'G :K ,G QG Zf 'G QG qC }L Ey !G F _A GI Bl qo Bl qo Bl Ye Bl q qo az Vi 8e >0 8e .g 35 i9 >0 d3 >0 d3 S3 d3 __ Q] x/ __ x/ u^ =^ 6< 6< u^ =^ u^ =^ 6< Q] W/ ^! <] 1> 1> !{ d; d; 1> d; d; 1> 1> .- d; d; d; d; s& c% d% s& ++ s& .- H# s& M# `. s& O# z& `. +- &+ )+ P# d).h% P# P# c).P# ,).P# _'.c).:!.B*..)).e).->.)-.->.->.->.->.|!.h>.->.W-.g>.9=.W-.1!.[&.[&.[&.D'.Q&.[&.[&.[&.<'.Q&.E'.2!.{-./` ;>.-%.+=.g).7,.-%.['.3!.Z#.X-.+=.X-.-%.X-.x,.3;.>%.|'.X-.|'.A;.>%.@=.3'.|~ {; @=.>%.i+.3;.4!.5!.6!.7!.9'.l).X).8!.6{ 9!.0!.a!.b!.G;.$!.e,.w>.c!.d!.e!.f!. ;.g!.,y `c i,.}b |b TD Vb Vb c {g Zb Zb {g vd ^f ^f ue . 0' R@ + > ;b # S$ ; ' ' o! ;b > V@ * o! |* ] . . X@ > $ T@ & - $ & Q$ & V@ ; H= Q$ $ ! N$ Q$ ' ^ Z! $ O$ Q$ ) X@ 2) P$ R$ | > ; 2 | < /& 05 l!.N$ ^ P$ ~ N$ X@ 2 ] ~ *# { 4 I= [ { J] [ } { X@ { ( ,# $# 5 I= k 1 4 $# vk x0 6- ,# d b a L= a a ,# a c k ,# g c i h K/ L= t' 0 6! Y$ m h 2, h r ,> b' Y$ c{ r Z$ t p `$ `$ :# :# w F= % #] b' 1; w t G F= z z F= a7 z 8$.a7 C` A$.O@ n! 1& M T^ c- T^ O@ JW KW V c- V c- 5 .4>.v@.z .iI y .aV :#.*I *I (U p*.U;.(U I#.+-.F>.(=.3d RT RT )Q +Z RT Z .^P Z .G&.>$.Z .G&.'*.G&.7).{&.2@./;.$).4...` E` .` E` J#.]&.4..o;.a&.L-.:=.4Z a$.$ .^&.z@.$ .z+.o,.A@.#@.Y;.T,.m!.n!.n#.I&.W*.t=.Q-.*` a>.L&.++.++.;).o!.%-.yZ p#.p#.%+.d .d .p!.* .]$.-@.%+.+#.f$.3%.+#.l-.G$.r#.i$.F$.M&.e .Q#./$.G+.G .^$.AZ ^$.Q#.--.JX gX PV <;.AZ ;Z AZ > .gX nV f .gX O&.RV @Y }W !R UP !R UP !R wP [O 5z uU )N zO yO VK iJ hN }Q UK CI nQ QG rK QG DI iN :K qC qC QG az pC pC Nx -w Ye 3I -w 2#.wD Bl Vi qo Ye Bl Bl Bl Vi Cl Td Ye Bl 8e i9 ch 8e S3 8e M} j9 S3 3| T3 =] =^ =^ 3| 45 u^ =^ u^ u^ u^ Q] u^ =^ N~ u^ =^ :] 1> d; .- d! .- H# 1> _^ 1> d; 1> .- d; .- ^' d; f; b% #- 1> s& q- s& t* t* d% u& N# @- 4= q!.c% -+ -+ -+ &+ P# h% P# %>.P# r!.h% L).n-.Q>.A*.B*.s!.A*.A*.v,.A*.A*.v,.x;.B*.B*.z;.->._$.B*.u,.->.k&.:'.->.)-.->.A%.g>.)-.)-.W-.:'.t!.u!.D'.n$.Q&.D'.1!.[&.Q&.[&.[&.6,.[&.E'.P).E'.['.-%.+=.+=.g).-%.S&.+=.X-.|'.+=.x,.+=.X-.X-.v!.j>.3;.!@ 2'.2'.^@ 3;.|~ ^@ <@ |~ 3'.3;.o&.w!.x!.y!.r>.#'.P'.z!.A!.B!.C!.D!.E!.F!.G!..;.H!.I!.J!.K!.L!.w>.M!.e'.N!.!f Sa }b pb |b db Vb c Zb Zb Zb vd vd ^f kc H O A S I I @% G z N 7* G M= ", +";b ]& #S I/ 5_ # K$ + ]& 5_ 1) J$ 5_ R@ L$ 0' ]& $ + = * + ]& . $= . = $= > $ + R@ ]& . & $= U@ ; - . Z, Gc ; > $ S$ H= $ + ; ' P$ o! ] U@ $ & N$ H= S$ U@ & + & X@ ; U@ U@ & & > > X@ | | ] N$ ) 2 ; ] ) { & ) | 05 / H= 05 ] X@ | { R$ 2 <& < 6 ~ 1 1 6- T- { ( < 5! { 4 ,# ,# 1 i / 6 ~ Y@ J] 4 /& x0 a e k d a n i ~# K/ ~# n n ~# Y$ p L= ~# c k h Y$ |& ~# n a ;= _# % m ^# #] 2; 4* v p {& 6* 4* % 1Z {& G w /# :# F= E a7 /U z E a7 A$.a7 z I O@ 1& 1& O@ A $T $T AR JW U!.x+.=X >z V (#..@..@.PT 4>..@.iU B$.y .A: I#.-*.V!.W!.SO +-.p'.U;.+).X!.Z .6).RT )Q )Q +Z RT +Z )Q |@.Z .bV w@.G&.R%.1@..` +@.1@.Y!.4..E` a&.4..a&.9&.9&.L-.y@.y@.s*.#@.<+.)'.4Z !$.`X ~*.i-.M-.Z!.Y;.7>.Y;.n!.n!.`!.N#.}#.U%.r;.~'.-).++.6@.x'.&-. ~.C@.*Z K>.%+.d .d .C@.E..p#..~.-@.]$.Y*.]$.-@.3%.e .7+.i$.1#.G..F..> .> .L` H$.HX }T G+.> .G+.qW nV JX gX qW #G SV AZ AZ gX 7Y AY aZ f .&+.pV pV UP 1T _Q QQ oC eN QQ CI DM yO FM NR PN EY +~.qK VK +U qK ,G ,G _K QG :K ,G rK :K -w az QG 'G QG pC Ey _A !G )G Bl RG Bl qo Vi Vi Vi `f Rc Ye Cl M9 i9 >0 M9 Td h9 Rc >0 .[ 3| d3 d3 __ u^ x/ .[ d3 =^ @~.u^ a] =] u^ u^ u^ z/ )/ :] .- !{ H# x) R] 1> .- 1> 1> 1> 1> 1> 1> -] d; 1> 1> b% ++ s& M# s& M# s& s& 1> #+ c% 4= P# &+ d).-+ d).h% #~.h% h% c).P# h% ('.*>.$~.m-.h% ').B*.%~.N$.A*.B*.B*.A*.B*.B*.v,.B*.B*.e).->.k&.e).:'.->.->.)-.~).->.->.T>.&~.m&.g>.Z,.->.T>.OX [&.D'.Q&.*~.[&.Q&.Q&.[&.[&.Y#.[&.D'.=~.-%.>>.7,.-%.+=.X-.Z#.-%.+=.+=.X-.X-.x,.+=.X-.-~.;~.>%.a{ f%.f%.!@ 3;.3'.6#.|~ {; V>.>~.,~.'~.)~.!~.~~.L'.P'.{~.]~.^~./~.(~._~.:~.<~.<~.G;.[~.}~.|~.1~.2~.3~. ;._>.4~.3i 0c pb zf |b Vb .jA QD Ro @R VU ~j fL a~.W> ^. B$ Y E$ ` L@ Q@ O S O A A I m B G C G C 2; G ", +"R@ #S I/ =[ #S 5_ K$ K$ L$ 0' 1) + ]& ]& ]& # 0' 5_ % + ]& ;b Q$ $ + 1) $= # = . $= > $ = . . # . V@ $ . . > U@ U@ Q$ ]& * $ Q$ . U@ ; P$ U@ > - S$ N$ ; & T@ $ N$ R$ 2 & ] & & ; X@ ] H= Q$ - | N$ { | T@ U@ *# 2 H= ; ; H= .# { | ~ 2 Z! 7- 7- ] 2 7 : Y@ /& J= 5 6 /& 2 ( ( ( ( a d D, } 6- a : 1 Y@ Y> ( q> e a a 5 j g a' 6 0- z: ~# 0 z: L= }& L= h h h a c b~.~# c p L= r m #| q p :# t Z$ m t t t ^# F= {& q /# 4* Y$ w F= /U F= E z a7 n! a7 z $T 8* O@ 8$.'&.A z m;.KW n! H$ H$ c- V c- c- 5 . V 4>.4>.0S i5 W!..@.:#.-*.aV iU iU iU yS c~.I#.BX [%.9$.+Z G&.+Z #N RT RT Z .Z .+Z G&.lP 1@.G&.+@.{&.hT +@.<#.d~.hT 9&.E` .` a&.CX ]&.9&.H>.:=.<=.z+.#@.Y$.#@.<+.!*.e~.0 .)'.Y;.Y;.U,.U,.i-.`$.f~.n#.W*.L&.g~.et U%.++. %.J>.6@.6@.xZ & .d .d .%+.& .* .E..* .+#.E..-@.+%.h~.p#.3%.G$.7+.4z b>./$.e .L` Q#.M&.IX Q#.G .HX IX L` PV IS Q#.G .gX [W JX [W qW G+.6%.oV JX f` f .!R pV YO UP BZ QQ UP vL qT eN [Q }Q +P TW P` |O NN DI CI zO qK SN iN qK QG iN ,G 'G 'G 'G Jx ,G wD 'G Zf 3v Ey 3v Bl qo qo o8 Vi Vi Vi Vi qo c3 Sd Bl Cl 8e h9 8e `m h9 M9 Rc 3| d3 h9 3| d3 =^ .[ x/ __ u^ =^ Q] =] 34 =^ =^ =] =^ =^ W/ =^ <] ^' 0] a] .- .- 9) 1> 1> .- H# 1> d; .- 1> d; t* b% b% M# t* M# b% T. s& #- #+ u* -+ P# P# -+ c).P# P# P# -+ P# c).$~.h% i~.h% j~.h% k~.x;.A*.N$.A*.A*.B*.A*.B*.B*.B*.A*.B*.S>.->.:'.e).k&.)-.:'.:'.->.:'.e).)-.:'.|!.T>.g>.u!.->.*~.Q&.OX Q&.Q&.Q&.Q&.D'.D'.D'.[&.E'.[&.P).-%.6,.i>.-%.+=.X-.Z#.+=.-%.+=.G'.X-.X-.+=.x,.+=.x,.{; f%.X-.X-.2'.9$ |~ ^@ {; 9$ 9$ 6#.l~.m~.n~.@'.()._).o~.p~.q~.r~.r~.C!.s~.t~.u~.Z>.<~.v~.w~.x~.=;.S'.y~.8;.e;.z~.6b Be pb pb Ob se #e {g Yb Zb ^f vd vd :f xe yh +l rc nc nc nc ^# ^# ", +"G= p9 G= 0' 0' = + # = 0' + K$ + ;b R@ # 0' 0' ]& + # 0' ' $ ]& 0' + + 0' L$ $= . ]& + # $ $ + ]& # + > |* & $ - S$ . $ # # . - $ 2 ; T@ U$ | U@ ' 0' + V@ o! & - Q$ ; & ] ' Q$ ^ ~ $ > N$ 05 S$ ) * | ## : 8- ~ 2 { H= d ) | } N$ X@ X@ X@ | d ( 6 ( } ~ ( ( d 2 { 2 $# 2d j } 5 q> ,# J= &# 7 3] ,# 3] V) ,# 9 5 9 &# L= e b e n ~# W$ 0 {# c L= r 2, 2, s c L= a' ,> 4* L= r Y$ u ]# Y$ m 4* F= ^# G ^# {& ;) :# 4* {& z b' w 1Z F= $S F= '&.z z a7 a7 #.T^ c- T^ a7 H$ n! O@ 2Z n! 1& Z .@.M V >z v@.4>..@.I~.5 .Z..W!.I-.p=.aV A: oY A: A: *I y+.J~.(U u%.+Z Z .bV R%.)Q )Q +Z lP RT RT '*.G&.sZ e-.Z .n;.1@.hT {&.#).E` .` 6>.L-.9&.9&.4Z o;.a&.K~.f-.4Z s*.~W [#.!*.8 .s'.0 .z@.s*.U,.7>.U,.U,.Q-.P-.{*.K&.L~.a>.a>.L&. %.++.U%.{$.*` d&.d .M~.]*.E..* .p#.+#.p#.]$.I` @#.G$.+%.+#.-@.V%.|#.}T q#.c>.M&.IX N~.H$.HX M&.Q#.IX IX PV nV [W > .G .gX qW qW gX gX qW f` RV qW aZ oV ZT 1T 1T 0 .g h9 A_ h9 h9 A_ __ u^ Q] Q] __ 45 u^ Q] =^ u^ Q] 6< =^ =^ u^ 6< )/ w^ .- 0] 0] .- .- 1> .- .- .- d; .- F# t* 1> .- s& d! s& M# b% b% T. s& L# s& M# P# g; -+ &+ P# 4= #+ h% h% P# P# h% c).P# P~.Q~.R~.B& 3,.x;.B*.t,.j&.)).v,.B*.)).)).v,.A*.v,.e).!).:'.S~.u,.:'.~).->.->.:'.:'.:'.W-.p-.->.Z,.8=.:'.T~.[&.n$.Q&.[&.Q&.Q&.[&.[&.D'.OX D'.E'.[&.2!.U~.s-.-%.X-.X-.-%.+=.Z#.+=.+=.+=.2'.X-.X-.X-.X-.f%.{; f%.2'.H] 3'.{; 3;.{; 9$ H] V9 V~.W~.X~.@'.#'._).F,.p~.m).Y~.Z~.A!.[).`~. {.~>.<~._-.P=..{.+{.@{.#{.E;.D;.&;.${.Sa zf |b ^& . . - - . . > + . . - & N$ Q$ ; N$ | | & {c T@ + Q$ ; S$ & X@ N$ ] N$ 2 `@ ; 2 T- ] H= { > ~ 2 X@ 1 8- ) ) Q$ ^ ~ { ( | N$ | 2 W@ ( < ( } } : V~ $# d } $# ( 6 6 6 6 <& 3* 7 ,# 0 q> 6 a a Y> Y> i {# ,# c5 ,# d k 7 a n 0 K/ ~# c n L= Y$ % v r ),.p r q 1; ,> b' 1; h p r $S w q {& :# /U {& ;{.u w G 2; D ^# /# a7 #.G '&.z F= E $S '&.1& $T z K N V 1& AR n! 8* O@ c- 0S z . Z o*. V (#..@.P,._#.aV }Y L aV >{.*I E>.I#.oY {,.I#.k#.J-.G&.RT Z ..V RT #N RT R%.G&.9$.R%.lP +@.G&.+@.w@.3@.0&.$)..` .` 8).4..9&.d~.y@.:=.a&.4..,{.` .K#.r*.<+.^&.!$.S%.!$.N#.<+.v*.<+.t'.7>.U,.P-.|=.W*.|=.*@.U%.'{.*` U%.6@.u;.6@.~$.){.8Z d .b` =` d .+#.E..+#.b` ]$.]$.G$.+#.l-.]$.h$.'@.h$.+>.c>.M&.X,.^$.X%.G .,@.G .> .> .IX > .9+.AZ JX JX JX gX Q#.gX 9+.f .oV oV BZ rU @Y !R !R [U KN UP QQ oC lQ `T TV zO yO {S VK WK CI VK `L FM sK QG 'G Jx qC OJ Jx :K ,G 'k qC !{.Zf qC 3v 3v Zf Vi 3v }u Ye Bl o8 o8 )k Bl qo Rc Ye Vi 2#.Tx M9 .g i9 >0 8e x/ S3 Rc d3 x/ __ u^ =] Q] =^ Q] u^ =^ u^ =^ 6< =] b~ c! =^ /! -^ _^ x) a] _^ d; d; d; 1> 1> 1> .- d; 1> 1> 1> b% ++ ++ M# b% b% b% ++ b% .- .- #- E> 4= P# c).t& u* d).$~.h% P# P# h% P# P# h% c).~{.{{.,)..u,.S~.^{./{.~).Z,.:'.:'.T>.|!.:'.Z,.g>.:'.u!.*~.1!.Q&.E'.E'.D'.[&.[&.E'.D'.[&./` E'.2!.`,.s-.g).+=.({.-%.+=.+=.+=.x,.X-.X-.2'.F'.2'._{.3;.3;.a{ x,.4;.:{.{; T).{; |~ 3'.V9 <{.[{.}{.k).8'.|{.1{.2{.3{.Y).p~.4{.5{.[).6{.7{.8{.9{.0;._>.0{.3~.y~.$!.0;.I*.a{.7U Ig 0c zf Mg {g > = . . # - > $ V@ + $ * V@ * Q$ ; & Q$ $ & Q$ . *X > U@ [* > ; ' & ^& }* . S$ S$ & }* | H= P$ N$ N$ Q$ ; H= ; 2) - ] S$ X@ ~ ) H= ) [ J) { g{.X@ ) 2 1 / 4 +# | , [ 3* [ Y@ 1 &# /& ( 8- 4 6- < &# q> d ## i 0 a *# 6 ># i Y> ,# 3* a a 6 d ,# a 8x n ]# n 0 L= c y2 0 2, 0- c n^ h _# c{ ;= p m s> h `$ h w t 4* :# q w q :# {& z G /# ^# 2; F= F= t w ).z B a7 @ .a7 I 8* AR I E; p=.AR 8* z 8* .@..x ..@..@.4>.0S >z Z..I#.A: A: oY *I oY I#.oY ,*.y+.k#.+).RT ^P )Q #N RT )Q ^P +Z RT Z .Z .9X 7).H&.|@.{&.1@./!.{&.CX .` o;.4...` o;.a&.y@.4..E` 3..4Z ` .f-.h{.8 .` .0 .!$.)'.z@.v*.c&.7>.i{.m!.}#.n!.n#.j{.(!.++.-).*@.1+.*@.p!.8Z xZ K>.d .-@.* .8Z * .E..E..-@.* .E..* .G$.+#.k{.F$.1=.r#.^$.1#./$.M&.7+.r#.X,.> .L` 7+.> .G .L` Q#.AZ AZ PV 9+.nV JX PV qW JX PV ZT lQ +Y QQ lQ UP [U UP UP YO b! 1> H# F# 1> 1> %~ d; d; ++ t* b% K# N# ++ b% ++ b% ++ ++ + `. l{.h% h% -+ -+ P# h% h% h% h% h% -+ -+ P# ('._'.-+ ,).=>..S~.Y,./{.:'.~).Z,.~).:'.->.m{.Z,.:'.m{.n{.~).Z,.*~.[&.[&.Q&.D'.D'.D'.D'.D'.[&.o{.E'.p{.ha q{.3!.-%.X-.7,.r{.X-.U>.X-.x,.X-.X-.|'.A;.({.2'.a{ 3'.s{.<@ ;~.3;.9$ t{.u{.<@ !@ #; ^).v{.w{.8'.x{.o~.y{.z{.8'.A{.8!.B{.a'.(: C{.D{.0;.+{.e,..;.8;.G;.G;.0;.D;.E{.Nb Ig *d zf Ob xa # = # Q$ . $ # ]& $ $ V@ > # $ + = $ $= ; > $ $ $ > > %= ; & > . S$ S$ - U$ %= & ^& ' & Q$ U@ Z! b{ N$ Q$ N$ T- | N$ ^ . ; ~ N$ J) ( 2 2 Z! `@ | X@ ) { J) { N$ ( Z! 1 { | &# ) Y@ } &# *# *# X@ { $# /& } ( $# 6 } d } } 6! $# } a' a 6 6 : a {# 6! ~# j { i 0 0 0- k k ~# c _# o 2, 2* % s> Y$ ,> H{.2, `$ % h p ]# t m p 4* /# G Y$ {& $S |Z C ^# w F= '&.z F= /U B 1& z z z w 1& JW n! a7 #= n! c- I{.T^ Z .@.JW JW 1& .@.v@.Z..JW J{.5 .x .5 .iU B$.oY A: oY B$.W!.iU +-.BX K{.k#.^P ^P ^P G&.^P )Q +Z RT +Z G&.+Z Z .1@.w@.H&.0&.e-..` 0&.7` .` .` 4..9&.E` a&.+` :=.4..4..` .<=.#@.L-.E).<=.$ .r*.L{.z+.Z!.M{.U,.U,.N{.0>.t=.Y;.O{.L~.%Z #..Q-.L&.#..#..E .a .{$.M~.d .%+.8Z .%.+>.]$.X*.G$.F$.%+.p#.+#.4Y F$.h$.P#.=V r#.NV HX IX HX H$.L` HX ^$.L` H$.IX nV qW nV qW JX qW nV PV JX f` HG , .!R QV PV @Y UP YO ~S QQ YO 0 8e 35 35 35 S3 3| d3 T3 .[ S3 45 9~ u^ =^ u^ u^ u^ Q] =^ u^ Q] _/ /! 2{ s& 0] R] 1> .- d; .- 1> 1> y' ^' H# .- .- s& T. t* + b% ++ b% b% ++ b% `. I# O# h% h% P# -+ P# B'.-+ P# u* h% h% T&.P# *>.h% L).d>.').B*.M)..v,.S~.:'.~).Z,.:'.->.:'.S>.u!.:'.h>.g>.~).~).1!.[&.[&.[&.D'.D'.[&.E'.D'.E=.o{.2!.T~.=~.Q).3!.X-.X-.6,.Q).+=.+=.X-.-%.x,.x,.2'.ha }'.x,.X-.f%.f%.P{ Q{.f%.{; a{ x,.R* 3'.R{.S{.T{.().().M'.z!.z!.U{.P'.V{.`~.W{.X{.|! Y{.Z{.F;.0;.`{.G;.b!.9;..;.e,.2~. ]..].9b Lg zf /g Zb Zb Zb Zb ^f *e _f ue nc nc _f nc nc rc nc ub xe =d =d =d =d nc nc nc nc &&.nc {l lc # L$ > > . > + L$ + . ]& . 1* $ = > > . # T@ & > ] U) > ' . $ . # $ ; . = H= ; ~ > > X@ R$ ; & ] | U@ H= N$ } *# ~ N$ | | ~ /& Z! +# { 7- Z! X@ , | [ ## d $# } { Y@ 2 4 2 X@ ( } ,# 2 < $# 6 Y> 8 V~ V~ 6 7 ~# 6 ,# 0 8 V~ {# a j s> a $# 0 L= 0 e &].n n h ]# ,> Y$ r p p! s> p 2, ;= 4* ;= q `$ m G D `$ C ;) p Y$ E /U F= D @= C F= $S '&.*].z /U z {& /U .Y;.Y;.;].Y;.t*.>].,].{*.sY #..1+.*` L&.6@.a .*` L>.e$.& .d .& .d&.R-.E..p#.-@.-@.* .]$.-@.S-.G$.J` HS X%.F..9..M&.wl /$.H$.L` HS > .HX G .G .G .nV nV nV G .JX [W gX PV JX nV 1T H# H# H# .- .- 1> .- .- .- b% b% ++ s& ++ b% .- T. ++ L# M# N# E> 4= u* 4= l{.l{.P# c).h% h% c).c).h% ('.,).)].d>.,).v,..)-.!).!].->.->.A%.:'.~).->.:'.m{.Z,.|!.~].m{.u!.[&.D'.Q&.D'.p{.D'.D'.E'.{].=~.g).2!.E'.{].>>.Q).]].+=.-%.X-.X-.]].x,.-~.X-.R* G'.U9 a{ f%.A;.s{.^]./].(].|'.a{ 0$ ]; _].}- :].V).T{.<].9'.#'.[].}].|].1].1].h= 1].2].y% o+ 3].<~.<~.4].<~.D{.b!.n>..;.y~.J;.5]. l *d zf /g c Zb Zb ^f ue _f ^# G w ^# ", +"R@ I/ L$ I/ G= I/ I/ 5_ + K$ I/ L$ R@ 1) # ]& ]& = ]& k) % J$ = L$ + [* =' . $= }, + ]& > k) k) 5_ I/ . $= + > $= - $= S$ - . U$ - $ = > = Q$ ] & S$ * * & ' ] & P$ & ; ) ; U@ ~ & & & - X@ ] | P$ P$ | N$ { |* ; X@ | Q$ ' 2 +# $# [ [ ## < / |, X@ 2 d : /& X@ 1 { 6- `@ 6- D, *# ( 1 1 { [ $# 7 3* 3] d ,# 8 8 } ,# a 6 ,# a 5` 5 9 a k c k {# 0- c ]# c r L= r c L= Y$ ]# _# Y$ 2, p n `$ h ;= c s> y /# 1; t Z$ 4* 1; w *].G w t /# {& t 8$.z 4>..@.4>.B$.z .P,.5 .B$.:#.I-.y .c- _#.-*.0].BX oY (U )Q oY Q%.#N #N )Q )Q RT Z .+Z +Z RT Z .R%.G&.H&.G&.q*.|@.!&.D` R%.^,.4..4..9&.d~.o;.a&.9&.o;.9&.:=.pY a$.z+.<=.Y$.#@.!*.9).<=.S%.T,.<=.m!.Y;.i{.t*.B@.a].A@.Q-.#..*` _W %.#..#..%Z 6@.e$.b].d .8Z +#.p#.+#.p#.-@.]$.E..%+..~.p#.-@.]$.9..M&.V%.g$.G .G..c].=V L` G .L` pT L` /$.G+.PV nV gX AZ PV nV SW IS qW qW JX aZ JR pV JR vL YO JR .C'.('..t!.~).Z,.h>.~).Z,.m{.|!.D'.*~.[&.D'.D'.[&.D'.p{.2!.P).e].;>.E'.f].e].E'.x,.x,.}'.X-.X-.X-.x,.X-.-%.|'.2'.t{.a{ f%.f%.x,.}- a{ F'.R* g].9$ @=.P* %p h].i].+'.j].|{.k].l].m].n].V{.o].X{.7| h= p].E) q].r].s].t].<~.n>.<~.u].I!.H!.v].w].ic zf zf #e xa (f vd kc iE _f nc nc nc nc xe ub nc zh =d zh ub =d *e ub %e %e *e nc =d nc nc !.Qo 8w Gj x].DQ LT hW k;.'l &l y].TU 5g me me Az z].#t }q }q &o &o $].gk ]n `l OD A].}x B].KT JT kY ]j Dg C].{. R X P @% H S Q@ |; N@ @% S 8* G z N G ^# F= 1; 1; ", +"I/ BN I/ 0' I/ BN ]& ]& K$ # L$ L$ J$ # + ]& ]& + L$ = + # [* # p9 = + ]& k) + = ;b = > .( $ ]& = > > & ; . . [* U@ ' & |* . P$ - U@ N$ o! ] $= - * & . Q$ R$ U@ N$ $ R$ R$ S$ ; . S$ %= T- S$ U@ ; U$ S$ | =' ] ' X@ ~ & %= | %= ) { J) H= ~ W@ | } H= 2 $# { N' ( &# D, 5 +# 7 Y@ ## 2 } 3* [ 7- Y@ } ,# } d ,# ,# 9 0 a } 6 $# a k a 0 0 ~# !# 0 0 L= p h k K/ L= !# C; a' 0 *= h p 1; Y$ n t h {# 1; 4* p % -= b' r ^# /U ^# :# 2; 2; F= #] {& B z $] a7 a7 z ..@. V V (#..@.v@.t%.x .QT B$.y .z .D].oY E].-*.oY oY #N (=.*I #N #N RT RT ^P +Z RT +Z +Z G&.G&.G&.Z .R%.G&.Z .F].!&.!&.$)./!.4..4..E` 9&.E` 9&.4..4..a&.:+.#@.#@.z+.^&.^&.$ .s'.~*.N#.s*.T,.Y;.7>.G].v%.}#.g~.A@.K&.H].*` #..++.#..6@.#..++.++.*` * .d .d .~$.E..]$.p#.-@.+#.+#.]$.;@.f$.-@.V,.i$.7+.W,.HX IX G .L` L` HX HX IS Ix > .HX HX IX qW N` nV IS *T [P pT f` PV |I H# s& 1> ^' .- .- ++ ++ b% K# .- b% b% T. s& Y. K# %+ .+ .+ N# l{.5= l{.c).K].c).h% c).h% c).c).('.c).)].('.%~.)).B*.L].B*.v,.B*.A*.B*.B*.)).v,.v,.d].:'.:'.M].S~.->.->.->.~).~).)-.N].u!.:'.:'.g>.5,.D'.D'.Q&.D'.E'.E'.D'.E'.E'.E'.2!./` q{.2!.O].E'.X-.+=.g).x,.U9 x,.x,.x,.|'.x,.U9 2'.x,.v!.+=.V>.^@ !@ H] ;~.2'.A;.4;.H] P].Q].j].R].S].T]._).U].z!.V].4{.W].0!.5{.w+ i= `] P^ X].Y].Z].<~.7'.`].u]. ^..^.y~.+^.-j *d se .%e xe =d nc nc nc =d nc =d nc *e nc kc @^.ju #^.$^.Nf /y WM cE %^.Dt &^.Mj *^.;o UI UI =^.bL 5r 6r 5r 6r &o =o ~n ^n aw ou -^.;;.cU Jj y` dL _j ;^.>^.x$ F@ X L@ G@ J L@ S J A K@ O@ K Q@ 7* F G 1& /# t 4* ", +"jP ], ], <{ #S <{ J$ I/ ]& K$ 1) J$ jP ]& ]& + 0' R@ ]& ]& ]& J$ ]& = $ ]& V@ ]& $ V@ V@ = = V@ # $ R@ + + $= # V@ V@ E! S$ S$ $ = - U@ > !, > > X@ ] U@ ; $ * R$ *' ^& U$ H= . ^ Q$ Q$ > ^ > > U@ *' & ; U@ H= ; ; X@ ; { N$ | N$ ; X@ | ## g{.X@ ~ ## 2 Y@ X@ ~ /& ( $# O$ / 4 4 $# $# } < 8- ( /& 2 [ 5 e D, d ( a L= < d ,# ( < d ,# 7 a 0 8 n {# V- n 0- h r n r h r 0- ;= z: ]# q ,> 0- ^# -) h ^# W$ n t % ,^.p /# ^# t {& m F w w w q 2; F= w F= /U z z z AR ).F= AR F= Z 8$.n! JW z n! JW _+.>z V KW .@. V (#.5 .x ..@.z .'^.)^.:#.aV QT j#.MW ;*.B$.I#.(U .Z !^.(U _#.^P _M ^P )Q )Q ^P RT Z .G&.Z .7).+Z 3@.R%.G&.G&._=.+@.0&.^,.q*.E` 9&.9&..` 9&.y@.9&.E` ]&.b&.` .a$.r=.z+.<=.#@.<=.)'.#-.N#.#-.T,.t'.~^.K&.r;.}#..#.m!.%Z #..#..%Z 1+.++.6@.++.L&.d&.%+.K>.%+.* .E..* .w=.l-.p#.]$.]$.mV mV -@.3%.G .wl mV =V AM L` G .> .Q#.> .Q#.HX G .f` nV qW JX JX nV X%.>J |T PV SV _Q {^.}P }P |I _Q lQ ^ .- H# .- .- 1> K# s& s& K# R; T. T. b% T. M# b% `. `. + b).u* ^^.b).P# -+ h% c).w* $~.#~.c).('.h% /^.R~.k~.]{.B*.').B*.(^.)).v,.)).d].)).d].v,.v,.e).->.|*.!).:'.:'.t!.t!.~).->._^.:^.:^.u!.1!.m{.T~.Q&.n{.E'.D'.E'.2!.p{.E'.=~.E'.Q).ha E'.O].ha +=.}'.+=.]].<^.g).2'.X-.2'.X-.g).F'.2'.F'.e$ F'.F'.^@ :@ <@ b$ e$ a{ ]; [^.}^.|^.1^.2^.3^._).M'.X).U{.4^.[).5^.6^.B!.h= u+ 0!.7^.8^.9^.<~.Y].0^.u].a^.I!.G;.0;.b^.Ig {g Vb E-.Zb kc vd $e nc mc nc nc wd =d -d =d ub ub -d #H ub ub rc #H ub %e >e =d nc ub =d xe rc nc *e mc A~.c^.d^.=L e^.f^.$W i'.g^.h^.i^.j^.KL +O 'l +K +K AK lu k^.=o &o 6r To ]y nu ]n ^y dE l^.%&.xv kM UY kY _j vf m^.{. %. B$ D$ M@ Y T J H N@ z I N w w ^# P@ x t C t ", +"L$ =[ ], ]& 5_ ], #S 0' = X! * 5_ I/ ]& = * L$ 0' 5_ ]& 0' L$ ]& + ]& ]& ]& + + V@ . #^ L$ > H= o! % # ' V@ > & > . S$ ; ]& > . . z] & ' ] . > S$ U$ - . H= = U$ & . ~ - $ H= & . & ; > X@ ; ; Q$ X@ 2 ; ; X@ X@ %= U@ ; { | ~ - N$ | 2 [ ] & 8- H= Y@ : ( 1 $# Y> ( &# ## 6 [ 2 ## 9 ( <& 6 == d } &# ,# 6- 7- 0 q> 7 8 !# i # ,# 6 a L= 6 i ~# n W$ |& k C; z: n c{ n c{ `$ ^# c q Y$ p r L= n ,> -= 4* m V| 2, :# )> #] Y$ t $S w F= |Z /U #] z F= w G z a7 a7 a7 AR z I T^ n! O@ M M z .c- |# .@..@. V c- c- c- 5 ..@.4>.y .4>.*I aV SO oY B$.-*.B$.;*.:#.(U #N (U *I ^P 'Q ^P )Q RT )Q RT RT _=.+Z R%.e-.9X '*.H&.1@.{&.q*.7` 0&.4..9&.3@.4..CX 9&.9&.d~..` :=.a&.:=.` .o;. ..s*.T%.9 .U,.n^.T,.v*.N-.m!.G].0>..#.|=.t*.~^.%Z #..U%.++.*` % .{'.++.o^.E .%+.%+.* .8Z * .+#.E..v=.+#.F$.p#.p#.g$.p#.h$.HS M` 0..}T IX }T =V H$.--.> .e .L` IX nV IX gX [W !X OQ nV *T =Z [W *T ,V =Z HG AY #G KN QQ YO UP 0 Q] =^ d3 /] Q] =] =^ =^ Q] =] 9~ R] =^ =^ u^ u^ c! H# x) >^ H# .- F# H# 1> H# .- F# H# b% T. T. .- b% ++ + s& }> b% s* ++ t* K# K# s^.s* N# $~.h% h% c).P# c).h% h% $~.t& P# $~.T&.d>.t^.('.]{.u^.k~.v,.v^.v,.)).v,.)).v,.v,.)).e).~).w^.!].!).~).~).:'.~).~].n{.n{.1!.OX D'.1!.u!.T~.1!.D'.D'.E'.2!.x^.E'.P).R).+=.x,.D'.p{.{].2'.({./].X-.X-.y^.R* 2'.2'.x,.X-.x,.x,.;~.;~.H] b$ <@ 2'.<@ W% R* a{ !@ m$.z^.A^.<].().B^.|{.X).l].a'.C^.D^.l).y{.2].|! s+ 9!.E^.F^.G^.)>.8^.Z>.H^.I^.G*.J^.K^.L^.0c Bf E-.`b Zb iE iE ue $= # J$ V@ = $ $ > = # $ S$ $= . > > = - 1* $= = = ' N$ & - - i#.& ; N$ $ ^& ] T@ ; - ' > (& $ & R$ ; | S$ ] ; U@ H= P$ | { b{ | N$ }* ; | | ) 2] H= { ~ 2 R$ X@ Z! } ## [ | 6 d { $# < *# 4 { | 7- { N$ <& :& $# ,# 2* 3* Y> a 6 6 } V~ d } 6 ># tA *= 8 6- L= s> h ,# K/ k h n n^ h s> ]# _# n h c Y$ m `$ `$ 1; ^# b' 2; 1; ^# Y$ :# 2; /U p F m /U #] % w .4>..@.P^.p=.Q^.aV AX y .>*.p*.aV -*.B$.iU BX ^P oY k#.3d bV )Q RT +Z ^P +Z G&.R%.Z .Z .Z .hT H&.e-.{&.+@.hT 0&.3@.E` 9&.E` /!.E` 9&.4..o;.L-.a&.]&.z+.<=.!*.s'.S%.$ .s*.n^.7>.N-.#-.t=.U,.8>.W*.R^.K&.W*.1%.#.._W *` ++.xZ 8Z C@. %.d .* .8Z ~$.d .* .-@.p#.G$.8Z ]$.+#.F$.+#.p#.f$.K` 7+.nV F..}T Ix G .}T HX =V HS IX IX P#.JX 8@.IS HR KH pT >J >V ,V qW *+.AY YO JX {^.qT YO QQ ++ ++ b% b% ++ ++ s* K# b% T. .+ s& Y. Y. `. R; L# s* c).c).h% h% h% c).l{.c).c).c).c).c).h% h% t^.S^.v,.v,.T^.T^.)).d].v,.v,.)).v,.)).v,.M].t!.:'.:'.U^.~).:'.:'.~).~).m{.~].u!.E'.D'.Q&.5,.u!.n{.2!.E'.E'.2!.[&.2!.E'.V^.e].]].W^.2!.{].X-.X^.Q).+=.x,.s{.2'.X-.|'.@* X-.2'.R* 2'.R* R* R* f%.f%.<@ 3' 3' a{ f%.X# Y^.Z^.F!.`^.P'._).P'.y{.[). /.z% ./.'$ x+ !$ !$ y% '$ B^.`>.+/.@/.#/.7'.)>.e,..^.e,.$/.zf {g Yb {f %/./.~. +. i~ S M@ J M H$ I A G G z G N b' D :# M= m ", +"L$ ;b *) BN J$ 5_ .( I/ #S [n 1) K$ 0' J$ L$ 5_ K$ L$ J$ # = L$ J$ V@ V@ + ]& $ [* = # |* . L$ = . = # 1* > . # > |* & # > > o! & > Z, . . ]& ; S$ + Q$ . N$ ^& V@ - N$ ; P$ > - & $ $ S$ 2 2 > Ez ^ -.| | ) ; Z! { 1 N$ N$ ] ; 4 / ) N$ 4 [ X@ ; > { } *# 1 N' ~ ## ( ,# $# 2 d 6 ## *# a Z! 6 ( } ( ># 0 7 6- b ( a $# 6! ,# a q> !# g a 0 e |& n d ~# L= n 2, n^ Y$ h n^ h Z> 2, h ]# }& V| b' Y$ Y$ [# @= Y$ /# p /# #] 1Z '> G F= W) D m /# /U z $S w a7 ).z a7 z z a7 a7 8* T^ ,/.I 2Z 8$. Z O@ n! 8* .@. V .@.M 4>..)..@.(#.JW H#._#.aV _+.B$.-*.aV B$.-*.I#.yS '/.aV k#.oY )Q )Q +Z RT +Z )Q +Z R%.G&.+Z H&.9X w@.R%.<#.0&.hT 4..E` E` D` .` 4..E` o;.4..a&.a&.4Z :=.s*.#@.!*.~*.<=.z@.r*.#@.Y;.7>.7>.7>.8>.T,.#-.P-.u*.)/.x%.C .PW _W ++.#..*` {$. %.d .M~.d .b].%+.p!.E..d .E..]*.E..-@.p#.+#.mV ]$.Y*.(&.}T K` K` }T N~.IX HX =V }T IX IS HS IX IS pT PV N` wl PV =Z XT nV SV gX JR HG #G QQ ..'.1/.1/.0^.2/.2/.`].9;.3/.4/._b A~.Yb $e _f nc _f nc =d nc %e ub -d -d #H #H yh yh yh 'c )%.yh )%.yh )%.)%.)%.yh &/.#H jZ =d wh ub =d ^f 5/.ew 8w ni 7V 6/.Ro qu gO eE 7/.'B 1i ND [q #= N z 2; t ", +"R@ L$ <{ =[ G= ]& 0' I/ J$ <{ = # + I/ p9 + # + J$ # $ ;b + + ]& [* + [* . ]& $= V@ . + - $ + V@ $ ]& # . ; ; $ $ . = Q$ [* Q$ = L$ . 2) %= & * . & ] }* | | ; H= U@ R$ | . %= & ; ^ Q$ ; N$ ] ^ *' U$ %= ~ 2 2 2 %= & ~ N$ Z! ) ~ /& ) V~ ~ 2 ) ## Y@ ## ## 4 } *# [ &# ># B; ( } { 6 /& Y@ } a ,# d $# 6 6 7 6 3* ( 7 i e z: L= e n a k s> 0 n n !# s> c c n v n ;= `$ Y$ n m p Y$ `$ % 4* :# /# `$ m t F 4* D @= p 1; w ^# C z F= :# G G F= z z K 1& E E z '&.1& 8$.8* T^ Z V c- M V V c- Z V .@.4>..).t%.x .z .E>.aV L >*.B$.oY *I iU I#.(U yS J-.YX K-.a/.)Q RT RT Z .RT 'Q #N b/.+Z 9X sZ Z .R%.H&.{&.q*.^,./!.d~.CX CX hT .` 4..J#.3Z 9&.E` 4Z #@.z+.c/.h{.!'.#@.N#.9).s*.n^.U,.~*.t'.7>.T,..#._;.t=.i-.wZ a .C .E$. %.*` h2 K>.{$.* .%+.%+.E..* .& .d .%+.p#.-@.+#.b` |#. Y 1=.RW d/.IX HX oT 8@.2=.L` [W IX }T }T }T =V [W L` gX qW nV PV pT nV O&.nV qW PV PV oV }P ~S |I lQ 1T G UP LR 3P cN 1O 1I 1I CI 1I XA UK XA ,G JG Jx .- v) H# H# F# F# .- F# F# F# .- T. F# ++ Y. b% R; s* b% L# Y. ++ L# Q. K# .+ ^^.^^.R; .+ 5= c).#~.$~.$~.c).c).c).R~.Q~.f/.R~.R~.R~.v,.)).g/.^/.d].d].)).)).)).U^.d].v,.//.f>.~).h/.i/.t!.n{.~).t!.t!.j/.t!.n{.m{.1!.2!.D'.<'.E'.D'.k/.E'.E'.p{.E'.2!.2!.l/.x,.m/.p{.n/.R* s{.x,.X^./].2'.]].X-.x,.2'.R* R* x,.R* !@ @* <@ <@ !@ J- !@ 3'.4@ o/.p/.q/.p).r/.s/.x{.z!.t/.|! |! l+ 9> Fl Fl dz _i F+ F+ )$ u/.v/..'.w/.#/.<~.H^.0^.7'.G;.x/.}b ^f vd _f *e nc &e *e rc xe ub ub -d -d $c *e yh +l e*.)%.)%.)%.y/.'c ~=..$.e*.~=.yh ~=.=d ub #H ub =d {g z/.A/.w$.B/.#].7].7/.wv eE `y k;.C/.D/.2q E/.F/.#t #t #t To &o =o IC G/.0K aw RB eE eE |N |N JT 9T WY (j 3g NY H/.~. G@ ` S 1# S P@ +% z K@ M I C A G D t ~& D C ", +"V! <{ I/.s' 2^ 0' 0' I/ L$ R@ I/ 5_ =[ 5_ 0' ]& * + L$ 5_ + ]& #^ L$ R@ # + }, # ]& ]& . & & $ ; > # V@ J/.+ = S$ Q$ # # . $= . = - }* ' $ $ Q$ & - . * > - ; $ Z! V@ > $ ] %= > T- | & # T- R$ Q$ ~ |, & $ ] P$ H= ] [ ~ 2 ; H= N$ ~ 2 ## | | Z! /& 2 { Z! ( ## { } { } &# ,# D, d a ( } d 6 } ( 6 Y> d a a a /& 6! k j 7 -> } k L= c a 0 s> L= {# e K/ Vj e }& 0 r Y$ % K/ `$ K/.Vj h m `$ q q 4* D `$ m t w m `$ [# m s> w w :# $S E F= :# z a7 w z '&. #.$S 1& 1& 1& 1& L/.$T T^ m;.O@ n! V c- c- O@ JW c- .@..@.(#..@.4>.5 .iU aV A: ` :#.:#.oY *I oY (U yS K-.BX +-.+-.#N RT )Q _=.)Q +Z RT +Z Z .Z .-X R%.G&.+@.3@.3@.3@.0&.,$..` 4...` 9&.E` 9&.:=.E` 9&.y@.pY ` .b&.M/.M/. ..5Z Y;.......8 .N/.v%.S%.)'.0 .N-.N-.N#.M#.^W %Z 6@.*@.a .E .a .++.yZ d .'X gV * .E .% .d .]$.d&.& .O/.zY dX -V P/.d/.HX }T HS IS M` G..L` HX HX oT }T G .=V =V Ix HR pT pT nV PV 5Y pT qW ;Z nV HG XT Q/.#G !R .K'.)>.`].H^.H^.H^.+(.@(.]f Zb ^f ue (.,(.v@ G@ 9* Y T S M@ P@ B P@ I I I I D `$ G C 4* 4* ", +"BN <{ p9 ], =[ + I/ I/ ]& I/ 0' + K$ 5_ 0' ]& # # 5_ L$ 5_ L$ L$ = ]& R@ [* # > = $ S$ S$ $ . # # ]& V@ Q$ [* # > > = U@ # & ] . 2) U@ S$ Q$ * U$ Q$ ; %= ^ > ] > ^ X@ N$ S$ { |* =' U$ $ # ; Q$ ; N$ `@ | = N$ ' P$ ~ ~ ) *# , 2 R$ { ^ xS 7- < X@ H= ( 5 *# } } ( 4 1 ~ d $# 6 k 6 ( ( a 3* Y> 6 &# a 6 == 6 0 b ,# k ~# a ,# 3* 2* k a *= s> s> 6! !# 9 e Q{ n p r c Y$ s> 2, K/ ,> A~ h p n q m #| ^# Y$ |& t @= #| _# ^# /# ^# /# w C D /# u B F G /U w a7 G @= z w I I KW a7 8* =X .@.1& .@.1& V V 2Z V c- .).4>.v@.v@.AX 5 .J AX I-.aV MW *I '(.WX oY oY k#..V WX yS )Q )Q RT +Z RT +Z )Q Z .+Z G&.EN sZ w@.lP 9X hT hT +@./;.CX 0$.AS E` 9&.4..,$.3Z Y!.W;.` .:=.)(.M/.M/.s*.S%.<=.s'.N/.v%.c&.0 .0 .$ .c&.K&.@..#-.t*.I&.1+.U%.r;.*` ++.#.. %.d&.%+.K>.d .d .d .+#.* .+#.E..-@.]$.|#.; .3%.G$.e .5+.G..}T K` }T P#.=V G..IX HX > .HX Q#.PV Vw IS PV IS wl PV 5Y nV qW OQ PV HG UP }@ R* H] b$ !@ :@ :(.<(.[(.}(.|(.1(.2(.P'.z!.3(.y% s+ o+ dz 9> Fl 4(.On _i 3c L Xi 5(.n~..'.`>.w/.6(.`].0^.7(.x-.8(.^f P;.(g nc &e %e ~=.ub ~=.&/.yh yh yh )%.9(..$.$(..$.$(.:b :b :b 0(.e*.[R a(.:b .$.!=.)%.@^.3$.$c -d td H*.7V Jj b(.c(.~F wv eE 2G 2G `y ~F 2G d(.e(.f(.f(.l h(.WM KT JT QD %W }j `` dk ii ^F i(.j(.z@ ,= C$ P@ P@ U H$ I |{ N B N m `$ /# `$ t Z$ ^# t ", +"]^ #S jP J$ G= BN p9 I/ 0' I/ + R@ BN 1) 0' 0' # Z, K$ 0' + ]& ;b = ]& + # 5_ . > Q$ Q$ ' $= ]& L$ # * . V@ + Q$ . - S$ Y! ]& $ . k) & U$ - ,Q . ; = & & . P$ H= | X@ & | ] & + - ; ' ; N$ Ev U@ ^ | S$ ; ] Q$ ; U@ 2 ) T- ~ N$ X@ [ 2] ; # 2 P$ 1 [ | 4 => ( 7- ~ f] /& d 1 d $# 6- V~ d } 6 D, V~ [ 5 ( 3* 3] } $# 0 7 6 $# 9 q> 6 6 q> d ,# e 0 k 6! K/ 0 ~# ~# L= ,> W$ ~# n h n^ ,> `$ ~# n ,> ,! m /# p 1; n b' ,! /# m /# w $] xE w 2; 2; B C` $S z B '&.F= w w @ .F= z z A$. #.$T F= 8* V L/. Z 1& O@ M .@..@.4>._+.4>.5 .:#..@.3# Z..Q SO p*.MW iU aV k#.SO oY b-.,*.3d ;$.(U RT RT +Z )Q RT +Z RT Z .+Z G&.G&.Z .|@.<#.0$.+@.1@./!.w@.3@.CX /!.9&.L-.E` a&.a&.4..o;.f-.:=.9).=].c/.k(.l(.c/.k(.9).v%.M#.!$.7>.N-.s*.P-.x%..#.K&.L~.m(.%-.s;.n(.*` {$.d .o(.E$.E$.%+..%.L>.E..* .* .E..* .%+.p#.+#.g$.3%.c` F .G..e .y%.HX IS IX 7+.HX HX G .G .qW IX IS nV [W qW JX gX nV PV #G

J 5M -J 5M |I 8 o8 n8 Ye Vi Q5 o8 Ye a3 o8 o8 4v |c Td ]: Sd Td ]1 M} O~.R4 ,/ ,/ ,/ /] ,/ 9~ ,/ 3| /] =] r~ 9~ =^ Q] Q] =] =] Q] Q] D> D> =] Q] ]' .- H# y' H# v) H# F# 1> S. F# F# H# Y. T. F# F# .- ++ Y. L# ++ Y. Y. U. s^.Y. .+ T. Y. R; c).~/.$~.c).$~.$~.~/.l{.$~.#~.c).c).s(.c).t(.]/.L].d].T^.%~.v,.)).d].)).)).d].d].)).d].M].t!.n{.u!.u(.:^._^.n{._^._^.n{._^.v(.n{.E'.2!.E'.D'.p{.n/.2!.E'.p{.p{.2!.p{.P).t{.]]._/.p{.w(.y^.V/.R* 2'.ha ]; x,.J- v!.x(.H] v!.H] g> J- ]; R* s; s; b$ y(.z(.}(.A(.|(.B(.C(.o~.V].3(.D(.A- '$ 9> dz Fl bO .F(.6(.6(.2/.0^.)>.b!.h^.Zb vh 0' + > + # . > $ > . > + - & =' |* + $ o! | . > U$ N$ ; X@ %= U$ S$ S$ > %= o! & T- H= Q$ S$ | ; ) S$ ; $ ^ ] ~ 8- ~ N$ U@ 2 R$ 7- { [ xS [ W@ | ( ~ { 1 U@ 05 *# | ; /& Y@ $# 7 1 a' V~ 4 8 $# Y@ D, $# N' ,# 6 a 8- 0 ># q> 7 a Y> } a 7 ,# a q> 2* c z: ~# ~# 0- 0 ~# c &].n L= |& 2, Y$ A~ c i ,# ,> r n q Q(.Y$ Z$ b' s> /# 4* 4* q $S 4* 2; G /# t E /U F= G C` E t *].z C` z AR a7 1& x 8* a7 AR 2Z c- Z 2Z .@..@..@.t%. V .@..@.x . V =X p=.y .(U I-.H#.*I *I oY iU oY I#.k#.RT iU (U a/.)Q +Z )Q Z .+Z RT RT G&.+Z +Z 3@.Z .|@.R%.e-.{&./!.3@.{&.AS hT .` 5>.L-.4..,$.a&.o;.L-.:=.<+.r*.,{.k(.M-.T,.U,.R(.8>.i-.G].m!.U,.t'.>].w'.U,.}#.*` 1%.x'.S(.L&.++.{$.++.#.._W %+.C@.]$.E...%.E..8Z E..E..+#.* .p#.I` F .E..F .;V e .qU >@.HS ,@.=V =V L` G .HS HX r#.HX pT nV nV qW pT IS KH

H# ++ U. b% T. Y. F# T. Y. .+ .+ Y. + #~.T&.U(.c).$~.#~.#~.#~.U(.#~.#~.Q~.('.$~.V(.W(.i~.X(.}!.g/.v,.d].X(.d].d].)).U^.d].U^.//.:'.N].m{.Y(.t!.n{._^.Z(.n{._^.`(. _.E'.2!.2!.2!.2!.V^.O].E'.E'._/.2!.2!.V^.p{.t{.]].p{.2!.O].+=.R* 2'.2'./].V/.R* 2'.R* J- R* J- ((.R* J- :@ R* ]; !@ @* P# ._.r>.q/.+_.@_.#_.z!.$_.%_.s>.5^.s+ Xi Yr Yr UN ^R ot On 2K On v+ &_.*_.p>.F(.`>.`>.w/.K'.Z].=_.lv ub xe %e %e &/.xh yh )%.e*..$..$.:b 9(.:b x&.9(.H(.x&.9(.;c ,c H(.:b ~%.x&.H(.:b .$.)%..$.e*.@^.+l -_.;_.>_.,_.'_.)_.!_.~_.^y [x ou dw ou {_.]_.^_.9w 9w #t |* . S$ - > $ ^& S$ = N$ . S$ . | $ . . ^ T- ; > & Q$ X@ ] R$ ; ] & & ~ ^ N$ H= ; U) 2 ~ - 2 P$ ~ | 2 N$ U$ | ; U@ X@ N$ ] | *# [ [ | { ) ) D, 1 6 5 } } ># ( : d :_.## $# Y> $# :& ( ( ,# ,# b a ,# } ~# i 7 7 V) z: c 0 k k ~# 0- r !# 0 ~# ~# z: s> E, s> c h n `$ s> `$ Y$ q p `$ b' % `$ q s> p w u #] E /# % /# E 2; /U (# '&.F= a7 /U z a7 a7 z n! 1& JW z AR .@. Z O@ 1& V c- c- .@. V 4>..@..@.x .v@.v@.5 .*I Z..I#.i5 *I *I -*.*I <_.(U +-.[_.(=.,*.^P RT )Q RT RT ^P RT +Z Z .RT |@.G&.H&.'*.+Z e-.q'.CX $).AS /!..` CX 0$.9&.J#.a&.9&.X;.a$.r*.Y$.X;.}_.|_.r=.)'.9).Y;.t'.Y;.I>.1_.I>.2_.g~.m!.{*.U%.3_.L~.L&.*@.6@.++.%Z oW nW &` xZ %+.& .%+.* .E..-@.d .%+.E..-@.o#.jV pU b` 4z 0Z HR K` =V HR }T HS 0..}T }T =V M` =V !X PV nV IS pT [W HR =Z >V

V #G YO QQ LJ QQ S. S. F# H# F# F# F# O. H# Y. Q. F# H# T. W. R; Q. ++ F# Y. ~/.5_..+ R; U. $~.T&.$~.$~.K].$~.#~.$~.#~.$~.~/.#~.c).]/.6_.7_.8_.]{.U^.M).}!.)).)).)).v,.d].d].d].U^.M].9_.9_.t!.Y(.0_.a_.t!.t!.N]._^.`(.x^.2!.2!.E'.D'.2!.e].b_.c_.2!.2!.p{._/.V^.W/.n/.e].3!.e].t{.R* 2'.X-.R* H] R* x,.x,.2'.2'.@* 3' d_./; [/ 0$ n, R* 2'.4' :/ e_.7!.f_.g_.h_.x{.y{.i_.j_.k_.>$ 8> '$ qt cz .B bO $q ot 5H tQ On l_.m_.*_.F(.n_.o_.`>.7'.`].p_.,n ub %e ub ~=.'c yh .$.e*..$.:b :b :b ;c H(.,c }i _N Ac YN YN Ac tb }i ~%.x&.}i ,c :b !=.0(.e*.e*.q_.r_.s_.t_.R!.`y ]n u_.^y tv ^y [x ou vv v_.]_.w_.O(.O(.x_. - ^& = . - . $ ; > - & & ^ . > | Q$ . - N$ $ o! & # ; }* ] ; N$ ; - ~ | & Z! *# ~ Z! [ [ [ ; [ 8- X@ Z! [ N$ | { X@ ( } < } [ $# Y@ Y@ Y@ 3* [{ ( 6 1 } d $# 6 b d 6 9 < 6 6 k } e J= 6 k 7 3] c a 0 L= k h h n L= Q{ h Q{ n Y$ 0- n % s |& `$ c{ c q Y$ n^ u ,> v r ;) C {& ^# /# G D @= G F= t F= F= z F= #] a7 z a7 1& z I Z I KW ). V Z T^ a7 JW T^ JW c- t%.4>.4>.4>.0S v@.>z (#.B..aV iU *I d{ iI iU (U aV aV ^P .Z E>.yS ^P )Q )Q )Q +Z +Z +Z )Q G&.+Z 1@.G&.+Z 7)._=.R%.$).0X 3@.bV o;.CX .` d~.E` E` E` ]&.o;.f-.E_.#@.)(.X;.F_.X;.)$.i-.9D N{.!$.v*.m!.I>.1_.G_.u=.H_.j{.I_.et L&.L&.#..xZ _W _W DR *` 6@.8Z * .o#..%.%+.p#.%+.E..+#.E..mV -V pU Y J` oT M` NV 0..HS IS > .=V L` L` [W [W }T HX PQ KH pT }T IS PV JX *T

Y. T. W. L# Q. T. U. Y. Y. Y. Q. ~(.5_.J# .+ J# M_.$~.M_.s* l{.$~.$~.#~.$~.#~.~/.#~.t^.8_.V(.{/.T^.g/.)).)).N_.)).v,.d].d].d].U^.d].d].X(.t!.j/.~).N].~).O_.0_.(/.N].9_.`(.P_.x^.2!.1!.D'. _.1!.f].Q_.{]._/.{].p{.l/.n/.p{.n/./].@* ^].2'.@* :@ x,.2'.t{.2'.<@ e$ R* W% R* <@ W% W% W% }- P* g> n, R_.S_.T_.p).U_.V_.X).{~.$_.@) l; V; )$ 8> m9 pj cz .B 4I 4c On zT $q 8> T{..(.p>.`>.p>.o_.`>.F;.W_.X_.zh xh yh )%.!=..$.!=.Y_.:b :b x&.~%.~%.Z_.he Ac zc !%.$n >c $n >c !%.tb tb zc hE x&.`_. :.Y_.a(.3$..:.A/.6/.+:.@:.u_.^y #:.cw ^y AK tv fk $:.%:.&:.*:.=:.-:.`y bw ~n ;:.:.,:.'. +. X +% +% O@ I D G G D G /# C ,! m w 2; ,> ", +"L$ R@ R@ J$ L$ BN G= I/ I/ I/ G= 0' I/ I/ * =[ 5_ = 1) 1) ]& ]& V@ ]& L$ $ V@ ]& + * $ . . R@ |* 1* > $ V@ . ' V@ . ' ]& # = $ $ $= ' S$ > > + $ $= . $ }* U@ & > . # > Q$ ] ; P$ T@ ~ ^ o! | + U$ ) 1 U$ S$ . . =' & | ; ^ | ] & 2 2 [ R$ %# X@ H= | N$ { X@ ( 1 ## / < d 7 ( 1 -.( d { 6 ( { ( ,# <& 6 6! 6 &# 6 a b ,# 6 6 6! 3] Y> a 0 L= 8 0 n 7 L= 0 c ~# 0 e ~# ;= n 0 a o _# n 2, L= V| u ^# s> `$ q t s> D /# $S z C 2; E w G b' 1Z F= a7 G z /U F= z '&.'&.t K T^ a7 2Z a7 2Z a7 V T^ JW a7 JW .@.4>.J{.v@.2Z 4>. V M 4>.(#.4>.t%.x .5 .oY *I k#.*I (U *I XX y+.(U a/.)Q RT #N RT +Z RT ^P Z .RT Z .!&.G&.RT F].G&.':.+@.CX '*.E` hT CX 4...` E` .` +` o;.:=.#@.<=.)$.3..^&.M-.<=.):.<=.!$.B .t*.<=.t'.m!.2_.H_.f~.!:.t=.r;.*@.a .#..#..*@.nW DR _W {'.d .O/.%+.{$.X*.* .* .8Z p#.I` P/.RE 4Y I` @#.oT 7+.;V >@.HX ;@.HS HX }T }T }T =V }T M` HR HR AM HR PQ IR |T *T

.u].3:.td ;g [R .$.a(.;c $(.~%.H(.4:.!%.k..lA !%.!%.!%.>c >c Q$.@$.~#.< .o%.o%.Ac tb !%.Ac YN 5:.!#.:b 6:.7:.gE R!.xN 8:.u_.JC ]n ^y tv tv vv 9:.0:.a:.b:.`H c:.Fa _` )g 3j tv ^n uv vv [x ou eE pu |N KT $W .kh =t WY ~j +m _*.{. E@ E@ |; P@ S E= I C t N G C D t `$ /# m w ", +"*) G= BN 9| jP jP ]^ I/ 0' I/ I/ I/ 0' 0' + # ], ]& + # 5_ J$ # .( $ + 1) . . + . k) $ }, & . ' $= + + 0' V@ Q$ $ U@ . > $ # > . $ - * = Q$ # $ (& - U$ [* Q$ $= U@ > S$ ; N$ & W@ H= . ; ; ' | 4 %# > ~ { 2 N$ ~ | Q$ ; ^& { 2 | } ; ~ 2 H= X@ ; & ## { : ## I= *# d 6- / { 6 < d d 7 ## } } 7 } 7 7 7 $# 7 6 [{ b c6 7 n 5 6 a 0 0 b ~# L= L= 6! j L= k {# c 2, ,> ,> t' 0- n ~# p s> Y$ m Q(.`$ ;= s> % w 2, % 1Z C w C #] :# F= G :# E #] E .4>..@..@.e:.QT x .5 .AX iI oY iU I#.A: aV A: BX X!.I#.oY +-.G&.RT )Q )Q )Q )Q RT G&.Z .Z .G&.Z .R%.Z .e-.0&.hT 0&./!.q*.4..W;..` 4..a&.4...` 4..` .4Z `X ` .7 .B .#@.`X ~*.!*.N#.8 .S%.T,.T,.m!.f:.s;.g:.a].a>.a .*` *` *` _W cX +..cX #..{$.%+.p#.& .%+.* .K>.%+.* .p#.E..@#.-V p#.E..mV oT G .3%.i$.HX 0..AM AM HS HS GR Vw =V HR pT nV [W |T vO HR YL FR JJ

8 Q5 Ye n8 n8 n8 n8 Ye o8 n8 Q5 n8 n8 Sd R4 o8 Rd c3 |c M9 R4 M} K0 ]: 9~ ]! ]! y/ =] 9~ 9~ =] Z) 9~ 9~ ]! =] 0~ 9~ 0~ y' S. D> 9~ `= F# F# S. S. F# S. F# O. F# F# O. S. F# L# S. S. U. Y. Y. Y. Y. Y. T. h:.Y. J# r& p- 5_.~/.c).R/.t& #~.#~.R/.U(.#~.U(.#~.$~.i:.f/.j:.k:.]/.]{.U^.U^.u^.U^.d].U^.d].U^.X(.U^.(:.O_.9_.:^.Y(.l:.(/.a_.`(.:^.~).`(.n{.P_.x^.2!.p{.k/.p{.p{.E'.O].2!._/.2!._/.e].W/.m:.4'._].t{.t{.t{.x,.x,.t{.J- R* |- b$ H] !@ J- X% |@ !@ W% a{ @* H] &* n:.o:.T{.v{.7^.1(.X).z!. (.@) ;$ n+ y% y% z- qt UN hZ p:.-P j_.*_. ,.p>.*_.*_.F(.6(.q:.r:.L%..$..$..$.;c H(.x&.Ac Ac Ac o%.>c fw +$.s:.o%.~#.^@.l@.^@.l@.@$.@$.< .t:.>c o%.$n tb ~%.~%.!#.I(.u:.v:.7].w:.x:.y:.^y ]n |j ^y u_.i!.$:.z:.A:.N(.B:.C:.;c 4:.A/.AK cw |N gH |q nu 1q ^y AK .R S {F KT (Z KL dL ju D:.E:.A@ V C$ P E$ K@ Q@ A Q@ z #= /# 4* {& G m Z$ p % ", +"L$ J$ jP 9| I/ #S I/ R@ L$ ]& 5_ I/ I/ L$ 0' = + ]& ]& R@ + ]& @ # T@ L$ L$ Z, + $ $ $ = ]& - + ]& $ V@ $ Q$ & ' H= H= $ - . . & E! = > > > =' - & * + S$ }* + > - U@ N$ . $ o! J) ^ $= & N$ Q$ o! ) Q$ ' Z! ) ; ] | . Q$ 4 Z@ 2 4 | { ~ [ *# ; g{.{ Z! [ < /& F:.) : 7- 1 2 I= 6 +# d Y@ 1 8- X@ d ( ## 6 *# d /& $# 3] q> 7 a Y> 0 ,# a e 0 k 3* 0 |& ~# a n L= h |& 0n ,> h 0- 0 Y$ h q p 1; r Y$ 0 q m s> /# t p Y$ m /# w ;{.w /# /U :# G /# /U #] /U /U F= E '&.1& '&.a7 z I {& 1& 8* AR V 1& c- 8* T^ I 1& V O@ m;.4>. V c- .).v@.-*.SO A: SO iI y .G:.>*.SO p*.H:.I#.[_.zS (=.+-.^P R,.RT )Q )Q )Q )Q +Z Z .Z .G&.Z .+@.'*.3@.{&.+@.AS $).4..D` q*.E` .` 9&.}%.]&.+` ]&.z+.z+.` .9&.I:.<=.!*.9 . ..B .!$.S%.7>.T,.Y;.J:.>].w'.K:.a]._;.%Z a>.*` a .nW nW a .E .& .u;.8Z L:..%.E..8Z %+.d .E..c` p#.|#.p#.p#.mV L` L` -V |#.HX e .IX =V }T L` =V }T L` pT IX IX ]u HR IS HR IS YL cJ *T QV GH 1z _Q LJ YO .G :L }P !/.-J vL wL LR 8 'k n8 o8 Q5 n8 a3 n8 Q5 n8 o8 n8 Sd o8 S4 J_.o8 R4 Q4 A_ ,/ M} ,/ M} 9] ]! 9~ 9] ,/ =] 9~ =] M~ 9~ 9~ =] 9~ =] ]! 9~ (^ a~ H# D> H# F# D> F# S. F# a! H# Y. O. O. J. Q. R. - Q. S. W. Y. T. Z. L# Q. Q. Q. ~(.M:.X. + R/.R/.c).~/.K].N:.h% #~.U(.#~.M_.$~.s(.t^.s(.](.O:.]:.T^.d].P:.N_.U^.X(.U^.d].)).d].U^.Y(.Q:.a_.t!.9_.O_.0_.a_.~]._^.(/._^.n{._^.`(.2!.2!.E'.x^.k/.Q_.R:.2!.p{.l/.l/.e].g).W/.n/.n/.t{.U/.m:.::.W% t{.R* 2'.W% e$ H] R* !@ x= R* |@ J' d$ 4' e$ S:.T:.U:.A(.V:.k].W:.l).p~.t/.|^ t/.-$ =; >$ /: |K 3U aO X:.$q ot &r u+ )$ Xi Y:.C,.~>.*_.*_.D,.F(.Z:.`:..$.$(.Bz }i ,c tb zc zc !%.>c Q$.Q$.~#.~#.fw 9#.l@.l@.U@.p@.A#.0k U@.l@.~#.< .< .o%.+$.tb P$.~%.Y_. <.6].hW 8:.!_..<.tv ]n B:.dw kh +<.@<.#<.@<.$<.%<.&<.*<.=<.-<.;<.hA |j mu 6r mu ~n ^n Wo 3q eE DV )B /y 7V kh `` ><.,<.!. R D$ Z M@ M 4, Q@ N N M t `$ N N C Y$ D m ", +"R@ ]^ I/ BN #S #S I/ R@ R@ L$ I/ 0' 0' 5_ ]& * # 5_ p9 ]& # + + # + ]& ;b # # ]& ]& + + + # Q$ + = & & S$ ' S$ o! #^ . |* > > U@ U@ = + |* |* $ > - $ T@ U$ & > > R$ ; N$ U@ U$ (& H= Z3 - = & & U@ ] f] T@ | 2 | ' | %= Z! | N$ 2 ## 8- { | Q$ Y@ Z! N$ - | | N$ N$ ~ 2 ) [ X@ / $# } ( D, D, [ / d ( d 7 ( /& ~ D, V~ [& 7 ~# ,# ~# k V$ 5 0 ~# <& 0 g 0 !# i s> n n j k s> K= n n n V| c{ h 1; p q s> n y h 1; ;) `$ t p ^# 4* ;{.G `$ *].w @= F= z F= D F= /U :# F= F= ).a7 N 1& '&.1& N@ I V c- V $T 8$.c- V 2Z '&..@.t%.o^ T^ x .t%.z .AX B$.iU i5 4>.'<.B$.iU iU aV iU A: +-.k#.+-.,*.@-.+Z #N )Q )Q +Z Z .Z .RT R%.R%.R%.1@.G&.0&.0&.3@.'*./!.CX E` hT a&..` 9&.9&.4..9&.` .f-.#@.z+.)<....!*.B .$ ....z@.S%.)'.!$.)'.!<.t*.'{.m!.W*.@..a .C+.1%.++.nW _W a . %.d&.++.8Z d .& .%+.d .%+.%+.8Z * .p#.E..f$.f$.RE RP AM IS -V d/.=V oT IX > .=V HR HR [W HX ]u Ix Vw IS PV HR IS *T SV

c$ /<.(<._<.:<.U:.`^.W:.B{./~.<<.`/ E^.l; MH Fl 8> .B |K UN dz /X uK Yr 9> m9 On |^ m_.F(.D,.[<..(.*_.o_.}<.-_.zc Ac !%.!%.!%.Q$.< .< .@$.@$.U@.^@.U@.S+.U@.S+.S+.l+.aK >+.2x U@.p@.0k 8*.lA ~#.fw >c zc tb }i |<.B].1<.2<.3<.4<.]n |j ]n ~F 5<.6<.7<.8<.#<.$<.9<.0<.9w 0w a<.b<.!s #t * }* + Q$ # # Q$ = ]& $ & *' - > ' . > > o! Q$ ^ Q$ = U@ > Z, - . N$ $ > ; ' & U@ & H= > + . X@ ] & Q$ ] ] & ;# N$ & o! R$ U@ ; Z! | W@ N$ ) W@ X@ : - N$ 5! 2 | | N$ /& d X@ 4 { *# $# } 2d b 6- J] , 1 { 5 6 } -# 6 b Y> } 7 d ,# a k 9 b g q> 3* z: q> k {# 3* Y$ n a ~# k ~# h z: d<.,> e<.h l r h 1; 2, s> s `$ 1; y ^# /# m D 4* D y }& *].2; /U a7 G /# #] F= C` z G a7 '&.'&.a7 $T a7 a7 T^ c- T^ V H$ a7 Z V c- 4>..@.v@.(#.4>..@.t%..).x+.t%.(#.B..A: z .x .-*.I#.WX oY (U oY #N yS oY ^P ^P ^P ^P ^P ^P )Q +Z +Z Z .G&.+Z R%.'*.Z .!&.0&..` 1@.8).AS .` hT /!.o;.4..9&.4..E` a&.` .pY ` .f<.Y$.#@.......Y$.z@.z@.$ .g<.c&.1_.1_.T%.T%..#.w%.%Z a .%Z ++._W *` #..6@.++.% .& .8Z * .%+.* .8Z 8Z 8Z * .%+.* .p#.eX zY AM AM HS }T }T IX }T G .e .oT GR Ix pT }T Ix IS }T HR HR Ix IS XT [P OQ *T

8 J0 oj Pk J0 J0 Q5 n8 Z< Q5 n8 n8 Z< J].Q5 Q5 L9 a3 S4 R5 Q5 {b 0! 0! ,/ A_ 0! 0! <> 0~ 9~ q~ 9~ 9~ q~ =] ]! ]! {~ { 9~ {~ z! 9~ ]' F# F# H# D> S. .- O. O. F# S. J. F# F# O. S. T. F# S. Q. F# Q. Y. Q. R. Q. T. Z. W. R; h<.i<.^^.U(.#~.#~.~/.U(.j<.M_.#~.$~.#~.j<.k<.9,.i:.8_.](.l<.k:.X(.X(.)).m<.U^.U^.d].u^.d].U^.X(.n<.o<.:^.9_.~].n{.t!.0_._^.]<.p<.v(.`(._^. _.E'.p{.2!.E'.p{.l/._/._/._/._/.t{.U/.U/.:@ /].R* @* t{.R* q<.R* W/.e$ R* }@ J- b$ 3' W% :@ P* U9 d$ R* ^].c= r<.T{.s<.Z/.t<._).l).V].3(.3(.u<.=, y% BD Xi qt aO dz UN bO |K qt NH F+ @f v+ `^.k).k).q>.D,.C,.v<.w<.x<.!%.Q$.< .< .Q$.l@.0k U@.U@.U@.0k p@.m@.(@.y<.l+.m@.l+.aK 0#.y<.l+.l+.l+.$$.l@.@$.l@.< .t:.n%.tb z<.A<.}x 2G B<.C<.B:.vv .<.D<.E<.F<.8<.G<.H<.#<.I<.^_.ku J<.K<.rv # + $ > + $ . ]& = * P$ & V@ T@ . ' > ]& N$ > $ > > $ ; U@ & S$ ; ] ] . H= X@ | $= > Q$ ~;.' & N$ ~ > - ' | ^ | ~ N$ ; ~ ; 2 2 Z! | | 8- | { O<.X@ 2 X@ X@ { X@ 2 : { | $# $# ~ } 7 6 ( V~ d N' 9 3* ,# a 6 < 7 6! Y> 6 ~# 6! ,# 6 6- ,# 8 ~# ~# c a e e 0 ~# e h 0 L= c{ n^ `$ s> 2, t' K/ ]# b' b' 4* `$ /# 4* Q{ G#.~# u % 4* w :# :# w D D w G $S F= F= '&.'&.w C` P<.A$.'&.a7 1& AR JW N AR Z V $T T^ .@.O@ T^ 2Z 4>.4>.(#.4>.4>. V 4>.~,..@.C).*I B$.o*.-*.<_.:#.U;.B$.iU XX _#.I#.+-.+Z ^P RT RT RT ^P +Z G&.R%.+Z |@.G&.H&.+@.!&.0&.^,.CX 0&.0&.CX .` mL )*.J#.4..:=.+` 4..)(.]&.a$.f<.Y$.l#....5Z <+.z@.z@.^&.t*.^&.U,.Q<.t*.^W 0 .n#.*` 1%.%Z n(.a .++.& .% .++.C@.%+.%+.d .& .d .* .E..{$.8Z * .E..P/.J` E..; .5+.=V oT =V HS HS HS oT }T uP HS AM uP HR nV pT HR Vw Ix pT QV

J [P vL }P / &^ J0 >8 Q5 n8 Q5 Q5 n8 a3 Ye a3 a3 o8 L9 b3 ]: B9 d9 ,/ :} m{ 0! c3 m{ ,/ <> /] ]! 0~ 9~ 0~ 0~ 0~ ]! ]! z! ^! e/.9~ ]! ]! D> O. O. D> O. E# O. H# S. S. F# O. O. Y. S. ]' i' S. Y. T. S. R; W. .+ X. - Y. U. i<./<.R/.W. J# R/.U(.#~.#~.j<.M_.R<.#~.U(.U(.S<.U(.N:.T<.S^.U<.V<.(:.(:.^/.d].n<.X(.U^.U^.X(.X(.Y(.X(.Y(.Y(.a_.9_.a_.(/.9_.0_.(/.`(.`(. _.W<.X<.Y<.x^.x^.E'.p{.x^.p{.p{.p{.l/.n/.|- _]._{.n/.p{.l/.@* _].b$ b$ ]; !@ @* |- W% P{ |- d$ b$ 4@ P{ f$ Z<.e$ `<. [.3^.Z/..[.t<.[]._).y{.+[.;$ @) y- t+ h+ h+ o+ M& )$ bO UN ^R qt Xi Yi NH n; oJ Y{.k).s>.D,.D,.@[.#[.$[.%[.< .l@.l@.$$.S+.U@.S+.S+.>+.m@.(@.aK ]#.0#.]#.tf ]#.0#.4G &[.]#.#B aK m@.p@.$$.U@.l@.l@.fw < .>c *[.7].eE cw tv C<.yz ]n 0K =[.-[.;[.>[.A:.H<.0:.$:.,[.'[.)[.![.8~. V@ k) $ }* S$ *' # o! ;b [* & . Q$ $= > . $ H= N$ N$ Q$ ] N$ | . Z, P$ $ ; & ; Q$ 1* N$ o! Z3 > & ; V@ S$ 4 ~ ~ Z! | ~ | 05 U@ & Ez & [ 2 H= ] r2 S$ [ } 2] ~ ( 'W Z! 2 X@ | ( } /& /& : ## / < } d d d 2 } ## 6 x0 ( V~ 3* ,# 6 d b a M' } 7 k e 6 d *= 6 0 0 a n K/ c ~# 0- L= L= h r Y$ ,> 1; ;= % #| m 0- t ,> o/ q L= p q ;= t :# G w t :# 2; E 1Z #| '&./U /U a7 /U a7 z '&.T^ '&.P%.KW #= T^ ,/. Z !,.O@ c- .@.M n*.m;. V .@..@.{[.3# )^..@.PT v@. ` I-.(#.;*.-*.B$.(U -*.iI 5 .][.(U (=.^[.Z .+Z ^P )Q )Q RT +Z G&.Z .e-.Z .0$.+Z R%.R%./[.q*.^,.$).7` CX hT 4..5>.D` ]&.+` 4..o;.9&.` .z+.#@....` .Y$.B .z+.z@.S%.)'.6Z U,.t'.[=.vZ $ .N#.K&.w*.%Z s;.#..++.gV xZ #..*` %.8Z %+.%+.8Z & .%+.* .]*.%+.f$.qU 0..F .RE =V =V =V d` HS IS ; .oT IX HS HS Ix Vw HS }T [W HR HR [W Vw Ix vO YL uP SP ]! 9~ 8~ 0~ |= 9~ z! { =] ^! (^ y' a! S. M! { S. J. H# S. J. J. O. S. S. F# O. S. F# F# Y. - S. W. T. - R; Y. R. X. ~<.W. 5_._[.R/.U. I# .+ $~.R/.R<.R/.U(.T<.:[.U(.U(.S<.T<.f/.](.<[.[[.6_.X(.n<.X(.d].d].d].}[.X(.X(.Q:.Q:.n<.Y(.G=.0_._^.`(.`(._^.P_.^<.P_.P_.W<.P_.p{.p{.2!._/.2!._/.e].l/._].e$ t{.Y<.t{.L- ^].@* d$ P{ R* R* @* !@ <@ 4@ W% @* R* d$ }- }@ W% 2@ y] |@ |[.1[.E,.T{.2[.`^.|(.V].|^ n+ J* !w =; bz l; V; o+ qt Xi Yi UN aO .B Xi 4I -P $q bz E,.s>.[<.b,.3[.4[.e,.5[.l@.]@.6[.>+.>+.(@.c#.;r KB 4G r$.0#.r$._ .#B 7[._ .4G Vk _ .SZ _ .4G tf tf >+.(@.U@.0k U@./F zC j^.8[.=l [x |j 9[..<.bw |j 0[.a[.b[.b[.0:.#<.#<.0:.#<.$<.c[.d[.#t f f[.Oc 5# }; H@ H$ O@ M G z N= I F= G p z m ^# G `$ ", +"*) 2^ BN BN L$ I/ R@ I/ I/ J$ J$ ]& I/ I/ 0' #S R@ + ]& I/ = M$ + ]& $ + ]& $ = ]& + ]& L$ $ $ 0' ]& > # 1) . V@ = k) + + . 5_ # U@ - . + > . S$ ] ; ; > P$ $ & ] S$ %= > # Z3 # . S$ & ] ] . . > > o! ^ ; U@ H= ~ R$ S$ ~ U$ ; { 1 | & N$ { { X@ / X@ X@ 1 1 ;# ^ ( Z! 1 [ Y@ ( D, 1 Y> $# 7 Y> ( ( => i /& ( ( &# a k 1 0 Y> 7 9 b } 6 ~# V~ k tA ~# 0 n a 7 s> {# ~# ~# ,# g e h `$ {# n _# L= L= Y$ 4* q b' ^# s> ^# p -) `$ `$ t D y 1; m ;) /# F= G 2; {& B F= a7 .5 . Z .@.B).o*.(#.-*.0].aV B..p*.A: iU *I Z..J-..Z k#.BX Z .)Q 3d )Q +Z G&.Z .R%.Z .R%.-X sZ G&.G&.G&.R%._=.G&.'*.7` hT CX hT ~&..` G>.9&.CX 9&.y@.` .` .f<.l#....[#.z@.)$.z@.T%.U,.T,.T,.U,.t=.#-.M#.c&.K&.*@.#..1+.*@.6@.=@.E .1%.m(.++.& .%+.* .8Z 8Z %+.p#.d .E .E..|#.zY fS oT 4z oT oT 0..RP HS GR HS }T qU =V =V pT =V HS IS nV IS IS HR IR uP nK *T *T nK -J -J 1z -J 1z -J LJ }P LJ :L ^H BI BI _H fJ `L zn Lk JG XA XA Lk XA XA zB Ay oj ul [v 8 J0 >8 J0 Q5 Pk Q5 n8 a3 n8 n8 a3 a3 Q5 n8 n8 Q5 ): 25 ,/ I^ E1 g9 R4 ]: ,/ m{ ,/ 0! 9] 9~ 0~ ,/ 9] 0~ 0~ ]! 5% P] 9~ 0~ 9~ ]! C> (^ O. O. S. c, S. L. S. O. O. D> S. O. S. S. J. S. S. H# Q. Y. T. ~<.T. R. Q. Y. Y. W. i<.Y. i[.j[.r& J# ~<.#~.#~.#~./:.#~.R/.$~.#~.~/.j<.k[.:[.s(.^:.l[.k:.m[.U^.n<.n[.X(.X(.n<.X(.Y(.Q:.u(.o[.l:.~].P_.G=.p<._^.n{.P_.P_.W<.x^.^<.W<._^.2!.2!.p{.m:.2!._/.4'._/._/./].t{.n/.@* m:.m:.((./].n, @> ((.W% e$ R* J- @> d$ n, _].R* }@ W% ((.p[.p[.q[.r[.v{.<].s[.t[.u[.+[.3(.!- FO RS .B @) j_.r+ aO .B Xi 3U 1K Xi V; u+ x+ m9 Ib cz h_.m_.q>.v[.w[.w/.F;.Q=.l+.;r l+.(y o@.r$.4G 4G 4G 4G _ .X+.y#./@._ .=f /@.mk =f /@./@._ .mk SZ X+.l+.tf y<.6[.S+.p@.]@.x[.,_.y[..<.vv 9[.z[.z[.X'.A[.n0 B[.H<.7<.G<.C[.0:.8<.D[.,[.E[.F[.#t ", +";b *) 2! L$ I/ I/ ]^ 0' <{ J$ 2^ L$ R@ G= ]& J$ # $ + ]& 0' Z, # K$ ]& L$ ), + # # ]& k) * # $ ' > # & ]& = $= ]& L$ V@ > $ # > U@ > $ - - 2) > U@ =' ]& > = + $ ; & & ; ! > ; R$ > ] ~ ; X@ | > ; N$ ~ & o! > | U@ Z! N$ Z! 2 [ | ; | | { 2 | ) /& ~ N$ ) N$ 1 ) 'W { 2 5 6 U- J] 1 $# d 6- { d == 1 $# 5 j 6 4 6- 6 } e 7 q> ,# /& 6 a a k L= g h {# j 3] n h e 6 n Y$ c % }& s> h c n |& m p #| ^# p b' /# /# Y$ m 4* ^# ^# :# % ,> D /# <, #] /U G .I-.4>.t%.{[.4>.I-.B$.oY t%.K{.oY -*.BX SO (=.J[.(U oY ,*._M #N )Q yS Z .RT G&.G&.+Z Z .bV G&.7).e-.G&.q*.0$.0&.^,.4...` E` $N 4..9&.z+.a&.4..4..]&.Y$.:=.K[.EX 4Z 5Z c&.!$.!$.U,.U,.7>.m!.9).K&.x%.T%.#-.C .a .1%.L[.*@.++.M[.#..#..++.8Z b].& .& .%+.d .%+.* .* .8Z b` RE pW AM P/.GR AM N[.IS oT oT oT AM OV IX L` }T HR =V IS Vw Wq Vw JJ YL pT YL [P nK vO KH }P 8 Pk Z< Pk J0 &^ Z< Z< a3 Q5 Q5 Z< Q5 ed Rd d9 Sd m{ b3 E1 R5 R4 ,/ 0! A> m{ m{ 0~ 0~ /] (/ 0~ ]! ]! ]! /] 0~ ]! 0~ 8~ 0~ ]! M! ]' S. O. J. S. O. S. S. O. O. Z. O. Q. R. O. S. Q. Y. Q. O. 3= S. T. Y. X. p- P[.Q[.M:.R[.X. Z. ~<.U(.U(.j<.U(.S[.l<.j<.#~.h).h).j<.U(.](.U(.8_.](.k:.N_.u(.d].n<.n[.X(.X(.X(.0_.u(.T[.0_.9_.9_._^.P_.`(.`(.`(.`(.`(.`(._^.P_.X<.P_._/._/.2!.n/._/.p{.^<.l/.l/.U[.U/.m:._].%p n/.@* n, _(.v= W% ${ e$ e$ :@ ]; d$ e$ V[.n, [@ f$ 3' 2@ W[.X[.Y[.T{.Y^.Z[.`[. }.G,.t/.6> .}.+}.AU n+ m+ 8> bO UN bO ,T .B cz Nn w+ N> x+ o+ v+ t/.E!.@}.#}.$}.w[.%}.&}.&[.4G 4G o@.SZ _ .Vk _ .Q . d *}.=}.} .NO -}.=}. d W` W` kA W` X+.mk =f _ .4G 0#.4G &[.m@.c#.A#.;}.,_.>}.9[.bw ,}.uv ^n hA '}.)}.!}.iP ~}.!}.{}.H<.b[.8<.0:.0<.J<.lu [q #t 5r &o .wv xv QD LT Zo UI `o ^}./}.)& @. S S I A Q@ w #= G N N C Z$ ^# % p c{ ", +"(}.J$ *) BN #S BN BN BN #S J$ J$ I/ I/ 0' I/ 0' 0' + * I/ I/ = # T@ ]& k3 + + ]& + # + # # ' ' S$ ' ' . # + 2) > . #^ 2) S$ ; U@ > > > $ . ] [* $ . & & S$ }* N$ H= ; T- ~ P$ ; U@ H= | . S$ ; H= N$ ; { X@ ~ 05 > S$ ~ ^ ; ~ U@ R$ [ H= N$ ^ U@ ] 2 J) <& | S$ ~ [ ~ 2 [ Y@ } ( 7 5 2 Y@ N' Y> } 5 7 7 D, 2 3] [ 7- V~ 3* k !# &# d k 6 d ,# ,# 8 Y> ,# 0 L= e n n ]# r r L= 2, h ;= h % {# p o K/ Y$ b' 4* 4* 1; 4* ^# w 1; @= 6* ,> w u /# p :# w t a7 /U F= /# E '&./# /U /U a7 A$.a7 AR z _}.JW 1& '&.A$.O@ ;O M m;..@.T^ p=.:}._+.(#.4>.AX 4>.(#.4>.SO :#.C).x .-*.iU oY oY *I p*.BX p*.(=.)Q BX #N RT R%.RT RT Z .G&.Z .+Z +Z 9X '*.e-.1@.$).3@.#).{&.E` E` hT AS AS .` Y!.+` <}.4..4Z y@.z+.3..`X [#.G` c&.M/.7>.a$.2_.U,.7>.7>.U,.I&.t'.[=.}#.*@.a .#..a .*` a .d&.M[.++.8Z d&.& .%+.* .E..yZ C@.%+.8Z %+.RP zY b` fS J` &..; .=V jV HR AM }T IX =V =V HR :P HX =V HR Wq IS IS pT [W KH vO PQ YL OQ ^H LJ {K 5M {K LJ LJ pK .G 8 }c Pk >8 Fb n8 Q5 a3 &^ Z< n8 Z< a3 n8 a3 u[ ;0 z_ ): n8 e9 K0 O] 0! ]: 0! m{ ,/ m{ ]: ') O; ]! 9~ 9~ 0~ 0~ |= C> 0~ 0~ 0~ q~ ]! ]! 5% M! O. S. D> O. O. O. O. O. O. S. O. J. Q. S. i' Q. Q. R. Q. Y. Y. Z. O. Z. i<.P[.i<.~<.J# X. S. R[.U(.[}.U(.#~.j<.:[.:[.U(.j<.}}.S<.i[.j<.N_.s(.](.T<.(:.8_.X(.n<.|}.n<.X(.U^.l:.G=.n<.1}.0_.2}.a_.P_.P_.`(.`(.`(.P_.P_.W<._^.`(.Y<.W<.R:.p{.4'.l/._/.n/.m:._/.n/.e$ l/.l/.4'.t{.t{.%p x,.e$ |- @* :@ 1- 3}.1- e$ _].2@ e$ 4@ 6J <@ |@ m<.4}.5}.o:.z^.6}.7}.8}.$_. (.t<.9}.0}.j_.!w Xi a> n}.o}.;[.o}.0:.b[.!}.8<.E/.&<.p}.;l lu fk To 6r 6r q}.vX F%.r}.7Q ,l @O +O s}.. .s@.t}.A@ E@ P J z Q@ x /# w C b' m % Z$ ^# D ,> `$ ", +"<{ J$ ], J$ BN L$ L$ 2^ #S I/ 2^ BN #S p9 I/ 0' 0' 0' 1) # + = + = 1) + ]& Z, # = + . + 0' . + + [* $= V@ L$ + V@ [* S$ . ]& L$ + = . > > $= & . (& U$ U@ > 0' ; Q$ | ; ' *' $ U@ P$ H= Z! ; S$ . - { 05 Q$ ; N$ 5- ! [ N$ ~ |, N$ 5- W@ [ X@ R$ | H= ~ | { N$ ^ [ xS ) | 2 | 2 'W *# X@ / Z! ( [ d [ < 3* d $# ( ,# d < 7 8 } /& 6 7 a 0 i tA 7 [{ 3* 0 ,# a K/ 6 C; 0 c s> {# n h s> c Y$ ~# j `$ |& ,> n Y$ h `$ q b' p 2, s> ;) ,> t C 4* /# <, G 4* C F @= B F= F= m a7 {& E /U F= z z a7 C` F= Z 8* $T A$. Z c- c- c- =X .@. V V 2Z m;..@.8* 4>.4>..).4>.SO SO A: *I iU A: oY oY L (U (U ,*.k#.yS +-.^P RT Z .+Z +Z RT +Z Z .+Z Z .R%.G&.{&.R%.'*.3@.CX {&.7` E` hT AS hT E` a&.9&.L-.E` ` .pY @@.4Z l#.` .|Y $ .)'.!$.t'.7>.Y;.Y;.M-.n!.0 .t=.[=..#./&.a .*` #..%Z 6@.*` 1+.a .*` {$.* .yZ %+.& .d .d .8Z d .* ..Y O/.oT F+.b` AM }T RP NV u}.oT oT RW oT oT HS Wq uP uP uP HR pT Vw Ix Vw Ix nK vO bJ hJ GH 1z wO wO v}.LJ .G -J TE CM HH 8 Pk >/ Fb Ti >/ >8 a3 n8 a3 Fb Ti a3 dd O4 O4 n8 Q5 o8 Q4 ]: m{ A_ m{ 0! 0! 0! L} ,/ 0! 9] 0~ 0~ ]! 0~ q~ 9~ 9~ ]! 0~ O; z! 9~ C> O; E# O. F# D> J. O. O. F# O. J. P. J. S. O. J. Q. R. Y. R. Y. Q. w}.X. Y. Z. p- X. X. Q. i<.h<.Q. r& /<.[}.j<.#~.N:.#~.N:.U(.U(.S<.j:.N:.x}.y}.6_.O:.l<.^(.z}.m[.X(.X(.X(.U^.X(.n[.9_.n<.X(.0_.o[.G=.`(.`(.A}.P_.X<._^.`(._^.x^.`(._/.W<.^<._/.p{._/.4'.l/._/.n/.4'.4'.m:.e].m:._]._].m:.e$ J- d$ d$ 4@ d$ m:.B}.B}.[@ /; d$ b$ J- P{ P{ AL C}.D}.E}.F}.G}.H}.k_.3(.|^ l+ w% bz I}.q+ BD 3U ,T nt cM x+ Ao Ao K}.L}.q>.D,.[<.C,.M}.x).-}.R..f}.-U .S .S .S ^+.+z hY j..j..vX N}.vX RX kZ O}.RX {r ~P .S f}.dP d d /@.|&.Vk P}.tf Q}.R}.!_.S}.B:.|j ^n hA T}.~}.vC a> vC ^l ^l U}.H<.;[.;[.7<.V}.W}.d[.&o & H= U@ S$ P$ N$ N$ Q$ N$ ; Q$ %= ^& - ] P$ X@ X@ ; N$ R$ =' = ; N$ T- | ) P$ | [ - . ~ | ~ N$ H= ~ 7- N$ [ H= ] [ 2 Z! | 7- { ~ 4 N$ < ## / ( 6 d D, +# 6 d $# ## 4 ## 6 Y> 3] U- d ,# a a 7 e 0 0 Y> ,# 6! ~# c tA 7 j ~# 0 n 0- L= }& s> {# _# h s> h 0 ,> p K/ L= p p 4* p t ,> 4* @= w )> b' t ^# D 1; #] #] '> #] /U #] w 2; a7 '&.z F= F= H[.AR A$.'&. ).KW a7 H[.T^ JW .@.A T^ '&.2Z KW .@.I[..@..@.x .x .z .t%.iU '(.aV aV (U *I oY B$.I#.oY *I +-.y+.(U #N #N RT +Z R%.+Z +Z RT G&.+Z G&.0$.G&.w@.1@.3@.'*.4..2@./;.+@.E` hT hT hT o;.a&.f-.a&.E` z+.4Z |Y 4Z `X 4Z B .z@.<=.9).T,.7>.Y;.7>.c&.N#.I&.0>.A@.[=.C+._W r;._W %Z a .&` nW a .1+.8Z 8Z d .8Z 8Z yZ %+.d .8Z MV pU OV mV O/.N[.GR AM AM MQ AM AM AM oT AM uP Wq Vw HS GR Vw HR dJ Ix uP Vw

8 'k >8 t[ oj a3 >8 _u a3 &^ Z< a3 b3 Q5 J].u[ Q5 b3 z_ u[ A_ E1 u[ 0! ,/ m{ m{ 0! 0! m{ m{ <> ]! ]! 9] 0~ 8~ ]! 0~ 0~ 6% 6% M! 0~ 8~ E# O. J. p& O. J. O. S. O. O. J. L. J. i' R. L. #|.L. R. Y. Q. R. - Q[.i' - X. X. d, R. i[./<.P[.j[.i[.U(.U(.N:.j<.#~.#~.U(./<.U(.9,.$|.N:.O:.%|.V<.k:.m[.&|.n[.X(.n<.n<.n<.n<.0_.~].~].p<.p<.0_.9_.*|.0_.`(.P_.P_.`(.=|.(/.X<.-|.;|._/.2!._/.2!.l/.l/.p{.t{.4'.4'.4'.b$ W/.m:._].e$ _].x,.d$ 2@ 1- P{ ${ |@ b$ J- W% i$ R* S* f$ L- >|.,|.]).'|.Z/.)|.!|.E(.|^ l; C) M& (: E^.;$ qN :S e..(V FU ,T ~|.{|.L{ aO Nn 8> cz Ib 4c ]|.E,.k).m_.*_.p>.^|.==. 4* G ;) n `$ -= ", +"I/.jP J$ BN 9| BN BN R@ I/ 0' I/ ]& J$ J$ L$ L$ 0' ]& # 1) # + J$ ]& # # ]& * Z, #^ = + . [* $= Q$ * & > 0' Gc & + . ' $= ]& [* ; A; }, & > 05 ; N$ . # o! N$ 5- Q$ $ . $ ; (& - Q$ 5- 8- ] =' N$ U$ =' Q$ & ; - > S$ ~ N$ 7- ~ ; ] | ' & | ; X@ 8- 2 ; 2 } | ] ## | X@ 5 { D, 2 [ 6 5 $# &# D, j $# /& +# 7- { { ,# 6 ,# 6 7 ,# i 0 Y> a 0 3] 0 $# ,# L= ~# 3* k e c L= Y$ X$ ~# c L= ~# Y$ p 2, h n [& L= _# h h h b' Y$ t 1; #| /# w *].`$ b' b' y w s> )> w w z #] F= w F= A$.z /# z 6|.AR ).'&.z 1& 8* T^ 1& c- T^ Z 2Z n! P%. V .@.p=. V 4>..@.I-.4>.t%.7|.B).aV B..SO iU :#.B$.aV *I (U yS +).*I iU +-.+Z c-.^!.+Z Z .)Q d-.RT G&.R%.9X 9X |@.R%.7).3@.1@.#).'*.4..CX hT hT .` o;.@@.H>.9&.|Y z+.pY ` .`X [#.z+.5Z r=.Z!.v%.z@.8>.8|.t=.N#..#.v%.t=.A@.9|.%Z %Z 1+.%Z #..&` ^W _W 6@.d&.E@.& .yZ 8Z 8Z d .*Z )X * .F+.FS )S 4z 0|.OV OV RP GR NV :P AM MQ MQ :P Wq Ix uP uP Vw Ix Wq Ix HR PQ uP QK NQ nK ]u wO a|.gJ ZL 2P IH -J -J ^H eC (H / Pk >8 >8 >8 Q5 a3 Q5 a3 Z< a3 a3 Z< a3 P3 u[ Q4 J_.b3 E1 0! m{ ,/ ') ') 0! 0! <> q~ 0~ K~ ]! ]! 0~ ]! 0~ 8~ O; `= D> O; n& b~ b|.F# O. a! F# x' S. O. O. O. J. J. R. J. S. Q. Q. Q. Y. R. Y. ~<.Q. U. X. U. T. ~<.M:.9,.i<.c|.l[.#~.j<.~/.j<.j<.j<.[}.d|.j<.9,.d|.j<.e|.f|.<[.g|.X(.e|.n<.d].X(.<[.X(.o[.0_.9_.G=.h|.Y(.=|.p<.]<.0_.=|.p<.G=.P_.X<.`(.W<.P].P_.Y<.p{.^<.4'.l/.%p ^<.i|.e$ 4'._].|- n/.%p 2'.@* v!._].n, [@ 2@ f$ }@ 6@ 1- ((.W% |@ /; X, |@ L- j|.k|.l|.m|.:<.#'.n|.|^ o|.l; n+ h+ l; G,.s{ g+ f= p|.q|.r|.h0 s|.7-.t|.u|.v|.w|.Xi NH [).#q x|.@'.8'.y|.p>.z|.A|.: ./|.j%.V&.: .N}.N}.Rh (|.(|.Rh (|.N}.Rh Rh (|.B|.C|.D|.Sn XW N}.RX +z Wk f}.-}.@H /@./@.P}.E|.xN D<.C<.|j vv hA F|.G|./- O+ a> vC ^l n}.iP {}.#f !}.H|.#<.^_.ku rv F/.I|.d[.}q J|.I|.lu V}.iA dw HT ND JL SB ;o 5q i).!> 2# }; L A I z S z ^# B b' /# w ^# h r h ", +"]& jP L$ G= 9| ]^ 0' R@ G= 0' I/ BN R@ BN jP R@ ]& = + + K$ + I/ ]& # + L$ $ + $ = R@ ]& k) # + # + > # . + = + # + & > $ ' U@ U@ S$ . . A; . U@ > . .# ' | Q$ . - . - Q$ & U@ | H= ; %= N$ ] | ; Q$ ~ U@ H= ; | ~ | ] H= | { X@ | ) { ) X@ { ; ~ /& ) 05 { { { { 8- *# 2 < $# / 4 } { Y@ &# } Y> < J= ( ,# 0 a' ,# 6 6 k a ,# ,# ,# a d => 9 {# 0 6 0 2* h 0 L= ~# q> n h h |& r r ]# o {# 0- ]# c{ ~# Z$ 1; 1; q r s> h :# F= q /# @= :# $] p t C m [# G E {& z F= E B 2; z C).4>.B$.B$.I-.7|.iU -*.iU A: A: (U y+.+-.aV yS +Z )Q Z .RT RT )Q R%.)Q Z .+Z G&.sZ '*.+Z !&.G&.D` +@.0&.E` E` .` .` $N H>.:=.a&.a&.o;.4Z f<.` .` .D..<=.z@.6Z K|.N#.N#.M#.7>.n!.#-.#-.!$.t=.#-.|+.1%.a .1+.a .%Z a .oW _W E .& . %.xZ d .%+.%+.d .E..& .yZ 8Z .Y RP MQ |#.$..GR AM AM GR RP AM HS AM uP Wq HS Vw HS Vw IS Wq uP :P vO 0Z

/ >8 rg >/ >8 &^ a3 >/ >8 a3 Z< Q5 Z< Z< a3 Fb a3 Q5 Q5 S5 Q4 R4 R5 Q( 0! m{ m{ ') L} ') L} (/ )) ]! <> 0~ ]! k2 q~ q~ 0~ O; {~ |= H. 6% |= e/.a! J. S. 2= O. p& S. L. O. q& J. J. S. J. O. R. Y. - Y. R. X. ; R. L|.J# ~<.J# P[.N:.M:.M|.i[.U(.#~.U(.:[.N|.j:.N:.k<.x}.O|.i[.j<.P|.n[.e|.](.n<.n<.n<.n<.n[.n<.n<.Q|.J}.n<.*|.}[.P_.p<.p<.A}.S:._^._^.X<.X<.X<.X<.X<.P_.P_.`(._/._/._/._/.p{.Y<.l/.P{ 4'.%p ${ m:.n, W% /; 4' _].}@ d$ [@ 4@ _@ 2@ 2@ d$ |@ R|.<: X, :@ GV S|.T|.U|._<.V|.W|.y{.@) l; l+ m+ m+ l; t/.|^ 3(.X|.Y|.Z|.`|. 1..1.6!.H}.p_.;;.+1.Yi 4I Xr ^J @1.T{.k).y|.n_.7'.R$.K=.(|.t` K=.K=.Rh Rh +I +I +I #1.#1.+I +I #1.#1.+I $1.%1.B|.(|.N}.vX kZ RX 6f .S d /@.e}.X+.&1.*1.3<.C<.Y'.^n l}.T}..N Q& `U P+ a> a> vC o}.iP #f iP o}.b[.b[.=1.rv ku E[.-1.9w E/.;1.~s ;:.>1.tv BK It 2j ik Zo ke ,1.'1.I@ J S {& z K I N G D :# C G t _# Z$ r ", +"J$ jP p9 jP G= J$ L$ I/ L$ #S <{ BN I/ 5_ 5_ I/ G= J$ L$ 5_ =[ % 5_ I/ 5_ 1) 5_ ]& + = = + # . . % . X! V@ > = 0' V@ + > S$ . $ . > > V@ [* V@ ]& .( > & H= [* . $ & > H= Q$ . V@ ^ Q$ ; . =' & & & ; ; ] U@ N$ ~ ; Q$ ] | ~ X@ W@ Q$ X@ Z@ 2 ; 7- 2 4 [ { ~;.; | ( . X@ Y@ [ /& [ | ( < [ Y> q> a 3* 6 d d /& 7 6 { ## ># )1.a k q> 7 d 6! 7 6 0 e b !# M' g a 6! a ># L= ]# n L= h n ~# e {# 0 n c ]# p V| ,> ,> m 2, n^ q #] 4* % :# 4* t #] 4* F m $S F /U G /U {& F= G B z a7 z '&.a7 1& T^ 8* n! c- $T #= a7 ,/.c- V !1.c- V c- .@.(#.0S z .J{.I-..).-*.AX 4>.aV -*.I#.A: I#.-*.BX oY (U yS Z .)Q Z .+Z +Z +Z Z .RT +Z +Z !&.H&.CX +@.G&./!.#)..` 0&.n,.CX AS CX 0X AS o;.3..a&.a&.4..:+.D..7 .I:.!*.)$.0 .!*.S%.N#.S%.T%.#-.0 ..#.N#.t*..#.W*.%-._W #..a .1+./&.^W ^W #..d&.d .8Z * .8Z %+.%+.gV d .-` & .:W -` RP E@.AM oT AM AM RP RP RP AM AM AM GR RP AM MQ aN uP Wq HR IS PQ IR IR #w uP NQ

/ >/ Fb >/ >8 a3 &^ Q5 Q5 &^ a3 Z< Z< Q5 a3 h( I^ Q4 5< h( m{ ') ') 0! I^ ') ,/ (/ q~ q~ ~1.K~ q~ #, q~ 0~ ]! |= H. )) 5% G. M. z! c, c, O. S. J. J. S. J. L. O. L. O. Q. L. O. Q[.R. - P[.{1.P[.i<.X. - i<.X. i<.X. j[.j<.X. ~<.j<.i[.j<.]1.:[.^1.c|.j<.]1.y}.^1.^:.l[.}}.n[./1.1}.n<.V<.n[.n<.<[.n<.n<.<[.X(.u(.(1.h|.=|.=|.X<.X<.G=.`(.p[.X<.X<.P_.W<.4'.Y<.P].W<.2!.4'.P{ l/._1.2@ 4'._/.'~ v= e$ J- J- t{.b$ J- /].4@ l$ 9@ 2@ 4@ _].d$ ((.d$ |- :1.!@ $z <1.[1._<.}1.V|.M'.U{.;$ q+ m+ HB n+ n+ `/ z- h+ |1.11.21.31.41.51.61.h+ E(.=, X:.#x NH uK CL 71.81.k).1^.n_.H^.&=.+I K=.91.01.{B a1.TB #1.b1.01.bc #1.c1.c1.Pf d1.TB +I %1./s (|.(|.N}.[V u .u .RX .S R.. d xc e1.1<.!_.y:.C<.^n %t f1.O+ Q& n}./- P+ E% vC g1.^l {}.h1.iP ;[.;[.8<.D[.D[.D[.,[.=1.-1.0w i1.1|.y_.ou Yo Kj KC SB qi j1.WI x! B$ K@ H$ N 1& w N w N G F= ^# w t n^ _# ^# ", +"2^ <{ l) R@ L$ BN G= I/ I/ ]^ *) #S I/ I/ L$ BN I/ L$ L$ I/ ]& + + 0' = V@ % ]& ]& # L$ ;b ]& . + + $ + Z, ]& + |* + L$ ]& # = = & > . + V@ . o! $ $= > $ - > 2) k) $= + ; . . ; & > R$ Q$ & > Q$ & ~ P$ o! ' ] | ~ ) ] N$ ; > | 2 | N$ N$ ; ~ | X@ | | | N$ ) N$ ; N$ ## 2 ~ ; 2 } { { [ [ /& $# &# q> D, 5 d J] 6 6 5 d [{ 6 N' } ,# a d Y> 3* ,# d ,# g ~# 0 W$ b ~# 0- Y$ r L= p o Y$ h c e h 0 Y$ n Q(.Y$ Y$ Y$ L= q ,> n^ ;) #] Y$ q 4* V| p :# % #] {& w G /# 1; :# E z /# /U /U 2; a7 L/.1& 1& AR JW 8$.2Z z $T JW Z P%. V k1.4>.x+. V V .).QT J{..@.4>.J{.B$.I-.I-.>*.B$.aV E>.aV aV l1.MW p*.+-.RT RT lP )Q R,.)Q +Z )Q +Z )Q G&.+Z 9X {&.G&.7).'*.CX /!.{&.CX hT hT hT mL CX 9&.]&.E` E` ]&.`X 7 .K[.`X <=.S%.S%.[#.m1.S%.v*.0 .N#.N#.N#.I&.n!.b$.|=.d$.a .1+.C+.%Z %Z oW #..xZ E .yZ & .{$.)X n1.8Z 8Z -` d .9Z .Y 4z RP RE oT GR oT AM AM RP AM GR MQ GR RP AM oT :P Vw uP pT pT Wq nK Wq ;H UF YL

/ >8 J0 }c }c >8 t[ Z< >8 >8 a3 Z< Q5 Z< Q5 Z< a3 n8 ): Z< Z< ]1 R5 Q4 h( E1 7~ L} ,/ m{ 7~ ') m{ <> K~ ]! a, <> K~ ]! q~ C> q~ 8~ n& c, M. H. {' a! J. S. L. O. L. J. P. J. J. L. S. ; ; J. d, p1.Z. X. ~<.i<.X. i<.Z. d, r& q1./<.M|.j<.~<.L|.j[.i[.i[.j:.i[.]1.l<.l[.l<./:.]1.l[.O:.%|.X(.n[.<[.n[.V<.<[.n[.n[.n[.l:.n[.Y(.0_.G=.p<.=|.{).P_.X<.r1.*|.X<.P_.P].P_.^<.l/.l/.W<.Y<.l/.l/.l/._/.^<.s1.m:.m:.%p ::.J- @* %p W% }@ b$ |- J- |- b$ t{.S* 2@ X% `% B}.2@ 9@ x= t1.u1.v1.w1.x1.h_.l).t/.;$ q+ 1L ({ h+ m+ A- t+ bM bM bM %$ -%.~` .y1.z1.H;.s&.01.01.}k 01.Pf A1.B1.}k C1.D1.E1.E1.F1.G1.E1.H1.D1.A1.H1.I1.+I Yd Rh B|.[V J1.+y +z } .@H mk K1.8[.!_.j}.Y'.^n L1.M1.Kb /- vC vC a> vC ^l o}.Kb Kd $) Zi /- ^l !}.;[.G<.8<.$<.$<.^_.E/.ku F/.;l N1.Xl #:.]s *t kk `S bU O1.!. L@ H Q@ {& A A )> /# t D m m `$ q m t ", +"2^ 2^ J$ R@ R@ R@ BN 0' I/ G= BN I/ ]& ]& 0' L$ I/ I/ 0' I/ [n # * 0' 0' # # + J$ =[ 5_ ]& # R@ + ]& = + = . 0' V@ V@ ]& ]& > $ + > S$ ' ' - & ' $= - S$ |* & %= |* S$ U@ & S$ . U@ %= ; Q$ & ] Q$ %= & | ; - & Z! | > Q$ R$ { P$ Q$ & X@ 8- & W@ X@ ; [ W@ Z! { | > ~ { 2 J) [ 2 4 6 X@ [ { < { ( : $# V~ < d J] ( ( ( 7 1 6 6 c5 &# a &# 2* ># : ,# {# 5 0 ~# 6 c5 ,# a W$ L= ,# c 0- ~# _# Y$ L= r [& ;= o ~# n^ ]# ,! L= 2, d<.|& ,> q Y$ v /# /# 4* D w t G /# :# 1Z F= C` E .4>.o*.AX AX :#.(U -*.iU iU A: A: yS 3d (U (=.+-.)Q Z .RT Z .Z .Z .^P Z .RT RT Z .9X +@.3@.Z .w@.+@.hT 0&.E` q*.CX AS hT CX E` o;.4..4..4Z pY |Y y@.!*.<=.r*.$ .<+.z@.$ .N#.0 .0 .0 .N#.#-.@..V*.b$._W #..#..w'._W %Z oW _W a .*` E .yZ @+.& .8Z * .& .d .]*.-` fS zY )S D@.XL AM RP RP :P uP oT RP zM AM GR HR HR :P GR IS uP uP QK nK Ix NQ uO QK JJ JJ GH eC Pw 1z 1z RA -J 1z IH IH .G .G 1z / Z< Z< Pk >/ &^ Ti Z< a3 a3 Z< Z< Q( Z< Z< t^ a3 O~.L} S5 p~ ') ') ') 0! 0! 0! 0! K~ <> 0~ q~ q~ 0~ C> P; C> 0~ G. O; 6% 6% c, J. J. O. F# J. L. J. J. J. J. J. L. L. R. L. L. ; Q. Y. i<.q1.X. P[.Q1.3= i<.i<./<.Q1.M:.9,.Q[.^1.O|.j<.j<.U(.l<.:[.x}.7_.l<.]1.R1.e|.n<.X(.n<.n<.n<.X(.<[.X(.n<.n[.S1.n<.(1.9_.Y(.A}.*|.*|.A}.P_.S:.3>.P].T1.P_.X<.W<.l/.-|.P_.U1.Y<._/._/._/.l/.l/._].t{./].U/.|- _{.V1.'~ P{ i|.d$ e$ n, 2@ |@ X% b$ |@ 2@ X% d$ j$ d$ -+ W1.X1.w1.x{.Y1.z!.3(.q+ BD 1L ]G q+ m+ l+ X:.Z1.xT `1. 2..2.+2.n` |K bO bO ^R sQ DU ^R _i tQ @2.6{.#2.$2.%2.&2.*2.G1.F1.F1.F1.F1.F1.=2.F1.F1.-2.-2.;2.>2.=2.G1.,2.D1.G1.'2.)2.!2.#1.Rh (|.[V ~2.vX ^+.f}.{2. d ]2.b(.D<.4<.Y'.hA -[.^2.g1./- P+ P+ n}.iP H<.8<./2.P+ Fc Zi h1.n}.<|.pM !}.$:.%:.^_.O(.J|.E[.I|.p}.*o (2.W}.Ht KC _2.^T :2.<2.=. G@ I A I z N@ ^# ,> w ^# N ^# :# w ^# ^# ", +"J$ 2^ J$ <{ R@ ]& BN R@ ]& L$ BN I/ <{ p9 0' I/ I/ I/ BN I/ 0' + + # 0' 5_ # [n ]& ]& }, # ]& J$ V@ S$ ' V@ $ & [* $ V@ # # ]& # ]& . # . & [* > . . # # 2) ; U@ > & U@ X@ & %= U@ H= - . U@ ] H= 2] > |* ; [* & | & ; . U$ R$ ^ $ H= b{ X@ ; ] X@ N$ { ) | X@ { ; X@ ## ~ | [ ~ 2 2 ) 2 ( 1 Y@ | [ 1 ,# ( ( 3* 6 V$ d 6 *# : 5 < D, 6 b i d 3* 6! a } 6 a 6 a !# 0 !# K/ !# e K/ 0- c h n {# ,# _# ,# ]# Vj p K/ L= ,> q r p ^# b' 1; w /# `$ m :# Z$ 1Z D :# $S z /# E a7 $S $S ).1; a7 E C` A$.a7 W) E 1& [2.KW c- KW '&.$T T^ V T^ T^ c- 4>..@.c- _+. V V .@.(#.x .AX QT QT (=.I#.-*.iU iU aV oY A: YX }2.F>.^P )Q Z .RT +Z G&.RT )Q +Z G&.+Z 0$.1@.1@.|@.':.$).hT 8).3@..` .` .` CX hT AS 9&.H>.9&.y@.pY 4Z !*.<=.)$.!*.5Z !$.S%.0 .$ .0 .0 .$ .|2.0 .sY )'.#-.v*.%Z *` %Z /&.#.._W cX a .#..% .% .8Z %+.gV 8Z hQ ;` d .8Z -` zY -` &V RP AM RP RP RP pW AM MQ GR AM =V Wq Wq RP AM NQ ;H JJ {K :P bJ bJ bJ JJ YL JJ oK .G IH LJ 1z ]K 1z .G eC IH 1z eC IH /H [H {i Mm Lk Mm zn Lk Lk zn Lk Qd zB Mm }c }c ul >/ }c d/ >/ rg Pk >8 Z< >8 d/ >/ Q5 `~ &^ a3 Z< Q5 J].2| a3 [ a3 a3 ') Q3 O] 0! 0! A> ') A> ') m- K~ q~ q~ <> )) ]! C> C> 8~ q~ G. O; O; 8~ G. 2= 12.J. J. L. L. J. J. O. J. p& q& p1.R. ; J. ; R. Q. ~<.22.i<.i<. - i<.P[.P[.q1.!) P[./<.32.j<.j<.j<.j<.c|.i[.i[.42.y}.]1.l<.y}.n[.e|.n<.X(.n<.n<.n[.n<.n[.n<.n<.52.n[.J}.S1.o[.O_.=|.~].3>.P_.X<.U1.P_.X<.P_.X<.P_.W<._/.Y<.r1.W<._/.p{.62.l/.4'.P{ b$ |- 4'._].d$ b$ V1.<: K- b$ 72.e$ 1- 4@ f$ L- 9@ 8@ X% 1@ 9@ i$ 82.92.o:.02.u[.H}.a2.n+ 1L nS xT 1L }K q+ n+ DU }$.cY b2.]..c2.d2.|K |K aO ,T yT qt aO r0 oS ot L E^.e2.f2.g2.h2.i2.F1.=2.j2.=2.=2.j2.j2.k2.F1.;2.;2.l2.j2.=2.,2.;2.-2.,2.D1.m2.)2.n2.+I Rh Sn o2.vR p2.f}.-}.{2.q2.B/.r2.9[.s2.hA f1.~}.{- S+ /- ^l pM ^l ^l b[.A:.a> Fc #f h1.H<.t2.u2.;[.b[.H<.7<.D[.$<.9w ku I|.v2.A[.W}.2q ]s Lj @K 2` w2.+. J M@ S I N )> I w D p y n^ 1; /# t Y$ ", +"BN BN BN <{ J$ R@ G= BN #S R@ ], jP #S I/ L$ I/ 0' I/ G= I/ I/ 5_ 5_ $ = 0' }, # 0' p9 `Y $ 0' ]& V@ $= V@ . > . (& = + + = $ $= ]& 0' # . . 5_ . V@ |* H= - S$ H= > - Q$ & $= %= > > & S$ ; N$ ; U@ N$ N$ %= & ] | .# S$ ; . > | O$ P$ H= b{ T- %= & ] N$ ;# ~ { N$ U@ S$ N$ /& 2 2 R$ ~ X@ { &# ## d 6 => /& $# *# Y@ 1 [ $# ( ( D, ># 6 6 { J] ) < d N' 7 k 6 ,# a 6 a d Y> 0 6! e n 0 6! a 0 6! !# tA {# c Y$ L= }& n p r ,> ]# ,> ,> V| D Z$ ,> t t p ^# /# q /# w m $S |Z w z F= F= F= '&.F= E z '&./# z z G a7 F= a7 $T ,/.m;.AR Z Z V c- V V .@.c- 4>..@.4>.4>.(#.B..B$.SO :#.B..aV B$.B$.iU ;*.p*.iU BX _#.l1.^P )Q +Z +Z +Z G&.+Z +Z RT +Z RT D` 1@.{&.G&.1@.'*.1@.3@.3@.E` CX .` E` CX .` AS +` E` 9&._U z+. ..z+.#@.^&.l#.z@.<+.M#.p;.$ .}+.M#.):.!$.L#.T%.S%.!$._W %Z C .cX %Z %Z U%.*` a .d$.a .% .%+.& .E@.0` -` F+.%+.O/.O/.b` QW fS oT GR FS AM RP uP GR AM N[.zY uP N[.RP XL dJ bJ nK 'H BH sL BM JJ JJ BM JJ EH *J RA KN IH *J IH RA 1z 1z )H fJ MJ _H :E ]A Qd Qd Mm Mm Lk Mm Lk {i zn zn zn rg ul 03 We ul rg t[ >8 }c >8 Z< Z< t[ t[ &^ &^ `~ Z< &^ &^ Z< o~ a3 a3 Z< b3 (] O] h( ') A> A> ') m- ') m- a, q~ q~ ]! y! q~ n& 5% C> )) 5% 6% 0~ e/.O; n& S. 8% J. O. J. J. J. L. N. p& d, 3= Z. R. L. J. {1. ; - Z. 22.P[.d, {1.i<.3= q1.Q[.<{.i[.i[.x2.p&.i[.9,.^1.j<.x2.c|.y2.]1.R1.]1.y}.2}.n<.n<.X(.z2.Q|.n<.n<.U^.n[.z2.X(.J}.n[.0_.2}.A}.A2.*|.P_.X<.B2.X<.X<.X<.X<.X<.P].X<.s1.P].Y<.4'.l/.P{ 4'.4'.4'.%p 3}.n, d$ d$ 3}.P{ d$ C2.[@ e$ b$ b$ 8@ 8@ |@ f$ 8@ l$ 2@ L- X% D2.E2.p/.F2.k_.<<.j_.q+ JM nS GO q+ .Q ]G k+ ,T Q+.-Y +$ G2.H2.I2.|K 2.R2.S2.T2.R2.D1.U2.'2.V2.6*.B|.o2.FW u .W2.i.. d 'e B/.X2.Y2.z[.Z2.`2.{- o}.S+ S+ R+ Q& E% a> vC /- P+ a> Fc Zi .N I<..N !}.b[.h1.b[.@<.D[.^_. 3.Et }q .3.W}.hk .m *t ;o +3.@3.@. H@ Y I z G ,> I y D Y$ n^ `$ G w p g ", +"L$ R@ L$ p9 <{ J$ jP *) jP ;b BN 9| I/ I/ I/ G= L$ I/ I/ I/ I/ ]& X! % X! I/ + Z, 0' 0' # 1) $ + # # . . # . . Q$ V@ $= = $= . 0' # # L$ + + U@ ; $= $= ; H= $ ; h) H= o! & V@ . . $ > & A; ! $ | | . N$ U$ S$ . > ] ^& H= ] ^ X@ R$ ) ~ N$ ^ ; X@ { ) ] N$ N$ 7- N$ 2 1 X@ [ ## D, } ( ( } ## { 7- } 6 <& [ $# { d *# } 6 7 } ,# < -> k ,# 6 6! ~# a 8 6 ( ~# q> L= J] L= t' a 0- a K= W$ n E, n c{ _# 2, Y$ ,> s> h q p n ,> 2, 6* /# h '> m t :# t D ,> F= :# 2; $S ^# b' F= @= 1Z #] z a7 z '&.P<.n! a7 a7 8$.AR O@ KW Z '&.T^ Z .@.c- HV c- 4>..@.c- .@.v@. Z I-.t%.z .<_. V B$.I-.iI oY *I L iU ;*.A: yS y+.K{.I#.)Q RT +Z +Z Z .RT RT +Z Z .^P +Z R%.G&.G&.G&.7).0$..` '*./!.4..CX E` .` .` AS ZX CX CX ST pY 2Y <=.K[.[#.E_.qY ...)$.8 .T,.6Z 0 .!$.S%.v%.N#.`$.#-.|+._W cX 1%.|+.%Z %Z %Z _W %Z a .cX gV xY 8Z gV 8Z d .& .& .& .$...Y -` O/.GR FS jQ RP AM RP XL Wq MQ AM tP Wq (O dJ ;H ,H uO PQ bJ bJ #w {K }I bJ }I 1z .G IH rB *J RA :H 1z GH RA }I :E vy :E WA WA Mm XA Qd Lk {i {i Mk Lk Lk }c rg rg }c Qr >8 rg >/ >8 }c >/ d/ Z< d/ >8 a3 &^ Z< &^ Z< a3 Z< [ 8] `~ `~ [ #3.I^ g/ A> A> 0! A> ') 0! A> 0! q~ q~ K~ q~ #, <> )) C> )) q~ O; n& 9% G. G. L. J. N. J. N. L. 8% J. N. J. J. L. J. Z. p1.N. R. R. Z. P[. ; i<.i<.R. q1.3= !) $3.i[.i[.j<.[}.42.O|.9,.j[.O|.i[.42.]1.l<.}}.V<.e|.n<.l<.}}.<[.n[.z2.n[.z2.n<.n[.n<.Q|.<[.<[.%3.=|.A}.A}.G=.S:.`(.X<.P].P].P].P].X<.P].Y<.W<.X<.62.4'.l/.m:.l/.e].Y<.62.62.4' U/.%p b$ 4@ [@ &3.*3.L- X% P{ v; 4' 9@ f$ 9@ l$ b$ X% (; =3.-3.;3.:~.>3.k_./) HB lS ~` hZ l` !..n+ k+ 3U lX / .u#.p{ ,3.N+.FU cz qt |K Y{.qN .B .B l].().e_.'3.yf k2.k2.k2.)3.k2.)3.O2.)3.O2.!3.P2.~3.~3.k2.k2.;2.S2.{3.S2.R2.H1.-2.]3.^3.Rh C|./3.kZ +z ~U kA W` y~.(3.3<.9[._3.:3.u2./- U+ T+ V+ P+ pM vC vC ^l vC /- Fc of #f o}.;[.;[.B[.<3.N(.,[.D[.9w 3..3.[3.;1.[|.;(.&t It 'l Kf }3.8# C$ Q@ Q@ A I N {& G Y$ p ,! }& p r `$ h ", +";b R@ R@ L$ <{ R@ ]^ *) R@ J$ J$ 2^ BN I/ I/ BN J$ I/ I/ I/ I/ L$ + + + 0' ]& 5_ 5_ ]& J$ ]& #^ ]& # + V@ + # = # . |* # ;b V@ S$ o! P$ > + $ + & & V@ & [* + $ > - H= =' & V@ o! ] = & 2) > $ > > ] & & ) ; %= N$ | ; | R$ | P$ S$ ! & ~;.S$ & (& ~ U$ X@ I= %= | N$ { U@ X@ N$ /& ( < Y@ /& 2 1 W@ { 9 } d 1 $# d k Y@ 2 } ( J] 1 $# # $# 0 6 k ,# N' i k J] 6 k ~# !# z: W$ c ]c L= n n n -) y2 6! _# Y$ A~ o ~# h z: 1; Y$ b' `$ % q cj h ,> n^ /# F [# Y$ 1Z )> :# 4* D b' z w '> [# .!$.$ .0 .S%.s*.}+.$` N#.A@.oW oW _W #..%Z %Z _W _W 7Z %Z PW & .[T *Z & ./ rg >8 d/ t[ d/ Pk &^ a3 Z< Z< Z< Z< a3 {1 ): t^ Z< h( 5< G| G| Q3 ') A> N) ') A> A> ') )) )) <> 0~ 0~ 5% )) )) H. q~ 4% H. G. 6% D. I. J. L. L. L. L. L. N. L. N. L. N. J. ; d, 53.q& N. ; i<.q1.22.q1.q1.q1.53.P[.q1.i[.i[.<{.[}.P[.j<.i[.63.j<.O|.i[.j<.l<.n[.n[.V<.V<.n<.n[.<[.n[.z2.n[.<[.n[.n[.<[.n[.z2.<[.S:.73.G=.X<.S:.X<.]<.P].83.P].P].P].X<.P_.62.X<.62.P].P{ 4'.W<.[@ i|.l/.62.<: b$ }@ n, 93.x= /; /; X, |@ W% 03.4@ X% |@ 9@ ^; 4@ 2@ P{ -* a3.b3.%_.c3.|^ t/.f= 1L lS 7W -Y C%.CU IZ I}.hZ lX }$.hZ d3.e3.i! SS Yi aO aO VN bO UN aO /X 5H LM _i 71.()..(.f3.g3.k2.O2.O2.)3.)3.)3.h3.)3.)3.)3.~3.~3.~3.k2.k2.i3.;2.S2.S2.R2.-2.m2.j3.n2.91.D|.C|./3.^+.f}.{%.Vk D;.k3.Y2.B:.l3..N n0 E% /- T+ R+ E% DL Q& u2.o}.pM 6c m3.A:.<|.n3.o3.!}.o}.p3.@<.8<.G<.D[.w_.^_.9w -(.q3.r3.s3.It 1j mi t3.A0 O S K@ ~& z 2; w w ^# m ^# ^# ^# 4* Z$ p ", +"8S L$ J$ 9| <{ <{ 2^ 9| R@ R@ I/ 2^ G= L$ ]& BN L$ 0' J$ R@ I/ J$ R@ L$ K$ 0' 0' 0' K$ 1) Z, M$ = = = + = & ]& . # . $ # 1* ]& 0' - & ]& # V@ =' P$ [* S$ & Q$ & # & S$ U@ & $ > ; ; H= ^& . ; > ^& ; o! . $= . > U$ Q$ N$ N$ & ; S$ U@ S$ ] ^ ; [ | H= 7- /& ~ ~ & ~ N$ 4 ) | X@ 1 2 I= 2 8- 2 X@ } ) 1 [ < 1 5 /& [ 5 6- ( } 6 a } j $# $# 0 a 6 a 7 ,# ,# ,# 6 a 5 Y> 0 0 7 a Y> 0 ~# 0- Y$ L= 0- t' 0- 0 ]# 2, ]# c{ xE 2, xE m 2, t 4* b~.p ,> /# ;{.4* 4* `$ ^# :# w 2; F= E C F= $S a7 '&.'&.{& a7 A$.a7 a7 '&.'&.a7 a7 8* AR AR c- Z Z HV $T T^ (#..@.c- o^ c- (#. Z PT n! B.. ` SO SO I#.;*.oY aV B$.:#.-*.XX l1.(=.u3.+-.Z .Z .Z .RT +Z Z .9$.RT +Z Z .^!.|@.3@.Z .'*.D` n,.w@.E` hT a&.E` 4...` 9&.3Z CX 4..]&.:=.l#.z+.......#@.~W r*.4Z ~*.6Z 0 .6Z N-.T,.M#.nW 6Z v3.^W H` D$._W _W %Z #..a .w3.*` 3Y &Z &Z 6..% .hV / >/ >/ t[ >/ t[ t[ t[ a3 Z< G~ a3 `~ &^ a3 Q( f( a3 h( k{ A> 0! 7] m- A> ') m- ') A> m- <> q~ q~ q~ ]! 4% q~ P; D. )) 4% G. 2= 12.D. G. L. L. J. L. 8% y3.N. L. J. L. N. N. L. d, r& !) - z3.22.i<.22.i<.P[.X. _[.P[.P[.$3.j[.A3.i[.B3.M|.i[.O|.P|.p&.C3.U(.D3.R1.]1.]1.E3.<[.<[.<[.z2.<[.n[.<[.<[.z2.z2.z2.<[.F3.z2.]<.G=.]<.P_.P].*|.T1.P].U1.P].P_.X<.P].T1.G3.l/.P{ P{ l/.l/.62.l/.W<.V1.^; m:.|@ n, 4@ d$ 2@ |@ |- 6J d$ X% 8@ X% H3.9@ 6@ [@ 6@ d$ I3.J3.K3.L3.M3.j_.j_.*$ 1L 7W N3.O3.1L xT (V 7W 5#.hZ hZ P3.,T Z%.i@.bO ^R 3U 7<.lu Et X3.0:.,[.b[.iP <|.h1.Y3.H<.!}.#<.^_.9w 9w Z3.`3.s3.KC It 4..4.(4 E@ P@ P@ Q@ z I 4* {& ^# ^# p -) ^# h p Y$ ", +"<{ <{ *) ]^ J$ <{ <{ ], BN 9| I/ 2^ BN L$ #S jP G= I/ I/ I/ L$ ]& = 5_ K$ K$ I/ #S % + # * # + L$ $ 1* . .( ]& .( + ]& [* # = + . Q$ $= +4.. H= T@ N$ S$ H= - & ; H= $= . - + . ; . N$ & + & R$ U@ U@ . ] Q$ $ ~ ~ N$ %= ] %= S$ ^ Q$ Q$ H= { ~ U$ ^ Z! X@ ^ N$ ) ; 2 ~ Z! ) Y@ ( 2 Q$ N$ [ [ Y@ { [ / $# : [ 7 } &# 4 6 } ~ } k ,# ~# d } ,# k 3* ># k $# 6! [{ ( ~# L= ,# ,# 0 a 0- Y> L= |& h h ,> |& 7 n L= ]# r ;= s> `$ m 1; 4* t b' ,> s> m t 4* D Q(.`$ D C {& #] D Z$ 2; w G F #.F= /U z z '&.'&.'&.a7 '&.A$..t%..@.t%.I-.AX i5 |# H#.0].W!.U;.oY *I -*.oY yS y+.+-.oY .V +Z +Z RT +Z +Z RT +Z G&.Z .D` +Z {&.R%.3@.{&./!.+@.$).+@.CX o;.E` .` E` 4..3Z 4..9&.L-.K#.<=.o;.~W #@.S%.z@.#@.~*.9 .$ .!$.!$.S%.N#.tY [=.#-.oW oW _W oW cX %Z _W a .cX a .$+./ t[ d/ t[ t[ >8 t[ d/ >/ `~ G~ I~ C{ a3 `~ `~ 8] `~ f( 8] b3 L} :} E{ ') 0! A> ') A> 0! m- a, )) )) #, K~ #, 5% G. 6% q~ G. D. )) 6% G. L. N. L. L. 2= 2= {1.12.2= N. L. L. L. {1.d, p1.$4.q1.d, i<.P[.L|.q1.q1.53.Q1.!) P[.q1.q1.%4.M:.q1.9,.c|.]1.R1.p&.l[.E3.R1.n[.R1.E3.&4.z2.<[.n[.z2.<[.<[.<[.z2.n[.*4.<[.z2.z2.k>.*|.*|.U1.3>.]<.X<.P].3>.S:.T1.P].P]._/.<: 62.4'.4'.4'.P{ 4'.4'.b$ c$ f$ ,~.|@ @* @* b$ d$ i$ ** /; 3@ l$ 4@ 1@ |@ X% o, `% R|.f$ P. =4.-4.2[.;4. (.j_.>4.k+ xT IY lS qN JM l` ,4.'4.u#.n .,T 3U ;Y 3U 1K yT ^R bO 3U 3L |K dz /.U H J F= z I w Z$ m 6* `$ h Z$ ,> Y$ n ", +"J$ <{ <{ 2^ 2^ <{ L$ <{ *) ]^ I/ I/ L$ L$ jP BN BN I/ I/ I/ J$ I/ I/ I/ K$ 1) I/ ;b $ + # # K$ + 0' = # ]& 0' $ ]& 1) L$ > - Q$ = V@ T@ > $= $= $ = ' |* $ . . . ' Q$ ; Q$ Q$ - S$ $ > & S$ ; & R$ Q$ Q$ . ] Z! 2 H= N$ . ' ~ | > U@ %= P$ ^ ^ P$ %= 2 X@ H= ; R$ N$ *# } 4 ~ : 7- { ) | 5 2 2 { ~ ; } 5 ( $# d / } $# 6 } ( 6 2 Y@ a 6- 3* 1 Y> V$ 6- e 6! tA $# ,# !# a !# K] n 7 {# 8x s> -) {# r r s> 2, n L= r V| 2, r % xE V| V| 4* p vA 4* t C #] /# % }4.[# w w F $S t 2; G 2; /U /U C` a7 z z E '&.AR '&.a7 a7 $T HV AR AR T^ 4>.T^ HV V c- (#.1& p=.4>..@.t%.e:.k1.|4.AX ` 3# Z..iI B$.-*.:#.A: oY (U qF XX (U ];.^P )Q ^P RT RT +Z +Z +Z +Z +Z Z .sZ +@.e-.G&.{&.3@.CX {&.CX hT a&.4..9&.E` .` y@.E` 4..9&.:=.#@.` .4Z ...!$.B .` .)$.Y$.<+.z@.$ .N#.0 ..+.#-.#-.N#.7Z _W cX cX a .C .%Z oW cX _W 3Y 'X @+.E .d .%+.&V nU gV &V Vq GS GR nU RP )K XL GR 4z Wq KJ KJ HR RP MQ Wq dJ cJ pW GR OV uP Wq bJ bJ UF )H EH EH *J eJ *J ]K RA eJ >k vy :I IH HH ~i Qd 14.vy _E Lk {i Mm Mm Lk A9 Qd A9 Lk Lk 24.Qc Xe Mk 0h ]i t[ t[ >/ >8 C{ t[ Z< t[ d/ `~ Q5 Z< ;8 {1 &^ `~ Y^ *^ `~ ~! i2 5< A> H~ A> 0! ') m- m- m- A> a, )) 0~ #, X' #, n] P; G. q~ G. G. 6% G. D. 9% N. L. 12.O. J. N. L. N. J. J. N. L. h:.N. 8% q& !) 22.q1.P[.d, i<.Q1.3= q1.Q1.Q1.$4.32.i[.O|.34.44.P|.l[.c|.i[.[}.x}.D3.T[.E3.R1.R1.&4.54.}}.<[.z2.<[.n[.64.z2.74.<[.z2.<[.z2.G=.*|.3>.3>.G=.X<.P].84.P].T1.P].T1.W<.T1.P{ p[.T1.X<._/.P{ 4'.4@ |@ P{ i$ e$ H3.c$ H3._{.^; _].b$ 2@ 8@ |@ 8@ 9@ 94.X% l$ 2@ 04.a4.]).b4.c4.d4.e4.f4.k! HB lS xT JZ 1L (V IY ,4.g4.3*.UN UN bO |K 3U 3U bO bO ,T 3U q0 |K UN dz aO UN uK .B u/.b,.h4.K!.h3.h3.~4.~4.i4.i4.~4.~4.~4.i4.~4.S3.j4.~3.!3.O2.j2.P2.l2.;2.k4.D1.)2.j3.A1.(|.Sn /3./3.RX W2.R..5[.l4.E<.>Q m4.n}.~}.n}.E% T+ V+ T+ P+ P+ Q& ^l n}./- pM vC #f n4.H<.D[.D[.I<.-1.o4.$<.8<.$<.-1.^_.f(.E/.p4.W}.#:.#:.ne q4.s[ #% 8* A 2; x G G :# D `$ 4* c `$ ,> u `$ ", +"<{ *) <{ 2^ J$ r4.*) <{ ], 2! J$ I/ ], L$ 2^ 0' I/ G= G= 5_ L$ ]& I/ 0' K$ # % <{ ]& # K$ I/ # # p9 1) + . $ # # + # $ S$ > . . > > # + ; & . $= U@ N$ > H= P$ o! X! > - Q$ . + . S$ ; . - [* ] ] > M$ & N$ N$ ~ 2 ; U@ o! $ ; ) ~ N$ N$ ) & /& ] ~ ; 2 ) X@ 2 | <& X@ | ~ 8- 1 , ## ## d d { ) ## ## 4 { 3* / ,# V) [{ } 6 7 } 7 J] 0 7 k /& d {# i b k i ,# 0 k a 0 L= t' ~# z: ,# [& L= !# Y$ K] {# L= 0 2, ,> n^ L= g % ,> h p b' C n^ L= /# `$ ^# 4* m t :# w F= P<.{& F= G F #] /U F= '&.a7 '&.E a7 a7 AR a7 8$.AR $T T^ '&.A T^ .@. V c- c- V T^ V .@. V V s4.4>.|4..@.y .Z..)^.A: SO iU B$.aV *I *I qF XX I#.oY yS >$.RT )Q )Q +Z RT )Q Z .Z .R%.G&.Z .1@.G&.+@./;.3@.n,.^,..` E` E` L-.4..q*.9&.]&.9&.` .:=.` .4Z f-.Y$.^&.qY S%.)$.!$.$ ....s'.M#.$ .$ .sY `$.N#.#-.^W wZ oW cX cX cX nW cX _W 9` gQ t4.vY 2+.hV eX yZ 8Z xY MV &V QW Q( @, O] I^ [= A> ') A> a, P; J~ 5% n& ') C> )) #, q~ #, G. G. 4% F. D. {1.v4.K. N. N. K. N. L. 8% w4.N. x4.22.Q. 22.x4.!) y4.q1.P[.{1.Q1.P[.q1.!) Q1.q1.Q1.Q1.t1.O|.A3.z4.x}.i[.i[.i[.x2.x}.l[.y(.y}.&4.R1.54.E3.R1.z2.n<.<[.n[.<[.z2.74.n[.z2.n<.z2.z2.3>.84.A4.3>.P_.P_.P].P].T1.T1.T1.P{ 62.|@ f$ Y<.L- W<._{._].<: x= 4@ v; d$ x= |@ _].d$ <: b$ 1@ f$ x= f$ X, 3@ 8@ l$ 3@ h$ `% B4.C4.D4.E4.F4.+[.V].)- lS xT JM xT HB nS xT IZ G4.H4.3U 3U ,T bO aO bO .B 3U bO 3U . . $ . # Q$ S$ ; . $ ]& M$ = Q$ . > & Q$ U@ # + > . . . & & & $ > > . S$ U$ & ; & U$ R$ | U$ H= & > ; ; & > N$ | X@ R$ > S$ Z3 N$ H= U@ & N$ { Y@ ; (& X@ ) | 2 %# 7- | { 4 X@ W@ } [ { *# /& 2 *# 6 } Y@ k V~ ( 6 a' 2 D, 2 1 7 b d $# } $# a 6! 3* d k Y> a ~# 6! 6! 6 n k a 0 ~# r a L= Y$ }& [& c n s> ~# ~# `$ 4* ,> 4* 4* @= y2 ^# m 2; '> 2; 2; /# E :# @= F= #] w F /U G w W) a7 I K '&.z '&.F= '&.'&.$T 8* $T c- c- V I{.N@ >z M m;. V m;.$T c- I-.4>.~,.v@.c- E$ I#.}Y L p*.B$.B$.iU iU p*.)Q 3d yS W4.RT lP +Z Z .Z .+Z RT ],.Z .Z .!&.Z .!&.Z .G&.CX 0$..` $).3@.E` D` a&.9&..` E` ]&.9&.+` ` .:=.`X z+.Y$.` .2Y z@.^&.S%.$ .0 .!$.N#.0 .)'.X4.3Y M#.N#.C+.oW ^W _W oW %Z oW oW _W cX DR >R VT mT yZ 'X 0` / rg t[ }c d/ X: d/ t[ t[ &^ `~ >/ `~ Q5 G~ {1 [ ~! {1 t^ Z4.Z4.6~ k{ [= `4.m- ') A> m- 0! )) ') A> )) 7~ 4% )) q~ )) K~ n- $, H. G. D. D. N. 8% L. 8% N. 22.J. 5.N. J. L. !) 22.{1.8% 3= 53.3= !) P[.p1.q1.P[.$4.Q1.P[.q1.q1.Q1.<{.D3..5.+5.i[.x2.D3.42.c|.l<.+5.P|.64.&4.E3.R1.@5.z2.n[.64.z2.<[.z2.z2.F3.n[.n[.S:.52.3>.#5.3>.P].U1.X<.P].T1.P].p[.p[.T1.Y<.P{ <: 62.4@ Y<.T1.62.3}.b$ _].<: |@ [@ 2@ _{.b$ p[.3@ R9 4' 8@ $5.2@ 2@ $* 3@ f$ 9@ w; %5.&5.*5.=5.-5.;5.>5.,5.*5.{2 xT JM 1L nS aO IY (V IY aO ,T .B %U hZ ,T bO bO bO ;Y 3U .B dz Yi Yr Fl 9> s+ '5.)5.!5.'j ~5.{5.i4.i4.i4.i4.i4.i4.i4.~4.~4.{4.j4.M4.~3.!3.O2.i3.;2.SD D:.B1.b1.m2.m2.]5.Rh Sn u .RX .S dP ^5./5.(5._5.Q4.n}.vC /- E% O+ /$ L+ V+ :5.<5.u2./- a> L+ X+ of {}.!}.8<.[5.tN }5.z:.|5.,[.$<.o4.-1.-1.9w E/.d[.0w E/.R}.3g 15.T K@ P@ D {& G G :# G c{ Y$ m D h c 1, ", +"9| J$ <{ <{ 2^ ]^ .( I/.|1 ]^ 9| 2^ I/ R@ <{ J$ p9 I/ R@ ]& ]& G= 0' I/ 0' % K$ ]& I/ # # # $ Q$ ]& + # V@ + Z, # $ # . 2) S$ 2) Q$ & Q$ ]& L$ V@ . V@ H= - > = |* S$ ' Q$ U@ > = ; ] > & ; S$ N$ . $= ; ; U@ ~ %= $ ; ; Gc - ; 2 S$ & P$ %= S$ > X@ ~ | & N$ / ^ S$ | ~ | 4 [ { N$ ;# X@ Z! ~ { 2 & <& } ( *# $# ## 2 1 6 J] $# d 6 a 4 6 6- ,# tA a ,# a < 6 V~ 6! a a q> 0 a k g j n c Q{ &].h c !# 0- _# K/ c s> Y$ c{ p s> p Y$ m b' ^# 1; 4* ^# |Z 1; w {& /# 4* :# /# F= u /U w /U G a7 '&.a7 z :# w A A$.a7 $T $T #] U!.I O@ .@. V V c- V =X K Z JW m;. V .@..@.4>.(#..@.d{ p*.aV *I aV :#.-*.-*.:#.p*.#N 3d +-.F>.RT ^P RT Z .)Q +Z RT Z .Z .+Z G&.R%.0$.RT +Z 7)..` /!.$).'*.d~..` E` o;.J#..` .` y@..` b&.]&.f-.#@.r*.<+.)$.B .25.<+.B .z@.z@.$ .$ .N-.N#..+.<=.M#.x%.pO cX cX oW oW oW oW cX cX oW FX VT 'X wY yZ hV gV k vy 9h {i vy 2I zn Lk Lk Mm 0h cd Lk {i Mm 0h 6e rg 03 Si We >/ F~ c9 c9 C{ C{ t[ `~ V{ &^ &^ X: &^ Z< &^ &^ b3 H~ Z< i2 O] G| `4.O] p~ m- z. [= A> m- 35.y! y! y! a, c; m- a, q~ )) G. G. H. G. 5% 6% G. K. N. N. L. L. N. 8% N. 8% N. L. y4.L. {1.y3.!) 53.53.q1.q1.45.B3.q1.34.Q1.Q1.Q1.34.B3.A3.A3.D3.55.65.x2.D3.p&.C3.O|.y}.P|.z2.64.@5.@5.75.64.z2.64.64.<[.85.<[.n[.64.85.64.<[.95.A2.P].05.]<.#5.{).p[.P].P].P].p[.P].4'.P{ P{ 4'.s1.62.T1._1.P{ <: b$ L- 9@ 2@ f$ L- 8@ |@ y= 8@ 9@ j$ |@ i$ a@ 8@ X, X% -* a5.b5.c5.d5.e5.f5.g5.h5.T:.i5.|L xT HB h+ :S lS xT l` IY -Y 3U hZ e..aO nS bO |K 1K aO )$ Xi v+ 8> '$ s+ g= j5.k5.l5.i4.i4.~4.K!.K!.K!.K!.i4.i4.~4.i4.~4.~4.E|.M4.S3.!3.O2.T3.l2.l2.S2.,2.U3.m2.]5.n2.Rh N}.Dd +y Wk .S m5.n5.yb o5.() p5.o}.vC L+ Q+ S+ T+ R+ S+ g1.{- Q& vC o}./- /- of U}.;[.q5.r5.s5.t5.@<.,[.,[.8<.^_.O(.e(.e(.e(.-1.O(.Wo k,.u5.H$ J Q@ G D w @= ^# D (# o (# `$ n c _# ", +"9| J$ ;b jP <{ R@ .( ;b I/ R@ R@ ]^ 0' G= 9| #S #S I/ J$ jP I/ BN G= ]& 0' 5_ # # 5_ 0' K$ # + + # # = = }, . % L$ > V@ # * . # > ' > # # . R- # 2) - > > P$ & . + N$ A; ] & ] $ = > = > 2) . ; %= H= X@ %= = ! | | | %= I= | S$ U$ S$ & ^& ~ N$ X@ X@ ~ ~ U@ ; 8- 5 ~ X@ { : ~ ~ [ Y@ 2 ## 6 Z! $# *# { 1 { d d : ,# V) } /& 7 3] Y> <& d : v5.w5.,# /& $# d k 6! K/ a k e 6 ,# a 3* e c L= c W$ j k L= o Y$ c g L= 0- ,> ;= e h p! x5.[# /# y2 /# t n^ ^# Y$ 2; F= F 2, |Z w $S G w ).F= z a7 z b' a7 [2.a7 z n! '&.C` U!.JW 8$. Z >z c- c- V c- :}..@.2Z 2Z z .4>.5 .x .H#.p=.Q aV MW 0S iI :#.-*.B$.-*.iU *I #N +-.(U I#.^P RT G&.G&.Z .Z .Z .+Z +Z lP bV D` w@.R%.e-.0&.0$.#).$).n,.CX .` 4..9&.E` E` pY J#.a&.3..o;.#Z z+.~W <+.[#.5Z #@....z@.z@.#-.z@.$ .B .0 .B@.N#.T%.C+.^W oW oW ^W ^W _W _W _W ^W ^W WT &Z gV 0` :W gV n1. 6~ m- m- m- #, y! a, X' t) )) #, J~ C. D. F. F. G. D. F. u) 8% w4.w4.N. 8% N. w4.N. L. 8% w4.!) p1.d, !) !) C5.P[.53.L|.B3.P[.Q1.Q1.q1.Q1.D5.$3.!) <{.x}.E5.O|.O|.D3.E3.F5.j[.G5.p&.H5.<[.54.E3.@5.54.<[.85.<[.n[.z2.z2.S1.S1.I5.k>.z2.J5.*|.A2.p[.{).*|.{).p[.P].A4.p[.T1.p[.4'.P{ 62.l/.X, <: P{ |@ ^; 2@ X, |@ 8@ `<.n, }@ l$ u; 2@ 4@ 6@ X% 1@ T* ** 5@ X% `<.K5.L5.M5.N5.L3.O5.P5.Q5.^) }.R5.-$ q+ q+ m+ n+ h+ m+ l` ^ .:S 3U ,T ,T bO Xi qt Xi 9> .B Fl p+ u+ N> y% |! 6{ Y).S5.T5.U5.~4.i4.K!.K!.U5.i4.~4.K!.i4.i4.h3.~4.E|.~3.P2.~3.k2.j2.;2.-2.T2.G1.b1.j3.)2.(|.Rh N}.vX RX ~U Bd V5.S}.W5.<5.X5.() t2.a> /- {- S+ V+ P+ R+ Q+ E% a> vC ~}.u2.n}.b[.h1.Zi 7<.)] o}.Y5.B[.7<.]_.$<.D[.#<.o4.9w E[.=1.O(.d[.0K Z5.1# 3# A x G }# w :# Z$ /# ^# Z$ r h h C; ", +"J$ 9| J$ <{ <{ J$ ]^ 9| <{ 9| 2^ BN I/ R@ ]^ 2^ #S I/ ]^ J$ I/ I/ L$ + L$ ]& K$ # 5_ + # # Z, Z, + L$ = # > V@ + + + # + # . $ = $= S$ + + > ]& k) V@ . # $ Q$ |* $ ; ; & Gc = > o! U@ & = > ; U$ > $ | | $ Q$ ~ ] & ; Z! | . N$ ~ H= ; ^ & ; ) N$ | ) H= Z@ ; { 2 X@ +# 2 05 2 7- 7- 7- ( d J) $# Y@ d } 6 7- d b k 4 2 d k 6 6 Y> +# 6 J] ~# q> e Y@ 5 k L= g ,# a ,# e L= ~# a L= n j ,# c a Q{ W$ r K/ c ~# Y$ ]# L= ,> Y$ E, Y$ ^# ^# G#.^# ^# t u `$ ^# /# D :# 1; D t |Z F z ^# K a7 a7 /U z )./U A$.{& A$.$T AR c- 8$.,/.:}.F= Z M #= T^ .@.4>. V t%..)..@..@.(#.`5.y .t%.B..:#.*I aV iI iU I#.*I qF BX #N k#.BX ^P .V RT +Z +Z RT G&.Z .RT G&.9$.H&.H&.0&.Z .{&.3@.9X F]..` CX .` E` 4..E` 4..3Z y@.4..@@.9&.2Y 4Z [#.<+.<=.5Z )$.Y$.p;. 6.nP 8 .$ .$ .N#.wZ N-.S%..#.cX oW nW cX oW _W _W C ._W ^W fV yZ %Z &` hV A> A> K~ y! 7~ A> y! P; #, #, n- 4% )) H. H. G. D. K. N. +6.5% D. D. 8% 8% O. 8% L. N. y3.8% z3.q& 53.$4.Q1.q1.q1.L|.34.q1.3= Q1.q1.Q1.32.A3.M|.D3.$3.@6.42.C3.x}.+5.%4.R1.R1.R1.64.54.R1.#6.@5.64.<[.85.85.64.64.$6.$6.k>.%6.64.z2.3>.r1.3>.C2.84.84.{).Y<.|@ p[.T1.p[.62.^; L- -|.1@ <: &6.|@ <: 3}.8@ u; 9@ 2@ 9@ 1@ 8@ 2@ i$ j$ 3@ X% 9@ 3@ 1@ 1@ 5@ l$ *6.=6.-6.L3.;6.>6.6| S) |' ({ .Q ({ q+ ({ q+ HB n+ l+ ({ TR HB 3U ,T .B |K cO BD MH ({ Xi '$ t+ i= M& y% |! 71.6{.f2.,6.'6.i4.i4.K!.i4.i4.K!.K!.K!.i4.i4.~4.h3.)6.O2.~3.S3.P2.i3.>2.R2.G1.b1.c1.n2.%1.!6.(|.vX vX :w .S dP ~6.{6.]6.^6./6.^N B[.{- vC E% Q& vC pM L+ a> n}.S+ E% g1.S+ /- a> $) vC 7<.n}.iP ;[.#<.D[.D[.#<.o4.,[.,[.$<.O(.(6.^_._6.:6.<6.Q@ K@ A p G /# /# G w % ^# h p c ~# r ", +"<{ J$ J$ 9| 9| J$ R@ |1 8S <{ BN R@ G= I/ G= V! G= I/ G= R@ L$ 0' I/ I/ 5_ L$ ]& K$ + 0' ]& K$ # ]& ;b % # ]& # # . 0' J$ ]& V@ > . $= . #^ . H= $ + 1* ,Q 9S Q$ ; & N$ > S$ > H= H= - . 0' ] > . %= ; Q$ $= $ = Q$ Q$ [* & = N$ ~ z] ; & ] ] U@ U@ = X@ / > ; ~ 2 Z! { | ) | X@ | N$ | | | 7- 1 7- ~ W@ ( ## Y@ $# 5 } / Y> Y> < 7 5 } ## Y@ X@ 7- j /& &# q> 0 Q{ {# ~# $# $# V) 6 ( e e ,# a ># !# K/ L= o a K/ {# {# b h ,> ~# 0 L= 0- n r }& 0- r % `$ $] % ,> ,> m u 4* ^# w w m t w 2; F= {& F= G z C` #] z AR ..@..@.c- .).v@.(#.:#.aV AX A: *I A: iU oY oY *I yS G$ oY (U #N )Q )Q RT Z .RT ^P Z .RT +Z 1@.Z .Z .<#.Z .+@.+@.0$.D` D` .` E` .` 9&.4..E` E` 4..E` a&.o;.` .` .4Z Y$.<=.qY S%.#@.B .5Z uZ ;X }6.$ .N-.B+.)'.0 .M#.^W ^W ^W ^W oW cX %Z cX cX oW FX gV &` 9` a` xY yZ gV gV hQ ^O ER _P bR jQ )K KJ zM )K zM )K XL GR BH XL tP ,H tP dJ UF /I /I bJ UF Wv ^L RA bJ CG Pw CG |6.rB :I dt 16.~i )u >k !i 9h {i WA {i Pc ^v A9 {i Mm Qd A9 Qd ad I0 6e O3 rg ul Ok W: c9 t[ C{ C{ d/ C{ C{ t[ d/ &^ Z< `~ t^ `~ `~ Z< &^ &^ a3 f( t^ 26.[= H~ E{ A> A> A> A> [= z. y! O) m- [= #, 4% )) #, 4% D. #, F. C. F. F. 9% N. G. v4.8% N. w4.w4.12.N. L. 8% N. 8% z3.z3.y4.22.55.z3.q1.34.p1.q1.q1.Q1.Q1.53.Q1.A3.36.46.+5.56.66.76.86.E3.C3.+5.R1.]1.&4.54.E3.E3.E3.z2.96.z2.64.n[.z2.64.96.F3.{).*4.*4.S1.3>.r1.3>.{).#5.84.P].62.p[.P].[@ <: G3.^; /; |@ 2@ T1.X% /; d$ 1- c$ 4@ x= 06.f$ x= b$ $5.8@ 9@ X% 8@ a@ 1@ U~ `% H3.a6.m|.8}.L3.b6.>~ c6.>~ g+ HB JM JM ]G 1L JM ({ q+ -$ Bs lS l` i@.;Y qt Xi !- m+ !- ({ 8> )$ |! t+ l; G/ 1].E^.z{.1^.d6.~4.i4.~4.i4.i4.K!.K!.K!.i4.~4.~4.h3.h3./Z )3.~3.l2.l2.i3.>2.R2.G1.b1.)!.n2.e6.C|.%1.f6.kZ +z .S -U |&.g6.h6.i6.i6.j6.~}.B[.u2.pM u2.k6.l6.n0 ~}./- L+ O+ a> P+ T+ T+ Fc ]w ]w T+ ^l iP ;[.H<.H<.;[.v_.0:.#<.#<.^_.m6.=1.n6.o6.]}.3d S Q@ C I F {& D t q Y$ p r c _# ]# ", +"<{ J$ ]^ 9| <{ I/.R@ 9| <{ ;b BN R@ ]^ G= G= I/ I/ BN I/ k3 I/ I/ 0' L$ |1 #S o! # # = 0' I/ * + 0' % + J$ 0' 1) $= . ]& [* . # ]& $ + + #^ S$ & . $= R@ 2) [* > S$ P$ . > ' ]& Q$ > P$ + V@ U@ > . | S$ & . ; ] Z! X@ S$ H= J) { U@ ' U$ X@ R$ ; S$ T@ . W@ ) H= X@ 7- { X@ 2 [ | 2 [ | | { | 8- 1 [ ~ { ## /& 4 D, } ( ## } } [ ( 6 <& 4 8- 2 } &# } $# ,# 0 a L= v5.i q> 6- 6! k 7 K/ K/ 0 0 a {# 0 K/ c !# }& c {# h r {# ~# 2, h }& 4* 2, K/ p G#.4* v s> 2, t w t m ^# b' ,> 2; p G t F= $S z G w /U C` F= p6.G a7 [2.n! P<.T^ 8$.O@ JW H[.O@ Z c- T^ T^ V c- .@..@. V .@.c- 4>..@.4>.B$.SO iU SO A: (U iU A: *I :#.(U qF K-.k#.iU 6).^P RT )Q Z .9$.)Q )Q RT RT |@.Z .'*.1@.Z .7).0$.D` 3@.CX 9&.hT 9&.CX E` E` 3Z 4..4..o;.4Z #@.` .2Y ...Y$.qY r*.Y$.Z$.kT jT L#.5Z !$.pO 6Z 0 .$ .^W ^W nW cX _W cX %Z C+.cX oW cX oW wY 7Z 3Y [T &Z &Z 'X *Z :W zM ,S &V GS .Y XL {L {L zM )K Wq RP zM 0N 0N 3M OA aJ /I bJ /I ;H UF UF OA !K UF !K Pw eJ RA Kk eJ vI *J CG CG >k jf 9h 9h 9h >k ~i ]A A9 {i {i Mm A9 {i A9 cd =0 rg vl >/ 03 rg c9 W: d/ d/ O3 C{ C{ G~ d/ C{ G~ d/ 7] &^ W{ {1 &^ `~ `~ Z< t^ 96 `4.E{ *^ 6~ A> z. `4.A> N; [= y! A# m- y! A> y! C. H. D. #, q6.G. D. C. F. C. 5.L. w4.8% r6.8% 8% 8% 7% N. N. 8% y4.p1.y3.N. 45.y4.34.s6.q1.P[.34.$4.t6.34.s6.Q1.36.u6.+5.s6.v6.i[.86.+5.O|.86.D3.E3.R1.E3.@5.@5.@5.85.<[.z2.z2.z2.z2.<[.*4.64.S:.85.74.64.%6.3>.#5.w6.r1.x6.x= p[.v; X<.y6.|@ <: X% f$ V1.C2.^; 2@ 9@ }@ 9@ 03.1@ z6.d$ f$ *3.<: l~.9@ `<.7@ 3@ o$ 3@ 3@ 2@ a@ A6.B6.8}.c6.C6.6| c6.D6.-$ xT !Z l` xT 1L 7W HB ({ nS IZ lS xT qN bM ({ !w ({ m+ n+ n+ N& 1].t+ y% =, `/ 1].G,.z{.f2.E6.i4.i4.i4.F6.i4.i4.i4.K!.i4.h3.~4.h3.)3.h3.O2.~3.l2.;2.i3.=2.F1.G1.b1.c1.{B G6.$1.Sn N}.Wk .S H6.I6._ .J6.K6.L6.M6.^6.N6.O6.u2.n}.~}.g1.`U n0 ~}.{- vC {- /- S+ R+ S+ be &g ta P6.Q6.iP b[.!}.H<.8<.8<.$<.O(.=1.9w o4.,[.R6.S6.RB (4 2& A x D t D :# w w u % ^# p ~# e ", +"9| J$ <{ *) *) <{ R@ *) jP <{ jP BN R@ BN I/ G= ]& L$ #S R@ I/ 0' ]& G= L$ L$ ]& + # + 0' L$ # # $ ]& # J$ 0' $ k) o! $ . ' # + > + 0' + > $ S$ . . > ' & . V@ > U@ E! o! - ' $ > S$ Q$ = U@ & & > ] }, U@ =' U@ X@ | ~ ) ; 2 ; ~ ; R$ > > *# | H= & ) 2 ~ ~ 2 | 2 2 [ Z! ) | X@ U$ [ 4 ## [ X@ J) ~ / } 1 ## Y@ } W@ ># ,# 6 7- *# $# $# 1 ( b 0 Y> 0 L= 0 ~# k z: {# q> 0 e L= Y> 8 z: {# ~# n ~# 6! r h 0- Y$ L= 0- 2, n^ h p r n b' % m b' 1; 4* ^# t t [# /# 1Z w w 4* {& G /U C $S F= w F= P<.G a7 z ..@.>z c- c- 5 ..@.4>.t%.SO r! aV y .v@.I#.oY iU I#.aV (U XX +).k#.RT )Q +Z +Z RT +Z RT RT +Z ^P +Z 9$.Z .{&.+Z e-.D` 0$.$).7` 4..CX E` 9&.E` .` 9&.3Z .` 9&.` .7 .4Z z+.Y$.#@.Y$.z@.4Z z@.$ .DR pO (,.<+.OW aX )'..#./&.^W _W ^W ^W cX oW _W oW oW cX oW 'X ES &T A> N; z. [= A. M; m- m- N; D# F. D. n- n- G. D. +6.C. C. y3.w4.N. 8% U6.w4.w4.8% 8% w4.8% y4.$4.y4.22.y3.$4.y4.Q1.$4.V6.q1.q1.q1.t6.s6.34.34.W6.y4.X6.$3.t6.C3.76.75.@5.86.@5.@5.@5.54.#6.75.E3.64.64.z2.64.z2.z2.z2.85.85.]<.%6.z2.85.64.3>.{).A4.84.#5.Y6.T1.^; p[.^; T1.<: 84.p[.4@ X% 9@ 2@ X% X, <: 2@ 9@ 1@ [@ T* (; v; 2@ H3.y] 7@ 1@ 9@ a@ l$ 6J nH Z6.`6.%_. 7.+) D6.;4.2[.}K 7W 7W !..!..!..({ HB 1L bM lS lS HB }K m+ q+ =; h+ ({ h+ ;$ M& @) u<..7.u<.3(.+7.V].z!.j].@7.~4.i4.K!.F6.i4.K!.i4.K!.K!.~4.i4.)3.)3.)3.O2.T3.i3.l2.k4.F1.F1.#7.$7.+I Rh f6.vX aW ^+.+z dP -}.Q .%7.D;.&7.*7.=7.-7.;7.>7.i6.B[.u2.B[.g1.^l {- g1.o}.,7.P+ /- g1.;[.'7./- )7.!7.~7.B[.{7.]7.!}.b[.!}.D[.$:.E/.-(.o4.f(.^7./7.Nh s[ I N= /# {& w D M= D u D 4* /# r [& o ", +"9| <{ 2^ ]^ <{ |1 J$ J$ 9| <{ <{ #S ]^ G= I/ I/ R@ 0' I/ I/ I/ I/ I/ I/ G= ]& 5_ = # K$ 0' 0' + 5_ ]& ]& V@ + $ k) R@ ]& L$ + T@ . # ]& > !, ]& = > Q$ $= U@ & . > $ + - ; U@ ' N$ ' A; * = > Q$ U@ U@ - P$ S$ > ^& A; $ V@ U$ H= Q$ > . ; %= N$ %= ~ ; | N$ ) ] ; ] 2 =' X@ O$ 2 P$ { *# 2 ~ | I= I= ^ I= | / 7- ~ { [ 7 => *# d x0 7 } d $# *# { /& [{ 9 V) 4 V~ k ,# $# 6 $# 0 3] ~# a a a 8 a a e K/ e t' ;= z: c n L= p 2, p p {# Q{ u q 0- % 1; 1; 4* Q(.t d<.p m % 4* b' 2; t t #] /# 2; F= a7 F= z B '&.G F= *].a7 a7 z /U AR AR (7.a7 1& AR H$ M .@. Z 8$.c- (#..). V .@. V 0S 0S v@..@.AX aV AX I-.I-.aV A: B$. ` J *I _#.J-.k#.)Q +Z +Z RT Z .+Z RT +Z Z .Z .+Z +Z Z .R%.H&.Z .R%.R%.3@.'*..` E` .` 4..4...` 4..y@.d~.E` ]&.:=.4Z 4Z EX E_....B .Y$.~W B .DR DR L#.L#.L#.nW N#.0 .X4.aX oW uY ^W nW oW nW oW cX cX oW &Z 'X bX {O gV _P ,S nU _P :W hV ,S hQ XL {L &J )K )K )K XL zM )K {L {L KJ aN 3M aN /I Wv OA OA bJ ;H ^L IH /I EH DH rB rB CG )H sy !i >k >k !i ~i ~i Ri {i )v A9 {i {i {i {i Qd Qd ad -8 cd V: u4.I0 c9 rg W: O3 }c V{ t[ V{ V{ G~ d/ F~ C{ `~ `~ W{ `~ d/ `~ W{ l- *^ &^ l- H~ X= L} ~! A> m- m- A> z. m- [= [= m- [= N; m- M; F. D. D# }= D. B. y3.+6.F. q6.8% 8% v4.q6.w4.r6.N. 8% w4.w4.y4.$4.w4._7.53.$4.y4.53.34.55.Q1.q1.Q1.34.34.34.Q1.Q1.Q1.t6.%4.t1.:7.C3.D5.@5.<7.75.@5.[7.}7.E3.<[.E3.#6.z2.85.85.|7.|7.85.85.85.F3.64.74.64.z2.r1.I5.p[.^; r1.p[.G3.p[.p[.^; 9@ ,~.p[.<: _{.x= <: x= &* 3}.P{ _{.`<.9@ 17.i$ f$ X% %* 6@ 7@ Y, 7@ g$ 7@ i$ 6@ e@ 27.37.C6.47.,- ^) k! q+ lS JM q+ q+ .Q 1L HB xT xT 1L 1L 1L HB m+ h+ q+ M& ({ )- |^ @) r+ u] (.X{.[).+[.G,.{~.P'.j].57.~4.~4.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.O2.k2.O2.j2.=2.>2.,2.F1.G1.b1.]3.Rh (|.N}.RX RX .S ~P -}.@H 0#.67.77.87.97.07.a7.b7./6.c7.d7.t2.LP o}.iP ^l g1.~}.n}.n}.vC a> Zi p5.e7.Zi pM Kd f7.g7.h7.i7.j7.h1.k7.!}.9w x_.^_.rv E[.AK ]s vo b- N N }& r `$ G ^# N O' `$ e h h 4* ", +"<{ <{ (}.9| <{ <{ R@ 2^ 9| ;b <{ <{ J$ ]^ G= #S 2^ I/ 0' I/ ]& I/ I/ 0' R@ ]& 0' 0' + # + 0' + 5_ + ]& # K$ 0' = 1) }, $ + V@ # Z, ' > . Dv > U@ . k) - + . S$ M$ # S$ . $= . $ U$ S$ Q$ $ |* & * > ; > > | ] H= & U$ ; %= ~ ; {c Q$ S$ . > N$ ~ . *# ~ ; & U$ Q$ ] R$ 2 { 5 d < N$ [ 2 ## ## | ) 1 $# 4 ] X@ 2 5 1 $# J] d 7 d ( d 6 ## d ## 3* a $# J] ,# q> } ~# 7 {# 0 !# [{ d 0 0 ,# 5 c L= 0 ~# c t' n L= h 0 L= p r {# r p n #| 2, Y$ % t 1; V| Z$ m t C C :# w F F= F= #] /U /U F= F= F= |Z 1Z z a7 n! '&._}..)Q +Z RT )Q Z .+Z )Q Z .RT RT R%.Z .9X AS 1@.R%.R%.3@.0&.#).d~.E` CX CX 4..E` +` E` .` 3Z 4..4Z z+.pY 25.#@.z@.5Z [#.m7.z@.pO +.jT OW z@.^W aX +.%` ^W ^W oW cX nW nW ^W ^W _W oW 9` gV ES ,X $ . > . [* # + $ S$ + V@ %= & 1* > = # + . J$ . = $ ; S$ & > V@ ; N$ & . - & N$ %= o! ' ; ; { | ) & N$ ] & Z! ^ ] ; = | ~ X@ [ / J) [ ) I= *# +# 2 ~ [ 6 d *# X@ ( d $# $# d e 6 / [{ 7 6 6 q> a 0 6 k {# k d 3* 7 K] 5` q> &# a 7 6 c a 0- ~# !# 3] k n W$ {# s> (# h n Y$ h h q n ;= p q 1; d<.4* &].m `$ t /# ^# 2; {& {& F w $S {& /U F= z..E $S p6.a7 z z @ .'&.a7 '&.1& 1& _}.z '&.8* c- a7 V 1& HV V V M c- T^ .@.5 ..@. V .@.(#.O B$.iU r! aV -*.iU SO I#.(U M7._#.I#.+-.+Z RT #N >$.Z .+Z )Q RT G&.RT +Z sZ 9X 1@.0$.R%.E` +@.+@.#)..` 0$.E` CX .` +` 9&.9&.9&.:=.y@.2Y DX Y$.)$.D.....2Y S%.!$.nW L#.0 .aX `$.pO pO OW 8 ._W cX cX uY cX oW ^W ^W cX cX bX gV &Z $+.@+.,S [T qP rP ,S pP = .GX hQ kV )K )K XL )K XL XO )K BH XL GX BH aJ BH KJ tL ;H ;H /I UF OA /I (I sL /I 'A |6.rs Kk rB Ow VA !i !i jf ~i ]A ]A }5 >k 9h A9 Mm Qd A9 Ri B7 A7 ^] -8 A7 H, M4 ,k 0h V: 0^ d/ C{ W: C{ C{ G~ G~ C{ F~ s[ d/ W{ G~ 8) I~ Y^ 7] *^ l] p* l- N) N) 8] X= [= N) z. z. z. m- z. z# z. A. M; #, F. D# D. n- m& }= I. F. N7.D. F. D. U6.o- O7.w4.N. 8% $4.w4.y4.y3.y3.y4.U6.C5.C5.$4.P7.34.Q1.Q1.C5.55.s6.Q1.34.E5.Q7.E3.R7.E5.t1.S7.S7.E3.T7.75.@5.75.U7.#6.54.@5.V7.75.85.64.85.85.85.z2.64.A4.y6.W7.85.X7.#5.f$ {).L- #5.{).&3.^; <: [@ [@ T1.2- X% p[.X% 3@ 9@ 0@ X% 3@ f$ l$ f$ l$ a@ ** y= 6J 6@ 3@ 6@ a@ 6@ 7@ %* F3.Y7.x7.R! >6.f+ ./ QS BU G4.l` IY !` lS TN lS xT 1L q+ m+ q+ m+ ({ ({ k+ G/ ;$ =; h+ n+ =; l+ u<.71.9!.G,.U{.y{.U].=O K!.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.h3.O2.k2.k2.j2.N2.s$.F1.b1.c1.a1.Rh (|.vX vX RH ^+.kA d _ .&[.{#.]@.,y Z7.`7.W5. 8.^6.B7./6.-7.:3.^6.A:.B[.t2..N g1.~}.n}.n}.a> ^l a> S& O6.of iP {}.;[.u2.~}..8.b[.{}.+8.H<.G<.x_.d[.!s . 0' = V@ [* o! $ # . . + R- S$ S$ |* A; [* V@ |* > . Q$ S$ V@ & # o! . Q$ ] > H= U$ U@ + R$ T- & R$ { N$ U@ ] T- Z! X@ ~ ] H= ~ .# X@ g{.Y@ ~ ~ /& < [ ( ( { I= } 2 <& X@ | 2 N$ [ [ 5 6 } 6 d } ( 7 $# ## 9 5 k a d q> 7 [{ D, a &# a 0 V) d b 9 $# ~# 0 a !# |& !# n |& c 0- |& h ]# 2, 1; h h % V| 1; ),._# % `$ p! h p :# :# :# t {& t D G s> F= {& z {& {& b' D F= /U '&.z z B z F= '&.a7 1& $T 1& T^ 2Z $T Z :}.JW V c- V V z _+..@.4>..@.4>.4>.4>.aV B$.iU AX :#.*I QT *I k#.oY k#.oY y+.RT RT ^P +Z +Z +Z RT ^P RT G&.1@.sZ +@.e-.Z .w@.#).hT 4..$).CX CX hT .` .` .` CX E` 9&.:=.a&.4Z 4Z `X ..` ./,.2Y Y$.B .rY 0R B .z@..+.pO nW aX 0 .%` DR uY %8.cX oW ^W nW ^W oW _W (W 'X bX ES a` rP hQ rP _P pP ^O zM kV kV KJ )K tP 'R {L ^O XL 'R )K jK XL lK OA BH bN OA ;v /I OA OA UF ^L )H /I 'A CG Kk Kk Jk Kk dt !i >k !i !i >k }5 Ri >k Ri A9 A9 A9 Ri {i A9 A9 Qd nj A9 w/ l8 C{ &8.0^ O3 W: C{ C{ C{ V{ t[ V{ V{ r) W{ G~ W{ `~ '{ s) `~ I~ m] *^ *^ W= {! `- W= j& z. z. *8.35.m- s. m- Z= A# z. X= z# D# C. C. F. C. m& m& F. m& F. F. 7% w4.8% =8.8% 8% 8% $4.-8.w4.U6.$4.C5.53.C5.$4.;8.;8.$4.C5.;8.Q1.34.;8.s6.y4.34.s6.>8.%4.,8.t6.F5.'8.75.@5.75.@5.)8.!8.)8.~8.)8.75.{8.]8.z2.64.64.64.64.&3.u7.W7.y6.85.64.3>.#5.L- ^; A4.3>.p[.2@ y= x= 6@ X% L- <: 9@ 2@ K- z6.8@ c$ 7@ 3@ 6@ f$ `% 5@ h$ a@ f$ 7@ ** GV `<.g$ 6@ g$ !{ ^8./8. }.^) +) *P k` L..xT xT TR ]G HB I* q+ I* j+ h+ l+ m+ h+ m+ ({ h+ (.@) r+ n+ n+ ;$ |^ (8.u<.9!.4^.z!.z!.(~._8.U5.~4.~4.~4.i4.:8.:8.h3.h3.h3.)3.)3.O2.k2.j2.=2.K1.s$.G1.b1.91.Rh Rh N}.RX *n Wk kA d Q .0#.<8.]#._d iu I%.[8.}8.4N |8.c7.c7.j6.-7.7<.18.7<.B[.~}.vC g1.^l 28.38.B[.48.^l H<.<|.o}.<|.o}.;[.iP G<.G<.iP <3.7<.58.68..3.78.9w d{.4S 88.1# S I C w F /# `$ % `$ ,! 9- p Y$ K= ", +"R@ R@ J$ 98.<{ <{ jP 8S ]^ G= #S <{ <{ R@ BN R@ #S L$ R@ #S |1 I/ I/ I/ G= 5_ I/ 0' 0' =[ # # ]& 5_ $ =[ L$ 0' V@ L$ 0' $ + + k) + # M$ 1) Q$ V@ ]& M$ + # [* $= V@ $ Q$ . . > S$ & A; > ]& $ - ' = U@ P$ = > ! Q$ o! > N$ . Q$ ^& !, o! ^ U@ U@ & ; > > ; R$ | | ; R$ | ~ Z! Z! ~ X@ ## ~ | X@ Z! [ ~ 7- ) , ) [ ## X@ *# 7- %# 6 *# ) 4 / $# 5 b $# < d 7 ># d ,# 7 0 b a i 6 b {# {# W$ a a a L= A~ L= 3* c z: {# W$ a' g k &].p n n c p 1; h b' p ,> ,> 1; t 2, L= 2, 1; `$ m n^ :# :# :# u F G {& C` z z..P<.z a7 a7 '&.'&.z '&.z '&.8$.a7 KW K F= n! c- AR 2Z V V V V .@.AR c- V 5 .4>.{[.v@.x .A: iU B$.:#.B$.(U *I oY *I oY yS YX oY .Z +Z ^P _M Z .Z .)Q ^P +Z R%.RT lP 1@.|@.0$.$N hT hT .` 0&.+@.CX CX E` 9&.E` CX 3Z .` f-.]&.:=.b&.4Z ~W l#.qY D..l#.5Z @` DR z@.B .;X rY DR vZ %` nW oW nW ^W oW _W cX ^W ^W mW 7Z WO t4.bX bX k !i a9 ~i Ri jf ]A a9 {i Qd a9 Qd nj Qd A9 Qd !1 We 0h C1 M4 w/ W: C{ r) V{ d/ d/ F~ G~ F~ C{ d/ l] '{ `~ '{ `~ f( m] l- ,{ l- W= 35.z> W= z. z. s. z. [= [= [= [= [= m- M; A# 3% n- F. C. o- F. C. D. F. F. C. N. r6.w4.7% q6.r6.8% V6.-8.r6.y3.;8.;8.C5.C5.;8.a8.;8.53.P7.;8.Q1.34.;8.34._7.Q1.b8.c8.S7.p7.34.d8.'8.E3.)8.75.e8.<7.<7.{8.|7.#6.{8.{8.)8.|7.<[.|7.|7.<[.*4.u7.85.|7.|7.&3.{).r1.L- A4.L- r1.y6.2@ p[.9@ x= C2.<: L- g$ T* x= 9@ U~ X% X, 03.3@ X% %* 8@ 5@ a@ 6@ 8@ $5.3@ 7@ a@ ** g$ f8.g8.h8.6| D6.G* I* qJ [$.~Z lS xT lS q+ h+ &$ h+ l+ |' l+ /) |^ l+ @) l+ I}.l; =, l; ;$ @) `/ (.u<.o].+[.y{.P'.L'.i8..4.h3.~4.~4.i4.~4.~4.h3.h3.O2.)3.O2.O2.k2.=2.=2.K1.F1.b1.]3.+I Rh (|.N}.RX ^+.dP R..Q .=f _ .]#.2x Cj j8.k8.l8.m8.h6.n8.o8.B7./6.B7.:3.p8.q8.7<.B[.u2.B[.n}.A:.m0 ^2.r8.^l n}.pM !}.{}.Y3.!}.H<.s8.8<.!}.m8.t8.#<.W}.;1.V}.u8.J<.+O v8.` @% x D t m w 4* ,! m t' ~# n r c ", +"R@ J$ J$ <{ ^, <{ 8S <{ <{ ]^ BN 9| 9| J$ jP V! <{ 0' G= V! <{ #S #S R@ J$ L$ <{ ]& J$ L$ # # ]& 0' X! # ]& L$ # # ]& J$ # . # + # o! > k) . > ]& & > (& $ . [* ; S$ > > $= & ' $ =' . | [* ' Q$ - ; . ; U) Q$ & | R$ ; R$ | .# | `@ - . ^ $ Q$ N$ | & & > ^& | Z! 2 | ~ ) - Z! ( | 8- 2 U$ 2 Z! ) *# < O$ { $# 2 , < x0 J= / 2 / / 6 6 *# 5 6 q> ,# / } 2 5 ,# e 0 6 6 7 ~# a a ,# e !# 0 8 6! K] ~# L= 0 K= K/ n p! ]# 2, h c % L= r E, 2, 1; 2, Y$ D % s> b' m b' t {& w8.G {& F= #] 2; z a7 /# C` A$.A$.z K z a7 a7 z z 1& a7 $T E AR AR a7 1& T^ .@.KW c- 4>.4>.4>. V =X 5 .5 ..@..@.x8.oY iU aV iU -*.-*.aV <_.*I *I qF c~._#.J~.^P ^P RT ^P Z .)Q )Q +Z +Z +Z bV -X {&.R%.+@.H&.+@.CX 0&.$).E` hT .` 9&.E` E` y@.4..G>.+` 4..:=.pY tM EX !*.B .7 ....z@.jT aX z@.%` L#.DR DR lU DR DR nW +..nW oW DR ^W oW %` sO KQ fV UT ,X PW &Z _P xY qP qP qP _P qP yM zM XL tP zM )K zM XL jK {L XL zM aN kK OA DH OA OA /I OA =u Wv ^L Pw ]E ]L rB Kk !v Kk CG if dt )v jf Ow *0 *0 Ri a9 Pd >k a9 a9 A9 Qd Qd -8 -8 }5 ad z7 V: P5 C1 w/ O3 O3 V{ d/ F~ F~ C1 V{ W' F~ F~ d/ 8) W= I~ G~ G~ I~ h' W= '{ l- H~ [= `- H~ N) z. z. N) z. [= m- z. _> m- [= y8.O) z8.F. F. A8.O) C. C. C. C. F. =8.w4.w4.U6.m& m& w4.w4.C5.r6.B8._7.P7.C5._7.C8.V6.$4.D8.;8.P7.34.s6.s6.,8.34.a8.56.$3.t1.T7.E8.p7.C3.G5.75.T7.'8.T7.'8.75.~8.75.75.{8.~8.64.|7.85.|7.|7.|7.85.|7.|7.|7.|7.|7.#5.#5.r1.v; A4.8@ C2.p[.j$ ,~.l$ l$ |@ 1@ C2.}Z f$ 2@ :1.9@ *3.7@ `% F8.3@ 04 ** 0q a@ Y% h$ ** h$ a@ b@ G8.H8.I8.J8.K8.b6.L8.)` VV }K lS /) 6> g+ k; >~ l+ l+ *, f= ;$ l; ;$ @) @) j_.;$ =, `/ @) 3(.i_.`/ t/.4^.V].z{.P'.W|.M8.Q3.TY ^q ~4.~4.~4.~4.h3.)3.)3.)3.O2.k2.=2.=2.=2.G1.01.N8.Yd (|.(|.N}.vX Wk -}.-}.e}.Vk tf y<.l+.< .O8.P8.Q8.R8.S8.^6.G|.|8.B7./6.-7./6.T8./6.s8.7<.B[.u2.n}.u2.pM n}.o}.n}.n}.H<.8<.H<.h1.o}.;[.H<.iP h1.;[.X3.Y3.%<.U8.V8.-1.v2.A[.W8.4# S z u :# w ]# p % C; h r o c *= ", +"<{ 2^ J$ <{ 9| J$ <{ 9| J$ R@ R@ L$ <{ J$ ]^ ]^ 9| #S R@ J$ BN I/ I/ I/ L$ 0' I/ 0' ]& 0' 0' # 0' + # + J$ # + = * # # [* # $ # ' $ + - $ . $ =' . # V@ & > . . V@ . H= > ; ' > > . o! U@ & . %= Q$ S$ %= - > S$ | 8- %= . . . P$ ~ - ; O$ ; ] %= & - & H= ] | X@ { { ; ] | | | U$ X@ ( < 2 | /& X@ 2 2 J= } } 6 : d 6 < 6- 3* d -# /& ( 6 5 /& ## 6 a 3] ,# 7 q> Y> 0 0 7 i 6! a L= 8 ,# z: a n n Y$ h c s> h ;= 2, h ,> Y$ ,> m ,> 4* p |& q p q /# b' 2; $S #] #] {& w {& w t z a7 E b' F= a7 W) t F= '&.z w .x .AX oY I#.5 .B$.B$.oY iU oY (U (U )Q yS qF ^P )Q )Q ^P Z .+Z +Z +Z Z .+Z Z .-X +Z |@.G&.|@.{&.d~.'*.$)..` .` E` E` .` .` +` ]&.4..E` pY y@.|Y a&.2Y 4Z z@.9 .2Y z@. +.TT 9 .jT jT vZ DR $ .jT pO nW DR ^W nW ^W nW oW ^W DR nW gQ UT H4 Z8.UT >R /P qP _P hQ _P pP _P [T {L {L )K )K )K zM {L HJ lK )K 'R Ik OA MQ OA sL NA wG =i OA OA UF Jk ]L 08.Jk ol CG Dm rs Kk `8.!v ml !i *0 Qd a9 9.A9 9h A9 b/ A9 Qd a9 Qd Qd nj }5 !1 F~ M4 O3 C{ C{ w/ O3 r) 0^ w/ V{ C{ C{ F~ V{ W{ W{ W{ V{ h' W' h' l- *^ l- m] j& z. l- l- s. s. s. z. z. [= z. s. y. ~~ [= X= F. C. C. }= O) F. F. }= D. m& .9.F. +9.r6.o- m& w4.w4.r6.o7.r6.w4.;8._7._7.P7.;8.s6.a8.34.s6.s6.s6.a8.s6.s6.s6.s6.34.@9.t7.#9.s6.S7.'8.X6.S7.'8.{8.E3.)8.75.)8.{8.75.)8.)8.$9.85.u7.&3.|7.|7.64.|7.85.85.$6.u7.#5.^; X% X% 9@ 8@ 2@ 8@ X% 8@ %9.|@ 3@ 62.8@ i$ h> X% l$ 3@ c$ 6@ GV GV l$ &9.r' f$ 6@ U* 94.8@ .& *9.21.=9.-9.;9.>9.b6.&$ *$ ,- ^) k; 6> s{ ,9.|^ 6| j_. (.n+ j+ ({ f= #F ;$ /) n+ j+ k! @) }} '9.)9.3(.l_.!9.~9.z!.l).x{. !.{9.:8.~4.~4.~4.~4.h3.h3.)3.O2.O2.]9.j2.F1.F1.G1.]3.n2.+I (|.(|.vX RX +z dP d /@._ .aK ]#.S+.hz ~%.^9./9.Q8.&;.(9.4N ^6.G|.B7.B7.j6.c7.c7.B7.:3.^2.B[.g1.g1.pM -7.:4.b[.b[.n}.a> ;[.U}.<|.h1._9.:9.g1.D[.<9.8<.z:.w_.So =1.o4.-1.d[.Z2.1( H A D z D Y$ p t n m (# ~# Z$ n ", +"98.9| J$ <{ 9| J$ <{ <{ *) R@ R@ jP #S J$ R@ R@ BN L$ I/ I/ L$ I/ 0' R@ R@ 5_ #S + + I/ 0' # % 0' p9 5_ K$ # + + # X! $ # * + $ . . # 1* L$ = = . > L$ > V@ =' & . . $ . # & S$ & ; ' Q$ ; > S$ H= ; . > > T@ R$ P$ U$ }* . > & ] & ] N$ | %= N$ W@ U@ ] A; 5- - ; ~ X@ N$ N$ X@ U$ ~ 2] T- W@ 4 *# { | => 2 2 ( => $# 5 `@.[ i 3* $# 7 ,# 6 -# $# ( a 6 J] 6 7 3] 6 $# 2* 6! ~# ,# tA 3* 0 0- B; ]c 0 0 0 0 h h s> K= h |& ,> h ]# ~# 0 L= t' 1; % h 0- 2, 4* q p 4* /# b' % w 1Z b' t t {& G G G C F= /U b' /# K . V .@. V 4>..).(#..@.v@.*I iU >*.(#.;*.*I (U I#.iU iU J[.[%.(U +-.RT RT +Z )Q RT )Q RT +Z +Z +Z 9X -X 9$.e-.H&.n;.0&.~&.0&.3@.AS hT CX E` .` .` aS 9&.hT 3Z y@.4Z ST tM #Z EX B .......z@.uZ pO z@.nP 0R DR aX pO 0R 5@.nW DR DR ^W oW ^W nW [9.FX >R 2M {O /W UT {O qP WO WO _P hQ iQ }9.hQ ^O HJ zM zM {L zM )K XL ER {L tL BH aN DH Wv NA =u Wv OA Wv Wv OA 'A Kk OA )H Kk eJ eJ rB 'A rs rs :I >k qs Ow Ri >k *0 }5 A9 A9 A9 a9 A9 Qd Qd B1 Qd ~1 |5 -8 C1 b9 r) w/ C{ C{ F~ r) V{ F~ F~ K! V{ F~ F~ W' 8) W{ X: G~ D{ L! s) p* W= s. j& H~ z> v. [= z. [= s. z. z. s. |9.s. B# A. }= J~ N7.m& }= C. }= F. 19.C. B8.=8..9..9.C. -8.8% 29.39.29.39.C5._7.s6.C5.;8.a8.s6.s6.34.s6.34.34.34.56.56.34.;8.P7.A3.t1.49.59.'8.59.R7.@5.R7.)8.75.~8.~8.69.79.{8.89.]8.|7.85.85.54.|7.&3.|7.85.%9.99.,~.i$ X% `% `% ,~.09.%9.9@ y= 2@ a9.2@ C2.z6.&3.j$ 3@ 3@ 2@ X, f$ 6@ 7@ l$ H3.Y% 8@ 1@ n$ h$ j$ y= a@ b9.c9.31.d9.e9. }.;6.e= >3. 7.l^ ;6.f9.g9.Q5.3(.k; 6> k! n+ HB HB HB HB h+ f= ;$ 3(. (.|^ l; /) Y{.3(.t/.0!.+[.z!.x{.x{.h9.m=.m=.~4.h3.h3.h3.h3.h3.O2.k2.F1.i9.=2.s$.B1.A1.j9.j%.(|.(|.XW ^+..S ~P q../@.&[.&[.m@.l+.S+.8*.:b k9.lh l9.m9.n9.i6.^6.n8.n8.B7./6.-7./6.18.Q4.t2.^2.^2.7<.s8.j6.o9..N ~}.p9.iP o}.s8.H<.0:.q9.r9.s9.k6.t9.8<.0:.u9.58.G<.C[.X3.v9.VY B1 S z I C {& D `$ 4* % r r ]# o r ", +"9| w9.], 9| <{ <{ <{ <{ I/.<{ ], 9| <{ L$ J$ 2^ 9| jP I/ G= 2^ I/ 0' ]& I/ I/ L$ L$ 0' 0' 0' # # ]& I/ 1) + 1) # # # = # # $ . $ * & Q$ + V@ # + 0' V@ > ]& > # . + # [* > V@ . ] S$ ; $= - o! > & > & > . > U$ ; S$ R$ U$ X@ 9S p9 ! > Q$ X@ ) S$ | R$ ^ Q$ ; ] *X Q$ W@ | 7- Q$ | [ X@ *# { 2 : [ ~ 2 N$ Z! N$ /& ~ 4 ( D, Z! 4 ,# Y> 6 [{ a ( *# } ( } } a a N' V) 7 a [{ 6! q> 6! 0 d 7 {# } tA 0 6! 0 ~# c s> 0- x9.c c{ n r p c Y$ ;= p 4* 4* h ~# q ,> _# Y$ b' Z$ 1Z % m ^# /# {& :# #] G w F= z F= /U F= G I a7 '&./U C a7 z '&.~& a7 H$ Q@ $T M G JW V Z 1& k1.U!.c- .@..@..@.z .4>. V .@. ` A: iU .).B..L oY B$.:#.p*..Z #N oY (U ^P _M +Z RT ^P `I +Z )Q +Z RT +Z sZ H&.'*.-X '*.0&.CX $).0&..` CX CX CX E` .` cQ 9&.4..a&.9&.pY 4Z !*.5Z l#.=S ...Y$.qY B .pO G` jT pO L#.DR ^W DR #V DR nW nW DR nW DR ]W $` ^W $` KQ !L IQ fV rO _P _P [T _P 2+.qP >N hQ hQ 'K {L y9.{L )K )K zM )K )K )K ;v KJ =u HJ >H NA Wv OA Wv Wv Wv z9.Kk UF Wv sy !v rB Jk ma Kk nl {H %0 if if 9h a9 a9 a9 a9 a9 }5 A9 Qd }5 A9 B7 l8 B7 V: V{ r) F~ w/ V{ w/ V{ O3 V{ V{ V{ W' l* F~ H, F~ h' b; H, W' A9.W' p* `~ l] (% B9.s. $~ (% [= s. z. z# <% s. z. s. |9.z. s. k& C9.D9.C9.C. A8.C. F. C. m& m& w4.r6.C. r6.m& o7.y4.w4.r6.E9.r6.C5._7.V6.D8.P7.;8.P7.C5.s6.Q1.s6.34.a8.Q7.Q7.F9.F9.c8.t1.S7.a8.W[.S7.S7.75.75.r7.75.75.G9.~8.~8.75.{8.)8.89.85.|7.H9.99.&3.|7.|7.&3.|7.I9.H3.&3.^; p[.^; x= 9@ 6@ H3.l$ X% 5@ a@ &* 04 8@ Y, (; l$ y] X% 8@ 2- 5@ `% h$ a@ .& GV #* e@ o$ w; 0@ J9.K9.L9.M9.N9.C6.O9.C6.P9.>6.Q9.D6.y7.R9.S9.T9.6| >~ I* g+ i_.l; l+ @) n+ g+ l+ |' 3(.3(.`/ a!.U9.$_.G,.$_. {.P'.V9.#'.W9.X9.F6.~4.~4.~4.)3.)3.h3.O2.k2.=2.Y9.F1.R$.TB #1.Z9.K=.{..N}.RX `9.kA e}./@.r$.]#.m@.l+.S+.^@. 0.fw lh Q8.l9.NY .0.+0.4N n8.|8.G|.-7.j6.-7.@0.Q4.^2.B[.B[.$:.#0.-7.$0.B[.n}.B[.u2.o9.iP !}.vS %0.:w &0.*0.=0.t8.-0.;0.:4.U}.<|.#<.a[.jA M4 K@ D G Z$ Y$ r }& t % r Z$ h o h ", +"<{ 9| 2^ 9| <{ I/.<{ l) .( J$ L$ *) 2^ ;b L$ 2^ jP R@ BN I/ J$ jP p9 I/ I/ I/ #S J$ R@ = I/ 0' 1) #S L$ ]& # + * + + + ]& $ # = . = # S$ [* Q$ > $= ]& # ^& $ ' V@ $ $ Q$ + ; P$ + > . Z, # . ; Q$ ; |* + > ; > *' > ] %= P$ R$ - . %= ] $= & ] ~ | 2 { N$ H= | W@ N$ 2 N$ | | | 2 N$ ) 2 xS | & Z! | 1 ## X@ { ( } 6- } 4 [ < ,# d } 7 ># 9 7 V~ *# d /& ## $# b ># 7 Y@ J] } a 3* ~# c ~# 6 ~# ~# L= n n 5` i s> r n n L= p n -) `$ n Y$ % 4* 2, n^ % % /# ,! `$ q t 4* 4* #] /# C )> w w F= 1Z F /U {& )> G F= C` F= F= 0.(=.'Q (U (U [_.[%.)Q {,.+Z RT +Z RT +Z +Z Z .bV 9X {&.|@._=.~&.'*.+@.w@.#)..` CX CX E` E` hT aS CX +` a&.|Y pY ` .CR a$.l#.5Z is 5Z CR DR +.{Q nP uZ DR nW ;X 0R pO DR DR >X oW nW /W ^W ^W cX vY &Z !L ~O qP ,0.pP &Z ES WO bR kV _P hQ qP 0N &J {L ^O yH HJ {L tP HJ uI tP lK AH tP OA NA 3M NA OA Wv =u /I sy sy Jk Kk '0.Jk Jk Jk dt jf jf %0 *0 *0 Qd }5 a9 }5 tl }5 a9 }5 A9 B7 }5 }5 14 A9 14 P5 F~ -0 B] F~ w/ F~ K! V{ r) F~ F~ C{ F~ V{ d/ W{ W' p* )' W' l- l* I~ ,) l- `- k& p* v. v. t. z. s. w. v. v. J~ m- X= v. O) z8.)0.19.C9.C. C. N7.m& C. !0.w4.O7.29.=8.C. O7.C8.r6.r6.29.29.r6..9.;8.P7.P7.s6.@9.34.a8.a8.s6.;8.s6.a8.a8.a8.a8.P7.c8.q7.b8.}7.}7.R7.)8.S7.S7.75.{8.75.~0.{8.)8.{8.{8.]8.&3.99.`% |7.99.$6.99.`% y6.C2.{0.,~.T1.X7.9@ L- ,~.9@ x= 9@ X% $5.7@ 6@ Y, 2@ X% 6@ ]0.`% a@ 04 `% h$ j$ 79.^0.6@ 0@ .& 5@ -* a@ /0.(0._0.:0.<0.[0.L3.}0.c6.{2 u] >~ G* >~ >~ c6.|0.10.k; |L t/.j( /) ;$ '] .] |' |^ t/.$_.3(.M3.20.(8.G,.+[.&_.|{.81._).30.x[.:8.~4.40.50.)3.O2.O2.k2.k2.=2.=2.s$.TB TB Rh (|.j%.V&.V&.RX f}.*}.=f o@.G%.]#.S+.l@.~#.!%.x&.60.70.80.90.zv 00.a0.K6.n8.G|.o8.^6.j6..N /6.Q4.Q4.Q4.v9.7<.b[.b[.b0.B[.B[.H<.s5.c0.g1.U}.]w d0.e0.f0.u2.a> g0.B[.g1.h0.Kb Oe 8<.i0.7Q j0.P@ D G m m ^# _# `$ (# _# h ,> n n ", +"9| *) 2^ <{ <{ <{ <{ <{ L$ <{ <{ 2^ G= ;b <{ J$ jP BN 9| #S R@ I/ 0' I/ ]^ ]^ L$ 0' I/ 0' I/ 0' # ]& I/ 0' + X! * # ]& + . = ]& + + [* [* . . . V@ . $ L$ # $ = # . & o! [* ; S$ > $ Q$ + 0' . ; $ S$ U$ | . S$ %= ; =' | ] H= | Q$ H= & W@ ] - Q$ ; ] N$ ] N$ N$ ] R$ %= N$ ! | N$ { { Z@ | N$ 4 N$ T- { X@ } { { ~ X@ 2 I= X@ Y@ { d 6 9 } 6 Y> m*.( X@ 1 d ,# k ( e $# 6 6! 3] ,# a 5 ,# 3] 3* a 0 a' |& a ;= L= 9- h h k0.x9.]# r -) p h r Y$ n^ p Y$ L= n^ 1; m t m t q ^# t w F= {& F )> 1; /# m b' D $S 1; z ^# F= z '&.#] A$.a7 z '&.n! T^ Z '&.a7 H$ c- M V Z 2Z )^. V T^ I[.c- JW Z..4>.P,..@.B..oY B$.Z..-*.B$.-*.B$.-*.iU oY +-.(U zS M7.)Q K-.+Z RT ^P 9$.)Q +Z RT bV lP H&.<#.G&.hT ~&.D` +@.2@.CX E` E` 4...` E` E` aS x@.E` 4Z |Y ` .4Z tM pY EX ^&.qY 5Z +.DR B .;X 0R pO DR 0R 0R DR ^W pO 0R 0R cX nW nW DR oW fV VT VT ~O eS /P {O {O hQ uM qP qP hQ qP WO HJ {L l0.xM tP {L kK kK HJ OK lK kK wG HJ wG NA =u OA NA BH Wv NA Jk m0.Kk sy Jk ,A rB ma jf qs qg %0 %0 a9 oa }5 a9 *0 A9 }5 A9 }5 Qd A9 }5 b/ 14 z7 |5 l8 V{ F~ F~ V{ F~ V{ r) r) r) F~ W' F~ l* W' H, ,) W' W{ D{ W' (% W= '{ )' p* `- `- W= `- z. z. s. s. B# s. s. |9.s. z. k& }= n0.o0.19.p0.C. F. m& C. C. C# o7.r6.29.r6.-8.+9.8% r6.8% V~.29.29.q0.-8.P7.P7.D8.@9.s6.@9.P7.;8.34.a8.a8.s6.@9.@9.r0.s0.75.56.X6.t0.'8.75.75.'8.u0.)8.u0.v0.)8.89.{8.$5.$5.8@ &3.&3.|7.85.&3.y6.,~.9@ H3.]8.8@ x= ^; 8@ ^; x= 3@ 1@ T* 2@ 6@ 8@ #* ** 7@ o, a@ 1@ H3.6@ h$ ** ** ,~.#* 5@ 2- w0.$* ,* m$ =* x0.y0.z0.g8.A0.B0.C0.c6.C6.{2 c6.S9.D0.E0.G* @! F0.F0.G0.|^ {2 H0.(8.|^ Y{.H0.s{ 3(.3(.10.t/.+[.M3.I0.J0.z{.o~._).#'._).K0.L0.6~.~4.h3.TY M0.)3.O2.O2.j2.=2.F1.TB 2S H%.(|.N}.j..c zc Y_.N0.O0.P0.Q0.1N 6!.R0.h6.i6.4N K6.^6./6.m4.-7.S0.T0.-7.$:.t2.H<.#<.p9.B[.B[.;[.'7.U0.vC n}.!}.:e u2.g1.u2.Q& iP .N V0.k7.#f k7.$<.W0.Ro .}.O x |{ Z$ G ^# `$ Z$ r C; 9- D n g ", +"<{ <{ <{ ]^ J$ <{ <{ <{ J$ <{ 8S <{ BN <{ R@ <{ jP L$ <{ jP G= I/ 0' 0' I/ R@ =[ 5_ 0' 0' I/ [n # K$ $ X! = # # 0' 5_ + V@ 0' $ }, + $= 1) ]& # * . $= `Y $ = & 0' . # U@ *' P$ & & ] . P$ S$ $ > U@ $ = . P$ > $ ; Z, . S$ R$ U@ N$ ^ Q$ & ] ~ | ~ T- X@ R$ U$ | Z! | $= ; 2 ] U@ ; N$ H= 2] X@ X@ X@ 8- ~ 1 H= 5 $# *# { { ~ } [ | == Y@ V~ ( } e q> 1 ## } 5 d d X0.a a Y> 5 q> e ~# } 3* 6! a d 0 W$ {# L= L= n n Y0.0- e r }& A~ L= c n^ L= Y$ s> 1; q q n^ L= p `$ ,> t /# p p m C D /# w :# )> 2; {& F= D F F= /U 2; B a7 P<./U a7 a7 z '&.T^ @= A$.8* AR JW c- M c- 1& ;O P%.5 .z :}.3# c- 3# V (#.t%.4>.*I B$.AX E].:#.;*.-*.U;.;*.iU yS (U k#.M7.)Q )Q RT +Z G&.+Z lP +@.RT +Z H&.sZ {&.sZ sZ hT AS $N {&./!.9X hT E` E` E` 4..+` 4..3Z 9&..` pY <=.qY ` .Y$.5Z 4Z N/.$ .IQ ;X jT pO pO jT 0R 0R pO fV pO pO >X pO nW vZ /W nW gK sO >R aR oW fV ES hQ uM /P !L hQ ]I qP hQ ER 'K &J kK jK yH &J {L &J yH NK )K Wv HJ =u =u =u BH NA NA Wv =u rB Dm Kk rB Kk sy CG Jk jf jf dt mj jf b/ o[ a9 a9 jf *0 tl a9 A9 a9 a9 b/ b/ O5 I0 !1 }| r) C{ ;/ r) F~ C{ C{ F~ F~ F~ H, W{ r) r) l* b; H, H, ,) h' W= n* D{ D{ K; Z0.v. (% (% X= v. s. z. X= X= z. y8.z. z. w. E. C# m& C. C# m& 19.19.F. C. 19.19.O7.r6.29.r6.!0.C8.29.r6.-8.C8.29.;8.w4.;8.;8.;8.@9.a8.34.`0.P7.34.s6.s6.a8.s6.56. a..a.'8.75. a.q7.59.'8.)8.e8.r7.69.R7.+a.&3.75.)8.~8.89.]8.|7.&3.|7.&3.04 I9.]8.7@ 79.`% #* ** 8@ Y, 6@ f$ X% 9@ 7@ ]0.Y% `% 5@ w; 6@ 3@ 8@ `<.l$ 2- }Z a@ @a.a@ .& =* o$ $* 7@ ** o$ 0@ #a.$a.%a.g8.&a.A0.*a.{2 C6.6| 6| b6.S9.c6.c6.^) ]/ =a.}0.u] -a.;a.s{ `/ >a.,a.I}.l; 3(.'a.=a.V].z{.)a.l_.o~.o~.#'.#'.k].!a.~a.6~.~4.h3.^q {a.O2.j2.k2.=2.R$.A1.TB K=.j9.(|.vX RX Bd W` R../@.4G m@.]a.U@.0k ~#.>c !%.~%.3$.^a./a.(a._a.:a. n}.]7.{}.h1.<|.U}.3a.O(.x:.4a.` I w I 2; ,> W$ `$ h m 0 h c c ", +"w9.<{ <{ 9| 2^ 9| jP <{ <{ <{ ;b <{ jP L$ <{ <{ ;b L$ R@ BN G= G= L$ 0' 0' G= 5_ 0' L$ R@ jP I/ ]& V@ K$ X! p9 I/ # # 0' + $ pH 5a.# > . V@ # > . # > [* + $ S$ > $ $ > X! ' ; > . $ ' Z, & ; - ; . Q$ |* - > - - > N$ - ; . > ; ' . ; (& ; H= S$ 7- Z! Q$ ] N$ ; | 2 ; ; N$ P$ { ^ I= { N$ 2 4 { > => { X@ ( ~ | 7- X@ X@ } N$ : ( /& Y@ 7 d ,# } 7 V~ 9 k k a' a 6 6 5 v5.3* 7 3] a e D, 0 a k k e a [& n a' Y$ c -) n p }& 0- h r h e 1; b' 1; 1; 1; 1; 4* 1; t p 4* D /# @= /# $S $S |Z 2; F= w z /U F= 2, 1Z /U '&./U a7 a7 z z $T 1& P%.1& O@ Z M c- V Z T^ T^ c- c- V z . V .@.5 .4>.I~.)^.iU YX B..`5.B$.-*.B$.iU W!.;*.k#.#N BX +).+-.^P )Q +Z a/.+Z RT H&.+Z RT Z .sZ 0$.sZ Z .{&.+@.0$.jU $).D` 9&.CX 3@.hT hT +` y@.E` .` ]&.ST 4Z 6a.2Y [#.A+.l#.B .qY kT 6N 9 .L#.L#.0R 0R DR DR LV pO nW $Z OW mU eS KQ ~O 7a.IQ >R {O IQ FX uM qP uM qP qP /P HJ /P hQ ^O )K &J yH 9C ^I xM HJ yH {L HJ kK 8a.Wv Cx Wv Wv OA Qq NA OA Wv Kw Wv Jk ty )i ol ,A Jk ma ma `8.Od !i ,2 K9 a9 b/ a9 }5 A9 A9 }5 }5 a9 a9 Qd z7 !1 !1 P5 ,k 0^ h. B] C1 r) r) r) F~ 0^ H, W' r) F~ W' V{ b; W' ,{ p* K; )' (% W' (> (% t. z> 5~ w. [= s. t. v. _> s. |9.s. s. _> y. }% 19.C. 9a.o0.z8.m& C. m& 9a.m& !0.w4.29.29.)0.!0.0a.29.;8.29.29.29.29.V6.;8.D8.a8.a8.C5.aa._7.C5.a8.s6.Q7.ba.b8.ca.d8.d8.75.da..a.59.59.@5.)8.{8.)8.R7.K5.|7.{8.69.l~.89.{8.&3.99.&3.]8.99.u0.`% ** `% X% ** 8@ 1@ i$ h$ v; *3.`% 5@ (; 5@ 5@ X% `% 6@ 3@ $* w; 6@ o$ Z% r' %* a@ a@ 9@ >* 0@ 6@ .& =* ea.fa.ga.ha.ia.37.ja.ka.la.D0. }.;6.;6.;6.C6.R9.ma.}0.na.10.>4.oa.f= k+ @! H}.Q5.j( I}. (.I}.pa.G,.y{.I0.qa.EK W:.G}.#'.q/.ra.6~.X9.:8.~4.sa.e{.h'.j2.j2.ta.ua.va.:` [i : .: .dr Wk -U R..=f Vk tf y<.^@.l@.~#.o%.!%.tb Y_.+l 3|.wa.xa._a.:a.ya.+0.[a.K6.G|.B7.18./6.q8.G|.S0.za./2.Aa.ou tv ^y Y'.,}.Ba.s8..N iP vC vC ;[.;[.k7.LP Ca.+8.7<.-1.Y3.V0.U}.U}.Da.=1.l}.Ea.LW P@ N :# 4* p f f h r Z$ n e r ", +"*) 9| ;b <{ J$ 9| 9| <{ ], 2^ 9| <{ 9| ]^ ]^ <{ L$ BN R@ jP J$ I/ ]& I/ L$ 9| I/ I/ I/ BN L$ 0' 0' Z, # $ 0' I/ # # # # + # $ + + = + = . > * > > # 0' . + . $ V@ > [* S$ S$ T@ + S$ U@ > $ # ^& > N$ & Q$ * > ; * Q$ . U@ ; & ; [* N$ ; > ; ; T- R$ ~ N$ ) | 8- ~ ) | U$ N$ ~ 2 N$ ) J) R$ 2 ~ ## 2 | 5 : } 2 [ 7- 4 { 5 } 7- 7 Y> M' i ># 7 } < [ Y> ,# k 0 V$ k ,# a 8x z: ,# 6! k ,# ( 0 j A~ 0 n !# |& e 6! ;= ~# }& ~# L= p p ;= -) Y$ L= ,> ,> n h G#.4* t m @= D 4* 1; C /# b' *].y b' m u 4* w $S F= m /# /U #.'&.F= a7 z .4>.{[.(#..@.o*.;*.-*.I-.;*.B$.>*.-*.-*.-*.(=.#N #N (=.)Q RT )Q )Q RT )Q )Q +Z +Z )Q +Z G&.G&.1@.RT e-.+@.q*.AS hT CX J#..` .` CX .` .` y@.E` /!.+` ST pY 2Y tM %@.CR qY l#.Y$.&@.nP G` z@.jT 0R 0R 0R pO pO nW nW nW nP DR DR FX nW fV UT rO UT >R /W /P WO mT qP WO WO rI !L }9.}9.iQ )K kK &J {L {L )K )K yH HJ HJ kK Wv Cx Wv NA Wv Wv NA OA =u NA NA (I 'A ma lj ll rB Jk ma ma qs if nl Kk oa }5 A9 }5 }5 }5 a9 A9 a9 }5 a9 B1 O5 O5 r) r) V{ ^> O3 F~ r) r) r) F~ r) r) r) r) V{ B] F~ U= W' W' h' K; ,{ (% H, ,) W= [% z. (% (% s. s. v. v. v. s. v. v. y8.y8.v. B# p0.m& N7.C. 19.19.}= m& C. C. C. +9.29.C8.m& q0.q0.w4.V~.P7.29.V~.C8.29.V~.V~.P7.@9.D8.@9.@9.P7.s6.b8. a.Fa.b8.b8.a8.Fa.89.G9.@9.59.'8.{8.)8.89.89.)8.Ga.89.89.{8.#6.I9.H9.~8.|7.85.Ha.`% `% |7.&3.8@ 9@ 04 6@ T* y6.C2.8@ 9@ 8@ T* 8@ y] l$ 7@ a@ 94.a9.-* a@ a@ Ia.$* y= 0@ h$ .& ** ** l~.o$ ;* .& Ja.Ka.La.Ma.*a.Na.e9.P5.;4.}0. }.L3.R9.37.Oa.,5.Pa.Qa.Ra.Ra.6| M{ @) @) Sa./) Q5.Ta.U; 3(.Y{.20.e4.z!.z!.2(.b'.s/.Ua.#'.Va.Wa.X9.5[.Xa.~4.^q O2.O2.j2.=2.ta.va.E*.Zg [i {..j..(d dP R..=f _ ..s ]a.l@.~#.@$.>c !%.Ke :b $(.=d Ya.(a.Za.Za.:a.`a. b.a0.[a.i6.^6.G|./6./2.-7.j6..N :3.Y'.ou ^y ]n .<.C<..<..b.^2.b[.b[.!}.!}.H<.H<.+b.@b.7<.$<.^_.0:.,[.Da.8<.0:.^_.n6.w` #b.z N ^# /# Z$ vA ^# `$ ,> e $b.,# n ", +"9| ^, |1 jP <{ 2^ <{ <{ J$ J$ l) J$ <{ ], J$ 2^ L$ 2^ <{ J$ L$ I/ ]& L$ I/ ;b I/ I/ 0' 0' I/ 0' 0' Dv # # I/ #S + # # # % # p9 = K$ # & $ + * . $ $= # p9 0' & $= ' > - # # > $ # P$ P$ ; |* T@ O$ ; S$ H= %= U$ & > ; > $ ^& - H= U@ |* & ' ^ ~ N$ ~ ; * %= & & 7- { 2 N$ ) ^ N$ Q$ | [ J) X@ 2 X@ X@ W@ *# => 2 2 { +# 7- 5 2 $# / <& ,# 6 M' 6 9 Y> 3* [ 6 ,# $# d d k } ,# 3* 6 ,# d Y> d [{ ~# e 6 ~# ~# L= a c i d L= 0 ~# n h h Y$ -) ]# Y$ Y$ r n^ % % m ,> #| `$ p /# D t t )> t 2; {& t b' E z F= C /U F= ^# /# *].P<.F= /U z a7 A$.1& $T 1& M 1& '&.AR V T^ 2Z V M c- V 4>..@. V c- QT HV >z x .B$.aV (#.:#.B$.B$.-*.B$.-*.k#.yS G$ k#.BX ^P )Q )Q RT ,*.+Z +Z RT )Q Z .RT G&.+@.H&.sZ e-.7` ~&.CX E` AS CX CX hT .` J#.|Y y@.E` +` y@.4Z |Y D..EX D..5Z ` .#Z CR &@.6N B .$Z nP DR 0R 0R pO 0R >X FX pO ^W nW nW nW nW FX /W 2M UT /W WO 2M /P uM /P /P !L WO rL uM qP jK VL &J >N yH ]I HJ yH yH NK yH =u =i OA Qq NA /I Qq uI Qq Wv OA (I Wv (I Jk rB Kk Kk ll J9 &0 nl ;k rs %0 }5 }5 }5 A9 o[ a9 A9 a9 a9 a9 B1 !1 O5 V: B] K! B] F~ 0^ r) r) h. K! V{ F~ H, F~ V{ H, F~ s) W' W{ `~ b; H, (> p* b; (% (% l& <% (% [% v. t. z. s. v. v. v. y. v. x# s. |9.%b.%b.9a.C. )0.19.m& m& 19.m& m& q0.r6.m& 39.29.29.C8.-8.39.V~.&b.39.C8.*b.39.D8.b8.a8.b8.D8.34.a8.=b.a8.b8.@9.b8.-b.;b.v0.@9.s0.{8.u0.89.)8.79.75.89.{8.]8.{8.89.$5.89.75.&3.{8.8@ I9.&3.H9.&3.04 9@ 7@ a@ H3.v; ,~.04 9@ 2@ 8@ 6@ 04 &* a@ o$ l$ m$ w; y= 7@ o$ '* ;* 0@ >b.#* -* a@ n$ h$ X% h$ ,b.'b.)b.d9.e9.!b.x7.~b.{b.b6.b6.c6.;6.{b.]b.O9.^b.L3./b.|0.6| 7.m+ l+ /b.>4.R9.(b.U; l+ j_.'9.>a.y{.X)._b.:b.81.:b.)4.+.p@.@$.4$.7f !%.Ac :b !=.1b._g 2b.Za.3b.4b.5b.X>.6b.7b.[a.i6.i6.n8.B7./2.8b.9b.:3.6b.y:.^y ^y ^y [x vj y:.`H `2.$:.]7.!}.G<.#<.G<.z:.|5.s8.$:.0:.D[.o4.D[.8<.^2.,[.0b.Q!.ab.S {& D m ,> r 1; :# h a a' ~# V$ ", +"z~ *) <{ $8.9| 2^ <{ J$ <{ 9| <{ J$ <{ J$ L$ R@ ;b 2^ 2^ 2^ BN L$ I/ I/ I/ 0' ]& I/ 0' L$ I/ 0' 0' 0' + # 5_ p9 L$ $ + ]& + # p9 0' L$ ]& $ $ + $ ' > # & > ]& ' & $= $= 1* $ [* %= - U@ P$ ; [* . $ N$ > S$ $ ^& $ %= O$ N$ ; o! Z3 & ; > | N$ N$ ~ U$ *' +|.] N$ | { ~ Z! ; 2 N$ N$ | /& N$ R$ U$ N$ *# / Y@ X@ ~ U@ 7- ~ { | 1 { ~ 5 a [ <& 6 < d d &# d 3* 2 D, ( [{ q> V~ $# 7 ,# 3] a k e W$ J] 3] !# K/ 0 2* 0 tA ~# ]# !# a L= L= -) p n {# h L= h p 2, ,> ,> b' `! Y$ m t t m '> bb.,! q D b' t {& {& m E G F= E /U $S w z z a7 '&.a7 '&./U 8$.cb.a7 A A n! ,/.AR c- Z M V .@.c- .@. V .@..@. V y .0S _+.x .B$.MW -*.aV *I iU iU -*.B$.(U BX zS l1.yS #N RT RT K-.a/.+Z RT +Z +Z +Z sZ H&.lP 1@.R%.|@.AS hT #).1@.CX hT .` .` hT 4..3Z 9&..` +` 3Z |Y ST ^&.@Z 2Y ~W ~W [#.CR @` pO L#.L#.0R eV pO DR DR pO LV DR DR DR 0R DR pO oP eS IQ rO db.LV >S sO 2M 2M /P /P uM rI yH WO WO yM HJ ^I >N 'K PK )K ~I ]I ]I -H ;v Cx NA wG NA =u NA NA NA uI ;v NA Wv =A ml Kk qs hf hf ma &0 qs ol jf mj *0 o[ }5 b/ b/ a9 }5 b/ b/ }5 B7 }| O5 z7 O3 0^ 0^ 0^ w/ r) h. K! F~ F~ K! F~ r) F~ g& F~ || W' H, H, V= V= V= o. H, p* (% eb.s. t. <% 35.z. s. s. t. 1% 1% y. w. s. w. _> fb.)0.o0.9a.C9.p0.9a.gb.19.m& 19.O7.0a.q0.29.O7.0a.0a.C8.39.29.V6.-8.V6.V6.hb.;8.@9.@9.a8.@9.P7._7.D8.@9.s6.b8.b8.b8.-b.59.ib.-b.jb.kb.v0.69.59.69.{8.da.lb.]8.79.89.89.{8.Ia.Ia.99.89.8@ `% `% Y, 9@ `% Ia.6@ 9@ ^; ,~.X% y= 04 5@ h$ o$ I9.H3.Ia.C2.a@ 1@ o$ ** `% Q9 8@ g@ =* 0@ w; m$ m$ Ia.h$ 34 mb.H8.nb.B0.Qa.;6.ob.~b.6| c6.pb.qb.l^ rb.na.b6.6| pb.b6.6| g+ ;$ `/ (8.Ra.}} f= ra sb.`/ M3.V_.I0.o~.u[.-4.Y:.V9.u/.tb.ub.K!.X9.5[.^q )3.vb.}b.|~.G1.wb.xb.U` t` YQ dr ZM -}.mk P}.,g >+.l+.0k o%.o%.,c Ac ~%.yb.!=.zb.ac Ab.xa.xW Bb.Cb.Db.Eb.*7.a0.4N h6.i6.m8.$m Fb.Gb.Hb.z[.x:.vj 2G vj wv wv vj vj S8.B[.;[..N o}.;[.;[.Ib.28.^2./2.A:.,[.=1.Jb.Kb.#<.Lb.Mb.Nl XP A G w :# p Z$ h p s> g c K= c ", +"*) z~ 9| 9| 9| 2^ <{ L$ <{ <{ <{ jP ;b R@ ]^ <{ (}.J$ R@ I/ I/ 0' 0' L$ I/ 0' L$ BN L$ R@ 0' ]& I/ I/ = # + 0' 0' * # + = # + = ]& # + [* * * $= # Q$ S$ S$ = =' > > . }* T@ . . $= 1* V@ + Q$ & $ - |* & Q$ |* > . U@ - P$ U@ & Q$ . N$ T- & = - %= H= Q$ X@ ~ %= | { 4 X@ ] N$ 2 | 2 { | 2 { *# d / 2 2 ~ %= X@ [ [ 2 | X@ *# Y@ d 6 <& ~ d i Y@ a Y> 9 d 9 } d a ># 7 a m*.8 0 k a 8x tA q> L= 2* ~# L= |& 6! K/ !# L= 0- h n ;= n {# }& Y$ 1; r 2, ),.`$ 1; h l _# b' G#.b' % ^# D w q Y$ % F= E )> w {& F= D /U t :# B F= z a7 F= z a7 '&.P<.8$.,/.JW O@ AR Z m;. V c- V V V .@.4>. Z .@.c- .@.5 ..@..).:#.A: -*.iU *I *I aV oY I#.oY (U yS XX F>.^P #N Z .RT RT RT RT ^P )Q ^P Z .G&.9X 1@.+@.H&.2@.2@.CX 0&.+@.CX hT hT CX hT 4..]&.E` +` ]&.|Y |Y ` .2Y [#.z+.CR [#.qY Nb.uZ jT `..0R DR 6N 0R pO pO nW DR pO %` LV pO DR DR ^W /W FX UT UT IQ fV /P /P WO uM >R /P 'K 'K WO }9.9C ^I ]I >N yH kK NK yH xM wG PK =u =u -u =u Qq =u NA =i wG OA =u zH /I z9.Dm mj Jk hf hf %0 qg 'i %0 ,2 na }5 }5 b/ }5 }5 b/ b/ a9 na ~1 4~ }| }5 B1 0^ 0^ 0^ w/ w/ r) K! K! l* r) 0^ F~ l* W' V: C{ F~ g& H, s) 8) l* K; p* n* p* (% v. v. [% u. l& v. v. s. u. t. y# v. t. v. }% }% n0.C9.p0.19.19.m& p0.19.19.19.B8.Ob.29.39.O7.q0.0a.0a.29.29.D8.P7.$4.D8.Pb.`0.@9.D8.@9.b8.D8.&b.P7.@9.Q7.=b.b8.=b.=b.49.49.Qb.;b.R7.W[.kb.j$ 59.{8.94.h$ 89.5@ 79.99.`% ^0.&3.l~.Rb.~0.Y, a@ i$ l$ 04 6@ 9@ Sb.U~ j$ I9.** 99.$5.6@ ;* Rb.** h$ X* X* l$ /M o$ a@ h$ 0@ .& ** o$ ;* -* .& X* 0@ As Tb.`6.*a.ja.Ub.{b.oa.Vb.>~ C6.Wb.b6.6| >~ C6.D6.6| c6.S9. }.(8.>6.@) Xb.Yb.20.3(.Sa.Zb.J0.H}.L3.C(.z!.W|.A(.`b.(<. c.c}..c.U5.K!.F6.F6.)3.vb.Q2.+c.@c.#c.]2.[i : .dr i..{2.Y+.SZ .s l+.:d ]@.^@.o%.Ac Ke :b a(. :.'c xh td $c.(a.%c.3b.5b.W@.&c.*c.=c.-c.h6.a0.4N ;c.>c.,c.'c.)c.8:.xN 2<.7/.2G eE x:.!c.b0.~}.]_.H<.8<..N iP ~c.{c.48.]c.p3.=1.O(.rv f(.w_.0:.^c.kM /c.I C m Z$ p ^# Y$ C; }& *= h c g ", +"<{ 2! 9| 9| <{ 9| ], J$ I/.<{ <{ I/.(c.l) ]^ 2^ ]& J$ 9| J$ 2^ 2^ I/ G= L$ 0' 0' BN R@ 0' 0' G= I/ 0' 0' + # X! 0' V@ K$ # + # * L$ + ]& + [* ' # . $ o! ' S$ ]& ]& ]& # . $ - + $ . S$ & # . & > T@ - }* . Q$ ; Z, Q$ U@ . - %= > & Q$ $ > o! & Z3 ~ ^ ~ | ] N$ ~ /& | | %# /& ~ | X@ Z! X@ 2 P$ { & ~ X@ } ) Z! [ } 2 [ 2 2 *# [ } <& => Y@ d $# V~ Y> ,# 7 3* 6 a 8 b 7 a k q> 6! 0 6 d {# 0 0 0 _c.6! L= {# W$ 0 E, c ]# s> 2, h {# t' c{ L= p p s> Y$ q ,> n^ p #| b' G#.@= @= D 4* 1; D 1Z ^# C C w w E $S f^ F= /# 2; F= F= a7 F= z '&.C` '&.'&.AR AR H$ $T $T !,.c- c- M V c- V .@.=X V V V x . V v@.4>.Z..SO AX (U oY aV A: oY *I aV k#.RT k#.+-.BX lP RT +Z Z .+Z RT RT RT RT bV 9X D` 0&.G&.e-.7` hT '*.7` AS hT CX .` hT .` 3Z 3Z 4..+` y@.]&.ST `X CR pY qY qY ~W 5Z +.0R &@.0R 0R 0R DR pO pO 0R nW nW nP :c.nP pO FX nW oW nW mU &Z mU vY VT WO /P /P WO qP aR >N /P }9.tI HJ HJ LQ ]I &J ]I Ik yH {I zH 8a.NA uI =u =u =u =u =u NA NA 8a.Wv NA ]E Kk lj Jk ma ma %0 qs ml if &0 ,2 o[ o[ b/ }5 b/ b/ }5 H^ b/ b/ k] 0^ B] /} B] c ,c Z_..$.0(.fc.xh gc.td hc.2b.ic.Bb.TH jc.kc.87.lc.mc.a0.*7.nc.[a.B7.}8.j}.9[.x:.xN (3.i}.eE ~F 8:.oc.pc.`] H|.8<.0:.H<.^_.qc.W5.z:.]_.0:.=1.-1. Q$ + k) ; V@ = ]& |* . $ # V@ Q$ + 1* > |* = & ' ; |* > & Q$ > . Q$ & U@ . > o! 5- ~ . ^ Z! & U@ & Q$ X@ ; N$ # ] N$ ) N$ 4 ] J) [ 2 4 } ~ /& 2 ] { | 1 [ xS *# J= ( ## { } $# /& ( 4 [ [ Y@ 6 ~ Y> 2d 6 6 6 } } ,# ,# 6 ,# k 3* D, 6 N' ,# k 6! e |& {# {# z: ~# c ~# a ~# L= n e 0- A~ h s> n -) y2 `$ `$ `$ #| Y$ ,> 4* V| q s> $] 5* @= :# |Z t G :# w /U $S $S q a7 w a7 z F= a7 $.+Z 9$.<#.Z .H&.|@.H&.AS hT +@.'*.AS .` E` AS .` .` aS aS E` +` +` 4..|Y %@.qY pY #Z 5Z tM D..&@.0R uZ 0R kT pO uZ 0R #V 0R pO pO pO pO OW LV IQ mU pO FX mU sO KQ nW WT WO WO /P >R /P /P rI WO WO !L 9C yH 4C ]I HJ ]I NK wG {L NK wG ;v -H -H Qq =i NA =i =u =u =u (I NA sc.hf Yf J9 ma ll Ve %0 J9 3e %0 &0 a9 o[ H^ b/ na b/ b/ o[ }5 }5 -8 k] |4 z9 }| h. h. x! B{ K! r) B] h. r) r) K! l* l* K! H, g& l* W' x! s) l* tc.i& n* uc.(% n* (% r. y> y> v. v. t. t. y# v. v. v. q* u. |% fb.vc.x. fb.wc.gb.19.gb.19.19.9a.xc.C8.0a.0a.}c.xc.0a.39.xc.C8.yc.P7.zc.`0.V~._7.a8.P7.b8.&b.D8.b8.@9.b8.b8.b8.=b.Qb.Fa.e8.Ac.Bc.Cc.I3.e8.89.69.69.u0.$5.89.]8.Ga.99.79.99.h$ 6@ 6@ 06.lb.$5.8@ &3.y= 5@ ** 79.a@ `% `% a@ l$ $5.y] o$ Z% ** Rb.$* 6@ Y% a@ o$ .& =* n$ o$ e@ .& o$ )* Y% =* A= Dc.Ec.Fc.!b.6| Gc.Hc.}0.>~ e= 6| 6| ]/ R5.D6.>~ C6.C6.C6.g9.C6.Q, Ic.Jc.10.,9.10.g9.Kc.^b.q].u[.[].|/.'5.'5.b'.Z^.5(.tb.ac.Lc.X9.i4.:8.j^.j^.Mc.Nc.Oc.E*.Zg M0.YQ (d Q..{2.4G $$.VW x#.^@.~#.fw Pc.tb ~%.:b !=.zb.Qc.Rc.vh kH Sc.Tc.Uc.7T cI ^Z q>.Vc.Wc.}a.R0.Xc.Yc.>[.o5.Zc.h6.`c.8:.xN +:.R!.P*.P*.2G }a.51. d..d..N ^2.G<.!}.o}.b[.3a.%:.+d.o0 '[.@d. 3.9w o4.#d.+K $d.K@ G F= % t `$ Y$ p n 2* 2* g c ", +"], ^, 9| 9| <{ <{ *) 2^ <{ 8S <{ 9| <{ =$.jP 2^ R@ <{ I/.jP J$ 9| G= [n ]& R@ p9 I/ ]& I/ 0' L$ I/ I/ 0' 0' # # I/ I/ + 1) # [* ]& + * k) V@ ]& }, 0' # ]& V@ $ {c > + p9 # ; $ = - $ 2) ]& > P$ S$ > H= S$ > + ; > . ; N$ Q$ > & $= H= ] N$ U@ S$ N$ o! . & R$ & | ; S$ 2 { X@ ## N$ *# ; 8- ) Q$ 7- } /& ] /& +# 2 2 W@ < 8- < 6 ( } 4 /& 6- } ( ( ( ( ,# ( ,# tA Y> } 7 2 J] 5 a a /& k &# 0 0 b 6! 0 K] 6 a e c 6! 0 c L= 0 z: L= L= h A~ s> h r n p p! s> %d.p 1; 2, ,> 4* m ^# $] G#.m b' ^# {& 2; :# /# G /# )> {& /# B 2; F= a7 F= C a7 E /U [2.z a7 a7 A$.n*.A $T z KW V ;O T^ .@.M A m;.c- (#.4>..@.(#.4>.4>.o*.aV oY aV *I I#.-*.aV *I L aV oY M7.(U .Z #N )Q )Q )Q +Z +Z RT RT lP RT sZ 0$.|@.H&.9X AS /!.3@.1@.3@.CX AS hT CX 9&.CX FN CX CX +` E` |Y ST EX pY &S CR CR tM 5Z lT &d.jT ~W pO 6N nP fK 0R 0R DR DR nW pO pO pO IQ eS 9N /W >R rO uM gK rO uM uM WO /P /P >N }9./P qP yH PK 9C ]I yH 9C 9C wG HJ zH {I HJ ms ^I wG NA =u =u zH Qq 8a.Kk ls *d.08.hf ma qg ma Jk L4 ol ol %0 &0 y9 b/ b/ }5 a9 b/ }5 }5 o[ a9 O5 // ^] N] U/ K! h. K! h. h. K! K! K! h. h. K! f. x> '{ H, l* l* f. =d.g& /% 8) n* w# /% -d.(% (> v. r. z> v. t. t. t. := q* x# }% u. ;d.x. y. 19.19.fb.o0.%b.9a.9a.19.>d.9a.q0.r6.C8.0a.0a.zc.0a.0a.V~.0a.C8.&b.D8.&b.Ob.V~.b8.D8.=b.Pb.aa.Pb.=b.b8.@9.b8.Pb.Qb.=b.Fa.,d..a.;b.{8.W[.)8.I3.I3.{8.)8.u0.89.89.W[.j$ 6@ $5.H3.`% 5@ 89.99.Y, 6@ 3@ Ia.9@ H3.6@ w; T9 k$ o$ &9.8@ e@ Y% 6@ 5@ .& .& e@ ^0.0@ n$ Y% o$ ;* ;* 0@ o$ =* 0@ m$ 'd.)d.B0.!d.~d.6| <:.~b.l^ G* C6.l^ l^ D6.>~ L{ G* l^ C6.6| b6.c6.Z] Q5.{d.I}.G,.=a.Pa.]d.Z^.^d.V9.u[.Pa./d.(d._d._d.]d.:d. # S$ > U@ > . k3 - $= . o! > U@ %= & %= > . R$ U@ %= U@ |* S$ =' T- | . U$ R$ T- & ; f] | X@ { %= %= U$ J) /& { | 2 { 2 ) I= ( { <& { } d 2 } $# V~ *# : 5 d _ 9 k 7 ,# k ( 7 G9 ,# } d a } $# Y> 7 vk [& a {# 0 ~# d d *= ,# k L= e a 0- n -) n n s> |& p r n % n^ 1; /# 4* 2, ;= #| Y$ D b' b' D 4* Y$ `$ % 4* w w /# {& F= F= {& G F= a7 F= E '&.a7 A$.a7 a7 '&.a7 '&.'&..-.JW 1& HV Z c- T^ KW Z .@..@.c- V V V 4>..@. V 0S AX A: *I oY A: B$.I#.iU *I A: oY XX y+.yS )Q )Q RT RT RT RT RT ^P RT +Z +Z Z .G&.w@.+@.AS 1@.+@.1@.'*.CX hT CX .` CX hT CX 3Z CX CX y@.DX y@.tZ qY 2Y EX qY dS ed.`..uZ 6N 5Z 0R 6N fK DR VO DR DR nP pO pO DR IQ 2M KK sO pO lU uM 9N 2M KK 2M /P /P /P /P yM 4C uM WO 9C ]I )K ]I rI ~I ]I ]I HJ xH ]I ^I NA zH -u Qq =u =u =u NA NA *d.(I ls =u hf Dm 3e Dm (I qg Od fd.%0 %0 &0 na o[ b/ }5 b/ b/ a9 o[ b/ X~ -/ B1 14 A1 4~ r) K! r) h. K! Z- F~ K! K! F~ l* H, H, l* l* l* H, l* l* v# J; gd.n* <= j. K; )' t. <= w# t. t. v. t. x# x# t. x. hd.u. |% hd.gb.m& m& 9a.o0.9a.9a.gb.m& >d.q0.C8.0a.0a.29.id.C8.Ob.`0.D8.C8.&b.&b.jd.Pb.`0.&b.b8.=b.D8.&b.D8.b8.b8.b8.=b.=b.D8.Pb.=b.ca.Ac.kd.Cc.79.75.89.69.94.89.89.89.** 99.{8.{8.79.&* {8.j$ $5.5@ ]0.&3.6@ `% &* Ia.$* y= %* &* k$ 6@ h$ a@ ;* m$ Y% 5@ %* X* o$ h$ g@ z= 5@ =* y; h$ X* >* t$ e@ }= B0.+! a+ 7+ u~ Qa.)d.l^ F* d+ F* i, l^ ^) rb.O9.e= D6.D6.c6.ld.)- Q, }' g+ 3(.ma.md.^d.T:.&'.x1.`^.%_.nd.od.pd.C{.GQ qd.rd.t3.sd.i4.)3.td.Mc.ud.}d.dc.==.t` YQ vd.wd.Y+.SZ .s l+.U@.~#.< .!%.tb S.. :. :.'c yh yh yh %e xe Y_.X=.xd.yd.Bb.xW HL zd.Ad.Bd. b.R0.R0.&7.[a.c7./6./6.X5.Cd.;7.Dd.Ed.]n 1a.s8.;[.pM Fd.O+ pM ^l n}.;[.n}.U}.;[.H<.`] Gd.Hd.Id.Jd.[q ku d(.Kd.Ld.H G `$ `$ `$ `$ 8 Y$ v *= e e K= ", +"^, *) *) 9| <{ 9| <{ J$ J$ <{ <{ J$ J$ L$ I/.J$ R@ R@ ;b J$ J$ J$ ]^ I/ I/ ]& ]& 0' 0' 0' I/ I/ L$ L$ I/ K$ I/ 5_ 1) = 0' $ # L$ + ]& $ ]& = + . # + + > > = > . o! # $= . Q$ . . o! L$ + ; A; P$ > - > N$ ] 5! N$ + |* & ; ~ > S$ & N$ %= S$ U@ > U@ & ] & | H= > ; Z! ) W@ Z! ; ] Z! N$ { ~ X@ X@ { 2 4 1 2 2 / { { < < D, ;# 4 1 2 9 ~ => 7 7 a 7 a c6 &# ( $# 6 } $# 6- [ Y@ 4 6 a k $# ~# 6 ,# 9 d 6 e 0 3] i 0 ~# L= s> n h ~# y2 E, E, c s> % 1; ,> q 2, p #| Y$ t ^# Y$ Md.D m m 1; /# @= F {& 2; :# E {& E /U /U a7 G F= a7 P<.F= F= '&.[2.A$.a7 a7 KW $T 1& T^ 0S A I T^ Z T^ M V c- .@.z .0S v@.~,.I-.Nd.3& -*.iU B$.:#.I#.*I (U A: )Q .Z k#.+-.)Q RT +Z ^P )Q )Q )Q Z .+Z RT bV 9X 0X w@.-X hT w@.2@.hT AS AS hT AS CX .` CX BS .` .` 3Z aS pY DX #Z @Z tM CR 2Y EX qY qY nP `..5N 0R 0R nP nP lW pO $Z lT 0R %` lU ;E LV FX sO 2M uM vM KK uH 2M /P uM 2M rO !L rI yM gQ yH >N yH hK tI *A Od.tI ]I ]I NK ^I -u Ik xH =i =i =i =u NA =u -u Kw fo =i (I ma ~b lj Pd.ll %0 Qd.&0 &0 L4 ,2 o[ b/ b/ na }5 H^ }5 b/ U/ 14 |4 z{ A1 V: K! K! K! B] r) B{ K! r) r) F~ K! i. l* g& K! x! x> i& gd.T= n* =d.w# K; 8) l. w# t. q* o. x# t. l& := t. t. t. s. w. x# u. hd.}% 9a.o0.9a.Rd.>d.gb.9a.9a.gb.9a.Sd.9a.id.0a.0a.29.0a.C8.D8.zc.`0.&b.&b.=b.D8.D8.b8.ib.&b.&b.Td.b8.@9.b8.b8.b8.Td.Td.@9.06.,d. a.Ud.{8.Cc.{8.&* 94.u0.u0.89.$5.79.** #* h$ ** 8@ 6@ $5.8@ `% l$ a@ 6@ o$ a@ ;* y= h$ 3@ 5@ l$ Z% h$ .& o$ >* .& 0@ ]0.,* 6@ z= e@ 0@ e@ )* =* >* =* e@ g@ c! Vd.e+ R! 7+ J& K> b+ K..m&.4u _S 6W VV d+ ^) c6.j; e= l^ 6| j+ .Q *, n+ &, k! f9.c5.Z^.T:.^d.F!.2:.[].Wd.9c.2(.Xd.Yd.Zd.`d.,|.sd.h3.O2.td.ud. e..e.+e.M0.@e.YQ vd.R../@.SZ tf p@.l@.o%.o%.!%.~%.#e.$e. :.xh yh #H #H #H &e ti Q0.'q Bb.%e.cI TM w/.&e.Bd.*e.7b.=e.R0.h6.:3.Q4.-7./6.X5.>7.-e./6.q8.m4.~}.pM b[.d7.p9.)}.^2.o}.o}.n}.U}.G<.,[.^l p5.f(.'[.E[.x_.;e.V0.O(.v_.V Z$ r b' % `$ g e 0 e c W$ o ", +"9| 9| <{ 9| *) 2! jP J$ J$ 9| 9| 9| ]^ <{ (}.<{ J$ 2^ BN J$ .( R@ G= ], BN R@ J$ BN ]& ]& G= I/ ]& ]& L$ I/ 0' + # $ 5_ + # # ]& ]& V@ * Z, }, #^ $ $= # & [* =' + > [* . + $= S$ Q$ $= N$ $ > > S$ U@ > S$ > ,Q U$ . S$ = & U@ Q$ > ; > = U@ X@ > $= | S$ Z! ~ ; S$ # f] { | [ /& 7- & `@ S$ & ] [ H= R$ U$ ) } ~ ( Z! T- { X@ ( ~ ## /& { Y> $# $# 4 d M' 6 / c6 &# ,# 3* d | 6- } } d ,# 7 Y> 0 c6 L= Y> !# {# k 6 ,# 0 e ,# Q{ ~# o L= c >e.n &].n K] Vj Y$ p Y$ % 1; n r n ,> ,> 4* 4* D ),.#| G#.1Z t t Q(.#] E G t {& w {& {& F= /# a7 F= z a7 '&.'&.'&.z AR 8$.AR z 8* M (e.bY _e.:e.k^ @$ #.5E F* CP d+ RJ BU BU JM q+ G0.}0.+1.}e.|e.[(.Ua.Pa.q].w|.G}.2(.1e.2e.3e.4e.5e.6e.7e.j^.Mc.Mc.oR va.8e.==.9e.wQ ~U d =f SZ VW c#.U@.fw < .Ac Ac 0e.0e.$e.1b.yh yh #H wh ub xe !#.ae.Za.rR %e.cI be.)>.ce.de.ee.{6.fe.[a.i6./2.c7.F<.ge.c7.j6.;c./6.he.:3.ie.je.;[.ke.!}.s8.!}.#<.!}.;[.!}.,[.e(.G<..N |5.rv 8~.e[.le.+8.=1.~}.;. m D G Z$ p o p g Y$ h e e ", +"9| 9| 9| <{ 9| q, jP J$ 2^ 9| 9| <{ J$ <{ 8S <{ <{ 2^ L$ l) .( BN G= <{ <{ I/ 9| 9| BN I/ BN L$ 0' L$ 0' 0' p9 ]& # * 5_ 0' # K$ # R@ # * ]& #^ # [* + . 2) # # . S$ . k) $ S$ ' $ . Q$ $ S$ # ; S$ P$ S$ $ T@ . U$ S$ = . ] & . U$ ' L$ 05 R$ X@ U@ R$ U@ > %= ; ! N$ ] ~ Q$ ] Q$ 'W & R$ | ; 2 # N$ 2 { 4 /& } 2 ~ ~ %# /& { 2 : < { ) ## < == 1 ># $# Y> D, Y@ 4 3* [ %m *# 6 5 6 Y> 7 1 ,# &# q> 0 7 6! 3] 6! 0 !# c b 0 !# e e ,# n 6! L= p r ;= }& % % o `$ c _# o h ~# q m ^# 1Z $] G#./# t Md.4* b' t w ^# {& w /# /U z w F= E z z '&.z a7 a7 $T a7 E z 8* Q@ T^ O@ V M >z c- Z Z c- V V V KW c- 5 ..@.z .z .L *I iU i5 A: *I A: *I -*.:#.y+.yS (U A: #N RT RT #N RT Z .)Q R%.RT Z .lP sZ <#.9$.@N hT AS hT {&.3@.hT hT .` hT hT hT +` .` .` 3Z _U pY |Y %T %@.pY dS ST #Z qY 'O 0R ~W fK pO VO fK fK nP nP ^Q 0R pO 0R pO >X lU KK KK 2M WO 2M 2M uM 2M /P LQ >R WO /P rI LQ /P 9C ~I {L ]I 9C 9C ~I tI yH ]I -H 9C ;u Wf 8t Cx Qq Qq Qq Qq Qq =i Qq Qq Qq =u H0 H0 hf hf H0 %0 qg M3 &0 %0 b/ b/ o[ b/ b/ o[ H^ j{ b/ b/ -/ B] X~ c/ 4~ K! K! K! K! h. h. r) K! K! K! f. l* l* g& h. g& l* g& x> j. l. u# n. n. x> o. o. <= x# q. t. x# x# x# x# t. t. !e.x# t. s. := me.ne.o0.hd.~e.19.9a.19.gb.gb.gb.>d.0a.id.0a.0a.id.29.0a.Pb.id.0a.Pb.yc.`0.&b.D8.Pb.&b.Pb.Pb.D8.D8.b8.b8.oe.&b.aa.-b.=b.b8.69.Td.Bc.89.]0.$5.79.j$ pe.qe.** Y% lb.89.** ]0.** 8@ h$ Y% 5@ 7@ &9.h$ a@ Rb.Ia.6@ -* .& Y% 06.3@ & k$ ** o$ ** =* W* h$ h$ e@ g@ o$ k@ ,* +& +& h@ .& :; [.re.9=.se.te.ue.ve.we.xe.ye.ze.F=.1!.T* %6.p{.E=.^ .h+.!Z S&.[$.h@..Q ({ @F P5.i5.Ae.Be.Ua.md.)a.|1.Y{.(8.Ce.De.Ee.Fe.Ge.5e.Y}.He.z-.Ie.}d.Je.dc.8e.Ke.%0.Q..~U q.._ .m@.S+.tu @$.o%.!%.~%.~%.yb.yb.0(.0(.~T #H #H wh %e ub 5j P0.4b.3b.TH cI +z J6.2a.Le. b.Wc.7b.[a.4N Q4.q8./2.Me.B% u2.u2.t2./2.Ne.Oe.Pe.'7.H|.!}.^2.7<.b[.G<.G<.H<.#<.^_.D[.iP s8.n3.&<.*7.Qe.nc.G<.Re.a. I % m ^# `$ % c o p g c a ", +"9| <{ 9| <{ 9| <{ <{ J$ J$ 9| <{ jP J$ J$ I/.<{ J$ 2^ jP <{ J$ BN I/ I/ L$ 0' R@ I/ I/ I/ G= L$ L$ J$ R@ ]& BN L$ + * 5_ I/ $ # # # R@ # #^ L$ ]& + . ]& o! # # + [* V@ & = 2) S$ + Q$ > > . > U@ ' . - > . = & ] $ ]& - ' H= > - . P$ U@ > . S$ - Q$ | ) R$ ; ~ ; ] N$ ; R$ S$ & | ) ; { | 2 | ( | I= | | R$ W@ <& | ( d : d | 7- V~ 4 } Y> /& { d J= d Y@ { { ( ( 1 6 k ,# 6 5 a b a 0 ,# 6! k 2* !# !# ~# e ,# t' e a 0 a 0 n r h h h p! Y$ ]# i p h _# |& L= ^# /# 1Z 4* 4* p b' ^# ^# w D w w m w C z F= E 2; C z z a7 w F= a7 1& /U .}Y (#.5 .SO x .v@.B..SO oY aV (U aV (U 3d ,*.k#.^P )Q RT #N )Q )Q ^P +Z ^P Z .<#.-X bV '*.1@.CX .` hT 0X 0&.AS CX .` CX hT CX BS 3Z E` +` HQ |Y |Y 4@.BR pY =S pY tM CR @V }M |C IV TT nP 0R nP 6N 0R pO lU nP nP eS 2M 0R sO uM pO eS uM uH 2M KK KQ rP uM uM 2M >N WO uM 9C 9C HJ yH 9C 9C ~I 9C =v ]I -H zH [e ms ms Qq Qq =u Qq Wf =v Wf ,e.=u Qq Se.Kw 2e H0 H0 ng &0 lj Yf &0 M3 K9 o[ Te.H^ ,2 }5 b/ H^ }5 na -/ ^] 4~ A1 ]] r) h. Z- 0^ r) r) K! h. r) h. h. l* l* Ue.K! g& f. U= /% J; n* v# x# q. V= (% o. i& t. i& Ve.t. y# t. x# x. Ve.t. hd.h& We.!e.x# x. 9a.Xe.n0.ne.9a.Ye.9a.Ze.>d.9a.id.id.id.Xe.Sd.`e.29.&b.]e.C8.&b.id.hb.aa.D8.Pb.Pb.Pb.&b.&b.&b.@9.=b.Fa.Td.Pb.-b.=b.Td.u0. f.Fa.$5.j$ Td.h$ 94.lb.Ga.&* lb.** &* Y% .& p$ 06.`% Y% o$ 6@ 6@ ** _; 5@ h$ a@ .& %* ** h$ e@ Y% m$ h$ 0q .& d@ e@ o$ +& e@ m$ k@ m$ k@ y; .f.g@ =* W* +f.5/ ,..@f.#f.~d.u- $f.X/.%f.&f.*f.=f.-f.;f.>f./].84.t{.&* 9@ l~.T1.e].S&.CU ~Z 8P rb.,f.'f.M3.j( Q, &, l; 10.)f.!f.~f.{f.]f.^f.z-.z-.Nc.Je./f.dc.(f._f.G%.=}.{2.jY 4G m@.p@.U@.< .k..Ac YN :.$e.1b.$c e*.'c #H yh ub ub y>.#H :f.4b.3b.3b.,q ^l ;[.;[.@<.t2./- a> o4.'[.nc.A[.mu !}.G<.2f.w `$ D `$ C; h V$ Y$ r '# n 0 ", +"*) <{ 9| <{ 9| 9| <{ |1 J$ 2^ 2^ <{ 9| J$ <{ <{ <{ J$ R@ R@ ;b ;b L$ R@ I/ I/ I/ ;b I/ #S #S BN I/ I/ 0' 0' = = ]& # # 0' $ # # + ]& # + = 0' V@ 2) # . $ # . ' $= $= 0' = & ' = 1* $ + = - U@ > & U@ . = . A; Q$ Q$ ' S$ P$ > $ $ {c Z! - T- X@ ; { | R$ U$ %= U@ ~ U@ U$ ; ; | H= ~ %= Q$ ] %= R$ | /& | X@ X@ # /& { } 8- .# ## < Y@ 2 $# 6 $# / 6 d J= d } 7 5 d } 7 Y> { 6- 6 5 ,# z: 3* j ,# 6! 3] 0 0 0 a d ,# 8 ~# ~# e L= 0 {# n c ]# ~# 0 n L= ]# 2, ;= 0- o ,> C; 2, m 1; b' 1; b' :# 2; s> /# 1; 2; ;{.;{.M= 2; :# /U F= w #| z E z L/.F= /U /U '&.C` E G AR 1& H$ T^ 1& O@ $T V c- T^ $T V z .c- =X c- .@.0S v@.(#.x .A: oY I-.o*.iU *I aV -*.-*.oY XX .Z (U k#.)Q +-.^P RT RT )Q RT ^P )Q +Z 9X EN 0X w@.1@.+@.3@.AS CX CX hT E` hT hT hT CX +` E` .` aS E` ST 3Z 4@.@Z pY =S EX EX CR kT jT CR 6N nP nP nP nP nP pO lU 0R pO %` >S sO FX fQ gK KK /P KK 2M KK uM uM 2M uM 2M WO rL WO uM /P 9C xH ~I ~I Ik ]I 8C xH 9C *A ~I =i Wf [e Wf 8t 8t ms =u =i Qq =u Pd.Qq Yf ma 'i 'i hf ~b 8^ K9 L4 &0 L4 b/ o[ H^ b/ o[ ,2 }5 b/ b/ ~1 A1 j{ X~ N] 8! K! Z- r) K! {% r) h. r) x! ^> r) g& /% l* l* l* T= /% g& v# v# V= l. w# o. n* w# t. <= n. t. t. x# x# x# |% t. x. hd.q* u. 3f.4f.me.ne.gb.gb.9a.gb.9a.9a.gb.9a.}c.C8.id.yc.gb.5f.id.xc.Pb.C8.id.Pb.&b.D8.&b.&b.aa.b8.=b.Td.=b.b8.b8.=b.^0.Td.-b.Td.l~.k$ Ac.Bc.Bc.06.6f.W[.7f.e8.l~.89.&* $* 89.lb.$5.l~.** a@ _; nH _; l$ h$ ** h$ o$ h$ #* 8f.#* .f.n$ o$ w; ** h$ X* 0@ 0@ z= e@ p@ m$ *& d@ & kW *& ;* 0@ 9f.27.N^ S` 0f.D/ ve.w- af.bf.cf.df.ef.ff.gf.hf.if.jf.kf.o$ m$ o$ =* d@ o$ 3@ A4.CU !Z g+.h@.TR HB 5E @! '] /) lf./b.mf.H=.{f.nf.z-.Mc.Ie.Ie.Je.dc.M0.of.pf.i..{2.q..SZ VW U@.^@.^@.>c !%.#e.hE yb.5j vV #H #H #H #H ub &/.#H =d ub qf.4b.4b.3b.%e.rf.t>.*7.R0.+0.i6.^6.G|.p5..N Q4..N iP {- u2.X5.~}.n}.Q& a> R+ Y+ L+ T+ O+ iP ^l n}.a> 7<.n4.;[.h1.of f) _5.&:.0b.1|.W5.{}.sf.!)./# /# ,> `$ n r o (# _# c f f ", +"*) *) 9| 9| 9| 9| 9| *) <{ ], 9| 9| <{ <{ <{ <{ <{ 9| 2^ ]^ L$ <{ 9| 9| I/ BN BN 9| jP 9| L$ I/ I/ 0' 0' I/ 0' 0' 0' 5_ # ]& [n = # # + # # 0' ]& + # !, * k) V@ # V@ > ; . Z, > & * Q$ ; > = }* S$ H= S$ H= |* $= & U$ | S$ & > > & > |* U@ S$ # ^ | & - S$ S$ ] & o! . . R$ | 2 J) 05 ; ~ X@ { 2 | | { | ( <& U@ ~ 8- / <& 2 ) 4 ( 2 $# 6 8- } 7 i $# b } =# } D, Y> 6- d ( $# ,# e 6 q> 3] ~# a 3] e ~# {# 0 ,# ,# g b {# {# L= s> {# n n 0- h h 0- n^ C; 2, m r [& ~# p Y$ p `$ n^ p Z$ 4* 2; b' Y$ t /# /# )> )> )> D {& F= w F $S C` z z /U $T /U /U a7 P<.'&.'&.'&.AR U!.O@ AR $T 2Z V M .@. V .@..@. V V V c- I-..@.(#.5 .aV A: B$.:#.I#.(U A: *I aV iU yS XX (U (U #N RT )Q RT )Q +Z RT RT RT )Q sZ sZ $N H&.H&.H&.AS 2..H&.w@.hT AS hT hT AS .` CX .` CX E` .` |Y ST |Y dQ pY =S %T =S ~Q -R fK qY @V 6N nP 6N 0R nP pO nP 0R pO 0R OW (P WT ~O 2M uH KK 2M uH 2M KK KK 2M 2M 2M uM tI %J tf.~O ~I Od.%J %J hK wH LE 8t ]I ]I *A Qq 8t =i Wf Wf [e =i Wf Qq =i =u Ue Qq og 2e H0 'i hf H0 L4 &0 M3 %0 &0 j{ a9 H^ o[ o[ H^ H^ o[ j{ H^ o[ }5 N3 A1 U/ K! K! K! h. h. h. K! Z- B{ h. h. K! l* l* f. l* H, g& l* x> n* g& x# _% (% uf.:= u. t. w# vf.t. q* t. t. x# t. t. hd.x# t. wf.~e.gb.xf.>d.gb.>d.gb.>d.9a.>d.gb.Sd.id.Xe.id.5f.yf.zf.C8.Pb.zc.hb.Pb.aa.&b.aa.aa.aa.=b.=b.b8.b8.=b.b8.=b.=b.06.Af.Af.Td.Bc.** -b.lb.lb.^0.Ud.$5.79.h$ 94.6@ ** 5@ ^0.Y% ^0.$5.m$ h$ h$ ** h$ n$ h$ g@ Y% o$ .& p$ j$ w; o$ .& o$ h$ Y% e@ 6@ o$ X* k@ )* e@ o$ a@ e@ j- e@ w; '* Z0.Bf.f, *P Cf.Df.Ef.Ff.Gf.s/ Hf.If.Jf.h/.f).`: E* Kf.Lf.z3.f@ >* ** Y% Mf.Z% l$ 93._{.!..t#.g).s{.5#.DU sV TR 5E Nf.Of.Pf.Qf.Rf.Ie.Ie.Nc.}d.Je.ec.M0.Sf.mZ W` =f _ .4G GW U@.@$.< .o%.tb T$.yb.1b.'c $c #H wh wh $c ub >e xe *e =d Tf.3b.3b.TH 4d.Uf.Vf.:|.:|.K6.4N c7.N6.g1.S& g1.vC P+ O6.pc.{- /- /- G% R+ P+ V+ R+ R+ /- P+ #) S+ /- pM {- H<.G<.<|.Wf.Xd.9w 's ;(.O(.h1.b[.e|.M Y$ r ,> h h p p h n o e ", +"<{ 9| <{ 9| 9| Xf.*) <{ 9| ^, <{ 9| <{ <{ *) J$ J$ *) 9| BN BN <{ I/.L$ R@ R@ 5_ ], jP I/ p9 BN I/ 0' + I/ L$ 0' 0' 0' # + 0' 0' * # # 0' + $ * + Q$ }, # & ' > k) S$ S$ = # . + & # . Q$ * - U@ U@ $ |* . Q$ > A; $ . - Q$ > $ U@ - S$ U@ & U@ o! ~ Z! ; ; & Q$ Q$ ] ] | R$ ] ) N$ W@ X@ | | %= X@ [ P$ ] /& ~ %= X@ /& / 1 2 ( 1 $# { d 7 5 $# 2 d &# 6 ,# &# 6 Y> 4 $# b 6 3 6 ,# $# d ,# ,# 0 a 9 ~# ]c ~# 6 L= 7 g k ~# n !# e ~# s> 2, h 2, Y$ n s> Y$ e {# h p Y$ s> p ^# p w b' xE 4* D t :# /# /# M= w o/ #] 2; {& F= 2; }4.F= n! /# C` /U /U w a7 a7 '&.AR AR JW KW n*.w c- V c- c- M $T V V .@.4>..@.x ..@.4>.v@.Q *I iU AX E].aV oY A: (U SO yS ^P _#.k#.3d ^P )Q )Q RT ^P RT ^P RT )Q +Z lP EN ~&.1@.0$.hT CX AS hT AS hT hT AS 0$.CX AS CX CX aS x@.|Y |Y '$.%T 2Y #Z [+.EX =S =S fK @V @` |C |C nP nP fK pO nP lT ;S LV pO JQ tH lU KK uH 2M uH KK uM KK uM uM /P 2M KK LE Yf.8C uM rL hK 9C 9C ~I ~I 8t *A ]I ]I {I [e Wf Cx Wf Wf [e Wf Qq Qq =i =i J9 =i Pd.H0 Dm Yf Dm hf M3 if Od &0 &0 L4 H^ y{ H^ ,2 H^ y{ o[ y{ H^ H^ j{ w> N] A{ ^] h. K! h. Z- h. h. h. h. K! K! h. g& f. h. x> g& g& w# l* o. U= o* o* v# Zf.x# [% x# q. w# x# x# x# x# x# hd.x# )e.:= t. !e.~e.wf.19.9a.gb.gb.9a.gb.]e.Ob.gb.gb.Xe.`f.Ob.gb.gb.5f.D8.id.zc.id.hb.aa.aa.Af.aa.aa.aa.06.=b.=b.b8.=b.Td.Td. g..g.Af.-b.^0.u0.Bc.Bc.l~.Ac.94.59.#* ** ^0.** ** ]0.h$ .& 5@ .& 5@ 6@ o$ ** g@ ;* l$ .& n$ h$ 0@ =* e@ w; w; m$ =* 8f.h@ e@ o$ nH m$ ,* kW h@ -O :; )* ,* h@ +& .& 94.&g.g; a. ,W 8@ %* p[.Y% =* 3@ F3.;|._/.2'.x,.*g.M).sV SS 9=.=g.;~ [~.-g.Qf.;g.}d.Nc.Je.#c.dc.M0.1d.3).i..wd.=f 4G KB p@.l@.o%.!%.Ac Ac x&.0(.0(.>g.$c ~d %e O;.#H ub #H -d wd wd IL Za.3b.4b.Ho ,g.'g.87.*7.K6.B7.() B% E% E% L+ Q+ O+ {- M+ G% )g.W2 ^N N+ a> L+ R+ a> g1.T+ R+ S+ /- a> u2.H<.,[.:4.!g.~g.t8.{g.]g.,[.Zi ,[.e+.m N 4* r >> h c r 7 j X$ c ", +"e^ *) 9| 9| w9.w9.98.9| 9| *) *) ^, <{ <{ 9| 9| J$ <{ J$ <{ *) <{ <{ ;b J$ *) BN #S BN BN I/ I/ R@ L$ + ]& G= k3 0' 0' # K$ X! 0' = # # + L$ * V@ = + $ V@ Q$ [* $= . [* |* - k) p9 V@ ' # . % $ $ + T@ S$ =' & |* - & > V@ . & U$ & & T- S$ . . | X@ H= N$ R$ ; N$ T- ] ; ; & ; X@ - U$ $ { W@ X@ U@ ~ | 05 ) | [ Z! 2 2 ## ~ 5 X@ Y@ 1 | ~ [ Z! 4 ## { d ( &# *# [{ 5 } x0 : ,# } $# d ,# } 6- Y> $# 7 6 a k 0 6 e 3] a ~# ~# E, 3* n ~# 6! n r -) L= s> h h V| Y$ !# p (# 2, p 1; m 1; ^# ^# xE Q(.[# @= 2; b' % #] /# w #] G F= F= G F= a7 B w z a7 a7 I F= B '&.'&.'&.$T .@.A$.a7 M O@ Z Z c- 2Z 2Z V c- V c- V 4>.4>.>z 4>.Z..:#.d{ y .oY A: A: A: *I oY _#.J-.(U yS +).^P )Q ^P ^P RT )Q RT RT RT bV sZ -X 1@.9X 1@.mL hT $N $N AS AS AS .` AS AS BS aS CX BS 4..pY ^g.|Y %T 4Z CR tM EX =S 5N 6N /g.@V 6N 0R 0R DR nP 6N fK |C nP |M 9N uH $V KK 9N uM KK 2M 2M sO uM 2M uH 2M uM /P rI wH LK ~I 8C yH 9C rL 9C 9C ~I ~I 9C *A [e Wf =i [e [e =i =i Wf [e =i =i Kw ls =u fo 2e ng Oc >2 ~b L4 S: 'i &0 [c 'i S: y{ o[ j{ H^ b/ j{ H^ H^ X~ 8! w> // /} h. k] Z- h. Z- h. {% f. Z- h. Z- (g._g.f. f. g& f. T= l* g& :% J; o* q. q* <= o. q* q* q. x# q* q* x# x# t. )e.t. hd.t. 4f.ne.4f.o0.o0.9a.>d.>d.>d.]e.Sd.gb.gb.>d.gb.`f.gb.9a.:g.0a.id.]e.hb.Ob.aa.Pb.aa.aa.aa.&b.Af.&b.06.=b.Td.Td.Td.Td.-b.=b.06.=b.^0.5@ Y% lb.h$ h$ $* 79.5@ Rb.}Z w; &* h$ Y% 5@ h$ ** Y% o$ b@ h$ Y% -* e@ e@ .& h$ _; 7@ X* 0@ o$ g@ +& && j@ d@ '* ,* f@ g@ 6@ n$ m$ ,* )* j@ )* X* * v) 2g.64.l$ g$ w; 3g.4g.ha ;Y _S 5g.G* 6g.$/.7g.8g.9g.0g.#c.ag.ec.bg.cg.{%.-U @H SZ VW 2x l@.@$.o%.tb hE !#.$(.e*.yh yh $c wh O;.ub %e #H -d zh =d *e lZ _a.3b.4b.dg.eg.fg.gg.=e.`2.N6.() N6.hg.ig.Q+ V+ L+ ^l L+ Y+ Ca.jg._$ V+ P+ /- a> ]w ^l ~@.]- Q& X2 E% #<.D[.8<.U}._9.R4.e(.kg.lg.o4.t2.mg.Xr K G ~# :# c *= o n ~# j a a ", +"98.<{ 9| <{ 9| 9| 9| 9| <{ <{ *) *) 9| 9| <{ 2^ 9| I/.;b <{ J$ l) <{ <{ <{ z~ *) I/ BN I/ I/ 0' G= R@ = 0' 0' 0' 0' I/ ]& # K$ p9 = # # ]& ]& # + 0' # K$ . ' # # . o! S$ & . = - . ' P$ V@ & . . $ - - $ ; & * ; A; }* > A; . > $ > U@ S$ U@ U$ & & T- N$ Z! ] N$ Q$ ' ] | N$ ^& { N$ X@ U$ R$ U@ ] Q$ H= { { ~ N$ ^ [ | ; [ I= *# $# [ 2 R$ X@ } *# ( ( ( < Y> 6 7 $# 6 e 7 d &# 5 d d 8 Y> Y> a d 6! 7 6! v5.a ~# W$ a z: A~ E, z: ~# ~# !# }& }& `! b~.`! p n L= p r p! c % s> K/.h m p ^# 1; m t t m t b' C F F= w F= F= B F= /U /U {& z '&.z /U z a7 '&.a7 AR '&.8* M AR $T JW M c- T^ n! 8$. Z c- c- V c- V .@..@. V Z..A: y .SO A: A: A: *I *I aV iU #N r! oY y+.)Q ^P )Q )Q ^P RT RT RT +Z +Z EN -X '*.Z .-X AS $N $N hT hT AS hT hT hT CX :M $N hT hT aS ST ST ST %T |Y #Z @Z tM CR &@.nP kT @V 6N 0R nP 6N nP nP 6N 0R pO 0R lW KK 1M uH ~O ~O KK uM KK eS uM uH KK uM uM qP vM wH 4C ~I wH 9C vH *A wH 8C wH 8t ~I wH Ik Wf Wf zH NA Wf Wf Qq Wf =i Wf =i Pd.Qq z9.Pd.H0 Oc H0 hf 9d &0 Ve =/ x1 M3 S: j{ H^ b/ o[ H^ H^ o[ b/ A1 B] B{ q) m~ #~ r) Z- c. Z- c. h. Z- h. K! Z- i. i. g& g& f. l* f. g& g& l. s# n. Ve.ng.i& w# q* x# x# x# t. x# x# q* x# q* x# og.x. t. pg.ne.!e.!e.Xe.gb.gb.>d.Xe.>d.>d.qg.qg.>d.{e.rg.>d.5f.0a.id. f.`e.Ob.aa.Af..g.aa.Pb.Af.Af.Pb.Td.Td.&b.=b.=b.=b.l~.Td. f.m$ 06.l~.^0.94.Bc.#* Rb.79.Rb.** h$ l~.^0.d@ h$ Y% h$ 5@ 94.Y% m$ ^0.a@ e@ m$ h$ .& h$ h$ ;* o$ r' 94.sg.h@ 8f.x; 0@ >* q$ e@ h@ )* ;* h$ )* =* =* =* >* tg.ug.p% -~ $$ -~ )T t{.vg.3@ X* +& c@ `% wg.B2.a@ l$ |@ 9@ #* p$ b$ 7@ c@ p$ U] w^.2@ o$ 6@ P_.xg.q] `%.>%.t#..Q u~ yg.zg.Ag.Bg..e.Cg.Dg.Eg.Fg.pf.QZ -}.q..Y+._ .m@.U@.0k < .k..tb Gg.!#.!=.e*.[R yh O;.ub y>.%e y>.ub ub xe xe we U` (a.3b.4b.Cd Hg.Rg Ig.=e.B7.X5.hg.B+ A+ U& T+ L| F% S+ S+ @/ Ds k6.G% G% Q+ #) {- #f DL Jg.Kg.Q& Q+ r8.pM b[.$<.8<.]w Kb G<.0<.Lg.rv #<.0:.Q4.S m h `$ Y$ o l r o g d a ", +"<{ <{ w9.*) 9| *) 9| 9| <{ <{ <{ ]^ <{ <{ <{ <{ 9| I/.;b l) R@ L$ <{ I/.R@ L$ 9| #S I/ k3 L$ L$ J$ *) L$ [n 0' 0' 0' 0' [n # `Y # = # # = 0' # 0' # K$ V@ # ]& & + # ' ; . $ [* V@ # $ V@ + 0' [* > . > . & . > = A; S$ ] > # . . ^& = ' %= %= ; = %= N$ ; X@ ~ . Z, Q$ P$ Z! 2 ) 2 05 2 %= 2 R$ ; ( { R$ ## { N$ | 2 | ( ( H= 5 X@ } ## ( Y> /& &# $# N' $# i ># ,# i ,# a 6 7 B; 6 } D, 7 ,# 0 a' L= 3* &# V) |& 0 e 6! a 6! L= {# >> L= K/ 0- r -) p Y$ A~ Y$ r ,> l n 0- ]# Q{ n^ 1; 0- ,> % 1; % 1; ;) 1; Z$ t ,> t F F F= w F= w F= {& F= :# #] a7 z F= z 1& '&.z a7 a7 8$.KW 2Z AR c- c- c- z :}.a7 V >z V V c- V 4>.4>.4>.0S J A: x .<_.aV oY *I *I (U aV (U 3d k#.*I ^P ^P )Q )Q 3d )Q )Q )Q RT RT sZ -X 0X H&.+Z AS $N mL $N AS AS hT hT hT AS AS HQ .` hT aS aS q) B{ h. Z- h. Z- h. h. h. K! K! h. {% {% g& K! f. i. i. f. l* /% l. n. x# Ve.Zf.<= m. Ve.q* v. q* q* x# q* Ng.'e.q* x# := )e.4f.We.x# ne.me.me.Og.gb.>d.qg.>d.qg.qg.gb.Ob.v7.>d.Pg.aa.0a.id.aa.id.hb.aa.aa.Af.&b.Pb.Pb.Af.aa.Td.aa.06.06.hb.Y% Qg.06.Y% Bc.l~.x; 0@ lb.Y% ** $5.=* .& ** 94.Z% m$ Y% 8f.]0.a@ p$ &9.+] h$ k$ _; Y% #* m$ 94.#* k$ .f..& #* n$ nH k$ =* =* U* =* p$ X* m$ *& =* )* p$ =* l@ b. Rg.]{ RR 3+ C=.J& ^<.{].n<.Sg.A= -& 9& j@ a9.&6.i$ Tg.[@ 9@ Y% 6@ X% Ug.`% a@ Vg.7,.dY Ac.=Y [@ 7@ _].:&.hZ DU qN oa.Wg.Xg.Yg.Zg.#c.#c.Eg.`g. h.QZ NO R..@H SZ (y p@.l@.@$.o%.!%..h.~%.!#.vV [R #H yh #H %e %e y>.xe y>.y>.T=.nc we Bt P0.Za.4b.Cd TH +h.@h.Eb.n9.j6.w~ A+ E+ ta E% C- ^ t{ /- p; wg X; L+ g1.S, /- T! O+ {- #h.$h.Cs n}.vC n}.^l iP |5./- V& U}.<3.%h.0:.w_.D[.Q4.#. n h h o !# e 9- j ~# *= ## ", +"2! *) )~ *) 9| |1 9| 9| <{ 9| )~ 2^ V! J$ I/.<{ 2^ *) I/.J$ .( R@ L$ <{ R@ BN <{ BN L$ ]& J$ BN p9 R@ L$ I/ 0' I/ I/ 0' ]& = + }, I/ ]& K$ # = # ]& 0' J$ + = k) . . !, . E! 1* . $ # > . ]& 1* . # # S$ & > $ U@ ; Q$ ; ; N$ Q$ S$ Q$ > ] & $= Q$ ; N$ ] | & > *' T- N$ o! > U@ ; Q$ T- %= X@ X@ ^ ] 2 X@ | 2 ~ | | J) 2 } ~ : 4 ~ } &# } } 2 d 5 $# Y@ 6 ,# i V~ a' $# x0 6- a $# a ,# a' ,# 0 V$ ,# k 0 0 ~# a {# a' } 7 0 ,# a K/ i ~# 0 L= Y$ K/ y2 ;= `! h e ~# o % 2, ,> t m 1; m L= 4* ^# Q(.xE ^# G#.4* 2; m t G F B t /U w w F= B z d.>d.>d.qg.;h.gb.>d.Pg.>d.qg.Sd.Pg.rg.id.>d.>h.39.Ob.]e.Af.,h.Af.aa.aa.Af.aa.aa.Pb.aa.Pb.Af.aa.aa.=b.Td.#* f.'h.Y% /M w; h$ kd.Y% )h.h$ 79.#* h$ 79.lb.n$ #* e@ o$ Y% b@ ^0.0@ >* =* a@ =* h$ j$ m$ m$ p$ r' 6@ =* a@ w; q$ f@ e@ 0@ >* p$ >* g@ >* t$ p@ o$ 0@ A= a& !h.d+.wT bY 2!.'` w6.62.#* && s@ {* h# q@ s@ j@ 0@ 8@ ~h.6@ .& ,* e@ {h.]h.o$ ** E=.^h.c^ W<.e$ f$ J- 2'./h.(V 1L (h.e0._h.:h.3|.==.ag.Fg.`g. - $ S$ ; # Q$ > > $ > $= Q$ T@ S$ ; |* U@ }, S$ > M$ > #^ ^& U@ ] > Q$ H= & ] N$ ^& N$ P$ X@ ^ S$ & ^& | U) ] { *# X@ ] ~ X@ 2 ; { 2 1 } H= [ ] 2 | [ ) *# ## ( d 1 Y@ *# 1 { $# V~ $# 6 k &# d q> D, [ b d ,# V) a V$ a k ~# a' 0 7 a' a ,# ,# j 0 7 K/ ]# c {# L= n !# K] W$ ;= h W$ Y$ 0 h n V| ,> r 2, Y$ 1; |& Z$ D V| ),.D t /# t t t /U $S `$ /# $S G {& F= w F= a7 F= a7 /U F= AR n! z z I 8* #= O@ c- c- I V 8* c- 1& H$ O@ 8$.M M V .@.c- v@.AX AX SO :#.aV AX L aV *I *I *I c~.BX (U )Q RT RT ^P )Q _M #N ^P )Q ^P +Z sZ sZ bV 9$.sZ $N $N AS $N AS hT AS AS AS AS AS CX BS aS CX BS |Y y@.EX pY %T =S BR ~Q =S EJ @V =S 5N 6N 6N nP nP 6N nP PP |M -S 6N tH tH uH tH KK uH WT 9N KK uH 2M LE hs !I hs ]I ]I 9C hs Uv 8t ~I 9C 6h Uv ~I 8t ;u ~I {I xH =i Oq Wf [e Wf Wf Wf Wf Wf =u =i G0 bh.~b E0 Oc Yf ~b 9d 8^ d.>d.>d.qg.>d.9a.gb.v7.5f.>d.Pg.rg.yf.5f.Sd.`e.,h.Ob.v7.hb.0a.Pb.Af.&b.Pb.aa.aa.b8.Td.=b.Td.Af.Af.aa.Af.Af. f.n$ Af./M 8f.h$ 06.^0.#* n$ /M ** x; k$ Y% o$ ^0.o$ wS k$ h$ Y% e@ #* p$ p$ 0@ Y% >* .& +& ** >* .& w; X* & 0@ h@ h@ r$ l@ =* p$ g@ f@ X* p@ g@ :; l@ >% eh.J .d+.{ .b%.wT 42.d@ N- o$ fh.>* m@ >% [y j@ X* a@ h$ ,* k@ p@ gh.hh.ih.0q 6@ X^.J> qQ g+.ha n, H] x,.P+.lS ({ jh.kh.lh.Xg.'e ag.Fg.`g. h..nc nc nc nc nc nc #H :f mh.-f 4d.Za.Ho xW ~r nh.oh.ph.n8.-7.B+ C+ P> T+ V+ N+ G% S~ /$ X; N6.qh.{- O+ V+ R+ T+ X+ be B% rh.O+ P+ /- S+ T+ S+ S+ iP h1.O(.p3.~}.iP sh.th.uh.D t c r L= g e n ~# V$ 6 ", +"vh.$8.*) e^ e^ z~ *) jP 9| <{ 9| I/.*) w9.<{ $8.|1 J$ <{ <{ <{ 2^ 9| jP 0' ], 2^ R@ L$ I/ G= I/ L$ ;b 0' I/ 0' 0' R@ 0' 0' I/ ]& # Z, = + # = 0' # # = = R@ ]& # #^ o! }, Q$ H= > > ' & V@ . $ - > $ . . $ V@ + & > & Q$ + > [* . * $ ; O$ & | *' ; | Q$ > %= P$ Z! *# U$ ; Q$ & ~ z] | U@ X@ [ R$ 7- F:.wh./& X@ [ ( X@ X@ ] 2 P$ ] 2 /& d ) 4 1 <& | d 1 $# 2 &# / Y> 6 7 k 7 6- == 5 c5 ,# 0 a' 0 ,# a 8 3] ~# ~# a ># a a tA 6 j n e 0 z: L= !# ]# h 0 s> h r s> r r ),.`$ Y$ 1; L= 1; p h r m % t m w /# t {& w {& xE F= {& w :# G 1; :# /U F= a7 a7 /# $S a7 z '&.O@ 1& X8. Z AR c- $T $T n*. Z n! c- V V V c- c- V V H#.I#.-*.A: aV aV aV L oY iU iU B$.#N zS oY BX ^P RT RT RT #N ^P #N )Q ^P +Z RT -X bV NW sZ 1@.$N CX AS $N mL CX hT hT hT AS aS AS CX aS aS _U ST IK IK iT =S CR %T ~Q -R fK &@.kT nP nP nP nP EJ 6N |M pO pO oP TL 2M KK KK uH KK KK sO KK uH 2M %J IF qL hs hs wH ~I 8C 5D on 9C wH Oq 9C !I on %J ~I 8C hK =i }e Wf [e =i }e 8t =i Qq [e Wf E0 og =i Pd.$0 K4 >2 Oc L5 K4 Nd L4 L4 y{ H^ y{ L4 S: H^ j{ o[ H^ H^ i] !! ^] q) ]> Z- h. Z- h. {% {% Z- i. {% i. {% f. q# h. Z- i. q# j. J; i. l. v# m. h& o. _% q* q* q* Ve.:= Ve.q* x# Ng.Ve.q* Rd.qg.`f.!e.>d.>d.gb.qg.qg.qg.>d.>d.x; ]e.qg.Sd.}c.rg.`f.Ob.id.5f.m$ id.`e.yc. f.o$ Af.Pb.&b.Af.Pb.Td.06.Td.Pb.Pb.Pb.,h.06.6f.06.6f.k$ ,h.pe.o$ Y% lb.p$ Y% .& .& o$ lb.-* m$ $& d@ e@ Y% =* wS m$ h$ =* r' m$ o$ p$ nH p$ m$ 0@ =* n$ :; )* :; h@ -& A= =* =* l@ f@ :; y; X* *& j@ Y~ xh.p% k&..) u- yh.zh.p$ )* g|.l<.p@ ,& h# h# -& l@ <7.'h.e# >* =* 8@ +a.e@ k@ p[._{.ha :&.62.]].@* 2'.g).!..CU IZ Ah.Bh.Ch.~g Ke.Dh.Fg.`g. h.Eh.wd.mk Y+.KB GW l@.l@.< .!%.Ac tb 0e.kH vV $c $c ub nc y>.nc (g *e =d nc nc nc jZ :f Fh.X=.Gd 4b.Ho xW ic.Gh.Hh.97.n8.-7.B% E+ ^$ 9{ g1.S+ o2 Ih.K+ 6h._5.m4.O+ S+ p; Y+ [$ %@ Q+ ($ G% a> /- P+ Y+ T+ S+ n}.#f #f <|.U}.^l B[.Jh.Kh.=8.^# 4* L= o o e 6 c 7 e 6 ", +"98.vh.|1 )~ 2! q, ^, ^, 2^ 9| *) *) <{ 2^ <{ <{ <{ <{ <{ <{ I/.J$ N<.2^ J$ J$ R@ R@ L$ L$ ], ]^ L$ BN X! I/ ]& 0' I/ 0' 0' 0' = # + I/ I/ # + + p9 # Z, 5_ J$ R@ # > . ' ' ' * - V@ [* S$ S$ o! $ # . o! $ ; > T@ & . H= $ - ^& Q$ S$ > Z, & > S$ ; 05 ; - X@ > ; U@ S$ S$ ] ; ; . | ; ) 2 | N$ { 2 X@ /& 2 N$ I= 1 { 2 ~ X@ ; f] [ <& 2 [ 7- } 9 6 4 } 6 } d W@ 6 4 8 d 4 ># ## 3* 7 ( d ,# [{ ># d e a d 7 a ,# a 0 A~ ~# L= ,# K/ 6 L= 0 Vj n c ~# y2 8x Y$ -) ]# ]# 2, n^ r 4* s> r q ,> `$ `$ m h ^# w 1Z t w m :# ^# cb.w @= )> w /U {& F= z B C` F= F= A$.'&.a7 z z _}.8* n! O@ 8* $T O@ HV V M M V .@. V .@.c- c- |# iI SO *I :#.:#.aV *I oY *I aV B$.oY zS YX BX #N #N ^P )Q )Q ^P ^P ^P +Z +Z +Z bV sZ bV bV -X mL mL AS hT mL $N AS AS CX CX HQ HQ CX BS HQ aS :+.BS )O ST EX =S tM dS 5..RL 5N dS kT fK 0R 6N |M 6N 0R 6N 6N lU lU 9N gK uH 2M uH uH tH KK KK tH (P qL KK (P LE IF ~I 4C qL Oq yH =v on ~I ~I Oq 6h Oq ;u Uv [e 13 =i ms =i Qq s9 Qq Qq Wf Wf g& t# v# =h.h& V= s# x# q* Ve.q. _% x# x# x# pg.Ve.)e.Ng.pg.Lh.!e.qg.gb.>d.qg.>d.Lh.qg.gb.Mh.Sd.5f.5f.rg.v7.id.Ob.Pg.`f.aa.Ob.Nh.Oh.x; id.Af.Af.aa.Af.aa.Af.Td.Td.06.Af.aa. f.m$ p$ f.x; l~.#* ,h.n$ Ph.94.x; a@ k$ a@ h$ a@ m$ .& 5@ k$ Y% o$ 8f.h$ .& =* h$ o$ >* Z% 7@ .& 0@ >* a@ -* 0@ kW )* k@ p@ b& k@ ]* u$ ,* h@ r$ i> e@ sg.u$ Qh.Rh.FZ :'.s#.p-.e~ Sh.$5.*& b& {* {. 4_ ,& {. v@ ;& e@ :. i@ =* 0@ y= &3.e@ -* |@ ,~.,~.s{.t{.x,.4@ U9 Th.1L @) qQ Uh.Vh.Wh.Xh.Ke.3|.Fg. h.Eh.Yh.@H q..o@.o@.Nj $$.^@.!%.tb Ac x&.S..!=.$c +l #H %e xe &e nc P+ {- ^l of Oe {}.o}.~}.H<..i.^/.C `$ h ~# e c o ~# o a g ", +"*) 2! )~ |1 *) 2! 9| w9.9| 9| 9| 9| <{ 9| 9| 9| <{ <{ J$ <{ I/.R@ R@ 2^ <{ J$ J$ ]^ R@ BN jP BN G= 0' 0' ], L$ 0' p9 0' 0' 0' 0' + K$ R@ p9 + K$ =[ jP # + #S L$ + # > + [* [* [* $ }, > CN Q$ S$ S$ Q$ # 1* S$ 2) > |* ; k) k) # + Z, T@ > ' & |* |* ' +i.. 2) o! Z! ] | ] | H= . T- & ' U@ - | S$ 2] ] 8- `@ ## 7- [ ~ 2 U@ U$ ; - [ [ 5 { R$ ( J) ## ~ I= D, 1 D, d 1 ( 1 6 B; Y> 3* a k 7 d } 2d ,# N' D, a 0 3] ># a' ,# ( Y> 0 0 6 0- 0 0 a L= c L= K/ 6! 6! L= h s> s> ]# h n a }& e<._# Vj m r ,> 1; b' m h Q(.Z$ :# G 4* 1Z :# $S :# w w F= /# G {& G /U /U /# C` {& F= a7 a7 a7 a7 K I 8* $T 1& c- c- V V V V c- V Z .@.4>.4>.4>. V z .0S i5 oY B$.*I A: oY L *I I#.A: MW XX (U +-..Z ^P `I ^P )Q #N 3d +Z RT RT )Q -X -X bV -X mL $N AS AS mL mL $N hT $N .` hT HK CX .` HQ BS cQ _U cQ ST |Y =R #Z iT ed.[M Zz =S nP 6N Zz 6N fK 6N nP |M fK ;S 6N 7J 1M uH tH tH JQ KK uH /P vG 2M qL IF hs KK LE wH ;N LE Iw Se 8C 6h on 8C 8t Oq Se 8t F3 =i Wf [e [e Wf [e [e =i [e [e [e u9 }e [e x1 8h K4 E0 ~b ~b 6^ M3 K4 =/ $0 =/ j{ v' y{ H^ j{ j{ H^ H^ H^ i] w> V' q) B{ {% Z- {% {% Z- h. Z- {% {% {% _g.i. i. f. Z- f. m* f. q# S= l. S= @i.o. K; Ve.Ve.q* q* Ve.q* x# q* 4f.4f.h& og.pg.>d.pg.me.qg.Lh.>d.qg.>d.qg.qg.>d.id.`e.#i.rg.Ob.v7.v7.rg.id.v7.Ob.v7. f. f.]e.Af.,h.x; k$ k$ f.aa.Af..g.`e.,h.k$ e@ -* Af. f.06.k$ h$ m$ m$ l~.#* Y% Y% 8f.Y% Y% h$ Y% h$ a@ Rb.nH .& ~h.d@ )* >* o$ 0q o$ =* e@ 0@ .& k$ m$ o$ k@ p$ X* l@ p@ $i.X* -& *& *& -& !* >* {* t$ #i.%i.*Y 1!.x^.P_.`# M+.i@ t$ {* O- ~. a. u@ t@ l@ l@ 0q -& E9 o@ 7@ 4@ n$ d@ )* l$ h$ ** L- G'.R* J- g).Z#.IY |' '..&i.~a.Wh.*i. h.Eg.=i.-i.Yh.;i.R..[ ._ .~#.U@.^@.@$.o%.!%.x&.Ke ti c*.[R jZ ub %e %e =d *e i.7T ,i.'i.87.)i.b7.!i./6.B- A+ B- M+ L* ^ b0.R4.V+ S+ E% {- g1.S+ R+ Y+ X; s8.Q+ R+ N+ ta R+ P+ X+ ta Q+ a> ^l C[.b[.n4.+8.t8.~i.^1.Q@ `$ c n 9- W$ e V$ c a j ", +"*) ^, ah.9| 9| 9| w9.9| 9| 9| 98.w9.<{ 9| 9| 9| <{ <{ <{ 9| <{ L$ R@ 2^ 2^ <{ J$ ]^ J$ 2^ 0' l) G= I/ 0' ], BN 0' p9 0' 0' 0' 0' + K$ + 0' 0' Z, K$ ]& 1) # = 0' p9 % [* # Q$ o! (& & # P$ ' ]& ]& V@ > . V@ o! ; L$ $= U@ > > S$ $= > T@ ] $ * - . $ > (& & H= ] > U@ S$ ) Z! N$ W@ ^ ; & & | N$ ] N$ 8- N$ ~ ) 2 W@ ) %= N$ b{ ~ 2 [ ( | ~ ) | } | B; < 1 5 Y@ ## *# { V~ 7 5 ,# 6 )1.J] [{ } 6 <& } d a d 4 0 a q> 6 !# q> 0 b ># L= c 6 e !# 0 K/ ~# h |& |& c Y$ 0- r |& ~# r 1; Y$ p Y$ n `$ @= b' b' p 2, ^# /# w u t :# D /# /# ,! ^# G /U G {& '&.w {& F= z a7 a7 a7 1& K a7 1& $T a7 '&.m;.c- c- c- c- c- .@. V O@ c- V V V c- v@.M }Y 3& B$.oY *I aV *I oY U;.*I WX 3d oY y+.BX )Q )Q RT #N )Q ^P ^P ^P lP +Z @N qH bV bV -X hT AS $N $N mL CX AS hT CX hT AS CX AS hT aS ST FN _U tZ |Y #Z qY tM dS CR 6N kT @V fK fK nP 6N |C {i.-S fK 6N JV }M qI tH KK uH uH tH 2M uH vG uH !I hs hs KK !I IF !I hs 8C Re Oq 8C LE Jc Iw on on ;u Oq Oq [e [e }e =i =i }e Wf Wf }e }e 9t Te G0 Mc og 1e E0 ~b J4 t/ 'i M3 =/ =/ M3 S: j{ H^ H^ j{ H^ j{ H^ j{ i] X~ #~ m~ c/ k] Z- Z- Z- Z- Z- h. Z- Z- {% Z- Z- Z- f. i. q# ]i.g& g& J; l. l. t# l. ]i.l. 2f.Ve.2f.Ve.q* q* h& q* Og.dh.:= Ng.pg.>d.qg.>d.>d.Lh.>d.>d.>d.qg.>d.Lh.]e.Nh.>d.>d.`e.v7.n$ Ob.Ob.x; Ob.`e.,h.v7. f.x; n$ Af.k$ k$ x; k$ aa.Af.Af.^0..& w; ~h.Af.Af.Y% Y% e@ k$ m$ Y% Bc.#* m$ o$ k$ m$ $5.w; 0@ =* 6@ d@ 0@ >* h@ =* ,W ,* h$ *& ,* ^i.,* p$ e@ kW e@ X* d@ m$ ,* u$ /i.)* X* f@ g@ l@ k@ <. l@ (i. ] C=.1!.h>.n{._i.&; `% 9& ^. x$ j- -& (. ). o@ c@ 09.p@ u$ i@ ** :i..& m$ e@ r' 7@ #* j$ 3}.|'.6J /].-%.xT f= c zc S..}i S..[R e*.jZ #H #H &e nc nc nc nc nc *e _f nc nc mc y$.3i.Jt 3R 4i.Ho {r 1^.Vc.h6.B7.-7.X5.)] B- B- B% P> {- O+ 6h.T+ P+ 5i.)] Q& R+ 6i.R+ V+ n}.T+ $) L* Fs ]w ($ U+ U+ R+ Q& of U}.#<.7<.iP 7i.0h.8i.D ^# h m r o ]# g g V$ e ", +"e^ *) 2! $8.9i.*) <{ 9| 9| 2^ 9| *) *) <{ <{ 2^ <{ jP 9| 9| <{ L$ L$ *) R@ J$ <{ BN G= BN k3 T*.R@ p9 0' J$ 0' L$ 0' p9 L$ 0' 0' ]& # V@ X! 0' # # # $ ]& $ $ = K$ + [* k) }, & > . & > ]& $ # $ . . > Q$ . . +|.$ ]& > & Q$ $ |* T@ o! H= [* $ - [* Q$ N$ . - > Q$ ] & ' $= |* ' $ . U@ > ; > ~ I= O$ U@ | 2 ^ | ~ [ W@ ( { ( 2 ~ / ) ( < [ } [ I= $# 1 W@ $# Ev 4 $# d ( d ,# d ( 6 5 } 6 ,# 7 d k e ~# 0i.7 a 0 ~# a i 3] c tA 3] t' n z: L= ,# n )# ]# ]# ,> ~# ,> p! `! !# 2, p % Y$ q 4* xE 2; `$ xE /# ^# t t /# w F= {& $] D F= {& G a7 /U {& C z W) B F= a7 a7 z 1& F= I JW V V c- c- c- c- c- c- c- M c- V =X c- x .)W >z V |# L <_.m,.y .Q oY y .*I I#.BX c~.(U oY #N )Q )Q ^P RT 'Q ^P ^P )Q )Q -X EN $N <#.EN 6B $N mL hT $N .` $N +@.hT $N hT aS CX CX aS MP DS aS %T _U iT CR @Z IV ~Q BR }M CR |C |C |C fK fK fK |C lT ;S 9R 6N 1M uH tH uH tH jy KK tH vG uH KE =H %J [z KE IF IF Uv LE 2h on ~I LE LE %J Oq ;u 6h 8t Se [e Wf }e =i [e }e .8 _4 ;u }e 9t ai.Pd.bi.=i E0 Nd ~b ~b K4 x1 8^ =/ 8^ M3 T/ 0d 4< j{ j{ y{ y{ i] j{ H^ m~ V' ci.N] m~ #~ Z- c. {% {% {% {% c. Z- Z- Z- f. f. /> q# m* /> q# _g.m* l. r# J, Ve.l. di.Ve.Ve.Ve.Ve.2f.2f.Ve.Ng.ei.:= di.pg.Mh.Xe.>d.qg.qg.qg.qg.Lh.>d.>d.Lh.5f.Xe.qg.rg.v7.v7.n$ -* v7.x; n$ Ob.m$ x; ,h.Af.x; Af.x; `e.x; 06.k$ 06.o$ Y% Td.;* o$ Bc.Af./M p$ =* 7@ o$ p$ h$ o$ m$ )h.h$ 5@ Y% o$ ;* a@ m$ >* A= *& g@ f@ i@ p@ r$ y; X* h@ f@ h@ 0@ o$ -& u$ b. *& h@ l@ -& -& f@ F9 p@ >* j@ fi./i.q* gi.u!.Y<.~].g>.:~ -~ hi.h# ii.c_.2@ j- {. B= k@ i@ d@ -& e@ X* o$ ,* {].d@ e@ /M 3@ p$ $5.84.:@ ${ m:.-%.xT qN ji.ki.li.mi.ni.Fg.`g.1i.Eh.NO W` Q .SZ tf GW U@.l@.oi.!%.k..YN .$.5j [R [R -d ~d #H ub rc nc *e nc nc nc nc nc nc nc we +I De ,q >i.'q :w pi.qi.b7.ri.si.m4.B[.B+ w~ B- )] g1.O+ /$ V+ /$ +/ C- _5.ti.6i.R+ Y+ L+ X; X2 O+ rN g1./- R+ @@ R+ /- o}.Oe ui..N iP vi.wi.yf.^# D ^# Y$ o g g o a j 2* ", +"*[ )~ 98.xi.98.*) *) z~ <{ *) 2! <{ <{ I/.)~ *) *) <{ <{ <{ R@ J$ =$.J$ ]^ l) <{ R@ I/ L$ R@ [n BN 9| 0' 0' I/ G= ]& k3 0' L$ L$ + X! V@ Dv + # # # = # # * . # ]& # Q$ > . . # . |* # o! . > $ . ; . ' H= ; > * > 9S ' Gc |* ^& Q$ S$ A; N$ & U@ S$ > $ > # > ; R$ U$ Q$ ^& N$ ; > . & & | %= J) ; h) ; | [ <& ~ [ Z! { } *# ~ Z! : : X@ ## } $# 5 *# 6 d ; { V~ ,# J= `@ ^ [ 3] } } ( } b } ,# 7 :& a x0 7 e 6! V$ 0 0 a 6 ,# k A~ k a e k e a e n }& ]# s> r 1; n ,> K/. % p D 1; cj ,> 4* 4* 4* yi.b' ^# C :# {& 1Z w C /# {& G b' )> z /U G :# B z F= /U n! a7 a7 '&.K B $T T^ n! T^ 1& .@..@.M c- c- M c- M c- M .@.c- V 8* E$ i5 :#.SO aV QT AX aV *I A: BX +-.U;.BX ^P )Q ^P ^P RT )Q ^P ^P +Z ^P RT EN sZ NW RT EN mL $N hT AS hT AS AS AS AS AS AS cV hT aS aS 3Z |Y `X dS |Y qY =S #Z ~Q {Q fK &@.G` 6N fK nP 6N fK |C Yz 9J |C 7N 9R jy jy uH tH vG tH vG jy KK =H Yf.IF uH uM vH hs hs IF wH *A wH LE Oq %J Uv %J %J %J zH }e =i on [e [e =v }e :4 [e la 13 [e ai.ai.Qq Yf J4 [| J4 [| [| x1 =/ K4 Oc >2 S: j{ y{ j{ j{ y{ y{ j{ y{ i] i{ ]] m~ !! ]] Z- Z- Z- {% c. e. {% {% {% {% Z- g. q# q# f. i. q# i. q# m. r# ]i.zi.l. t. Ai.q* Ve.Ve.Ai.q* 2f.Ve.q* )e.Bi.2f.Lh.qg.-h.qg.gb.Lh.>d.Lh.Lh.qg.Lh.qg.Pg.v7.Mh.Ze.v7.n$ v7.0@ 0@ e@ `e.0@ Nh.]e.Pb.hi.,h.Af.`e.Y% Y% x; -b.k$ x; Ph.o$ Q9 m$ hb.Af.o$ =* #* w; e@ m$ c@ ,h.d@ o$ =* n$ m$ d@ e@ p@ :; u$ ,W Y% ;* A= ,* 0@ m$ A= z= j@ >* >* 0@ +& cK W* f@ r$ p@ u$ D= ~* ~* b. x$ h@ o@ ~> q* Ci.:^.P].Di.s#.&%.1!.a@ k$ $5.P].0@ -& t@ q@ k@ e@ ^0.j$ -O 8& r@ %& l$ p@ t$ .& d@ p@ 6@ R* K' }@ %p !..RS AU Ei.Fi.Gi.lh. h.(f.`g.+.l+.]@.9#.Q$.!%.Ac #e.MI .$.e*.[R #H #H y>.y>.xe *e _f Hi.nc T=.nc rc =d uc Oj Ii.$O Cd Ho Ji.xt y1.gg.b7.^6./6./6.w~ B% w~ `] `U pM S& Q+ Y+ G% T+ L+ `2.Ig.`U vC V+ +/ 5i.Ki.Li.Mi.A` vC be P+ a> ^l iP {}.Kd Ni.]7.]7.Oi.-h.D p h p ~# g c n 7 9- 9- ", +")~ Pi.^, $8.2! 5' 2! *) 9| 9| 9| 9| 9| <{ <{ *) <{ <{ ;b J$ 9| <{ =$.*) 2^ BN 8S J$ R@ ]^ BN 0' G= ]^ I/ 0' 0' G= + [n R@ J$ ]& ]& # # ]& Dv # # $ 0' + !, # k) # $ # # + & & = |* S$ Q$ = T@ > [* # > & . $ & ' S$ > ] S$ k) U@ - ' U$ U$ . & A; * [* U@ = S$ X@ R$ U@ & 2) ) N$ =' ~ U@ .# 2 2 2 N$ 7- J) H= ~ X@ X@ X@ ) ( 8- 2 { ) 8- Y@ 5 N$ +# /& } U$ ~ 1 2 : } 5 $# [ 5 Y@ 7 1 3* 7 9 5 ( N' ,# 8 q> Y> d 4 ,# 8 ~# 6! k 6 b a' c z: L= ~# |& 0 c ~# ~# }& p z: _# 2, 2, Y$ s> ~# h h p Y$ h `$ G#./# @= ^# _# 1Z G#.:# :# ,> C G F= F= F= F= C E F= a7 a7 a7 a7 F= C` A$.'&.$S O@ $T 8* _}.'&.8* M o^ .@. V .@.c- H$ c- c- V V 0S Qi.Ri.>z SO Ri.QT AX iU A: 3; L *I oY oY oY BX qF #N _M ^P #N #N ^P `I )Q RT #N )Q -X -X 9$.lP bV -X AS AS $N $N hT mL AS AS $N AS AS hT hT cQ ST cQ _U &S ST dS ~Q #Z dS =S 7N 5N =S fK fK fK nP 0R |C Zz lT nP fK oL tH tH tH vG uH tH tH vG KK 5D 5D LE LE Qe KE wH IF IF 2h wH Iw Uv 9C qL 6h 6h wH 9C wH Oq ms [e }e [e [e }e [e Wf }e 13 13 Te E0 Wf u9 >2 8^ 8^ 8^ 8^ 8^ 6^ 8^ 8^ M3 v/ y{ y{ %^ H^ H^ y{ j{ j{ y{ y{ A{ m~ !! m~ {% c. {% c. c. Z- h. {% c. e. {% i. i. Z- g& i. q# /> f. m. k. f. [c.x# Si.[c.Ve.A= Ve.2f.Ve.Ve.2f.2f.2f.di.di.Ti.Lh.;h.Mh.qg.Lh.qg.qg.qg.Mh.Lh.Ui.Pg.n$ qg.qg.Vi.Ob.v7.v7.v7.,h.06.x; Mh.(i.Sg.x; k$ ,h.p$ k$ =* #* ,h.Af. f.06.Af.q$ h@ o$ #* .& =* '* h$ Y% 0@ q$ x; #* &9.p$ k$ >* 0@ o$ o$ =* k@ >* ,* g@ p@ m$ u$ X* a@ e@ p@ p@ :; >* X* cK :; i@ )* h@ j@ t$ t$ j- l@ k@ l@ r$ )* q. Wi.Xi.-|.R:.*~.N+.R:.,h.A= -|.-& E9 {* -& x@ 55.F9 8@ 93.e@ v0 j@ m$ '* kW p@ j@ h$ .& .& 7@ P* J- 2'.^ .N} Yi.Zi.kh.`i. j.mZ `g.c !%.Ac YN tN e*.$c [R $c -d ub O;.%e =d [* ]& ]& T@ V@ + Q$ $ S$ & + + + + = > S$ & + }* $ = ; > N$ H= | & & | & S$ U@ Z@ R$ ; ] X@ Q$ & 2 U$ U@ ; ~ N$ ; ~ N$ Z! N$ { ] U@ W@ ~ 4 < /& ~ 4 | U@ g{.4 d N$ ^ $# <& ~ 8- < V~ } J= 6 ,# 4 6 D, 6- 1 } a d 5 [ $# 3* 7 7 ,# $# 0 k 7 7 a {# a ~# s> e {# {# 6! {# ]c 0 ~# 0 n r n s> h `! -) s> 0- m m m 2, $] l n^ t b' $] G#./# b' D w 2; G /U /# :# /# F= <, a7 F= z z z a7 /U w /U a7 a7 a7 a7 '&.JW JW HV a7 c- c- c- c- c- JW V c- KW V 0S 0S V )W 5 .i5 iI iU A: A: L J A: 3; I#.*I 3d yS BX #N ^P #N )Q )Q #N #N ^P ^P ^P RT EN -X <#.+Z mL $N mL $N AS hT AS AS hT AS hT ZX aS .` 3Z cQ FN %S sM DS sM HN dS dS dS {Q |C CR |C :C |C fK fK 6N 6N 6N -S 6N -S FJ tH tH tH tH uH tH tH uM tH qL 5D 2h IF LE hs hs Qe LE wH %J IF ~I IF Se *A wH on ~I ms on [e 13 Wf }e }e 13 [e [e kj 13 Xf ]} [e *j.=/ T2 _| t/ K4 [c 8^ 8^ =/ M3 [c 1{ 1{ s^ j{ y{ H^ j{ H^ j{ i] !! w> q) z{ {% {% c. c. {% {% {% Z- ]> Z- c. Z- q# Z- i. i. Z- r# r# r# ]i.f. =j.2f._% @i.q* 2f.2f.2f.Ve.-j.Ve.dh.;j.di.di.!e.qg.=* Sg.Lh.qg.qg.qg.Lh.qg.Lh.Mh.#i.Ob.Lh.Ze.v7.=* v7.v7.n$ f.#i.m$ k$ `e.Nh. f.`e.aa.Af..& x; -* o$ ,h.m$ k$ k$ m$ .& m$ x; =* =* ,* h$ =* o$ 8f.g@ .& ** d@ o$ ^0.'* kW o$ j@ p@ :; c@ >* && e@ =* X* >* p$ W* f@ X* =* >* r$ >* >j.X* p@ l@ b. {* o@ i@ ,j.r$ t$ f@ 8! 'j.N].R:.^<.Y,.)j.g>.B2.>* !j.r@ Ug.x$ ~. s@ zi.(. Pg.X<.b@ ]0.~* ~* g@ >j.A= p@ 0@ o$ a@ j$ H3.P+.l` Q&.~j.{j.]j.^j./j.(j.mZ h.c ,c ~%.~%.kH [R $c $c $c -d nc nc =d =d P+ a> V& U& Q+ 6i./- o}.!}.s8.s8.<|.k7.G<.V0.iP 39.^# t 1, o ~# r c X$ o a } ", +"$8.9| e^ |1 |1 9| <{ 9| 9| 9| <{ 9| 9| <{ 9| <{ 2^ <{ <{ |j.9| <{ $8.jP R@ ]^ R@ J$ l) R@ ]^ .( I/ I/ ]& I/ 0' I/ R@ L$ I/ 0' L$ I/ 0' + K$ # 0' 0' # # 1) p9 + . $ 0' % k) # $ . = + V@ - [* o! & ' . + > Q$ Q$ - ; > $ 2) - = S$ S$ > = ; N$ P$ U$ R$ N$ o! ; - . * %= > ; U$ U$ X@ N$ ~ xS Q$ ] | X@ =' > - Q$ [ X@ ; X@ ~ { 4 { | 2 < ( X@ X@ [ 7- 1 < 5 /& ## 7 a J] < j $# 8 D, B; a' ,# d 6 <& 7 ,# 8 0 k 0 3] Y> } 9 e q> ,# ~# 6! {# 0 j c Vj {# h 0 0- ]# L= z: p h h p n^ 4* % b' n p q 0- ]# b' b' D `$ p 4* t `$ `$ )> 2; /# E #] z /U z F= z {& z /U z z a7 /U a7 B '&.1& 1& AR /U 1& M V c- M KW 1& c- c- M V c- .@.>z M V 1& :#.SO oY Q B$.*I *I *I *I #N 3d (U ^P ^P ^P ^P ^P ^P #N #N #N ^P RT _M EN jU H&.6B mL mL $N AS $N -I AS hT hT AS $N BS AS AS CX BS FN cQ &S FN DS ed.tZ dK nO 'O IN dS Zz fK Zz Zz |C fK 6N EJ |C |C }M QP $J uH KK 1M tH ;E 5D tH [z 2h [z hs (P wH 2h hs Re !I qL Oq IF Oq Re Oq LE %J Jc on Oq Wf Wf Oq }e }e }e 13 13 }e [e 9t :c d.Lh.Lh.Lh.Pg.qg.5f.`e.v7.;h.Lh.n$ Ob.v7.n$ x; e@ o$ `e.6j.x; hi.x; Af.,h.k$ wS -* .& Y% o$ =* o$ d@ ,h.k$ #* q$ m$ ,* o$ m$ Y% -* X* h$ o$ Y% d@ k$ )* && ,* e@ d@ >* >* d@ 0@ *& j@ ~* l@ && =* ^* t$ f@ h@ 7j.r$ :; :; 8j.u@ o@ p@ <. u$ ,j.-& u@ -& 9j.0j.(/.^<.^<.n{.&%.Q_.[@ +] j$ && -O y= -& -& u$ ~* +& $* %& +& ~* A= l$ ,~.:; e@ j@ y; 7@ 62.w6.X-.]G qN aj.bj.cj.dj.ej.fj.mZ _X c Ac ~%.~%.c*..$.e*.$c yh #H rc nc y>.rc _f T=.*e nc nc ue vV T=.kc y$.gj.su Ho Ho hj.B,.ij. i.B7.c7.j6.X5.jj.4h.X5.-7.T! Q+ O+ G% G% G% B[.O6./$ o}.#) g1.Q+ R+ L+ Q& U+ a> vC pM S+ vC vC {- G<.of U}.{}.b[.o}.{e.5* 1; 1, h a h 9- $# j a 6 ", +"98.98.^, z~ |1 *) 9| w9.9| w9.9| 9| 9| <{ 9| <{ J$ w9.<{ I/.9| J$ <{ <{ 9| ]^ BN <{ *) J$ R@ R@ I/ 0' I/ I/ I/ I/ I/ I/ 0' 0' ]& ]& I/ ]& # # # [n = # =[ #S + * $ = # $ [* =' k) # + # $ V@ * $ T@ . $ # $= # . > # S$ Q$ # & - $ |* > Q$ > U$ $ [* R$ X@ > & - ; Q$ ~ X@ N$ | ) ; ~;.%= { %= ; | X@ N$ & N$ R$ U$ ; [ ## [ d } 5 [ } F:.{ H= 2 4 } d J= } [ } / : d $# 9 d q> } 5 d 6 7 0 5 /& k b q> 3* 6 a 0 {# 0 {# {# 0 e 9 b ,# e e Y0.L= }& |& ;= n ~# s> Y$ r s> Y$ s> k0.v ,> n^ s> ^# L= ,> b' m p! D `$ u t p t #] G F= t F= w :# {& W) G z 1; z z '&.'&.a7 z kj.w n! #= P%.T^ c- c- c- c- ;O V 8* c- c- c- c- JW AX V c- 5 .d{ z .aV oY *I B$.B$.B$.*I *I qF G$ A: yS #N #N #N )Q #N #N #N #N 3d )Q RT lP H&.lP bV $N $N mL $N hT mL mL AS AS AS CX hT ~&.CX hT cQ 1Y cQ _U iT ST =S BR dQ CR -R |C ~Q 5N fK Zz Yz |C Zz Zz 6N |M |C fK >X 7a.vG uH tH KK uH uH vG tH TL IF sI hs hs hs 2h Li wH 2h Se %J wH Oq Re +: Se }e Se Se 13 F3 13 F3 13 }e }e }e }e }e 8d :9 og [e bi.D4 [| E0 E0 t/ 6^ 6^ s^ M3 =/ s^ y{ j{ y{ 1{ v/ j{ j{ H^ j{ m~ c. k] !! V' B{ Z- c. {% c. d. d. c. Z- Z- {% q# q# i. i. i. q# i. g. lj.]i.t# Ve.2f._% di.Ai.dh.Ve.uh.2f.2f.mj.)e.Ng.dh.nj.zf.>d.(i.zf.Lh.Lh.Mh.Lh.qg.Lh.qg.>d.Ze.e@ oj.qg.v7.v7.n$ n$ k$ p$ m$ v7.b@ hi.v7.x; m$ o$ 6j.b@ 06.k$ 06.06.,h.#i.m$ =* o$ ^0.Y% q$ 0@ =* ,h..& =* ,W A= h@ i@ k@ ,* p@ =* A= l@ )* ,W j@ l@ =* p@ -& A= a. =* j@ p@ m@ r$ F9 @& i@ k@ pj.t$ r$ j@ h@ p@ p@ xi t$ u@ -& S= qj.T>.(/.R:.4#.4#.-|.,~.L- ** h@ %9.y= i@ c@ i@ r' ** _].8@ >* h$ `% p[.,~.9@ +] h$ 0@ y= Y% R:.`,.-Y ]J ^i rj.1h.Vh.Gi.;n ;i.sj.;i.@H jY o@.o@.GW 2x $$.tj.o%.>c k..!%.x&.~%.5j [R [R $c yh #H nc nc #H rc nc =d nc *e nc :f Zs mc ,e we uj.vj.N}.Ho wj.xj.yj.zj.b7.Zc.Aj.Bj.Cj.Dj.ge.b7.3h.S& Ej.k= F% S+ Q& u2.DL O+ Q+ L+ /- /- S+ P+ R+ /- o}.!}.n}./- S+ vC n}.a> iP <|.Y3.!}.,).^# q Y$ *= j c o )# e V- g ", +"9| xi.e^ 2! xi.9| |1 w9.9| 9| 9| <{ 9| <{ <{ <{ <{ <{ J$ <{ <{ <{ l) ;b <{ <{ 2^ <{ ;b <{ ]^ R@ G= I/ I/ I/ BN #S I/ ]^ L$ 0' ]& G= I/ 0' + # # 0' ]& # + ]& 0' K$ + k) . V@ 2) k) = + ]& + $ # V@ 0' 0' $= ]& 0' |* # = S$ + Q$ & . 5! > Q$ ; - N$ X! ; > > R$ P$ & X! > R$ > ; R$ ] 05 ~ U$ | ~;.U@ ; | ] { 2 N$ `@ | N$ 4 xS ~ 2 ) 1 <& { 2 /& ~ W@ 2 N$ [ 2 /& } | 2 4 7 6 <& 4 1 Y> 7 k x0 ( ># q> 6 /& ,# 6 e ~# ,# i ># 6! 2* 3] ,# ( a k 6 i !# ~# o Vj E, E, a n _# h -) }& s> 0- ]# z: h 4* G#. % 4* 1; % p ^# p Z$ m % Z$ s> b' t 4* #] t G w :# E |Z /U z z G z a7 I K 1& z a7 n! A 1& Fj. Z c- V V V =X c- AR O@ =X V z Z.. V B).4>.0S i5 Z..B$.:#.:#.B$.SO A: A: oY 3d BX (U y+.^P )Q ^P )Q #N #N #N ^P ^P RT !Q EN '*.bV $N $N mL mL AS $N mL AS AS $N AS hT aS .` hT _U DX &S BS =S cQ sM GN DS [M IV fK oO ~Q Zz Yz Yz fK eK Zz Zz Gj.fK fK nP Hj.jy vG vG jy vG vG jy jy KK KE KE IF Qe y4 IF wH Uv 0J on B0 LE on Re Oq LE Oq Se on 13 [e /c Cb 13 F3 13 [e 13 13 }e v9 .8 13 F0 1e ~b >2 E0 t/ 6^ 8^ %^ 8^ M3 %^ j{ {> 1{ y{ y{ @~ y{ j{ H^ y{ V' e. M) !! #~ {% c. c. c. e. {% e. e. d. _g.i. q# d& q# q# i. q# q# /> ]i.]i.2f.Ai.Ij.Jj.Ai.2f.Ve.-j.2f.Ai.di.2f.Ng.Qh.zi.nH Sg.>d.(i.zf.Lh.Mh.Lh.Lh.Sg.Lh.#& Lh.Ob.Mh.#i.v7.v7.Ob.v7.x; e@ p$ v7.o$ =* =* Y% aa.`e.=* Af.x; k$ o$ m$ o$ x; 6j.o$ m$ =* && X* A= :; =* Y% ,W i@ e@ =* nH =* >* h$ h@ d@ j- ii.j@ u$ W* *& ,* m@ j- j@ m@ -O f@ r$ A= r$ u$ F9 l@ kW ~* k@ 7j.b. t$ E7 p@ F9 q@ ~* w' Kj.Lj.Mj.n{.}*. < _.Nj.&6.n{.n$ 94.[@ h@ o@ t@ q$ 0q <: >* +& )* k@ sg.6@ y= X* ,W &* 2@ A4.93.p{.C%.xT Oj.Pj.Qj.Rj.Gi.Sj.sj.W` W` [ .SZ m@.>+.Nj p@.^@.< .>c $n tb ~%.H(.S...$.$c $c $c yh #H rc nc rc *e nc we {l we nc :f we Tj.lc c Uj.yd.wt Cd &x Vj.j].Wj.Xj.K6.ge.Aj.h3 I7.ge.Yj.Ao C+ `U E% Q+ G% R+ ^l /$ Q+ G% T+ T+ T+ P+ a> S+ S+ a> vC a> N+ /- g1.n}.a> h1.<|.h1.o}.xc.D -) n e g r c f o a 2* ", +"q, ah.|1 e^ *) 9| |1 |1 9| 9| 9| <{ *) 9| 9| 9| <{ ], ]^ <{ <{ 9| J$ I/.L$ R@ 2^ 2^ I/.L$ ]^ R@ ], I/ #S I/ L$ #S #S G= 0' 0' 5_ I/ 0' 0' 0' Z, # + p9 Z, # ]& Z, + # = Q$ > # # $ $ ' . = . Q$ =' $ > Q$ Z, V@ |* = . # Q$ N$ $= > $ = > U$ A; X! > - $ & U$ ; P$ & Z3 | > | > > & ~ & N$ ] Z! ] { 2 2 Z! | X@ & ~ { ~ 2 2 ~ ) 2 ~ ~ S$ [ { 7- { { /& 4 [ ~ ## 2 : 7- 6- k 6- => ,# ## 1 ## 1 } 7 7 a 0 a 9 7 6! 6! a 7 d a 9 ~# ,# 6! ~# {# 7 n Q{ 0- Q{ [& o -) |& n ~# ;= r h 0n 2, Y$ Y$ 1; 4* 4* 2, D^ xE /# V| :# ^# 4* 4* F= 2; w w C #] G #.1; :# w B z F= '&.I 1& F= a7 a7 I z JW T^ T^ c- HV HV c- V c- Z V =X V 8* 0S v@.o^ z .I{.Z..SO x .QT aV SO A: L A: aV BX yS (U zS ^P ^P ^P )Q ^P ^P )Q )Q ^P #N ^P qH lP <#.lP mL 6B mL AS $N :M HQ rH AS $N hT AS Zj.HQ cQ :M _U FN -I QL sM dK lI dK ~Q IN Yz HN [M Zz dy |C fK -S 7N eK `j.0R |C oL vG jy uH vG uH vG tH tH ;E @A 2h 2h KE vG hs 2h Qe hs IF on Yf. k.Se Se on on on on Se }e /c [e [e 13 [e }e 13 }e 13 F3 _c .k.9t +0 Eb s/ 6^ :5 =/ 8^ 8^ S{ 8^ 6^ U' ^= {> 1{ {> {> i{ y{ 1{ j{ q) e. ]> !! !! #~ {% c. Z- c. c. e. c. c. c. c. e. q# f. c. g& f. lj.3j.g. t# i. [c.[c.r# *h.=j.2f.Ve.=j.Ai.Ve.q* Ai.Ve.Bi.mj.mj.Mh.(i.Mh.Mh.Ti.Mh.Nh.5j.b@ Ti.Pg.v7.Nh.#i.hi.A= b@ x; v7.#i.k$ m$ =* =* m$ n$ Af.x; k$ x; d@ 0@ 06.,* =* p@ =* ,* #* =* o$ d@ m$ #& Af.m$ +k.A= p@ g@ sg.A= p@ ,* Y% 0@ f@ -O :; t$ ~> Y* :; W* u$ u$ t$ p@ ,j.l@ k@ i@ h@ -& k@ t$ F9 l@ /i.~> t$ D= j- !* t$ j- uh.@k.E* 8=.vg.z* `: :+ P).#k.85.6@ H3.w6.j@ -O =* h$ o$ -|.2@ $& r' w; j@ =* e@ }Z wS ^0.9@ b$ g).e= g+.$k.CP %k.&k.*k.=k.-k.@H d @H [ ..s >+.tu tu /F 9#.o%.o%.!%.Ac ~%.YN _N 3&.MI $c e*.yh #H ub nc =d nc *e Zs ve nc mc nc nc {d rc ye ;k.>k.3R ,q &x ,k.'k.)k.!k.si.j6.~k.{k.Yj.N6.]k.^k./k.bK /$ P> A:./- V+ Q+ G% G% R+ /$ P+ T+ V+ T+ Fc S+ R+ T+ R+ P+ (k.iP Zi iP {}.X3._k.`f.C p % e h [& o Y$ 7 X$ a ", +"q, 2! xi.e^ e^ 98.xi.z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ R@ 2^ <{ <{ J$ <{ ;b <{ <{ *) J$ <{ J$ R@ R@ R@ R@ R@ L$ 0' 0' L$ BN I/ 5_ L$ 0' 0' 0' 0' Z, # 0' ]& Dv + ]& + # I/ + }, % $ {c o! # # $ + S$ |* . > V@ # . > S$ . > & > V@ ]& > Q$ . |* > Q$ Gc U@ %= N$ N$ . | P$ ] - > P$ ; %= & T- & . 2 | ] =' & ) R$ P$ ~ ] P$ [ J) ( H= X@ ~ { 2 { { 1 { N$ ^ 2 [ 6 } { $# 1 ( 6 d d , 6 a [ k ( -# ( d 6 7 3* =# 5 == 6 {# < k 0 6! } 0 6! 7 ~# ~# !# 0- 0 c n L= t' h -) -) h n^ L= Y$ V| n^ }& p 1; cj 1; xE -) ,! 1; y t @= @= 4* p /U w $S 2; F= F= {& B #] w G z B a7 a7 1& $T a7 '&. Z A$.8* 8* AR T^ JW c- c- c- .@.M M M c- c- c- 0S 3# =K V 0S Q iU *I L A: A: *I *I aV iU zS p*.qF 3d ^P ^P ^P #N _M ^P #N )Q )Q ^P )Q bV !Q _M $N mL 6B mL AS AS $N HK AS mL :M FN J J HQ BS FN _U HK d.Mh.Mh.Lh.#i.Lh.Lh.Mh.Lh.v7.n$ 5j.`f. & A= hi.n$ 0@ ,h.)* e@ Af.p$ ,h.=* p$ 0@ =* x; z= * >* sg.e@ e@ i@ >* h@ p@ n$ >* p@ i@ e@ ;* && =* m$ +& t$ j@ j@ ,j.j@ Z* kW u$ ,W a. m@ t$ m@ $i.u$ -& E9 l@ n@ ~* l@ ;& ~* o@ ]* ~> ;& {* [k.}k.h/.3T &P V# #$ #$ wg.<: Ga.6@ 62.u,.=* 0@ ** 5@ t$ 5@ l$ 5@ P{ 2@ /M q$ i$ V1.l$ Z<.b$ ,~.n, Z#.^ ..Q dY |k.1k.2k.3k.X+.@H q..=f o@._J l+.U@.$$.^@.4$.!%.Ac tb YN _N _N YN .$.$(.[R 3$.#H #H #H =d wd lc *e we nc :f *e lc 7<.~}.n}.;[.Oe g0.U}.D8.^# p p `$ ~# r p X$ o o &# ", +"*[ 2! 98.*) e^ &[ q, 2! <{ *) 9| *) *) 9| 9| 9| <{ <{ 2^ <{ I/.I/.J$ 2^ <{ <{ <{ <{ J$ jP l) R@ V! 2^ L$ BN R@ ]& 0' I/ R@ L$ ;b 0' I/ 0' I/ # # 5_ 0' = ]& ]& 5_ $ # = # 1* V@ & $ > 2) }, $ S$ |* = $ - . ' R- ' $ . > U@ > + . . $= $ # $= X! > |* |* $ - H= U@ | ] U$ ; & 2 'W J) { ] | ; - 2 %= X@ J) S$ { 2 ~ | ~ /& X@ Z! | { [ 1 ( ( } g{.N$ $# } 5 d ~ -> 4 } ~ B; { 2 ,# &# /& a /& b d ## 3* &# < 7 a d J] ]c ~# 0 e tA i ~# ># a 0 k z: t' ~# [& K/ |& |& ,> h s> r ]# r r h Vj h ,! V| 2, 1; #| % ^# #| p ^# /# t /# p! 2; $] {& /# /U G /U #.F= {& {& z {& z #] z z a7 z a7 z 1& U!.~& z V O@ Z M V c- >z c- Z c- M V 0S AR >z 5 .QT Q Q Oz d{ SO Z..aV SO aV y+..Z (U XX )Q #N ^P RT +Z ^P ^P )Q ^P )Q +Z @N tw )Q EN mL mL 6B $N mL AS :M mL hT AS HQ FN BS AS _U ST cQ FN GN ST #Z HN iT HN ~Q 'O |h &N Zz fK |C Zz |C 6N Yz EJ IN *N RL !O uH jy jy vG ~9 jy )I vG vG hs 2h 2h JK 2h IF 2h Iw 2h 2h Se Yf.(9 Re Se F3 Se on on +: 13 [e F3 }e }e [e }e [e [e [e v9 6^ J4 )b w9 8^ t/ G0 1e >2 8^ 6^ =/ 6^ L4 s^ @~ 1{ a; v' 1{ y{ 1{ !! y{ i] 1{ ak.6. i* c. c. c. e. {% e. e. Z- c. e. c. q# q# d. '' g. 3j.t# r# lj.&h.m. t# uh.bk.ck.dk.Ai.Ai.-j.-j.-j.Ai.2f.-j.Ai.mj.(i.wS zf.Mh.Lh.Mh.d@ wS Lh.hi.Lh.Lh.b@ >* k@ d@ e@ n$ n$ m$ m$ >* ,h.v7.p$ ,h.hi.:; d@ e@ sg.u$ h@ 0@ m$ m$ h@ ,* m$ U* %& m$ ,* :; %& e@ z= i@ wS =* :; p@ p$ :; d@ &p X* j@ j@ ek.l@ m@ %& j@ j@ t$ h@ cK m@ ~* s@ t$ t$ o@ ~> p@ !* ~* :. -& ~* t@ cK ~> 0& o@ fk.gk.A%.m$.u,.$; M .A%._/._].1!._/.Di.A%.hk.[@ o$ j@ e@ 99.H3.[@ W/.-|.,~.:i.94.S9 2'.d$ |@ #5.^].h+.IY 8P ik.jk.kk.lk.mk._ .Y+.jY 4G ]#.l+.p@.$$.~#.~#.< .o%.Ac k.._N _N sf S..;c [R R;.+l $c -d jZ =d f*.oc . (& = & [* . $= S$ Z, > & # > & ' - > S$ > - . Q$ U$ Q$ H= U$ S$ Q$ X@ 2 | & H= Z@ H= Z! | 2 | R$ N$ R$ ] 2 ~ | ~ ~ 2 | *# 2 | | < 7- 2 ( ( ( B; 5 4 | 2 ~ $# 6 $# 2 7 : x0 V~ / d 5 i 3* ,# 6 $# < 2 } J] 6! e 0 6! k 0 q> 7 uk.X0.a ~# ~# 0 k z: K/ 3] ~# L= |& n c c |& s> Y$ -) r h |& 2, r `$ ,> 4* 4* #| b' m 1; ,! #] 2; m 2; 2; w F= #] $S N 2; G F= 2; z E z a7 z O 3d qF (U BX ^P ^P #N )Q )Q )Q #N )Q ^P )Q @N `I _M +Z -X $N $N 6B $N $N :M 6B AS hT AS {z $N jU :M cQ FN cQ MP iT sM &S GN iT =S mP Zz 8R ~Q dy Yz Yz Zz Yz dy Yz RL Yz *H 'I jy ~9 vG vG 1M ~9 >K vG tH qO ;1 hs KE x4 2h 2h Qe %J IF Re Jc << Re +: on Se F3 13 F3 13 13 13 13 F3 13 [e [e 13 ka 13 S{ R: S{ @0 _c +8 D4 I4 u/ 6^ 8^ h{ I! I! s^ 1{ y{ @~ ^= 1{ m~ a; a; @~ a; {> 1{ )! A{ 8! c. e. e. e. c. c. e. c. 8! e. vk.g. '' o# i. w' e& wk.w' :k.bk.xk.2f.Ij.m. Ai.2f.-j.Ai.2f.2f.2f.Ai.2f.Ai.A= ;j.Mh.d@ yk.hi.qg.d@ Lh.wS wS #i.Lh.p$ ,* p$ i@ V* =* e@ =* >* ~h.=* >* b@ #i.Nh.=* d@ .& h@ =* i@ m$ o$ sg.c@ +& 0@ .& b. u$ >* ,W &p u$ t$ t$ A= p$ o@ n@ j@ X* -& '* m$ o@ m@ F9 u$ b. a. p@ r$ ~> >* l@ {* ~* >j.h@ F9 ~* o@ zk.m@ ~* -& -& s@ o@ v$ {* l@ q@ 1. UV d+.|!.:^.7= H> Ak.x^.3}.99.Bk.1!.<: 6@ l/.Q9 ~* &9.e$ {).e].I9.i$ 4'.B2.2@ |@ W% K- 2'.m:.{].^ .7W QS Ck.Dk.Ek.Fk.Gk.Vk SZ P}.;r l+.2x /F /F @$.~#.Q$.>c !%.8E _N _N _N YN ;c [R 5j T$.yh -d -d -d :f oc nc *e nc ve $e :f we >d /w ve TD Hk.4d.7T [..Ik.Le.N'.Jk.Kk.3h.B7.c7.j6.() `U B% D+ F) p9.K+ E% G% Y+ vC E% V+ O+ a> P+ S+ Q+ L+ ($ T+ R+ Q+ P+ !i.Lk.;,.Mk.o}.^l #f ,[.v* p C; X$ X$ h j Q{ r d d } ", +"*[ z~ xi.xi.9i.*) w9.9| [) z~ z~ *) *) 9| *) 2! 9| <{ <{ <{ 9| <{ 9| J$ <{ <{ <{ R@ 2^ J$ <{ I/.G= J$ <{ G= I/ R@ ]& I/ I/ I/ I/ I/ L$ BN 0' = 0' # K$ p9 p9 5_ * Z, J$ # = = Q$ [* ]& # R@ $ > # + # S$ $ k) $= & . + + + ' $= # - ' U@ . = & U@ S$ U@ Q$ ' Q$ P$ ~ X@ %= | ] U@ N$ ] ] N$ S$ X@ N$ | ; & | 7- S$ X@ Z! ) ] .# | I= ] ~ [ 2 & 4 d { /& : { 7- ( /& ## 9 Z@ { < ## ># Y> 6 d ,# b ># )1.6 -# 6 d 7 d ,# 9 6! tA q> 0 x0 i k 3] 6! ,# ,# 0 a 0 0 L= ~# ~# ]# Y$ n^ r [& s> -) }& % `$ ,> ]# r ^# 1; #| b' 4* b' 4* @= b' #] t /# 1Z F= /# {& m m ^# ^# :# B /# F= G F= z /U C` a7 a7 /U a7 a7 ).@ .P%.a7 O@ 8* O@ >z V c- M c- V V c- V V 5 ..@.(#.y .L AX Z..A: U iU iU A: *I r! ^P BX (U oY )Q ^P #N ^P )Q ^P #N #N ^P )Q )Q EN mL ^P 7s $N $N $N mL $N AS $N hT AS $N J AS AS AS aS _U %S 3Z .J J cQ ~Q sM HN HN Yz 'O ~Q cy Zz Zz eK 6N 5N Yz oL Zz Yz eK ~9 >b uH tH jy ~9 pL tH jy jy ;1 ;1 ;1 hs ;1 hs 2h Li KE Li Se +: F3 B0 +: W^ +: 13 F3 }e +: 13 +: F3 F3 13 F3 .8 F0 }e S{ 6^ t/ v9 [| S{ 6^ I! 6^ 8^ , f' 8^ 6^ I! y{ 7) 1{ g' n# ^= a; ^= ^= a; ^= 7) i* !! i* e. e. c. e. w' e. c. {% c. c. c. g. g. q# '' g. g. :k./> k. ]i.Nk.Ai.2f.uh.Ok.Ai.-j.Ai.Ve.Ai.-j.Qh.Ai.+k.mj.$z Sg.Lh.nH wS Sg.+k.Mh.Mh.wS p$ wS Pk.m$ e@ Pk.b@ p$ nH #& h@ x; d@ m$ e@ Sg.h@ p$ =* =* p@ ,h.o$ 0@ c@ ,* >* p@ =* m$ d@ i@ +& z= >* u$ $i.j@ i@ =* F9 l@ j@ f@ f@ -& -& p@ j@ W* F9 m@ o@ t$ -& m@ -& F9 t$ s$ m@ x$ -& t$ s$ W* ^* l@ ~> o@ -& ~> O- m@ s@ Y* t@ 4,.Qk.N].`(.=>.e@.{<.p{.1- U[.R:.F3.[7.>* 3@ 1@ .& Rk.(; GY FZ 8@ L- _{.8@ 4@ 2@ 9@ y] 3}.84.)..IY pN ]/ Sk.Tk.Ek.Uk.Vk.MC X+.4G l+._d p@.=F /F 4$.< .t:.7f $n k..8E _N YN sf tN n+.[R $c yh Wk.~=.-d wd :f =d nc nc $e Zs _f ve gc Bf vd 0b Xk.(a.4b.Yk.Zk.Ad.Bd.`k. l.}8.-7.c7.N6.hg.-7.N6.`] i3 94 G% /$ O+ E% pM n}.O+ S+ a> vC S+ R+ Y+ F% Z+ P+ E% vC $:..0..l.0<.n}.~}.n}.v_./] ^# o c h 0 e a c e $# o ", +"z~ z~ |1 $8.*) e^ )~ 9| |1 <{ 9| <{ 9| *) 9| 9| <{ *) <{ 9| 9| <{ <{ <{ 2^ <{ I/.J$ 2^ 2^ jP 8S 9| 9| ;b I/ I/ R@ 2^ 0' 0' I/ G= #S 0' J$ I/ 0' K$ 1) + + Z, 5_ # # + # # . k) + ]& . + + . $ # $= # . # $= $ !, % $= S$ [* V@ > U@ . . & U@ U@ S$ (& > S$ ]& & P$ ; & N$ N$ ; - N$ U@ N$ S$ , 4 .# R$ | 2 Z! U$ X@ J) ~ ; ~ ; W@ P$ ; ~ { ; { d [ ## { 2 7- { %# 2 9 ( { /& $# J= Y> d d 3* J= 0 Y> d 3* a 6 D, i ,# 6 3] 3* ,# 0 k g } 0 K/ e D, ~# !# 6! 6! z: n z: n ~# s> n Y$ Y0.-) l 2, p 2, n n m b' 4* ),.b' b' 4* b' +l.m `$ b' /# {& 1Z #] {& t ^# D 2; z E /U B F= F= F= /U '&.'&.a7 a7 '&.a7 N X8.a7 O@ A G 8* JW A V JW c- V c- c- .@. V >z .@.QT Q L QT 3; d{ SO *I L *I Q BX ^P oY *I XX #N )Q ^P 3d ^P )Q )Q ^P ^P ^P @N @N 7s tw 6B mL $N $N mL $N $N $N AS UO HQ :M hT $N hT aS ST sM MP %T sM K @A x4 2h hs x4 IF B0 LE ;1 Re Re }e B0 Re F3 +: 13 +: F3 13 }e }e 13 13 13 13 D4 .8 C0 :4 =/ S{ -k :9 8^ 6^ I! 8^ 6^ 6^ 9; t/ 6^ =/ 7) ^= f' 7) 6. ^= a; !! ^= a; ^= U' V' h* d. 2j.d. d. d. e. e. d. d. e. c. '' '' q# q# d. e. q# e& 3j.r# ck.xk.p@ -j.xk.ck.Ai.-j.Ai.+k.2f.Ai.zi.Ai.Ai.sg.mj.Sg.wS nH Sg.Pk.qg.Lh.Mh.Mh.Lh.Mh.Sg.#i.b@ i@ m$ v7.m$ =* d@ ,W :; ,* X* '* d@ p@ i@ sg.Y% #i.e@ b@ d@ i@ '* g@ e@ X* y; '* p$ i@ j@ l@ -& t$ f@ b. A= )* && *& t$ t$ j@ W* f@ W* t$ && j- l@ t$ E9 ~* F9 j- t$ t$ o@ <. <. -& t$ y; -& -& E7 u@ 3. F9 q@ 8j.(. t@ P:.m{. _.X<.9= W# B2.@l.2!.i$ :1.wg.5,.$5.99.i|.B2.#l.$l.a@ 0@ =* o$ l$ ** 9@ &6.2@ 4'.+=.C*.g+.kR SR %l.&l.1k.*l.=l.-l.SZ SZ .s l+.:d *f l@./F < .o%.>c >c k..o+.Ac _N S..YN ED .$..$.$c 3$.-d zh -d =d =d =d *e nc Zs pc ue l.k).,l.}f._~.*0.j6.Cd.w~ >7.w~ h3 A% C+ ]7 a> Q+ /$ {- {- {- P+ L+ T+ T+ /- /- S+ P+ T+ Q+ vC vC .N 7<.O+ 7<.pM .N ,7.9h.l* D _# c [& tA ~# 6 b V$ b c ", +"|1 *[ 9i.*) xi.9i.z~ ah.2! |1 )~ 2! 2! w9.9| 9| 9| *) <{ 9| J$ 9| J$ ;b J$ J$ l) ;b R@ 2^ 9| <{ ;b 9| 2^ L$ p9 BN <{ 0' I/ ]& L$ .( I/ I/ I/ ]& 0' I/ + Z, L$ 5_ + $ * L$ 1) . + # o! . . . ' S$ + > V@ ]& + V@ = $ V@ $ [* . ]& - $= & V@ + = - ] Q$ Q$ |* T@ . & | U@ U$ | U$ > Q$ | 2 P$ | b{ H= H= ) { xS 2 `@ U$ H= | - Q$ | { Z! /& ( { X@ [ 4 4 ( [ *# | ~ $# 2 { J) 4 } ( 7 ( 9 ,# 5 &# ## V) J] 8- 5 ,# ( 7 3] 6 7 7 6 0 a 6 ,# q> W$ ,# 6! K/ 6! ,# 6 a 0- 0 ~# K/ 0- ~# S^ 2, r s> ,> n r % m '> #| r yi.b' q ^# r m w 4* /# 2; /# w C 2; G )> w F= z F= F= z B a7 /# z a7 F= z '&.z I $T 8* n! 1& 1& c- c- JW $T /U V >z V V T^ 0S z ..@.d{ 0S B..aV 3& E$ aV L &{ oY A: qF 3d qF (U c~.#N 3d #N pF #N ^P #N ^P ^P #N ^P )Q # .lP @N mL EN $N 6B $N :M :M mL $N AS -I aS cV :M HQ J lI 2..eQ DS DS HN iT dK =S kT -R {Q RL Yz Zz Yz Yz |C Zz 'I 7J tG oL >b ~9 >b 1M qI jy >b vG jy jy >K ;1 x4 r/ Qe 2h 2h Se 2h Iw y4 y4 Re Re F3 +: +: W^ 13 F3 F3 F3 +: F3 F3 A} _| .8 Mc D4 .0 'l.:4 t/ '! I! 6^ I! '! , )l.t/ l~ M5 9; ]= g' 1{ a; ^= ^= 6. ^= ]= {> !l.i* 9. g' Y~ 2j.e. d. e. d. e. e. d. e. ~l.,' ,' d& '' e. g. m* g. {l.ck.&h.]l.-j.Ij.@i.2f.=j.Ai.+k.2f.-j.A= -j.;j.dk.dk.Qh.wS Qh.Ti.Pk.+k.^l.Mh.Sg.d@ =* Mh.,* sg.>* m$ m$ =* d@ e@ d@ e@ d@ 0@ >* e@ ,* p$ wS f@ A= #& /l.i@ m$ d@ e@ =* '* sg.t$ j- t$ -& ,W A= F9 o@ ~* &p l@ ~* F9 h@ '* f@ l@ o@ h# a. ~* -& -& ~> m@ ~* F9 r$ r$ ~> o@ s@ {* u@ l@ p2 l@ b& `* v0 o@ s@ h# =& 2. (. (l._^.C2.^; _l.:l. $ $ . > - . ; . $= U@ - - $= Q$ U$ > S$ U$ U@ & 2 ! R$ o! R$ ] 2 2 ) ~ Z! 1 ( N$ $ ~ { ~ ~ 1 Z! 5 W@ { X@ $# { { 6 6 => 9 5 4 == } $# `@.d } d 6- q> x0 J] 7 7 k ( } tA a ,# c6 0 ,# i tA 7 {# L= e b 6! {# K/ 0 !# tA 0 c |& -) ~# s> o/ Y$ }& n^ Y$ c L= 0- ,> 2, 1; m b' `$ ^# 1; 4* /# p! 4* q p G u {& xE w8.z F= F B :# G z a7 #] F= F= z F= z z n! F= N@ AR a7 JW 8* T^ c- KW 8$.JW c- c- 3# AR _+.O :}.PT V .@.d{ iU L aV *I aV SO *I oY 3d G$ *I qF #N 3d #N _M ^P `I #N ^P ^P ^P lP RT -X ^P @N 6B mL $N $N $N -I mL 6B UO BS {z {z HQ :M HQ FN J FN aS dS _U ~Q &S ~Q ~Q 8R dy dK [M dy oL |C Zz dy |C ]Q 9o Zz dy ]z jy jy vG jy >b ~9 jy jy jy Ab 2h 2h ;1 =H k.x4 ;1 2h ;1 B0 2h Iw Re 13 F3 F3 13 Uv on }e 13 13 13 A} 2~ (9 (9 C0 2~ s/ 6^ u/ .k.I! S{ '! I! '! I! , 0, g# I! l~ f' g' f' U' a; a; g' g' 1{ 1{ a; 0. V' !! Y~ d. d. 9. d. o# d. d. d. d. e. e. e. {l.bk.d. '' g. ,' '' m* e& g. dk.A= =j.{l.bl.A= ,W Ai.Ai.sg.A= Ai.=j.cl.+k.Sg.dl.Mh.;j.+k.%& Mh.d@ wS '* j@ wS p$ x; b@ ,W `e.=* && p$ 0@ && A= g@ d@ =* p$ =* :; l@ f@ >* d@ j@ sg.,* d@ ek.>* j@ l@ xi l@ ~* =* f@ >* j@ A= $i.~* j@ p@ *& r$ && l@ m@ a. l@ o@ `* N- l@ ^* u@ R= s@ -& m@ =& l@ o@ F9 F9 E7 -& -& -& u@ ~. ;& x$ t@ h# 32.`(.C2.C2.el.fl.gl.hl.a@ 89.l~.x= #k.&* 83.m$ )* 79.$z :; +& )* 6@ 9@ 7@ K- il.<2.jl.r-.['.!.._S UQ kl.2k.4l.1k.ll. y o@.P}.KB ;r tu p@.lA ~#.~#.< .k..k..Ac Ac _N _N _N _N Bz n+.[R [R [R $c #H -d -d =d yd {l nc *e we =e =e vd [f Ff |b wd dc 4b.3b.vt h4.ml.*c.nl.@h.ol.^6.Bj.pl.hg.`U B- A+ A+ D+ Q+ O+ Ej.~}.~}.o}.R+ L+ Q& O+ Q& 7H Q& L+ Kb a> P+ L+ n}.K6.!c.0<.b[.^l (i O@ n h _# 2, h 0 e 8 a } c ", +"vh.ql.z~ *[ vh.xi.rl.)~ $8.sl.9| 9| 9| 9| 9| *) w9.<{ 9| <{ J$ <{ R@ <{ <{ <{ 9| <{ .( R@ BN J$ I/.l) BN ]^ 2^ I/.;b 2^ L$ 0' G= ]^ I/ 0' [n R@ 0' 5_ 0' 5_ 0' 0' + # # + L$ % + + + # # # Q$ V@ # ]& + [* > = # 1) ' = - $= + $ |* & N$ [* |* U@ > & R$ . ' N$ $= P$ %= ] & S$ > . > ; - | *X %= T- | X@ U$ | /& ~ 2 N$ X@ ^& ~ N$ N$ ) ;# ## [ 2 I= <& 5 ~ / /& N' <& $# 5 } d /& $# 7- 2 X@ 5 [ Y> d $# Y@ ,# ># 6 3] $# e ,# ,# /& 0 D, a 6 a 6 0 q> 6! !# [& {# a 0 0 0- L= ~# |& h K/ Y$ |& r r n^ ,> r 2, r p tl.xE % r p q m ]c b' t w /# 4* t C :# Z$ 1; {& F= B a7 % D a7 a7 a7 z a7 '&.a7 K a7 a7 z I 1& AR c- M JW V M O@ c- M V V V KW AX z .p=. V .@.L :#.QT E$ L SO Q L A: BX 3d qF (U yS 3d RT ^P )Q )Q ^P ^P ^P ^P lP lP @N lP lP $N 6B $N mL mL $N 7s mL mL :M J Ou HQ mL CX _U J FN cQ iT .J dK HN QL ~Q Wz dy Yz 8R |C dy Yz dy Zz |h dy Yz |C Bw nI tH vG jy ~9 jy vG tH vG ul.>K x4 hs ;1 Ab x4 r/ ;1 Li ;1 6h Jc k.Se W^ +: B0 +: F3 +: +: W^ +: F3 F3 F3 F3 S{ b* _4 _| S/ F0 (c 6^ D4 J4 I! I! I! I! 0, f' h{ I! 0, f' {> k# a; 6. g' 1{ 1{ a; a; 0. d. a; ^= Y~ d. e. d. d. e. 9. e. d. d. 2j.k* m# g. g. d. g. q# vl.bk.wl.{l.wk.=j.Ok.'' bl.zi.-j.-j.-j.,W -j.mj.A= Qh.#& >* Mh.Sg.Sg.+k.^l.Mh.wS Sg.+k.'* i@ %& e@ #& xl.=* r$ i@ ,* >* =* l@ y; &p d@ d@ b. h@ h@ A= A= A= g@ i@ =* d@ u$ F9 j@ j@ n@ $i.m@ &p && n@ m@ j@ t$ l@ p@ '* o@ u@ Y* -& {* u$ N- ~* l@ s@ a& t$ o@ u$ u$ o@ F9 f* ^* j@ ~* s@ s@ m@ 2. a. v@ ,% ~* =& q@ {= 39.d+.94.H3.il.Gf.{).`% 3}.2@ l$ 6@ P].wg.#* c@ 7@ *& S1.k$ &6.z= 9@ i$ |- v!.]].9@ 4@ `,.r-.[$.5W yl.zl.2k.5l.Al.Bl.IU o@.KB .s ]#.p@.p@.lA @$.< .,o ,o !%.Ac >c YN hE YN S..S..;c n+.e*.yh yh $c -d =d =d =d :f & > . $ & ; ] }* k) U@ & =' | ) ~ | ~ ] ~ N$ | *# I= R$ ~ N$ U@ ( ~ ( { 2 { /& { *# J) } { { ( 6 ( } { 1 } d 6- J] &# a' 6- D, 7 i M' 1 } } Y> 3* k a ~# k e ~# ># ~# k a !# 0 ~# {# 6! 0 {# K/ L= ~# n n Y$ 2, c ;= n^ x9.s> c{ r Y$ Y$ p n^ 2, x9.t b' D n^ 4* D m /# 5* ^# t F= w s> F= 2; {& F= G ^# a7 z a7 G /U z K 1& ).'&.#] K JW AR O@ O@ a7 Z .@.M c- Q@ H$ Z c- 1& V d{ z .c- y .Q QT 0S L A: *I A: L Q oY .Z Vf iU p*.yS )Q #N ^P #N ^P #N ^P ^P ^P _M EN lP bV lP 6B mL mL mL $N TO mL $N :M :M Ou Ou -I $N FN FN Jl.:M BS EA QL Wz sM ~Q Wz :C Yz =R RL dy Zz Zz dy Yz Yz |C Yz Zz /Q 'I jy jy ~9 ~9 jy ~9 KE tH >K =H hs |3 Qe Ab r/ 2h B0 ;1 x4 B0 hs Se B0 Se Re F3 13 +: F3 F3 A} F3 +: mg 13 S{ Kl..8 g{ +0 'l.I! , I! 8^ '! , P= '! 0, g# 0, I! 6^ s^ ^= ;% a; 6. ]= 1{ {> a; 8. ^= Y- @~ a; {> 9. 9. e. c. 9. e. e. e. e. c. Ll.m# Ml.~l.Nl.q# g. e& k* k. k. e& Ok.-j.Ok.Ol.=j.mj.Ai.Ok.&& A= 9f.Ti.&& dk.&& Ti.i@ dh.sg.wS d@ wS i@ Pl.hi.h@ p$ hi.wS #i. & p$ i@ A= d@ p$ && h@ sg.sg.=* j@ i@ h@ X* d@ j@ xi X* i@ i@ d@ ~> ~* )* i@ u$ l@ A= m@ ~* u$ t$ R= :; l@ m@ t$ t$ l@ $i.l@ o@ m@ u$ 8j.~* t$ j- <. r$ d* p@ o@ o@ o@ F9 ~> s@ ~> {* Ql.o@ h# o@ 1. h# (. {= ]l.E* hb.w; Ze.Rl.Cc.Q9 5@ -* 0@ ,* ** 9@ G3._; i@ 0q #* 8@ 6@ e@ f@ Nj.n/./].e]./]._].`,.p$.XV 4T Sl.Tl.Ul.Vl.*l.Wl.tf ;r o@.tf m@.l+.]@.^@.~#.lA ,o Ed Ac k..Ac _N _N _N YN sf Bz n+.[R $c e*.yh -d =d =d =d *e nc *e mc ve {l Ad ,d c Hd mc Xl.Za.4b.&x Z{.D!.Eb.)i.El._~.*0.G|.j6.() X5.~}.B% {k.C+ D+ S& Q& Q& B[.^l O+ n}.C- Yl.Q& L* Zl.`l.cM n}..N ]7.4<.t_.gE 6b.{}.g0. m.r q h r c g ,# [& 7 6 c ,# ", +"9i.vh.9i.z~ |1 xi.|1 e^ ^, xi.*) <{ <{ *) 9| 9| *) 9| w9.9| jP 2^ 2^ J$ 9| <{ 2^ <{ J$ r4.J$ I/ .( <{ .( L$ 2^ BN I/ I/ ], BN p9 L$ G= 0' 0' L$ 0' 0' 0' $ # Z, 0' 0' # # + L$ + = + + % V@ ' # # V@ & . $= V@ . S$ > [* > + = = $ U@ U@ . > S$ > > T@ A; = $ & - o! > ] ' S$ U@ %= X@ %= ~ Z! H= Z3 Z! X@ ~ ~ ) [ ; { F:.X@ ~ P$ ] W@ N$ ) ) { ~ ) ( W@ X@ $# $# /& 8- b ( } ,# ( X@ { / J] 6 $# /& 5 a ,# ,# 6- a -> 6- k d 7 a k tA 7 ># M' 7 0 a a 0 z: 0 a k ~# K/ 0- C; a K/ 2, r |& n p h a' }& ;= 2, n m .m.V| m 1; 2, 4* s> 4* p s> p t 4* w {& n^ $S /# U*.F= F= #] t F= F F= '> '&.A z F= z a7 a7 1& $T w M c- M c- n! Z 8* JW c- c- V c- c- V M .@.O@ 3& L L d{ SO A: 3; A: iU qF 3d r! oY oY pF ^P )Q #N ^P #N )Q 3d #N #N qH @N .V qH 6B mL mL 7s 58 $N 6B $N mL $N {z Ou FN :M J J J cQ FN sM cQ b jy jy ky x4 x4 ;1 x4 ;1 2h y4 Re hs Re ;1 F3 Re B0 +: +: W^ w{ W^ +: F3 +: W^ F3 13 66 k~ F3 Lc =_ S{ I! '! _9 I! I! 6^ '! )l.6^ 0, 9; I! , 9; 6. n# f# ^= f# ^= ^= ^= ]= ^= a; ak.h* @~ d. 9. e. d. e. e. e. 9. d. d. m# +m.d. o# k* ,' ,' '' '' d& :k.]i.9f.-j.Ai.=j.Ai.A= ;j.+k.,W ,W +k.d@ Ai.,W Qh.Qh.sg.d@ d@ '* @m.>* =* d@ A= =* h@ A= p@ && i@ && t$ x; d@ d@ i@ A= e@ d@ && t$ u@ j@ f@ >* u$ e@ l@ b. ~* ~* k@ u$ u$ F9 /l.xi j@ ~* ek.i@ m@ _s l@ ~* s@ u$ l@ &p h@ u@ s@ -& a. j- m@ h# u@ [y ~* a. k> l@ q@ s@ M- l@ t$ s@ 3. 1. h# :. s@ h# 2. = x$ a& L+.3@ m$ m$ #m.v6.h@ &9.o$ l@ j@ &p 69.i$ $m.05.Y, i$ 8@ &6.k@ a@ 9@ 9@ @* 4'.X-.R:.Q&.Q&.TR CP Df.%m.&m.*m.=m..j.8#.>+.o@..s l+.$$.U@.lA lA lA lA >c o+.k..Ac Ac _N _N YN YN S..kH e*.[R e*.+l -d |r ub rc Zs :f _f mc kc pc ob Yb c `b Tb -m.su Cd {r W9.@j.Jk. i.;m.Z).C!.c7.N6.B% hg.P& bK B- C+ A+ `U E% pM pM pM ^l |f.]k.>m.K* N+ ,m.'m.)m.pM ;[.7<.C<.!m.*1.}|.o}.&g [c.`$ h g >> e 7 &# M' b 6 &# X$ ", +"9i.vh.ah.*[ 2! xi.&[ e^ *[ *) 9| |1 <{ 9| 9| 9| 9| 9| *) *) 9| $8.V! I/.<{ I/.<{ <{ R@ ;b J$ G= R@ <{ R@ 9| 9| ]^ R@ I/ L$ G= p9 jP G= 0' 0' L$ I/ 0' 0' 0' + + I/ 5_ + # + $ V@ # = = # 1) 2) ' > !, [* =' > = ' H= o! ' $= Q$ . Q$ & |* > $= S$ > S$ Q$ 05 & * ; . ; R$ %= P$ H= X@ %= ; ~ N$ N$ & . ) . & ~ ] U@ T@ U$ /& Z! 2 |, N$ U$ | { | %= 2 | | ## 2 { $# { 4 $# 2 2 } { ( | | 2 /& [{ 6 i $# Y> c6 6 ,# $# ># 7 V) 3] 6 :& c6 V$ 0 k i ~# 0 ,# a ~# 6! [& n ,# ~# n n Y$ 6! 0 h W$ 0 `$ h ~# p n Y$ p `$ ,> K/.4* ;= m /# 4* t b' 4* /# 4* 4* w F #] % w /# ^# F= F= /U F= F= a7 p F= /U a7 w a7 z z z A AR 8$.M c- V c- c- 8$.1& 8* V c- c- .@. V c- z .3# A: SO AX V SO A: A: A: SO aV #N 3d oY WX ^P ^P #N ^P ^P )Q 3d #N ^P #N #N @N _M `I @N mL 6B 6B mL mL 6B $N AS 6B J J {z HQ J FN sH FN J Wz FN &N Wz ~Q nO HN oO Yz dK *H Yz Yz Yz Yz dy Yz 9o eK 7J eK |M eB ~9 ~9 jy vG jy jy jy `9 A5 r/ x4 ;1 2h 2h x4 Jc Ab =2 B0 Re +: B0 W^ +: F3 +: +: +: W^ W^ w{ +: +: 2~ _| 5^ I! A] =_ 6^ , '! I! I! '! I! 6^ I! l~ g# h{ 0, f' f# n# n# g' k# ^= ^= 6. 6. a; ^= 0; i* ^= p# d. e. d. d. 9. c. 9. 9. k* m# 9. ,' ~l.{l.,' g. '' g. w' ]i.:k.=j.-j.Ai.Ml.dk.xi && -j.zi.fk.+k.xi ;j.Ok.~* f@ Pk.wS Sg.nj.#& h@ =* =* ~m.p@ Pk.-& b@ xi && A= l@ j@ A= j@ )* +k.t$ -O && A= h@ e@ :; h@ ~* ~* :; f@ u$ W* N- >* && $i.>* ~* t$ ~* j@ t$ m@ o@ j@ l@ t$ j@ u$ i@ u$ u@ -& h# <. -& ~> k> h# >& u@ o@ h# x$ t@ 9& {* d* u@ 3. 1. u@ s@ |. t@ u@ *% s@ q@ q@ b) 86.i@ i@ {m.]m.h@ '. -& x$ E9 :. p@ X% -|.C2.** ^; l$ _{.^m._].9@ |@ a@ 3@ Q&.[&.'` VV i; VV /m.3l.(m._m.:m.P..VW tf KB VW m@.(@.p@.]@.lA lA ~#.< .>c k..k..k.._N _N YN S..S..ED [R e*.[R yh +l nc =d =d wd te $e {l /w kc vd [f gc `b 5b 'e su o F! W$ o 7 ,# k }{ o g ", +"z~ ah.ah.z~ *[ 2! vh.*) *) <{ 9| xi.<{ 9| 9| 9| <{ <{ 9| 2! ^, 2! J$ ], ]^ <{ <{ J$ J$ jP <{ 2^ J$ J$ R@ J$ L$ G= R@ 0' I/ L$ I/ 0' I/ I/ 0' 0' L$ [n K$ 0' = # # = 0' # # $ M$ # J$ Z, k) T@ Ez 2) . * [* & . $= . 0' . - . $ ^& $ $ # - %= U@ & . - Q$ ; U$ & Q$ > R$ H= N$ N$ . Q$ ; ; U@ %= P$ U@ & | ^ ' %= ] N$ 2 { ) N$ { [ ] U@ U$ ( 2 { [ 7- 7- ( d *# 5 } 2 ( Y@ } /& ## 6 J) $# ~ 2 d m*.d 3* $# 4 Y> a 6 6 ,# a 8m.a a a 9 ,# {# 0 a tA } a' a tA ~# ,# ,# 8 c n ~# 0 ~# s> !# {# h r a n V| 2, ,> p `$ 2, p V| 4* 4* 1; 4* y 2; t :# ;) w F w /# ^# ^# 4* :# 2; F= {& z c- c- c- M V .@.5 .A: SO :#.Q A: *I A: *I d{ Q G$ Vf j#.oY |3.3d #N 3d ^P 3d #N )Q #N ^P DN @N @N lL #N mL mL mL mL mL mL $N AS 6B {z J J J J J Ou FN J ,I .J J @J dK DS Wz cy Yz dK [M Yz Yz Yz Zz |h Zz *H Zz $J eK &i Br 82 ~9 >b jy ~9 vG vG jy ~9 ff x4 x4 2h ;1 ;1 L] ^5 x4 =2 r/ =2 B0 =2 W^ w{ W^ W^ +: F3 W^ +: F3 +: F3 5^ 9m.Md _9 S{ I! g{ S{ , I! , I! '! I! I! ., f' l~ 6) h{ @~ g' {> U' 8. 7. ~= 7. k# 6. 0; Y~ 0m.p# d. m# 9. 9. m# 9. 9. d. am.d. o# ,' d& Ml.'' g. '' fk.*9.ck.ck.]l.A= Ok.d. -j.bm.A= i@ ,W ,W Ok.&& A= sg.sg.Qh.sg.&& #& Pk.Sg.&& '* i@ sg.d@ d@ ,W hi.k@ sg.&& X* && )* u$ p@ sg.f@ A= '* u$ u$ i@ ,W +& )* j- -& l@ xi u$ u$ :; p$ A= -& ~* j@ F9 -& F9 r$ u@ b. s$ ~* j@ ~* ,j.l@ t@ Z* ~* -& m@ :. m@ s@ ~* q@ (. 9& q@ q@ m@ s@ (. o@ o@ s@ ;& 3. h# q@ 5& *% h# >& ^. o8 R[.'* Mf.cm.dm.'* :. 8f.)* i@ {* ~> H3.a@ a@ &* 62.Z% em.:' P).V^.<: |@ :(.p[.w(.E'.m&.)j.FZ fm.Ul.(m.gm.=l.=F m@.>+.SZ hm.>+.$$.$$.Tn hz lA < .< .,o Ed k..Ac Ac Ac _N _N S..kH [R [R $c yh #H oc oc =d =d X@.ue mc ,e we >d Ff Yb Ff {M im.SX 4b.`W jm.km.lm.`k.n8._~.0!.mm./6.j6.B+ A+ w~ C- A+ G+ tk.Ej.O+ g1.{- Q& nm.Q4.Q& vC 6i..N om.B[.mg.pm.qm.qv Ro w$.rm./- cO N 2, 1, p 8 a g 7 b 7 7 o [{ ", +"z~ 9i.Il.&[ *[ z~ xi.*) z~ *) 98.xi.9| <{ *) *) 9| 9| w9.9| 9| <{ <{ 2^ R@ l) <{ 9| J$ I/.I/.l) R@ R@ <{ R@ R@ BN BN ;b I/ 0' R@ 0' L$ I/ I/ L$ J$ 1) + 0' 0' # ]& 0' 0' # `Y = L$ R@ * * . {c [* > . 2) k) $ 5_ > - + . S$ T@ [* > > Q$ . S$ > |* ' > ; U@ . S$ P$ $ S$ R$ Z! %= ' ; Q$ & | $= %= U$ ' X@ | | R$ X@ ] H= & 2 2 ; Z! U@ N$ Z! ) ( 2 ~ ~ 2 5 < 5 2 5 1 /& 1 $# } < ## I= 4 ,# ~ 4 D, ,# -> 7 / <& ,# 6 *# -# ,# 5 } /& ( 7 ,# 7 0 {# 6 {# 6 9 9 5 ,# i 6 !# W$ !# E, Q{ n y2 0- K/ s> -) ]# K/ 2, 2, 2, 0- ,> 1; K/ p h r 4* 4* 4* ^# 4* @= :# w F= /U C 4* t w w :# D C w a7 /# AR z '&.1& z z '&.F= $T Z sm.T^ c- V c- M >z H$ V c- 8$. V V V c- 0S QT Q L Q -$.A: SO A: SO A: t> MW #N MW (U yS #N ^P 3d ^P #N ^P ^P ^P #N 'Q 'Q qH bV !Q @N 7s 7s 6B 6B 6B $N hT 6B mL mL HQ J $N $N HK FN FN lI eQ b ~9 vG ky `9 r/ r/ ;1 KE ff |3 r/ f[ ^5 x4 =2 ;1 Se ~] w{ W^ =2 +: +: w{ W^ +: ^^ W^ *_ q^ I9 66 t9 :5 u/ %] M] '! , P= e# , X^ I! R: ;% 0, I! 6^ ;% g' f' k# k# 9; 6. 6. 6. ^= 7. i- )% 6. p# 9. m# m# d. 9. 9. m# am.k* d. d. '' Pl.~l.,' bm.,' wl.g. bm.wk.bm.=j.:k.+k.A= ck.-j.,j.Ok.Ok.sg.i@ A= d@ /l.2f.A= '* u$ j@ && d@ A= sg.Qh.d@ wS %& wm.A= i@ X* ek.f@ ~* %& a. u$ i@ i@ ,W i@ l@ -& X* u$ #& {* h@ i@ u$ l@ :; $i.j@ l@ >* && N- -& 0& u$ t$ o@ ~* -& n@ o@ j@ /i.o@ s@ s@ m@ ~* ~> h# _. s@ {* {* u@ t@ x$ ~* -& Q- s@ <. :. 5& _. |. o@ h# u@ {. >& q@ j- xm. & ym.zm.Am.y6.,d.`f.5@ /e.)* A= C2.a@ $6.Bm.Cm.Y<.,).:'.Q&.O+.:+ a@ y6.]<.S<.Dm.=Y K..J> Em.4l.Fm.Gm.Hm.$$.aK y<.VW (y p@.p@.Tn dv /F lA Im.,o < .7f Ac k..Ac _N _N S..S..ti [R [R $c $c yh kH Bz >e =d mc Zs we lc + V@ # S$ $ & $ U@ | . ' S$ U@ P$ & - Z! Q$ %= U$ ~ U@ R$ ; X@ R$ ] ; ~ 4 { b{ 2 H= N$ %= ~ X@ | ( ## N$ / | { 1 x0 *# 2 Y@ { I= 1 ( { [ X@ X@ V~ &# ( d 4 ( J] 6- 3* a 6 b N' ,# V) ,# B; [{ $# 0 &# a k 6 d a' 7 e q> 0 e !# k 7 L= h n h |& h ~# ~# &].p |& |& }& ~# Y$ p! 1; n^ 2, `$ #| D #| 1; /# oE w t t t F= :# $S $S F= b' G D F= G a7 F= F= G z a7 z ~& z z H$ T^ T^ V c- 3# V .@..@.O SO V y .Oz Q J 3& SO r! o^ jI D$ BX (U ^P ^P #N #N #N #N 3d ^P 3d #N ^P -X _M _M E^ 6B 6B 6B mL 7s AS $N $N $N 6B Ou {z {z {z J PL {z {z PL dK lI NP #J eQ *S dK |h {C Xz A0 Yz A0 dy dy Zz *H dy Yz :C ]Q ~5 ef ~9 vG vG >b >b Y6 >b =H x4 x4 ^5 A5 << r/ x4 ;1 x4 f[ hs w{ ~] =2 W^ w{ ]4 +: F3 F3 Md ]4 W^ 3~ w{ 5^ I9 *_ , '! I! 6^ '! '! '! j# I! , '! e# 0, l~ Tm.6^ 4. 7. f' f' f' 7) 7. ^= 6. 7. ^= Um.F9 a; i- 9. 9. 9. e. 9. d. 9. Ll.p# d. d. '' $i.Vm.,' bm.bm.bk.wl.Pl.c& Ol.Ol.ck.Ol.-j.Pl.A= +k.&& A= Qh.j@ j@ i@ u$ ,W p@ +k.u$ n@ j@ && Sg.d@ F9 j@ i@ && u$ h@ ~* $i.b. -& p@ :; i@ o@ l@ r$ F9 j@ l@ o@ && k@ :; F9 ,j.i@ :; xi l@ l@ ~* W* l@ :; t$ ~> && u$ :; t$ t$ {* l@ (. ^* k> E7 s$ {* q@ k> u@ -& q@ d* <. w$ *% d* (. :. {= <. q@ /* ~> s@ h# =% h# t@ ^. t@ s@ {. {. Wm.E3.(' Xm.Ym.7% i! }^ g>. ) V# 05.m$ (; 2@ ** X(.f].p{.[&.u!.m&.:'.4'.W7.^i d+.Zm.5c.`m. n..n.+n.@n.@n.#n.tu >+.>+..s %x c#.p@./F =F Tn l@.4$.>c < .7f Ac o+.Ac Ac _N YN sf Bz 8L [R %c yh yh -d )d nc =d *e ve +c lc = . E! $ $ . $ V@ . P$ U@ > ' ; ] . ' %= ' Q$ P$ Q$ & 05 | S$ X@ %= R$ > & ; - > 2 %= ] ~ ~ ~ ~ N$ [ { | ) *# 2 ~ { ~ d 2 ( ## 2 1 X@ [ [ Y@ N$ W@ ~ 2 Y@ 1 5 /& ## 6 ,# } >n.( ,# d } ,# [{ a 6 $# i ,# 8 ~# e ,# ,# ># i 2* L= d [& 3] a' E, c |& L= ~# n Y$ n L= o 0- K] c{ h V| v % L= _# p Y$ ^# 1; o/ 1Z t t 1Z 4* :# ^# ^# t 2; F= F= ^# B 2; {& F= W) a7 a7 2; F= A$.a7 a7 z /U $T 8* n! O@ z T^ 8* 8* c- V c- c- T^ V c- M 8* M V d{ 0S y .AX A: 3# E$ 0S r! MW qF BX BX (U 3d ^P #N 3d #N #N 3d )Q ^P #N #N qH 3d pF `I 6B 58 7s 6B 6B 6B mL 6B 6B 6B rH {z FN J {z {z J FN sM dK sM dK QL HK NP dK |h Yz dK *H Yz |h A0 |h dy |h :C Yz Bw Yz 7J gg >b ~9 ~9 1h `9 82 >b ^5 J: J: J: ky f[ r/ r/ ^5 J: f[ f[ f[ B0 Re Re +: +: +: W^ +: +: W^ w{ W^ Re (9 'b Q< E4 , '! '! , I! P= 0, '! '! P= e# I! '! '! I! a& 8. n# f' f' k# 6. ^= a; 6. ^= 4. R= >% l# 9. 9. m# d. m# c& d. m# d. 9. d. d. c& $i.,n.'n.Pl.Ml.bm.&p &p wk.,W && Ol./l.bm.,W u$ i> ,W @m.t$ xi >* /l.+k.#& ,W ,W sg.&p ,W :; j@ xi zk.h@ =* '* )* l@ $i.l@ :; /l.j@ t$ t$ i> )n.$i.+k.u$ l@ ek.&& u$ ~* :; m@ ~* ~* j- Y* i> o@ t$ ~* t$ j@ ~* b& -& l@ m@ u@ q@ ^* -& [y h# o@ m@ {* u@ 3. ~* s@ {* {* m@ q@ {= v@ t@ h# t@ p2 ~> o@ h# ~> :. v@ v@ w$ {* ;& k> ^. !n.~n.83.S1.{n.]n.P_.}7.*4.]/.^n.T1./n.,h._+ 94.S` _.a=.k` FZ #{ J@.(n.p% h@.rQ ./ Hc._n.:n.Fm.gm. . ]& . S$ Q$ $ }* > ' . . = . . > S$ > U@ $ & & > U$ $ ; |* & Q$ Q$ H= P$ *' | & S$ > . . ~ U$ S$ Z! ~ | N$ 2 ] ~ | | N$ N$ | 2 Z! 2 | ( 4 X@ ~ { 2 } *# 2 ( N' ) d ( 1 V~ $# &# *# ) 6 fn.[ ># ,# d 7 6 Y> ,# ,# 3] e 6 a 0 ~# ]c a ># k a 0 L= 6! 6 !# {# o L= gn.n h y2 h p n n W$ L= p r Y$ ,> e<.2, p 1; V| Y$ b' K/. % u 4* $] ;) 2; w m t :# w {& {& E #] #] w z W) z z z a7 G z '&.I z 1& n! z 1& JW 8* I I O@ c- .@.c- c- |# I{. V c- 3# 3# 3; a- Q E$ 3# Q L *I *I r! #N _#.oY G$ ^P 'Q 3d tw U^ #N 3d #N #N 3d DN E^ 7s _M @N 6B 7s @N 7s 7s 6B 7s 6B mL mL J cQ J :M J J J J PL #J FN eQ lI QL HN @J |h >I FE A0 |h dy Bw ]z |h RL dy Zz dy RL ~9 >b SL eB ~9 {9 >b vG ef x4 1( x4 r/ 0/ f[ ;1 ^5 0/ r/ f[ Jc Jc B0 =2 +: 13 w{ 5] w{ w{ w{ B0 +: 13 +: Eb k~ Q< ~= ~= '! P= 5) , '! P= P= I! 0, l~ j# 0, I! g# 8. f# 9; ^= 7. 6. 8. ^= 6. 6. ^= )% d. 8. ~% 9. ~% -& m# 9. b. e. Ll._s 9. 9. c& m@ bm.~m.hn.$i./l.u$ ~l.u$ Pl.Ol.>% j- >% Ok.&p -& in.,W Ok.u$ ,W Ai.,W a. ~* j@ h@ && +k.in.Sg.>* i@ t$ >* p@ *& u$ Y* ,j.~* l@ -& u$ j@ u$ m@ !* l@ u@ o@ F9 i@ l@ b. s$ Y* j@ ~* j- h@ ~* ~* l@ {* ~* j- ~* h# o@ ~* b. k> -& q@ s@ -& s@ o@ h# m@ ~> s@ =& t@ q@ o@ u@ q@ s@ t@ w$ h# u@ u@ {= u@ ~. h# :. d# t@ v@ t@ {. ^. B@ >% jn.o$ (:.kn.ln.|!.u(. f.54.l@ i@ k@ $& il.m$ ]8._{.x,./].OX e~ mn.nn.on.O+.Zb.pn.o% qn.rn.3l.sn.tn.un.=F vn.p@.l+.l+.P..tu $$.S .hz /F Tn wn.fw ~#.Ed k..k..$n $n YN he }i Q@.Bz [R 5j 3$.$c ~=.-d =d wd wd wd nb wd ve ,e /w Bf >d Hd Q Fn.Sm.|_ :^ Gn.y4 Hn.%# L$ L$ = 7 !# j ~# V$ ~# j &# &# 7 < -# &# ", +"*[ *[ *[ ah.vh.*[ *[ 9i.ah.9| e^ )~ 9| $8.9| 9| *) 9| 9| 9| <{ <{ 9| <{ 9| R@ J$ <{ <{ J$ .( R@ <{ J$ R@ R@ J$ I/.G= I/ R@ p9 I/ ]^ ]& 0' 0' R@ 0' 0' 0' I/ 0' 0' Z, # = 0' + K$ K$ = # # # k) [* # $ . . $ T@ . $ S$ =' ]& . # . ]& $ ]& [* V@ - !, > & $ > $ $ U@ > o! U@ N$ U@ ; & P$ N$ H= ; ] N$ & ; Z! ; J) | Z! { T- | ] U@ & R$ ) ~ 2 { | ( ## In.7- ## ~ { 7- Y@ { X@ ( [ X@ [ ## ## ( } 2 d ># &# 6 ( ># V) Y> a ,# ,# j 6 } d a 6! ,# 3* 6! i a _c.># Y> ,# 0 A~ a 3] c c |& {# L= K] s> s> h 2, h L= 0- }& |& n p n^ 0- b' @= ,! p ^# n^ /# D ;{.D t n^ ^# m F= F= w :# D {& /U /U z z a7 F= z z a7 z '&.I AR #= c- n! K #= Z 8* $T O@ M M M M c- c- c- P@ Ri.>z 0S 3# 3& 1& 3& d{ L@ E$ d{ c- qF Vf qF 3d G$ #N `I ^P ^P ^P #N 3d 3d ^P !Q 0* ^P DN `I EN 6B `I @N @N 7s $N $N $N HQ {z Ou {z :M J Ou FN ]C bS 5o PL %i Xz cQ Wz @J Yz FE >I dy dy |h |h Yz Yz |h A0 A0 |h nI SL 82 Y6 >b 82 82 1h >b ~9 A5 J: x4 x4 r/ r/ r/ L] a: J: L] ^5 << =2 =2 +: +: &% 3~ W^ W^ 3~ w{ w{ W^ w{ 5^ k~ 7! ~= )l. , '! -% , P= '! , '! P= , g# 9; e# g# k# 7. k# ;% 8. 7. 8. 8. ^= 7. 7. i- b. ~% 8. b. 9. m# m# b. b. m# in.8j.m# c& ~* b. ~l.bm.@m.i> $i.Pl.bm.ck.bm.j@ ,W u$ in.$i.u$ u$ u$ && /l.$i.l@ m@ && /l.W* l@ && {* j@ && xi sg.f@ R= h@ ,j.,n.k@ ,W ,j.i> $i.:; f@ p@ in.:; r$ l@ && u$ $i.~* s$ l@ {* -& p@ j- -& l@ -& a. =& u@ m@ ~* m@ -& u@ ~* ~* ~* 3. [y v@ ~* {* j> u@ u@ 3. <. s@ w$ :. O- h# O- 0& 9& v@ O- t@ {* :. s@ a6 v@ d* :. ). (. '. ,& 5& := Jn.Kn.Ln.i&.`) Mn.Nn. ] o<.hk.%& (. W* b. ~* g@ |7.T1.8@ l$ _{.x^.l&.W^.<'.6W Oj.On.Pn.Qn.Rn.Rn.Sn.Tn.Un.]B ]@.]@.:d :d tu =F S .hz Tn $$.Tn Vn.lA lA < .,o >c iz $n YN YN YN ti ti [R 6:.+l T$.#H yh -d =d rc *e wd {l kc # ,# J] d 3 , 3* 7 q> tA 0 0 z: q> 0 3* J] a a ~# e ,# E, g A~ E, h z: h ]# K/ n r s> ]c }& x9.r o p r % 4* 4* t _# p! 2, b' 4* :# y 2, D /# {& F= ;{.{& 2; C {& F= z G z F= F= a7 z z C` I z JW 1& n! z 1& 1& c- a7 %> V V c- M c- M M z .=X M 8* |# A: >z E$ A: L@ d{ Z..3# Q qF *I WX T #N 3d 3d 3d ^P ^P `I #N ^P tw BE qH 7s lL E^ 6B -X 6B qH 6B mL mL $N $N ja ja {z FN J {z J bS {z ,I eQ lI Wz lI QL >I dy dy Wz |h |h A0 Yz |h |h |h dy dy |h 9o ]z 82 ~9 >b 82 ~9 >b >b ~9 jy J: r/ X) r/ ;1 u! x4 =2 0/ L] ^^ << w{ ^^ ^^ 3~ 3~ &% w{ W^ W^ w{ W^ w{ 3~ e' 5^ 5^ 9, , e* , M] g{ , , , P= P= e# j# a& g# 4. f' '% ;% ;% 7. ^= 7. 7. 6. 6. 6. 6. b. ~% '% )% 9. m# m# b. b. b. b. @o.in.m# in.~* bm.#o.fk.@m.$i.@m.$o.bm.Pl.@m./l.~* @m.$i.u$ n@ p@ dk.u$ l@ #& u$ ~* /l.A= n@ W* ,j.:; t$ j@ -& t$ cl.cK j@ j@ j@ t$ ~* *& >* b& j@ j- t$ F9 W* m@ b. S*.o@ -& t$ {* ~* F9 -& [y -& s@ o@ o@ u$ m@ o@ s$ ~* {* -& v@ O- -& v@ m@ {* ~> s@ s@ s@ :. <. (. w$ q@ x$ '. :. w$ u@ s@ -& ;& 1. 1. 4_ o) /. ~. t@ v@ &. ). b# '. ;. eb.y^ %o.&o.*o.=o.-o.;o.d= >o.V#.p[.y6.** %9.aa.** q$ 04 a@ `% ha W<.[&.o{.n$.n$..$ b+ #{ ,o.'o.)o.!o.(m.~o.{o.]B $$.$$.p@.l@.Tn *f ]B < .VJ 7f Ac Ac Ac Ac Ac }i tN kH 5j a#.[R $c y$.oc mc Zs ^f Yb Tb 0H 1b Be Wb 4b rb 3i ]o.hL ^o./o.WR +b PM (o._o.:o. 2o.(g.A] L) F@ 3o.4o.^ X! g~ R@ ]& ;b *) ]& |1 q, `, %{ +' e^ 3_ 6' *) &[ $# [& n m c } 7 8 X$ 5 < 6 ># ( ", +"z~ *[ 5o.z~ Il.vh.9i.2! ah.*) vh.)~ 2! 98.9| |1 *) 9| <{ 9| <{ 9| <{ 9| <{ J$ J$ l) <{ <{ ], R@ J$ *) ], R@ J$ ;b <{ 9| BN p9 0' R@ 0' k3 0' I/ I/ [n L$ L$ I/ 0' I/ X! # + 0' R@ # . # # # # . V@ T@ V@ # . V@ #^ = 2) =' . Z, > ; $ + . Q$ $ + # Z@ l!.& S$ . = ; > . . ; .# U@ ; ; ; X@ 2 ; ] | & S$ .# T- ] ^ > 2 Z@ %= { H= ] 2 ~ 5 N$ G9 N$ 2 | [ ~ 5 } ) N$ d 1 ( } } | 4 } } Y> Y@ Y@ ( 6 b d 9 6 6o.J] 6 { ( 3* 7- } ,# } 0 q> e {# 6! a k a' ~# ~# 0 K] L= W$ ~# a n |& n n p Y$ K/ n }& p p q p ,> r ^# ;= 1; m m ,^.s> ,> ^# q 1Z 2, % _# 6* F F= :# `$ w ^# ^# w a7 w z 5 .>z 3& o> L Q SO A: SO A: SO G$ H MW r! #N #N #N `I `I )Q G$ ^P #N #N #N `I 7s _M `I qH 7s 58 7s 58 7s BE mL mL rH ja ja Ou ja {z Ou ja PL sH Wz cs #J dK QL Wz @J |h cy @J dy 9o dy x5 |C |h A0 t( |h |h =N 82 >b ~9 82 <3 82 82 82 {9 B5 0/ 0/ J: A5 J: 1( Ab a: r/ ~] ^^ W^ ^^ ~] w{ 3~ 3~ w{ W^ W^ w{ +: w{ w{ w{ e{ 7! 7o.u' k~ '! '! u/ '! g{ P= j# h# j# , g# a& 4. k# }. }. 9; f# 9; U' k# ^= 6. 7. ;% R= ~% 5. F9 >% 9. fk.m# b. m# a. in.i- b. _s Pl.in.ck.-& in.$i.~l.$o.fk.Pl.~* @m.@m.-& u$ ,W Ok.A= bl.j@ ~* i@ Ok.A= j@ l@ ~* u$ $i.~* ~* $i.~* t$ l@ j@ j@ ~* ]* l@ ~> u@ r$ l@ l@ b. t$ j- u@ a. o@ F9 j@ b. b& m@ s$ $i.-& R= o@ a. 8o.-& u$ {* (. o@ ~* :. ;& u@ m@ s@ 3. j> :. -& -& q@ u@ s@ (. s@ {= -& v@ q@ Q- t@ :. v@ t@ :. :. t@ t@ 3. ^. p, v@ ^. v@ =% ~. &. ^. z 5* 9o.B5 8d :E 0o.j0.x[ W(.N, ao.<[.<[.Y,.Xi.bo.^<.Th.co.^<.3!.j@.5,.,..rQ 6W t] {d.do.eo.fo.go.ho.io.&d Wb sb xa xa Zb *d |b Hd 9b Be #I Ma ya Ga Ka 5b rb ~f ya 5b Sa V$.jo.Aa 3A gw (r ko.lo.^B mo.no.oo.po.qo.ro.so.to.uo.vo.wo.xo.yo.zo.Ao.Bo.Co.Do.Eo.Fo.u! @. #= (# 0 $# O$ $ . R@ # ]& J$ ]& L$ R@ V! L$ |1 *) J$ `, J$ *) e^ 5' q, q, ^, <{ 5' *) R@ a r o n g h a i [& a d $# e ># ", +"z~ *[ 9i.9i.*[ ah.Il.z~ e^ 9| 98.*) )~ *) ah.ah.<{ 9| w9.*) <{ <{ <{ <{ <{ <{ J$ J$ <{ <{ <{ 9| <{ 9| @ .( J$ ;b ;b 9| *) G= ]& R@ ]^ L$ 0' ]& I/ I/ I/ L$ L$ 0' 0' 0' K$ # + 0' * Z, * $ * Z, = + }, - [* o! $ # . Gc S$ S$ = ]& > o! $ ; . . S$ $= U@ ] U@ ; . * %= ~ ; Q$ ^& ] U$ & - V@ Z! ; ; U@ | R$ & Q$ N$ ) ] 05 { X@ ] X@ 4 X@ N$ W@ W@ Q$ %= X@ N$ J) ~ ( { < ( %= Go.} <& ( : ~ ( | 2 ( <& < b ,# 6 ## ,# [ ~ V) 7 6 ># / 6- d 5 1 3] ,# q> v5.~# ,# 2* a a a 0 W$ L= !# n 0 L= Y$ n r n c !# E, r p K/ ]# Y$ V| q Z$ K/.n c Y$ ^# p % t r m `$ #| Z$ w 4* {& /U w 1; w B t $S z t z z a7 z N@ /# z I n! 1& I 1& I W) M A 1& c- M 8* c- a7 V 2Z c- O >z 0S 0S a- S QT M C, E$ L A: SO 3# T E$ A: 3d .Z #N 3d pF #N G$ #N 3d ^P #N `I @N qH tw @N EN 7s 6B 7s 6B 7s mL $N $N J Ou ja J J {z cQ &N {z #J GN FE A0 EA NP Wz dy /3 cy F^ A0 A0 A0 A0 |h |h 9o A0 A0 ~( >b >b eB ~9 <3 82 82 82 Y6 82 >b A5 << d[ ff L] r/ 1~ J: r/ 0/ f[ ~] w{ 3~ W^ w{ w{ W^ w{ +: W^ w{ 3~ W^ 0 q^ w{ Q< 7! '! '! ,% , u/ P= P= '! 0, e# g# a& ~> ;% a& f# ;% g# a& g# k# 7. 6. ]= g# Z* F9 5. ~% ~> 6. Y- m# b. b. b. fk.m# c& ~* ,n.~* $i.Vm.~* Pl.Pl./l.,' bm.u$ ~* Pl.)% ~l./l./l.,W j@ && i> xi u$ t$ s$ _s A= j- ~* >* l@ && F9 l@ p@ ~> l@ t$ i> b. ~* a. u@ l@ l@ l@ ~* j@ u$ {* ]* o@ -& -& l@ -& xi 2. {* [y k> l@ x$ f@ ~* l@ a. t@ b& ~* l@ b& s@ k> u$ h# h# {* 9& k> -& u@ t@ x$ E7 h# (. p@ v@ v@ [y 8& {= h# ^. 1. {= 5& (. d# -. {. H! {. {. {. v@ U ,# X@ ; *) V! [) &[ + Ho.Io.Jo.Ko.Lo.Z> <, Mo.No.Oo.4, Z 4& A0 r^ T2 L5 Po.Qo.gd.~1.Ro.So.To.Uo.Vo.Wo.Xo.Yo.Zo.`o. p..p.+p.@p.#p.$p.%p.&p.*p.=p.-p.;p.>p.,p.'p.)p.!p.~p.{p.]p.^p./p.(p._p.:p. + = * + + L$ V! J$ e^ *) L$ V! J$ ], z~ *) [) %{ 2! e^ z~ q, q, 6' 5' [) 5' V@ L= 0 g e c r 7 9 o a b 7 *= 5 ", +"*[ z~ 2! 2! z~ ah.vh.z~ z~ 98.&[ 2! Pi.5' ah.vh.|1 9| w9.9| 9| <{ 9| *) <{ <{ J$ <{ <{ I/.<{ <{ R@ ;b <{ J$ R@ R@ ;b R@ I/ BN <{ ]& ]^ G= 0' I/ ]^ I/ 0' 0' I/ 0' 0' 0' # * + # + # # 0' # * + = + T@ # V@ = + o! o! [* > = Gc & > & & - $= S$ - > A; ' H= T@ - ' ; ; & Z! U$ N$ ; U@ . . & > %= - | ] o! N$ { X@ Z! Z! H= |, { | N$ N$ /& | 2 I= ] P$ { ~ { ~ J) ~ ## ( [ ## 5 6 { { { { V~ 1 2 b < ( N' 3* 7 ( 3* 6- 6 q> 3* 4 6- B; d 0 0 6 6! {# a 3* 6 k /& ~# ~# c ~# |& 0 e |& 0 0- ~# L= p s> k0.h n o L= Y$ ,> `$ q s> % c{ p y xE 1; D^ Y$ m Q(.`$ #] /# :# $S w D |Z G t 2; z ~& G G z w n! x w I z a7 I A$.'&.z A c- c- 8* z M T^ 1& T^ M T^ 3# 8* V c- |# J V c- M H Q J J >z >O Q qF BX zS 'Q #N ^P #N 3d 3d 3d #N 3d #N @N EN lP @N 58 7s 58 6B 7s mL 6B 6B mL $N rH Ou J J J J QL FN .J #J EA &N QL eQ _C Xz A0 |h _C A0 A0 A0 A0 A0 A0 /3 |h Yz `z Ic Y6 gg ~9 82 82 >b {9 b: 82 Y6 r/ r/ q/ A5 J: r/ L] X) J: f[ f[ 1~ ~] ~] w{ w{ 3~ +: =2 ~] W^ w{ W^ W^ W^ b* 5& 3~ u' -% , P= '! , , {= j# '! '! j# a& g# '% 2. 4. '% g# g# g# f' 8. 8. 7. l# b. R= l# )% b. b. m# b. -& 9. ~* fk.9. ,n.-& )% c& j- in.~* o@ Pl.r@ in.$i.cl.,j.s$ -& t$ $i.$i.j@ $i.l@ r@ o@ /i.n@ l@ && ~* m@ ~* A= ~> @m.l@ l@ s$ :; F9 l@ s@ n@ j@ j- u$ :; m@ :; {* k@ F9 Y* o@ u@ s@ q@ ~* ~* l@ s@ o@ t$ = o@ 3. 8o.h# h# ~* :. 9& :. o@ u@ m@ <. :. q@ q@ q@ x$ :. w$ 5& :. 6; v@ _. {= t@ '& (. 5& ^. {. &% t@ /* Q= w$ (. d* ^. :. ~. ^. !. x@ 1. Q' 6 ] + M$ g~ ], *) 5' ], *) 5' v, 5' g] =) v, q, <{ 3_ ^, v, q, ^, g~ g~ @ M$ (& < X$ O' 5* N= 8* $] N= 7p.7p.U zX zX B$ . !> 8p.F@ G@ ;' 9p.E[ ;! b# 1. 3- N- '& p2 ^* -O p2 j- 0p.ap.kW *& nH f@ bp.*& X* d@ w; X* b. u@ N- N- >& >& $. d- Q@ D ~# b $# ^ # & - = + + p9 R@ R@ !, J$ L$ *) e^ L$ @ ], e^ e^ q, q, v, [) v, [) ^, ^, s, v, 5' @] O$ a' a a f 7 7 j V$ &# j a b 9 $# ", +"q, q, z~ z~ 2! ql.vh.9i.*[ ah.|1 9| )~ )~ $8.|1 ah.9| 9| 9| *) <{ <{ 9| <{ 9| J$ 2^ cp.], *) J$ <{ <{ <{ L$ R@ ], <{ .( L$ L$ L$ 0' ]& L$ ]& #S R@ ]& I/ 0' k3 L$ 0' I/ + $ dp.# L$ $ V@ # L$ + ]& = 0' # # ' $ # # & $ - # $ Q$ > > $ V@ $ $ Q$ + - . o! > > + > |* + = > Q$ & > ; ; & N$ | R$ ; U$ | ; T- ~ Q$ . ; ] { 2 ~ | X@ ) 5 { 2 Z! Z! *# ) X@ ; ~ ~ { # ] ( ( 1 1 } D, { 4 X@ ( ( 6 U- D, a < 6 )1.e d Z! } ,# 6 ,# Y@ j ,# 7 a J] a 6! b ,# z: a ,# 3] K/ n !# W$ ,# k |& ~# ~# s> s> 0- r a' r n^ 2, q 4* 2, ,> h m `$ p! p ;) 4* Y$ ^# 4* t 1; w ^# 2; /# U*.$S F= @= G G C` G {& F= F= F= I F= a7 z N I n! I A I O@ a7 M T^ V 8* 8* M n! 8* V 2Z >z QT J 3# o^ i5 J O O d{ A: aV Z r! >O hU #N 'Q G$ tw 3d r! ^P 3d L@ #N `I @N _M _M qH 7s _M @N 7s 58 7s 6B 7s &k -I Ou {z :M H9 {z bf 0B bf eQ PL QL &N bS |h {C FE Xz @J /3 A0 /3 |h |h =. A0 |h Bw x5 x5 Z9 82 82 c[ 82 b: 7, Y6 Y6 d[ u! Ab J: X) 0/ L] a: ^5 a: ^^ /. 3~ w{ D~ 3~ 3~ +: w{ W^ 3~ w{ &% w{ b* 3~ w{ 5^ w{ u' B} P= 8; P= P= -% 3. j# 9, e# a& ;% s@ f# e# s@ ep.5. b& 4. ;% l# 7. 6. l# ~% 4. f# i- }. >% ~* ~% b. >% @o.b. m# _s k* b& ~% in.R= ~* s$ i> )% /l.b& @m.@m.l@ /l.~* o@ $i.j@ Y* t$ l@ u$ u$ _s m@ u$ a. ^* l@ b. l@ ~* j@ j- Z* i@ u$ b. n@ u$ u@ -& F9 ~* && t$ a. o@ b& t@ j@ u$ t$ =& s@ {* u$ l@ >& k> t@ u@ ~> @& o@ :. u@ x$ t@ -& =& u@ v@ (. = =& :. :. {. u@ :. t@ :. ^. (. >& {. /* t@ (. ~> d# x@ h# h# ,& {. s@ =% v@ d* ~. -. '. A@ b# ^. %. l Q$ M$ `, q, `, 2! s, v, r, s, v, [) q, =) r, v, r, r, =) x, q, r, r, @] *) J$ $ ; { $# g f n p! `$ N= x I A I ` O@ |# J D$ 2# H G$ .= X I@ C$ V fp.y@ A@ E@ E@ 4) y@ L) $% A@ &. =. .= #. (* L) 4# E@ z$ 7# V J@ .= D$ P@ M /# s> X$ -# &# | & O$ $ # L$ ]& L$ #S BN e^ *) q, *) *) e^ *) ^, z~ e^ ^, q, g~ q, ^, q, 6' r, ^, 5' `, z~ *) / k L= }& h f 6 } 7 V- < 6 $# } b ", +"q, z~ z~ *[ z~ z~ |1 ah.*[ z~ 2! 9| *) e^ *) 9| |1 <{ <{ 9| <{ <{ *) 9| <{ <{ J$ 2^ <{ <{ I/.J$ 9| I/.;b ;b ]^ 2^ ;b .( l) L$ ]& L$ I/ BN R@ 0' L$ R@ 5_ 1) [n 0' [n [n 0' = # # [n 5_ # # ;b # # $ 0' # # $= $ ]& # ]& L$ # > . 0' $ ; > . - S$ H= R@ > S$ . S$ & (& $ A; $ 0' ; %= Z! (& | N$ > | X@ R$ H= T- & (& H= - $ * ; %= 2 X@ ; ] ;# | 2 (& | ~ X@ | | %= ; N$ / { X@ / 1 8- / X@ /& $# [ ( 7- } : Y@ d 5 } } 6 6- J] $# 1 a [{ ,# 0 $# [{ $# q> 6! ~# ~# 0 J= 6 J] a ~# 6 K/ L= E, n {# L= Y0.~# L= h n 2, K= % `$ ]# s> ]# r ,> 1; ,> e<.`$ y p 1; ^# t w 2; 1; F /# 1Z /# w 1; t F= F= {& z /U F= E z F= G {& /# a7 AR w z z G I I z A 8* o^ M M c- M HV V |# 8* >z 3# E$ L Q Nd.L T T L 3; T T L@ E$ A: D$ qF #N pF 'Q L@ T 4# G$ 3d @N qH 4# `I tw 7s 6B qH 6B 58 7s BE 7s r4 ja ja Ou -I Ou {z r4 bf ja sH EA Ou F^ =. |h |h :3 /3 6# =. /3 |h A0 A0 /3 dy Bw ~( dB dy Bw Y6 Y6 Ic b: 82 Y6 >b Y6 Y6 q/ J: J: J: B5 1~ J: r/ r/ /. ~] w{ w{ =2 ~] =2 W^ w{ w{ 3~ w{ W^ w{ w{ w{ 3~ q^ p^ u' 1. P= , '! , `> ,% 0& {= ~= e# {= 2. g# 0, g# h# '% b& f# '% 8. R= 7. 8. 5. R= b. b. f# l# 5. 2. ~% gp.)% ~l.$i.in._s 4. @o.fk.~* a. @o.R= $i.in.$i.xi $i.s$ o@ ~* Ol.u$ u$ p@ l@ F9 ~* j@ Y* &p && i> ~* l@ u$ ,j.p@ ,j.u$ l@ u$ l@ ]* b& s@ Ql.t$ :. u@ u@ d# {* h# u@ o@ m@ hp.s@ {* w$ q@ F9 x$ O- _s {* E7 ~* s@ >% o@ s@ q@ u@ {= -& 8& c# (. q@ {. :. :. s@ <. 5& (. v@ ;& :. d# ^. H! C@ b# !. %% W> t@ v@ %. {. ). /* -. 1. !. %% !. %% !. *. {. O `@ = R@ J$ 2! z~ 5' ^, 6' +' %{ }) x, s, u, 6' x, =) v, @] v, r, r, v, [) @] 5' R@ L$ + ] ] ;# < *# / W@ 1 X$ r ~# r -) Y$ e p 2, h ^# 6* :# `$ D G Q@ O@ G I I M= I z @% C J #= n! S Q@ S I N@ A I M= I A N Y$ c c 6 ( $# ;# > ]& = # Z, Z, R@ L$ ]& ]& R@ *) 5' *) J$ <{ <{ ]^ 2! 2! e^ q, 6' ^, q, 6' 5' v, 5' q, ^, 2! ]& 8 c ># h n K/ g $# 8 7 < ( 8 7 a ", +"z~ z~ z~ *[ z~ 9i.9i.|1 9i.*[ 9i.9| *) e^ e^ <{ <{ 9| *) w9.<{ <{ 9| *) <{ <{ 2^ w9.9| <{ <{ <{ 9| .( l) <{ 2^ G= 0' I/.J$ R@ L$ I/ I/ R@ 9| BN I/ G= I/ I/ 0' 0' 0' 0' I/ R@ K$ # 0' 0' $ # L$ X! # + 0' $ # # + = # ]& # # |* ' $ $ H= $ S$ $= # > ' |* S$ S$ > S$ > Q$ & O$ o! ; > ; }* & X@ =' S$ N$ N$ & U@ U$ ' S$ U$ N$ U@ H= | | %= , ] *' P$ ) 2 7- ; N$ N$ 2 ~ N$ ] { [ 7- 2 } } 1 W@ 2 X@ 2 ( 1 6 7 Y> ,# 6 J] $# 6 d N' 9 V~ ( 6 d $# 9 [{ 0 ~# 0 a 0 a Y> {# ,# a 0 a q> 7 ~# Q{ {# i L= h 0 ~# s> n p Y$ % ,> n n `$ m ip.p p t ,> % 4* C ;{.y..q h :# :# `$ 4* @= w 2; w G {& F= G D G a7 a7 A z I z o^ M M 8* z . V KW c- M 3& J Z..H SO O 8* 3# U J n> 3; Oz MW tw ^P 3d pF 3d 3d 'Q qH qH #N `I E^ 7s `I @N 6B 58 7s 7s 6B 7s 6B E@ Ou r5 r4 Ou {z Ou Ou {z J Ou QL .J -K =. mG _C :3 |h /3 A0 A0 |h R' |h /3 /3 |h Ic x5 A0 A0 Y6 Y6 82 ~9 >b 82 82 >b Y6 ~9 L] x4 J: '= %% jp.X) J: r/ '= '= L] 3~ ~] ^^ W^ w{ 3~ W^ 3~ 3~ 3~ $^ w{ 3~ >' >& *% -% {= , '! 1. , P= e# {= e# a& P= a& 8o.'% 5. g# f# a& 7. 8. '% 7. 7. 8. 4. g# -& o@ 2. f# >% R= >% >% )% {= m# >% ~* b. ~* F9 -& ~* R= $i.)% >% ~* ,n.$i.,n.m@ pj.u$ Y* i> F9 ~* /i.s@ xi u$ kp.l@ l@ ~* r$ -& b. -& b. j@ @& h@ {* ~* u$ ,j.o@ {* ~* $i.~* t$ j- m@ -& {* ~* {* {* 0& 3- o@ -& j- q@ o@ :. u@ s@ F9 u@ {* u@ q@ P- :. ~> c# q@ u@ O- >& <. u@ u@ C= /* o@ (. :. s@ '& !. t@ 9# ^. %% v@ {. (. o) A@ &. p) (. x@ ^. ^. ). ). x@ !. $. -. C$ 4 $= J$ ], e^ *) *) %{ g] s, x, H) x, H) =) [) H) 7' s, r, H) s, s, =) q, [) [) <{ J$ ], J$ R@ L$ . > U@ ; ( ## b ,# d e Y> } 7 0 V$ [& 7 '# V- e c r r h q p W$ o c Y$ h C; 4* m |& h `$ c n `$ u % h g h 0 6 ( / [ | & . = pH > ]& ]& ]^ L$ R@ J$ R@ R@ *) 6' ], R@ ], ], *) 6' e^ ^, v, x, [) q, q, v, v, [) 6' [: U) e r h 0 ,# c 7 } b [ 6 $# i _ 6 ", +"*[ z~ *[ z~ z~ 2! q, Il.vh.z~ e^ |1 9| e^ Pi.*) 9| $8.<{ ^, 2! 9| 9| <{ <{ <{ $8.<{ J$ 9| I/.<{ ], R@ J$ <{ <{ V! BN ;b <{ 9| 2^ R@ I/ I/ R@ G= 5_ 0' L$ 0' I/ 0' I/ J$ 0' 5_ + # 0' = * # # L$ . = 0' = . . ' . V@ [* . $ $= & $ = S$ > P$ S$ > & & & S$ S$ # $= > - . > ] S$ & R$ ] P$ R$ H= ' & ; ; . U$ S$ H= S$ ^ & | ~ R$ N$ ; 2 2] X@ U$ ; N$ R$ 2 X@ | %# { ( 2 5 [ X@ { G9 ## { 4 Y@ 8- ( ( 5 } ( } 5 d 3* k 3* V) d 5 4 V) 6 6 6 8 q> 6 7 k 3* ~# k {# 6! 0 0 ~# e ~# ,# e K/ {# a z: ~# c c {# 2, c ~# r Y$ 2, r ~# ,> ,> Y$ 4* `$ q t /# b' p ^# p t D q :# ^# ^# :# :# F t /# w w C a7 a7 a7 a7 B z w 1& I G I I I #= I z 8$.z H$ A V 8* n! c- 3# c- =X |# |# Q 0S O@ Q Q c- i5 d{ Q qF r! r! oY 3d K) G$ #N #N 3d `I tw #N 3d `I E^ `I lL qH E^ 58 7s 7s 6B 58 58 ja rH rH r4 {z J {z {z BS bS cs &H ,I Xz =. lp./3 /3 A0 :C >I A0 /3 Ji /3 |h /3 Yz Ic x5 |h |h Ic Y6 Y6 Y6 82 82 82 Y6 8N jy q/ X) J: ;} %% 1( %% 1~ /. '= D~ 1~ w{ ~] =2 W^ w{ &% 3~ 3~ w{ p^ mp.(| 6& e' e{ u' 7& , P= -% H; -% {= *% *% }. e# _. e# a& h# }. 2. s@ 8. g# f# '% >% b. 8. 8. ~% 2. ~% >% 5. b& o@ -& b. ~* 4. >% F9 o@ m@ q@ ]* {* l@ o@ in.Z* ~> &p ~* -& u$ `* o@ j@ &p F9 $i.u$ Y* ,j.&p -& ~* i@ s$ $i.l@ N- m@ a. -& o@ -& l@ F9 v> o@ {* h# l@ 3. b& ~> t@ q@ j@ q@ -& o@ u$ -& ~* x$ :. s@ F9 q@ E7 ~> o@ x$ x$ C= o@ t@ t@ >& v@ -& <. {. 1. s@ u@ u@ t@ (. = :. 1. w$ (. 8& t@ !. q@ ^. ,& b# 9# ). ). ). ). A@ x@ z@ ,& -. v@ ). ). p, ;. =. A@ (* ^# & R@ e^ *) z~ [) +' 5' v, s, s, v, A, s, s, =) s, x, v, H) v, v, r, q, 6' q, g~ ], <{ L$ L$ #S V@ = > . | ] ) U@ ] { ^ ~ 2 ~ H= 2 ( :& < } 6 e g $# e g c h e ~# ~# 7 e ~# X$ 0 7 6 7 ~# *= i ,# } b < ) | | | W@ ] . $ + = $ ], R@ V! g~ z~ ], ], @ 6' J$ *) *) e^ *) [) ^, 5' =) 6' H) 6' ^, 6' @] v, )~ *) , 8 ~# c ~# ~# J= a 8 ,# i 6 6 8 [ $# ", +"q, q, z~ z~ *[ q, z~ z~ Il.z~ 9i.Il.$8.|1 Pi.<{ 9| vh.vh.5' *) 2^ <{ <{ <{ 9| 9| <{ <{ 9| <{ <{ *) 9| L$ l) ], R@ ]^ <{ <{ J$ G= BN G= L$ R@ jP L$ 0' L$ I/ 0' 0' I/ np.0' 0' = * + [n * # `Y = . # z] o! $ # . & ' [* > + > [* $= & $= S$ - . # . S$ Q$ & ; & Q$ U@ U@ =' %= A; * P$ op.T@ ; |* R$ (& * ; %= U@ & %= S$ - 2 - .# %= ~ 2 g{.) &= %= ; ^ ; N$ 5 2 X@ { ## / 2 } } 1 N' B; 2 < T- 1 } d d [ W@ 6 5 ( Y@ 6- 6 / d ># pp.} 9 6 6 k 2* 8 d ,# 7 q> 3* q> z: 3] !# a a L= 6! a W$ n E, tA L= n s> ~# 0- Y$ h L= ;= t' {# n c r 2, Y$ ,> r 2, t 4* ^# b' ^# $] Z$ F :# Z$ t @= /U {& :# m n^ G G /# E 2; G a7 N n! a7 C {& B n! z z O@ O@ #= 8* G M I $T KW >z E$ 3# c- c- 5 .|# Q d{ 3& E$ J J T A: MW A: SO r! r! qF 3d G$ G$ G$ #N G$ 3d U^ 3d tw qH E^ DN pF qH 7s 6B 58 mL E^ 6B 6B mL rH ja wr {z {z Ou Ou ja cs r5 $i bf {C /3 ;' !& ;' A0 Xz oO A0 |h |h |h /3 A0 ~( Ji |h |h &i Y6 qp.Y6 >b Br 82 Y6 Y6 Y6 82 b: u! a: x4 J: X) a: D~ %% /. D~ 3~ ~] L] 3~ &% 3~ 3~ 3~ &% 3~ 5] 3~ (| (| >' 9& 6& Q= >& *% -% P= , 8; e# X- ~= 1. j# }. }. h# 2. E7 8. >% }. 8. u@ b. ~> o@ f# i- }. q@ _s >% -& b. 2. o@ 8j.o@ in.$i._s ~* 4. F9 x$ 8j.'% o@ l@ c& u$ ~* a& l@ u$ _s ~* ~* 8j.~* ~* F9 o@ m@ o@ Pl.p@ ]* l@ @& F9 l@ t$ 9& ~* j@ l@ ~> l@ k> O- u@ m@ u$ ~* ~* <. -& o@ s@ ~* F9 =& ~> h# d# t@ t@ d# ^. :. 8o.P- C= s@ 1. s@ o@ ;! <. 1. :. h# s@ x$ O- q@ 9& = w$ (. 5& = 9& N- t@ ~. ^. W> ~. >& v@ A@ &. -. -. A@ !. !. 5& z@ 0# ,& &. !. .= A@ z$ [, A ; R@ 2! *) z~ q, 6' 5' s, v, s, 8' =) H) v, s, s, 6' r, v, q, +' v, q, [) v, 2! 2! )~ s' *) <{ R@ 2^ R@ L$ = + * # # > & ; | [ | | ~ | ~ ( } %# @# ) ( 6 $# } } _ ( < 7 == -# 9 } } b 7 } Y@ < X@ ~ N$ ; > > ] - * 0' ]& l) 0' 0' <{ ;b *) e^ z~ )~ 5' e^ 5' 6' q, J$ z~ r, [) v, q, 8' 6' v, v, u, r, q, s, i) R@ [ c 8 b 6 b 8 W$ 9- 7 6 8 $# == ( $# ", +"z~ z~ z~ z~ z~ *[ *[ z~ rp.vh.ah.z~ |1 $8.*[ )~ 9| xi.$8.)~ 9| <{ *) <{ 9| 9| 9| 9| <{ *) 9| 9| <{ <{ <{ 9| <{ J$ R@ #S <{ J$ J$ ]^ ]^ L$ L$ 2! 2^ I/ L$ I/ 0' 0' 0' 0' 0' I/ 0' * * ]& 0' # K$ = = + $ k) 2) ), + $ k) # # . ]& =' & ' . + # + . [* > ' > S$ - . $= U@ o! & U@ . H= & . S$ P$ ^& & . | ; ; J) R$ ^ H= ; ] | %= A; | *# | ~ 2 o! ~ ~ %= X@ | 2 2 } 4 4 5 $# { ~ } 8- 2 ## 7- $# *# 5 B; d +# [ ,# ( d 5 } 8 3] 6 b 6 Y> 9 5 k 7 Y@ k 7 7 a' ,# 6! ,# c 0 k 6! a a i !# L= |& a 2, L= h s> Y$ r -) L= h L= 2, ,> n^ 2, `$ q h `$ d<.m 1; t w 4* /# :# ^# :# `$ w w G #] G b' 2; {& p F= G 2; z C G B w F= '&.M O@ O@ A M I A F= 8* H$ |# Z |# Q@ M S 3; A: d{ O@ Q L A: r! G$ M r! O qF #N d- G$ 3d 3d 3d `I G$ G$ O= qH 58 lL qH 6B 58 6B 7s 58 q9 7s 7s 7s rH H9 ja Ou Ou Ou Ou ja ja $i bf ,I =. ;' >I Bw |h A0 dy |h |h |h |h A0 /3 dy x5 |h dy c[ Y6 Y6 Y6 Y6 82 82 Y6 <3 82 Y6 9# X) J: J: %% %% r/ ^^ '= X) ~] =2 ^^ %% 1~ 3~ w{ &% 3~ 3~ &% &% w{ (| 3~ q^ B= w{ sp.R/ e* 5) , g{ 7& {= {= P= ,% /* e# g# 3. 2. ~> a& {= x$ 7. b& R= 4. '% >% R= F9 >% >% '% m# b. b. m@ {* t@ b& F9 ~> )% >% R= o@ >% F9 l@ $i.F9 F9 ~* o@ s@ m@ F9 u$ Z* -& F9 u@ l@ o@ -& ~> ~> ~* u$ 2. ^* o@ u@ u$ m@ ~* u@ j@ x$ r@ {* E7 -& -& = F9 {* Q- q@ ~* {* -& :. x$ x$ d* w@ :. /. ~. (. 9& :. u@ u@ w$ t@ :. 1. t@ = {. (. h# q@ ~. u@ o) '. :. <. d# (. ^. x@ (. {. w$ ). {. A@ $. ). ^. '& #> {. =% d# ,& 5& x@ -. (* &. !. ). x@ 6# !. ,= a J$ J$ z~ 6' q, [) s, s, v, H) v, x, 7' s, 8' v, s, x, s, s, x, t, 6' 6' q, 6' z~ q, ^, <{ ;b L$ <{ ]& L$ ;b G= + $ # + & > > ; ; > Q$ > ; N$ S$ | ; & ~ | , N$ 2 | H= ) ( H= ~ ~ { W@ , U@ ) | ] ^ & S$ . Q$ S$ $ M$ 0' L$ J$ ]& R@ ], R@ )~ q, 2! [) %{ ^, 5' [) ], ^, z~ ^, M| 6' e^ v, v, e^ [) v, s, [) 5' H) - 7 e &# j 6 a 7 e 6 6 $# W@ } d == } ", +"z~ z~ *[ z~ z~ *[ *[ z~ Il.ah.z~ *[ 9i.$8.z~ Pi.98.xi.9| *) 9| *) 9| 2! 9| 9| 9| <{ <{ <{ 9| *) <{ <{ <{ J$ L$ I/.R@ 2^ 9| J$ J$ J$ BN J$ 0' J$ R@ <{ 0' I/ I/ ]& I/ 0' 0' 0' 0' + # # 0' 0' # * $ # = o! + 5_ ]& #^ k) . 2) & = S$ . # = $ # $ L$ + $ + . $= U@ N$ . U@ . X! & U@ = Q$ U@ R$ H= ~ %= $= & %= N$ Q$ & - | & ~ | | N$ | Q$ ; ) X@ X@ 7- | { 2 tp.( | [ Y@ { I= ## P$ H= ~ ## 2 1 ( } 4 [ { {;.} D, Y@ d 6 *# 5 7 )1.># } 9 6 3* 5 D, a q> c6 3] ,# 3* 7 c } 6 d 8 n 0 L= k 7 a n n n h Y$ h s> |& Y$ n p r Y$ r p m `$ 2, r ;= ;) b' 2, Y$ 4* /# w :# D {& p `$ w C {& {& {& {& ^# 4* G F :# F= a7 F= #] a7 /U z 1& w A I M M M F= M &> N c- T^ T^ M P@ F= O@ >z >z Q J E$ L 3# :* T |# O J Q d{ G$ G$ pF 3d ^P #N 3d 3d G$ 3d 3d `I 58 E^ `I tw 7s 6B 7s 7s 6B 6B 58 7s EN EN q9 ja Ou r4 Ou J EA Ou &H up._C =. C@ EA /3 FE A0 :3 A0 =. |h `z /3 /3 |h `z |h A0 vp.9/ b: Y6 b: 82 Y6 Y6 a: b: >b 82 '& '& %% 7, %% J: q/ '= r/ ^^ ^^ =2 D~ ^^ D~ 3~ w{ w{ 3~ 3~ 3~ */ w{ w{ 6& |. p^ ,% ,% e* -% |. e' {= e* s@ *% t@ -% a& 4. i# e# f* g# a& s@ 2. e# o@ j# >% wp.s@ [y h# u@ R= b. b. R= b. q@ )% 5. F9 in.F9 i- @m.s@ m# ~* $i.$i.R= Y* ~* F9 ~> -& l@ u$ a. o@ 8j.s$ Y* -& r@ i> u@ {* p@ E7 F9 t$ q@ u@ a. -& 2. $i.~> u@ Q- m@ ~> = -& o@ ~> t$ {* [y u@ q@ u@ v@ w@ q@ >& {* 9& v@ s@ v@ 1. v@ u@ :. u@ a. ~> ~* s@ %% _. :. '. x@ ~. ^. ). v@ x@ d# ). ). {. v@ ~. {. x@ !. x@ !. )& &. ;. &. -. ~. {. %% ~. -. -. ). ). {. ). )& A@ +. W p & + ^, q, z~ q, =) v, x, H) v, w, v, s, s, x, s, =) }) v, s, +' @] 6' 5' r, 5' q, 2! J$ <{ e^ )~ *) `, R@ R@ L$ l) J$ = J$ + M$ + + + $ & . Q$ ] ] %= ; ; & U@ > | ; P$ U@ (& ; | N$ . > ; S$ S$ ; S$ |* - . Q$ L$ L$ $ $ > 0' L$ J$ J$ <{ *) ], )~ ], 2^ J$ *) J$ e^ g~ +' *) *) *) q, q, ^, g] 5' q, x, s, v, 8' +' 2! | ~# a 7 =# ,# {# k 7 g $# } < ( $# ## X@ ", +"z~ z~ z~ z~ z~ z~ *[ z~ 2! vh.ql.*[ z~ *) *) e^ e^ 9| 98.$8.<{ <{ 9| 9| <{ 9| 9| q, 9i.;b J$ ], R@ <{ <{ R@ L$ =$.J$ 9| <{ I/..( R@ R@ R@ I/ L$ *) *) =$.I/ ]& R@ I/ 0' 0' 0' 0' = # $ 0' 0' # # ]& I/ $ = L$ % # Q$ [* S$ Q$ [* ' $ ' 0' # - N$ . > & *' U@ |* . > & U@ |* . . | H= P$ |* ; ] H= ] # N$ R$ ; ; | & Q$ R$ | U$ *' ; 2 . & O$ X@ I= 5- `@ & X@ N' ~ [ { { N$ 05 2 [ ## X@ } } /& < /& I= { 2 /& 5 $# 5 6- { 6 Y> 7 5 ># 7 d d 3] q> 3] 6 a 0 k c5 q> k ( ,# ~# } $# J] ~# 0 k j f h c c L= 0 W$ |& L= }& {# p p L= % `$ c{ % `$ r Y$ Y$ q m t 4* @= #| ^# % :# B :# t w w 2; 2; t #] ^# t G {& D F= B D a7 N F= 1& w z I AR 1& 8* I A O@ 1& O@ 8* 8* A 3# I & u' &% (. P= |. 9, P= -% :. e* ~= (. :. v> ~> {= h# s@ a& ~> 4. f# l# a& u@ i# ~% 2. o@ -& -& _s ~* o@ u@ b. R= ~> b& h# u@ Z* ~> ~> u@ -& R= q@ ~> o@ >% a. ~> Y* l@ ~> h# m@ ~> m@ ^* s@ F9 R= s@ o@ s$ F9 s@ m@ u@ t$ t$ ;& s@ s@ -& m@ :. d# s@ ~. q@ {. o@ x$ (. x$ = u@ = |. {* = 8& q@ :. 1. :. s@ v@ u@ t@ C= :. :. x$ :. v@ a6 v@ h# d# {. c# t@ {. &. 1. q@ '. (. {. 1. b# ;' (. '. {. ). {. /. A@ ). ). b# !. ;. ;. A@ -. ). &. *. 5# .= &. A@ +. S | R@ 5' 5' *) q, z~ v, s, x, =) v, r, v, v, r, s, x, s, [) v, q, v, s, 6' v, @] 6' +' v, 5' q, ], g~ 5' z~ s' )~ ], J$ ]& L$ ]& L$ # # 0' + 2) & > . . > $ $= L$ . ; & ; & - . $ ; ; & & {c ' > $ Q$ + $ $ $ p9 p9 J$ = + <{ L$ *) ], J$ z~ q, z~ *) ]^ g~ e^ e^ *) @] z~ 6' q, q, q, +' q, 6' 5' ^, r, H) v, +' ], 1 a =# a :& -# b ># ,# $# e $# $# 7 d -> { ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ |1 Il.z~ z~ 2! $8.|1 e^ 9| 9| 9| 9| *) *) <{ <{ 9| 9| *) <{ <{ J$ <{ J$ I/.<{ 9| <{ <{ <{ R@ 2^ l) l) R@ R@ R@ I/ ]& R@ I/ I/ I/ I/ I/ I/ 0' 0' I/ 0' I/ $ L$ I/ #S # + ]& = $ + X! ]& V@ . S$ [* . Q$ [* # # Q$ + = $= & ' > V@ Q$ $ ' . # & S$ U@ N$ $ - Q$ =' ; U@ %= ' - N$ 2) (& ; - & %= H= & # | | Gc U$ U$ | H= ] ; 'W *# `@ /& { | | [ 2 | 05 2 ] | ~ ^ ~ 7- 6 ( /& 2 { /& /& { < 2d d :& c6 U- G9 { d } == 6 6 d } 7 a tA a 7 {# ># e [& 6 b ,# a' !# c L= !# Y$ L= b ~# 0- c Y$ &].s> r L= _# L= Y$ p 2, 1; Y$ `$ Z$ Z$ 0< v ;= ,> h p ;) 1; `$ /# {& @= w {& G {& F 2; G G F w {& :# G z n! F G z A F= F= W) E; O@ T^ 8* O@ n! M O@ I M c- P@ I c- |# >z }Y 3# |# A..J O@ aV *I T T L qF D$ T U^ E^ r! G$ 3d 3d L@ 3d #N 'Q 3d O= 58 4# 7s 6B 58 7s 6B 58 7s r9 7s q9 r4 H9 Ou qH xp.cf ja ja r5 r5 L) Xz C@ . =. =. =. =. /3 =. =. /3 A0 =. A0 R' t( dy df Ic b: b: b: Y6 Y6 9# b: Y6 82 q/ %% J: X) q/ X) X) %% 0/ %% a: 3~ 3~ D~ &% 3~ &% &% &% 3~ 3~ +~ >' W^ ^^ -{ &% >' '. |. e' d* t@ `> P= = v@ {= 7& ^. 0, >& h# a& a& s@ '% q@ 8. 2. o@ -& 8& h# s@ ~> -& x$ 2. o@ ~* o@ s@ b. F9 F9 -& Y* F9 o@ ~> ~> m@ {= {= ]* F9 s@ -& -& o@ -& ~> ~* o@ {* o@ o@ s@ F9 s@ a& b& {* ~> v! {* o@ s@ {* O- <. u@ a. ~* d* u@ ~* h# O- q@ ;& o@ o@ 8o.q@ (. q@ :. :. E~ ~. {. o@ >& w$ u@ 9& (. >& (. w$ <. (. v@ :. x@ !. A@ ^. :. 8& C= ~. B@ 5& ^. [, -. *. &. (. (. [, e- z@ ). ). v@ x@ &. 0# +. A@ x@ {. -. ). ). &. )& *. l> (* ]. A@ .= [ !, *) 3_ r, q, s, s, s, s, s, x, v, s, v, v, =) u, s, t, u, v, u, s, |) v, s, @] [) +' q, ^, [) q, q, ], ], *) *) J$ <{ J$ *) J$ J$ M$ S- J$ ]& = . 0' + 5_ # = . # . = V@ = . $ $ 5_ = $ V@ . X! & > . M$ 0' 0' I/ # 0' L$ 0' *) L$ <{ R@ ], ], ], 9i.g~ *) `, <{ e^ V! ^, z~ =) ^, z~ g] q, v, s, A, q, s, r, v, v, v, g~ }* k {# ~# J] V- a 0 0 0 ,# 6 *# ## $# d &# $# ", +"q, z~ z~ *[ z~ z~ z~ z~ 2! 2! |1 q, z~ 9i.vh.xi.*) *) 9| $8.98.98.9| 9| <{ 9| 9| <{ 9| <{ J$ J$ jP 2^ <{ <{ <{ ;b <{ 2^ R@ .( <{ <{ <{ J$ G= I/ I/ R@ ]& 0' X! k3 I/ 0' I/ 0' 0' p9 = + 0' 0' ]& # $ # # M$ = k) $ # > V@ $ > [* 2) = V@ + o! S$ |* [* + V@ - $= [* - 1* S$ H= H= - Q$ ; U$ & ' U@ . | > U@ > U@ U@ ~ ; {c R$ | Q$ & b{ U$ | | H= | ; R$ &= [ 2 %= | X@ | 2 < -> 2 Z! 5! ## 5 [ 1 2 d 5 5 5 { 5 ( 6 b ( d &# d a V$ d 3* 6 } $# I= ( d $# $# a 8x 0 3] a' 2* ,# 0 6 e ~# e 7 a 0 !# ~# i s> L= 0 -) 0- |& V| s> Y$ h c n ,> d<.K/.p ,> 2, vA q Y$ 4* y t Z$ t t p ^# /# t t ^# w B Y$ G B F= G /U C` G N E; z n! I m) a7 E$ 8* Ri.z .Z..3& Q c- 3# O A: aV Q E$ E$ J L@ L L@ d- L@ 3d 3d 3d Vf qF 3d #N ^P qH E^ tw E^ 58 58 O= 7s O= 6B 6B q9 BE tw 58 C$ wr 7s ja r5 wr r5 ja $i .u F^ F^ L) /3 A0 ;' A0 /3 A0 /3 ~( ;' A0 /3 A0 Z9 A0 vp.6d b: b: t( b: b: Y6 b# b# b: <3 %% J: %% X) /. '& %% /. X) ^^ '= u! J: 1~ 1~ &% &% &% +~ &% ,& >' w{ 3~ -{ mp./* H; |. /* t@ ~. H; {= ~. c# v@ e# 8& /* :. u@ a& s@ 8o.2. 8o.s@ }. R= b. >% '% r@ ~> s@ -& Y* F9 ~> [y ~* -& h# o@ o@ u@ ~> j- o@ ~> o@ h# o@ 8j.-& (. u@ u@ q@ {* {* F9 u@ Z* ~> Y* o@ u@ t@ {* ~> 1. s@ m@ s@ -& t@ q@ -& x$ 3. P- s@ w$ :. E7 h# ). q@ t@ 1. q@ P- >& q@ s@ t@ <. P- q@ w$ <. -& 1. C= v@ {. 9& w$ ^. =% O- x@ != {. ^. w$ u@ 9& c# ]. !. v@ '. &. !. v@ x@ !. ^. ). ). ). ). {. !. 4) H! =. x@ &. A@ z@ !. z@ 5# *{ )& &. &. ). .= E@ !. e- W$ ] g~ [) z~ 6' s, s, 8' s, v, v, x, u, s, v, x, x, x, ' s, v, z, r, 6' r, %{ 6' x, q, ^, q, z~ q, 2! e^ <{ <{ J$ `, L$ q, ], V! L$ <{ ], 0' J$ L$ k3 !, L$ + + X! p9 0' 0' * $ # # + # L$ J$ )~ L$ + . ]& $ ]& 0' ]& ]& L$ p9 ]& ]& J$ L$ <{ J$ <{ e^ <{ ], L$ e^ ], J$ q, <{ yp.@] 6' z~ z~ 6' ^, v, [) v, [) r, q, r, x, q, s' ; {# ~# 0 &# 7 7 a a ,# ## 6 j $# 9 { $# / ", +"*[ z~ z~ z~ z~ z~ *[ *[ z~ 2! Il.2! z~ z~ *) 9| 9i.e^ 98.2! 98.9| 9| <{ <{ 9| 9| <{ 9| 9| <{ <{ J$ J$ #S 9| *) r4.<{ ], R@ R@ 8S I/.J$ 2^ ]^ G= I/ G= 0' 0' L$ BN I/ 0' 0' 0' 0' 0' ]& # $ [n 0' + V@ + Gc # $ k) # 1) # $ . k) . V@ ' # V@ . Gc # S$ + # V@ $ $ > & S$ U@ > > S$ & ; & $ > S$ | %= - | o! # T- Z! Q$ | U@ | > ^& H= ; | R$ ~ ; ^ %= %= [ ( ) Z! ## ~ 2) ) ~ | | Y@ 2 X@ [ 7- ( 2 ~ /& 1 6 ( Y> } } <& } 3* 5 7 V) 3] 3* 5 } $# d ,# 0 $# a 3] 3* ~# k [{ a vk Y> 7 ,# !# } 7 n ~# s> k -) n -) h Y$ |& ~# h 2, ;= Y$ L= h ,> h p s> s> Y$ ;) 1; s> D ,> `$ q :# /# `$ ^# b' 4* q % G {& F= w w z F= . /3 =. =. A@ A@ ;. 9# 9# b: 9# Y6 b: H! !. c[ d[ $. q/ 7, X) q/ u! '. %% *. H! 1~ 5& ~] &% D~ ~. v@ 3~ &% ~. &% d* &% '. |. 9& e' g- *% 8& t@ (. `> 9& ,% >' t@ :. /* (. t@ s@ {= :. b& a. i# {= r@ o@ b& a& ~> u@ s@ {* o@ ~> {* s@ Q- >% F9 -& ]* Y* 3. o@ ~> {= s@ u@ -& m@ o@ ]* o@ Q- s@ s@ E7 l@ o@ <. h# 3. {* h# ,% o@ -& s@ u@ -& :. s@ a. q@ u@ w$ ,% ~> u@ = /* = o@ 1. {= o@ '& {* x$ w$ d# <. q@ (. C= O- u@ %% w$ 4_ <. x$ =% d# 1. (. v@ F9 '& gT {. w$ 9# v@ d# '. ^. ~. %% '. {. b# {. '. ^. !. 0# '. x@ +. 5# gT !. !. ;. ). 5# !. z@ z@ &. -. &. !. -. ;. x@ z@ .. z@ .= S ^ J$ <{ ], q, 5' s, v, 6' r, v, x, H) s, t, v, v, s, t, +' v, g] s, r, q, v, 6' +' 6' q, q, e^ e^ q, ^, e^ ^, e^ e^ e^ J$ *) e^ J$ I/.J$ J$ *) L$ <{ L$ ]& X! !, R@ R@ L$ ]& 0' > = = $ R@ J$ L$ ]& ]& L$ R@ L$ + L$ R@ R@ <{ J$ R@ ]& .( J$ L$ J$ q, ^, ], <{ e^ ], *) 2! q, ^, ], q, q, r, [) ^, [) z~ 6' v, =) [) s, s, 6' r, 2! g~ | 6 {# k e b -# 6 6 2 9 < 2 6 d ~ / } ", +"z~ z~ q, z~ q, z~ z~ q, z~ *[ ah.xi.z~ rl.*) 9| xi.9i.)~ vh.|1 9| <{ 9| *) 9| <{ <{ 9| 9| <{ <{ R@ R@ l) <{ J$ <{ <{ l) .( ]^ ;b <{ .( J$ R@ G= I/ G= I/ 0' ;b ], I/ 0' [n 0' 0' ]& =[ =[ K$ # 0' 0' * # $ + % $ = * 1* . $ Q$ $= + ' > V@ > = [* . + L$ # # . $ ] > > = > . = # - T@ $ ] & > U@ ^& & * ] ^ N$ N$ 2 2 ' ] - ; U@ | ; ] ) %= | Z! ## ~ { ~ H= > | ~ | Z! ~ ) X@ ~ } *# ;# | 2 Y> N' ## } d *# => } ,# 6 6 &# ,# 6 $# ,# B; a' < ,# 3* 7 ## 3] 2* ]c ,# a _c.0 V$ !# a a 3] L= 9- h s> L= K/ E, `! r ;= 0 c Y$ r r s> s> c 1; n s> Q(.zp.q q Y$ D m 4* ^# 2; /# `$ :# :# {& t ^# G w 4* /# G B a7 B G }# K #= {& {& w N= G U*.1& #= $T 8* n! w X8.M .@.O@ 1& F= z E$ o^ M c- 3# 3# 3& L 3; |# :* L :* U r! L U^ r! jI tw 0* T U^ G$ O pF t> 0* 58 O= pF _M 58 58 58 58 58 7s r9 r9 6B 6B ja ja ja {z Ou ja H9 bf bf R{ .u =. 5# %i a* F^ =. =. =. =. ,. ;. &. ]. =. &. ~( $. Z9 9# 9# t( 5; b: t( b: b# b# Y6 b: ;} 5; H! ;} 7, /. ). b# H! X) {. 5& D~ /. {. {. D~ ~] X) &% ~. d* 3~ 9& 5& ~. v@ 6& D~ e{ 1. ~= Q= Q= /* /* v@ 9& :. t@ e# t@ Q= 0& 0& s@ :. s@ t@ o@ o@ u@ q@ E7 b& 3. = 9& {= u@ 2. a& o@ q@ s@ [y ]* s@ o@ o@ o@ o@ -& o@ -& -& h# ]* -& 9& E7 m@ :. u@ u@ h# <. ]* m@ s@ u@ u@ l@ D= u@ q@ -& s@ ~* ;& u@ w@ O- O- q@ w$ u@ (. q@ N- :. >& w$ >& = (. w$ C= C= w@ O- (. (. !. ~. q@ v@ '. =% B= ^. o@ ^. ). v@ /* v@ ~. {. 5# !. {. ;! ). v@ '. x@ ;. (. )& &. v@ '. &. gT A@ $. 5# !. ;. x@ =. &. ). &. ;. b# v{ .= +. z@ A@ .= z@ )= z$ a $ R@ 2^ 6' s, r, r, v, v, v, v, s, s, y, v, u, u, s, s, x, s, s, s, s, s, v, v, 6' [) +' v, ' 6' ^, ^, e^ 5' %{ `, 5' *) q, e^ l) J$ i) J$ L$ ;b L$ <{ l) J$ ]& R@ R@ <{ J$ R@ <{ J$ J$ g~ s' p9 <{ )~ *) J$ ], )~ <{ L$ BN ], ;b *) J$ ], 9i.I/.e^ g~ J$ J$ z~ e^ z~ 2! 6' 5' q, ^, 5' q, q, g] @] z~ r, v, @] s, s, s, s, v, v, s, s' $# e n ># 6 6 a 3* &# Y> a &# { V$ b } ~# < ", +"z~ z~ z~ z~ q, z~ z~ *[ z~ *[ z~ vh.9i.*[ *) 2! vh.*[ Pi.|1 |1 98.|1 9| 9| 9| *) 9| 9| 9| <{ I/.R@ R@ J$ <{ J$ <{ <{ ;b L$ J$ J$ R@ I/.BN G= R@ #S L$ J$ jP ;b 0' G= 0' L$ 0' 0' ]& I/ L$ # K$ X! 0' Z, 5_ ]& L$ # k) # ), % + # . * . o! 1* ; . $ . # k) [* $= $ = . . > = |* > & # > > > V@ V@ > T@ S$ 2 %= N$ N$ |* Q$ - .# ; 2 | N$ *' ] . Q$ ; U@ 2 H= & [ 2 5- ] ] N$ %= X@ *# [ R$ } $# [ 2 2 / ~ 2 &# /& { D, 4 5 Y> Y@ 1 V~ 8 } x0 q> d *# k q> 6- [ ) 5 ( 6 a ># ~# ,# 0 q> ~# 6 [{ ~# 0 ~# j 0 i o n L= h L= L= a h c C; n^ s> vA _# h n^ 4* #| ^# 4* V| u :# p ,> % ^# :# 2; :# /# t F #] G w 2; B F= z B F= ^# /# B F= }# F= E }# ^# n! G E; O@ {& G 1& 8* n! O@ A V N K@ 1& #= 3# E$ Q J c- |# P@ 3; Q E$ H J 3# c' H r! L@ 3) 0* d- L J L@ T tw 4# G$ 0* `I E^ E^ I@ 58 6B O= r9 O= 7s 7s r4 ja ja ja r9 ja H9 PL ja Ap.-K L) =. al bf F^ /3 $% R' A@ /3 ,. 5; /3 /3 :3 x5 ,. ~( =. t( 9/ >. Ic ;. b: b: 5; Y6 5; ;' ;. 7, 9# H! u! X) D~ a: /. ). X) 5; ;} ~. %% /. &% {. &% 3~ +~ /. ~. b# D~ |. t@ Bp.8& *% Cp.<. |. v@ k~ 5& :. ~. d* '. h# s@ kp.Q- ~. 3. w$ h# {= 4. e# h# :. >% |. :. <. *% (. a& F9 {* Z* o@ = ~* 2. F9 2. 2. s@ h# u@ {* s@ u@ {* -& q@ h# l@ 8& s@ u@ 3. u@ x$ w$ >& u@ ,j.t$ s@ o@ o@ t@ s@ u@ B= (. q@ /* x$ -& t@ q@ :. ^. 4_ q@ v@ w$ d# (. ). E~ B= x@ = x@ &. o) ;. >. ^. :. {. t@ w$ ^. {. ^. &. '. d# w$ 5& !. /. !. &. '. !. =% !. A@ '. S' A@ 6, (. l> x@ !. =. ~. >. A@ ). 5# z@ &. '. (* !. +. 4& .= )= z@ z@ [, )= +. z@ _# & + S- 2! q, ^, 6' v, v, w, s, v, 8' y, s, z, s, 8' s, u, s, s, s, 8' @] v, s, =) Dp.s, s, s, 6' 6' q, 5' ^, e^ `, ^, <{ ], *) s' ;b L$ <{ J$ s' g~ J$ ;b s' )~ J$ e^ L$ R@ L$ L$ L$ p9 L$ ], ;b ;b g~ s' *) *) V! J$ L$ ]& L$ L$ ;b *) *) z~ e^ )~ <{ 5' @] q, g~ q, e^ 2! 5' q, z~ ^, e^ ], 6' q, v, [) v, =) r, v, s, v, v, s, +' z~ + j ~# n ,# a 7 3] o &# N' k 6 ## 2 } } [ : ", +"*[ z~ z~ z~ q, z~ q, *[ ql.9i.z~ 9i.|1 z~ z~ 2! xi.2! e^ 2! 98.*) *) <{ 9| 9| *) 9| 9| 9| <{ I/.J$ 2^ J$ I/.<{ J$ 9| ;b ;b 2^ BN J$ <{ R@ G= R@ BN ]& <{ <{ <{ I/ I/ I/ I/ I/ I/ L$ I/ I/ 0' * + 0' # + # ]& R@ # . o! $ ]& . $ # Q$ + . > > $ . . ]& + V@ > V@ ]& V@ + . . # . Q$ V@ - & . ; N$ ] - & - N$ ; ] | H= }* ; Q$ ! U@ N$ 'W ; Q$ ~ U$ ) Q$ Q$ [ P$ S$ | ) N$ | { 1 => ] ) | 9 ( H= { 1 I= 4 4 ~ } /& &# } 6 / 6- [{ 6 J] J] $# } d ># } } d 7 0 Y> 7 tA ~# a k ~# vk 6 } $# ,# J] ~# a ># n n ~# L= c |& q> )# Y$ 0- o ,> -) 2, 2, ;= ;= m % Ep.n^ `$ @= @= q m t p q ;) n^ n^ 4* m F F= D G 2; {& 2; F= W) G a7 /# G #] n! w A G G B w w I O@ O@ T^ M O@ I M |# |# |# M n! c- 3# |# H P@ L H E$ |# A: C, L@ Q ` E$ L' L@ U^ r! T L@ d- ^P U^ 4# L@ 0* G$ @N @N qH 58 58 ={ C$ 58 6B r9 n) q9 ja r4 r4 Ou bf r5 H9 F^ +. /3 ,. df =. /3 =. =. ;' A@ =. ~( ,. x5 :3 x5 ,. ;' $. $. Ki gg b: t( Z9 ;} <3 Y6 Y6 d[ '= !. 7, q/ [. /. x@ ;} ). b# ). x@ &% =% /. != '. ~. =% 6& 1~ b# /. 9& `> |. 9& != e' :. {= 8& >& r^ ~. v@ _. ~. _. 7; a& {. e# h# s@ '% x$ a& s@ u@ ^. h# s@ u@ ~> s@ q@ h# b& ~> F9 s@ k> F9 -& =& :. :. u@ u@ ~> -& u@ 1. w$ Y* v@ l@ h# h# :. t@ h# a. w$ r@ Z* s@ :. w$ m@ -& Q- [y ^. w$ u$ d# :. q@ :. o@ (. ^. :. (. (. (. w$ = u@ '& w$ !. C@ W> v@ '. /* w$ = 5& E[ 9# v@ q@ d# 5& ^. ). v@ :. ^. A@ !. x@ ). =. v@ {. B@ !. !. =. !. -. x@ &. &. B$ ). -. d# (* +. A@ z@ 5# A@ E@ D@ -. ;. G@ A@ )& ;! &. &. x@ .= #. F; &. .= Q@ - ]& e^ 6' ^, r, s, r, v, }) s, }) s, s, s, s, s, s, x, x, s, +' v, s, v, v, s, +' =) s, s, 8' =) 7' 6' 6' q, q, q, s' ], <{ <{ `, ], ^, ^, *) ], 5' <{ <{ J$ )~ <{ s' R@ <{ R@ <{ J$ J$ *) <{ <{ <{ s' ^, J$ )~ <{ J$ J$ L$ R@ ]& *) e^ z~ e^ ], J$ ], q, 6' z~ z~ 2! e^ q, ^, *) 2! r, [) 6' v, q, v, s, ' 6' v, r, y: 6' s, s, x, *) f] Y@ 7 vk /& a 6 == 7 V$ 6 k ># { 2 ## $# ## ) ", +"q, z~ z~ z~ z~ z~ q, z~ ql.q, ql.*[ vh.9i.z~ 9i.2! xi.*) Pi.|1 <{ vh.e^ *) <{ I/.<{ 9| 9| <{ <{ <{ 9| ]^ <{ <{ J$ <{ 9| <{ J$ 9| 9| <{ R@ R@ R@ ]& I/ *) <{ p9 ;b BN L$ 0' I/ ]& 0' 0' [n 0' # K$ 0' 0' 1) # $ + K$ # k) 0' $ . # k) * > S$ > V@ V@ = S$ $= $ # ]& S$ = & Q$ - . |* . %= U@ +i.> o! ;# - Q$ U@ R$ . U@ . |* ^& & U@ Q$ $ l!.~ R$ H= N$ ~ ] > N$ | & 2 { *' ) | N$ [ { { 2 ~ } ~ 4 / ~ ## < } [ 2 } ( 4 } ## k } ## ( &# D, 6 J= /& } d 6 7 } 8 6 a d L= 0 6 a a' 6! a ~# L= 2* ># 0 L= !# a c q> ~# r h 0 ~# -) ]# r h L= h 2, e n ,> s> Y$ (# s> xE 1; m w :# ,> t ;{.w p n^ % t t ;= (# {& {& F= {& 2; {& 2; B 2; z z x A I z O@ T^ a7 A F= z T^ a7 M c- O@ P@ :* |# Oz M V J >z 1& H$ 8* O J |# J C, L@ T H P@ T H >O U^ L@ O J G$ d- 0* 4# =I 3d 4# 58 O= 7s 58 O= 58 r9 7s 58 58 58 Ou q9 r9 r4 E^ 8# Vz cf cs ,. $% 5# L) =. $% =. =. =. =. $% Fp.,. $. ;. r5 Z9 dB gg b: ;. ~( b: t( Y6 b: b: b: 7, %% '= '= %% '. ). ). F, =. %% '. u! X) /. p) 9# w{ &% Gp.&% ^. &% =% {. =% '. 8& v@ {. 5& v@ *% ^. `> 6& 8o.Q= 9& h# 9& {= ^. {= {= (. 1. 9& t@ h# d* h# :. s@ o@ h# <. ~. t@ S' :. -& F9 o@ F9 -& ]* :. s@ -& {= :. s@ s@ o@ C= ~> :. u@ x$ s@ ~> s@ :. :. u@ h# ~. s@ <. (. u@ u@ v@ x$ {. s@ (. s@ C= # 6 ( { ## 2 { ", +"z~ z~ z~ z~ z~ z~ z~ 9i.2! [) ql.*[ vh.Il.z~ *[ z~ <{ *) e^ 2! ah.ah.9i.9| 9| 9| <{ <{ 9| 9| <{ <{ <{ R@ <{ <{ 9| 9| <{ <{ I/.V! J$ J$ l) R@ R@ R@ 0' ;b BN L$ jP 0' G= 0' 0' 0' 0' [n X! I/ ]& # $ 0' + # $ = $ * $ 0' # # ' $= = S$ [* [* ' |* > [* . $= $ Q$ + $= > o! > . U@ U@ > P$ S$ N$ U@ . ; |* > U$ ] & Z! S$ | ~ %= X@ R$ | N$ T- N$ ~ N$ &= 2 S$ O$ X@ Z! | 2 ) 2 ( 7- ~ `@ / N$ 2 { ) 8- $# { X@ < 1 } { 2 [ 2 } 6- 2 $# 7 { $# 7 ## 5 $# } 5 ## $# k 7 7 k a a j e ,# N' ,# 9 0 K/ a e a e 0 j 6! {# e 6! h {# 8 o h j n 2, r 1; 2, s> Z$ p L= y % 4* 1; ;= w :# /# @= :# w :# D ^# b' :# D m N F= z {& z z..z :# b' z z z N z B z N z A H$ n! M O@ c- I I I A A z P@ P@ 3; 8* J P@ O 3# Q Q H U r! T C, L@ r! D$ pF tw pF L Q Vf L@ U^ E^ #N U^ L@ tw `I O= 58 7s O= H9 @. 7s rH q9 r4 E@ 58 r4 {z 5d ja r5 $i Bk $% 5# L) =. L) =. =. A@ ;' +. 5# 5# $. A@ G; 6# 4- =. c[ ~( &. V^ ;' b: b: b: b: b: 9# q/ X) ). H! !. '= H! $. a: '. w{ %% !. ;. 5& '= &% &% /. p) 5& }@./. x@ x@ d# ~. ~. ~. ^. {= :. c* 7& (. |. (. t@ '& ~. '. v@ t@ 3. 8o.q@ v@ {= u@ b& s@ s@ 5& {* 9& >& q@ s@ q@ s@ s@ -& s@ v@ 2. q@ {* o@ -& {= 1. 8& v@ :. s@ v@ v@ {* s@ E7 -& -& 8& v@ :. s@ s@ q@ >& s@ q@ '. x$ u@ t@ -& w$ v@ c# q@ w$ w$ (. ^. :. /. d# v@ C= w@ '. !. c# q@ x$ E~ t@ B= 5& d# A@ '. ^. ^. 9& v@ /* )& ;. ^. !. ^. A@ b# (. x@ ,& ]. ^. !. A@ +. x@ !. ;. *. e- ). x@ F; x@ z@ ). ). %. &. b# A@ $% &. E@ z@ L) .= 4- $% F@ z@ E@ F@ z@ z@ &. V L@ _# & s' V! ^, =) x, +' q, z~ s, v, v, u, H) s, s, x, s, x, s, u, v, =) v, v, v, s, v, v, v, s, v, 6' q, ^, *) z~ 5' [) 3_ v, q, q, v, ^, *) J$ e^ <{ *) 2! e^ ], e^ *) *) 5' *) ;b L$ ], ^, ^, I/ <{ e^ <{ L$ J$ *) <{ *) z~ [) ], *) e^ *) V! e^ *) *) ^, q, *) *) ^, *) 5' [) q, q, %{ [) ^, q, q, =) v, =) [) v, v, s, A, s, q, *) R@ Y> j ,# ,# a D, $# a -# &# 6 d $# ,# } 2 / $# V$ ", +"q, z~ *[ z~ q, z~ z~ z~ 9i.ql.z~ z~ ql.vh.&[ z~ e^ *) 98.5' 2! 98.2! |1 <{ 9| 2^ 9| 9| 9| 9| <{ <{ <{ J$ 2^ 9| <{ <{ J$ 8S <{ BN *) |1 jP J$ R@ R@ 0' ;b I/ <{ BN [n 0' 0' 0' 0' 0' ]& 0' I/ I/ # * L$ = + Z, I/ ]& # T@ 0' =$.}, $ k) [* > 1* # + V@ ; = # S$ # o! $ . U@ + $ . . U$ & S$ $ S$ ^& > $ U@ $= Gc ; | %= $ ] ~ N$ N$ N$ | & ; ) 2 ~;.| 2 | 2 N$ X@ 2 / 1 | [ ## & | N$ & 2 W@ { X@ -> / N$ Z! : } | X@ N$ ( $# Y@ ) { } 1 5 6- a 6 6 1 $# /& 7 ,# ># $# 6! 3] b 0 k ># 0 k == 7 ~# L= ~# X0.c ~# 6! ~# ~# !# k 2, h s> r 0 K/ `! p o/ `$ 1; C; `$ h 0 u ,> V| ^# % m Z$ b' 2; t 2; t ,> p s> ,! {& w q D F {& G {& t GK /# I ^# z N m w z z N B G O@ A H$ I S c- K K@ O W) 3# c- c- I$ E$ M 3& c- J 3; J c- P@ T H H L Q fp.pF kP t> O Vf 0* T E^ tw C$ d- U I@ 4# O= 0* ia C$ @. @. y@ H9 E@ r4 7s ja r4 r9 r4 . cf G; L) .. . .= . /3 $% =. e- A@ ~( ;' =. )& ;. .. /3 A@ ;. b: b: $% ;} Y6 b# H! ;} 9# ~( 9# a: A@ '= H! '= X) '. H! .= ). '& {. +~ /. /. ~. 1~ '. h- &% 6& =% '& %. != ^. '. =% /* {. 9& {. g- e' 8& w$ {= _. v@ t@ ,% &. ~. j> 2. :. ~> 2. :. ~. [y h# 4. 1. v@ w$ {= ,% 0& d* 4. {* a& h# 1. h# t@ m@ v@ h# Q- =& d# ~> :. q@ s@ /* :. *% Z* h# c# x$ ~. p) q@ :. (. c# x$ v@ :. v@ h# D= >& t@ q@ ). ^. = x$ _. ^. E~ (. t@ d# ~. =% ^. d# O- w$ '& C= {. ^. w$ ~. (. ^. t@ ). !. +. ^. &. !. #> -. 5# '. [, -. 6# o) x@ '. !. ). &. !. A@ 5# &. -. %% ). z@ *. B$ 5# 0# #. -. A@ A@ z$ )& . 7# $% 5# +. V> E@ z@ 5# 5# F@ .= V N > # [) 5' [) s, 6' v, [) y: s, s, x, s, v, s, x, y, u, x, v, v, A, A, x, x, H) s, s, s, 8' H) v, *) q, v, s, @] +' v, q, q, |1 2! q, r, e^ 5' z~ z~ *) ], 5' 2! ], 2! 5' ], V! *) z~ <{ ], ], z~ l) ], <{ *) ^, ^, *) [) @] z~ ^, q, z~ q, 5' q, *) 2! v, 8' ^, 6' q, g~ r, [) v, s, [) 2! &[ q, s, x, }) v, q, v, r, s, v, H) ^, # a ,# 7 6 a $# a' Y> 6 ~# 8 ( } 5 $# $# { [ d ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ Il.vh.z~ 5' 2! 98.^, )~ ^, $8.xi.<{ z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ ]^ <{ <{ 2^ <{ 8S <{ .( ], ], <{ I/.R@ J$ ;b <{ 0' L$ J$ p9 I/ G= 0' 0' p9 J$ 0' 0' 0' ]& # X! 0' = * + 0' 1) # = $ * + 2) 2) $ $= > [* & > # L$ $= M$ ]& [* |* $ + . > |* U@ Z! - Q$ S$ ^& A; Q$ & $= $ %= U$ U@ S$ ; U$ | & X@ R$ T@ P$ | 7- | ' & U$ R$ U$ { H= N$ ) ) { 2 { { { [ ) 2 ) ## ; { => Z! N' 4 { 4 X@ ( /& *# 4 F:.d ,# k N' d d ,# 6 -> d Y> } 0 2* a k a' e Q{ a ~# k 6! ,# ,# !# g |& 0 c c |& i K/ {# ~# c s> L= c L= s> Y$ 0 h _# ,> 4* r s> t Z> Y$ s> v `$ `$ 4* m #] _# 4* % p p m m t p 1; /# D w 2; m w G F= W) m 1& 1& I O@ z G O@ A O@ & 8& {* :. h# o@ t@ -& x$ B= 2. q@ v> 1. (. ^. t@ t@ q@ o@ {. q@ 3. t@ x$ s@ 3. q@ w$ 0& E[ :. (. h# q@ u@ {. w$ u@ q@ d# A@ v@ ,& >& :. w$ ^. ^. t@ (. $. )& &. (* &. {. '. !. {. (. 9& a# #> (. &. ^. b# ;! ;. A@ {. *. A@ d# p, ). ;. C@ !. -. ,. .. *. 5# &. %% A@ -. ). A@ ;. l> 0# e- A@ &. )& $. =. A@ )& )= +. $> )= e- X I@ B$ !> E@ )= #. @. F$ ) ]& )~ e^ v, s, 6' v, 8' v, 7' u, s, v, 6' 8' s, y: s, s, s, x, x, x, s, u, x, s, s, s, s, s, x, 5' 6' s, v, q, s, r, z~ q, 2! e^ v, v, z~ e^ 6' q, *) g~ 2! ], *) e^ ^, 5' q, 5' ], )~ e^ 5' q, ^, *) L$ *) s' 5' z~ ^, e^ e^ q, q, [) g] ^, %{ [) v, r, v, [) r, [) 5' r, v, 5' v, s, 6' q, v, v, A, s, s, 6' +' +' =) x, +' J$ ) 7 i e b _ ( i b e &# $# X@ 7 / 2 *# 5 } < ", +"z~ q, *[ *[ z~ z~ z~ z~ z~ z~ z~ *[ z~ Ip.vh.9i.5' z~ 9| |1 9i.Pi.ah.vh.vh.)~ 9| <{ <{ 9| <{ <{ <{ 9| l) R@ <{ <{ 9| *) R@ <{ J$ L$ J$ *) <{ J$ J$ G= G= I/ I/ R@ #S L$ I/ L$ 5_ 0' R@ [n 0' 0' + 0' 0' Z, !, R@ R@ L$ # + + # # Q$ Ez !, . . ' S$ > $ 0' = $= . {c V@ # & H= > - > U@ ; ; =' P$ A; > {c U@ $ N$ | | (& ; 2 ; ; Q$ ; T- 2 ~ ) ] N$ ; ; { ] ] J) .# / ~ =' [ ; *# ( 2 { /& [ 2 4 ~ } H= { 1 [ x0 5 [ V~ d 6 /& { $# 6 [{ < a 6 6 < 6 V) ## d q> b k c6 } 6! a 5 6 ,# Y> 6 ~# 7 0 K] c n K/ 0 ~# k c Q{ `! 0 h h Y$ -) L= n c ,> _# 0- n ,> `$ o s> u h `$ /# m m u r @= w D m q {& w u ^# t w :# ^# /# B B G 1& z P@ J E$ d{ J P@ E$ H$ J H M@ J H 3d G$ T L@ D$ D$ #N 3d O= L' `I tw 7s O= @. O= C$ 58 @. 58 0* r9 7s r4 @. @. r9 8# E@ 8# H9 r9 r5 =. =. ;I @. a* =. .= =. $% 5# A@ 8# /3 A@ &. ;. ;. )& =. t( 9# b: $. A@ ;. ). $. )& 5; e- b# !. F, &. {. ). S' ). b# '= {. '. =% /. '& !. '= D~ D~ &. /. /. /. ~. v@ d* e' &% ~. ^. 9& {. B@ d# E~ ^. b# %% ~. (. 4_ {. t@ d# 8& w$ q@ 2. Q- h# q@ ~. 8, (. :. x$ t@ :. h# :. q@ s@ w$ :. w$ s@ 8, Z* o@ h# (. a& t@ s@ s@ 5& Q- (. ~. q@ u@ ~. -& :. (. 3. = ^. ^. (. C= '. nY q@ =% d# H! ^. ,& !. ,& w$ l> ). ^. ;! 8& {. B= t@ ). {. '. -. {. &. ). ). d# ). C@ -. x@ )& d# ). '. '. &. -. v@ ,& )& b# '. {. $% ;. &. !. =. +. &. 5# =. +. 0# A@ &. B$ &. ). A@ #. &. B$ &. m> =. 4& .= )= C$ .. 4- @. P V G@ T B$ V E@ X r . ;b 2! q, s, s, z, x, H) u, z, y, u, x, 8' s, q, v, =) =) x, s, s, x, u, u, s, 8' s, s, z, q, s, s, v, g] q, 5' A, q, 6' q, ^, z~ q, q, *) z~ *) e^ ^, ^, 2! *) ], q, ^, 2! q, Jp.*) e^ e^ [) q, e^ 3_ 5' )~ e^ 5' z~ q, q, q, q, *) ^, 6' q, q, [) [) @] [) q, r, [) r, x, 6' q, =) g] =) s, =) s, v, 6' x, x, z, v, @] H) e^ d 7 i ,# V$ 7 $# ( 9 == 6 j ( 1 } ( ;# d V~ } ", +"q, q, z~ z~ z~ z~ z~ *[ q, z~ z~ z~ z~ *[ ah.ah.e^ 9i.*) <{ 9| )~ |1 |1 |1 9| 2! 9| *) <{ 9| <{ <{ <{ 9| 2^ <{ I/.I/.<{ J$ jP 9| <{ <{ L$ J$ I/.2^ 2^ R@ 0' I/ J$ I/ I/ L$ ]^ I/ 0' L$ T*.[n 0' = R@ K$ X! 0' $ Z, ]& ]& # Z, ]& 0' + + Q$ o! $ 2) Q$ # # + $ = ' > $ > - > [* > - ; S$ > > . & U@ U@ k) S$ $ S$ %= R$ & & | %= X@ Q$ 5- ^ Z@ S$ ) (& & | &= { T- P$ 2 Z! ) | | { ] | X@ 2 ) | 2 { 2 | $# ( X@ $# } [ { G9 d [ Y@ X@ V~ 6 $# ( -# d 7 6 } d Y> ( $# k 6 a q> a M' a a a {# Y> ,# ~# 0 $# ~# V) c L= {# a k ,# h s> |& n s> {# c s> % p Y$ Y$ L= 2, 1; 4* p K/ q ^# ,> `$ 1; `$ b' w p q Z$ G m w @= D t F= D F= w /U I '&.z a7 I a7 I w ~& B z z A O@ F= Q@ I Q@ 8* M N N@ I I Q@ I z n! [# QT M 3# M P@ O@ 3; L iI C, d- Q U t> qF 3& L |# T 3d `I 58 O= 3d 4# tw O= C$ C$ O= r9 rH d- 58 58 Ou E@ O= q9 W r9 r4 y@ R{ EA G; )= +. .. ,. A0 A@ ,. 5# +. =. =. ;' =. A@ t( =. e- G; t( b: 9# ;. &. =. $. b# 7, !. -. 9# =. ~( '= v{ H! b# E@ !. b# %% ;. =% {. x@ T' '. {. '. /. `> =% ^. ;. v@ 8, {. &% d# /* t@ {. 9& x@ ^. v@ =% ). *. 9# &. -' {. {. {. &% v@ s@ {. w$ t@ u@ :. v@ Kp.:. (. 1. :. w$ 1. x$ ^. s@ {= u@ o@ q@ ^. :. x@ ,& ). (. /* d# q@ h# {. ;. E~ :. {= = s@ T' w$ (. s@ >& >& {. c# w$ /. 5& d# {. w$ b# -. x@ x@ x@ '. +. W> {. ^. ). '. d# /* (. ). )& ;! 5# !. = !. &. x@ ;. !. &. C@ '. &. A@ ;. ). !. ). !. ^. -. 5# x@ &. &. ,. A@ z@ ;. -. z@ {. +. &. {. z@ 4) 5# V R X 5# +. B$ C$ #. E@ z@ 4& 4# T z@ D$ L@ C$ 5# V P G ; R@ *) z~ s, w, y, x, s, u, y, x, x, u, z, u, x, -! z, x, u, y, x, x, v, s, x, s, u, s, s, v, s, q, r, q, ^, v, v, +' u, 6' 6' [) [) g] q, [) ^, *) 6' g] q, z~ 6' ^, ^, )~ q, [) r, r, 6' ^, [) q, z~ *) *) D[ z~ 5' q, q, q, q, ^, q, 8' q, 6' *) v, 6' [) q, q, g] ^, v, r, 6' 6' v, H) [) s, ' u, v, v, s, v, q, r, v, G= [ V$ a -# -# V$ ## 6 J] [ } } 9 ## { a Y@ d 1 < ", +"@] 5o.z~ q, q, z~ z~ *[ z~ z~ 6' z~ *[ *[ 9i.vh.z~ *[ z~ |1 $8.9i.*) 2! ah.<{ 9| 9| 9| 9| <{ 9| 9| <{ 9| J$ R@ 9| jP <{ J$ <{ <{ jP l) R@ J$ <{ L$ 2^ BN R@ I/ ]& I/ I/ L$ G= G= 0' 0' 0' I/ p9 [n Z, # = 0' Z, # # = # + $ $ L$ $ . + $ ' + ]& V@ > 0' + > Q$ $ # 0' L$ . |* & > . & !, 0' & > $ L$ k) ; > U@ U@ Q$ =' %= R$ N$ > ! ; ~ ! ] & Q$ R$ R$ ] U$ 8- /& ~ W@ 8- | U$ ] | } ~ { J) 5 } { [ } { { [ { ( d D, ) } / $# $# { 5 D, a 6 i 6 7 ( ## 7 Y> } # 4 6! ># i 6 N' ,# 6- a 7 L= a a ,# 0 0 0 n e d {# h L= 0 p h X$ Y$ s> h p _# Y$ Y$ ;) n ;) 2, p p }& 1; p 1; #] 4* :# % p /# /# z z m /# t ^# G % w z G w 2; w z }# z F= G G I B N A z |# z G A G P@ M h] O@ Q@ I 0S M L Q |# Q E$ H L P@ E$ E$ U r! T H J J P@ H >) G$ 0* Vf 4# d- E^ 4# 58 O= 58 O= E^ E^ r9 r9 C$ 58 r4 @. 58 r4 !> r4 r4 ja y0 5# !& .= r4 !& 8# z@ G; /3 e- ,. $. ,. )= =. +. . A@ $. $. !& A@ W- =. t( 9/ e- ;. A@ )& F, b# ). ;. &. H! 7, R' o) b# %. -. =. !. ;. ). '. o) .. '. &% {. ^. p) b# z@ T' A@ b# /* |. 9& A@ {. {. /* d* ;' &. !. 8, ~. 9# '. T' ~. v@ (. v@ t@ _. _. {= q@ d* (. :. %% >& w$ ~. 8, 9& 1. /* {= (. ). t@ t@ v@ (. s@ 8& :. :. (. 3. d# (. q@ :. t@ w$ '. v@ w$ q@ w$ >& u@ ,& &. x@ ). A@ W> W> ). x@ '. '. (. q@ ^. ^. d# -. ]. :. %. ). x@ {. !. !. !. ;. ,. ^. &. !. -. ). c# ,& A@ ). l> x@ -. ). &. *. b# -. z@ =. ). >. A@ '. &. v{ b# -. %. A@ -. x@ B$ -. B$ +. ,= 4# T 4# .= @. .= +. W G@ V 5# C$ (* +. X E@ I@ }; 2# L@ Z! ]& ^, r, z~ [) x, x, v, v, u, v, x, s, z, x, x, v, +' s, x, x, s, s, s, x, g] s, u, s, x, s, v, v, q, 6' s, e^ +' v, s, [) x, ^, s, s, q, v, 5' q, s, s' )~ r, H) q, r, q, q, [) z~ z~ 8' q, x, s, g~ i) q, [) ^, q, q, [) q, q, [: ^, v, q, v, r, s, [) e^ ^, q, 6' q, }) 6' v, 5' 2! Lp.r, v, v, 8' s, v, x, v, -! 8' e^ + a a 6 : 7 ~# ( 6 W@ } ~ { $# { / d < : *# `@ ", +"6' 5' rl.*[ q, z~ *[ z~ z~ z~ z~ *[ z~ z~ 2! vh.|1 *[ z~ *) vh.)~ )~ |1 vh.<{ )~ 9| 9| 9| 9| 9| 9| 9| *) <{ ]^ 2^ <{ <{ I/.<{ ;b <{ l) R@ <{ <{ L$ ]& G= R@ I/ R@ G= I/ L$ L$ R@ I/ 0' 0' 0' 0' T*.0' K$ # # Z, # # # # % # 0' J$ + = . # . }, = [* > $ 0' V@ ]& . . # =' - # > $= 2) > > . [* |* (& . ; | |* %= U@ . V@ P$ | U$ ; R$ ~ H= - & & Q$ ] N$ R$ 2 ## =' H= ) *# { Z! ^ 2 <& ~ X@ Z! 2 2 2 , [ { *# : } Y@ ## d $# { [ d %m } 6 V) Y> [ 1 6 7 N' a 6 $# Y@ 6- D, d 6 a a' ( ,# a Q{ a 6 N' 7 k ~# e a n !# 0 {# h o a' ~# p n p ~# n m `$ g h ]# h `$ ^# y2 q `$ m /# 4* n^ ;= :# w p! m t t 2; 2; ^# w ^# G D ^# @= G G N G 1& z #= {& K Q@ w F A #] O@ M W) I 8* I M I |# a- P@ M 3# q! M P@ 3# E$ 3; L L S H Oz Y r! T Y d- L@ D$ 3d T G$ U E$ H 58 G$ P tw 58 4# E^ I@ L@ 4# 0* 58 C$ @. O= O= @. r9 ja E@ r4 E@ 8# ,. .. 7# R{ R' =. &. 6# >. L) 6# ;. ,. =. z@ e- )& V^ $. 5# )& =. ,. (* t( &. '. ;. ;. ). b# ). ). &. z@ &. !. ;. *. !. '. S' . ). {. {. {. F, x@ {. B@ p, A@ V^ v@ 9& ^. != (. ^. v@ ^. &. ;. %% ^. ). -. !. v@ ^. 5& 9& ). 9& ^. d# 9& !. _. w$ (. 9& w$ (. {. h# 5& ^. ,% s@ (. 0& 8& ^. w$ 9& u@ 3. t@ (. s@ ^. x@ :. v@ {. {. ~> v@ q@ w$ v@ :. %% x@ O- E[ W> = E~ x@ ^. c# t@ {. l> x@ ,& t@ '. *. ^. ^. H! c# F, '& d# =. !. =. A@ &. {. t@ x@ (. A@ x@ )& %% v{ -. x@ z@ '. =. &. &. ). l> ). !. 4- 5# =. )& F, @. L) . . E@ A@ &. A@ 4& 5# A@ z@ z$ B$ X E@ C$ G@ . +. F, (* 5# 5# P C$ )= 9* z$ . +. C$ P 4# .= 7 ]& <{ 5' z~ +' =) s, s, z, =) v, x, z, z, x, s, s, s, u, u, s, u, x, u, u, x, x, v, r, v, v, s, s, 6' s, 6' ^, 6' @] +' y: v, s, s, s, +' q, z~ 8' g] q, q, 6' q, z~ q, q, q, z~ q, q, r, r, 6' 5' [) [) %{ z~ [) e^ *) [) *) ^, q, `, z~ ^, 5' [) q, 6' 6' ^, 6' q, s, @] s, v, H) [) =) x, s, t, s, v, [) =) H) v, v, ^, > 4 7 ,# V~ 6 6 V- ( V~ $# ## { < == ) Z! ~ ## ## N$ ", +"8' 5' z~ *[ z~ q, z~ z~ *[ *[ z~ z~ z~ z~ 9i.vh.vh.z~ z~ 9i.9| *) Pi.*) 9| 9| vh.<{ 9| <{ 9| <{ <{ <{ 9| 9| *) R@ <{ <{ I/.2^ J$ ;b J$ J$ 9| <{ k3 L$ ], R@ G= X! I/ L$ ]& L$ R@ 0' 0' I/ I/ 0' 0' [n ]& # + T*.+ # + J$ # + 0' L$ 0' 1) = Q$ + # }, . . ; Q$ = > T@ . . ] # . = U@ 05 $= N$ U@ . > N$ V@ + > . # . ; & N$ Z! %= X@ H= %= Z! . Q$ |* Q$ U@ .# ] | 2 ~ { J) N$ U@ ] o! ~ N$ N$ [ ~ & Z! 4 ~ 2 %# [ 8- 4 Y@ /& < X@ ~ ## Y@ } ( < ( 6 d 6- ,# a 8 } &# $# d 6 6 q> 3] q> ,# k q> $# ,# {# !# 6 Y> ,# i {# e L= L= 0 0 {# n !# |& 0 L= h ;= c L= ]# r h ]# ~# % Y$ g [& n Y$ 4* 2, `$ (# V| ^# ,> n D m m y m m ^# 4* B }# :# w D G t D G I x w 2; }# G F= I A O@ G z z G H$ E$ x M 3# c- n! P@ 3; 3; T^ S 3; J J L U L E$ J G$ ` D$ ` L d- T r! G$ 4# 4# r! 4# 0* @. r9 C$ @. n) C$ O= Q' @. O= ja E@ r4 r4 r9 %i #. a* r5 W- G; .= L) =. . =. A@ C@ ,. 4- %. >. ;. )= /3 A@ *. ;. *. 9# 6# &. !. 9# !. F, B@ ;. F, &. ). b# !. ). ). $. =. &. '. ). ~. !. -. !. ~. ^. {. !. '. '. 4_ ^. '. =% x@ 8, ). =% b# |. 9& {. 9# {. '. !. ^. =% '. x@ H! d# '. v@ v@ (. (. :. t@ }@.&. ,& %% 5& t@ p) :. ~. ). v@ >& t@ t@ v@ ~. v@ x$ ~. 0# s@ x@ ). ^. :. :. d# :. t@ w$ A@ c# !. c# ,& (. d# {. (. '& %% {. x@ d# !. ,& x@ x@ E~ !. x@ -. d# ). ;. )& +. '. z@ &. x@ !. !. ;. &. -. ;. ). !. 5# ). F, =. . ). z@ !. !. (* !. (* =. )& A@ !. z@ !. #. &. @. +. =% +. A@ #. +. !. {. (* ,. E@ E@ 5# A@ C$ L@ }; F@ 5# T }; B$ z@ }; L@ V r! I@ C$ O s Q$ R@ e^ q, 6' s, u, s, u, v, v, v, x, z, y, u, s, x, x, H) z, u, x, s, x, x, v, v, v, v, s, r, ' v, ^, 6' A, %{ r, v, v, 6' =) v, =) s, r, r, q, v, s, s, z~ z~ r, z~ s, s, q, [) z~ 5' q, z~ 2! [) q, 9i.e^ q, 5' *) =) *) 6' q, 6' 6' 6' %{ [) 5' 6' v, q, 6' v, s, q, s, q, +' s, s, s, s, s, s, x, s, z, u, x, s, ^, N$ 2 a X$ == ## ## $# $# a' 5 9 d V$ ) -# $# N' [ &# Y@ ", +"s, Mp.z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ ql.9i.*[ *[ rp.vh.9i.9i.vh.vh.e^ Pi.2! 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| 9| 9| *) <{ <{ <{ <{ <{ *) J$ ]^ 2^ J$ .( ]^ R@ G= [n ]& R@ 2^ I/ L$ L$ 0' 5_ I/ 0' 1) [n ]& K$ G= J$ 0' 5_ + R@ X! K$ + L$ + K$ . H= $ J$ # Q$ $ |* S$ $ $ U@ $ 0' # $= . Q$ > - . S$ S$ U@ Q$ > & $= S$ ] N$ Q$ | U@ | ; H= N$ ~ H= & U@ & %= ] ] Q$ ~ .# X@ U@ U@ N$ & b{ ~ 2 N$ X@ ~ X@ ~ 7- F:./& | ( 2 [ 2 1 ) Y@ X@ 4 J) 6 Y> 6 1 d } ># ( } D, d i $# ( } 5 d Y> d q> vk 7 tA 0 q> a 0 a a L= {# a 6! 6 c h vk a a n Y$ 0- Y$ ~# 0 2, c{ r ;= r m s> h ,> V| ,> Y$ V| q _# p q t h u t m `$ 2, p D D @= ^# ^# {& w t {& /# {& :# w I F= ~& D W) z I w N M c- 8* O@ c- E; G O@ c- |# O@ A P@ E; Q@ E$ E$ P@ A %> P@ H$ |# E$ J T T L' T r! L' 3& O P@ L@ P@ 3# t> H T 4# 4# E^ 7s 0* T n) 58 V @. J O= . r9 4d V E@ &H G; y@ 0* bf . 4) lp.G; ,. +. $% 5# $% =. +. #. /3 .= 4& z$ +. A@ $. %. ;. &. )& ;. &. !. z@ y@ &. ). H! .= x@ =. B@ -. >. F, ). b# x@ !. >. A@ b# [. =. p, ;. &% b# F, {. '. b# {. '. C~ ). o) 7; !. ;. {. ,& !. A@ ^. |. {. v@ '. !. b# '. '. ). {. ). v@ v@ E7 t@ ~. '. -. {. 9& ^. w$ {= (. ~. d* (. w$ ,& d# [y _. -. l> ). ^. q@ {. >& (. 5& 1. q@ ). v@ F, ^. #> d# :. ^. t! &. =. w$ ^. '. #> &. !. {. 5# ). ^. -. ). =. !. ). x@ x@ ,. r5 5# &. &. &. W> !. A@ A@ ). A@ -. ). )= =. x@ =. -. x@ {. !. *. A@ &. ;' ). z@ $% *. A@ 7# =. &. .= &. (* A@ +. -. G@ 7# ,= E@ D$ z$ 5# X +. U D$ 1# 3& P@ ` P E@ G@ H 2# T I@ L@ L@ I O$ J$ e^ 6' ^, v, 8' r, v, y, v, s, x, x, z, z, v, x, s, x, u, y, s, s, s, s, x, u, s, x, u, v, v, s, 6' s, z, @] s, s, v, q, q, v, [) s, s, s, q, v, =) =) s, s, 6' z~ [) q, [) q, q, z~ q, e^ 6' 6' s, q, r, ^, q, 6' 6' q, q, 5' ^, ^, r, q, s, r, q, s, r, s, s, s, 6' H) 6' v, z, v, v, s, v, r, y, z, x, s, 6' [) q, < 0 e a =# 9 ( 6 < 4 < Y@ ,# } 1 [ $# [ 2 1 < ", +"s, Np.*[ z~ z~ z~ *[ *[ z~ z~ z~ *[ 9i.9i.z~ *[ vh.ah.z~ *[ 9i.xi.*) Pi.9i.|1 |1 9| <{ <{ 9| <{ <{ 9| )~ *) <{ <{ <{ <{ I/.<{ 9| <{ ;b $8.J$ 9| <{ <{ I/ R@ J$ BN I/ ]& R@ 0' I/ L$ I/ 0' 0' 0' ]& 0' [n $ # = I/ J$ # # + ]& # k) # # > S$ > $ > . $ J$ ' $ = . # = . . Q$ = . > - & S$ V@ . & > N$ = Q$ U$ $ S$ A; & & o! |* U@ & R$ ~ U$ . ^ & & 2 X@ .# *' Z3 N$ . T- ; { ; ] N$ P$ [ ) 4 ( ] ] { %# ( $# 1 [ | 2 X@ 2 2 6 / $# ## d ,# $# i ( 9 $# 6 D, d 6 3* 8 6 8x 7 $# a a b q> ,# e {# 0 ~# L= a 7 d k C; ~# 0 h c L= ~# c ( K= n ~# e r h ]# c m r q s> |& p m t p c % Z$ ^# b' r t 4* Z$ % t y m #] m B m G /# m y 2; D `$ D t N G ~& A z #] H$ 1& T^ O@ I z T^ z z O@ z 8* N P@ 3# E$ P@ h] P@ :* E$ J P@ :* U d- U^ Q U^ 3; L@ T d- E$ I@ 3d r! 0* `I BE I@ Y G$ G$ T P G$ @. O= I@ r9 r4 H9 @. @. G; cf 58 y@ . y@ 4# O= #. =. . =. =. A0 6# ,. ,. . &. %. ;. $% )& )& z@ )& =. .= )= =. 4& . ;. -. ). z@ -. $% e- !. &. '. A@ !. x@ ). !. !. A@ -. '. ). D~ 5& ). 5# ). &. !. x@ 5; '. &. z@ ~. ). }@.{. d# '. ). x@ b# /. v@ ^. b# 9& %% b# T' '. F, t@ (. (. v@ ~. x@ ). &. 4) _. x@ !. w$ ;& v@ ). {. {. A@ (. {. x@ x@ T' {. ,& l> x@ ,& 5& '& d# {. !. w$ v@ {. d# ^. &. A@ !. ,. ^. ^. )& ,& A@ ,. -. p, p, p, ^. &. ,& !. &. '. -. &. &. !. !. 5; %. e- &. &. A@ ). '. &. x@ y@ !. )& A@ &. (* 7# 5# -. ;. &. ;. 5# =. )& .= y@ O= )= E@ A@ z@ B$ L@ =. .= #. +. 5# Z +. .. 4& E@ @. S I@ C$ V L@ P J .. F@ H@ T z$ .. V P E$ 7 ]& ^, q, v, s, s, v, 6' u, x, u, y, x, s, s, s, y, H) s, 8' 7' u, s, s, s, x, x, s, z, u, H) =) H) ^, +' s, v, s, s, s, s, +' s, s, 6' s, v, r, %{ v, v, g] 5' [) q, q, 6' v, q, ^, q, q, ^, ^, [) u, s, v, r, z~ 6' v, ^, q, +' r, 6' x, s, H) r, H) H) s, 6' s, x, x, [) q, r, s, ^, r, v, x, @] x, r, s, s, @] @] s' < 6 { _ -# _ 9 $# &# } { *# < ~ : 1 4 ## ~ / / ", +"X( Op.z~ *[ z~ z~ z~ z~ q, z~ q, *[ 2! ql.z~ *[ 2! |1 *[ *[ 9i.xi.9| e^ e^ xi.|1 9| 9| <{ 9| <{ <{ 9| 9| *) <{ jP <{ 9| <{ <{ <{ 9| |j.(}.R@ ]^ R@ J$ l) R@ ], J$ I/ L$ ]& L$ 2^ L$ I/ L$ I/ I/ 0' 0' 0' + # = 0' = + # $ = * Z, # * V@ k) # + ' ' . = . $= Gc $ $= . S$ > > *' $ - & & Q$ > + = - U) . $ A; %= ] - U@ & %= > S$ N$ *' ; H= Q$ ) | & 2 2 X@ 'W ) ( & 2 ] ] N$ ~ | Z! ; { { 2 1 2 { | { /& } { N$ 4 } J) X@ 4 [ 5 d $# k ,# 6 `@.d d 6- $# d &# [ N' { 0 a 7 a x0 V~ 0 0 6 b i e ,# z: 2* k a' 0 c h c 6! 6! 0- v ;= h t' ~# a ~# n p h q #| t 4* s> u p p h Y$ |& c{ r t 2; 2, Y$ u t 1; ^# ^# ^# m #] C N 2; m 1; F 2; G A N I M= I w A F= z A I 8* 8* I I M 8* M S |# H$ O@ |# 3; O@ d{ J J L H E$ |# S C, L |# U^ r! J L M M J 3# E$ P' Q L@ I@ O 0* L@ L@ C$ r9 r9 V O= I@ r9 G$ X X . @. Q' Pp.r5 a* L) G; E@ W +. z$ $% =. ,. 4- z@ Q' 5# z0 >. )& A@ 4- &. Qp.&. X ;. )& $% -. ,. !. *. e- x@ 6, (* -. x@ =. ;. *. !. &. >. 5# A@ z@ !. ). b# ;. '& z@ A@ {. F, !. O= !. $. b# ^. ). x@ 9# B@ x@ d# '& ~. =. )& &. 8& =. ^. =% {. A@ {= %% l> '. ^. (. !. ). ). '. 7; F, c* ). :. ). A@ {. v@ ;! v@ !. ). 5# l> x@ x@ l> d# x@ (. '. /* (. o) w$ [, x@ c# (. (. &. ,& {. x@ <. {. ). {. v{ !. x@ -. ). x@ ). F, ^. W~ &. ;. x@ ,. 5# ). A@ '& {. 5# x@ $. 5# A$ L) 5# A@ A@ .. 6# 7# =. C@ V 5# -. A@ F, =. [, E@ 4& +. G@ O= z@ . +. 4) G@ z$ C$ !> 5# ,= )& C$ 2# V V G@ U L 4# H J O J 9* +. F@ U P (* I@ E$ T v ]& ], ], z~ q, v, x, x, 8' y, x, #' z, x, s, s, y, v, v, x, z, u, s, x, s, s, x, s, H) s, r, r, v, 6' x, H) s, z, 7' s, x, q, v, s, 6' s, v, v, 6' [) [) v, 5' ^, ^, q, v, v, @] v, v, 6' @] 6' v, 8' s, *) *) ^, 6' +' q, q, 5' 3_ =) v, 6' s, v, v, v, s, 6' |) s, s, q, s, s, u, v, v, v, u, s, v, v, v, v, z, [) . $# &# b < { 7 e a +# ) 1 { V~ 2 ) ## X@ { ) 4 2 ", +"X( [: 6' [: z~ q, z~ z~ *[ z~ z~ *[ *[ 9i.z~ *[ z~ Il.Il.*[ z~ *) 9| )~ Ip.*) |1 <{ 9| <{ 9| <{ <{ 9| |1 *) 9| <{ <{ ], I/.8S I/.<{ |1 (}.L$ .( BN L$ l) ]^ ]^ R@ I/ L$ G= #S jP 0' 0' L$ 0' 0' [n 0' 0' = 1) Z, ]& ]& X! * $ + # 1) > 0' + $ k) $ $ . # ]& . S$ Q$ Q$ & . > P$ V@ > > ; - ] N$ S$ * $ S$ ; R$ & U@ - P$ S$ ; & %= T@ - | Q$ | ) H= Z! ^ Q$ Z! N$ N$ | N$ ] R$ X@ ^ ^ ; ; 2 2 ~ [ | %= N$ 1 ( X@ ) { 2 [ 2 I= } } 4 d 6 D, Y> Y@ => J] 6- 7 6- Y@ ( 1 } $# 2 d q> 7 ,# q> 3* 0 6 0 a k ( a a k ~# ~# t' 6! e a n ~# c 6 A~ 2, n ]# c !# n K= h n^ L= n Y$ e a |& n^ q n ~# s> b' n p t 1; ,> p s> B m q w Z$ D m 2; G D w p N /# O@ G /# w I %> N O@ n! O@ %> I z M O@ z M M O@ I I I P@ O@ P@ n! O@ I 8* P@ P@ A M M M L S A: L +% L@ E$ L E$ d- L H T T L@ 3d L T L@ 58 E^ E^ V I@ 4# y@ C$ P' @. 4d )= @. H9 4# . E@ Q' +. +. =. =. $% =. =. =. e- ,. +. A$ =. >. A@ $% B$ 5# 5# #. =. !. A@ A@ #. ,. ;. +. =. ;. 5# R (* +. ;. W~ b# l> 0# -. 9# ;. -. +. -. ). {. x@ =% )& ;. b# ). ;' =. &% v@ =. l> =% ;. ,& b# }@.[, b# b# !. {. ;. x@ x@ ~. -. H! v@ {. !. &. 5& {. ;! '. l> p) +. -. &. d# %% -. x@ ,& '. !. x@ ;. x@ ). &. !. x@ '. ~. :. {. -. w$ >& ). -. x@ {. ,& p) &. x@ ). {. #> !. ). A@ !. x@ x@ !. &. =. ). [, $. V> !. a* {. ). )& A@ V ,& ;. 5# =. =. 3^ A@ +. B$ +. ,. !. =. z$ P &. !. &. ). 5# 5# !. W~ @. G@ 7# E@ . 7# 4# .= +. (* C$ C$ +. .= 9* &. #. L@ G$ z@ G@ @. 3& L@ Y C$ 4# 2# S 2# ` Y I@ T L@ H Y `$ ]& g~ q, v, v, x, -! x, s, z, =) v, u, u, s, x, x, s, v, t, s, s, x, A, s, =) }) v, x, s, z, s, s, +' t, s, s, s, r, v, s, v, x, z, [) x, r, q, s, +' s, z~ *) q, q, @] 6' r, s, s, 6' r, q, +' s, r, =) =) v, @] s, 6' q, v, s, q, =) q, r, 6' s, s, q, s, x, s, =) v, 6' s, s, s, x, z, v, x, s, 8' s, x, u, 8' r, # b &# -# } ## 7 ## ( [ +# } ## { ) @# ( X@ ~ ) H= { ", +"s, [: Mp.q, *[ z~ z~ z~ *[ z~ z~ z~ q, z~ z~ z~ z~ ah.vh.z~ Rp.|1 9| *) Pi.e^ 9| <{ 9| <{ *) 9| ], 9| 2! I/.98.I/.<{ 2^ <{ <{ <{ 9| 9| <{ 9| R@ J$ <{ r4..( .( I/ BN 0' I/ ]& L$ 0' I/ I/ 0' 0' [n 0' I/ 0' I/ + + 0' 0' # + 0' 1) ), ;b $ $ V@ > & [* 5_ $ Q$ > ' $ Z, + > T@ ' V@ $ & ]& R- V@ # * . $= & > |* ' ' ^& > > ] | Q$ |* ] & ; S$ & P$ > ^& R$ ' . ~ ] R$ S$ T- N$ .# [ N$ N$ W@ X@ 2 *# 1 | ~ / 4 X@ [ ~ X@ F:.( 2 W@ V~ Z! Z! 5 /& => d $# 1 d &# => 4 &# 6 6 /& 7 Y> } ( k ,# 6 6 V~ $# a Y> a $# fn.!# !# ,# e ~# ~# ,# K/ h L= |& 0 ]c 7 K/ o C; 0 n Y$ _# Y$ a' ,> tA h ,> s> 0- L= a L= 1; 1; 4* u q Y$ ^# m :# t Y$ t m Y$ 2; t m t w p D u G N ^# n G W) 2; w z 2; A O@ T^ M z n! O 8* a- M A A 3# d{ 8* M T O L Q 4# L U T C$ 4# 0* I@ P' C$ t> D$ 58 E^ r4 @. C$ O= G; r5 @. E@ y@ E@ C$ .= +. $% .. z@ .. E@ a* ,. )& e- +. A@ +. 7# A@ ]. =. ;. ;. t( e- $% .. $% ]. >. 4- %. $. >. A@ &. 5# &. =. )& +. . &. ;. =. z@ H! !. *. '. +. .= =. +. x@ 5; =% -. 5# ;. ;. ). {. x@ !. {. ;! &. !. &. A@ A@ !. ;. B$ A@ -. &. A@ ). &. %% d# t@ %% x@ {. &. {. &. V> '. :. x@ gT !. >& ^. *. ,& ). ~. -. x@ ~. {. {. t@ ;& ~. .= x@ x@ &. z@ ~. {. #> !. 5& A@ &. 5# ). ). t@ ). Sp.A@ =. ;. &. !. x@ *. ). %. ,& &. =. x@ =. !. 0# =. !. #> +. A@ ). ;. &. 7# E@ #. E@ G@ L@ )= +. #. @. #. _* $% A@ A@ @. @. A@ &. +. 5# +. .= T E@ .= z$ z@ 7# E@ R z@ R 1# #. 4# 2# D$ K@ H 5# d- H O T R V O= H T L@ I@ P@ ^ J$ 2! =) r, v, 8' @] v, s, x, 8' s, s, t, y, u, z, u, y, t, r, A, A, y, u, s, s, x, z, x, v, 6' s, s, s, A, s, s, x, =) #' v, +' 5' q, q, 6' t, r, x, [) s, s, s, v, @] q, q, ^, 6' v, +' s, v, 6' s, =) s, x, [) s, u, u, s, v, 6' v, s, v, s, v, r, =) z, s, v, r, 6' x, s, s, 8' z, z, x, s, s, x, x, z, v, ], { d a /& } < 6 $# d { < $# < d *# d Z@ / ~ | 1 ># ", +"x, [: +' [: z~ q, q, *[ q, z~ z~ *[ z~ z~ z~ *[ *[ Il.Tp.|1 z~ |1 vh.ah.2! Pi.<{ <{ 9| e^ *) <{ |1 *) )~ )~ 98.<{ <{ J$ 9| <{ 9| <{ <{ I/.<{ J$ R@ J$ L$ I/.R@ 2^ 9| G= I/ R@ L$ J$ L$ I/ 5_ 0' I/ I/ I/ 0' 5_ # # X! [n # # [* k) K$ $ # # # = [* . # R@ R@ S$ > = 0' $= # + ]& 2) Up.& . S$ - & . [* S$ . U@ & & $ & . > | & - $ > ; . | 2 S$ & 2 R$ ; | ] %= U@ b{ & H= ] R$ X@ 2 ^ H= | { / ~ { { & [ [ ( F:.6 D, /& $# 5 *# => } < } /& } <& d V~ 3* V~ < d d i d $# ,# a V) 6 6 [& -> ,# D, $# $# 2d ,# a 7 ,# q> a L= ~# 3] d 0 ~# Y$ n ~# ,# !# 0- n ~# X$ 0 0 L= Y$ n p ,> y2 Y$ s> r t 4* ;) Z$ ^# s> u 2; :# :# n^ ),.G m W) {& :# b' B /# 2; }# #] C x z ^# G :# G G w z G I z M G A M@ 3# a- G O@ z A G A E$ :* z I 1& M H P@ M H L@ L@ C, t> ` K@ O D$ G$ tw Ld J L 3d O= O= E^ tw E^ P 58 I@ O= @. n) V C$ @. E@ @. a* @. r9 +. #. @. B$ W z$ .. ^3 +. L) A@ !& $% =. y@ (* 5# ;. B~ .. A@ =. >. @. !. >. (* =. ,. &. A@ 7# e- =. F, z@ ;. !. ]. %. %. '. %% ,. !. -. -. A@ A@ $. H! A@ R' z@ >. 5# ;. ). !. '. 7; >& =. .. '. x@ A@ &. &. b# b# A@ ;. H! z@ *. {. '. {. ~. !. x@ t@ H! ^. -. 4& {. ;. '. &. ). A@ d* &. =% ). ). {. '. ). -. ). v{ A@ ;! x@ o) ,& A@ !. 0# 6, ). ,& !. ). z@ . )& A@ (. A@ &. p, +. x@ (* ,& l> ,. x@ &. ). [, ;. =. X . l> &. 5# $% %. z@ >. 5# +. =. -. e- Q' &. &. $% =. P @. )= *. #. A@ &. .= +. V> . =. G@ X @. B$ 4- R }; U X 7# C$ H@ R z$ .= D$ D$ J J J L@ D$ L@ m> I@ 4# $> H @. P T G$ C, 3) d- D$ 6 = J$ q, s, v, s, x, s, s, y, u, x, x, y, x, x, u, y, y, y, s, s, v, z, x, s, x, x, }) x, ' @] v, s, u, v, u, z, 8' v, s, s, t, s, v, q, q, s, q, s, [) x, s, 6' q, v, v, 6' q, 6' 8' s, 6' r, v, s, g] =) s, s, s, s, |) s, z, s, s, v, 6' v, v, s, v, s, g] s, ' v, s, v, s, s, s, H) s, z, x, v, x, v, r, V! ## } ,# $# 1 W@ $# b &# 9 $# < *# $# ## 6 ) &# : 1 $# ( ", +"x, Vp.Mp.Mp.[: z~ z~ z~ z~ z~ z~ q, z~ z~ q, *[ z~ 9i.Il.|1 z~ *[ ah.xi.vh.)~ e^ |1 |1 ^, *) 9| <{ *) *) 2! *) 98.<{ J$ 2^ J$ J$ I/.<{ l) ;b <{ V! ], jP 8S L$ BN BN BN ;b ]& I/ L$ L$ I/ X! 5_ ]& I/ ]& ]& 0' + * # 0' = # # # I/ . ]& 0' + + ]& $ . E! # . > V@ $ np.$ V@ + $ Wp.. !, . [* > > Q$ & . . N$ | =' & N$ H= P$ U@ S$ . & ~ 2 > Q$ [* o! & `@ X@ N$ & | ; ] %= ; P$ 2 ) { 2] ^ 7- ## ] 2 ( X@ { ; X@ < 2 N$ ~ ) 2 [ d V~ } ( } ,# a 6- } 6 $# $# } $# ( $# ,# [{ Y> 5 e ,# Y> $# J] 7 J] a Y> ## d a 3* } [{ g 6 ~# 3* a a a ,# 0 s> 2, ~# vk c ]# 0 p ,> r ]# m 1; u h `$ `$ c{ n 2, s> m D p m D q `$ C 4* _# F u Z$ ^# 4* G F {& m :# ^# w K :# t G G m Q@ I '> I 8* 2; }# G I <# I O@ Q@ O@ A 8* =K J M E I :* :* L n> L' a- H$ T L G$ L t> L U Q r! U E$ Y L U H E^ 0* 4# Q d- C$ I@ ={ d- P' P 2# @. X @. . E@ W E@ C$ 7# C$ R C$ G; =. $% a* 8# +. 6# X a* @. E@ a* . =. !. A@ )& +. ;. &. G$ 5; )& z$ z$ -. &. A@ )& .. $% +. =. *. A@ z@ ,. R' A@ z@ {. .= +. ,. F, z@ %. 5# A@ &. A@ ;. !. )& &. {. ^. ;. )& -. A@ ). '. A@ 5; A@ (* *. ). ). >. ^. &. !. v@ ^. t@ ^. x@ '. ). &. &. ). p, &. 5# {. '. x@ ^. *. &. 5# ). -. (* {. b# (* (* C@ v@ %% A@ -. ). ). l> x@ . <; z@ p, !. +. -. ;. x@ 5# +. ,& &. ). A@ !. (* -. x@ D! 5# z@ . A@ A@ I@ +. (* A@ z@ &. !. =. A@ &. .. 5# E@ )& 5# z@ $. +. '. =. +. 5# 5# +. #. B$ }; 7# .= +. L@ 4# E@ X I@ P G@ V L@ J@ @. C$ L@ L@ X I@ T 3# H I@ }; T d- Y $> L H ` I@ P I@ E$ J 5* o! L$ 2! ^, x, v, x, s, s, u, u, z, u, z, s, s, s, z, x, u, x, x, s, u, s, s, v, x, x, v, s, s, v, s, y, s, r, s, s, s, =) s, u, x, v, 8' v, |) r, v, s, 6' v, s, s, s, s, v, +' v, r, x, ' v, s, s, s, z, x, v, v, s, s, v, s, s, s, s, x, v, v, x, s, 8' v, s, s, u, u, H) 7' x, u, s, x, y, x, s, x, H) `, ]& D, ## ## g 9 ## } $# 8 d $# $# &# 2 ( < { ( 9 &# *# *# ", +"s, Vp.+' 8' [: z~ z~ *[ z~ z~ z~ *[ *[ *[ z~ z~ z~ *[ Xp.ah.2! *[ *[ Il.rp.9| e^ 2! xi.$8.*) 9| <{ <{ 9| *) *) 98.9| <{ R@ R@ R@ <{ *) ], 8S ;b R@ ]^ R@ I/.l) ;b G= BN jP l) BN I/ I/ BN BN # [n I/ I/ 0' 0' 0' # K$ 0' Z, # # + L$ + ]& p9 L$ R@ # $= + $ . + > 1* |* o! = - + # # Q$ + o! [* $ $ . ; ; $ & ] . $ N$ $ - - %= > ; > %= U$ Q$ ~ | H= X@ 2 N$ P$ ) U@ ~ xS N$ ~ | X@ / J) ; ] | | N$ X@ 2 ) N$ ~ ~ [ 2 ~ { } } 4 X@ 2 2 W@ W@ ( ## { ,# 6- ( 6 7 b < F:.( d q> J] 6 ,# 7 e Y> q> d ,# ,# $# 9 i ,# !# a' c g ~# 3] ~# ,# o e ~# h a 0- h ># q> r h L= h n |& n m L= |& n n ,> s> q Y$ Z$ n h m `$ y ^# /# {& {& `$ (# ,> V| D 2; t /# }# {& (# C 2; N ^# w N N G A I z O@ Q@ |# M P@ M P@ P@ E$ P@ |# E$ A I 8* I M h] A M 3; A H O@ M@ 3& T O@ E$ d{ H Y o^ G$ L T L@ O= 2# 4# T C$ X O= 4# T L@ J V r9 O= 4d P $> y0 t> E@ . E@ G; . L@ +. E@ )= 5# H@ .. z@ . .. +. )= $% =. +. ,. e- &. >. A@ df e- &. >. ;. !. )& z@ ;. z@ 3^ (* ;. z@ #. 5# )& b# $% z@ !. >. p, 5# +. x@ o) >. !. 5# )& e- ;. ;. 4- 4- ;. ). x@ e- ). -. x@ !. &. !. &. !. ). &. -. F; +. !. *. {. &. &. ). &. !. 0# !. ). -. x@ ,& -. ~. ). =. &. -. {. x@ ). ^. l> G; -. x@ x@ A@ &. C@ A@ &. z$ D! +. =. -. x@ l> >. !. {. C@ 6# 5# $. !. )& x@ z@ !. !. >. (* !. . +. z@ L) &. . )= +. !. A@ 4- A@ !. . 4& B$ @. !. +. O= 5# +. G$ >. +. @. A@ z$ E@ A@ E@ 7# 0* .. 5# G$ I@ 2# S U T B$ P F@ T Y L' P $> $% 4# z$ J P@ H 2# V L@ C$ }; H 2# }; L@ C$ T 2# |# G ) + e^ q, v, =) z, s, x, v, s, s, u, u, y, u, s, s, x, y, u, y, x, x, s, y, s, s, s, v, A, x, t, s, x, s, x, 8' u, Yp.t, t, |) s, x, v, v, =) v, v, =) r, s, 6' v, s, s, x, s, @] u, s, u, y, A, 5' v, s, +' 5' v, 8' 8' s, s, s, s, =) +' v, s, 8' x, s, A, s, v, }) x, r, x, s, s, q, x, s, u, u, z, s, 6' Q$ } } : 7 -# } 7 :& $# : ## [ D, W@ ~ X@ 1 ## ~ *# ) < ", +"}) Vp.+' Mp.q, *[ z~ z~ z~ z~ *[ z~ *[ *[ *[ *[ *[ z~ z~ 2! vh.z~ z~ z~ xi.9| e^ <{ $8.vh.9| 9| <{ 9| 9| 9| 9| <{ 9| <{ R@ .( J$ <{ <{ *) <{ L$ I/.R@ R@ <{ ;b ;b 2^ 2^ J$ I/ I/ L$ BN 0' G= R@ 0' I/ BN I/ 0' 5_ + # 0' 0' $ # # 5_ # + + + # Q$ 0' 2) # ]& . . & +|.& [* ' S$ > > $ $ . $= . M$ > S$ U@ S$ ] S$ $ ' 1* $= P$ ~ & H= U@ | ~ . ; | R$ ; ] & ; P$ N$ & & ) 2 & ] T- { | ) Z! =' 5 { { 1 4 | Z! < 2 2 < ## 2 2 X@ Y@ 'W ) [ I= 2 2 3* J= a } } $# 6 V$ &# ( /& } ( 3] ( 7 6 q> 6 3] 5 K/ $# Y> 3* a L= $# 3* ~# e ~# z: n ,# [& 0 a h L= ~# L= 6! c6 0 n Y$ v L= (# Y$ Vj }& L= s> u @= 4* 2; q n /# `$ m y ^# p t m m @= h % ^# Z$ % G F= w K D 4* 4* M= m M= G #| O@ #| z I O@ I A z A M @% z A J I H$ z M G D P@ O@ E$ J E$ d- T H H J H 3# M O Oz A L@ T J G$ 3d T T T L@ P 0* O= T t> L@ C$ ={ y@ }; H V X . 4# a* )= .. W d- d- G$ R V .. _* . y@ 5# E@ $% $% >. )= 5# &. Q' )& .. A@ &. &. A@ z@ $% -. z$ .. $% )& #. 5# (* a# ;. )& ;. z@ $% z@ &. &. $. '. ). ;. p, 4) '. &. F, !. 5# ). =. &. ,. !. .= =. A@ A@ .= z@ &. x@ !. ;. -. '. &. b# &. ). .. &. x@ x@ =. !. %% A@ T' ). &. z@ &. %% -. l> ,& 6, l> ). x@ E~ l> (* e- &. l> ,& -. !. 4- x@ !. l> =. =. d# z@ 5# 7# A$ =. ). &. 0# C$ l> !. =. 5# &. ,. @. z@ z@ A@ .= ,. ). &. ;. C@ -. 5# A@ h~ 5# . $% B$ +. =. 5# =. .= R .= )& G@ C$ 5# }; #. 4# .. E@ @. C$ E@ y@ 5# @. X X 4# D$ V . E@ Z L@ L@ R #. 7# .= H H D$ U L@ T T H H P T T P H Z P@ S [ X! *) @] s, s, }) }) y, r, H) u, y, x, y, v, x, u, u, y, z, x, v, y, u, y, z, x, H) s, u, s, x, x, x, s, v, x, s, +' x, }) s, =) s, }) x, s, v, r, v, t, +' 6' v, s, s, s, v, H) r, s, s, x, 8' x, u, s, s, +' x, s, s, u, x, s, x, 8' y: t, =) s, 7' s, s, s, A, s, y, s, z, v, s, v, +' r, u, x, s, s, q, ~ [ 8 $# ) } { } ~ 2 ( $# J= ^ ;# 1 +# { 2 | 2 U@ N$ ", +"x, *[ Mp.Mp.Mp.[: 5o.q, z~ *[ *[ q, z~ *[ *[ *[ z~ *[ z~ *[ vh.|1 *[ *[ 98.9| e^ )~ 9| $8.|1 9| *) 9| *) I/.*) *) 9| <{ J$ J$ ], 8S 8S <{ J$ L$ l) R@ J$ <{ k3 ;b *) 2! 2^ J$ L$ BN BN #S I/ BN 0' 0' L$ L$ p9 L$ = # ]& 0' 0' # + # ]& V@ + 2) 2) # Z, $ # $ + [* - & =' . > $ p9 J$ $= S$ P$ > # $ . > . . O$ R$ ] ]& # # > U@ S$ Q$ S$ T- ; S$ & ; ; U$ ; ~ | U@ N$ 2] ~ ; ~ 2] Z! ) | N$ ~ X@ 05 ## X@ ~ 2 } ## ; 2 } Z! 2 ) ( 7- 8- } 4 } $# } { | d 1 6 W@ D, 6 5 } ,# ,# d d '# V~ e 6 a 6 d a <& 7 4 q> a a {# X$ c {# Y> ~# ~# 0- t' M' ~# 2* d a o L= ~# f c n ,> h K] _# r n c X$ K/ ,> ,> 1; :# D Y$ #] :# 1; t Y$ z: 0- /# b' {& 2; F= G D 4* ^# [# 2; K D #| m /# w N w w ^# `$ I A I 1& x w F= E; A M N G z E$ z P@ I w N P@ o> d{ J J E$ C, |# L A P@ A H$ T J Y T T H T E$ L L T H 4# T J T H L@ 4# L@ 4# O= X @. n) J R @. 4# #. Q' X E@ al y@ ,= X $% ,. 4# z$ >. A@ =. @. . >. =. . &. z$ &. .= . E@ 4# +. F, %. $% A@ &. !& -. =. =. z@ A@ (* ;. R z$ ,= !. $% V> &. V -. R' F, !. +. =. A@ ). x@ -. A@ )& ;. ). +. !. =. ;. x@ ). ;. ). !. 6, ). !. 5# !. p) x@ 8, &. '. &. ). !. '. A@ ^. -. ). '. ,& ,& =. 4- &. 5# &. +. ,. $% '. ;! &. x@ {. x@ ). z@ -. p, &. =. Zp.!. z$ &. 4- =. .= ). ,. 6# &. &. o) A@ ). L) $% F, z@ z@ .. +. v{ B@ A@ E@ A@ +. A@ +. 4- 4) 4& 5# I@ E@ .= V C$ +. W ,. .= I@ . . 9* 5# B$ E@ +. E@ 5# X 4# V 4# O T 2# 2# .= #. #. E@ H P L@ E$ H P O H X> H L@ J +% H H Y L 3; :* P@ S e = L$ q, v, v, s, s, s, =) s, x, y, x, y, x, u, u, v, x, v, x, s, x, s, u, y, y: s, r, x, t, =) H) A, u, x, s, s, s, x, s, s, s, v, t, v, x, x, u, y, x, s, x, s, x, s, x, r, =) s, %{ x, u, v, s, A, v, 5' s, v, @] v, v, s, r, v, v, s, s, v, x, x, x, x, s, v, v, s, u, u, s, u, u, s, =) u, v, s, s, *) ## $# ,# e } 8 : $# ) ## ) ( X@ X@ < { X@ Z@ - *# *# ~ ~ ", +"x, *[ Mp.+' +' 8' 6' q, q, z~ *[ *[ *[ z~ *[ *[ z~ *[ z~ z~ ql.vh.z~ z~ *) 9| ^, e^ *) *) xi.<{ *) <{ 9| <{ 9| 9| 9| <{ *) 9| ^, <{ <{ J$ J$ I/.<{ R@ 2^ L$ ;b L$ L$ jP I/ G= L$ ]^ R@ ]& 0' L$ L$ 0' 0' ]& 1) = 0' # + 5_ 0' + K$ # + # % . $ % V@ Z, = ]& Q$ V@ [* > $ $ 5_ > T@ 0' ]& [* ' $= S$ U@ S$ # . - > & U$ U@ H= U@ ] $ > - %= . | ~ ~ U@ U@ ^ & H= %= & Q$ Z! H= ; ] ~ %= ; U@ 7- ~ | ] ; N$ | ~ ) 2 Z! ~ N$ *# ^ %= W@ } 2 T- < 7- ) ## ~ 5 } d ( Y@ &# 3* k 7- : 8 6 ( k 2* Y@ d D, Y@ a' 6 e k a *# 6 0 ,# ,# L= e c k 7 0 L= L= L= z: L= h 0- e K/ L= g `$ L= h ~# {# ,> q s> L= c c{ q ,> m t p c Y$ q `$ t F m Q{ q ]# 2; w G {& N C 2; 2; % Y$ :# :# )> z '. A@ *. 5# W> v@ 5# -. '. -. #> A@ ). -. ). A@ z@ &. >. z@ !. 5# &. z@ z@ !. 5# &. 5# )= z@ -. -. ). z@ ,& v{ z@ &. z@ @. &. E@ L) l> $% A@ -. E@ =. &. 5# 7# -. 4) V E@ . l> z@ E@ )= s! O= z@ !> V V +. G@ 7# O= E@ #. G@ 1# 4# .= @. O= G$ Y 2# +. E$ P V 2# z$ X H V D$ 2# E$ J 2# Q P@ O @. C$ J O S H T J P@ |# S _# $ ;b q, %{ v, s, s, s, A, u, s, y, y, z, y, y, y, y, y, x, v, s, s, u, x, y, y, u, u, v, z, s, u, x, s, u, x, 7' g] s, s, v, s, 6' x, s, x, s, x, s, s, s, s, 6' r, s, 7' v, u, u, =) s, v, 6' x, s, x, q, s, s, s, x, x, s, x, H) =) v, x, x, H) x, s, s, s, s, 8' s, s, y, x, u, x, x, t, x, x, u, s, ~, { { /& { ## ( 8- $# { ) &# d d [ *# 2 ## ) %= 2 ~ ) X@ ", +"w, z~ Vp.Mp.Mp.Mp.Op.*[ z~ q, q, z~ q, z~ z~ z~ *[ z~ z~ *[ 2! `p.*[ *[ )~ 9| *) e^ <{ |1 $8.2! *) *) 9| <{ 9| <{ 9| <{ <{ 9| 2^ <{ <{ (c.<{ <{ <{ J$ <{ L$ ;b l) p9 I/ I/ R@ 0' R@ L$ 0' 0' 0' R@ I/ I/ <{ + G= 0' Z, # 5_ [n = # V@ + + # * # * # [* ' $ . # Z, ]& V@ $= ' $ $= $ $ }, $= 5_ ' $ ; & & . $= & A; - ; *' %= N$ S$ U@ g{.U$ ; ; & U@ S$ T- U@ Q$ ! ^ ~ 2 ; ] | ~ X@ ; Z! 4 X@ I= 2 | { 4 [ ) Z! 2 2 P$ N$ | | { ( { 7- I= } 1 | { d 6 : b 3* 6 ,# V) ># $# Y@ 6 ( $# a Y@ 7 k a 3] 3* q> vk d 7 / {# 6! 8 ># W$ 6! d 9 6! {# 6 } ~# L= 0- Q{ 0 h ,> e h 3* ;= n K/ L= v s L= `$ Y$ p r Y$ % ^# `$ ,! n c ,> w `$ % 1, 4* G F :# :# Y$ {& ^# ^# u 4* F 1; p w w w G w {& B W) {& {& q! I G G 1& %> M G D z M I A Q@ I A t> O O@ 3& H M :* E$ M K O@ I J Y L' L O@ L L@ L T X L@ |# C$ L@ H d- J L@ E$ C$ L T C$ d- R H T )= X U )= l1 .. .. 7# 4; @. 0* #. X y@ C$ i~ L@ $% E@ .. E@ z@ 7# G@ #. 6# B$ ). !. G@ .= #. V A@ 5# +. z@ >. &. &. $% (* C$ E@ E@ z@ A@ E@ ,. 5# .= &. >. )& $% 5# )& *. )& %. )= z@ 0# ~. b# $% 5# '. >. =. ;. -. '. ;. !. ,. !. A@ (* -. (* %% =. !. ;. .= z@ 5# z$ &. &. A@ ,= -. {. ;! &. C@ z@ ). !. &. &. z$ e- -. +. x@ A@ .. ). A@ ;. *. z@ +. 5# z@ L) &. &. z@ A@ 5# *. E@ &. &. =. -. &. E@ )& !. 5# ;. *. 5# .. 7# +. z@ 5# +. 7# C$ E@ 5# .= (* (* E@ .= ;. +. z@ z$ #. C$ G@ L@ V L@ @. T 2# X L@ U G@ I@ L@ 2# X J T T L@ X> P V 7# G@ H E$ T H H Y h] L' L@ H 8* O@ U H A H E$ @% K@ G . *) ^, q, s, s, x, x, s, u, u, y, y, t, y, y, x, x, s, x, x, x, u, y, x, u, y, x, u, u, u, r, A, u, x, v, s, z, t, s, x, q, +' s, r, s, v, v, x, |) x, s, s, +' x, x, s, x, u, r, s, [) x, v, s, s, s, v, z, x, y, u, s, x, x, s, s, v, s, x, x, s, s, s, s, s, s, s, s, y, t, -! }) x, x, u, x, [) =) $ &# } 6 ~ [ d < -> : ## -# $# $# { } ( 2 { ) { ~ U@ ~ ", +"u, [: z~ Mp.+' Mp.[: [) *[ z~ z~ q, z~ z~ z~ *[ *[ *[ z~ z~ ql.vh.z~ *[ e^ *) 98.)~ )~ |1 9| 98.e^ 2! <{ 9| <{ <{ <{ 9| 9| 9| ]^ J$ jP <{ <{ ], J$ J$ <{ ]& L$ k3 J$ R@ I/ G= L$ L$ R@ L$ p9 I/ ]^ I/ 0' L$ ]& 0' 0' + # + L$ T*.* V@ % + * # # $ + > [* [* + # $= [* > $= S$ = $= S$ =' . [* $ $ . |* - $ S$ ; [* S$ ^& - U@ H= N$ ; U$ $= U@ > H= - ^ $ R$ ; P$ ' ; N$ *' ^ . ] & { $ H= { W@ ; X@ 2 Z@ H= W@ { 7- { ^ | *# { *# 4 / } } X@ 4 X@ } $# 6 G9 ) 6 ,# } ( D, Y@ 8- ( Y> 6 4 d a 7 6! 6- 6 ,# a k Y> a 9 ># 6 6 ~# a } 3] a n !# 0 6 e ># W$ $# c e 6! 7 e a ;= 0 -) r n Z$ 0- s> `$ L= n c 7 r |& ,> Y$ p r 2, :# D ~# s> h Z$ Z$ m V| :# t D :# G ^# C Y$ B Z$ 4* w ^# /# w w D G z z I I I ^# N I N A F= x A P@ H$ z z P@ S z O@ M T 3# L' E$ H o> O E$ M |# P@ J U^ M P@ O 3) U Q P d- W @. L L@ D$ 3# J L@ P I@ d- U @. E@ )= @. I@ d- Y 3) I@ I@ L@ y@ X U G$ L@ L@ @. P +. . E@ 4# Q G@ z@ W Z@.$% y@ +. @. W H@ $% &. H@ )& 5# +. +. z@ z@ y@ =. $% A@ z@ -. z$ {. 5# >. z$ L@ z@ &. z$ @. =. b# 8# ). &. =. -. )& =. G@ &. !. ). &. ;. &. [, ). z@ A@ -. (* -. -. 7# ). B$ ,= z@ =. D@ A@ A@ &. z@ B$ A@ &. &. +. z@ =. -. $% b# ;. e- !. ,& x@ -. &. ,& +. A@ d# l> .. -. &. z@ &. z@ . A@ A$ z@ . A@ C@ z@ A@ &. (* !> 8# z@ (* E@ O= =. . O= +. A$ Q' R .. )= z@ A@ E@ 4# L@ 4# C$ L #. @. V G$ 4# 2# E@ V 4# D$ T ` L@ #. D$ Y H }; S L H 1# G@ T S L@ S L@ ` Y H S O J H H L ` J P@ H I K P@ M J C 4 L$ ], 5' 8' 8' s, s, v, x, z, y, u, u, y, x, s, x, u, s, x, z, y, z, u, x, u, x, s, x, s, v, z, 8' s, x, u, x, v, s, z, s, u, A, v, s, s, u, t, x, A, s, s, x, s, s, A, s, s, x, x, s, s, #' s, u, u, z, z, s, y, x, s, v, t, x, t, u, s, x, u, u, s, s, s, v, s, s, s, y, x, x, x, z, s, z, x, +' r, ; < $# 9 $# 1 W@ ) $# ( *# } } 6 ~ } N$ } { { < 2 { ## ", +"u, [: *[ z~ +' Mp.Mp.Mp.z~ q, q, z~ *[ *[ z~ rl.*[ z~ z~ z~ *[ 9i.vh.z~ 5o.z~ q, 2! Pi.*) 2! xi.|1 <{ |1 9| 9| <{ 9| *) <{ 9| 9| J$ J$ ], J$ ]^ R@ (}.s' R@ R@ L$ <{ 9| I/ I/ L$ 0' I/ L$ I/ #S R@ G= 0' I/ 0' 0' 0' 5_ # + ]& [n + V@ K$ # Z, !, # * ]& + + + $ . $ # + Q$ > = # > = . V@ = . ]& . R- = P$ > ; . ; > & Q$ ; M$ > $= . . . ' ~ $= %= > ; %= | ; S$ %= & N$ U@ 2 H= ' Z! ) 2 X@ ) X@ ~ ] R$ U$ 2 ~ T- & ## X@ X@ | / [ } { } /& [ } 1 } ## 1 2 $# d d } } } ~ $# D, q> &# 6- Y> 6 $# 5 { B; ,# 6 $# Y> : ~# 0 1 6- 0 ~# 0 a ,# b V) Vj e ]# 6 j tA r i L= a c h 0 o c |& q s> ~# ;= t V| p u ,> t 1; p q h n^ r 4* t :# n p m m ^# D 1; F= t D z w p ^# ^# :# 2; A I w :# t 2; A A I Q@ M o> P@ N@ z I O@ I P@ z K A O@ 3; Q@ n! z E$ d- E$ M@ I P@ I O@ A K@ H$ Q@ P@ L H@ Q G$ I@ T T L@ C$ d{ +% 1# T Q Y H T L L@ T G$ W W G$ ` L@ I@ I@ O= @. 4# 3) T L@ 4# I@ C$ +. $% #. L@ X G@ E@ O= A@ $% @. .. .= +. G@ H@ >. $% &. ;. 5# A@ *. V> A@ =. E@ . +. G@ +. 5# +. ;. &. +. 6# .. =. A@ A@ z@ =. e- z@ $% v{ x@ 6# 5# )& &. z@ F@ .. +. D! x@ (* ). 5# &. ,& ,& F, &. @. .. -. z$ F@ (* (* &. -. z@ +. z@ !. 5# z$ &. !. -. l> z@ e- (* A@ &. &. ,. x@ -. @. #. $% W -. &. )& 5# 8# 5# 5# @. 5# .. 4- .= z@ G@ 5# x@ .= 7# C$ B~ z$ @. >. 0# C$ @. F@ .. ). .= .. T 2# E@ W X Y @. T I@ W L@ L@ L@ V $% )= G$ T L@ X P 9* O T T ` P@ L' G$ Y ` T H >) L L@ S J H H O O 4; O D$ T A P@ H$ 3# P@ #= L K@ #= K= $ *) 5' s, 6' s, +' =) u, y, y, y, x, u, y, u, s, u, x, s, s, u, t, y, z, y, s, u, v, x, s, x, z, x, y, u, x, |) x, y, s, x, z, H) s, x, g] s, s, s, s, x, s, y, z, s, z, v, u, u, x, u, x, s, s, s, v, s, z, u, v, u, 8' s, x, u, z, v, u, y, s, s, s, s, s, u, v, x, y, z, u, x, u, y, y, x, s, [: ;# } d $# 7 7 &# } a } ( [& < 2 | } } 4 ) ( | ; ] ] ", +"y, +' 6' z~ [: Mp.+' Mp.z~ q, 6' z~ z~ q, z~ *[ z~ *[ *[ *[ z~ *[ rp.9i.*[ |1 |1 *) )~ Pi.*) 2! |1 Pi.9| 9| 9| 9| 9| 9| 9| <{ J$ R@ R@ J$ $8.<{ ]^ ;b <{ I/.L$ jP <{ <{ L$ L$ I/ 0' I/ I/ I/ jP BN L$ I/ I/ I/ L$ 0' I/ 5_ = ]& [n 0' # # K$ L$ + # $ ]& ]& # $ o! # T@ = R@ > = 0' > > > M$ [* ]& ; }* ] ~;.- . U@ > S$ H= $ S$ - ; P$ * > H= . T- R$ P$ ; & z] (& ; R$ ~;.U$ U@ ] ) { ] Q$ ~ ~ { O$ *# { 2 { { X@ { ~ ] ) [ 2 2 { | /& 2 8- d *# { ) X@ ~ } d Y@ $# 2d ># 1 [{ d } { ># 8 a V) 6- $# ,# Y@ d Y@ ,# ( a d b 0 ( $# i k a n j c h L= !# ~# L= c 0 h c ~# n ]c h ]c L= [& {# h r ~# q n 1; q h t (# _# L= q :# s> r t Z$ D m ^# O' y p s> m m D 1; 2; ^# ^# G `$ G 4* G w D t N w I z . @. z@ ,. 5# =. z@ +. E@ =. 5# +. =. E@ [, L) 5# X $% &. G! z@ +. .= #. 5# E@ ,. (* z@ @. W~ 8# $% !. +. 5# l> 6, ;! l> '. G! 5# .= ). z@ {. A@ #. -. (* -. 6, +. -. -. E@ #. 6# .. A@ .= E@ ;. V> -. l> -. E@ $% .= z@ 4# 7# !. ). . -. *. ). (* 5# .. E@ B$ z@ .= z$ #. a* V E@ .= E@ .= $% G@ 7# @. 2# @. z@ z@ F@ L V .= L@ I@ Y T E@ +. 7# W C$ V D$ H R ` D$ ` Y L@ T T U H D$ H 3& 2# H@ J L@ H@ J T E$ J O ` Q@ U Q@ J K@ P@ J z E$ E$ 3# M ^# > ], ], r, r, s, s, s, z, y, s, v, s, y, u, y, x, u, y, z, x, y, x, x, z, z, x, x, s, u, z, t, x, s, v, =) 7' s, s, y, s, x, u, H) t, x, v, v, x, +' r, y, s, u, x, u, x, s, v, v, u, s, v, x, 7' s, x, u, s, v, [) s, s, u, u, y, x, u, x, u, s, x, y, s, y, u, s, s, s, u, u, =) u, s, s, x, X( *) ## %# : b &# $# } 9 $# : < < @# ^ { { ^ N$ ^ 2 W@ ; & P$ ", +"u, z~ z~ q, Op.+' Mp.Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ *[ *[ Il.ah.z~ ql.|1 9i.*) rl.*) z~ 9i.|1 2! 9| 9| <{ *) 9| <{ 9| ], <{ <{ <{ <{ 2^ J$ 8S <{ <{ J$ BN l) <{ 2^ J$ R@ I/ 0' J$ ^, J$ I/ I/ L$ 0' 0' .( 0' 0' 0' Z, # + 0' $ # }, Gc ]& # $ o! R@ R@ + $ $ $ T@ G= ]& + V@ L$ V@ - = . # $ 0' V@ 1* > 05 H= > P$ & . - ; & - & N$ > N$ U$ 2) - U@ > Q$ ; N$ Z! ^ ; N$ ; ] W@ 2 ~ N$ ' | [ 2 N$ ) *# ( d d ~ 7- [ ~ | / [ X@ < { X@ /& X@ 2 2 < ~ 2 { { ,# 7 &# D, [ { d } 6 { ( } 7 d d 7 d $# ( } 0 /& d k a d {;.a ,# ,# i c ,# ,# ~# 0 e 2* k Q{ 0- A~ K= e h e a ~# {# o L= ~# Z$ r n `$ r `$ `$ Y$ |& p w % _# Y$ % c 2, r Z$ % 1; (# /# m F /# % C ^# 2, w ~& % t /# m G G 4* G w C x G O@ I z W) Q@ O@ D I C z w z M K P@ E$ E$ M A h] J I$ h] L' E$ 1& L M N ` L C$ L H |# d- L@ S H d{ P' L@ Y 4# O= V 7# D$ P@ O= R L@ I@ L J 4# 7# .. #. #. J 4# B$ P d- G$ I@ a* B$ C$ .. z@ 4& a* e- E@ E@ ,= P 5# >. $% . E@ +. =. A@ 7# . +. . @. +. a* #. +. 7# . 5# &. >. 5# 4# 5# !. ,. A@ .= A@ )& 4& 5# =. (* =. &. ). z@ &. X .= ). +. )= z$ A@ . 4& &. b# p) -. 0# z@ .= &. V> z@ ;. 5# z@ x@ {. 5# A@ ;. .= G! A@ d# *. +. .= @. X z@ G@ .= <; 5# +. $% A@ 5# +. ,= z$ A@ ,= z@ O= +. V =. .= A@ +. (* E@ y@ z$ E@ .= V A@ z@ z@ z$ Q' 5# )= 7# 5# .. P +. X X . B$ H@ S C$ H H E$ G@ H T J J ` L@ H U T H@ P L@ O L@ 3# H L@ +% K@ J L@ X L@ ` E$ J ` ` 4# C$ J H J 3& H M@ |# o> A H ` H E$ P@ K@ y N$ V! *) %{ [) r, s, s, u, y, x, s, s, y, u, y, x, y, y, A, s, y, v, =) s, s, s, u, s, s, x, x, u, s, s, v, s, s, x, y, x, s, s, x, u, y, x, v, s, +' v, z, u, u, v, x, 8' s, s, s, u, s, x, y, s, x, v, x, s, ' x, s, u, u, x, t, x, y, y, x, x, H) s, x, x, s, u, v, u, u, u, u, x, x, u, t, 6' V! } : [ +# { ## } [ ) } | [ $# { < ) { U$ H= { ~ { 2 W@ ", +"y, Mp.Mp.6' z~ +' z~ [: @] Np.z~ *[ z~ z~ z~ *[ z~ *[ z~ z~ z~ rl.2! vh.z~ z~ 9i.|1 $8.|1 )~ |1 ah.$8.e^ 9| 9| *) 2! ^, <{ 9| 9| 9| 2^ ], 9| <{ R@ .( J$ ;b J$ R@ R@ J$ <{ G= BN J$ L$ ], BN R@ 0' G= J$ BN 0' 0' L$ [n 0' 0' # # ]& [n # # * ]& # # + R@ + # $ V@ . $ . T@ & $ Z, ; o! $ # > 0' = - + # Q$ > . . . - . $ U$ H= & & | P$ & S$ ; U@ S$ %= U$ Q$ . . > & ~ ] ] | ;# | 8- /& | Q$ | %= X@ ) } ## 7- 1 ) ;# { { J) | } X@ ;# /& ( *# /& X@ 7- 1 { 1 $# J= <& 1 [ I= 2 ## /& ( $# a } Y> ~# 7 6 [ 5 Y> } $# 7- 9 6 d j a 0 0 e $# Y> X$ ]# 0 $# a a' c A~ s> c n L= a n 0 r `$ L= 2, ^# K/ ]# h q `$ _# h }& Y$ @= h D % ^# b' 4* :# ;= /# w 4* :# /# G m D D Y$ /# {& w ^# `$ Q(.z N= w I m G G C /# I G /# z I M N I m O@ K@ z I z |# U T P@ P@ I H A H |# M T H @% d- J |# J J H P@ T J C, E$ H t> C, 3) L T L I@ 3) L@ U L@ C$ P X y@ Q' X X W H Y C$ 2# 7# X X @. R X a* P .= A@ @. E@ O= e- .. . +. .. +. P 5# . +. @. y@ e- . 7# A@ >. L@ 7# A@ +. .= . W ,= +. E@ F@ @. 5# G@ A$ >. e- +. =. =. $. {. 4) .= A@ @. E@ =. 4& H@ Q' .= !. 5# ,= !. -. x@ &. b# {. z@ E@ E@ A@ &. -. $% -. z@ A@ E@ .= A@ . (* E@ A@ 4& E@ ,= F@ d- .= -. *. A@ W G@ 5# R z$ W ,= .= G@ T C$ &. z@ V E@ D$ 7# +. 5# &. E@ E@ .= B$ V 4# =. .= n) V .= y@ +. 4- C$ C$ X X C$ z$ $% P L@ L@ U Y H d- L@ +% L@ V T P@ 3^ X Z 1# L@ Y T ` H L@ U @. 4# #% Y S Y U M@ O 3# A :* H K@ E$ H$ J 1& P@ ` Q@ a- H M P@ 1& ^# 1 L$ <{ ^, [) s, H) v, u, x, u, x, u, y, x, s, u, u, y, x, x, y, s, s, y, x, z, u, x, u, s, x, x, s, s, ' s, s, z, u, x, u, =) z, s, u, x, u, x, s, s, s, x, s, s, u, s, x, z, x, A, x, x, u, y, u, s, H) u, x, s, s, z, }) s, z, z, z, y, u, s, x, s, u, x, z, y, y, x, x, x, y, u, y, y, s, 6' R@ [ b ## ( < } { ( } ## ~ ~ d Y@ < { 8- ) U@ [ ) { [ [ ", +"y, 8' Mp.6' q, +' 6' +' +' z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ ah.vh.ql.z~ 2! xi.2! )~ *) 9| xi.*) 9| <{ *) |1 *) <{ 9| 9| <{ 2^ J$ <{ <{ <{ R@ J$ ;b <{ ]^ ]^ ;b <{ 2^ J$ 9| <{ I/ k3 R@ I/ I/ J$ ]^ I/ BN L$ + 0' [n # # + 0' 5_ # # 0' V@ G= 5_ + <{ k) ]& 0' ]& # . S$ # Q$ ' $ . . ]& = # 0' ]& ; > > V@ > = # *' +i.$= k) S$ | %= H= N$ ; & & A; X@ > N$ | o! o! ] & U@ Q$ ' U$ | ) Z! H= P$ %# N$ ; ] X@ xS %# ! | { | U@ X@ W@ 4 7- N$ 7- g{.2 V~ [ ( } / } / 7- 1 &# } ## d 7- 2 } } ## Y> &# } a $# 1 J= a /& [ } 9 ( 5 3* ~# ~# g 7 e 7 ,# a 6 2* k k 0 a' 0 ~# 6 h [{ c :& m r n K= r 0 `$ n t' e ~# h t % ~# p t 9- _# `$ Q{ `$ C; m r :# 2; ^# C B F m w Z$ D w D /# z ^# N 2; m @= 2; G :# I I b' 1; Q@ N= z N /# K A 1& M ~& K@ H$ @% 3; E; I |# S I P@ K@ O@ B A |# T S I L' E$ P@ J J P@ L H M 5, C$ D$ O@ 3# |# I@ L@ L@ J P G$ P' V C$ X C$ O= X W I@ ` V Y X L@ 3& X $% W H 4# C$ G$ $% C$ E@ e- @. z@ =. .= .. X X z$ C$ $% ,= P 5# A@ .= X +. H 4# .= X E@ . C$ G$ @. =. E@ +. &. #. +. #. E@ -. +. #. .= E@ 5# !. B$ z@ +. @. 4& .. z@ .= .= *. .= &. B$ -. 4) z$ z@ +. A@ D! 4- . F@ B$ z@ 5# {. &. O= X z$ E@ z@ *. z@ #% @. (* $> .= .= 5# &. V E@ +. z@ .= E@ Q' H C$ 4# X ). B$ E@ (* 0* G$ G@ 5# R .= 5# $% R X P A@ C$ 4# @. @. T L@ V P 2# H P I@ .= P E@ L' C$ T d- L@ H T H Ld H@ H L J P P H I P@ J L@ 2# L@ P@ H O H L@ L@ 1# I@ L' ` M S L@ P@ E$ O@ K@ 3# Q@ E$ P@ S M P@ A |# c- x :& $ <{ 5' g] H) v, s, u, s, s, v, v, z, }) s, u, z, x, y, y, y, u, u, u, v, s, 8' s, u, y, z, s, x, x, u, x, s, s, v, s, s, v, x, s, A, v, v, x, v, u, v, s, s, 8' x, s, s, s, x, x, z, y, x, x, y, y, x, u, x, x, y, y, u, s, 8' s, z, y, y, y, t, H) s, v, 8' y, y, x, x, y, u, x, z, z, x, s, ] } X@ / $# [ [ X@ < == < } *# ^ 2 { [ ( / [ ~ N$ | ( ) ", +"y, +' +' q, z~ q, +' [: +' [) [) z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ z~ *[ vh.rp.*[ *[ 2! xi.*) 9i.9| vh.$8.9| ], 9| 2! *) *) 9| *) I/.J$ R@ R@ <{ <{ <{ ], ;b <{ ]^ *) 9| I/.<{ R@ *) *) L$ J$ ]^ 2^ L$ ]& I/ 0' I/ 0' R@ I/ 0' + # K$ 0' 0' + * $ 5_ J$ {c Z, + E! V@ + I/ $ + $ [* > . L$ > > > + V@ . $ + ; U@ H= . . U@ $ > - . 05 Q$ =' op.%= %= Q$ $ > ^ S$ N$ R$ ! | 2 ; & X@ N$ R$ . . %= N$ ; { H= | - H= X@ ^ ] S$ *# ) R$ 2 ## ) 5 N$ { } [ ) | d ## # ) 1 1 6 k J= ) Y> &# 2 ( 4 } ( d $# ,# `@.1 ,# 0 ~# 1 6 e b N' q> 6 2d !# } } d 3] o ~# ]# {# x0 o 0 ~# t' k j c 0- i ~# L= e n a K/ p h L= p ~# ~# Y$ p ~# 2, 1; :# 2, 4* s> r {# ,> :# m 2; {& y o _# `$ m C G 4* q % z ^# D w N ^# C; /# D w G w w I N F= G z n! {& z z a- w P@ I :# O@ H S z K@ 1& E$ M I t> G$ |# J J 3# J J 1& Y L O L@ C$ P@ T d- 3# ` L@ T T |# L@ I@ 2# H$ I@ H I@ I@ J T S H T L@ Q L @. Q P #. I@ E@ T #. G$ L@ V P +. I@ z$ E@ I@ B$ )& 5# G@ 5# 5# 9* H 7# 2# H G$ 5# z$ L@ .. C$ P *. +. W .= 5# E@ ,. $% V z; P @. D@ V 5# +. +. ,. C$ H@ 9* G@ O= =. .= r4 A@ A@ 6# A@ .= (* E@ .. z$ =. E@ 6# &. [; )= 5# z$ $% @. z@ 4# @. z@ P .= ,= F@ 5# (* 5# 5# G@ 5# 5# e- 5# .= (* +. . 5# )& 5# O= E@ P 5# 5# +. E@ 7# X W V +. $% H@ @. 4# R $% R K@ D$ C$ C$ 2# H T I@ }; }; }; C, }; 1# &' 4# T J D$ 3# H +% P@ 1# H@ C$ 3; X o> T S P U E$ P@ ` ` P@ L@ J L |; L@ J Y ` K@ 3# M J |# 3# S K@ M M@ C, L J A K M P@ M d{ F= `$ = L$ ^, g] g] s, u, y, s, s, z, u, y, u, u, y, u, s, y, y, u, y, x, s, u, x, x, x, x, y, y, s, s, u, x, z, y, u, x, y, 6' =) s, 8' u, s, v, u, s, u, s, x, x, x, x, x, x, s, x, z, y, y, u, 7' y, z, y, x, t, x, y, s, s, s, s, s, x, x, y, x, v, s, u, v, 8' u, z, s, v, x, y, z, t, x, t, 6' ~ } $# Y@ $# [ *# U$ : 2 2 { 2 < ) X@ } | 2 ) 2 | U@ | ~ ", +"y, Mp.+' v, 6' q, [: +' Mp.v, z~ z~ 6' [: z~ z~ z~ z~ z~ z~ q, *[ *[ *[ 9i.vh.*[ 5o.2! 98.e^ )~ 8S vh.|1 e^ *) 9| *) *) *) 9| 9| <{ <{ <{ 2^ <{ <{ <{ 2^ $8.<{ <{ 2^ BN <{ ;b J$ *) *) jP I/ L$ I/ 0' 0' G= L$ 0' I/ R@ 0' 0' 0' # * 0' J$ = * dp.]& <{ # L$ + # & k) L$ .( > + . > V@ M$ Z, > & ]& ]& # *' [* & S$ > !, . S$ & ; |* - $ S$ N$ ; U@ S$ & > ; U@ ; |* ; %= ] ~ ~ X@ X@ H= | U@ ; R$ & *' ~ ) | X@ N$ H= 2 { ) X@ N$ | 2 N$ ~ 2 | W@ 7- d 1 X@ d 5 &# / ( $# 4 } } a 5 D, d } } 7 ( J] &# 6 I= 6 a ,# a &# 8 6 d d ~# $# ,# Y> a ~# 9 a Y> a c 6! ,# L= c 3* ]# e 0 } o p V) {# L= 7 9- ,# n c{ s> _# r % h q ^# ,> r [& |& r |& q m % Z$ `$ `$ 4* D :# p ;) ^# r `$ s> `$ /# `$ p ^# ^# 4* ,> _# I w /# M /# w z z /# x I I N w O@ P@ w E$ w w n! 8* M M M@ J L a- G E$ J S P@ J K@ E$ P@ P P P H U T 3& L Y J D$ P P@ H I@ s! J H |# L@ I@ E$ X Y T P L@ I@ C$ L@ C$ R L@ 4# I@ L@ I@ Y U V +. @. V P O= fp.H@ X C$ L@ .= V> V 4# T P C$ +% 2# G$ [; =. +. E@ T C$ @. X . +. G@ H @. L@ P +. +. V E@ C$ 7# .= V E@ z@ V V 5# E@ O= P 5# . .. +. 5# R . =. B$ V B$ E@ P 4# B$ #. @. B$ #. z@ F; 5# @. .. C$ z@ .. +. =. z$ ,= +. G@ . 5# )& 5# A@ .= e- z@ 4# 4- +. A$ B$ R I@ z@ &. . W E@ y@ O= L@ @. E@ . 2# V 7# #. D$ n> V S G$ P C$ =. y@ .= 2# E@ 1# G$ M@ F@ 4# Y P ` Y H J U K@ J E$ +% P@ L@ Y C$ Y ` M@ S M Y L@ M J H$ J M S Y J E$ #= S P@ T S M I M S O@ P@ N@ H$ I H I I /# w Q$ ], q, x, v, s, v, =) x, s, H) u, u, u, u, z, x, v, u, x, x, y, y, y, y, y, y, y, y, y, u, v, s, u, u, x, u, y, u, x, u, 8' s, x, y, u, u, s, s, t, v, x, u, u, s, u, u, s, u, u, y, y, A, x, y, u, A, A, t, u, u, s, s, s, u, u, x, s, u, y, A, z, u, s, x, x, s, x, u, u, y, y, x, s, s, 2! ) 9 $# 7 [ ( < / X@ +# { < 1 | } ## $# X@ ( ) & 2 ) | ) ", +"y, q.8' Mp.6' q, [: +' Mp.6' [: z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ *[ q, ql..q.9i.*[ 9i.xi.|1 Pi.*) 98.|1 ^, <{ 9| 9| 9| 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ ;b J$ G= J$ <{ J$ jP jP 2^ R@ R@ ]^ L$ 0' I/ I/ I/ 0' <{ I/ I/ I/ 5_ # + X! p9 # * = + # # ]& # # [* $ ]& $ . # . V@ + ]& # ' o! T@ # = $= U@ S$ $= & U@ . |* ' > %= = > Z! U@ N$ Z! & > Q$ * . | > U$ & ; ) ] X@ & N$ ] N$ P$ & ; *' W@ 2 N$ ; H= { / ) U@ 2 T- { (& 1 ^ X@ 2 ) 8- / W@ 2 ## ( X@ { } Y@ ( d / 6- [ { } ~ } &# ( 1 d 6 x0 6 7 8 a ,# a a ,# V) [ d 7- 6 $# ,# b i e K/ e 6! 6 0- n ~# j 0 e *= _# 0 {# ~# L= n n K] ]# ,> `$ n e ~# ~# ~# Q{ K/ Y$ Y$ D 1; K/ % 1; ~# q {& @= Z$ Z$ w w 4* [& Z$ (# p ^# t 2, C G p Z$ G /# z /# @= 4* G I :# N {& G z {& E; A A w N w x K M M I M A: 3# P@ H$ O@ E$ N M n> S M h] M 3& H H J H L' m) H O@ T +% D$ 3# 3# 2# Q L@ L@ H 4# Y T I@ W P@ T C$ 5, C$ J H @% d- J H H }; T P H X .= V G@ L B$ X r! 3) $. .= E@ O= #. B$ 3! J B$ +. C$ G@ I@ C$ ,= @. B$ R +. +. R 2# J O O= E@ V E@ X 4# V X A@ $% =. C$ C$ .= O= ,= ,= !. $% R R 4# z@ ,= X X C$ .. 7# 3! z@ ` D@ z$ R H$ )= _* *{ W 5# z@ z$ V .= 5# W R (* 5# +. E@ V Y .= X @. 5# @. +. ,= $% &. 9* @. .. B$ i~ O= 9* L' W #. 4# E@ z$ V ;. 5# L@ L@ O .. I@ H M@ r! L@ K@ J S C$ 1# D$ D$ F$ P Y 1# S O Y C$ T T S 1# H$ M@ O c- P E$ P@ O O H L M P@ S E$ S L@ P@ M@ S h] 8* O K@ P@ J P@ P@ D$ P@ M P@ #= H I P@ K@ O@ z N@ ~ L$ [) v, =) z, A, t, x, x, s, x, x, s, u, u, y, s, t, y, y, y, u, u, y, y, z, u, y, x, s, y, u, s, x, x, y, u, u, s, u, s, u, y, y, u, H) =) s, y, y, u, u, y, z, y, u, x, |) s, x, s, x, z, v, x, s, u, x, 8' z, y, y, u, y, y, z, x, u, u, y, t, x, s, u, u, z, u, x, y, y, s, t, x, x, ]& } d $# { 2 ( [ < W@ < X@ *# ## ~ ## R$ ( ] 7- %= T- X@ ) ~ N$ ", +"y, +' Mp.+' Mp.[: z~ Op.Op.z~ Mp.*[ [: z~ z~ z~ z~ z~ q, z~ z~ z~ z~ z~ z~ vh.ah.*[ Xp.ah.xi.e^ Pi.<{ |1 <{ <{ 9| *) 9| 9| 9| 9| 9| <{ <{ 9| <{ J$ <{ J$ J$ <{ k3 J$ ]^ R@ <{ ;b BN L$ I/ 0' I/ ]^ G= 0' I/ I/ I/ I/ BN R@ 0' 0' = # $ X! 0' 5_ $ # ;b % $ L$ + ]& # # # 5_ [* o! $ . V@ Ez !, > > & > . Up.H= S$ ; N$ S$ > |* S$ . A; $ k3 & ; =' * | & = U@ ^& - Q$ ] ; ; T- A; g{.8- ~ & ~ ~ U@ ] . & < , 2 P$ Z@ 2 : R$ W@ 2 [ [ { [ 2 O$ { } < ) ( 2 $# &# ~ 5 ## ) ( { d ( *# ( 6 B; 2 N' N' { 2 /& } W@ $# 8 $# V~ { a ># /& *# 5 D, 6 k c6 e a s> a a 9 6 $# {# 7 K/ $# g ~# 0 L= ~# n n vA ]c 0 c h `$ [& Y$ ~# c c L= 1; % h :# 5` s> ^# n y Y$ Y$ L= `$ Z$ t % s> p `$ 1; 4* G w 2; I ^# m G w w F= w t w w G /# @= G O@ z I F= w G G M A S n! z H$ J Q@ o> M M A 8* a- P@ J |; E$ )W U G$ T I@ H L@ H d{ 4# Y H b- J@ T ` T V 4# H J Z L V P X T 7# H P L@ #. I@ 9* T J L@ U 4# 4# I@ T C$ $% O= O= G$ 1# }; ` I@ 4# C$ V +% J Y 1# L@ S G@ 4# 9* H K@ G! }; ,. .= @. 4# E@ }; I@ J@ I@ )= e- R 2# V G@ G@ 3! T C$ E@ G@ V 4# P .. G@ ,= V E@ L@ R ). . (* 4& . I@ z@ e- ;. #. F@ I@ L@ J +. (* 5# . z@ D@ O= G! @. G$ L@ W )= R C$ 5, X T @. @. C$ W z@ (* A@ O= Q' E@ 4# V @. O= X .= d- >) M@ L@ 4# 5# 4# }; H@ X .= 7# G@ D$ I@ T O X Y H E@ Z C$ D$ +% P U ` V T P P H$ P@ S D$ D$ H@ Y 3# Y Y P@ T ` C, E$ :* o> L@ J H S 3# M H E$ ` M@ P@ J H M A 3# S O A M x Z$ I I z M I 3* . %{ z~ s, s, v, s, H) u, v, x, u, y, y, x, u, v, A, y, y, y, s, s, y, y, y, y, z, 8' s, z, y, u, =) =) s, 8' u, z, u, x, s, u, u, u, z, u, y, y, y, y, y, x, s, u, x, r, y, u, u, x, y, u, t, s, s, s, y, x, u, z, y, u, y, x, u, s, z, x, s, s, x, x, x, u, x, x, y, y, u, x, y, z, x, # $# } } $# < 4 ~ ## [ ## ## < { 2 %# ) N$ P$ ~ o! & - { N$ ~ ", +"y, +' Mp.Mp.Mp.Mp.[: [: 6' [: +' [: [: q, z~ z~ z~ z~ z~ q, z~ 2! 9i.e^ z~ 2! ah.*[ z~ &[ xi.ah.Ip.|1 xi.|1 )~ <{ 9| 9| <{ <{ <{ *) <{ <{ 9| J$ <{ <{ <{ J$ <{ L$ J$ J$ J$ ;b I/.J$ 2^ BN ], J$ R@ R@ I/ I/ L$ I/ 0' I/ I/ 0' 0' [n $ = 0' 5_ 0' 0' I/ L$ J$ $ = ]& ;b # [* k) ]& $ k) Q$ . (& +q..( $ . $ + V@ S$ H= # A; > U@ S$ U@ N$ o! & P$ H= ' > ; > - > S$ & ^ X@ %= > ; | & ] & Q$ Z! ^& | N$ Q$ & I= | ~ %= ' ] I= { 1 7- X@ | [ 2 N$ ) ~ X@ , $# *# < g{.| %m 1 ( ( [ b 5 $# } ,# $# [ 6 Y@ } ( { 5 { ( 5 i } / 7 ~# d 6- 6 ># 5 a 0- b Y> d 6 6 a Y> 6 0 L= o h ~# 2, c ( a ~# L= h L= n 7 0 L= p n `$ h k n Y$ e n^ p ;= E, r s> Q{ K= s> c{ p Y$ V| D 2; p y p! % {& /# o/ 4* D m w B ^# h % @= G #] w t 5* z N F= ^# }# /# N 8* N N [# O@ z w I E; N O@ P@ A I O@ A I P@ A 3& A I :* Q@ L E$ H Q E$ T U |# L@ s! 5, H C, J M@ L@ X I@ E$ T J 1# T ` C$ X +% d- T 2# ` L@ S L H C$ H L@ G$ 3# L z$ I@ E@ @. @. G@ d- J L@ J . )& E@ 3& .= .. I@ Z +. 5# E@ 4# I@ H V E@ B$ H G$ L@ T 2# 1# L@ H 1# 4# D$ Y $% !. .= .= z@ 5# .= 5# V B$ H@ D$ V X 5# R #. >. z@ X W B$ A@ z@ R #. I@ t> |; 9* 3& }; z@ @. 4# #. #. .= C$ +. @. F@ .= 4# V Z C$ C$ 5# @. V G@ O= L@ D$ . }; E@ 7# . (* L@ O H H r! C$ 4# ` R E@ J T H@ $% C$ L@ C$ P P D$ P@ 3; 4# L@ P@ T 3) ` &' J L@ F@ H X 3) H E$ P@ K@ Y P S O 3& T P P H O z 3# M O S H H E$ P@ P@ P@ M E$ M@ J M G Q@ M M @% z E$ x /# A A G q! I o > e^ ^, +' s, s, 8' x, x, =) x, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, w, #' u, u, }) s, s, x, x, s, s, s, A, x, s, u, u, u, #' z, y, u, u, u, w, u, u, s, s, s, u, y, y, z, s, H) u, t, z, -! +' x, t, u, u, s, u, y, u, s, u, A, s, z, u, u, x, u, y, y, x, x, y, v, v, - 6 Y@ < I= : -# ) ) : 1 *# Z! ## *# { ) N$ ^ X@ # H= ] N$ ~ %= ", +"y, +' +' Mp.+' Mp.Mp.z~ Mp.Mp.+' Mp.z~ z~ z~ *[ *[ z~ *[ z~ z~ 9i.z~ *[ z~ *[ Il.9i.z~ 9i.xi.xi.)~ )~ $8.xi.vh.9i.9| w9.9| <{ 9| 9| 9| 9| <{ R@ <{ <{ I/.<{ 9| <{ <{ R@ l) #S L$ #S 2^ *) L$ BN (}.2^ p9 0' I/ I/ 0' 0' 0' 0' 0' 0' 0' * + 0' 0' Z, ]& # R@ ]& + ]& ;b K$ . ]& k) . . $ . & =' M$ + > + R@ |* S$ S$ $ |* U@ S$ > > > ; S$ U@ U@ *' - * > ; & P$ > S$ & ; P$ U@ U@ S$ U$ ] | | %= | S$ - & N$ N$ ! [ ~ S$ N$ %= R$ { , | { ) [ =' ) | ] `@ 4 7- ~ 7- N$ Y@ / < 2 ) } D, [ [ d J= 8- Y@ { %= Z! d { 4 5 1 1 1 6 a a } -# e j ( 3] N' e c ~# ,# } ,# a ~# a' o 0 K/ 8 2, Y> ~# 0 L= n 0 n c s> i g ,> ;= ,> n h r Y$ c ~# L= n n y % ~# C; s> `$ t 1; s> s c `$ ^# b' p Z$ m p w ^# p t Y$ :# m w w m /# I ~& 6* /# {& m D D z E; O@ Q@ P@ P@ M P@ P@ a- O@ I J Q@ O@ P@ P@ O@ =K E$ O@ E$ I |# E$ c- |# I@ H E$ I Q@ A 3# T T 3# A T O T L 2# J E$ J K@ L@ L@ E$ Y H Y E$ I@ N@ H$ P ` L@ H O Y 1# T 2# 1# D$ L@ P G$ E$ S d- 7# C$ @. G@ R D$ Z D$ I@ E@ }; T V 7# 1# P @. 4# P G$ D$ Z I@ H G@ O= E@ G@ X 4# }; F@ +. H@ C$ 5# B$ @. T L E$ L@ H L@ @. H@ E@ B$ 5# z@ X .= @. I@ +. z@ #. G@ E@ 4# T y@ e- V> X A: P ,= C$ #. 4# @. C$ +. C$ O= M@ T z@ (* C$ C$ (* O= H #. 3) L@ E@ E@ L@ X L@ L }; X E$ 4# 1# V J@ I@ L L@ L@ C, L@ Y X G$ Z O O L@ V P I@ Y .= L@ Y Y P@ M@ L@ E$ M@ M H$ O P@ K@ E$ |; J C$ H H +% L 3# H J H P@ #= T S M P@ T J H L@ P@ P@ I H M K@ M P@ @% H$ I G M A N G ^# p $ <{ 6' v, x, s, v, u, x, x, x, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, x, y, u, s, x, y, y, y, y, x, x, x, x, u, x, x, t, y, y, s, x, y, u, x, u, 8' s, s, u, y, z, v, y, u, y, x, s, s, r, s, y, y, y, u, y, y, x, z, y, y, y, s, u, x, u, y, y, s, s, v, t, s, v, ; { ## } < ~ ( == } /& -# < { W@ U@ ) ;# ; [ { ) 2 | | S$ ^ ", +"y, +' +' +' +' Mp.Mp.z~ 6' Mp.6' Mp.z~ z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ 9i.z~ *[ Ip.vh.9i.z~ xi.xi.|1 Pi.9| xi.xi.)~ *) 9| *) <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 2^ <{ 9| l) R@ I/ J$ 8S BN *) I/ BN ]& R@ BN BN I/ I/ 0' 0' 0' 0' L$ I/ I/ + * ]& X! = # Z, L$ ]& # = + % + $ + $ k) . Q$ (& @q.R@ ]& # }* = . V@ Q$ . ; ; > > > > S$ $ T@ U@ . U@ - & X@ ; ; U@ = & |* > ; .# . + > > & N$ T- { ; ; R$ Q$ %= [ | N$ ] N$ *' [ | ) ( { ## X@ [ ^ 2 ~ ~ 2 ) ~ 4 N$ } } 1 7- } 5 I= } 5 4 J) I= D, { *# ( } $# d 7 Y@ 9 a 8 $# $# I= 6 d : == ># 7 $# 0 6 ~# !# 0 !# B; k a 6 6 a ~# ~# 8 g ># e 0- ~# m n 0 v {# Y$ h h ~# ,> r s> s> -) n p r L= r Y$ p :# Z$ p `$ c % `$ /# ^# C 4* % Z$ ^# ^# t h t % G 4* `$ % ^# E; m t /# Z$ K G G G w C I A P@ Q@ 8* M G C O@ z A |# O@ I I N %> |# 8* A O@ P@ Oz H P@ J 3& O E$ J Y Q J H L@ 1# 4# J Y J Q T n> O H P@ P@ Q@ J ` P 1# P L@ L@ J 3; |; H |; O J +% M@ H$ P@ L@ S 7# I@ U J@ V V 7# W C$ H 2# U H@ I@ L@ #. y@ C$ T 4# @. E@ T L@ H@ U .= D$ 4# }; P I@ J Y I@ X 4& .. 2# D$ H S 1# z$ X H 4# @. z@ Y F@ C$ E@ C$ G@ 7# V 4& V }; F@ P J I@ B$ 5# G$ 2# 4# C$ L@ I@ @. W I@ 4& +. .. 9* L@ L@ C$ z@ 4# }; I@ T L@ D$ C$ #. W 1# L@ ` P r! |; O D$ 2& L@ H U H ` L@ P P S 2# H L@ L@ |# H L@ P@ H L@ ` L M@ S M d- Y K@ S H J M@ S J +% L H H L Q@ 1# O 3# c- M M Q@ P@ P@ S K@ I I x H$ E$ M@ O@ M N A M O@ S M z I I I G G w C (# O$ ], ^, [) s, A, s, v, s, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, u, z, x, s, s, u, u, x, u, =) s, x, u, y, u, x, u, y, u, s, u, u, x, z, z, x, x, u, y, y, y, s, u, y, y, y, y, y, y, x, y, y, x, z, u, y, u, v, u, x, u, v, s, z, v, y, u, x, 8' s, u, }) 6' ~ : } 4 U$ < ) ( | ## [ ) ; { { 2 ) & 2 : 2 *# %= U@ ] ) ", +"y, s, [: Mp.Mp.Mp.Mp.z~ z~ +' [: [: [: z~ z~ *[ *[ *[ z~ z~ *[ z~ z~ |1 q, z~ z~ ah.ah.z~ 9i.2! 98.*) )~ 9| 9| 9| 2! *) 9| 9| <{ <{ 9| 9| *) <{ R@ J$ J$ <{ ], I/.<{ L$ 2^ BN J$ J$ <{ ]^ J$ ], J$ R@ I/ BN I/ I/ I/ ]& 0' 0' I/ 0' I/ p9 # $ + I/ + # 5_ = V@ $ + + # # L$ = . ' }, . > > . . S$ & > . U@ ' !, S$ . !, = - . Z, $ N$ S$ Q$ - Q$ $ Q$ & . Q$ & + . . ! > ' U@ ^& Q$ ; | ~ ~ ) 7- | Q$ /& ~ g{.| 2 { { ~ ~ X@ P$ | | *# ) 7- J) { I= 8- W@ | Z! 1 1 } 8- ( 6 6- Y@ d <& 2 } 8- 2 I= 4 D, J= 6 ( D, d ,# 7 7 ,# 6 7 a e Y@ Y> Y@ ## k 0 j c a t' j M' c n a c L= 2, g 0 ,# a n |& n L= L= r Y$ Y$ h [& Q{ 0- Z$ Y$ |& h n ^# Z$ p `$ r n Y$ r r ^# F :# Z$ 2, p `$ Y$ |& m Y$ w D ^# Y$ ^# w ^# G b' ^# `$ `$ 4* t G m A /# 1& E; A _# w O@ z A m) F= N 1& 8* z n! 1& H$ n! |# E$ M I P@ H$ E$ M S A M E$ S ` Q@ 3# E$ J E$ T P@ J O m) H P@ M C$ Y J +% P@ P@ X H$ P@ E$ T O Y L P M@ S E@ T H@ C$ }; G$ U V J P D$ ` H P@ P 2# Y Y H@ E@ P@ 4# S S @. C$ I@ L T E@ .= H G$ 1# H 2# V E@ L@ V 4# r! H 2# V V E@ G@ J 4# V V 4# L@ ` H 4# 2# E@ V P E@ L@ C$ C$ O= O= V 7# i~ @. T X E@ F@ E$ d- R T C$ Y }; d- ` |; P C$ ` F@ X @. T D$ X G@ V 2# I@ P 1# G@ T E$ L@ P@ T R Q J P@ H@ I@ V D$ P' 1# M@ L@ d- P@ E$ V P $> H d- J H H Y H A M@ M@ L@ T T H Y M L Q@ S ` J Q@ I@ Y J S P@ S P@ Q@ H S S H$ P@ I G M M 8* #= I I A z P@ I z I H$ G w G Q@ N G w y D $# s' g~ v, s, t, s, s, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, A, u, t, z, u, u, y, y, y, x, x, u, u, u, u, x, y, y, u, y, y, u, s, t, A, u, x, s, x, z, y, y, y, y, x, u, u, x, u, u, z, u, y, y, u, s, u, u, u, y, u, y, u, x, x, x, s, u, s, =) y, t, x, s, #q.^, ] W@ ## $# [ | 2 $# ) } : / W@ ## 2 2 2 ; ~ | 2 Z! ;# X@ ) ~ ", +"y, s, Mp.Mp.Mp.Mp.Mp.q, *[ Mp.q, Mp.Mp.%{ z~ z~ z~ *[ *[ *[ *[ *[ z~ 5' z~ z~ z~ ah.Il.*[ *[ z~ |1 9| e^ 9| |1 $8.9| <{ 9| *) 9| 9| 9| <{ 2! <{ 2^ 2^ J$ J$ *) 9| jP J$ J$ R@ R@ p9 jP 2^ R@ 2^ 0' L$ L$ L$ k3 0' G= 0' 0' I/ BN I/ I/ p9 $ K$ 0' = V@ + ]& 0' ]& + # $ % + + # ]& ]& = [* ]& {c $ p9 V@ # > + . ' . S$ - $ ], U@ & Q$ ]& > U@ ' Q$ + ' > }* Q$ Q$ %= ] ] H= N$ & { }* ; | ~ Z! | | ' U$ 7- o! { -.2 Z! [ Z! { ) 2 2 2 | 2 Z! ^& ~ P$ { : X@ U$ | 2 [ $# { ## ) d } %# /& 7- , ,# 2 ,# ( } q> 6 a Y@ D, 1 k 7 ( i /& 6 a V) 6 <& 5 2* !# d 8 ,# [& 6! ># k a ~# k L= 2, 0 f 0- h L= c{ c c Z$ e L= r p r K/ 7 c l r n t' o r h e p `$ s> Y$ t n^ ]c Z$ _# 2; m t s> O' % Y$ D {& p w /# N N {& z ~& % E; q m N D m m D % {& 4* 2; G G $S t G #] #= z z F 8* I M I H O@ A P@ P@ I |# x M 1& A P@ K@ I@ T H$ L@ 3) J J J q! J L@ J P S K@ P@ S Y G$ ` H K@ H 4# L@ L@ P 7# L P 3) H J C$ ` V C$ S H I@ C$ #% L@ U 2# X C$ I@ H H U I@ @. L@ Q H@ J C$ T 1# P P L Z Y U U P H D$ C$ +. E$ J J }; Z A@ .= L@ I@ 2# 4# 2# P X> G@ d- 2# C$ @. B$ @. .= D$ H@ X E@ .= $% E@ .= L@ D$ B$ V i~ O= 7# T G@ 4# I@ G$ L H@ L' o> L@ I@ G@ O= V O= #. X P G@ P J H L G@ G$ 4# Y d- C$ C$ 4; L@ #. T L@ @. I@ K@ P += d- 2# H H H D$ J +% 2# Z T S Z H$ +% H J P@ K@ c- ` K@ H O@ K@ E$ E$ P@ A M L@ N I S 3# P@ O@ I S 3# 8* G K@ A #= 8* A I z G P@ P@ c- n! N w z N q! /# P@ G w D O@ o ]& ^, 6' v, #' v, z, u, u, x, y, u, u, y, y, u, y, y, u, y, y, y, y, y, z, y, u, =) z, s, y, y, u, t, y, x, y, u, 7' y, y, s, x, t, v, u, x, s, s, s, s, x, s, z, x, z, u, u, x, y, y, y, y, s, x, y, }) }) v, y, y, z, u, x, y, u, u, y, z, x, s, s, t, x, s, u, x, y, s, v, s, q, ], X@ X@ 1 2 1 W@ [ Z! Z! { b d { [ ## ~ ^ ] ] | ~ { %= +# %# %# ", +"y, x, Mp.Mp.Mp.+' Mp.z~ z~ [: Mp.+' +' z~ z~ z~ z~ z~ *[ *[ *[ z~ z~ @] q, z~ z~ 9i.rp.ql.z~ z~ xi.9| e^ *) 9| $8.9| *) 9| 9| <{ 9| 9| <{ 9| 9| 9| 9| 2^ J$ <{ 9| J$ I/.I/..( ]^ L$ jP ;b G= ]^ (}.#S L$ R@ G= 0' I/ L$ ]& 0' I/ I/ I/ 0' $ + = #S 0' + # $ 1) # # + ]& + M$ + = $ * Q$ + > $ $ = $= S$ $= ]& V@ S$ . |* N$ # . U@ P$ k) N$ U$ S$ . > > [* ^ N$ > N$ | ] & N$ U@ | U@ U@ ; X@ | ' U$ R$ N$ | | *# ^ P$ H= ) & N$ N$ ] ~ /& 1 { 8- N$ { 7- 2 { X@ 2 { ## 2 7- { d { } D, { $# } 4 } /& ## 5 ( ,# a &# } / -# ,# ,# a a b } 6 b &# &# 7 ,# 6 9 3] k n 0 [& 6 k 8 ~# c{ n a r ~# n g ]# n ~# ~# ~# b Z> h 2, r ~# L= Y$ c c h h ~# p p Y$ 0n E, p D `$ p 4* K= % h m h n t ^# {& 2; C x ^# @= N m p ^# p 4* N $] G C C b' N /# w {& `$ N {& I G z z A M M I I A E$ 8* I 1& G O@ M b- AR A T H$ P@ P@ #= H E$ M S H T J J J M O O@ S L O@ P@ Q@ L' I@ E$ J L@ H ` J M T P E$ L@ 5# H +% 2# H$ P L@ H S C$ U Z I@ 3) D$ T L@ ` P ` H@ J@ |# P H 4# 1# 3# h] Y U H #. 3; C$ V Y D$ 4# 4# E$ D$ O= I@ H@ P H@ z$ C$ C$ }; P@ I@ T L@ U L@ G$ C$ V @. 4& =. C$ 4# .= #. C$ H D$ X #% d- U P T V d- 4# P 3) L@ V J L P ` G$ 2# 4# d- 4# E@ J T L@ +% L@ n> U J X X C$ H$ L@ H 1# H r! G$ D$ C$ S Y I@ K@ T Y Y P U 3) V T d- ` +% L $> J E$ S L@ P M L K@ P@ M H$ |# M@ P@ S M@ J I M J M@ M@ K@ O@ A 8* A b- P@ H$ A P@ I M I I I A M a- A A B Q@ z x z I I N G z w ^# h $ *) g~ +' v, s, y, u, u, v, x, y, y, y, y, t, s, s, x, u, y, y, y, y, u, y, y, u, x, x, z, u, x, s, u, r, y, s, s, y, z, s, s, s, #' y, s, x, u, y, y, y, x, y, y, y, y, y, u, x, x, y, z, y, y, #' s, u, s, u, y, t, x, u, z, x, x, y, s, s, s, s, z, y, u, u, u, y, y, z, u, s, + | 2 9 2 X@ | $# ) R$ W@ [ .# ## [ { | ~ ) ## 2 ~ | ) ( 2 U@ ", +"y, x, +' Mp.Mp.+' Mp.[: [: [: +' Mp.+' [: *[ z~ z~ z~ z~ q, z~ z~ z~ 9i.*[ *[ *[ 9i.vh.|1 z~ z~ xi.xi.*[ )~ <{ $8.vh.z~ 9| 9| 9| 9| <{ 9| 9| 9| <{ 9| <{ 2^ <{ J$ J$ J$ <{ l) 2^ ], <{ p9 L$ R@ R@ BN L$ BN BN L$ I/ R@ I/ 0' 0' L$ I/ 0' + I/ + I/ L$ 5_ # ]& $ V@ # # ]& J$ + . k) # $ + Q$ . + = . & Q$ $ > 1* Q$ - . ; U@ $= > ; Q$ . %= |* & . . & ; | ; ; ; - - > U$ N$ o! ; ] ] Q$ S$ f] X@ 2 ] | 8- { | X@ R$ ~ U@ H= ) ] N$ { ) N$ 2 { ( [ Y@ { ## 7- X@ ## ( 2 { ( ( ## { J= 2 ,# / D, $# 2 Y@ 6- } } $# } $# ,# ,# : == a B; } a b == 6 ,# ,# 0 B; ,# Y> $# g ~# k i q> a 8 V$ 0 ~# L= c L= V$ 0 L= 2, ># c{ 0- k r `$ ,> n r r c b ~# n t ~# n p `$ `$ Y$ }& @= r Z$ s> m Y$ y D -) m V| % m m m 1& C 4* 2; ^# F= 2; ^# 1; m /# `$ G m 2; N= ^# B 5* G Z$ A A D z A I @% E$ a7 A N@ M I I S A O@ M M |# Y C, E$ I S L M E$ A H$ O |# A h] A S H U S H P@ T L 3& J T J P@ J P@ J H$ E$ Y T J Y G$ I@ M@ Y 1# Z M F@ L@ M Y V H P S P@ d- P V H }; 7# .= O= I@ Y M@ C$ K@ 1# T +% J T P I@ 4# U 1# T Y L L@ L@ D$ E@ L@ U J H T J P H 4# ` C$ X G@ S L@ T X X H T J H 1# Q T H@ E@ G@ V L L@ T I@ T L@ L@ T U Q 0* I@ Y H H I@ 4# V J I@ X L@ H R 2# H M@ M@ T H M@ 3# S H T L@ U }; H H H H L' H M P@ J E$ S L@ H$ S 1# 1# P@ S Y J K@ Q@ E$ H$ P@ M H$ K@ P@ S K@ T P@ L N@ 8* M O@ M H$ M P@ M P@ z O@ P@ 8* A I x M@ A S I b- A I z G D b' C w N x M 1; ; i) 5' @] s, v, v, u, u, y, z, u, y, u, y, y, u, u, z, u, s, v, s, z, x, y, u, x, y, u, x, s, z, u, v, s, y, x, u, u, x, s, s, u, x, x, u, u, y, u, y, x, z, u, z, u, x, u, y, y, y, y, y, y, y, u, u, y, y, u, u, s, u, u, z, s, s, s, s, s, s, u, u, x, x, u, z, x, s, s, s, +' . [ $# ) { /& } / [ / [ W@ | } W@ { | $ 2 ~ ; ; ] ) |* ] N$ ", +"y, s, +' +' +' Mp.+' Mp.+' q, [: Mp.+' +' Vp.z~ z~ *[ *[ z~ z~ ah.2! z~ *[ z~ z~ *[ |1 xi.Il.z~ ah.xi.|1 e^ )~ |1 9| &[ <{ 9| *) 9| 9| 9| <{ 9| <{ <{ R@ 2^ <{ <{ <{ l) L$ .( R@ R@ .( .( R@ R@ I/ ]^ ]& I/ I/ L$ 0' G= R@ = X! 0' 0' + + # # 1) 0' = K$ # # $ 1) # ]& 5_ =[ . # T@ . > ]& Z, # $ 0' [* S$ Q$ * - . & & - U@ . + U@ ; Ez 5! & 05 $ - U@ %= ] U@ %= Q$ U$ ! U@ U@ ; > U@ %= S$ U@ > ^& | ; N$ & ; Z@ N$ N$ ~ ^ %= & ) | 5- ) f] S$ N$ [ { X@ X@ %= X@ { ( 2 7- /& $# ( W@ W@ x0 1 { 1 { { ## 7- 1 /& == d / 1 ( 1 ,# Y> ( ( ( d q> } V~ ,# /& Y> b ( ~# K/ 7 c n L= Y> ># 6- b ~# a 0 ~# c m*.6 b a ~# ~# 0 n 8 c 6! L= ~# c n ;= 0 [& e h 2, n m -) |& `$ p h l (# #| n `$ ;= `$ p p Z$ m ^# z % 4* 4* xE 4* {& @= ^# 2; {& z D t 4* G /# m w 2; b' m z w w I G O@ x G M M P@ M G O@ ^# M 3# A O@ M I M T Y I S +% M G Q@ M z M #= M L |# J H$ |# |# .~ o> Q@ U J 3& 4# L@ H Q@ C$ T L@ H H C$ L@ T T H P I@ H$ 4# C$ H@ P E$ Y Z n> J K@ |# H@ M@ J F@ E$ K@ D@ D$ P J #. J H$ K@ Y H@ L D$ 2# 2# V X 2# J P T P H@ 3# L@ L@ L@ P Y T P P E$ @. T d- F@ L@ P #. X #. 7# #. L@ J L@ L L C$ @. }; )= 2# L W I@ d- T H J G@ L@ T T #% G$ L@ C$ C, I@ J E$ I@ 1# U 2# M@ C$ L@ G@ Y J S P@ E$ H H I@ I@ K@ C$ P@ Y S J K@ S L J T 3# 3) H Q@ S H H$ M@ S M T H$ M O@ I N z 8* P@ 3# O@ C$ Y E$ O S I I K@ J z A G C z H A O@ G ~& I @% P@ w {& G N I K C /# G ^# Z$ {& ^# /# G 6- e^ g] s, v, u, s, s, H) u, y, s, z, s, y, y, y, y, y, y, u, v, x, y, y, y, z, u, y, z, y, x, x, u, y, y, y, z, z, y, y, z, s, z, s, x, y, u, u, y, y, y, u, u, u, t, s, u, y, y, y, y, y, y, t, u, u, y, u, y, y, x, u, u, -! x, y, s, y, y, t, x, y, y, y, y, y, x, s, z, s, 6' . } Y@ < { { d } ( } : ] , ) | W@ W@ ^ { ~ N$ & ] ' U$ & ; ", +"y, x, y: Mp.Mp.Mp.8' Mp.Mp.q, z~ [: +' Mp.[: z~ z~ z~ q, z~ z~ ql.z~ z~ *[ z~ q, *[ 9i.vh.9i.z~ 9i.vh.$8.e^ e^ *) |1 |1 <{ 9| *) 9| 9| 9| 9| <{ I/.<{ 2^ cp.<{ <{ 9| l) <{ l) R@ ]^ R@ J$ <{ R@ BN J$ <{ I/ R@ J$ p9 J$ J$ ]& ]& 0' I/ 0' p9 + K$ K$ = 0' K$ # # 5_ # * Gc 0' !, V@ # L$ ]& $ ]& $ |* & = . V@ *' . + [* [* $= U@ & |* U@ |* |* $ > ] & [* N$ - P$ P$ |* $= S$ > | . Ez Z! & H= H= ~ & > > | N$ ^ (& S$ H= U@ | g{.( ~ /& N$ | T- %= X@ ~ X@ ~ ) ( 2] 1 { *# X@ 6 ( I= / ## 4 &# d => Y@ 7 5 { ; X@ | ## &# / ~ 6 D, } ,# D, : 7 Y> } 4 5 7 7 ,# 7 6 a !# ~# ~# V) o i Y> 3] 7 d a {# ~# e ,# c a ~# n 0 $# ~# a i 6 2* s> c 0 c 0 0 ~# L= Y$ C; n C; n -) Z$ L= c e r p Y$ `$ h p ^# % V| 4* `$ u m /# `$ w y2 `$ % ^# :# w G w 5* I G ^# q M z z /# w B {& }# ^# m) /# I P@ w P@ P@ O@ q! {& I n! N I E$ N M M Q@ M a- A %> P@ K@ O@ d{ I@ O 3# P@ J A M@ H J 3) L@ P@ L L@ M H U O A H ` M 3# L@ T G$ E$ T L@ J S J J@ E$ K@ &' P@ M 8* O 1# J I@ H V W D$ D$ S 2# P@ Q 2# @. E$ P Y t> H@ H@ L@ H C$ J ` S Y I@ E$ T L@ @. @. H 2# r! T U T Y L T 2# D$ .= H I@ I@ H H T }; T J X L@ t> 1# D$ S P P U 3# T I@ P I@ J |; H T J T }; L 0* T L@ G@ 4# S U L@ H$ H Y L@ I@ Y J@ L@ +% O 2# P@ I@ M@ H M@ J X L@ L@ U J J S S J H H P@ M@ 1# S P@ L@ 2& J S M P@ L@ S P@ 8* Y S I I I O@ O +% S N@ z A A M H$ w z M @% H$ I z M N K N I F= z N G ^# F K I N % /# Z$ z h <{ [) r, =) y, u, x, s, u, x, x, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, 8' u, y, y, y, y, y, y, y, y, u, u, x, u, s, y, y, y, y, y, y, y, s, s, x, x, y, y, y, z, t, x, u, u, z, y, x, y, y, u, s, y, z, y, y, u, x, y, z, u, y, y, y, u, y, u, x, y, s, *) ; ( ## { { < { { { ~ ) { [ W@ ~ & ) ; ~ N$ | 2 ~ S$ U@ ~ & ", +"y, x, +' +' Op.Mp.8' Mp.+' 6' z~ z~ +' +' Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ z~ z~ ah.ah.*[ *[ 9i.|1 $q.e^ *) 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| <{ 2^ <{ 9| ;b <{ J$ <{ <{ L$ R@ R@ l) <{ l) 2^ G= jP I/ G= R@ ]& p9 J$ G= 0' 0' 0' 0' 0' 5_ # K$ + p9 = # # 0' # ]& o! $ # . $= Q$ .( Q$ $ = Q$ S$ $= S$ & H= $= = V@ S$ P$ S$ U$ S$ U$ & > [* S$ & 5- . . & > Q$ U@ U@ R- # U@ %= & | R$ ~ & ! U$ & 5- 2 & ] `@ J) P$ R$ ) | { ~ X@ 4 ) ~ > f] ) { N$ ] { J) ( ) X@ < } D, 2 { < ( 6 { D, 2 1 ( 4 ( } 9 4 7- ( } &# < J= ,# 8 7 } a 9 4 ( ># a 6 b 7 a' a a a Y> i h z: 0 3* ,# 6 ,# o k ~# L= 3] W$ i 0 h Y$ o 9 ,# L= c i k p Y$ e [& n -) p }& h L= r |& n Y$ p `$ ^# m p Y$ D (# r p ^# `$ % 2, -) Y$ w 4* ^# % `$ D I 2; w B G w ^# m G A O@ j4 m O@ :# G /# I I O@ J M N I M A |# F= I I N@ O@ I M I #= |# 8* K@ a- L@ H M E$ H H$ 3# M S x S P@ P@ L@ c- A H G$ U L@ P@ P@ ` P@ Y H E$ D$ J ` Q@ L P H H G$ ` K@ 3# H@ Y T Y Q@ M@ Q@ O N@ Y O J P D$ S P T T 4# D$ Y H I@ ` P L@ H K@ E$ P L@ T V V U 2# P L@ T L P L' H T D$ }; C$ H T D$ ` @. d- L@ L@ U T V J D$ 1# T T x .= T L@ 7# I@ I@ J ` X L@ P@ H L d- V X C$ O 1# J L@ C$ O +% K@ P@ P Q@ +% +% H@ 4# H ` :* I@ L@ H$ ` C$ J Y S H O L@ M M P@ S P@ H O J Q@ A P@ +% @% P@ z Q@ S O 3# S P@ K@ A H$ I M A H 3# :* N 8* I N H$ A E= z w Q@ Q@ A A A C 8* z }# }# I w F= w F= A A `$ Z$ t :# B F= ~# $ J$ [) s, x, s, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, u, s, y, y, u, u, x, u, y, y, y, z, y, y, y, u, t, x, u, x, u, y, y, y, y, z, s, x, y, y, y, y, x, u, y, y, x, y, y, y, z, s, y, y, x, t, u, y, y, y, y, s, y, y, y, y, y, y, y, y, y, y, z, v, ], X@ *# 2 { %# } 2 [ %# / X@ X@ W@ ] ; ; ] N$ ] ] ~ { S$ S$ ] | ] ", +"y, z, q.+' Mp.Mp.Mp.Mp.Mp.+' 6' z~ Mp.Mp.+' Mp.z~ z~ z~ z~ z~ z~ z~ q, z~ *[ z~ *[ z~ q, xi.ql.z~ z~ $8.9| )~ )~ 2! 2! |1 )~ 9| *) 2! *) *) 2! e^ <{ <{ <{ J$ 2^ <{ J$ J$ ;b I/.9| 2^ *) I/.l) #S L$ L$ R@ ]^ R@ J$ I/ L$ ]^ 0' 0' 0' I/ 0' 5_ = # + L$ %q.# # 5_ $ K$ # 1) + # # o! Gc > # $ $= > V@ $ $ $= $ Z, $= S$ *' [* $= ; & |* |* $ + Q$ ; & $ - %= > > & }* ; P$ ~ & > | > H= U@ ; %= N$ ~ R$ T- | ~ & | U$ ^ Z! 2 | 7- 2 Z@ V@ > ~ | ( N$ ~ | ] W@ X@ { /& ( *# X@ X@ { ~ [ N$ } ) 6 } ## ## ,# { ( } } < } 9 < ## 3* 6 6! $# 8- 2 b ~# N' 9 0 a a a 0 ,# b a ,# ,# a ~# L= ~# s> n ~# k a' ~# i a c ]# Y$ h s> ,# ~# L= ,# ~# n F! n n n n Z$ n 1; c ~# e 6! n 1; m s> Y$ ^# Y$ p p % Y$ /# % % t E, D h t 4* G m 4* t 2; `$ y w G N #] G w K ^# ^# B /# m :* @% P@ P@ ~& z N N= N O@ N O@ M M O@ O@ %> I z E$ A E$ H P@ M H I P@ H$ n! E$ A Q@ H P@ I P@ x P@ E$ |# 3# P C$ P@ Y E$ 8* M@ P@ P@ Z H$ H E$ P@ 3; P@ Y P@ Y H P Y H$ S H Y Y 7# J Z 3; ` T P J P H c- H P U Y C$ K@ }; T ` F@ |# J L@ S M Y T O= T L@ n> O ` H J V J H L@ T P P D$ D$ D$ T L@ T R E@ Y H H ` L@ P E@ W T H T U #. 4# L J J T P@ J D$ J I@ D$ H H I@ Y J O P@ J C$ D$ 1# S J L@ |# Y Y T T O H$ ` T I@ H L@ Q@ J S P@ M +% H$ H$ S J +% S P@ J@ w L@ I z Q@ K@ M M H$ E$ K@ H$ A P@ A P@ J M@ z S M I A I z A G G G I z x P@ I w B z ^# C w 2; m A z S N ^# M= 4* N `$ $ e^ v, v, =) s, s, x, u, s, x, y, y, x, x, u, y, y, y, y, y, y, y, y, y, y, x, x, y, x, x, y, x, u, z, v, u, y, y, u, y, u, u, y, y, u, z, x, s, y, y, y, y, y, y, x, y, x, s, s, s, u, y, y, u, y, x, s, y, y, y, z, y, y, y, y, s, u, y, v, x, y, y, y, y, y, s, y, x, s, ]& 2 ( [ [ W@ } 2 ~ ; U$ [ R$ / 6 ) ] 5- R$ ~ 2 ~ ( ~ U@ Q$ U$ | ", +"y, z, Mp.+' Mp.Mp.Mp.+' Mp.Mp.Mp.z~ Vp.Mp.+' Mp.z~ *[ z~ *[ q, z~ z~ z~ z~ *[ z~ q, z~ *[ |1 Il.*[ *[ ql.xi.|1 e^ e^ 98.|1 2^ *) |1 *) q, ^, q, *) 9| <{ *) J$ 9| <{ <{ ]^ <{ <{ l) R@ J$ <{ <{ R@ V! R@ R@ <{ G= 2^ jP I/ G= I/ 0' 0' I/ I/ 0' p9 # K$ ]& I/ $ # # # # $ #^ 0' # & $ Q$ 2) S$ S$ $= . V@ Q$ $ > > $ *X |* S$ & . Q$ |* > . o! Q$ =' V@ > o! P$ 05 & ; . - Z! & - X@ H= ; > > ~;.; ; S$ U@ . %= ] | & U@ ; & & /& ~ ; /& 4 { X@ ; N$ ; & ^ 2 &q.## 2 ~ U$ 2 X@ | | [ } / ) 6- 6 6- 2 5 7- } 1 ( ( } < =# d } 6 6 a 7 9 ( -> 5 ,# } } a < 6 5 e h 6 7 i ,# c b 3* n Y$ K/ 7 c tA a' e c ]# ,> a 0 a 6 g n L= L= |& c ~# a i Y$ c{ h Y$ h n h ~# a' % ,! h % K= Y$ p _# n -= ^# ,> s> `$ ^# Y$ Z$ 4* w m ^# ^# `$ A /# G ^# C w w 4* 4* G D I z O@ }# F= N G G N G z w B z I 1& E P@ I M J =K M P@ I A q! J I M@ E= |# P@ 1& A S J J S P@ A H E$ P@ A J ` O T T S G H H O@ H 8* ` |; T O@ K@ P 2# J 1# L }; E$ J |# Y H +% ` E$ M@ S T H Y B$ ` I O H S Y O M@ L@ H H D$ S T J P@ L P@ ` T T L' I@ 1# Y J H H$ 3# U J 3& O 3& P J L@ T T 1# I@ U L T H 2# G$ J J J M@ J ` 4# L@ t> L P J J T L@ 3# J H P C$ L@ J T O O 1# ` H L@ Y K@ 4; L@ J P@ S H 3; ` O P@ Y Q@ O H #= M@ 1# H P@ P@ O 8* #= 8* P@ 3; Y A z L@ S I E= +% M Q@ I M E$ G M A 8* I #= M .~ P@ A N@ Q@ F= A Q@ G z x Q@ x m) {& z w G F= w N C B m p 4* z N % {& p D ^# 8- g~ 6' 6' s, s, z, s, x, u, y, u, z, u, y, z, y, y, y, u, u, u, y, y, y, u, v, y, y, u, x, s, u, x, z, v, y, s, s, y, y, y, x, s, u, u, y, x, u, z, y, y, y, y, y, y, y, y, z, x, x, y, x, x, y, u, 8' t, y, y, y, u, y, y, y, y, x, u, y, x, u, y, u, u, y, y, u, x, H) x, # | $# ~ N$ { N$ { ) X@ | ) [ /& ~ P$ ) ~ O$ Z! ~ ## N$ ) ] ) ^ H= ", +"y, z, Mp.+' Mp.Mp.Mp.Mp.Mp.+' +' z~ z~ +' Mp.[: z~ z~ z~ z~ z~ z~ z~ q, *[ z~ 2! z~ *[ z~ 2! vh.|1 z~ 2! xi.98.*) *) 9| |1 *) q, 2! |1 |1 @ <{ 9| 9| <{ <{ ], <{ I/.9| J$ <{ <{ p9 ], R@ <{ <{ J$ J$ R@ R@ <{ R@ J$ 2^ I/ 0' I/ I/ I/ I/ I/ [n I/ = # + 0' = # # # # # # = . # # > Q$ . }, > $= |* ' # V@ =' . + V@ $ $= > & > ' . S$ H= > > Q$ ' U$ X@ . R- & P$ P$ ] > . P$ R$ ; J) ~ ; P$ ; & N$ ; ^& 4 ] ; ; 5- N$ ~ o! Up.{ N$ | X@ < X@ | 2 ~ %= N$ X@ R$ N$ 2 U$ X@ | %= | 4 Y@ d d } 1 4 [ ( < X@ } d 5 &# d N' W@ $# 0 W@ *# 1 } 6 j ( *# 5 d e 5 7 ~# 8 Y> ~# ,# B; a 7 ~# a 5 Y@ ~# 0 0 ~# e 2, n {# Y> / a h _# s> n 8 n n s> c 6 0 L= @= t p n 8 0 ,# Y$ C m Z$ :# `$ `$ h % % V| Y$ p 6* r 2; b' ^# m 1; p r m F= ^# 4* m y t m Z$ {& G A 4* % B D $] G z {& A z z F= F= [# F= N )> G z n! c- 8* N M P@ H$ Q@ N P@ 8* 8* A E$ P@ I H A I E$ x P@ S P@ N S J P@ L@ 2: S |# 4; K@ H$ E$ K@ S +% A M +% @% S H$ M Y *q.P@ T b- J A ` P I P P O@ K@ G$ L@ H S H Y M@ Q@ S P@ Q L@ U H@ P }; L@ Z E$ |# H H H E$ d- L@ E$ J T L@ E$ P Y }; J 2# 2# L@ H L@ L' L@ L' R T L L H E$ D$ 3& |# T 4# A Y H E$ J L@ L M@ P@ V I@ M@ L M@ H Q T S A H M P P@ J E= M Q@ T S P@ J 3; E$ M@ ` Q J M 3# P@ H P@ P@ +% J I S J P@ P@ b- ` Y S P@ O@ @% +% 1& P@ M N@ z A K@ A Q@ w A A A A I {& I I N@ A #= z x z G G b' z #] N 6* N= 8* p /# N z G :# ^# w n^ {& w G :# D [ J$ ^, q, 6' H) x, u, 8' x, x, s, y, y, y, y, y, y, y, s, x, z, y, y, y, y, u, y, y, y, s, s, y, u, u, v, y, y, u, y, y, y, x, u, u, s, x, z, y, z, z, z, y, y, y, y, y, y, s, u, z, u, s, y, y, s, u, y, y, y, u, s, y, y, u, x, x, y, y, x, x, z, x, u, y, y, u, y, +' v, ) { { ] N$ < 2 X@ W@ | ) ] | ] [ [ ~ { U@ | ~ ] ~ ] & ; ; | ", +"y, x, Mp.Mp.Mp.+' Mp.Op.Mp.Mp.Mp.[: z~ Mp.Mp.Vp.Mp.z~ *[ q, q, q, *[ z~ *[ z~ z~ *[ *[ rl.*[ 9i.vh.9i.ql.vh.xi.9i.)~ <{ 9| 9| e^ 2! 9| 9| <{ <{ <{ 9| <{ <{ <{ R@ <{ <{ 9| *) jP jP *) 2^ J$ ;b ;b ], <{ R@ J$ L$ ]& G= I/ I/ R@ L$ [n [n R@ L$ = 0' `Y # + = 5_ K$ # * + $ L$ 0' R- . + ]& . # # $ |* S$ S$ [* (& & .( = + = Q$ > > S$ N$ . $ 5_ Q$ ; . L$ ' ^& $ # > Q$ P$ Gc S$ & %= ; S$ S$ N$ 2 Z! 2] J) & . N$ T- X@ | | | X@ ; > N$ X@ N$ H= N$ ) N$ N$ | [ N$ X@ { | ; ~ ~ /& `@ ## [ X@ < } J] 1 7- D, 1 $# 6 d d [ ( b +# <& 2 ~ d [ } d ## d x0 } 7 ,# 9 } &# 2 ,# ,# D, a i ># e a a e h 0 ~# 0 a 6 ~# c n !# i -# c |& X$ ~# 0 k a ~# {# p h L= p K/ 0- p m r o a L= z `$ s> `$ |& p q r n h m ^# E Y$ w M= 2; ^# ]# w G Z$ {& % :# t b' G m w {& `$ N {& N G ^# t K D N G F= z F= N G /# G w z I G A I G M A P@ I C, Q@ I@ N M x I I Q@ S M J E; A Q@ A M J J H H Q@ A H A M@ H |# #= U I 8* S J M@ J J P@ 1& +% |; L P@ K@ S S +% J M M@ P@ O a- S H E$ Y J Y ` Y 1# L@ =q.Y J E$ H$ J D$ O r! O Y T Y J J P@ ` J T L' H H O 3& 1# P L@ P@ T d- X U H$ V H E$ O 4# Q E$ H P@ L@ C$ L@ r! S J d- L@ J E$ Y H P@ H J S L@ K@ E$ 2& L A H$ J L@ Y +% S P E$ O K@ L@ q! S A P@ H Q@ M O@ N@ J M 4, J 8* Q@ G I A M S 1& N S I A P@ 3# I S O@ O@ M O@ ^# B G 8* I z A A 4, P@ A A x N ^# I w #= Q@ P@ G G w N A D G C w w :# w G 5* y p D % :# t 7 V! `, g] ^, x, x, u, u, y, u, u, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, s, y, z, s, t, x, y, z, y, s, #' u, x, x, y, y, u, y, y, y, u, z, y, y, x, t, u, y, s, y, s, x, s, y, u, x, y, y, y, y, y, u, y, y, u, x, s, u, y, s, u, z, x, z, y, y, u, u, q, 5' - ~ | ) ~ { { [ 2 ; ~ & & 2 | %= U@ | | ] ) ; ; U@ & & [* ; ", +"t, y, +' Mp.Mp.+' Mp.Mp.Mp.Mp.+' 6' z~ Mp.+' 6' Mp.[: z~ z~ q, *[ *[ *[ z~ *[ Rp.*[ *[ z~ z~ z~ vh.9i.z~ z~ 2! ^, Pi.)~ 2! 9| 9| 9| <{ 9| 9| *) 9| 9| <{ <{ <{ J$ <{ <{ <{ <{ J$ <{ <{ J$ V! *) -q.J$ <{ R@ 2^ ;b I/ L$ L$ I/ L$ R@ L$ I/ L$ ]& 0' 0' 5_ # 5_ 0' 5_ K$ # + ]& * # $ + + ]& # + V@ # ' ' 1* [* ;b . # > $ # Q$ . + > $= & + > # o! > - > Q$ > $ $ > ^& o! & ; U@ ; Q$ }* = > ! | N$ Q$ 2 | | U) ; Z! Z! U$ H= ' ; P$ | `@ 2 [ > ; ) | ) | 2 { { X@ ( 4 /& /& ( ~ 2 Y@ } 5 2 [ 3* ;q.2 $# d 2 `@.~ V~ } X@ ( ## 6 a ( } < : d == N' d a 0 c6 {# ># ~# !# 6 e $# 1 ~# ~# e ~# 2 6 ~# i 0 } p 0 ~# ~# ># j L= vk `$ 0 3] 0- L= z: n h L= r h p! K= m p e g n `$ ^# m :# % c Z$ m n -= p Y$ r 1; % D m h ^# /# `$ p h 4* C q w w m ^# ;) w t N G @= Z$ {& A z )> A x A G /# W) [# D N I x z z I E$ A L I G Q@ I 3; |# 1& N P@ A P@ S A M@ E$ 8* H P@ M H {& |; J K@ J J I J 4, M S P@ ` K@ +% 1# S P@ P I M@ z |; 3# I@ M@ +% N@ M@ Q@ K@ S @% C, 2& E$ T H J P@ 2# 8* H K@ Y C, P L@ 1# ` c- I Y T P@ H X T P@ L K@ Y M D$ 3# J 1# G@ L 2# Z >z H@ P@ P ` L@ Q T 3# U T H 3# P S H S H H L@ K@ E$ J T P E$ A P J P@ C, J L@ V 3# Q S S S H G$ J E$ L@ M@ D$ 1# 8* H O@ O@ @% S ` |; O M %> @% K@ P@ 1# M A x G I b- 8* I b- P@ A N z G M G N P@ J 3# I F= I A A {& G G N z {& x w I z K@ D /# G N N w w I w z /# 4* D #] ^# 2; I _# t m /# ^# m G W$ q, 6' =) s, A, y, x, y, x, x, y, y, y, y, y, s, y, u, y, x, y, y, x, z, t, z, y, y, u, y, y, t, x, y, y, y, x, s, u, u, u, x, y, y, x, s, y, y, u, s, u, y, x, x, u, u, y, y, x, u, v, u, z, u, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, s, y, A, 6' `@ / { 1 R$ ) { ; Y@ { N$ ^ ; | | N$ S$ ] ; ~ & > ] & R$ & - { ", +"t, u, 6' +' +' >q.+' +' Mp.,q.Op.Mp.z~ 6' [: +' Mp.6' z~ z~ *[ z~ *[ *[ z~ q, z~ z~ z~ *[ *[ z~ xi.9i.*[ *[ z~ *) )~ e^ q, 2! *) *) *) *) 9| <{ <{ 9| 9| 9| <{ ]^ <{ *) <{ <{ ], <{ I/.J$ J$ *) l) k3 BN G= jP jP I/ ], J$ I/ p9 ]& 0' 0' I/ I/ = I/ 5_ # $ = p9 5_ + # ]& !, + = 0' V@ . # [* # o! 2) + 1* & + . S$ V@ . $ S$ $ . > S$ |* . S$ ; *' . - $= *' U@ ; ; > & V@ > . ] - . $ - & U$ Q$ | P$ U@ S$ %= | ( & P$ &= ) | ) { *# U@ H= N$ > | ; { H= ^ Z@ 2 ~ | | ~ /& $# ~ | X@ ( 2 7- { 2 ) D, d { } ;# 4 4 { 6 $# ( ( 3* D, &# ( /& /& 7 6 N' $# M' d } ~# B; i V) 6- a a d 8 e 0 ~# k ~# n {# n ~# ,> ~# ,# c L= h c ~# o {# g 0 L= o {# a a 9- ~# a s> n [& g h 1; 2, c{ 2, 1; p n `$ /# Y$ m Q{ {# h -) m 4* I `$ m ^# `$ m 2; b' {& :# w Q@ /# F= `$ {& w 2; @= G I I z w I z A Q@ /# z G w ^# w A N M c- M= I %> O z z S M H O@ I P@ H$ P@ O@ A P@ M@ P@ n! A 7* O@ J A A H$ +% S P@ P@ I b- G I Q@ S @% P@ S P@ A K@ 1& x P@ M x P@ E$ M@ S S K@ 4# Q@ J T Y E$ 4# L@ E$ Q U H P@ 2& T P@ P@ H T H ` H J S J Y I@ d- n> S d- &' H Y P@ 8* J M P@ P@ T H I@ Q@ L O J T M E$ 8* J E$ L T L@ H T T M Q@ I M H E$ L T Y J 1# P@ Y M 1# S P@ |# J@ J +% A S Y S S S @% +% S Z I P@ S Y M A N@ I H a- J 1& P@ F= O@ S S I A #= A z Q@ z w N Q@ ^# K@ x P@ A Q@ N z z K K 1& C G {& I z w G N /# #= x }& w t G )> C I G w N G ^# ,! w p {& K B ~& ^# {& t p c Q$ 3_ q, r, s, y, u, x, u, y, z, y, y, y, y, y, s, y, y, y, u, y, y, y, z, x, u, z, y, y, u, y, u, u, y, u, u, u, y, u, x, s, s, y, y, t, x, y, y, y, u, y, z, z, y, u, x, u, x, x, x, x, y, y, y, y, y, y, y, u, y, y, y, y, x, u, y, y, z, u, y, y, y, y, s, y, u, u, q, ^ | ~ W@ { 1 ( Q$ [ ## ; U@ | N$ < 2 ~ { ] U@ H= ] W@ U@ ; Q$ - ;# ", +"y, y: Mp.Mp.Op.X( +' Op.Mp.+' Mp.Mp.Mp.z~ [: Mp.+' +' [: Vp.*[ [: [: z~ z~ z~ z~ *[ 2! e^ z~ *[ Il.Il.9i.*[ 2! $8.)~ e^ e^ 2! 2! *[ *) 9| 9| 9| <{ <{ <{ <{ <{ J$ 2^ 9| <{ *) ], <{ J$ J$ 2^ ], l) r4.]& #S 2^ J$ I/ <{ BN I/ =$.L$ <{ k3 0' 0' ]& ]& 5_ + K$ + #S L$ + # ]& R@ # $ p9 L$ # $ $ k) }, # [* [* S$ ' = [* # Q$ 2) > > & [* & S$ $ $ V@ U@ Q$ . - . S$ U$ ; Q$ & . & & U@ - N$ ; %= 05 %= , 7- g{.Q$ .# 2 X@ ^ ~ H= X@ ~ S$ {c & N$ | { 4 & 2 ## ## 7- Y@ N$ | | ~ 2 & ~ 2 4 ] ~ ( | | 4 ) Y@ 6- } g{./& d /& 2 < d &# } ( ,# d q> $# $# ,# ( 6 a 6 6 ,# 6 a a ># ,# L= a a a M' g e a h ~# 7 6 e a c e L= c{ 0 0 g : ~# !# *= e n 9- k `$ n ,# 9- c Y$ K= ~# Y$ n `$ Y$ e ~# L= h r e r ^# % Y$ Y$ Z$ ,> D n^ D _# % v m 4* h p /# F= /# N /# m w I w w ^# p 2; [# G /# w z M A I Q@ D ^# n! G w w G I )> N K :# J E$ M@ J P |# P@ I M 8* I A 7* Q@ I z I S J S S H$ S H A A }# I Q@ Q@ F= H$ J A A G M@ H$ H$ #= Y S O@ L@ O@ O@ H +% S D$ ` T J@ S M Z O@ S 1# J 3# 1# ` J E$ J Y M@ z H o^ H M Y S T M T Y Q@ O H V M H P@ E$ M@ O 3# E$ 1# J ` T ` P@ D$ P J J Y M P@ P@ P@ Y P@ M Y 7* @. C$ J I@ S H Y Q@ H J Y x E$ Q@ 3# H$ P@ N@ A b- P@ G 8* +% M P@ P@ #= A H$ U M M@ 8* H$ M@ A 8* S +% K@ G K@ A 3# O I G A J J Q@ I I A z z I w I #= N A D /# M M I S G {& G G z F= I A z N F= w G w ^# F= G m F= ^# w D p p ^# w 2; C D ,! ^# ^# p n - <{ +' y: s, s, x, u, s, x, u, u, y, y, y, y, u, y, y, x, y, x, x, y, y, y, y, y, y, z, x, y, y, u, u, z, x, u, y, u, u, u, x, s, z, -! u, y, y, z, x, y, u, y, y, y, y, u, s, x, y, y, x, u, y, y, y, t, y, y, y, y, y, z, x, u, u, y, y, u, u, u, y, y, x, u, s, s, ' ;# [ ~ [ N$ N$ ~ $# | | ; | W@ { ~;.H= ^ ] `@ ~ N$ > ] ; ; > ; ", +"y, t, 8' Mp.Mp.Mp.Mp.Mp.Mp.Mp.Mp.+' +' [: z~ [: +' +' 8' z~ z~ 6' q, z~ z~ z~ z~ z~ 2! 9i.*[ *[ z~ vh.2! z~ z~ |1 9| ^, ^, *) |1 2! Pi.*) <{ <{ <{ *) <{ <{ <{ ;b <{ <{ <{ <{ ], J$ I/.<{ <{ R@ 2^ <{ l) L$ ]^ R@ 0' L$ L$ jP #S I/ ], R@ 0' I/ R@ J$ G= ]& # # + L$ # # + ]& !, # 0' + # + ]& o! $ Q$ H= Q$ S$ =' o! $ V@ . [* > * # . V@ U@ | S$ - & Q$ & . S$ $ |* - . & ; ! & N$ X@ & ; ] ] =' N$ ~ R$ o! - ; & | ] Q$ P$ - S$ N$ ) ## | | ) ~ X@ ~ ~ 2 /& { Z! { ) Z! 2 R$ ( Z! N$ | 2 2 P$ ~ ( / B; V~ 1 } } ## ( $# d 7 < { { d 6- -# d ,# } 1 $# B; b i x0 a 9 6 a ,# a n k {# a 0 ># a == a 6 6 ,# j k ~# 6 0 2d V- $# e a e &# e c j ~# n Y$ Y$ ^# a' c n [& 9- o n p n p h c |& C h n a' m `$ r t t D p p n b' % Y$ p 1; w `$ p t r n^ Z$ 2; :# m 4* w B ^# w Q@ F= 1& N w #= ^# D ^# z {& }# x w b' >= A G A O@ G I a- P@ P@ % z A I N Y A A P@ G P@ P@ A P@ P@ Q@ A N z A I P@ Y M M M@ I P@ 8* H T Q@ P@ M L@ H N H H$ H$ I@ E$ ` S E$ Z Q@ H$ +% P@ P@ ` H$ 3# H$ E$ L@ Y J J A K@ S P@ |# Q@ J |# c- @% S C$ S P@ K@ S I 8* z z P@ E$ M M J 3# P@ 8* T S O H :* L@ Q@ J S K@ J c- T c- |# P@ U 3# Q@ O J P@ I@ b- ` T M A P@ A @% ` O@ O S J H A S J G E$ K@ q2 A b- P@ O@ M P@ Q@ K@ 8* 8* I H$ M H$ A /# z I M z I A #= A G I I O@ N= M w A A G G B x I A I A w A P@ w ^# u A #= I D M= B w 2; N /# `$ :# p {& 1; m D 4* F= N G 4* w D ^# ^# s> ^# ~ J$ q, v, s, s, y, u, s, s, u, x, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, y, x, x, y, z, y, y, u, z, y, u, x, s, y, y, s, y, y, y, y, y, y, y, u, y, y, u, z, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, z, x, x, y, y, u, z, s, . ) ) ^ ~ / N$ %= ~ ; & ~ N$ | S$ > ) > . ; N$ & ^ | | & & O$ ~ ", +"y, u, 8' +' +' Mp.Mp.Mp.Mp.Mp.Op.+' +' [: z~ [: Mp.+' Mp.z~ *[ z~ q, z~ *[ z~ z~ z~ z~ q, *[ z~ 5o.xi.ah.9i.z~ )~ 9| )~ e^ *) vh.ah.2! *) <{ 9| <{ 9| <{ <{ 9| <{ *) <{ J$ 8S J$ <{ J$ J$ J$ J$ *) <{ J$ R@ I/ R@ R@ 0' BN ]^ I/ p9 G= I/ 0' I/ I/ ]& 0' p9 1) ]& R@ p9 + # # Z, # # 0' 0' # # ]& Z, . [* . . ' & [* = (& . ' S$ |* $ = . |* Q$ > $ > . 0' - |* . ; > + . U@ P$ $ > ] U@ ' N$ ~ & 2) ~ ] | & T- %= | - & Q$ = %= X@ ~ ## ; ~ ) X@ R$ { { N$ X@ [ ] H= ~ N$ b{ ; ## X@ <& 2 [ 4 1 ] ,# d ,# 2 6 *# { 7- { X@ /& 6 ## ( } 6- ## Y@ 7 6 i } &# b b d 4 e 6 6 V~ 6 a a a B; 6 c 0 a e i a g < i ,# k c K= L= 0 V$ 7 e c ~# n e Q{ s> 2, ~# Y$ _# Y$ ~# g n q Y$ h ;= o n {# Y$ ,> c ~# n s> Y$ Y$ q ;) ^# m % Y$ c r p 4* ^# h ^# N 2; w w m `$ w m r u h t /# K ^# C I w x F ^# y D p G Z$ D ~& G I O@ w D K M Q@ K@ w A w A B x N N N C >= C M P@ I M M P@ x Q@ Q@ @% S G K 7* A A A N@ H Q@ P@ M S I M= N A H S E; M@ I m) b- C$ M@ Q@ A H$ A H$ Q@ H$ T O P@ S Y S J N@ J E$ Q@ 8* H J S P@ K@ +% O H$ @% E$ P J 8* I #= Q@ J P@ E$ J@ +% M @% L S H c- Q@ J C$ 3# J N@ U +% D$ T L@ H$ 8* O J M A S H$ P@ +% P@ +% J M H O Q@ M T K@ M J C A ` x @% E= Q@ z I M 3# J M P@ A M 8* I M +% S O@ I I A P@ P@ P@ G I G w P@ P@ x N A N K@ #= ^# A w z q2 N G N I z I 2; N N I M -= ^# G w A z Z$ }& @= A ^# w G Z$ G GK ^# N p }& ^# _# p 2; Y$ ^# 6 J$ ^, g] s, =) y, x, s, s, s, x, y, y, y, u, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, ' w, y, u, x, y, y, y, y, y, y, u, u, x, x, y, y, z, y, s, y, y, u, y, x, y, z, y, y, y, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, z, y, x, x, u, r, = | ;# { < { N$ N$ 2] 2 ~ [ | %= %= , ! ~ ; R$ & Q$ S$ %= ; U@ ; ] ; ", +"y, y, 'q.Mp.+' Mp.+' +' +' Mp.Mp.Mp.Mp.[: z~ Vp.Mp.+' Mp.*[ *[ z~ z~ z~ z~ *[ *[ z~ z~ [: *[ *[ *[ 2! |1 2! z~ e^ 9| 9| 2! e^ 98.2! 2! 9| 9| 9| <{ <{ <{ 9| <{ <{ 9| R@ J$ <{ <{ <{ 2^ l) J$ J$ ], <{ *) J$ G= R@ 2^ L$ L$ ]^ G= I/ G= L$ 0' 0' 0' I/ = p9 0' 1) ]& 0' X! $ # # $ V@ + = . > . # = . . Q$ Q$ $= > = Q$ . $ Q$ # # = # $ $ . 2) $= - S$ U@ - |* i#.] . . N$ U@ }* ' & ] H= | ~ %= N$ W@ ~ ~ Q$ ~ ; Z! ; U@ S$ ; ~ | . ; 5- H= ; ] 2 | ; Q$ S$ N$ ) X@ & ^ H= Z! 5 ## 4 2 ~ %= 2 [ 4 6 } 7- => d *# /& 2 ## /& 7- < 6 d ,# &# 6 6 $# V$ D, Y@ Z! { ,# ,# 2* 7 a } 7 V) Y> 0 B; d ~# 0 k V$ a ,# o a a ~# ~# L= 7 ~# ~# n 6 ,# 6 ,# c ~# g a a r Z$ A~ K= 0 6 e ]# [& p h X$ ^# s> n >> n h `$ n^ % s> r h ^# m p `$ Q{ m n^ ^# 1; `$ s> `$ _# `$ Z$ n^ ^# Z$ /# Y$ m % G D ^# Y$ m Z$ G G {& F= D /# w ^# t 2; G F= G G N ^# #= I J P@ N F= x I I x C D G N N P@ N S G A P@ S A A I S E= D z A z M Y I Q@ N@ M A A A H$ @% M b- Q@ Q@ Q@ M I A M E$ J M@ 3# P@ S O@ )q.P@ I I K@ T K@ A S 1# 3# Q O A T H$ H$ M S M c- P@ S C, J O@ 1& M H H P@ H E$ P@ @% S P@ T P@ H 3# E$ J O M E$ |# 1& A M @% S L@ #= H$ O E$ b- E$ S A P E$ x O K@ S )> z I M S P@ 7* A P@ T A S 4, I N G E$ I Q@ S Q@ 7* A H$ Q@ P@ +% 8* x H$ 3# 7* I H$ N I w G 8* I F= N@ N Q@ I N W) N G z O@ N m :# I )> w ^# w B G /# D {& D /# G N % m t C `$ @= w y :# ^# t `$ % 2, w Z$ ^# 2, ^# s> k + 5' r, x, s, u, u, z, z, u, y, y, y, u, z, y, y, y, y, u, y, y, y, y, y, y, y, x, y, u, y, y, y, y, y, x, u, y, y, x, u, y, y, t, x, y, y, y, u, y, y, u, y, y, u, y, s, x, u, y, u, u, y, y, y, y, y, x, u, y, y, y, y, y, y, y, y, y, u, A, A, x, y, y, s, x, s' & ~ { ## ) | | ; ) { | ] ) %= U@ | ~ 2 & ] | ] ~ 4 ; Q$ - - . ", +"y, y, 8' 8' +' Mp.+' Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ [: Mp.[: Vp.z~ z~ z~ q, *[ z~ z~ q, z~ *[ *[ *[ z~ z~ 9i.ah.z~ z~ xi.9| *) Pi.*) xi.q, )~ <{ 9| <{ <{ <{ 9| 9| *) <{ J$ <{ *) *) <{ l) ;b <{ J$ J$ R@ <{ J$ R@ ]& L$ L$ 0' R@ G= I/ ]& L$ I/ I/ ;b 0' ]& L$ 0' # # Dv [n 1) # ]& ,Q + 1) # $ . # = $ $ $ ]& + [* 5_ k) ]& > + $ + + # & > > [* > & * $ = - & $ Q$ > > 5- N$ ' N$ | & U$ Z! & R$ ] | &= ) =' %= X@ R$ & ] ; N$ ; X@ 2 H= | ) ] | ~ X@ | | H= Z! - ] X@ ~ 2 [ ~ X@ 2 N$ | ] 4 ~ 1 5 5 V~ ( 5 < *# < -# /& 2 1 [ 5 W@ $# 1 5 } 6- { < V~ => } 9 9 -# a B; 6 6! Y> q> ># 0 {# ~# Y> ,# 6 N' g ,# 0 b ]# A~ j o n n g q> k Y$ s ~# ~# j j ~# c {# ^# p n :& C; t' /# C; e m 4* n^ Y$ {# [& `$ `$ L= Y$ h Q{ D Y$ L= o 9- 4* Y$ `$ 1; ^# n /# h m 1, m m Z$ h h t t m w D p q w m A I n! m F m I G /# Z$ G F y G B M z O@ z P@ A N q w G `$ D M= C M= }# w J 7* I A A P@ %> K@ I I E$ c- Q@ A M K I N H P@ H$ 2& A H$ #= O@ :* +% I K@ J S S M A Q@ @% C$ M K@ E$ P@ x I z P@ 8* I I P@ K@ Y w E$ 1& H 1& M@ H P@ T J K@ J Y P@ M A Y M Q@ O S H J 8* N@ Z H K@ D$ 1# M P@ 8* M H A 8* P@ E$ P@ b- #= H E$ N@ A J ` b- I Q@ b- I N 7* N x I P@ @% O@ G D #= f^ S M@ M@ P@ x I M Y A H$ K@ A T 8* 8* A K@ M@ n! +% M@ G G A z A P@ ^# I I M F= N :# I D x N x z /# M G >= Q@ A 4* D p F= ^# /# z w `$ #] p `$ v ^# D ^# Y$ m N D 4* :# y M= D N C w ^# m ~# ^# Y$ c $ 2! z~ r, x, s, s, y, u, y, y, y, t, v, A, y, y, y, y, s, z, y, y, y, y, y, y, y, u, v, v, y, y, y, y, x, s, y, y, u, u, u, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, x, z, y, t, x, y, y, y, y, y, y, y, y, y, y, z, u, y, y, x, s, s, 8' x, y, u, y, x, s, *) 2 ## ~ ~ %= { $# ] | 2 | { X@ ~ > N$ } ~ X@ .# 2 S$ ^ ^ U@ ~ U@ Q$ = ", +"y, y, 7' !q.Mp.Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.6' q, q, Mp.+' Mp.q, z~ *[ z~ z~ *[ *[ q, z~ z~ z~ *[ z~ z~ 9i.vh.*[ z~ 9i.9| ah.z~ *) 98.xi.*) <{ <{ 9| 9| <{ 9| <{ <{ <{ <{ 9| 9| <{ <{ <{ <{ 9| ], R@ ]^ <{ <{ J$ R@ ]& G= I/ L$ R@ BN I/ R@ G= I/ G= 0' 0' 0' I/ 5_ # # 0' = # Z, # R@ + = = E! # # # $ # .( # + 1* > + =' # . # # !, & . }, $= ; . S$ S$ $= > ^ $ & > - Z, $= U$ P$ $ & | R$ %= ] %= N$ ~ N$ o! o! 2] &= U@ | H= Q$ =' | 2 N$ ) , ; Z@ U@ ## 2 ~ ' N$ { [ 7- | ~ 2 7- H= 7- <& { ~ *# 4 2 } Y@ : { d 2 *# D, ( { ## } W@ 6 ;# [ } 6 &# } V~ N$ 7 *# d d d 6 i $# d ~# 0 [ b a a ,# 0 Y> c ># k c o &# a c {# 7 W$ n a c A~ ~# a a h n L= {# Q{ 3] n }& 0 [& c Y$ `$ Q{ ~# D h Vj r ^# ~# _# h |& Y$ m h p -) n^ C p s> p ,> p m m m G h b' y p l w ^# `$ Z$ Y$ m `$ t G t q y )> w ^# D Z$ D o D F B w D N B N I z {& I Y A ^# {& F= N N G x A 8* <, F= 7* A N O N 7* G Q@ x Q@ I K z w z Y z H M A Q@ Q@ M A @% A z M I A A M A K S 2& M@ A ^# G I P@ |# H$ I P@ +% J K@ H @% ` #= A O@ Q@ z A Q@ M 8* E$ T J J P@ J E$ P@ Q S P@ P@ P@ P@ H$ M@ A P J |# o> H$ z J I O@ I 8* S L ` P@ H P M J N@ N@ O@ A z Q@ S P@ %> Q@ A A F= H$ Y A A #= M@ I A S Q@ +% Q@ P@ }# x M z A M A 8* S x Q@ F= 8* #= N :# z I M B G Q@ N A x N %/ z K :# :# N z ^# m :# I G z m m w t 4* G `$ `$ p `$ w w _# `$ `$ I m ^# m p `$ /# Z$ D 6* 1; ^# Y$ o Z$ m p h l O$ *) q, +' H) s, s, u, s, u, x, z, y, y, u, x, y, y, y, x, x, y, y, y, y, y, y, u, z, x, ' y, y, y, z, y, u, y, y, y, z, u, v, A, y, u, u, y, y, y, y, y, y, y, y, y, z, x, z, y, x, u, y, y, y, y, y, y, y, y, u, y, z, x, y, u, y, y, y, y, y, y, x, u, u, s, *) 2 ## [ W@ 2 ; { ) `@ : N$ ) X@ S$ & S$ < H= ; ] ; R$ S$ & S$ ; S$ U@ S$ ", +"y, y, 8' Mp.!q.+' Mp.+' ~q.+' Mp.Mp.Mp.+' +' [: q, Mp.6' Mp.[: z~ z~ q, z~ z~ z~ z~ z~ z~ &[ *[ *[ z~ *[ vh.ql.z~ z~ *) 2! z~ *) 9| $8.*) |1 9| 9| 9| <{ 98.*) <{ <{ <{ J$ 9| 9| I/.<{ 9| <{ jP jP 2^ R@ I/.;b J$ *) BN 0' L$ J$ jP 0' I/ I/ I/ + 0' L$ I/ I/ 0' + * ]& 0' ]& * Z, $ + 0' R@ ]& 1) # $ # [* # # ]& # $= + . 1* S$ o! V@ V@ . o! . . & $ & $ > Q$ - Q$ Q$ = . . Q$ > $ . & > `@ & & H= o! X@ X@ ] & T- %= 2 N$ T- ] J) 4 | Q$ { ] N$ | | | Z! 2 X@ 2 2 1 7- ; | 7- { [ *# ( { [ 2 => ) | ~ 1 Y@ 7 $# 2 } N$ 2 ## ;# / 6 D, [{ 6 ( 7 6 ,# ) [ 6 d /& 9 1 == 9 5 5 ( } i / [ e 7 $# e ,# 7 a 7 j V~ }{ W$ e n h 0 e ~# ># ,# 0 {# e a 7 n }& C; `$ ,# e V$ h a [& X$ n K= n 2, h ]c o c n L= n `$ p h h 2, D l Y$ `$ p `$ _# h m n^ q c{ ^# h /# h Z$ D % Z$ m ^# 4* w D ^# t I {& w w -= ^# y w <, Z$ w P@ #= H$ c- O@ C ^# O@ z D {& G G B G I w N M= z N G z +% I N C A G @% Q@ O@ N A G Q@ I I S A I #= P@ I A O@ A J w G M@ A S S A Q@ Q@ I I@ P@ z M H$ M K@ z I M S z S b- M @% M M P@ P@ j4 H G 1& P@ H$ N@ A H$ 3# S M S S |# o^ M z M @% K@ L@ J Q@ I O@ H I w A 8* P@ J 3# S L L S Q@ z H O A M A N@ P@ P@ P@ z G M= P@ N O@ M S M@ I b- P@ z 4, N x N z G 8* I x S M A G x I G w I G A I G D w C /# Q@ I D w C ^# N 4* t {& z G G z w D D w /# D 1; p $] m 4* w ^# G D L= m C Y$ ^# p D h ,> ^# `$ Z$ y C t w w `$ V| Z$ _# ; *) r, q, x, x, z, x, v, x, x, s, u, u, y, y, y, y, y, y, y, y, x, y, y, y, x, z, z, y, y, y, y, y, y, y, y, u, u, y, y, z, y, y, x, x, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, u, u, s, u, u, y, y, y, y, y, y, u, z, =) s, R@ > ## ] Q$ ~ 2 N$ [ R$ ~ & U@ | [ X@ N$ R$ ~ ; ; > ; ] > (& U$ ~ ; ^& ", +"y, y, q.Mp.!q.Op.Op.+' +' Mp.Mp.+' +' +' +' +' q, z~ +' +' +' z~ z~ z~ z~ z~ z~ z~ z~ q, z~ vh.z~ z~ z~ Ip.vh.*[ z~ ah.98.ah.*) 9| 9| 9| $8.<{ <{ 9| 9| <{ ], I/.9| ;b <{ 9| 9| <{ <{ <{ <{ <{ k3 R@ R@ jP I/..( 2^ J$ I/ I/ L$ ]^ L$ I/ G= L$ = L$ J$ 0' L$ 0' = * ]& BN = K$ + ]& $ # + 0' + T@ * V@ o! . # V@ > S$ $= + # . # . M$ ' $ [* H= . > $ > $= $ P$ . $= $ |* - Q$ S$ U@ & N$ - . > ] | Q$ o! ^ ) & > N$ | & | R$ H= 4 { V@ H= ^ ; > ] [ N$ 2 ~ | 8- ) ~ Z! 2 / ; X@ ) { 2 | ~ /& 1 2 5 4 $# { 6 { /& { <& d X@ [ /& ^ ( 2 [ } e } 7 8 } => == 5 x0 6 ## 5 ,# } } a 6 ,# 7 0 3* 6 e 6 0 i k ]c ~# 2, 0 ~# 0 ># e e a' j [& A~ ~# e 7 n n 0 `$ g [& 6- c h r m L= n o a ~# j h _# p! `! }& c p ^# ^# Y$ h i n^ Z$ |& % D D p ^# m r ^# p p % C; p m 4* w D F= z D t w I D I ^# G m D % D D G D G I :# A 4* w x C I G z z N /# N :# D N G N A z N %/ G w 7* z }# N I G N F= @% Q@ z b- H$ I M N@ G P@ @% x A I ^# G #= I @% Q@ b- Q@ @% M b- Q@ I S H$ S Q@ N@ S E$ P@ G S I A Q@ H$ A I I {& I N@ O@ I A P@ I z n! K@ A O c- M Q@ x Q@ P@ H$ A H P@ }# A C, M %> F= z N P@ M M S +% M H$ 7* A O O@ I A P@ A P@ @% w +% +% G x @% x %/ A I Q@ S x A H b- Q@ N 1& K I I {& B M= F= C N ^# m Q@ N z #= I /# A I w G M N K N w F= t D E #= A G ^# {& N N I N w :# G Z$ z 2; N G ^# ^# r `$ :# :# t G C p n D O' Y$ 4* 4* `$ 5* ^# % r ;) ^# V~ ], [) r, s, x, z, x, y, u, u, y, x, x, y, y, y, u, t, y, y, y, z, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, y, u, y, y, y, y, x, y, y, y, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, x, z, x, q, # U@ - ) ] [ ) ] `@ N$ | %= 2 N$ W@ | | N$ | ) ; [* U@ ; . %= R$ N$ U@ & ", +"y, y, 7' !q.!q.Mp.Op.Mp.Mp.Mp.+' +' Mp.Op.Mp.+' *[ z~ Op.Mp.Mp.[: *[ z~ z~ z~ z~ *[ *[ z~ z~ 9i.|1 z~ z~ *[ vh.ah.*[ z~ xi.xi.e^ *) 9| 9| vh.<{ 9| 9| 9| <{ 9| 9| 9| <{ ]^ ]^ ]^ I/.<{ e^ ^, J$ L$ J$ ]^ 9| I/.=$.I/ I/ L$ I/ 0' J$ 2^ 0' I/ L$ k3 0' ]& 0' I/ 0' = + + BN $ 1) K$ + R@ =[ + L$ + + $= # V@ S$ . $ > > + k) . . $ # $= H= S$ . Wp.k) Q$ ; # = ' P$ S$ . > |* 2) S$ ^ > > ,Q - ; =' ; | | X@ 2 (& Q$ 2 & N$ ^ ] - | ) ] i#.| ^ S$ ] &= 2 Z! 2 ~ 2 2 | N$ /& } *# X@ X@ 7- 2 ] < | 1 ## / 2 { 1 ( < : { ( < *# ~ [ ## } 6 3* Y@ 6- ( ,# 7- 6 Y> :_.6 d ,# N' 3* 5 Y> < 6 W$ a b a 0 6 8 n b i c 0 : ,# L= h 0 a d ,# z: p L= a a' c 9- a h ~# n X$ a 0 a |& `$ s> }& h r n 0 7 e r r Y$ 0- j e h m Y$ r Y$ h -) o h p m `$ p u p G p n Z$ N p u D /# w w 6* q w w D G /# ;) r C D G n! )> F= p D w C u F N C N N G B Z$ }# O@ I A B w {& F= N N G q2 A F= T x I A N= F= N A I I G N x F= O@ w G B .~ n! A m w A G z A Q@ +% H$ 2& J Q@ GK M Q@ a- I G B H$ A I P@ P A Q@ A 8* I I G F= S N@ n! z S 3# H$ z G I I o^ A A I I O J &> Q@ Q@ M H$ H$ P@ P@ I I M A I A O@ 7* O@ N A 8* A N A M I M K@ G G 7* N x D G 7* I F= x P@ Q@ K@ A K@ A x G A z I I z w A 2; G I N 7* I G D w F N I N 2; ^# m ^# C w F C w {& w {& G N G G G N m D D ^# 4* w {& G ^# :# Z$ F @= @= G p m Y$ m t m m Y$ 4* m q t ^# {# h `$ h 1; r a ]& [) r, 6' [) t, y, y, y, y, y, x, y, y, y, y, u, u, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, x, s, s, w, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, x, u, s, t, s, y, y, y, u, u, y, u, y, u, q, [* 2 ] 2 2 X@ ~ ~ > | ~ : ) | N$ | ~ { | ~ ; T@ > U@ ; ^ U@ ^ | 5- ", +"y, y, 7' Mp.Mp.Op.Mp.Mp.+' Mp.Op.+' Mp.Mp.Mp.+' [: z~ Mp.+' +' Mp.Op.z~ z~ z~ q, z~ z~ z~ z~ z~ *[ q, ql.z~ ah.xi.z~ z~ q, vh.|1 Pi.|1 98.$8.*) 9| 9| 9| 9| <{ 9| 9| <{ <{ 9| 2^ ]^ 9| *) <{ ;b L$ 8S <{ 9| 8S ;b l) R@ R@ I/ 0' I/ ]^ ]& I/ R@ *) ]& 0' 5_ 0' ]& I/ 0' # ]& ;b 0' + # + ]& + $ = . + # [* > 2) [* * $ 1* + ;b R@ ' $ . + 2) . $ !, ]& ' & > + $= A; - = & U@ & $ > > * }* S$ U$ > N$ | N$ 05 ; & Q$ U@ Z! ~ X@ & %= S$ | ] J) N$ U$ %= & ; { Z! { N$ 2 2 [ ~ X@ Z! ) | N$ | | 2 { ~ | *# | ( X@ { } { { ( J) $# 4 ] 4 : ,# q> ,# 7 $# 6 1 ( -> { D, /& } d } 6 ># a } 6- 6 7 d Y> 0 k e L= k } ~# ,# ,# W$ !# ~# a j 6 $# 7 L= 0 i {# ,# 0 a O' L= ~# n j a a 6! h c r p o |& n L= 0 a' Z$ `$ Y$ `$ e ~# Y$ ~# o/ r Y$ n h 0- % m h ~# l p `$ D b' /# z ^# D ;= {& /# ^# p `$ Z$ ^# w ^# /# t D C ^# D G Z$ Z$ ^# w G z G N G x x A G G ^# D 2; t G N {& }# N 8* |{ C S C G A ^# I M= N x P@ N ^# I @% #= Q@ z D N x C A N F= }# G w M= A Q@ N@ A H$ N Q@ P@ Q@ P@ I A I A I F= z H$ 8* P@ A z G M I z w {& B N@ n! A S O E$ I 3& S H$ E$ P@ K@ H$ A K@ M@ M P@ Q@ M G #= 1& 7* O@ G A P@ P@ O@ O@ M N I #= M z G A P@ m) N Q@ w {& C C P@ N= w x z w A C N N@ E= A N G B I A O I /# m w b' 2; I w G G I 7* C x A I D x /# C /# N x ^# N ^# V| Z$ ^# {& C 2; m D ^# C C A 4* 4* Z$ t ^# ^# o _# D 2; ^# p `$ Z$ Y$ Y$ _# ,> p h h ^# `$ `$ `$ -) p h l ~# s> e R@ g] q, z, s, z, z, x, y, u, x, y, y, x, u, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, x, x, x, y, y, y, x, v, s, y, u, |) s, 6' s, y, y, y, y, y, y, y, u, H) y, y, y, y, y, y, y, y, s, y, y, y, y, y, x, u, y, x, u, y, u, y, y, z, x, s, u, y, u, v, v, ; ; { { { ~ ## X@ ~ # | [ ] ~ ; ] ' ; %= H= U@ . . > N$ N$ ' S$ & ; ", +"y, y, x, +' Mp.Op.!q.Mp.Mp.Mp.+' Mp.+' !q.Mp.Mp.+' Mp.z~ [: +' +' Mp.z~ z~ z~ z~ q, z~ z~ *[ z~ z~ z~ *[ *[ *[ ah.9i.z~ z~ &[ xi.Pi.<{ 9| vh.$8.*) 9| 9| 9| 9| 9| J$ 9| <{ <{ R@ J$ *) <{ ]^ <{ 8S <{ J$ R@ R@ I/.<{ 2^ L$ 0' (}.L$ J$ jP #S BN V! ]& R@ ]& I/ X! 0' Dv # + 0' 0' $ # # 0' # 0' L$ + + Q$ [* ]& . [* $ V@ [* .( = |* [* $ V@ $ = = ]& . ] . [* V@ . $= > Q$ Q$ %= > U@ & U@ ' H= > ; & N$ ; S$ X@ ; > $ N$ N$ | ; N$ U$ U@ ; 2 | | ] ] N$ g{.) { P$ | ^ 2 ; ] 2] N$ ~ $# | ## ~ { 2 2 ~ /& X@ D, V~ [ D, 6 2 [ 1 *# { ; { 9 N' } 9 { 4 d { } e 6 } ) $# d 9 3* L= J] $# d k ># 0 k 7 3* } b 9 6 3* ~# 7 J] ,# 0 e c d e 0 [& 7 a 7 c L= 0 L= c ~# Y$ 0 6 ~# c L= ~# e c p h ~# n ~# a *= Z$ ~# O' -) {# ~# r y2 `$ 1; % Y$ Y$ `$ w o `$ /# _# c{ C D % h ~# ^# :# ^# m Z$ _# `$ /# Z$ h D ,> w {& ;) D 6* m `$ ^# p ^# G z w S G N t M G F G ^# A ^# D m 5* G N D S N z x N N N {& N A z C C /# M I z N w K Q@ N S P@ A C Q@ z w G w I N I N ^# I z S +% Q@ b- z P@ I @% z I A M b- M @= A I G I ~& G A Q@ P@ }# z M I I A F= z 1& S S A E; M x I A }# Q@ G A O@ A }# G I I K@ M Q@ ` K@ 8* N x G M z Q@ A I P@ b- w G A x m I I N M w N G A K@ O@ w x w z Q@ n! z #= A G {& I G Q@ z x I b- A w F ^# M= z D N /# m b' x D w N `$ Y$ 4* ^# p /# p 6* p /# y m s> G % q `$ Z$ p `$ }& Z$ ^# h /# h r (# L= n o O' s> `$ -) r n o p n o L= f] ^, 6' s, s, s, s, x, y, x, u, z, y, y, y, y, s, s, y, y, y, y, y, y, y, x, u, s, x, x, z, y, u, y, y, y, x, s, u, y, y, y, u, y, y, s, z, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, x, x, y, y, u, z, s, y, y, y, y, s, x, s, q, & ~ %= } | | N$ { | [ { | > | > ~ | %= N$ ; - { U$ R$ > S$ . & ^ | ", +"u, y, z, +' +' !q.!q.8' +' Mp.Mp.+' Mp.Mp.Mp.+' y: [: q, [: +' Mp.Mp.z~ q, z~ *[ z~ rl.z~ z~ z~ z~ z~ z~ z~ z~ ah.Il.z~ *[ 9i.xi.z~ Pi.<{ |1 $8.*) 9| 9| 9| 9| 9| 2! |1 9| 9| J$ 2^ 9| <{ <{ I/.<{ I/.J$ R@ R@ J$ J$ ]& I/ jP I/ BN J$ 0' 0' I/ 0' I/ 0' R@ R@ I/ L$ + # + I/ ]& # # L$ =[ $ 0' + # k) 2) $ # + . > . ' 0' U@ ' . * V@ Q$ $ V@ $ A; > V@ $ . H= > * S$ S$ > ; . U$ > & > ] ] & %= P$ Q$ . ) %= o! | ] ]& ; N$ X@ Z! ~ U@ & & ] ; & ] | & { (& | H= ; T- ; { *# N$ { 2 2 2 { N$ 4 { } 4 d } 5 [ *# N$ { X@ ## 4 [ == *# { ## D, b d 8 d ( /& d d Y@ ( d 7 V~ 6 a == 6 6 / B; g V) } Y@ j c X$ 6 d ~# a ~# g L= ~# e [& c b C; k 8 ,# j g L= {# c k } n m h e 0 $# O' Q{ 0 c a ~# 0< c n 4* L= L= [& n -) `$ m y2 ^# c [& m ,> s> u ^# f r ~# ,> Z$ Z$ 0- Y$ ,> r Z$ r ^# `$ r y w D t h ^# D `$ ^# y C D C ^# C D t Z$ 1; :# {& /# ^# #= % G [# ^# N G 7* N M= C D I I C G B B 7* N m w N I Y N@ G /# G :# I N I A N A G '> {& Z$ /# Q@ Q@ z O@ B N z N N z G I M Q@ A I G A M z z P@ z b' z M I P@ A T^ P@ I z N z #= N w I B w M A G N@ Q@ Q@ P@ .~ M@ M P@ N Q@ o> b- q! m) E$ I S 8* A N K C z N 2; M= x x G A ~& M N w m G I z x G {& A Q@ z G z x N A B I G N B m w x B I w D N x 4* D /# z N ^# b' % m h 2; :# G s> m w `$ :# {& % m D N m G D D Y$ N G ^# m ^# `$ r D ^# p m n Z$ ,> n Y$ Z$ h `$ p r `$ K= L= o `$ 0- e 8 R@ 5' 6' s, t, s, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, t, x, u, z, z, y, s, u, u, y, x, s, y, y, y, y, x, y, y, t, z, y, y, y, y, u, y, u, u, u, y, y, y, y, y, z, x, u, y, z, y, z, u, x, s, x, y, y, y, x, u, y, y, y, u, s, x, x, ], | { *# 2 W@ ~ > 2 | ~ ) ] | & Z@ . ) ] U@ - > (& ] ] & R$ > N$ 5- # ", +"y, y, w, Mp.+' +' 8' Mp.Mp.Mp.Mp.+' Mp.Mp.Op.8' Mp.[: z~ z~ Mp.Mp.[: z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ q, z~ 2! vh.*[ z~ ql.$8.98.5' *) 98.xi.<{ <{ 9| 9| 9| <{ *) <{ <{ 9| <{ 2^ ]^ I/.I/.l) J$ l) L$ R@ G= ;b J$ R@ L$ I/ BN 0' ]& R@ R@ ;b I/ G= 0' I/ 0' ]& 0' I/ ]& # # ]& ]& # # ]& = + + 0' + V@ H= S$ ]& + Q$ [* > + 5- $ 2) > . . > ' 2) $ + > - = > > & Q$ . ' $ ; . $ U@ - + H= ] > U@ & |* S$ ; & ; & - > N$ - ~ U@ . X@ W@ ; *# & N$ N$ ~ Z! ; 2 |* [ | ] 2 ^ ~ > | 2 } 2 H= ) X@ *# F:.) /& ) [ ( $# ~ /& I= /& ( D, $# [{ { /& ## ) / J] 5 d ~ } 4 V$ 7 6 /& 2 3* => / d 1 [ x0 5 *= Y> d c Y> a' 6 q> a 9 ,# tA a a ## *= 7 d c j a ~# ~# {# a' a ~# {# c{ a c e 8 c j s> 1; r c o c ># h p 0 Y$ L= ~# n n L= h h {# p C; ~# ^# _# 0 n D ,> ^# p p }& y `$ w `$ ^# w D D p [# z Z$ w % ,> `$ r r ^# D :, D w `$ `$ `$ :# I N N M= G G p D N {& {& ,! C x M= ^# I C 7* x /# N F w G B B D F :# G )> D A A z B S N G I G w G D A O@ w F= D G x N /# G G G C I A N A H$ Q@ A A x N z P@ N G K@ I G B O@ H M N E; I #] C 2; D N z B E$ I N G A x 8* G A I G x I A G G G S H$ Z$ I z A a- M= D w N N #= K G M= G N I G Q@ N w z x w x N I w }# w % K@ A z I w N F I Q@ G D m N 1; w N B D I D t D :# D 4* G Z$ ^# 2; ,> m y N m `$ q w t G w ^# D Z$ ,> p 4* p _# r ^# p p s> t _# L= n p Y$ m `$ C }& (# `$ n L= h m L= s> 8 R@ 6' v, x, x, 8' y, s, u, z, y, z, u, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, y, y, y, y, u, y, y, y, y, y, z, y, u, z, y, y, z, z, y, y, y, y, x, z, x, z, t, u, y, y, y, y, y, x, x, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, u, u, z, u, J$ ) /& %# [ U@ ~ U@ ~ W@ ) | ) | { N$ ] | S$ S$ $ ; & & ; - ; }* ' . ; ", +"u, t, {q.8' s, +' ,q.!q.Mp.+' Op.Mp.Mp.Mp.Mp.+' Mp.+' Op.z~ Mp.+' Mp.6' z~ z~ z~ z~ *[ *[ z~ z~ z~ z~ z~ z~ z~ z~ xi.9i.z~ z~ $8.$8.|1 *) e^ |1 <{ <{ <{ 9| 9| 9| 2^ 9| *) <{ <{ <{ J$ <{ 8S <{ 9| I/.I/.<{ J$ R@ L$ ;b R@ BN L$ 0' I/ R@ #S BN #S R@ .( 0' ]& R@ 5_ 5_ I/ ]& + = 0' + $ + ;b # Z, = + . ' + ]& + # $ # V@ . 2) . $ # = # [* L$ + . 1* $= $= S$ . = ; %= Q$ P$ ; ; . U@ > > & ! N$ > & > 'W U@ ; H= & %= N$ | > > Q$ N$ { ^ & $ & > 2 [ ( Z@ N$ ] | | ~ ; H= ; P$ .# & ) Z! 7- 1 $# d J= 2 /& W@ { d ,# < *# 6 { ; /& { ~ { 2 $# ,# $# 1 d } ( ## } I= ,# 6 /& a ( e a b 7 a 1 ,# ># d e a d 9 9 $# a ># ,# 6 e 7 a 0 ~# V$ i -# 7 7 9 q> n ~# vk K= n % 7 $# a a s> n _# ~# $# 7 j h h e n e [& L= c C; [& e c % p 0 Y$ h s> Y$ ^# s> `$ ^# Y$ p 1; 4* m h m w y m c Z$ m Z$ /# /# ^# n p Z$ G c{ ;) `$ }& ^# C D M= n! :# N z F= G /# G C ;= D N C C GK ^# /# D Y$ B N ^# I G G A G I w w F= I I P@ m /# I C F {& #= G B t N z z A x G }# A Q@ G I %> b' {& I {& G N x N= A I x A w 7* F= {& Q@ }# F= N N I G ^# E$ K@ {& /# w t )> 8* w I A G Q@ N N M N@ z G I E$ M z I z M I I G I I |{ C #= Q@ N N C I C :# N #= I A N G N M= {& N N w A t :# @% G x ^# Q@ {& /# ^# % G D }# F w :# ^# D w m D Z$ m N ^# G :# p y :# m Z$ Z$ Z$ % ^# t ^# `$ ^# `$ ^# G c D p m p q p c Y$ c p o ]# Y$ m n E, L= Y$ {# 2, L= r r }& m e r h c c p n # 2! +' x, u, s, y, x, y, x, s, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, z, y, s, y, z, x, y, u, u, s, H) u, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, y, y, y, y, y, y, y, y, u, A, x, s, ; ~ ~ [ ) [ | 2] U@ N$ ^ N$ N$ X@ ] ] ] ; S$ Q$ & ] ; > . ' > 2 | %= ", +"y, t, ]q.!q.8' +' !q.!q.+' Mp.Mp.Mp.+' Mp.+' Mp.Mp.+' Mp.z~ Vp.Mp.Mp.Mp.Vp.*[ *[ z~ z~ *[ z~ z~ z~ z~ z~ q, z~ z~ ql.vh.*[ 5o.2! $8.|1 *) Pi.9| <{ 9| 9| 9| 9| <{ 9| 9| 98.q, 2! <{ J$ <{ <{ <{ <{ 9| <{ <{ J$ J$ l) L$ .( ]^ R@ I/ BN BN BN *) <{ V! G= I/ I/ L$ 0' 0' 0' 5_ V@ + L$ L$ # z] + + $ + ]& + # V@ # 0' ]& # # + + + 2) 1) . . = Q$ Q$ $= - # - ]& - (& .( $= |* [* . |* S$ . ; & ; Q$ O$ V@ . Q$ > P$ & & & %= ] X@ - ' ^& T@ & ; & P$ Q$ T- ; & { 2 | X@ R$ > ] N$ U@ | | ; H= N$ S$ ; 2 X@ { /& 1 < X@ { ~ Y@ d ## < 4 2 2 ( ) T- ( $# ( ## ( d 1 / { N$ { == [ d } Y@ b 7 6 $# 6 8 V~ 6 o ( a ,# 0 ># ,# ,# ># c 0- 9 X$ 0 6 ~# a 6 X$ a ,# 7 } 7 8 c a F! 7 2, 6 ~# ,# n i a ># V$ ,# ~# 0 L= h _# s> K= h Q{ c p -) K= ~# L= Y$ L= s> r Y$ h o r z: p 0- h Z$ Y$ h r q [& m D Z$ o `$ r z Z$ C r h p `$ `$ y ^q.t `$ ^# ^# C y Z$ z D C ^# M= 4* N h G {& }# m 4* N 4* C N A ^# C D N A I G N N N V| z q F= N N G ^# N {& I x /# I G /# {& N z I I A A A G N 2; Y A B N G D N x z G ^# /# ^# G F= A G F= G I /# Q@ N F x G q! z w ^# D G /# K@ x G q2 8* E$ B 7* x N 6* G N M z A )> z w Q@ x G C M I N N N z I A Q@ N A N B t B GK D G z w N A D 7* x D G D F= ^# D C w D Y$ G m D A b' N ^# Z$ N ^# G 2; D t q m ^# D C D V| Y$ _# p Y$ m `$ m 4* n^ % C D :# n^ L= t' /# Y$ r p `$ `$ o |& n 1; Y$ }& |& 0 n L= g n C; _# g L= c ~# {# K= *> g~ r, x, x, s, x, y, z, y, x, y, y, y, u, u, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, u, y, u, s, x, y, y, u, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, r, ]& S$ | ~ ) ~ { / ] & S$ ] ] > Q$ ] ; | ] ; ; ; & S$ . > & |* S$ ] - ", +"y, u, x, !q.Mp.8' 8' !q.+' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' +' +' z~ z~ Mp.Mp.+' Mp.z~ z~ z~ z~ *[ *[ z~ z~ z~ *[ z~ z~ q, ql.vh.9i.z~ e^ ah.xi.<{ Pi.*) $8.xi.*) 9| *) ], <{ 9i.9| 9| *) <{ <{ 9| I/.<{ <{ 9| ;b l) I/.<{ 9| ;b J$ R@ ]^ I/ jP BN 9| BN <{ L$ I/ I/ I/ 0' G= 0' 0' 0' L$ I/ * 0' # . # + % }, ]& $ % # + 0' L$ + + . # V@ L$ ]& > . = ]& . $ $ [* . & L$ !, # $ # |* = $ & ; Q$ 2) > o! k) $= [* - = $ - o! (& - | o! | Q$ . U@ R$ U@ S$ ] H= X@ ; > > 05 & Q$ S$ ' > ; ~ ; Q$ H= ^ ; ] ; N$ X@ N$ } Y@ | { *# ~ : ) /& } 8 2 Z! ( 2 ,# } -> I= ,# d 7 $# ( { 2 8- 6 } d N' 9 } 0 ,# i / } 6 k a e b 6 8 7 ,# a ~# ># a {# 0 7 c 0 k ~# i k h e ,# 0 i i n e b ~# a' ~# 8 0 n g ># 8 9- 7 j -# k _# ~# ;= 9- h ~# h h {# K= Y$ n ~# m h % p ~# Y$ `$ `$ Z$ _# Y$ h xE n ]# ,> C; m c `$ ,> G t GK D :# r o Z$ `$ ^# ^# _# c{ /# ;) Z$ M= A F D M= B ^# m Y$ G :# C {& :# G w D p y w ^# z G w G :# ^# x N= /# 7* w #] I w w K@ I Z$ :# N 2; N F= C I z A N N F N F= G x ^# x w G D G 4* ^# ~& D w 6* G w A z I K@ I I ^# a7 w G x B 5* N B w I F= /# I z {& x E= I x N 3# w Q@ Q@ D D x G G x w G I :# D G w I A I D G I {& I w w {& B w N >= w x {& D N G t G t G S C ^# w G 4* :# h 1; N 1; D G D C D E= Z$ p h A t m p y2 % D N b' D h q X$ `$ % 4* `$ ,> w p q 6* ;= b' {& Y$ 4* m p ,> c{ b' {& t h [& h D -) h X$ Y$ {# W$ `$ h n c{ h c o e n h ^ 5' s, H) x, x, s, u, y, y, y, y, y, u, t, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, x, u, u, t, s, s, y, y, y, y, y, y, z, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, r, # ] | ; 4 ) ] W@ S$ ~ ; ^& $ ] ; ; ^& ] ] ^ ; - 2) & . V@ * Q$ * Q$ * ", +"y, u, x, !q.8' Mp.Mp.Mp.8' Mp.Mp.Mp.>q./q.Mp.Mp.Mp.Op.Mp.Vp.z~ z~ Op.Mp.+' [: z~ z~ z~ z~ *[ *[ z~ *[ *[ *[ z~ z~ z~ 9i.vh.*[ *[ 9i.2! |1 Pi.|1 xi.xi.<{ <{ *) 9| <{ *) 2! <{ 9| <{ J$ 2^ <{ 9| <{ 9| I/.;b ;b L$ ]^ R@ J$ J$ J$ R@ I/ I/ G= I/ G= ;b I/ L$ ]& #S ;b J$ 0' Z, ]& K$ + = # `Y # .( R@ # L$ 5_ # . + $ $ . . Q$ S$ |* $ ]& > # # . V@ ]& = |* . + # ]& + !, = > |* H= + . $ & & ; ' ; R$ > S$ Q$ > . o! > $ = . | U@ > ; | . ] ; & S$ | =' ) ^& U@ N$ { ) U$ %= ) ~ S$ ~ [ N$ & > | { ~ [ 7- 2 [ *# J= &# 4 1 5 { ~ ~ 05 { } } 5 { ( } } ( { { { 2 ( => D, G9 ) 5 Y> d 7 Y> d 0 a Y@ e < 9 ># ( V~ ,# 7 ,# M' 0 4 7 b d a 8 a 0 0 ,# o e 8 j e a h L= Y> a 8 L= [& ~# ~# o n n ~# 6 n X$ L= ~# X$ ~# C; c L= A~ Z$ c s> C; c ,> o p h ~# m o ~# C; n p n n `$ Y$ p r p /# _# D D; w `$ w r /# q q Y$ Z$ `$ /# C p w y G D G z N :# ^# D ^# D w D 4* ^# Y$ p t ,> C C C w G 4* G ^# {& ^# }# {& m z N ^# C C w C Q@ G {& M= ^# m w w D t G q C w x G G z B ^# I /# I E; A z A W) z I z w F= F= N A z G N= z G I N P@ I F= I O@ {& G B G N N I N= N %/ N x A G A }# w :# ^# % C x w x /# B F Q@ D q I G x G E; H$ A {& {& >= w I @% w x D w B D :# Z$ m C Y$ }# D w y I I ^# G p h p Y$ p m D ^# N p D w 4* C `$ O' Z$ `$ G D L= D ^# ^# -= Z$ w t 4* p C `$ 1; n ,> m 4* r e c `$ }& Y$ L= ]# % c 0 e o |& p % h L= a ># 8 j c _# ,# ;# 5' r, x, s, u, s, +' w, z, z, x, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, x, u, u, A, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, z, y, u, u, u, 6' Q$ N$ ~ { ) U$ U@ S$ U$ # N$ . ; N$ ; - ; ] N$ ~ ; U@ . S$ & & . & > T@ $ ", +"y, y, x, !q.+' +' +' +' !q.Mp.Mp.Mp.Mp.Mp.+' +' Op.Mp.Op.z~ z~ z~ Mp.Mp.Mp.[: e^ *[ *[ *[ *[ *[ z~ z~ z~ z~ *[ z~ z~ z~ vh.z~ z~ z~ 2! 9| e^ Pi.98.ah.2! e^ z~ 98.9| 9| V! *) 2! *) <{ <{ 9| 9| <{ 9| <{ J$ <{ L$ ]^ L$ I/.J$ G= I/ I/ #S R@ L$ I/ I/ L$ R@ 0' 0' I/ L$ Z, = 0' $ # 1) # # # }, k) # = ]& + + J$ % + V@ > = $ 1* ]& $ $ |* T@ 0' ]& . *' P$ ; # > H= > > Q$ $ - $ . > Q$ ' U$ - ; > %= > N$ Q$ > !, > U$ ) | Q$ ; & > Q$ | X@ ~ > ; & =' ~ ; H= | 2 N$ ~ | | [ ~ | H= ; %= X@ ) 2 { ] ) { => : [ D, / { ~ ( 'W 2 ( ## 2 } ( 7 ,# { 7 ( 2 3* [{ /& *# } { $# 5 /& Y@ q> 4 d ( 5 d $# 6 7 Y@ 2* $# 0 ~# 6 ,# a i 8 a /& 7 } 7 &# == g e a d ># n 6! e b 0 e -# 6 2* 6 V$ o 0 g j h W$ n {# j a $# L= ~# `$ ~# g e g ,> c n 2, n o h ~# l r n y r [& K= ^# 6! (# ^# :# q 4* `$ h l s Z$ t `$ p D `$ q _# {& t Z$ p y `$ p f^ C G ^# D 4* p r h 4* 2; Z$ _# ^# ^# p G :# p /# A m ,! M= {& G w w w F r D D G M= t G I C G B G m t G G q2 N= z w N@ N G M= N A I M Q@ w b' A N m D 4* H$ G G w G {& W) I G G B G I w z G I N= z w Z$ w /# t G w G G N N F D w w }# z % y G G x M= {& w A A :# t A I N N m y w A I @% G m n D N N I N w x C {& G ^# N w G N G p m C G w D 6* G w D D p G M= `$ 1; C ,> /# Y$ f^ B w I b' 1; m p `$ ^# D Y$ ^# Y$ D p e h q `$ 0- m L= o a K= e n _# K/ r e n e n a !# 0- a e ~# b :& X$ 6- a A~ 1 *) q, x, x, s, s, x, u, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, u, y, u, u, y, z, y, &[ | | | N$ X@ S$ %= 2 ~ | N$ ] ~ | |* N$ S$ S$ S$ ~ $ . S$ . > > o! > & N$ }* ", +"y, y, z, !q.8' Mp.+' +' !q.!q.+' Mp.Mp.Mp.Mp.Mp.Mp.8' 8' 6' z~ z~ Mp.+' Mp.+' z~ z~ z~ *[ z~ z~ z~ z~ *[ z~ *[ q, z~ *[ Il.ah.*[ z~ 9i.xi.<{ e^ 9| $8.$8.<{ 9| 9| <{ 9| 9| *) e^ *) <{ 9| 9| 9| I/.<{ <{ l) <{ <{ R@ I/ J$ l) R@ BN L$ BN I/ *) 2^ ;b jP R@ 0' 0' <{ jP ;b 5_ =[ + K$ # + K$ # + 0' L$ G= V@ [* + # . + + + # = > + # 0' $= $= + + # # !, ]& $ > k) 1) $ |* 2) S$ $ ' $ U$ U@ %= ^& U@ U@ & U$ ] + . > N$ Q$ > ] & ] > ; > Z@ ] Q$ Q$ - I= ] & Q$ H= ; 2 N$ ; ~ ) Q$ R$ ( N$ [ ] | ) X@ N$ | Z! ^ 05 8- ) d ~ { 4 6- 2 /& 5 { 2 ] ) 1 ( ## } } == b a ) /& } 2 == 6 d 2 d ~ 5 $# / ( } 7 6 a ( $# d ## 5 ~# } *# a a 3] $# j 0 8 -# 6 c a' ~# e c {# }{ 6 ,# 7 3* c 7 $# 8 i L= X$ h f [& Q{ k e e ;= tA 2, c o c n 8 h L= p n^ ~# Q{ h c Z$ n e `$ o 0 h p ~# n Y$ `$ 4* ,! Y$ h o Y$ q (# m u m X$ ]# _# ,> D W$ q :# y p r p Z$ p G p G p `$ D h Y$ `$ y ^# `$ t `$ `$ D M= C I C m D <, I G G D t D G D M= C C D }# t D ^# -) w w /# G F= Z$ ^# A G z A A 2; w I p 4* {& %/ w {& /# ^# N x ^# G /# 2; w z /# G z G D I I <, m I m) F= w w G %> N N A D :# N I ^# G I A /# G N w `$ % G C {& B F D G C I z D D m B N z #= B /# }# I N N ^# /# z 4* w t w /# w G B Z$ Y$ 6* 2; Z$ w {& t N z G q (# s> 2; ^# D {& D o p 4* ^# Y$ m m s> `$ Z$ (# }& p p D Y$ t 0- e Y$ c Y$ 0- Y$ c Y$ `$ Q{ X$ g Y$ a o c `$ Y$ }& c s> X$ 7 0 6 ~# g c a g j s> # x, x, x, s, s, y, z, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, z, y, x, z, y, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, s, u, u, x, s, 7' v, J$ | H= S$ & [ ; ~ [ S$ N$ ; & ; ] & Z, ' Q$ ; ' . ; T@ > ~ ' | A; |* * $ ", +"y, y, u, (q.(q.Mp.+' Mp. q.!q.+' Mp.Mp.Mp.Mp.Mp.+' !q.+' +' [: z~ 6' Mp.+' +' +' z~ [: z~ *[ z~ z~ q, z~ *[ z~ *[ z~ q, ql.vh.Xp.*[ z~ 2! |1 e^ <{ |1 vh.|1 *) *) <{ <{ *) 9| <{ <{ <{ $8.9| ]^ <{ 8S 2^ J$ <{ I/.R@ L$ .( J$ s' jP BN J$ I/ I/ L$ L$ [n 0' R@ ]& J$ 0' R@ 5_ I/ ]& + # #S + # K$ L$ k) # = = 0' % $= [* + + > @ # - + 0' . V@ $ L$ + # $ $ $ R- . Gc $ V@ o! > ^& S$ $ - . S$ ] ; & S$ ; > . [* Q$ %= Q$ R$ T- ; N$ . U@ S$ ~ { ; ' ^& ; . ] - S$ & ; > ] ] | { | ) & ] U@ R$ N$ R$ *' N$ 4 T- Z! ;# [ 1 ] [ d 1 ~ ;# | [ $# < ) | ## d /& / 6 b /& } 5 } V~ } } 5 $# Y@ 0 a } 6 3* 6 $# 6 8 6 ( 7 ## k } q> k c k a D, a d ,# a &# g 0 ~# ~# $# c 7 ~# ,# *= c i i o a c V$ h n 9- e 0 $# a j 8 ,# i a `$ a' {# j C; !# g c ~# L= h [& 0 l o ~# c h [& h j c h Y$ :# v e h `$ `$ _# `$ m f^ Z$ ~# n r y _# ^# p m n (# O' M= /# ^# :# :# h p F= /# ^# D `$ #| p Z$ <, n^ :# `$ ^# F m 4* j~ }# D :# G `$ D Z$ w C M= w {& G C Z$ D w C ^# :# N 4* x I B y N= O@ N M= w C /# N D N w :# Z$ m G b' ^# D m m `$ z ^# {& /# /# G m B G z G D G I D % 1; D 2; B I G A N ^# C 2; C t D M= b' D `$ y M= M= :# A F Z$ N@ C w N C /# &> D w G C D G B I w G D `$ G 1; D C D I % {& m C G m m 4* w ,> q :# m G t w ^# -) `$ GK `$ D D h p /# :# m ^# ^# E, m }& ^# Y$ C; A~ l t ^# Y$ Y$ C; h a' p q c ~# _# C; Y$ o ~# p 0 f j L= X$ ~# n 0 `$ '# c 0 c q> 7 8 e o T@ q, =) s, s, s, u, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, z, u, y, u, y, y, y, y, y, z, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, y, u, y, y, y, y, y, #' u, u, s, u, 6' $ & H= > U@ | Q$ 2 ~ ; | ; ] N$ R$ N$ . T@ P$ ; . Q$ ] S$ & Q$ . $ $ Q$ ] ; ", +"y, y, u, 7' 7' !q.Mp.+' Mp.!q.8' +' Mp.Mp.Mp.y: +' Mp.Mp.Mp.+' q, z~ Op.+' Mp.Mp.z~ [: r, z~ q, z~ z~ *[ *[ *[ z~ *[ z~ z~ |1 |1 *[ z~ Ip.q, z~ Pi.2! vh.vh.2! *) <{ <{ <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 9| <{ 8S J$ .( L$ <{ I/.<{ *) R@ BN ;b BN J$ I/ I/ L$ L$ I/ I/ L$ 0' = I/ 5_ K$ I/ ]& 5_ 1) # Z, K$ # = 0' T@ & k) ]& [* > T@ $= ^& [* p9 1) + ]& # V@ V@ Q$ + - > . . > $ . ! U@ = & $ = & & ' V@ {c U@ . . ' ! . Q$ U@ N$ Q$ ~ U@ ] H= ^& - * $ & $ ~ & . H= ~ 2 | ] ~ S$ ; ^ ; %= | X@ ; ] ; R$ 2 ( [ 2 X@ X@ U$ ) == *# ) d 2 { [ 2 N$ | } /& ~ [ ,# 6 6 6 /& X@ ( 4 *# /& { # a d ( { 6 1 : == $# 6! 6 7 `@ ,# 7 L= [{ b e c ~# V$ 0 ,# !# a 7 $# q> a 7 {# k g e 9 8 $# 0 e e } $# 7 Q{ e _# A~ 7 0 h o *= ,# ,# r i ~# 0 xE n h n a a !# W$ c o C; h r h z: `$ r p Y$ n p }& a p c ]# q r /# `$ h Y$ ^# r 1, m <, Z$ ^# `$ D ^# w p y `$ `$ o m p m n p y w j~ `$ D Z$ G n^ `$ ^# t m `$ C ^# N y N C /# D w ^# G t 5* 5* F q ^# D b' w N /# m 2; :# t ;= )> G M= w }& D @= w z F= b' ^# `$ G C /# m r 6* M= N % t F w m 2; O@ G q2 N G w F= D w G D t w C D )> <, w /# ^# I M= D G ^# C % B /# m D t D D D t 1; :# ^# w D `$ D -= V| m {& I N K N 4* m C 4* q D Y$ s> t ,> /# Y$ Z$ t 4* ,> 4* `$ 1; t ^# ^# {& ;= `$ /# m z D p m 4* (# p h -= L= 1; t p /# F m p h Z$ r ^# ]# ~# 0 C; e A~ c r 9- c c n o c L= n 8 j n A~ o n [& ]# o e k c j K= K= &# 7 ;# 2! 6' s, s, z, x, y, y, y, z, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, t, y, y, y, y, x, s, v, x, v, + N$ S$ `@ | > S$ P$ ] Q$ H= . ; & U@ - - U@ U@ & %= > . Q$ ' # & S$ S$ {c S$ Gc ", +"y, y, y, 7' 7' _q.+' Mp.8' 8' !q.+' +' +' Mp.Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ Mp.+' Mp.q, z~ z~ q, z~ z~ q, z~ q, z~ z~ *[ z~ *[ .q.Il.2! *[ *[ z~ *) Pi.e^ $8.xi.9| *) 9| 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ I/.<{ <{ 9| <{ J$ R@ J$ 2^ <{ jP <{ ], 2^ J$ BN 9| G= I/ I/ I/ 5_ I/ I/ 0' I/ 0' 0' K$ 5_ I/ 0' * # + # K$ L$ 0' # ), [* ]& ]& V@ + > ]& 1* [* $ $ - . . # $ ' V@ U@ . $ > ] S$ ,Q . . X! = . [* $ & S$ U@ H= R$ & ] S$ 2 2) N$ U$ ; N$ ' Q$ S$ %= U@ U@ - $ ~ > > ] ] N$ > X@ ~ P$ ) ~ o! - 5- U@ & T- X@ ; P$ { ~ # { 2 7- W@ ( 1 [ D, V~ { ; 7- ## X@ ## 5 ( ( ; U@ ^ ## X@ { { ) } [ X@ ~ 4 ) ,# 6 } < 6 } e ## a 6 &# ,# [ $# 6 0 &# a } ,# 9 $# b $# 7 e e a ~# 0 ~# } b i $# 5 a e k $# q> ,# *= b 6 M' e i j c p g -# ~# e e *= ~# n L= 8 e |& X$ 0 Q{ c 9- L= o g h p ,> r 1; p p |& a % r h ^# O' r `$ ^# q p h ^# p h r p Z$ :# `$ z `$ O' D C `$ D I B m t y D m m Z$ w G G 2, D N N D q p D GK N ^# :# 4* Z$ G {& C ^# -= {& C ,> D `$ Z$ 4* D ;) m V| D q D D w 2; G B 4* B G w C B w m t ^# /# G m <, ^# :# 4* w 2; G G z )> I G G C G `$ Z$ ^# ,> G ,! x ^# w /# N= C :# N ^# w D /# M= z B u w w t m p G M= C D -) Z$ `$ C Y$ w ^# Z$ z :# -= Y$ G w G D % ^# 1; % C L= `$ m -) m G w t h p t :# 4* p p % N C; w Z$ a p 9- s> `$ p n % n `$ ~# tA u % Y$ L= L= m s> n n n &# b A~ ~# 0 n a 8 ~# `$ g o c r p e 0 n L= 0 i a L= 2, o g 0 b V$ a 7 *= &# ] 5' 6' v, u, z, v, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, s, u, y, y, y, y, u, x, u, =) - ^ ~ ] ~ ; U@ U@ P$ | ~ ' ; & S$ & - ; . ; - - # # T@ * U@ - . + > ; ", +"u, y, y, 7' !q.!q.!q.8' 8' y: Mp.Mp.+' Mp.+' Mp.!q.Mp.Mp.Mp.+' !q.[: z~ Mp.Mp.Mp.6' Vp.z~ z~ z~ ah.z~ z~ *[ *[ z~ *[ ql.*[ ah.|1 ah.z~ z~ |1 $8.Pi.)~ |1 xi.$8.)~ *) 9| 9| <{ <{ 9| 9| <{ <{ <{ J$ J$ 9| 2^ <{ J$ ;b <{ 2^ J$ <{ <{ J$ )~ BN <{ R@ BN G= I/ 0' L$ + L$ I/ L$ 0' [n 0' 1) # 5_ = # # = + 5_ . = # $ ]& # > . $ > 1* + = $ + $ + ]& . V@ - > . $= H= . ' - * $ U@ ; + $ + > ; H= |* %= Gc & ^ *' > > %= > & & T@ ; `@ ; ' ; ; H= Q$ ; ; U$ 2 ] ' & P$ ; & U$ & ; W@ 2 N$ ' X@ | ; ; X@ 'W | *# ~ { ~ | ) ] 8- { } } ( 2 ;# Z! ; ) [ ) | } g{.} D, D, N$ 1 ,# 1 3* 5 1 a d ,# [ ># } } Y@ ( 6 6 a 7 ,# 6! $# 7 6 8 d a' ~# a 7 6 b / 7 6 a ~# c d c } a c c g 8 7 e 2* ~# {# 8 E, n 9- ,# |& j e c 0- n [& `$ |& g ~# j ,# f h Y$ X$ |& _# r o Z$ r o X$ r c 6! O' Y$ h s y r y h q r r r h n ^# r `$ p :# {& `$ G 2, u p D Z$ m C `$ w D D s> p p Y$ 4* D w t p D M= D 2, D w :# y 5* p Z$ ^# u t m 4* p `$ m C t 2; Z$ t 4* r G ^# ;= ^# )> B ^# w /# s> M= D D D m m w D Y$ :# w /# G p m ^# D [# w w D G M= C G ^# D 4* m w % G G F N C C :# t Q@ N G :# C w Z$ `$ % m t `$ :# p G I `$ p u u p (# m `$ G `$ }& p p m w `$ `$ ^# `$ `$ t D p _# N 1; p 5* C ^# r Z$ 9- :# b' m Y$ ,> m p _# n 0 Y$ `$ h Y$ g o n p ,> p h Z$ |& &].c A~ Y$ `$ ~# |& 0 h h `$ `$ `$ ~# n p Y$ 0 *= c c o 7 {# a e 6 b V- 6 a a g 7 ># 8 &# a i { < ], v, s, v, t, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, &[ ~ X@ | ] W@ ~ | ^ ; S$ ] > > ; > U@ | Q$ Q$ S$ S$ * . = . ] . > . T@ * * ", +"y, y, y, q.Mp.,q.8' !q.Mp.+' 8' 8' 8' !q.Mp.+' 8' Mp.Mp.+' +' 6' z~ z~ [: Mp.Mp.+' [: z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ vh.*[ z~ 9i.rp.z~ z~ vh.vh.$8.<{ e^ xi.ah.2! <{ 9| <{ <{ 9| 9| 9| *) <{ 9| J$ J$ 2^ J$ <{ J$ L$ .( l) R@ <{ I/.R@ <{ J$ R@ I/ BN BN ], L$ I/ I/ jP #S jP 5_ :q.= # # J$ L$ =[ # # # # + L$ + # . [* $ $ # V@ . V@ # 0' }, > 2) $ 1* S$ # # - . . $ $ & * - - & + - $ S$ S$ . & & ] ] S$ ]& & N$ Q$ $ S$ Q$ & S$ b{ . - }* $ $ ; ; N$ > N$ ; ) & U@ | P$ U$ & { & 2 & | *# 2 U@ { ~ R$ T- ~ ] ) ) { W@ ~ ~ Z@ /& [ ( /& ; ## ; ; 8- W@ $# d 2 7 } Z! 1 3* *# | d d $# /& ) { a D, { 7- X@ 6 / 1 $# B; ~# ,# / Y> &# ~# } &# 6 e a $# ,# d a e 9- 0 j 7 n 0 7 e 9 6 ,# q> c j 6 o a ># g L= ~# n 7 a' Q{ ~# {# e ]# n O' L= i ~# h c 2* j c C; ]# p `$ [& W$ r h c r s> h 1, u n _# p C (# Z$ ^# c j s> 1; r :, c }& _# Z$ <, (# /# D Y$ Z$ 1; q Z$ 6* p I ^# ^# /# ^# r Z$ /# x w N ^# _# `$ p t D Y$ t 4* `$ p m t :# D p 2; m G G D t D C ^# y2 t D :# /# `$ p w N ^# Y$ `$ C D D G C ^# m {& G :# N /# N % I m G `$ D D n ^# (# z 6* 1; w C D D {& {& {& :# Z$ C 2; z y x ^# 4* G x I :# ^# ^# q ^# GK :# y N B D ^# q :# N= w % m w m C ^# t % {& y h p `$ `$ Y$ ^# p y 4* ^# 4* ^# ^# n^ `$ :# (# m p V| 2, h Z$ ^# s> n L= Z$ ;) h 6 e h h c p p |& L= l p ]# p h n s> Y$ Y$ o Y$ s> L= n n n i a 9 j V- V- 8 V$ n c o ~# 9 7 ,# k 0 2* a a i b 7 6 e e $ 6' v, s, x, y, s, v, u, y, y, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, x, z, y, y, y, y, y, y, y, u, z, y, u, y, y, y, y, y, y, z, z, z, y, y, y, y, y, u, y, y, y, y, y, y, y, u, u, u, *) N$ ] ) | N$ ] ] ~ ' ~ ; ; S$ - ] ; ] ; U@ ; S$ $ U@ & ]& ; # ' * * = 0' ", +"u, y, y, 8' 8' !q.,q.8' Mp.Mp.8' ,q.8' Mp.+' +' +' Mp.!q.Mp.Mp.+' z~ *[ z~ Mp.+' +' [: *[ q, q, q, z~ z~ *[ *[ *[ z~ .q.&[ z~ z~ Il.|1 5o.9i.vh.|1 $8.Pi.9| |1 xi.|1 9| <{ 9| <{ 9| 9| 9| 9| 9| 9| 9| <{ <{ 2^ J$ |1 <{ J$ R@ ]^ <{ L$ I/ 2^ ]^ I/ I/ G= ], J$ 0' 0' 0' 0' I/ L$ I/ 0' + + K$ ]& L$ * # 0' + ]& J$ = # # k) + 0' ]& # ]& [* $= = = 1* V@ # # E! > . V@ 0' & [* $ ]& # o! V@ S$ 2) . }* }* > S$ H= X@ N$ . > $ . $= o! > U$ ; ' ; ; & H= %= %= Q$ `@ ; = # - H= . [ & P$ ; N$ ( ] ^ ~ N$ U@ | *' ) { 2 X@ W@ ## X@ ^ ~ ) { N$ 8- *# N$ ~ < Z! *# < [ ~ d { ~ < [ 1 4 2 b ( X@ X@ ~ ## 4 < d 2 1 1 &# : /& [ : 1 9 $# M' b : 8 a $# $# g b 7 &# 6 6 $# ># g $# 7 $# ,# L= ]c a 7 ~# ~# e e o a a 7 o c [& 6 a c a 7 e 0 !# 7 0 e c p W$ !# 3] h 8 c h e }& s> h e L= n O' p h h c h 0- 0- _# r Z$ p `$ Z$ _# o c ~# a n ~# }& }& _# Y$ -= p (# n O' `$ h 4* 2; 5* p D `$ t 4* ^# G ;= Z$ G C C; 4* ^# x q `$ 1; w K N 1; Y$ s> s> _# ^# D y G N D GK t G x /# m w ^# Q@ ^# n C C D `$ :# ^# N {& /# m w 4* 2; t p t N G N `$ `$ 5* z % n `$ G G G `$ ^# /# :# 4* Z$ w I ^# % _# m D w b' ^# m ,> Z$ ^# D C -= _# ^# n^ w M= D `$ m j~ Z$ n^ s> r `$ q Y$ ^# ^# h D {& % % Y$ h n^ Y$ u ]# {& Y$ q ^# q r s> Z$ p m C; ^# 2, `$ n h o A~ c -) p w % _# 1; n Y$ [& c [& m s> ]c p n h Y$ p r ~# c 0 n ]# p ~# ~# e *= 0 a g p c 2* a 6 V$ ~# ,# e L= 7 o j ~# h e 8 b 7 8 ~# 6 j } > ^, v, s, y, u, z, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, s, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, y, 2^ > ] ^ > { ; Q$ | U@ S$ > . S$ ] ^ ; > ; ' ; ; (& S$ . & & & T@ Z, * - * ", +"t, u, y, s, +' !q.8' !q.+' +' +' 8' Mp.Mp.Mp.+' +' +' [) Mp.Mp.Op.Mp.[: [: [: +' Mp.[: z~ *[ z~ z~ *[ *[ z~ *[ z~ z~ Il.*[ *[ *[ ah.vh.ql.*[ z~ xi.xi.Pi.e^ 9| $8.2! *) 9| 9| <{ 9| 2! 9| 9| 8S 9| *) J$ <{ J$ <{ 2! ;b ;b R@ R@ L$ I/.9| ]^ BN L$ I/ ;b *) I/ p9 R@ L$ 0' I/ <{ L$ I/ 0' 0' 1) = + 5_ # = ;b J$ K$ L$ = 1) V@ # > ]& + . p9 + . [* 0' [* - = + # L$ M$ $ > + > $ & $ U@ . . . & S$ . & ; > S$ Q$ > %= P$ ] > * H= H= U@ U@ [* # > %= U@ U@ Z! ; ; . ; Q$ Q$ ; | | S$ R$ | ~ Z@ | | & U@ ^& $= ] ; | X@ N$ $# X@ & ~ N$ [ [ ~ +# ^& { X@ [ /& /& < | ) } 2 [ W@ { ,# ( V~ { 7- Z! 4 d W@ / 1 2 { 5 e d ,# ,# } Y@ } 6 [ / 6 k < $# 9 $# a ,# d 7 $# ,# Q{ h a 7 j d $# -# -# V$ 7 a 7 a 8 8 n ,# 8 7 e C; a i e a 7 n ~# 0 7 e {# f |& s> 7 ~# c o W$ 0 }& h n '# 6 a C; [& [& h ~# h X$ Y$ n o c r p ^# h o o L= X$ n c{ y p h r h h p Z$ ^# ^# % Z$ Y$ ]# r r C ^# `$ D r h ^# M= h Y$ % G D D ^# ^# M= `$ G Y$ s> D Z$ h C {& ,> ^# p m D ^# /# F m Z$ :# m ,> r w % M= ^# D t Y$ /# ,> w m `$ Y$ 0- G % N D % /# p m D m p `$ Z$ ^# `$ m ^# D /# ^# `$ `$ % /# Z$ L= ]# p ,! D `$ C Y$ -= }& `$ t C p o m m 4* ^# ^# Z$ ^# q ^# Z$ 2, Z$ 2, p 1; Z$ 4* t q o/ D :# ;) D D m ^# p Q{ L= n % ^# n Y$ r `$ Q{ o X$ c 4* `$ p p Y$ p e Y$ Z$ p h n n h % Z$ s Y$ c p 0 L= p |& g 9- 0- e {# c n Q{ n 0 o 0 0 ># 0 o {# a 8 j b V$ ,# ># a 0 C; ~# r L= [ 8 == ,# a ~# ( a } ; v, s, z, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, z, y, y, y, y, y, y, R@ & | ) ] H= ; ; %= ] ' ^& U$ ; ~ > . # * - ; U@ {c & = - = . pH # * # = ", +"t, t, u, 7' +' 8' !q.7' Mp.Mp.Mp.Mp.!q.Mp.Mp.Mp.+' Mp.+' Mp.Mp.Mp.Mp.Mp.z~ *[ Mp.Mp.Op.Vp.*[ *[ z~ *[ *[ z~ z~ *[ z~ *[ *[ *[ z~ z~ vh.9i.*[ ah.ah.$8.Pi.Pi.*) Tp.9| <{ 9| 9| 9| <{ 9| 9| 9| |1 <{ 2^ J$ <{ <{ <{ 9| p9 <{ <{ 2^ 2^ ;b p9 L$ ]^ <{ |1 BN BN 0' [n I/ I/ 0' I/ I/ I/ I/ BN 1) # X! L$ I/ # L$ = + ]& L$ I/ <{ 1) $ + # ' + # $= Q$ ]& = . ]& $ # + # k) > > ]& V@ N$ > . Q$ - $ o! Q$ ; =' > + H= $ Q$ Q$ ] ' - Q$ H= ] - | $ $ U@ b{ ] N$ Q$ ; ^ ] = & - Q$ N$ H= N$ 2 ] Q$ | | U@ + P$ / { ; U@ ~ | 2 2 | 2 | X@ R$ [ U@ 7- ^ ~ 4 4 Z! /& N' $# } 2 *# { ## 2 { N$ 7- 5 ~ } $# ( f] 1 ## } < D, 6 +# Y> 6 6 a a b ># == $# $# 9 ,# } ( Y> 6 $# ,# [ d e i ,# ,# j } $# 8 6 o b i n !# e o e i a e {# ~# g 0 7 8 6 e a ~# f n ~# e a 3* V$ e L= ~# h n c ~# c *= e e Y$ ~# j Z> r L= e c L= F! r l `$ h `$ c r Y$ o `$ p /# !# h r Z$ D 2, ,> `$ `$ `$ Z$ p p o r 0 r Z$ p r y n :# Z$ h ^# D ,> ^# w ^# D (# p `$ p `$ C n w t Y$ Z$ 6* D q m m t D D p % }& p 4* ^# N ^# m /# m 4* m ^# 4* p -) ^# >= m s> C p n D Y$ p Z$ w 4* {& `$ b' /# C m p! % F ^# `$ m h 6* ^# m D s> t F `$ w t p w m r Z$ % n ^# Y$ r h h V| 6* m E, p D n^ y Z$ Q{ n h s> D V| h 1; `$ m ^# t n p V| `$ p ~# {# j `$ ^# C; p 4* n^ q 2, o p s> h `$ c m g K= o ~# Y$ }& ~# c o h s> h c n ~# Y$ c p s> L= n c g 0 h [& 0 9 V$ e 0 6 g 8 6 c 7 n e 6 ~# 7 9 k B; ># == ,# 0 b V$ 7 6 ~ 6' g] v, x, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, A, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, u, u, =) y, y, y, y, y, u, y, y, y, y, y, y, y, x, x, z, x, y, u, y, y, y, y, y, y, w, . & - | | & & & V@ & > | ' & . > . ; U@ & U@ . + > . * . ; Q$ . . Q$ & ", +"t, t, u, 8' Mp.Mp.!q. # > =' S$ & #^ |* S$ $ > $ $ Q$ . > > & & ^& Gc S$ - & = T@ & X! $ Q$ - S$ }* $ * Q$ %= + S$ ; o! ' S$ N$ Q$ ~ 2] | | - k) Q$ ( ] N$ Q$ Z! ; ~ ~ *# ## Y@ 2 5 J= ) [ ## X@ ~ 9 ## N$ V~ | | ) { W@ < } 1 1 1 2 [ 8- | } # b 6 9 9 [ ( 7 } Y> 7 } d /& i } ## 9 $# a 7 e N' a ># 6- 9 9 : : d L= e 8 &# :& *= a 6- ~# k h 6 < b } ~# o a 7 b b d V$ C; L= L= ~# ,# C; 7 {# 0 ~# q> V$ e Q{ n a c c X$ X$ h ~# 9 *= n p o ~# h >> c ~# c{ `$ r `$ p o e K/ a _# m _# K/ m p C p s y l L= 0 q p 4* r 0- m Y$ Y$ p (# `$ /# p t Y$ m `$ Y$ n <, D 4* `$ 1; D N /# D `$ 1; p L= Y$ p M= n ^# B V| ^# ^# 1; t `$ (# 4* /# t h ^# D ^# V| D :# |& p Z$ (# ^# G % ,! h p p h @= u D 1; `$ ^# Z$ t ,! Z$ r ,> ^# g r h `$ {& 4* m ^# s> p Z$ % ^# w ^# :# m r p D p Z$ n !# h r c{ ^# Z$ m c Y$ n r o p E, ^# p ^# ^# m Y$ -= n p r s> Y$ p n Y$ D h [& Y$ L= Q{ y Y$ ^# m o W$ n Y$ 4* p n h Y$ q :# ~# ,# p L= a L= 0 }& Q{ n W$ e p q c c a p 2* b ~# A~ i a b ~# i o E, 6 a 6 c V$ 7 X$ e a 9- ,# 7 ,# 6 b e ~# =# $# V$ b } r, s, s, x, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, z, t, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, t, 6' . ] ] ] S$ | ; ; . ; H= X@ ; & S$ & ; . Q$ $ > * $ > Q$ . - - * Z, . ' > ", +"t, t, u, 7' Mp.!q.8' ]q.8' +' y: +' !q.Op.+' Mp.+' +' Mp.Op.Mp.+' !q.Mp.[: *[ [: Op.Op.Mp.[: *[ *[ z~ *[ *[ z~ z~ z~ *[ z~ *[ *[ z~ vh.vh.9i.z~ 9i.|1 98.)~ 9i.9| 9| 9| e^ <{ $8.9| 9| <{ <{ 9| I/.*) *) <{ <{ <{ 2^ <{ ]& I/ R@ ]^ J$ L$ <{ 2^ *) jP L$ R@ 2^ <{ I/ I/ I/ 5_ p9 #S I/ I/ I/ I/ # ]& 0' I/ # + R@ G= ]& # $ ]& E! [* = ]& # > # + + + = # > . = # $ > H= - U@ $ 2) S$ > o! . S$ o! & S$ - & }, & $ 0' # . Q$ ' & $ {c > ^ & Q$ # . & & %= & = ^ ; S$ %= U@ H= ; T- ; | ; T@ S$ ; - Q$ | N$ | 2 & ' 2 d [ { 2 [ 5 4 { 2 Y@ [ 2 ( ( | => 2 R$ /& ~ 2 [ 6 $# d 1 ( { 5 ( ( | ( [ ( D, %# 6 ## 9- a *# $# } < 4 6 d j / 1 8 6 ( b i <& &# k 7 %# &# 7 o b 7 6 [& L= V- 7 9 6- J= 6 *= $# e i e a e ~# L= i 8 6 k n i Y$ *= ,# e a i c e c n a E, o `$ 6! g e b o 0 r 0 C; ,> o h s> n n n t p ^# [& 7 Y$ h 8 r :, p 2, ;) ^# Z$ h Y$ h `$ h p y Y$ u :# m c p p `$ `$ p 4* _# (# % r q o -= % <, r s> p % t D 6* Z$ p |& `$ N m ^# m p! Y$ Vj L= D Z$ r m m ,> Z$ 0< m D 4* 4* 4* n^ p :# D `$ w D C v p ^# /# % s> /# t ^# D ^# ,> h q w #| Y$ p C; `$ r h w r h q 4* p L= {# `$ n -= Y$ % 2, ,> :# p (# `$ p D `$ s> ^# `$ l `$ Y$ t Z$ }& Y$ r Y$ `$ q `$ ,> p O' m q p n^ p ]# L= m % D h p {# ;= ,> h 2, r 0- j X$ |& n ,# Y$ p |& h ~# h h _# `$ c a ]# k 0 A~ j b o h n c 0 e e L= ~# V$ j ,# a j ~# &# e c 8 7 V- e 9 V$ 7 e V$ -# ,# ~# 8 == 7 ># &# -# &# 6 [q.v, s, x, u, y, u, t, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, H) u, y, y, y, u, y, y, y, y, y, y, y, x, 2! & =' | | Q$ ~ N$ H= ] N$ > ; # Z, $ - & & ; . . V@ - ; + }* S$ . S$ # ; ' . ", +"y, t, t, 8' +' +' Mp.8' !q.!q.+' +' +' Mp.!q.Mp.Mp.Mp. q.+' Mp.Mp.Mp.Mp.Mp.[: e^ Np.Mp.+' Mp.z~ z~ z~ q, z~ *[ *[ z~ q, z~ ah.rl.z~ *[ |1 |1 q, z~ |1 xi.9| )~ *) 9| 9| )~ z~ 2! 9| 9| 9| <{ 9| 9| <{ ], ]^ R@ jP <{ <{ l) #S L$ ]^ ]^ J$ I/.l) J$ 9| J$ 0' BN R@ I/ I/ 5_ <{ J$ L$ G= J$ G= I/ `Y 0' + I/ ]& K$ + $ + K$ . + # # $ . [* > !, # ]& . ]& V@ $ + . =[ k) Q$ > $= $= . ' > 0' $ > |* $ $ . Q$ S$ ] . $ Z, . T@ .( > & P$ Q$ U@ ' H= . - U@ N$ %= | N$ U@ ~ . ) S$ Q$ U@ > ; N$ ~ ; | X@ ) | X@ ~ Z@ X@ . ; 4 X@ ; ) g{.> ~ 4 / ~ | { ~ ~ { { ) 'W | N$ 2 | { / { { }q.*# ## 4 ] ## [ ~ { d d 9 : Y@ } ,# 5 5 / / $# 7 4 ( W$ } D, [ ( 6 k ,# ,# V$ $# &# d ( i a e k c L= ># 8 a a 8 } 6 L= a k '# g i b b =# i q> 8 a b ,# $# j ~# ~# i n 2* h h h n h L= ~# e c ~# W$ 7 o Y$ h m r K= ~# e r 2, h Y$ Z$ _# ~# n h r |& `$ O' ^# s (# y ~# h ~# (# g s> h Y$ h b `$ L= 0 |& `$ `$ Y$ -= C % C % w D Z$ n q p Y$ `$ 2, t D `$ 6* Y$ `$ -= ^# Z$ -) Y$ :# m % s> 1; p s> ,> ^# p h Z$ p 2, ^# % D :# ;= p ~# `$ `$ % w {& ^# m ^# #| G Z$ /# `$ p ^# `$ r `$ y C; o Y$ p 1; ;) h ^# Y$ r D `$ ^# }& p `$ y 4* `$ D p y q Z$ ,> % 2, :# ^# h h 4* t h Y$ h n 0 m p Y$ |& `$ n Y$ m p n s> X$ Y$ c 2, 0 h c Y$ ^# -= n p ~# e h o s> n 0 {# r c p n p c n n `$ h r j e o a ;= Y$ a a ~# Y$ L= W$ c c {# a c ,# c L= 0 a 7 ,# 0 a b [{ a V$ e a 7 0 b g i s> a 6 $# 7 =# } a 6 V@ v, r, x, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, z, z, y, y, y, y, y, u, x, y, y, y, y, y, y, t, y, y, y, y, y, y, y, y, y, y, x, z, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, u, s, e^ ] - N$ ; ~ ~ $ ' | ) H= ; & N$ > H= (& ' & & . # |* . ; > . > & = ; > * ", +"y, u, t, !q.8' Mp.+' 8' !q.!q.+' +' Mp.8' !q.8' Mp.Mp.Mp.+' +' Mp.+' +' +' Mp.z~ Vp.Mp.Mp.Mp.z~ *[ z~ z~ z~ z~ z~ z~ z~ z~ 9i.9i.*[ z~ 9i.vh.z~ *[ z~ ah.9| *) *) xi.xi.|1 *) *) <{ <{ 9| <{ <{ 9| <{ <{ R@ R@ l) I/.9| <{ (}.l) R@ ]^ R@ I/.<{ BN jP 2^ 0' L$ *) L$ 0' =[ 2^ ;b 0' 0' 0' 0' 0' # K$ I/ L$ # # # ]& =[ + 0' L$ # K$ = o! # # > # + ]& * # $ [* # ' $= > > $ # $ $= $ 0' - ] & = > ; ' T@ * ]& + > T@ + $ U@ H= & ; = = > $ + & ^ H= ; N$ ~ > & > N$ H= ] ; ; H= | X@ X@ ; ! J) | Y@ 2 U@ > =' {c ^ ~ , | ; [ | N$ A; ; ) N$ ] } : N$ { 2 Y@ [ { ~ ( ( | 1 X@ X@ 7- N$ ( => <& { } d ## 9 , J= { 6 $# 6 d : 2 7 } 7 Y> 6 $# a ~# [& 5 8 a e 8 a -# e ~# j a g : b b d 7 a 8 e $# b 7 7 i a a' 6 e z: 0 i ~# a j i 0 7 2* n ~# n a r n n [& a ~# 0- ~# h e ,# e h h L= F! e s> r ~# ~# o ~# ~# c o n h c r 9- 2, r p p !# h n _# `$ 0 p 4* s> c (# ,> r h |& Y$ -= [& h r ^# ^# c Y$ s> p C; p r Y$ ;) ~# `$ D Y$ o p Y$ Z$ Z$ h ^# r -) r V| n h s> p /# t n Z$ % `$ F h `$ ^# |& s> p h 2, c m p D {& _# h n r ^# Y$ 2, 1, h `$ l t 5* `$ Y$ l % `$ p `$ /# m `$ `$ r r n `$ p ^# ^# Z$ ,> m _# ~# n Z$ Y$ h `$ c Y$ p ^# m r h `$ Z$ ^# _# n `$ ^# Y$ Y$ y o L= 6! {# 0 a 0 0 Y> h p ^# q Y$ _# ,# ~# `$ ~# n p e Q{ `$ p c r h g C; r p o ~# C; X$ ~# % K] o ,# L= e 0 h o e !# ~# ~# n c 0 0- 0 d c 2* 0 e e h 8 F! g a *= Y> i ~# a k Y> a &# b 8 } a a | *) v, s, s, z, y, y, x, x, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, t, y, y, y, z, y, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, x, y, y, z, y, y, y, y, u, y, y, y, z, y, y, y, y, y, y, x, u, x, <{ H= ) U@ & | U@ ; - ; %= . > ; U@ - ] . ' . # = > Q$ $ $ ; > V@ . k) . = ", +"y, y, u, 8' !q.8' !q.!q.!q.8' !q.+' +' !q.!q.Op.Mp.Mp.Mp.Mp.+' Mp.+' Mp.Mp.[: z~ *[ [: Mp.Mp.q, z~ z~ z~ q, z~ z~ z~ z~ z~ q, ah.z~ *[ z~ vh.9i.*[ z~ 2! xi.2! Pi.98.8S 98.98.$8.9| <{ 9| 9| <{ 9| <{ J$ R@ R@ J$ <{ <{ 9| 8S I/.R@ ]^ L$ <{ <{ L$ jP BN I/ <{ *) *) <{ (}.G= ]& ]& 0' 0' I/ 0' + # =[ 0' J$ K$ # # $ # Z, 0' L$ V! > > + > + # # + J$ L$ # + Q$ 2) |* V@ X! $ # # > . $ - $ Q$ . + = > . ] > - Q$ [* Q$ T@ + [* $ . Q$ . Q$ X! $ > $ & 2 & N$ U@ ) ] > & $ ; > ; N$ H= *' [* | ; ] 2 S$ | N$ N$ X@ P$ *' Z! | %= P$ ] ) { , ^ ) ^ X@ N$ 4 $# | | | < D, Y@ 1 <& *# ~ } 7- ~;.7- { X@ { ( 1 [ %# < / / d | /& 6 1 ## { 6 D, 4 9 [ 6- } $# ># $# <& 6 6 a &# 6 9 8 b ># d &# 6 ( 0- a : $# == i : V$ ~# f ~# 6 g k $# n a Y> ~# ># b 6 / *= g 6! c L= 0 &# 8 ,# 0 e ,# e a ~# m 9- < ,# g 0 ~# X$ L= `$ r ,# o Z$ 0 c c h C; _# n h `$ n f 0 >> ~# _# `$ g p D Y$ 9- 9- ]# n _# c `$ h ,> L= h h 0- Y$ s> % Z$ (# O' D % s> s> ,> |& h *= n Y$ p 1; h p l O' Y$ h Z$ ~# s D (# h Z$ `$ -= h Y$ F % L= p p 4* `$ r t h r n ^# r ^# `$ ,> % % ^# Y$ 9- ,> p C; D F ;) p _# L= o Y$ p n Y$ h s> Y$ c D n }& 0- K= r p p s l r r p V| D p ^# Y$ r p h `$ {# `$ ^# n ]# Y$ m h -= n ~# o ;= h $# 9- Y$ [& ~# {# 6! L= n L= L= {# X$ ]# p h L= ;= n E, Y$ !# -) e 0 h 0 7 ~# b i i a e L= 7 a 7 0 c V$ p '# a } 8 *= L= n 0- n 0 7 7 a ,# V$ a =# i 7 b c 0 ~# -> d 6 {# c 7 7 0 V$ ~# 7 # *) r, A, y, y, u, y, u, u, y, y, y, y, y, y, u, u, y, y, y, y, y, z, z, y, x, y, z, y, y, y, y, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, +' $ U@ N$ ; U@ > f] | . S$ > & > & & - R- $ > > $ > Z, > # 5- $= > & * > }* = 0' ", +"y, y, u, 8' !q.8' !q.8' !q.!q.(q.+' +' 8' Op.!q.+' Mp.Mp.Mp.+' Op.Op.Mp.Mp.Mp.[: Vp.Vp.Op.+' [: [) rl.q, q, z~ z~ z~ z~ *[ *[ 9i.z~ z~ *[ |1 .q.*[ *[ 9i.xi.vh.e^ )~ 98.9i.$8.|1 9| 2^ 9| 9| <{ *) 9| ;b <{ ]^ ], <{ <{ ]^ jP ;b I/.J$ R@ J$ ;b L$ V! R@ BN L$ 9| ;b 5_ I/ I/ L$ I/ #S #S I/ <{ 0' + # + L$ ]& # # J$ ]& + $ $ {, ]& . + V@ $ ' [* . > & L$ # - . =' k) H= > = # $ = [* H= > & # + = U@ A; U@ * & ; N$ & & S$ . T@ - Q$ T@ |* > U$ > $ + Q$ > k) . Z! > ~ ; ^ o! H= & > H= P$ H= & | & ] %= H= *' | | N$ X@ ~;.V@ | ~ ~ N$ 2 &= 1 d 7- { ) ; /& 2 : < | ~ { ~ : { [ [ [ [ { ## X@ X@ N' /& [ { $# } ( 6 { g ## J= } 6 V~ D, d 6 ~# 5 ,# 4 [ ,# 6 a ,# d } 7 $# a $# $# &# Y@ } d / -> 6 $# 8 6 =# e e J= o 6 g e 0 a j 6 e } e *= c ~# e M' e n ,# 7 b 8 s> h j L= g 6 n h a 7 a o a a n h c n ~# n a a j n 0 n Y$ c r 0 e Y$ r o h ;) n h n p h `$ Z> q ^# j~ u o ^# 6* {# ~# L= L= _# ~# % Z$ s> ^# s> `$ h ~# s> ^# h ^# D Y$ Y$ Z$ `$ L= `$ `$ p p Y$ s> }& m f^ `$ Y$ p ^# `$ ~# `$ Y$ Y$ h n Y$ `$ r m m p }& ^# ^# m p % _# n ^# `$ o p O' r `$ 4* `$ o t h Y$ `$ h m n h `$ o D m `$ Y$ 0 X$ p r p r ^# r c{ }& n h p q Y$ 0 m C Z$ r % Y$ `$ n m E, Z$ c }& c h Y$ 9- 0 p n ~# e a L= s> n X$ ~# Y$ `$ n 8 n r o Y$ ~# c A~ X$ a' a' h e -# a e j 0 d L= 7 0 p c n *= n r g i n 6 h 0 n 0 a a e 7 d 7 : 7 7 f D, ~# $# ~# 7 ~# j a } } } } < [ } W@ *) q, u, t, u, x, y, y, z, y, y, y, y, y, y, y, y, y, y, z, y, y, z, u, y, u, u, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, y, y, y, y, y, x, u, x, x, y, y, y, z, u, x, = > - | P$ H= ; & ] & - $ ] N$ . Q$ [* $ ; > o! & $ Q$ # |* > $= . }* * . . # ", +"y, y, u, 8' !q.!q.Mp.+' 8' 8' |q.!q.8' Mp.!q.8' s, s, +' Mp.Mp.Mp.Mp.+' +' +' 6' z~ q, Mp.Mp.+' Mp.z~ q, q, z~ *[ *[ *[ z~ z~ z~ z~ z~ *[ 9i.vh.z~ *[ z~ ah.xi.2! e^ |1 vh.$8.*) q, 9| 9| 9| 9| *) w9.9| <{ 2^ <{ 9| 9| ], 2^ jP <{ R@ 2^ 9| jP <{ ]^ ]^ 2! BN J$ =[ R@ 0' I/ G= I/ I/ I/ I/ BN I/ 0' + # 0' L$ + # + I/ # + $ J$ L$ E! # # [* ' = 1* $= $ + V@ ]& ' . V@ > [* # ]& = V@ # . $ A; $ Q$ . > > & - Q$ T@ P$ S$ > Q$ |* V@ 0' - - U@ S$ ; > . . - ' & > - & ; ; ; Q$ O$ H= H= & S$ U@ S$ ^& N$ Z! ; P$ N$ & | 2 . - 2 N$ $# N$ ^ ; ] ~ [ *# N$ & Z! { 4 / { 1 /& } # 8- ,# < { 2 5 ( 2 ># < { ( [ b ( $# [ 6- d J= } [ 6- } D, [ d : $# { 2 { J= $# 7 i &# : a 1 a 7 6 ># a e d $# 7 $# V$ $# 6 6 ( 7 6 $# :& ( b :& e ,# e _ e b a d g 6 a' a } V$ X$ e 0 r 8 -# 6 o a ~# ~# ~# 7 a i e 6 d b c a' 7 ~# ~# W$ i ~# F! a h h C; d j 6! c{ `$ Y$ ;= p _# ~# n -= r `$ L= c{ L= ^# p c i n p n ~# Q{ 0 p o -) <, p E, n h n `$ L= Z$ p t Y$ % `$ p ^# p }& n s> s> s> Y$ l `$ Y$ p D 4* 9- r n m r L= 0- L= t Y$ }& ~# `$ p Y$ :# p r ~# Y$ Y$ `$ m ^# o l L= h f `$ (# `$ h K= Y$ ,> h L= p u L= ;= Z$ p p h p ;= n o ,> c Y$ p r n Z$ r p Q{ L= n ~# e h ~# n h r h -) s> 0 c 7 Y$ F! n Y$ Y$ 0 c n 0- 0 c{ ~# 6! ~# 0 0 n s> j n e j 0 ,# h g n n 7 e ~# g L= {# 7 b a h Y$ h 7 &# i L= ~# e ,# 7 j 0 a k $# 6- j e ~# r> ,# ( $# : ~# V$ } 1 } -# 6 V~ &# $# b $# < [ 6 v, x, x, z, z, y, y, x, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, u, t, t, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, u, s, s, +' - S$ U@ ] ] ] 2 S$ S$ ; S$ . U@ . * > ; . . - ; U@ ; & # ; $ Q$ T@ - & # + ]& ", +"y, y, u, s, !q.!q.8' +' +' !q.|q.!q.+' Mp.,q.,q.Op.Mp.+' Mp.Mp.Mp.Mp.Mp.Mp.Op.Mp.[: q, [: Op.Mp.Op.q, z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ 9i.vh.|1 *[ z~ ah.vh.2! *) 2! vh.$8.<{ 9i.*) 2! 9| 9| *) *) 9| <{ 2^ R@ J$ <{ *) 2^ $8.;b <{ J$ R@ J$ I/.J$ BN J$ *) I/ I/ 2^ jP I/ I/ G= I/ 5_ I/ 0' 0' 0' + # # L$ # K$ # L$ # # + R@ L$ # R@ ]& . [* + ]& S$ $ ;b ]& # <{ ]& V@ !, $ # + . $ . # # $ # . . = > S$ # - > > Q$ Q$ U$ & . U@ > o! > S$ ' Q$ . > ; ^& & =' T@ $= > & %= N$ S$ [ ~ > & . ] ~ $= U@ ~ | ; & S$ N$ N$ P$ ] | ] J/ & 6- ~ { 2] D, g{.*# 8- | ~ X@ { ^ { 2 | } -# 6 ;> < 1 { 2 { V~ 2 ## 6 | [ ## Y@ Y> 7 8- 1 6- 6 ( [ } d 7 V$ ,# $# a D, $# } N' 7 ,# : ,# Y@ 6 7 _ ( i D, ># 7 d 1 7 b $# a 8 b &# : $# 8 e 7 o 9 a h V$ 8 :& b 9 < 7 ~# 9 i 0 ,# g 0 a V$ 6 >> h =# 8 j ~# a o c F! M' p j 0 C; Y$ h c e a k e c g L= a e r r n 0 c _# q n a' s> ~# h Y$ n h o s> Z$ n Y$ r L= 0 r h r `$ ~# c `$ p r `$ a l r n h X$ r n p s> (# D s> `$ Y$ ~# `$ c h r c p ^# p h _# % E, c 0 ~# n m p (# c r r n Z$ 4* 2, 9- c Q{ Y$ `$ p `$ ~# 2, `$ l r c }& c ~# o ,> c{ h y X$ n L= j r n h h Y$ n h h L= `$ a' r p p r V| `$ r !# L= 0- _# n h L= s> c n p p n ~# p p s> o a ~# `$ h Q{ `$ % h c L= ~# c h p n n 7 e g e h c ~# e b 7 ~# i b g 7 7 == -# $# a ~# 6 L= {# 7 0 Q{ d e 7 7 c k a 8 V$ a e a < 8 &# 0 7 ,# / { 8 6 1 Y@ V$ 9 == ## g b R- 6' s, A, z, z, y, y, u, u, y, s, z, y, y, y, y, y, y, y, y, y, u, y, y, y, x, y, y, z, y, y, y, u, u, u, u, x, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, x, 6' `@ > ; Q$ > = | > Q$ S$ ' & ' ' & Q$ ^ S$ ] - - ^& . > $ + * Q$ > ' & . $ + ", +"y, y, y, s, (q.!q.8' s, Mp.!q.1q.!q.Mp.Mp.!q.Mp.!q.!q.Mp.Mp.'q. q.+' +' +' +' +' 6' z~ 5o.!q.Mp.Mp.5o.5o.z~ z~ z~ z~ *[ z~ z~ q, z~ e^ z~ 9i.|1 xi.ah.z~ 2! xi.|1 <{ e^ |1 $8.$8.|1 98.2! 9| <{ ], <{ *) <{ <{ J$ <{ 9| ;b 2^ J$ jP 8S 2^ 2^ <{ l) R@ L$ BN <{ I/ 0' G= J$ ;b 0' ], R@ 5_ I/ 0' = 0' ]& # + 0' + # # = + # # Z, = # + ]& M$ + + + + $= > = ]& ]& # ]& > + $ + > $= # . > $ + [* ^& . * > o! = . Q$ $ ] $= > ] 5- U$ - o! 1* ] Gc Q$ . ^& ; > U@ Q$ Q$ > & ; ~ & & R$ > . $ | ; ] S$ 4 05 P$ %= N$ ; | & ] 2 ~ H= $# ~ ( | : U$ { [ ; 2 | H= | ] ) > > | ) 4 [ { ~ 2 | { 7- 2 d ( Y@ ## *# [ 9 } ) d /& [ ( ) } 7 9 W@ < [ } $# { a &# d ( 6 } ~# $# 1 b &# { : [ $# 7 $# e < < ( a Y@ 7 &# 8 ,# c 0 ,# ( 1 6 0 8 8 a 6 $# e g a 8 6 e ~# n Y> a i c e e ,# 6 a e j d L= o e Y$ ~# a i o o n a o ~# o [& ~# Z> 0 h 1, p h p `$ h ~# C; `$ Z$ h c h Y$ p Y$ `$ `$ p Y$ n Q{ Y$ c c c n Z$ Y$ N G `$ h L= Y$ p L= m L= n h L= p Y$ Y$ o h c Y$ Y$ Q{ s> l n n e D Y$ ~# L= Vj `$ r |& g _# h s> |& c n Y$ n c h 4* m p h r % n 6 D p e `$ 2, n n o p c ~# 0- Y$ r X$ r Z$ A~ ,> Y$ `$ t p ~# {# L= n -= O' C; Y$ ~# p _# s> X$ c L= `$ |& i 0 h h n |& L= X$ r 0 p 8 0 h ;= s> ~# s> 7 d e 7 e e b c c c n^ c b [& e X$ !# o e ~# 8 J= 9- 6 d 8 7 V$ V$ g 0 e h 7 j j i A~ e ,# 5 X$ e h 7 0 e a 7 } } 6 -# 6 : 6 $# ## 6 7 { 9 &# / ># d &# %# O$ *) H) A, x, u, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, x, y, y, y, u, x, u, y, z, y, y, u, u, y, u, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, A, y, y, y, y, z, s, q, . & Z, & - ; ; ; S$ + }* . > ' . $ + > > . & . . . # $ * > > $ M$ . $ = ", +"y, y, y, z, (q.!q.!q.8' s, 8' ,q.8' 8' Mp.+' +' Mp.!q.Mp.Mp.+' +' Mp.+' +' Mp.+' Mp.z~ z~ [: @] +' @] z~ z~ z~ q, z~ *[ z~ *[ z~ z~ z~ 2! *[ z~ ah.ah.z~ z~ xi.vh.9| )~ <{ 9| vh.2! *) <{ 9| <{ 9| 9| <{ 9| <{ <{ 9| <{ <{ <{ R@ l) 8S J$ ]^ R@ 9| <{ #S BN jP L$ 0' I/ 0' 0' 0' G= R@ J$ L$ I/ I/ I/ = # = 5_ L$ 1) K$ K$ $ V@ # + # + R@ + L$ + = + . . > $ o! [* S$ > [* + ' #^ . - . > . . $ 0' + . $ ' U@ + $ U@ ]& > V@ 1* - Z, k) U$ & Q$ ; $ Q$ > . # > - ; > ; | . Q$ S$ H= & ] [ O$ N$ ' S$ ; [ 4 N$ W@ & & - & N$ Y@ | U$ 2 2] ; 2 2 , { ] > ; X@ U@ N$ ^ } ^ | Y@ | ~ %# X@ } d | 2 4 X@ [ |, [ $# O$ ^ { ( { 6 { { 1 1 $# [ $# { W@ $# } : ~ 4 7 9 $# < 8- 6 &# < 7 8 [ {# &# ## 7 ~# ( $# 8 { 7 d $# ,# g $# ( b 6 6- X$ a a &# -# 7 V- a' < V$ b i a 0- c r a k o a ~# K= e h X$ B; ># -# e c a L= e a j a {# n e e Y$ ~# n Y$ c ~# p a 0 L= !# Z$ a r X$ |& n e L= n L= L= r h n [& h E, L= p n e n ~# -) j o r ~# {# s> Q{ C; h p C; L= s> -= 4* a p n Y$ Q{ }& ~# h 0 [& L= c{ Y$ 9- ~# e p s> h C; n^ g h ~# s> m K/ Z$ m p :# n n o L= X$ n Z$ n 9- ~# {# r p c 6! ~# Y$ h o `$ ^# D t _# ]c n ~# r q 0- p L= (# _# `$ r n c h {# L= ^# h ~# b a C; r l `$ j Y$ ~# e U- 0 i r p V) 7 a 0 |& 0 c e ~# 6 8 {# 8 1 [& [& 0 o =# a 8 q> 0 7 e c :& e 9 c 9- 6 ~# L= $# 6 c 7 9 b k a &# 0 6 6 L= V$ e 0 V$ j ># 6 -# a [{ < 7 7 $# V$ 6 a 8 b b / } V) } 1 6 d ( &# ~ 2! v, u, A, z, x, z, y, y, y, y, x, y, z, y, y, z, y, y, y, y, y, z, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, q, & $ - & ; ) ] $ ~ H= & & & . $ . k) Q$ * - * & > T@ T@ $ V@ Z, $ > * $ $ * ", +"y, y, y, y, [* = # & $ $ # V@ > + + # + . > [* ]& ; > > S$ N$ > . $= - | Q$ - > = ^ & Q$ U@ & > U@ & - * o! U@ & . | 2 > ] | & & X@ ^ H= | > P$ (& ; ; | | W@ g{.~ U$ ~ X@ 4 } ## [ ) ~ ] X@ Z! N$ ; 2 `@ N$ & { ] `@ { X@ 2 ## /& | <& } , tp.[ ~ / { 2 $# Y@ $# / { [ [ d ( 4 $# < 6 7- [ Y@ 6- a X@ ( ( ( 3* / } < 6 { [ j a 6 &# < 1 { $# ,# : &# b 6 =# :& -# V$ a b 6 < ,# Q{ } -> 0 ( 9 == d g } b V- V$ a X$ 8 7 K= e h o e a 8 9 e ~# r |& c h ~# r l 0 1; 7 ,# 0 a ~# a a X$ 0 c c {# 5 c 7 0 n p k r 0 n g r [& ~# L= |& -) -= s> L= r L= c _# Y$ 7 h h r E, {# p s> c h -) 1; `$ Z$ Y$ n L= g 8 0 r p Q{ ,> s> p 0 a r r n n Q{ #| r `$ Y$ c{ h Q{ Y$ o ~# h ]# p n c r p r L= p e a s c h _# r 8 Y$ C; c `$ r s> o k L= h a' n % 2, 0- p _# L= g a 7 g r L= s> a b 0 n {# |& o n h ># {# L= C; 0 e L= a i c `$ a h j ~# k a ~# &# 1, Y@ i h c X$ L= :& j 7 ~# b n b == b 8 ,# ~# c 7 } V$ } &# a 9 7 Y> X$ ~# 7 : } ## g b a ># =# $# $# 0 6 b ># W@ $# } $# :& } -> V$ } 6 -# ,# D, b 6 7 i 6 7 W@ + [) x, x, v, x, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, z, y, u, A, y, u, u, z, y, x, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, u, x, u, l) & $= ] S$ S$ ] S$ . > ] S$ ' > $ Q$ ; . & $ ; Z, . = * . Q$ (& $ T@ # . ; * * ", +"y, y, y, z, 7' 8' !q.8' Mp.Op.8' !q.!q. q.Mp.+' Mp.!q.+' Mp.+' +' +' Mp.Mp.Mp.Mp.Op.+' [: q, Mp.+' [: z~ *[ z~ z~ *[ z~ z~ z~ z~ *[ z~ z~ *[ *[ z~ Il.vh.9i.z~ 2! 9| *) Pi.|1 ah.|1 *) <{ <{ 9| 9| 2^ <{ <{ 9| <{ *) ]^ <{ <{ ]^ J$ <{ <{ <{ ]^ *) <{ <{ J$ J$ ], #S I/ I/ R@ J$ R@ R@ ]& 0' jP I/ 0' 0' 5_ + G= 0' ]& # + 0' 0' V@ # ]& + =[ $= k) R@ = % [* # # 1* . ]& # . ;b ]& # L$ . . V@ + + $ = = . ; > = > . ' - ] U@ ; %= U@ > S$ & # . > ] %= $ ; ; & ; > > o! > ; H= ~ 2 Z, ] U@ & ; & & Q$ - | Z! /& ) & . ' H= | ; { < H= ~ `@ U@ X@ ~ 7- } ~ %= N$ ( X@ => ) `@ { *# ^ ) 7 | W@ 2 N$ 2 2 ;# 2 ( { # ~ ) ( d &# [ ~ < 6 d : 5 { 1 J= [ < d $# ( $# /& / : 7 / -# 2 ## } W@ } < $# b *= d ( 2 < b ~# 7 $# 7 &# 6 =# 6 8 7 -# h 0 8 &# 7 9 7 c ~# b a a *= n L= c e a 6 0 7 8 ,# g a e b e o h b ~# Y> 8 o ~# K= 7 a g 7 0 t' e tA ~# o r W$ a Y$ a c n n n K= ,# k 9- n L= L= h ^# c c n C; K/ {# K= `$ q ~# r s> h s> 7 r t Y$ r ,> r h p W$ % c n L= n s> s> o Y$ n^ Y$ h p h h !# ~# e ~# s> c Y$ ~# g a 7 e n ]# j ~# n h Y$ n 2, 2* ~# g L= h X$ p c !# 8 p c !# n (# n p O' h ~# k n n `$ h s> ,# ~# K/ g g ~# r c ~# a g a 0 ~# h X$ ~# Y> c L= L= c L= |& n ~# 0 6 a {# c g 3] 0 k a b c e n j e j e c 6 0 (# j [& a a ,# 7 6 i o 8 } c e g e c e b 6 a j ~# V$ $# $# j h 8 9 $# $# 9 8 :& [ } } : } : } < $# /& } &# ,# } $# [ V$ 7 7 $# ## 1* 2! v, x, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, u, u, ' # > H= ] }* Q$ ; ] > $ U$ > * . Q$ - 5- - Q$ p9 + * & $ . ' > . > > !, V@ & $ $ ", +"y, y, y, z, z, 7' !q.8' Mp.Mp.+' Op.(q.!q.Mp.Mp.Mp.8' Mp.Mp.+' +' +' +' +' Mp.Mp.Mp.y: q, z~ Mp.Mp.Vp.8' !q.[) z~ z~ z~ q, q, z~ z~ *[ z~ z~ *[ z~ *[ `p.9i.z~ z~ 2! 9| e^ Pi.&[ xi.<{ <{ <{ 9| <{ 2^ 9| 9| 9| <{ <{ <{ 9| <{ J$ R@ J$ <{ <{ 9| *) 9| jP <{ J$ G= I/ I/ ]^ J$ L$ I/ I/ 0' I/ I/ BN L$ 5_ I/ 1) # 0' I/ = # K$ + # 5_ L$ 0' + Q$ Q$ # ]& + . R@ + # . L$ . $= R@ R@ # !, . > |* |* - = & . = S$ }* k3 = $ %= U@ . . . $ 2) * + $ > = U@ U@ N$ $ . ; Q$ A; ; U$ & Q$ > (& & ~ N$ %= ; & | ] ; U$ > N$ H= N$ ; # N$ & H= ; ; & ) Z! { U@ ; W@ ] ( ( | Z! > ; N$ X@ 2 ; ~ 1 { { $# X@ ) U$ T- { /& ## X@ ; { J= 5 4 { d -# W@ 1 [ $# *# Y> 2 { ] / `@ : $# ,# ( 6 6 ,# / 2 [ $# 1 b &# / $# { [ 4 6 b 7 e $# d a 7 b 8 V$ b b $# J= +# /& L= a 0 i e 9 } o 8 6 6 6 6 c ~# b g c *= V$ V$ 8 g 9 a n !# ># g L= j a k f n ~# p d o h j 9 c c ,# o s C; r g a 6! h z: ~# k ~# 0 c L= c h 9- e h L= p 0 Y$ 0 k a n {# n n n 0 X$ L= L= r n `$ G ~# C; [& {# p c L= n L= 0 r Y$ s> }& 7 e n a {# o Y$ p r s> X$ Q{ h *= 0 L= L= c |& c r o h c ~# n `$ ~# ,# n |& n c *= c V$ c n o {# [& r n _# i k Y$ 2* h s (# p e h h ~# ~# A~ 0 n c e n ~# A~ n ~# V$ 8 e *= c ~# L= h h a $# 0 a 0 0 a 7 A~ a 6 ~# {# ( ~# s> a 8 7 ># X$ &# 6 ~# X$ h 6 l d 6 a j c 6 &# o a ,# a e &# a } } b b b 7 a 6 n Y@ ,# : 7 a 8 7 ## d &# ( } $# d &# < $# 6 } $# 6 5 6 == d 5 ,# &# - r, v, =) u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, z, u, u, u, y: # > N$ U@ . . $ & H= ; . & | ; ~ ; $ Z, . !, V@ }* > # > > . $ $ > . # > & Z, ", +"y, y, y, z, ]q.7' !q.!q.!q.8' Mp.8' (q.8' Mp.Mp.Mp.!q.Mp.+' Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.Mp.*[ [: Mp.Mp.Mp.Mp.q, z~ q, q, z~ z~ *[ z~ q, z~ z~ z~ z~ *[ vh.9i.z~ *[ 2! 9| 9| )~ <{ 9| 9| 2! 9| 9| *) 9| w9.9| 9| <{ <{ <{ <{ <{ <{ <{ 9| <{ <{ 2^ 2^ *) <{ <{ 2^ L$ I/ p9 G= BN ]& 0' I/ L$ I/ 0' <{ BN ]& 5_ I/ + # 0' = * 1) 0' ]& + = + V@ Q$ . $ $ ' # = + + # ]& 1* + ;b ]& L$ . . > # > $ > . & > ^& > . $ k) 5_ > $= ' > + > V@ ]& U@ . & > ^& > $ - $ . > . ] S$ ^ - ] ] U@ P$ | }* P$ Z, Q$ ' o! | ; H= N$ | Q$ | H= & S$ ; S$ %= | U$ U@ ^& - U$ 1 { ; ] %= N$ ( X@ ; - { ~ ] W@ .# ~ ~ /& | 2 | | | X@ $# { 2 ( 1 $# $# 9 *# ) 6 9 6 9 X@ } : ( 9 &# 6 $# &# { { < 1 $# < 7 9 } d -> &# < ## $# ,# 6! a a a 6 d d :& $# a 9 ,# a [ V~ 7 7 a 6 } 6 == 7 &# 7 9 $# V$ ,# ># q> 7 $# c $# 9 '# 3* j a } i c !# ~# c ~# K/ _# c Q{ c -> 7 Y> 8 e e a n 1, L= `$ h r ~# W$ ~# 3] r ~# c n Y$ ~# [& a' ~# ~# d c c L= a 0- 0 L= b L= j~ h n n {# ~# h ~# n `$ j K/ m e n 0- ~# ,> o 0 A~ o Y$ h a L= 7 ~# h |& e 0 c 0- s> h l h l 0 h [& o i n n e j h a n h ~# D, a 0 ~# r A~ h [{ a f o r Y$ n h c % p `$ `$ c M' h n o a 7 3* n V$ a i n n 0 L= 7 ~# 0 ~# ]c j g 7 !# ,# ~# 7 ]# c ># a e e a a ~# C; e b 6 ~# 6 i j 9 q> V$ -# 0 ~# j e } 6 ,# ~# a 7 a a Y@ a -# 7 b == d e X$ d &# V$ $# 6 $# $# e 8 6 $# 7 $# $# b b 7 [ : d e j < V$ { } 1 ( $# } B; 5 W@ , [ : ] D[ 8' x, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, u, s, y, y, y, y, y, u, s, y, u, )~ ] ] | S$ T@ * . & > - . V@ | - z] U@ . ] $ Q$ > $ = X! $ + * Z, = $ $ + * 2) + ", +"u, y, y, y, 2q.7' 8' 8' !q.8' +' Mp. q.(q.Mp.y: +' !q.8' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' Mp.Mp.6' z~ z~ [: Mp.[: Mp.5o.5' z~ z~ q, z~ z~ z~ *[ z~ *[ *[ *[ z~ vh.9i.z~ z~ z~ 2! 2! 9i.<{ 9| xi.2! *) <{ 9| 2! <{ 9| 9| *) <{ 2^ 9| J$ <{ 9| J$ J$ <{ 8S *) <{ ], <{ <{ J$ R@ L$ <{ R@ <{ ;b 0' R@ R@ 0' pH ]& ]& 0' L$ $ * # 0' Z, $ # $ . + ]& ]& + . = = . . + ]& # V@ }, L$ + . ]& $ R- . . > U@ $= ]& o! . # = > . Q$ = + J$ ]& ^& > - + - & - ] > & . U@ + Z, * $ # Q$ U@ $ > - > # > | $ Q$ * N$ H= Q$ & . X@ [ ; N$ | ; & H= U@ U@ | ! ) | ] H= | 2 U@ Z@ N$ & ; R$ H= 4 | | ] d Z! 1 ~ < { / ~ ] ) [ X@ ~ T- { [ } d { 2* /& : 5 | , &# ) 9 ( 2 1 $# 6 &# ,# ( $# d { < ,# 6 &# V$ V$ +# J= /& $# } } V$ [ 6 X$ 7 ,# $# d 5 b $# d -# == 6 8 $# d b 6 a a 7 6 8 a V$ b 9 7 a -# a e } e &# 7 d i d 6 d a 9 *= {# ~# ~# {# e 6 ~# [& e ~# 6 ># a ,# j a i 0 c ,> `$ r n ~# [& 0- 0 [& j n vk r C; L= 0 Y$ ~# ~# h 0 a Y$ h [& h s> ~# {# 0 !# ]c r 0- ~# r n L= p ~# [& `$ X$ ~# ]# ~# L= h 6! 0 h r [& n r i V$ -# g n h c h C; o L= ~# L= g W$ z: c a c n 7 a n n a c c g e o h $# j a g r n 3* a e c6 ~# Y$ h h c _# a 0 c c } c ~# c n ~# 2* n 0 a h 2, L= g {# a '# k {# *= vk e n L= h o j i a a 6! ~# n a j c ~# 7 i 0 7 a L= j a &# 7 7 } ,# e &# e e V$ 6 } 8 ,# / 6 e $# 9 < $# 7 &# *= 6 &# 6 7 a 7 *# [ =# 6 a ( } $# 8 a b &# $# $# } ># } } ( } ## } d 6 ) ], +' u, z, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, z, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, u, y, x, ], ]& - { ; ' S$ & . V@ > | S$ > ^& . & $ & N$ * . Q$ # > S$ + V@ V@ - # = $ # . V@ ", +"u, u, y, y, 3q.2q. $ = # + = Q$ V@ & [* # U$ S$ o! ] & & . | > . ; & S$ . & N$ = - . }, U@ S$ o! > ) S$ . ~ Q$ $ N$ ; Q$ ] - | ' ' N$ ~ & ; ; ] N$ { ) | { ; %= | { > ] J) 7- ] ^ ; 2 ] ## Y@ 7- | /& %m 7- } { [ { ; ) : ; < } } D, 7- b 5 } 6 } [ { < 7 # } ~# $# 7 1 } < / 1 Y> $# : =# -# &# a [ } _ 2 d e b == a -# ( &# b } ( 6 b ( &# $# $# 6 b < 6 d $# a o F! $# b &# b i &# c f 8 *= 7 7 V~ -# a a ,# e B; 7 ~# c l Q{ o ,# ~# k i ,# ># V- ~# V) j n a L= n 0 0 0 c p n 0 l ,# n Q{ c e h 6! L= ~# h 0 6 |& _# c ~# a h a h [& L= 9- {# c e L= L= ~# p _# g n Q{ n K/ c e ,# p c 7 n _# 3* h X$ e e X$ a h p g h `$ o 1, p 0 ~# c *= c L= Q{ L= g ~# a z: 0 c ~# e *= n 0 a n L= ~# {# e e r `$ e r 9- n 0 a h L= == $# k a' !# k [& c e e C; L= 9- c e 0 e ,# L= a e n e c {# 3] L= e 7 a a 0 ~# 0 j 8 L= o 7 e V$ [& 7 i 6 b 7 d 0 X$ D, :& h $# 7 V$ 7 e c 7 d a 6 Y@ [ b &# ## 6 ( 7 ( 7- $# j 0 7 6 i [{ D, &# 7 g :& g $# b b } < 6- ## 2 < ( } < { ,# + q, x, y, x, x, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, y, x, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, u, s, @ ] ; - Q$ & ; ^& & U@ > U@ . N$ - S$ & $ & ; - [* $ . > & V@ # . . + Z, # = p9 $ ", +"y, t, y, y, V@ + 0' V@ # $ E! # Q$ R@ % # # $= {c Q$ 0' 0' . . = 0' + !, ]& + > L$ . > |* + T@ 0' # ' . & $ |* > S$ ; | =' N$ > & = $ > $ Q$ > ; Q$ H= ; ), . ^ $ * . ; ; S$ U@ N$ Q$ ] | 2 | { R$ & W@ ] ## 7- ) > R$ N$ X@ | U@ ~ ] ) ~ %# 2 W@ } d { 5 ] } { 2 { X@ ) / ~ ^ ] X@ 6 ( 4 ;# ,# 2 { : &# 2 ~ Y@ } &# { $# < [ 6 < : [ 7 2 ( < $# < < ) 8- == 6 b : $# == -# : } } -# } &# $# [& 6 ( $# =# b } $# b j 8 c pp.K= e k a i b V$ a ~# e [{ i ># i 6 d a Y> W$ 6- b h ~# } X$ c V$ Q{ 0 7 j 0 ~# 0 == X$ i ~# c b A~ n K/ ~# h [& {# g 9 ~# h |& ~# L= c h k ~# r ~# e h e 7 c i K/ V$ 0 0 c 0- h Y$ c c 7 h c c 0 !# e ~# L= ~# {# 0 g !# L= n n ~# o ~# c n 6 i e a' e ~# n c g e r e o A~ p a' ~# 6 r c o g g e n n j e e 0 L= j a 0 ~# ,# q> L= n a K= 8 7 7 j n e a 7 8 C; j Q{ o Y$ f 9 ,# ~# k a $# c ~# ~# 7 h o c 7 i 6 } n 8x 0 0 e W$ 8 7 0 b a [& 9 } [& e e 6 a 9 } 6 ( 6 b d 6 $# {# 0 7 &# :& < &# $# *# a 9 < V$ ( b $# $# -# 6 7 7- 7 9 $# b -# ## 4 } { } $# ># < < } ## } < d 1 }* v, s, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, u, x, y, y, y, y, y, x, y, y, y, y, y, u, y, y, z, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, u, x, H) .( $ !, & * = - V@ & & U@ $ & $ T@ - + & Q$ = . * Q$ ' Z, & $ ; > + . $ $ . T@ V@ ", +"y, t, y, y, |* # = # ; Z, > U@ & & S$ U@ & > S$ & . > & & U@ & 2) > ! U@ N$ Q$ H= =' ] - - ~ W@ P$ Q$ S$ ~ *' | S$ N$ P$ 2 d { ) ~ %= U@ | P$ ; *' & 4 ; { N$ N$ & > N$ ~ ) | , ^ ~ ) | 2 ~ { 2 ) %# 1 W@ 5 2 ) / ( ## d } < ) X@ / ## { < / 7- [ 2 ,# $# < ## b / $# == e { ) 7 6 $# { ( [ &# ( : : ~ < / == $# } V) -# &# 6 $# 9 *# e &# 6 } c j i b b == &# 5 &# 8 } 8 8 i 7 i ~# ~# a Y> b a e $# a j 6 e 7 i c a e N' c n 7 o ~# n n j 6! j k 7 a i X$ a ~# 3] L= Q{ 0 p ~# |& 0 6! 0 a e L= Q{ h n h k r 0- a X$ ~# p ^# c r p c g c c e L= n 6! ~# g ~# o ~# h h ~# ~# c Q{ 6 Q{ L= 7 e 0 5 o 2, h c b o c 7 6 X$ a L= a `$ L= *= 7 [& ># L= e 7 0 0 ~# L= o ~# 0 L= [& ~# ~# o :& $# e ,# j a J] 6 i e a 0 } c 8 a ## 7 ~# h a' k ,# 8 e a 7 a 0 ~# c 0 7 $# k 0 Y> < ~# ~# a i e $# $# a $# } d ( $# < 6 V$ == V$ 6 8 8 :& :& e ,# ># ( b [ ( a 7 / $# &# } ~# $# 7 6 &# &# 6 6 < b e _ { &# { ## } 9 &# / d 4 { 9 -> { < / ( ; q, s, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, u, u, y, y, y, y, z, u, y, y, y, y, y, u, y, y, y, y, y, y, y, z, z, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, x, x, s, & ; ; & - . > > U@ Q$ . $ ; . > V@ ; Z, ; {c . S$ H= ' $ . + $ |* ]& > > . . 0' = ", +"y, t, t, y, ]q. . ]& + ]& + + - . . S$ & $ $ > ; L$ ]& V@ # = 1) > Q$ . - > . N$ ; S$ $ > Q$ $ . ] ; # . $ $ 0' & . ' $ o! S$ S$ S$ + & > ] & ) P$ | 2 S$ Q$ & & H= U@ ] & /& T@ ] ] ) ^& ~ | - N$ . ; | | X@ N$ | (& - . J/ ] 1 2 /& 1 { ) d { ~ $# ## { 2 ) $# { ( { { 2 ~ W@ 5 d ) 7- W@ : $# : W@ ## 1 : } b W@ [ 6- ,# 6 } &# $# 6 7 $# } $# 6 7 } &# } o $# 6 3* 9 &# j 9 == 8 7 $# / d a '# e d i $# :& 8 ~# 0 a N' 2* 8 e c n a a ># n 6 2* 0 d V$ 6 _ c ,# 7 6 6 ># V$ &# $# i n o [& ~# 0 6 n h h A~ ~# n i C; c h ~# k e c k n r Y$ 0 a k e c ,# ~# e {# e n C; n a e C; ~# ,# 0 c A~ e 0 0 g e h ~# ~# 8 e a h h c 7 8 0 e ~# c g a 7 j n ~# o 8 e c p g V$ c j a c a e h ~# g 2* h c 7 0 X$ b k ~# e c V$ } c h e j 0 c 7 j ~# 6 V$ C; [& i a A~ 6 $# ~# 7 b ,# 2* 6 ># 0 0 8 Y@ ~# e k c 0 6 0 ,# 6 D, ( $# 6- 5 a 8 ,# i V$ e b &# ~# &# j &# ,# b &# : 7 c a j b =# 6 9 &# $# $# < 7 6 1 1 b $# } a 8 ( 1 7 $# ## d $# &# $# /& ( ( 9 == &# ## <& Y@ 1 < [ ^ 9 ( 1 $# W@ & ; 2! H) s, u, z, z, y, y, y, y, y, y, y, y, z, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, q, . . - Q$ & ' N$ S$ & & Q$ . Q$ & > + . & . $ * . # T@ . . > + ; + $ $ $ + $ ]& ", +"y, u, t, u, ]q. k) $= |* . + = R- R- # Q$ & > & $ Q$ $ $ |* S$ $ ] $ = $ # & & > o! . - 5- Z! H= ~ P$ ] ; N$ N$ ] | S$ S$ ; > > & | W@ ; S$ ~ { |* | ! ; | N$ H= 2 R$ | ) & X@ W@ ~ | X@ *# ] X@ | ] ] Z! | ( { 7- : [ ) 5 W@ { D, } { ~ +# : / [ 4 { 9 $# < 9 / ~ 4 7 b Y@ < 2 ) $# ## < 1 [ : } /& $# &# &# : &# ## ## 7 d 7 &# 6 &# ) /& V$ a $# < 0 ,# ~# $# : 7 b d 7 D, b 6 5 [& $# Y@ { 6 7 $# 6 < D, a e 0 b N' b h o 9- K= ~# ># a 7 b ~# 0 a a c L= o L= k 6 a g ~# ,# C; ~# a b i 0 Q{ c 6! 0 0 a o L= L= n ~# Y$ 6! c 9- n L= i A~ Y> r [& n a e a 0 j 7 ~# g [& c ~# 8 e 2* h 7 g 0 e a V$ ~# n K] L= |& ~# K= n k g e c o ,# 7 ,# e ~# ~# 7 &# ,# 0 b 6 o _# ~# V$ a V$ a n ~# h o ~# i a 6 e ~# n n V$ 6 5 *= ~# Vj 7 a 7 } q> ,# 7 Q{ i a b -# 9 a 8 a g 6 [& ~# 0 b e e ,# L= 0 a {# a 1 c 8 d [ [{ a 7 &# j } ,# ,# 7 $# b 0 ( =# $# ,# ~# 9 $# $# < $# $# 7 &# < $# &# b :& 6 $# } 6 Y@ 9 V$ } < 6 V$ /& /& V$ $# 6 $# [ < &# < $# { { 9 < [ ## ~ *# %= s' v, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, z, y, y, z, u, y, y, y, y, y, y, y, y, x, s, u, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, ^, . + R$ ~ Q$ Q$ > * 1* z] & > & T@ P$ $= $ k) . * * . # # # V@ $ # - * ]& L$ o! > * ", +"y, y, u, t, 7' > ]& S- ]& T@ ] ; & & N$ - ! $= & > - > ] ~ & $ > Q$ k) & = ' Q$ U$ N$ o! | Q$ Q$ ; - N$ N$ R$ ; Q$ > . ; ~ | $ ; A; | 2 X@ ] | U@ N$ ] | 2 ] { W@ / I= 2 ; ^ N$ & ] N$ N$ & ; ( ) 4 } < N$ X@ ) `@ < ) ## ^ } 2 ^ ~ R$ ~ $# 2 [ $# [ < $# X@ $# &# ~# 7 i /& [ j $# ## ;> { [ 7 $# == } : $# ( b a } U- ( V$ a' 7 7 { a 6 == V$ -# %m $# : =# } d ( } e e 7 7 z: 2* $# 5 $# 0 V- c ( Y> c a ~# b ># V) ~# {# *= a a ># 8 c Y> e a A~ a 7 ~# 6 e ># a p 6! a ~# ,# ~# 0- ~# 0 {# ,# h h n c a h a ~# n ~# 6! h !# 6- Z$ 0 L= i i &# q> Y$ e o Q{ c o 6 ~# $# =# a 6 b 7 X$ 8 c e e ~# L= ~# a X$ X$ K/ 6 o 8 ~# X$ b } Y> n a n r L= e V$ 7 b b 0 L= d a ~# 6 6! X$ d j a c h ,# c i a 7 :& 6 i c W$ &# V$ a &# 0 a a n 7 '# $# ># ~# 0 a' &# N' 9 0 -# 7 l n {# 3* ,# ,# 6 7 a' a {# {# L= 7 ,# a $# b b d < =# -# e $# } $# } d D, V$ &# $# =# < i < ## $# 7 $# 7 ) 6 6 [ ( ( 6 $# b 1 d [ a 7 6 6 d } { $# / ( b } &# 6- 2 { $# 4 } -> } [ < { ~ ~ R@ q, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, x, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, 5' U@ $ S$ o! ; - Q$ 0' # o! > | > $ (& ]& . > U@ - 5- ' ]& V@ $ > R- . T@ $ Z, . * $ L$ ]& ", +"y, y, u, t, ]q.]q.]q.{q.7' (q.(q.8' 8' 8' Mp.!q.!q.,q.8' Mp.8' 8' !q.+' Mp.Mp./q. q.Mp.+' Mp.Mp.+' z~ z~ q, +' Mp.Mp.6' q, z~ z~ z~ q, q, z~ q, q, z~ z~ z~ z~ Il.|1 z~ 9i.ah.|1 9| e^ *) 2! 2! |1 5' 2! 98.9| 2^ ^, *) *) <{ <{ `, ^, jP *) 2^ jP I/.J$ J$ J$ jP jP 9i.*) 9| jP I/ BN 2^ J$ ;b L$ R@ ]& I/ I/ L$ ]& 5_ 1) # ]& 0' Dv # + 0' L$ =[ ]& $ ]& ]& V@ > + + # ]& # . l) ]& # > $= $ # ]& $ ]& + & =' . V@ . = . |* + + ^& Q$ - # > ' Z, V@ > = U@ * T@ = - $ T@ $ ] . %= ' & Q$ Q$ > & . & Q$ $ Q$ ; ; T@ ^& ; . ;# ~ *' . |* U@ S$ & . Z! N$ }* H= ; S$ | *# # 7- | > > ; ; & (& - ] 4 ~ { U@ T- N$ ~ ) 2 Q$ g{.$# 2 1 [ 1 1 } : 4 { | Y@ 2 ) } ~ [ / [ Y@ &# } { ) { } 8- ( # *# U- $# 2 ( ~ [ =# $# / | [ } 6 $# } a $# / 4 &# &# -# $# f] $# 7 { ) $# 7 6 < /& ( &# 6 : < ~ } 8 &# ( b 7 { 7 6 a 7 6 ~# 7 } b :& 0 ,# 9 9- 2* b {# [ a i ,# 6 c } d d g h n 7 ~# Y> ,# C; !# ~# e b 8 ~# L= 6- i ~# e c L= ~# [& 7 g ,# a ~# ~# o L= 7 {# ~# b &# X$ |& ~# o 7 6 7 6 a 9- n V$ j e ~# 7 D, ( V$ a b b 6 ~# c g a 6 0 $# } g } ~# c ~# e 6 6 3* 8 !# n a p c c r 0 h h c n a h C; o a c g q> ~# ,# ,# e {# j a c V$ 6 k {# 7 b d d a a a c 7 b a j ~# a 8 &# 6 ~# &# j $# ,# a $# ,# g 3* 6 e ,# ( d ,# V$ j j k 7 ,# b b 7 $# d # } N' < b 6 =# $# 7 &# $# Y@ $# } 6 ,# 5 d ## d @# } j 7 } [ : 4 6 7 { Y@ /& : { $# ( ( : { { ; $# [ V$ ( 4 [ ( ## { ) X@ { . q, s, u, y, u, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, u, y, u, u, y, u, z, y, y, y, y, y, s, x, V! ] . R$ ] o! > $ * > . = Q$ > Z, = . > & Q$ k) $ N$ . $ = + 0' $ . $ = + + > . + ", +"y, y, y, u, ]q. + ]& $ V@ ' $ R@ ]& . = $ . U@ $ * # Z, . T@ V@ + $= Q$ 0' + > & $ * S$ T@ o! * * = . $ > 0' Q$ U@ $ & . $ Q$ }* & . Z, + Q$ ]& $ ; S$ ' ; & ; ^& H= ~ T- ' N$ | T@ P$ | | ~ ~ ; [ < ) ( | ) ), & *' | ] ; & | ; | ^ ~ ~ ~ ) 1 2 8- 2 2 ~ /& - ^ 1 [ { ( ; [ | [ 2 ~ 6 d { ) W@ | a [ : : T$ ## W@ / 2] $# } 7 { $# ## [ } { 2 : 6 { } $# _ ) d a 8 } 6 g ( $# 2 $# $# $# [ 7 $# } ## $# [ d &# < -# 7 } $# ( } $# 7 a :& 9 ( $# $# e a 6 c e j ~# e e 3] ,# a ># 6 6 j *= a ~# d i 0 0 a k ~# L= ~# a V$ &# ( a c e L= a n ~# J] L= e a ~# tA n ~# a' ~# d b 7 D, 7 *= a ~# c 7 ,# 6 ~# 7 e 6 $# a' c 7 7 6 6 l Y> ,# o i 0 k ;= e Y@ e j 7 h 7 7 0 7 8 n W$ *= ~# F! c a n [& i b 0 0 V- e ~# e F! 0 *= e ,# c c q> c d c [& a a ,# 7 7 7 j a 6 6 ,# 1 ,# ~# 8 &# &# h [& ,# e a 6 7 i ~# j 0 ( &# &# 6 ># Y@ ( b 7 / &# Q{ 7 7 3* q> d -# $# 7 &# } &# $# } &# ( 5 < 1 U- a [ } &# < } &# I= < b 7 } ( $# } } } : { 9 : 1 -# ( $# ## : ~ { 2 $# 1 } 2 4 ) 2 | d / [ { [ { { ## ; `, s, y, u, x, 7' x, y, x, x, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, z, y, y, x, u, x, y, y, y, y, y, y, y, y, u, r, + ; N$ N$ > . $ ]& T@ . Q$ ' > > + V@ Z, $ ' = + L$ > $ = . . . * = * $ # * $ Q$ # ", +"y, y, y, u, 7' = ]& }, $ L$ + # + V@ . ]& # + = |* $ . - [* Z, > Q$ - ]& [* # $ . # $ Q$ . U@ H= |* & | $ (& # $ ; - > + ' ; Q$ * * . ; S$ U@ H= & Q$ ; ; P$ Q$ Q$ > S$ Q$ ^ 4 { > ~ { | ] U@ ~ ; & ) & . & N$ W@ ] & ~ [ W@ Z! U$ N$ X@ > N$ N$ -.1 ) ) { | } < ~ ~ | N$ ) 2 W@ [ ## { / W@ Z@ 2 / W@ [ ) ## } 4 +# 1 { / ## -# < -# : $# < $# ## [ / $# $# *# 5 &# $# 5 1 { < ## 6 =# [ *# ( ) ## < -# < < [ ## &# V- } $# V$ b V$ &# 6 7 < 6 7 6 d x0 ## a e b N' ## a 6 9 6 6 7 ,# 7 b &# ,# 6 !# r 0 L= a 0 L= ,# ~# 8 6 g s> n {# {# a ~# 6 9 ~# ~# -# q> 5 V$ b k k d a 6 } $# b 7 7 e ,# n a ~# d a e a ~# V$ i e e 0 c a 0 c } L= a L= e e ~# d -# *= i j L= L= n j i V$ 8 &# ## 2* 6 g Q{ a j vk ~# 8 e $# 6 6 l d $# b b 6 q> ,# vk 9 9 i 7 Y$ L= 9 a 0 0 7 a ># b 6 ( 7 ,# 0 ~# 6 9 e a' a 6 A~ $# 0 ,# 6 8 &# d b 6 b } d 7 7 < { 6 [ 4 b } $# [ } 7 == ( /& ( 6 { } g &# e 7 } < } } =# } &# 7 2 [ < [ } < { [ Y@ } { Y@ d Y@ [ ## ~ : [ } ## { ## $# ( 2 ## 4 P$ { /& { < X@ ~ 2 q, }) x, y, y, t, x, y, x, t, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, y, y, y, y, y, y, y, y, y, y, y, y, y, 8' u, z, y, y, y, y, y, y, y, t, y, y, y, y, u, s, u, y, z, y, y, x, M$ > Q$ $ & $ + # * R- Z, & . = * . ' . k) . . $ Z, $ !, + L$ # = ]& * $ + Z, $ p9 $ ", +"y, y, y, y, 8' ]q. = . V@ $ $ . 0' .( $ $= & ' Z, + ]& > $ . & > . X! # T@ . - R$ ~ - . . . ,Q ] - o! ^ ; $ $ . ; k) . V@ ; ; > > ' ; S$ S$ 2 | | N$ | ) ; ] ] ] `@ ~ ; ^& H= & | ; > ^ J= 2 - { ( ) ] | 2 X@ N$ 2 N$ | ] & ) ] Z! 2 ) ) | ^ 2 1 ,# 1 ## { ) [ 7 { [ D, ~ | < { T$ ( 2 { D, ;# } b ( &# } } { J= [ [ a } ~ $# 6 1 ^ $# $# W@ 5 7 d { ( ## 1 @# : ( J= $# } } &# } -# } -> $# } 6 } } $# { } V~ } d 6 6 6 ~# a } g 7 b e 6 7 ( a ( e b a a 7 0 a e 9- {# e 9 {# a a' d $# a' 7 $# g 7 ,# $# ,# X$ 9 0 c j 7 ~# a X$ -# b &# Q{ [& 7 a e ># a d a n a W$ V$ ,# g 0 0 7 {# j &# {# L= a ~# ~# 8 a' a 2* i b e a 8 a k ~# 7 X$ h *= ~# 7 e [& 8 j c 6 a 0 c 8 6 e a i 8 L= ~# d &# d ,# ,# 0 a e X$ k 6 7 e 5 $# 6 6 ,# a 9 5 +# -# a } &# $# a 6 6 7 6 < ~# } d e &# $# 8 L= $# 6 6 ## &# 8 $# 1 &# } &# a } 7 &# a' j 9 :& $# ( [ &# 7 J= 7 V- < ( 7 $# < d ( ~ *# } ( Y@ ( Y@ == 7 { 6 } 1 7- : } { 1 [ 2 } } { } { 2 *# < [ < 2 < d *# 2 ) | R@ s, u, y, u, y, y, y, y, y, u, z, u, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, u, u, y, y, y, u, 6' # . ; ]& Q$ Z, & . Z, T@ $ ] . Z, > . > ; & ; > $= ]& . . & + + l) $ ]& 0' . X! ]& $ $ ", +"y, y, y, y, 7' 7' ; > > ; U$ ^& ! N$ *# N$ 5- & ; | ] - ; ! { ## N$ [ 2 Z! P$ N$ N$ ^ S$ [ } ; R$ ! ) Y@ Y@ : { { d { ~ } [ : ,# ( Y@ $# { ~ 1 /& [ { [ N$ Y@ { ## $# 2 $# ## { $# ( ( 9 :& 6 J= [ ) 2 ~ &# =# } 6 -# V) 9 6 7 V$ Y@ X@ ## b { 4 6 e b b } ( -# } -# b 6 L= 6 i 9 ,# D, 9 : ~# } /& Y> { 5 d -# ,# b &# 7q.6 } b } => c Y> c e [& j 8 c6 k 0 $# g n i 0 9 a 0 a ># 7 ># ~# a 0 a ~# d 0 i L= b n ,# X$ -# 7 0 {# 0- L= h 7 g d b %# 6 ~# e e 6 0 3] i a [& h =# V$ X$ 0 V$ ~# ~# 7 g i 7 $# $# 7 n 7 V- j W$ a 6 -# $# 7 6 7 i i $# $# } ~# 7 8 a 6 k ,# ~# V$ 6 a $# 6 a V$ a ,# b == } a $# : &# == 7 V$ 7 6- 7 a &# &# 6 7 6 V$ 1 : [ 8 V$ } ,# 6 9 6 V$ =# &# ,# } $# &# i $# a 6- < b 9 9 $# a ## ( V$ ( $# &# V$ ( [ ( ( ( ( V$ [ } } a ( /& 2 : { : 6 } < { | [ 2 ) < { $# d } { ~ { ) ) ~ ## 2 2 | { ; ) ~ U$ G= s, s, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, u, y, y, u, y, u, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, x, u, u, s, u, s, y, y, 6' . + ; - . V@ T@ U) T@ T@ 0' . ]& = . ' S$ ; > S$ . & ' H= Q$ = # Q$ V@ . T@ $ $ Z, = ]& ]& ", +"y, y, y, y, ]q.8' |* = Q$ ; ; ; ] ] & N$ Dv & $ ^& !, $ %= & o! . V@ . - %= > $ | N$ & 4 ] ; 2 N$ 2 ^ ~ g{.X@ N$ ] X@ | U@ ^ ~ U@ W@ W@ ) > | g{.| ~ [ ] > H= ^ ~ ; d ( 2 W@ ~ ) ~ ## ( } : { < J= 4 W@ $# 2 2 { $# W@ } $# Y@ W@ g{.6 { } { 2 { / -# &# [ ~ & ) 6 /& ~ { < '# : W@ &# $# 9 } $# } ( < 6 : } *= b 7 i ( : 7- d 6 i j a d d d b $# { [ d 0 a &# < ( d 6 $# 6 D, $# J= 0 9 } ~# 8 6 a D, 7 6 j M' 3] 6 n 6 ,# ~# C; ,# e e A~ &# b j 0 a ,# a 6 V- 7 0 a tA c 7 &# $# i a ~# ,# 6 &# &# 8 8 q> 6 0 d L= $# b 6 8 *= n b b a 7 } 7 i -# 6 e i ,# &# 8 d 8 6 7 ~# } } 2* a ,# 7 ,# d 7 9 7 a g 6 6 d 0 6 ,# } a a a U- } k } ,# a == ( a d $# $# a == 6 $# 8 &# &# 6 a' } } 7 &# 6 ~# e g ,# _ +# 6 :& -# : i &# } $# : } { } b b J= , 6 J= < ## [ ( < 7 $# } $# _ ## / $# a $# ## == | *# *# ## } d < < { *# 7 [ ( X@ 2 } Y@ /& [ { { / [ { < { } 1 : } < X@ Z! ~ 2 ## | %= > r, A, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, u, y, z, z, y, x, y, u, s, y, y, y, y, s, x, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, s, y, x, )~ . > & > !, V@ > # > Y! 0' # & T@ & $= . * # $ + Z, $ $ Q$ = . . # M$ ]& + . $ $ = = ", +"y, y, y, y, z, !q.!q.]q.]q.]q.2q.]q.(q. # # $= |* . = > V@ $ $= $ ]& # > * * #^ + > + + + ' T@ > + * T@ = . = - Q$ . . - o! Q$ + T@ S$ ; > Q$ * & & Q$ > U@ & - > (& > $ > U@ & & H= S$ N$ { U$ ] 2 { 2 R$ H= & U@ ; ; ; ~ ] { 4 ] ] ) ^& | | N$ ~ N$ ] ] *# | ) { ] d 4 4 } ~ ~ ) [ T- ) , W@ ## &# ~ ] W@ ( 4 q> ( `@ < { | [ [ N$ ) 2 { $# ( ## *# /& $# *# 1 b &# $# : [ ## ( $# ( 8 $# 7 6- ## ( ( } &# ( b 8 7 &# } ## : } d 6 d d a &# ## 2 9 b [ 6- D, a 6 V$ 0 Y> *# } ,# 6 b a e 6 J] 7 e a a ~# ,# ~# i ~# L= $# 7 ># a Y> i k d d ,# 0 a 3] M' 6 -# e $# ># *= 6 $# 8 ~# a 8 : 9 ~# ,# 3* a 6 [ } 7 L= ~# ># 7 6 $# } < $# 9 ~# [{ 9 b e 7 g 7 ~# &# 3* {# &# n 7 6 c a ,# } < 4 d g 8 ,# 7 Y> 1 9 ( } ,# V$ b ,# 9 ,# b } ,# g a ,# 0 ># J= ,# $# e 7 b 7 j $# } 6 $# &# b $# $# 6- 8 $# } 6 b a Y> 0 b $# ,# &# :& a 4 : } $# V$ $# < ~ &# $# -# 6 { } +# < : 6 6 ## &# ( d } ~ } :& } } ( 6 / ) { $# [ ## *# ( ) [ d { [ g{.< 6 2 { } X@ $# } : ~ { T- | ~ ~ : [ ~ ( ## Y> ~ ) ^ %= ## { & 6' w, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, u, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, y, s, s, v, @ T@ Q$ {c > Q$ > > - * }* . . $ $ $ = $ . $ $ Q$ . ' $ & * $ M$ ]& . = + Z, ]& ]& L$ = ", +"y, y, y, y, 6q.9q.(q.]q. # 0' V@ + # + ]& $ $ 5_ . S$ . + !, # = V@ 1* S$ ' # L$ + # > V@ * . - ]& * ]& . . # ]& + - * $ ; ' $ Q$ ; > Q$ - & o! T@ . - ; > 5- o! %= ; N$ | & | > & *' H= > | = ] ; | ] ^& { aq.H= H= & N$ ; > ] [ `@ X@ ) ^ ^ & < 4 S$ 2 N$ N$ ; ] ; `@ ) [ 2 ~ ) ^ [ W@ [ [ Y@ $# 2 } ) %# { *# [ [ Y@ / ) | W@ ] ~ T$ < [ | ] { +# } [ _ } +# ( [ < / [ : W@ ) +# | *# ## } 2 [ { b -# } b =# } <& 9 -# : / { d ## ## { 7 ## $# ( 9 $# d } Y> V$ 9 o i ( b e 9 /& ( Y@ 0 6 6 $# == 0 [ } ## V~ a d k ,# 7 ># Y@ 7 / ,# k ## 1, ~# 0 c 6! i a' ,# ,# $# h 7 ~# k 4 } 6 '# $# ,# : Y> 6! 6 0 } &# $# a Y@ &# g ~# $# 6 a =# ( c c i $# $# ## ## 6 7 7 J= < 7 j : 7 e e 8 ,# X$ 7 6 :& -# e a 6 6 a 0 [& < d 6 &# -# a < d -# : 9 5 7 6 b a 7 a a } 9 6 ,# a } < &# &# $# a b V$ $# == } ## } b ,# &# n } &# } == < < [ { d $# 9 d < [ 1 0 -# $# | $# 6 $# &# b 7 &# } $# : 9 Y@ 6 $# < { } 6 Y> 1 &# < [ { $# -# *# / ## [ ) { { 2 : d [ N$ $# < | Z! W@ [ | < { { H= N$ ~ { ) H= ) ; 2 d ! ^ `, r, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, x, s, > }* . . S$ . # & $ # = X! Z, . ]& = . $ # R@ V@ . S$ V@ # M$ ]& ]& V@ ^& * + + M$ Z, = 0' ", +"y, y, y, y, z, . # $ * $ = U$ ; = * = = . . = . . . $ = * - Q$ # . = $ U@ ' - . & - # ; & S$ - U@ 0' . | & > . `@ $ ] A; . & N$ H= | * Q$ ; . ; ' & Z@ ~ ; - ] & A; S$ & U@ H= ) T- & ] |* ] U$ A; | ! ^ ; X@ { P$ ; ~ ~ ) 1 | ~ ] | ^ `@ | 6 ~ Q$ ] 2 | 4 / { ] ( W@ 7 ~ ( { | ;# $# 2 { < W@ [ X@ [ { [ [ ) : ) ) 7 $# | $# : 2 } ## X@ :& 6 *# : [ < } } $# a : N' ( } { 3* $# V$ a &# 8- 7 b 6 ( } } 6 &# 6 9 a } 7 ,# 6 9 q> } 6 e $# / $# 6 a a ( 8 6 $# b d b ,# ,# 6 == a ,# q> 7 } 9 0 3] 7 k 7 $# &# ~# b d 6 7 6 3* 6 a j $# a ~# b k k $# 6 ,# 6 6 7 } b a ~# -# V$ Y> -# b $# } 6- 6 == a 6 6 ,# ## 6 $# 7 7 7 7 ~# 8 d 6 -# e 7 d g } 1 k X$ d ># b a a [& ( a &# < } Y@ } 5 U- Y> 5 6 $# $# a g } e $# == a $# : 7 k 7 a } [ 7 7 6 7 &# 6 $# $# $# $# $# [ $# : a } -# 9 [ : /& d < 6- $# $# [ $# : $# $# Y@ { -# =# $# : /& [ X@ / < ## < 3 : } 2 / &# } ^ < 1 W@ ) } X@ W@ 1 .# } : ) ] 2 X@ ) | ) } 2 ) | ~ { ) ~ 2 ~ ] 2 ~ X@ 4 | W@ ^, v, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, s, v, R@ = ^& . Dv $ X! - S$ . > . * V@ . & [* > $ Q$ > # > $ L$ k) # L$ 0' . # p9 . ]& + $ Z, ", +"y, y, y, y, z, ]q.7' (q.]q.]q. V@ = = T@ . 0' . T@ . X! # # = . & # = * Z, 0' = > $ [* T@ > o! !, > & = U@ $ o! ~ U@ V@ T@ | - k) Z3 N$ H= & ' ' | %= H= 2 ~ ^ & H= U$ S$ S$ U@ U@ |* > N$ & > & U@ ] X@ ^ 2 | | ; 2 - [ ; H= 2 U@ | | | X@ ^ ~ ^ N$ ~ ^ /& ( | - ) 2 N$ ~ %# } | *# b } { { | / ^ ) } 1 { [ { } [ ~ [ 6 *# ## $# } { [ { 2 ## | ~ { { 6 6 W@ ( ## ## ~ [ 2 < } 2 e } Y@ +# / 6 6 ( { &# b b 6 1 ( 9 9 7 7 $# 6 d e D, 6 ~# 7 } 7 9 9 i 0 g } $# 6 ># ># i ,# e a b ## $# d ,# 6 ,# 6 bq.0 c a 1 b Y@ ,# k ,# 3] ,# a ># a ,# e -# ## 1 e 7 7 a -# } 6 ~# 6 ,# i } &# 8 c [ a 7 a a d -# e a e 7 8 ~# d i b a ,# i ,# g $# -> } 0 d } $# $# d 7 ,# 7 == Y> V$ 9 } $# 6 a } b ( ~# ## d c a $# ( /& 6- J= 7 [& 6 a [ 7 $# 6 / D, { 9 b } 6 7 1 &# b ,# &# [ } ## &# 7 5 $# 7 7 : { ## [ d | [ ( ## } V$ ( < b ## [ J= == d 2 ~ ## < { } 2 } 7 { R$ | ( < ) ~ { 2 ## ## { [ ~ / } 1 ( ~ ~ N$ [ < [ ^ } ~ /& U@ | H= X@ : ## 2 R$ H= 2 ~ 2 | X@ 6 =) q, y: y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, u, y, y, y, y, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, s, R@ * * ; | Q$ k) [* > ' & . = . & # . . Z, . . = M$ ]& J$ L$ I/ + = # # ]& * ]& ]& = ]& R@ "}; diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/welcome.png b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/splash/welcome.png differ diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-17/16865021501.desktop b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-17/16865021501.desktop new file mode 100644 index 0000000..5daa0c8 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-17/16865021501.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch TerminalEmulator +Icon=org.xfce.terminalemulator +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-AppStream-Ignore=True +Name=Terminal Emulator +Comment=Use the command line +X-XFCE-Source=file:///usr/share/applications/xfce4-terminal-emulator.desktop diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-18/16865021502.desktop b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-18/16865021502.desktop new file mode 100644 index 0000000..b6dd1b5 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-18/16865021502.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch FileManager %u +Icon=org.xfce.filemanager +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=inode/directory;x-scheme-handler/trash; +X-AppStream-Ignore=True +Name=File Manager +Comment=Browse the file system +X-XFCE-Source=file:///usr/share/applications/xfce4-file-manager.desktop diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-19/16865021503.desktop b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-19/16865021503.desktop new file mode 100644 index 0000000..96042ba --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/launcher-19/16865021503.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch WebBrowser %u +Icon=org.xfce.webbrowser +StartupNotify=true +Terminal=false +Categories=Network;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https; +X-AppStream-Ignore=True +Name=Web Browser +Comment=Browse the web +X-XFCE-Source=file:///usr/share/applications/xfce4-web-browser.desktop diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/whiskermenu-7.rc b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/whiskermenu-7.rc new file mode 100644 index 0000000..2cf1948 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/panel/whiskermenu-7.rc @@ -0,0 +1,89 @@ +favorites=xfce4-web-browser.desktop,xfce4-mail-reader.desktop,xfce4-file-manager.desktop,xfce4-terminal-emulator.desktop +recent= +button-title=Menu +button-icon=emblem-debian +button-single-row=false +show-button-title=true +show-button-icon=true +launcher-show-name=true +launcher-show-description=false +launcher-show-tooltip=false +launcher-icon-size=2 +hover-switch-category=true +category-show-name=true +category-icon-size=1 +sort-categories=true +view-mode=2 +default-category=0 +recent-items-max=0 +favorites-in-recent=true +position-search-alternate=true +position-commands-alternate=true +position-categories-alternate=true +position-categories-horizontal=false +stay-on-focus-out=false +profile-shape=0 +confirm-session-command=true +menu-width=479 +menu-height=500 +menu-opacity=100 +command-settings=xfce4-settings-manager +show-command-settings=true +command-lockscreen=xflock4 +show-command-lockscreen=true +command-switchuser=dm-tool switch-to-greeter +show-command-switchuser=false +command-logoutuser=xfce4-session-logout --logout --fast +show-command-logoutuser=false +command-restart=xfce4-session-logout --reboot --fast +show-command-restart=false +command-shutdown=xfce4-session-logout --halt --fast +show-command-shutdown=false +command-suspend=xfce4-session-logout --suspend +show-command-suspend=false +command-hibernate=xfce4-session-logout --hibernate +show-command-hibernate=false +command-logout=xfce4-session-logout +show-command-logout=true +command-menueditor=menulibre +show-command-menueditor=true +command-profile=mugshot +show-command-profile=true +search-actions=6 + +[action0] +name=Man Pages +pattern=# +command=exo-open --launch TerminalEmulator man %s +regex=false + +[action1] +name=Search the Web +pattern=? +command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u +regex=false + +[action2] +name=Search for Files +pattern=- +command=catfish --path=~ --start %s +regex=false + +[action3] +name=Wikipedia +pattern=!w +command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u +regex=false + +[action4] +name=Run in Terminal +pattern=! +command=exo-open --launch TerminalEmulator %s +regex=false + +[action5] +name=Open URI +pattern=^(file|http|https):\\/\\/(.*)$ +command=exo-open \\0 +regex=true + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/displays.xml new file mode 100644 index 0000000..0dc41fc --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/displays.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml new file mode 100644 index 0000000..9ddc443 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/thunar.xml new file mode 100644 index 0000000..ff26405 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/thunar.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml new file mode 100644 index 0000000..e72def1 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml new file mode 100644 index 0000000..d7ea804 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml new file mode 100644 index 0000000..5865d01 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml new file mode 100644 index 0000000..8c0f72f --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml new file mode 100644 index 0000000..4fdf554 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml new file mode 100644 index 0000000..8346363 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml new file mode 100644 index 0000000..c1d4b3c --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml new file mode 100644 index 0000000..e139250 --- /dev/null +++ b/eznixOS12Xdev-calamares+debian-installer/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/BldHelper.sh b/eznixOS12Xdev-calamares/BldHelper.sh new file mode 100755 index 0000000..6bdf8b9 --- /dev/null +++ b/eznixOS12Xdev-calamares/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12Xdev +SUFFIX=amd64 +BUILD=eznixOS12Xdev +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12Xdev" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12Xdev.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12Xdev-calamares/bldeznix12Xdev.sh b/eznixOS12Xdev-calamares/bldeznix12Xdev.sh new file mode 100755 index 0000000..e714331 --- /dev/null +++ b/eznixOS12Xdev-calamares/bldeznix12Xdev.sh @@ -0,0 +1,387 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up eznixOS environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution daedalus \ + --archive-areas "main contrib non-free non-free-firmware" \ + --initsystem sysvinit \ + --mirror-bootstrap http://deb.devuan.org/merged \ + --mirror-chroot http://deb.devuan.org/merged \ + --mirror-chroot-security http://deb.devuan.org/merged \ + --parent-mirror-bootstrap http://deb.devuan.org/merged \ + --parent-mirror-binary http://deb.devuan.org/merged \ + --parent-mirror-binary-security http://deb.devuan.org/merged \ + --parent-mirror-chroot http://deb.devuan.org/merged \ + --parent-mirror-chroot-security http://deb.devuan.org/merged \\ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application eznixOS12X \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +## Add extra firmware packages +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $eznixOS12X/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12Xdev/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.binary/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/sbin + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12Xdev $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12Xdev/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12Xdev/bootloaders/* $eznixOS/eznixOS/config/includes.binarye + +cp $eznixOS/eznixOS12Xdev/sources-calamares/* $eznixOS/eznixOS/config/includes.chroot/usr/sbin +cp $eznixOS/eznixOS12Xdev/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12Xdev/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12Xdev/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12Xdev/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12Xdev/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12Xdev/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12Xdev/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12Xdev/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12Xdev/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12Xdev/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d + +# Uncomment below line if you have packages in the misc64 folder to include: +cp $eznixOS/eznixOS12Xdev/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/BldHelper.sh b/eznixOS12Xdev-calamares/eznixOS12Xdev/BldHelper.sh new file mode 100755 index 0000000..6bdf8b9 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/BldHelper.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +################################################################################ +# BldHelper.sh -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) +################################################################################ + +# Set environment variables +PREFIX=eznixOS12Xdev +SUFFIX=amd64 +BUILD=eznixOS12Xdev +TODAY=$(date -u +"%Y-%m-%d") +FileName="${PREFIX}-${SUFFIX}" +LOCATION="/home/$SUDO_USER/out/${BUILD}" +LogDir="/home/$SUDO_USER/logs" +WorkingDir="/home/$SUDO_USER/eznixOS12Xdev" + + +# Execute the ISO building script +cd ${WorkingDir} +./bldeznix12Xdev.sh 2>&1 | tee /tmp/build_log.txt + +# Move and rename the ISO file +cd eznixOS +mv *.iso ${FileName}-${TODAY}.iso + +# Create the checksum file for the ISO +sha512sum ${FileName}-${TODAY}.iso > ${FileName}-${TODAY}-sha512.checksum + +# Remove old ISO and checksum files from the desired location +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum + +# Move the ISO and checksum files to the desired location +mkdir -p ${LOCATION} +mv ${FileName}-${TODAY}.iso ${LOCATION} +mv ${FileName}-${TODAY}-sha512.checksum ${LOCATION} + +# Move the log file to the log directory (if it exists) +if [ -f /tmp/build_log.txt ]; then + LogFileName="${PREFIX}-${SUFFIX}-${BUILD}.log" + mv /tmp/build_log.txt ${LogDir}/${LogFileName} +fi + +# Clean the build folder +lb clean + +# Remove the "build" directory and its contents +cd .. +rm -rf eznixOS + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/black_hex_orange.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/black_hex_orange.jpg new file mode 100644 index 0000000..187a921 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/black_hex_orange.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/blue_purple_hex.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/blue_purple_hex.jpg new file mode 100644 index 0000000..04a5201 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/blue_purple_hex.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/bridge_water.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/bridge_water.jpg new file mode 100644 index 0000000..f3bb758 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/bridge_water.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/cloud_lake_peaks.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/cloud_lake_peaks.jpg new file mode 100644 index 0000000..8a8ba6c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/cloud_lake_peaks.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/clouds_water.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/clouds_water.jpg new file mode 100644 index 0000000..7263320 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/clouds_water.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/darklave.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/darklave.png new file mode 100644 index 0000000..c4e792d Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/darklave.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/darknight.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/darknight.png new file mode 100644 index 0000000..d2a5a3b Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/darknight.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/desert_rock_lake.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/desert_rock_lake.jpg new file mode 100644 index 0000000..f9c6a0f Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/desert_rock_lake.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/fall_lake.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/fall_lake.jpg new file mode 100644 index 0000000..07e303c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/fall_lake.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/fall_waterfall.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/fall_waterfall.jpg new file mode 100644 index 0000000..ba9a718 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/fall_waterfall.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/forest_stream.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/forest_stream.jpg new file mode 100644 index 0000000..3d40d1d Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/forest_stream.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/gold_pond_falls.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/gold_pond_falls.jpg new file mode 100644 index 0000000..d611d4e Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/gold_pond_falls.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/gray_lake_clouds.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/gray_lake_clouds.jpg new file mode 100644 index 0000000..b450a9e Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/gray_lake_clouds.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_abstract.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_abstract.png new file mode 100644 index 0000000..1b1b810 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_abstract.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_rock_falls.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_rock_falls.jpg new file mode 100644 index 0000000..0130003 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_rock_falls.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_waterstream.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_waterstream.jpg new file mode 100644 index 0000000..d188d0a Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/green_waterstream.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/icy_lake.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/icy_lake.jpg new file mode 100644 index 0000000..d823847 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/icy_lake.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lake_powell.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lake_powell.jpg new file mode 100644 index 0000000..e8bca8f Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lake_powell.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lakerocks_clouds.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lakerocks_clouds.jpg new file mode 100644 index 0000000..6b2184e Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lakerocks_clouds.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lakeside.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lakeside.png new file mode 100644 index 0000000..49b60dc Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lakeside.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lavalamp.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lavalamp.jpg new file mode 100644 index 0000000..527bc61 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lavalamp.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lavalamp.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lavalamp.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/lavalamp.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/mirror_lake_boats.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/mirror_lake_boats.jpg new file mode 100644 index 0000000..8c69917 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/mirror_lake_boats.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/mountains_water.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/mountains_water.jpg new file mode 100644 index 0000000..a2121f9 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/mountains_water.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature002.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature002.jpg new file mode 100644 index 0000000..b9aa8d2 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature002.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature003.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature003.jpg new file mode 100644 index 0000000..c55aba8 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature003.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature005.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature005.jpg new file mode 100644 index 0000000..d4288cc Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature005.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature009.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature009.jpg new file mode 100644 index 0000000..bf31052 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nature009.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nightbefore.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nightbefore.png new file mode 100644 index 0000000..33486f6 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/nightbefore.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/reflection_canyon.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/reflection_canyon.jpg new file mode 100644 index 0000000..bab3d34 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/reflection_canyon.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/short_waterfall.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/short_waterfall.jpg new file mode 100644 index 0000000..0bfc40e Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/short_waterfall.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/snow-peaks.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/snow-peaks.png new file mode 100644 index 0000000..c4cdf08 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/snow-peaks.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/snowy_lake.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/snowy_lake.jpg new file mode 100644 index 0000000..e27b707 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/snowy_lake.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/theway.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/theway.png new file mode 100644 index 0000000..a2b4f41 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/theway.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/tree_lake_peaks.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/tree_lake_peaks.jpg new file mode 100644 index 0000000..254972a Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/tree_lake_peaks.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/trees_lake.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/trees_lake.jpg new file mode 100644 index 0000000..38c1964 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/trees_lake.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/trees_waterfall.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/trees_waterfall.jpg new file mode 100644 index 0000000..84908be Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/trees_waterfall.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/underwater_rocks.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/underwater_rocks.jpg new file mode 100644 index 0000000..321551c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/underwater_rocks.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/water_mountains.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/water_mountains.jpg new file mode 100644 index 0000000..cc913fa Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/water_mountains.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfall_lake.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfall_lake.jpg new file mode 100644 index 0000000..eb8a61e Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfall_lake.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfall_logs.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfall_logs.jpg new file mode 100644 index 0000000..69d8361 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfall_logs.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls003.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls003.jpg new file mode 100644 index 0000000..c492115 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls003.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls005.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls005.jpg new file mode 100644 index 0000000..fcf280a Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls005.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls014.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls014.jpg new file mode 100644 index 0000000..121fcc8 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls014.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls015.jpg b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls015.jpg new file mode 100644 index 0000000..e474383 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/backgrounds/waterfalls015.jpg differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bldeznix12Xdev.sh b/eznixOS12Xdev-calamares/eznixOS12Xdev/bldeznix12Xdev.sh new file mode 100755 index 0000000..e714331 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bldeznix12Xdev.sh @@ -0,0 +1,387 @@ +#!/bin/bash + +################################################################################ +# bldeznix12X -- Revision: 12X -1 -- by Manuel rosa +# (GNU/General Public License version 3.0) + +# Step by Step Live-build +################################################################################ + +PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH" + +# Set the working folder variable +eznixOS="$(pwd)" + +# Create the eznixOS folder, move into it removing stale mountpoints and files there. +[ -e eznixOS ] && [ ! -d eznixOS ] && rm -f eznixOS || [ ! -e eznixOS ] && mkdir eznixOS +cd eznixOS +umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null + +# Set up eznixOS environment + +lb config \ + --binary-images iso-hybrid \ + --mode debian \ + --architectures amd64 \ + --linux-flavours amd64 \ + --distribution daedalus \ + --archive-areas "main contrib non-free non-free-firmware" \ + --initsystem sysvinit \ + --mirror-bootstrap http://deb.devuan.org/merged \ + --mirror-chroot http://deb.devuan.org/merged \ + --mirror-chroot-security http://deb.devuan.org/merged \ + --parent-mirror-bootstrap http://deb.devuan.org/merged \ + --parent-mirror-binary http://deb.devuan.org/merged \ + --parent-mirror-binary-security http://deb.devuan.org/merged \ + --parent-mirror-chroot http://deb.devuan.org/merged \ + --parent-mirror-chroot-security http://deb.devuan.org/merged \\ + --updates true \ + --security true \ + --backports true \ + --cache true \ + --apt-recommends true \ + --firmware-binary true \ + --firmware-chroot true \ + --win32-loader false \ + --iso-application eznixOS12X \ + --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ \ + --iso-volume "eznixOS12X" \ + --image-name "eznixOS12X" \ + --checksums sha512 \ + --zsync false \ + --clean \ + --color \ + "${@}" + + +# Install desktop and applications +mkdir -p $eznixOS/eznixOS/config/package-lists +echo " +accountsservice +arc-theme +asunder +atril +breeze-gtk-theme +breeze-icon-theme +dconf-cli +galculator +geany +gnome-keyring +gnome-nettool +gnome-system-tools +greybird-gtk-theme +gthumb +guvcview +gvfs-backends +gvfs-fuse +light-locker +lightdm +lightdm-gtk-greeter +lightdm-gtk-greeter-settings +mousepad +network-manager-gnome +network-manager-openconnect-gnome +network-manager-openvpn-gnome +numix-gtk-theme +pavucontrol +pulseaudio +remmina +simple-scan +system-config-printer +tango-icon-theme +transmission-gtk +xarchiver +xfce4 +xfce4-goodies +xfce4-power-manager +xfce4-terminal +xscreensaver + +" >> $eznixOS/eznixOS/config/package-lists/desktop.list.chroot + +echo " +aisleriot +alsa-utils +apt-transport-https +audacious +audacious-plugins +autoconf +automake +bleachbit +btrfs-progs +build-essential +cdtool +cdrdao +cdrskin +cifs-utils +clonezilla +cryptsetup +cryptsetup-initramfs +cups +cups-filters +curl +dbus-x11 +debconf +debhelper +dh-autoreconf +dialog +dirmngr +dkms +dos2unix +dosbox +dosfstools +dvdauthor +exfatprogs +faac +faad +fakeroot +ffmpeg +filezilla +firefox-esr +flac +foomatic-db +foomatic-db-engine +frei0r-plugins +fuse3 +gdebi +ghostscript +gimp +gir1.2-ibus-1.0 +gnome-disk-utility +gparted grsync +grub-pc +gstreamer1.0-plugins-bad +gstreamer1.0-plugins-ugly +gstreamer1.0-plugins-good +hardinfo +haveged +hplip-gui +htop +hunspell-en-us +hyphen-en-us +ibus +ibus-data +ibus-gtk +ibus-gtk3 +iftop +im-config +inxi +isolinux +iw +jfsutils +keepassxc +lame +less +libegl1-mesa +libibus-1.0-5 +libgl1-mesa-glx +libqt5opengl5 +libreoffice-calc +libreoffice-draw +libreoffice-impress +libreoffice-writer +libreoffice-gtk3 +libreoffice-help-en-us +libnss-mdns +libsmbclient +libxcb-xtest0 +libxvidcore4 +linux-headers-amd64 +live-build +lsb-release +lshw +meld +mencoder +menu +mjpegtools +mpg321 +mpv +mtools +mythes-en-us +neofetch +netcat-openbsd +ntfs-3g +nvidia-detect +openconnect +openvpn +os-prober +p7zip-full +p7zip-rar +papirus-icon-theme +pciutils perl +plymouth +plymouth-label +plymouth-themes +plymouth-x11 +policykit-1 +printer-driver-gutenprint +python3-ibus-1.0 +rar +samba-common-bin +simplescreenrecorder +smbclient +smplayer +smplayer-l10n +smplayer-themes +soundconverter +sox +squashfs-tools +streamripper +sudo +synaptic +syslinux +syslinux-common +testdisk +timeshift +twolame +udisks2 +upower +unrar +unzip +webext-keepassxc-browser +wget +x11-common +x265 +x264 +xauth +xclip +xdg-utils +xfsprogs +xorg +xserver-xorg-input-all +xserver-xorg-video-all +xorriso +xterm +zip +zstd +zulucrypt-gui +zulumount-gui + +" > $eznixOS/eznixOS/config/package-lists/extrapackages.list.chroot + +## Add extra firmware packages +echo " +atmel-firmware +bluez-firmware +firmware-linux-free +midisport-firmware +firmware-misc-nonfree +firmware-amd-graphics +firmware-atheros +firmware-bnx2 +firmware-bnx2x +firmware-brcm80211 +firmware-cavium +firmware-intel-sound +firmware-iwlwifi +firmware-libertas +firmware-linux +firmware-linux-nonfree +firmware-misc-nonfree +firmware-myricom +firmware-netronome +firmware-netxen +firmware-qcom-media +firmware-qcom-soc +firmware-qlogic +firmware-realtek +firmware-samsung +firmware-siano +firmware-ti-connectivity +firmware-sof-signed +firmware-zd1211 + +" > $eznixOS/eznixOS/config/package-lists/firmware.list.chroot + +# Packages to be stored in /pool but not installed in the OS . +echo "# These packages are available to the installer, for offline use. +efibootmgr +grub2-common +grub-efi +grub-efi-amd64 +grub-efi-amd64-bin +grub-efi-amd64-signed +libefiboot1 +libefivar1 +mokutil +os-prober +shim-helpers-amd64-signed +shim-signed +shim-signed-common +shim-unsigned + +" >> $eznixOS/eznixOS/config/package-lists/installer.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo " +#b43-fwcutter +#firmware-b43-installer +#firmware-b43legacy-installer + +#" > $eznixOS12X/eznixOS/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares installer +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +cp -r $eznixOS/eznixOS12Xdev/calamares/ $eznixOS/eznixOS/config/includes.chroot/etc/ + +echo " +calamares +calamares-settings-debian + +" >> $eznixOS/eznixOS/config/package-lists/calamares.list.chroot + +# Make folders in the chroot + +mkdir -p $eznixOS/eznixOS/config/hooks/normal/ +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/etc/lightdm +mkdir -p $eznixOS/eznixOS/config/packages.chroot/ +mkdir -p $eznixOS/eznixOS/config/includes.binary/ +mkdir -p $eznixOS/eznixOS/config/includes.chroot/usr/sbin + +# Copy files into the chroot +cp -r $eznixOS/eznixOS12Xdev $eznixOS/eznixOS/config/includes.chroot/usr/share/ +cp -r $eznixOS/eznixOS12Xdev/xfce4/ $eznixOS/eznixOS/config/includes.chroot/etc/skel/.config/ +cp -r $eznixOS/eznixOS12Xdev/bootloaders/* $eznixOS/eznixOS/config/includes.binarye + +cp $eznixOS/eznixOS12Xdev/sources-calamares/* $eznixOS/eznixOS/config/includes.chroot/usr/sbin +cp $eznixOS/eznixOS12Xdev/hooks/* $eznixOS/eznixOS/config/hooks/normal/ +cp $eznixOS/eznixOS12Xdev/lightdm/* $eznixOS/eznixOS/config/includes.chroot/etc/lightdm/ +cp $eznixOS/eznixOS12Xdev/issue/* $eznixOS/eznixOS/config/includes.chroot/etc/ +cp $eznixOS/eznixOS12Xdev/grub/* $eznixOS/eznixOS/config/includes.chroot/etc/default/ +cp $eznixOS/eznixOS12Xdev/os-release/* $eznixOS/eznixOS/config/includes.chroot/usr/lib/ +cp $eznixOS/eznixOS12Xdev/scripts/* $eznixOS/eznixOS/config/includes.chroot/usr/local/bin/ +cp $eznixOS/eznixOS12Xdev/icons/* $eznixOS/eznixOS/config/includes.chroot/usr/share/icons/default/ +cp $eznixOS/eznixOS12Xdev/backgrounds/* $eznixOS/eznixOS/config/includes.chroot/usr/share/backgrounds/ +cp $eznixOS/eznixOS12Xdev/launchers/ezadmin.desktop $eznixOS/eznixOS/config/includes.chroot/usr/share/applications/ +cp $eznixOS/eznixOS12Xdev/live-user/* $eznixOS/eznixOS/config/includes.chroot/etc/live/config.conf.d + +# Uncomment below line if you have packages in the misc64 folder to include: +cp $eznixOS/eznixOS12Xdev/misc64/* $eznixOS/eznixOS/config/packages.chroot/ + +# Start the build process +# build the ISO # +lb build #--debug --verbose + + +# Disclaimer: +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/config.cfg b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/config.cfg new file mode 100644 index 0000000..1061be0 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/config.cfg @@ -0,0 +1,30 @@ +set default=0 + +if [ x$feature_default_font_path = xy ] ; then + font=unicode +else + font=$prefix/unicode.pf2 +fi + +# Copied from the netinst image +if loadfont $font ; then + set gfxmode=800x600 + set gfxpayload=keep + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus +else + set gfxmode=auto + insmod all_video +fi + +insmod gfxterm +insmod png + +source /boot/grub/theme.cfg + +terminal_output gfxterm + +insmod play +play 960 440 1 0 4 440 1 diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/grub.cfg b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/grub.cfg new file mode 100644 index 0000000..8524bb3 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/grub.cfg @@ -0,0 +1,28 @@ +source /boot/grub/config.cfg + +# Live boot +@LINUX_LIVE@ + +# You can add more entries like this +# menuentry "Alternate live boot" { +# linux @KERNEL_LIVE@ @APPEND_LIVE@ custom options here +# initrd @INITRD_LIVE@ +# } + +submenu 'Utilities...' --hotkey=u { + + source /boot/grub/theme.cfg + + # Memtest (if any) + if @ENABLE_MEMTEST@; then + source /boot/grub/memtest.cfg + fi + + # Firmware setup (UEFI) + if [ "${grub_platform}" = "efi" ]; then + menuentry "UEFI Firmware Settings" { + fwsetup + } + fi + +} diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/live-theme/theme.txt b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/live-theme/theme.txt new file mode 100644 index 0000000..a097711 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/live-theme/theme.txt @@ -0,0 +1,51 @@ +desktop-image: "../splash.png" +title-color: "#ffffff" +title-font: "Unifont Regular 16" +title-text: "Live Boot Menu with GRUB" +message-font: "Unifont Regular 16" +terminal-font: "Unifont Regular 16" + +#help bar at the bottom ++ label { + top = 100%-50 + left = 0 + width = 100% + height = 20 + text = "@KEYMAP_SHORT@" + align = "center" + color = "#ffffff" + font = "Unifont Regular 16" +} + +#boot menu ++ boot_menu { + left = 10% + width = 80% + top = 52% + height = 48%-80 + item_color = "#a8a8a8" + item_font = "Unifont Regular 16" + selected_item_color= "#ffffff" + selected_item_font = "Unifont Regular 16" + item_height = 16 + item_padding = 0 + item_spacing = 4 + icon_width = 0 + icon_heigh = 0 + item_icon_space = 0 +} + +#progress bar ++ progress_bar { + id = "__timeout__" + left = 15% + top = 100%-80 + height = 16 + width = 70% + font = "Unifont Regular 16" + text_color = "#000000" + fg_color = "#ffffff" + bg_color = "#a8a8a8" + border_color = "#ffffff" + text = "@TIMEOUT_NOTIFICATION_LONG@" +} diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/memtest.cfg b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/memtest.cfg new file mode 100644 index 0000000..48697a5 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/memtest.cfg @@ -0,0 +1,14 @@ +if [ "${grub_platform}" = "pc" ] -a [ -e @MEMTEST_DIR@/memtest ]; then + # Legacy 16-bit memtest + menuentry "Memory Diagnostic Tool (@MEMTEST_VERSION@)" --hotkey=m { + linux16 @MEMTEST_DIR@/memtest + } +elif [ "${grub_platform}" = "pc" ] -a [ -e @MEMTEST_DIR@/memtest.bin ]; then + menuentry "Memory Diagnostic Tool (@MEMTEST_VERSION@)" --hotkey=m { + linux @MEMTEST_DIR@/memtest.bin + } +elif [ "${grub_platform}" = "efi" ] -a [ -e @MEMTEST_DIR@/memtest.efi ]; then + menuentry "Memory Diagnostic Tool (@MEMTEST_VERSION@)" --hotkey=m { + linux @MEMTEST_DIR@/memtest.efi + } +fi diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/splash.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/splash.png new file mode 100644 index 0000000..9edb41c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/splash.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/theme.cfg b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/theme.cfg new file mode 100644 index 0000000..fb4d5ef --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/boot/grub/theme.cfg @@ -0,0 +1,13 @@ +set color_normal=light-gray/black +set color_highlight=white/dark-gray + +if [ -e /isolinux/splash.png ]; then + # binary_syslinux modifies the theme file to point to the correct + # background picture + set theme=/boot/grub/live-theme/theme.txt +elif [ -e /boot/grub/splash.png ]; then + set theme=/boot/grub/live-theme/theme.txt +else + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue +fi diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/isolinux.bin b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/isolinux.bin new file mode 120000 index 0000000..33a2ad6 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/isolinux.bin @@ -0,0 +1 @@ +/usr/lib/ISOLINUX/isolinux.bin \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/isolinux.cfg b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/isolinux.cfg new file mode 100644 index 0000000..a3e3eab --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/isolinux.cfg @@ -0,0 +1,4 @@ +include menu.cfg +default vesamenu.c32 +prompt 0 +timeout 0 diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/ldlinux.c32 b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/ldlinux.c32 new file mode 120000 index 0000000..df554c7 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/ldlinux.c32 @@ -0,0 +1 @@ +/usr/lib/syslinux/modules/bios/ldlinux.c32 \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/splash.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/splash.png new file mode 100644 index 0000000..9edb41c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/bootloaders/isolinux/splash.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/debootstrap_1.0.152acoros3_all.deb b/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/debootstrap_1.0.152acoros3_all.deb new file mode 100644 index 0000000..b9b944c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/debootstrap_1.0.152acoros3_all.deb differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/devuan-keyring_2023.10.07_all.deb b/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/devuan-keyring_2023.10.07_all.deb new file mode 100644 index 0000000..3d34589 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/devuan-keyring_2023.10.07_all.deb differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/live-build_20230502acoros1_all.deb b/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/live-build_20230502acoros1_all.deb new file mode 100644 index 0000000..af83f21 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/buildtools/live-build_20230502acoros1_all.deb differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/branding.desc b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/branding.desc new file mode 100644 index 0000000..6a32bea --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/branding.desc @@ -0,0 +1,31 @@ +--- +componentName: eznixos +welcomeStyleCalamares: true + +strings: + productName: eznixOS + shortProductName: eznixOS + version: 12X + shortVersion: 12X + versionedName: eznixOS + shortVersionedName: eznixOS + bootloaderEntryName: eznixos + productUrl: https://sourceforge.net/projects/eznixos/ +# supportUrl: https://sourceforge.net/projects/eznixos/ +# knownIssuesUrl: https://sourceforge.net/projects/eznixos/ +# releaseNotesUrl: https://sourceforge.net/projects/eznixos/ +# donateUrl: https://sourceforge.net/projects/eznixos/ + +images: + productLogo: "eznixos-logo.png" + productIcon: "eznixos-logo.png" + productWallpaper: "wallpaper.png" + productWelcome: "slide_cs.png" + +slideshow: "show.qml" + +style: + sidebarBackground: "#292F34" + sidebarText: "#FFFFFF" + sidebarTextSelect: "#292F34" + sidebarTextHighlight: "#D35400" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/eznixos-logo.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/eznixos-logo.png new file mode 100644 index 0000000..d13bcfa Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/eznixos-logo.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/show.qml b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/show.qml new file mode 100644 index 0000000..29759b3 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/show.qml @@ -0,0 +1,148 @@ +/* === This file is part of Calamares - === + * + * Copyright 2015, Teo Mrnjavac + * + * Calamares 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 3 of the License, or + * (at your option) any later version. + * + * Calamares 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 Calamares. If not, see . + * + * EznixOS custom settings + */ + +import QtQuick 2.0; +import calamares.slideshow 1.0; + +Presentation +{ + id: presentation + + Timer { + id: advanceTimer + interval: 30000 + running: true + repeat: true + onTriggered: presentation.goToNextSlide() + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + + Image { + id: background1 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Welcome to EznixOS, a Debian based Linux
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background2 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 163 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("EznixOS is 100% compatible with Debian Linux
") + + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background3 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Look inside the ~/EznixOS12X folder for documentation
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Slide { + anchors.fill: parent + anchors.verticalCenterOffset: 0 + + Image { + id: background4 + source: "slide1.png" + width: parent.width; height: parent.height + horizontalAlignment: Image.AlignCenter + verticalAlignment: Image.AlignTop + + anchors.fill: parent + + Text { + anchors.centerIn: parent + anchors.verticalCenterOffset: 165 + anchors.horizontalCenterOffset: 0 + font.pixelSize: parent.width *.020 + color: 'white' + text: qsTr("Thank you for trying EznixOS12
") + wrapMode: Text.WordWrap + width: parent.width / 1.4 + horizontalAlignment: Text.AlignHCenter + } + } + } + + Component.onCompleted: advanceTimer.running = true +} + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/slide1.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/slide1.png new file mode 100644 index 0000000..be52429 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/slide1.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/slide_cs.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/slide_cs.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/slide_cs.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/wallpaper.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/wallpaper.png new file mode 100644 index 0000000..d0a9bbc Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/wallpaper.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/welcome.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/branding/eznixos/welcome.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/bootloader.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/bootloader.conf new file mode 100644 index 0000000..2a76ecf --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/bootloader.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Bootloader configuration +# +--- +efiBootLoader: "grub" + +kernel: "/vmlinuz-linux" +img: "/initramfs-linux.img" +fallback: "/initramfs-linux-fallback.img" +timeout: "10" + +efiBootloaderId: "eznixos" + +grubInstall: "grub-install" +grubMkconfig: "grub-mkconfig" +grubCfg: "/boot/grub/grub.cfg" +grubProbe: "grub-probe" +efiBootMgr: "efibootmgr" + +installEFIFallback: true diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/displaymanager.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/displaymanager.conf new file mode 100644 index 0000000..859bdb0 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/displaymanager.conf @@ -0,0 +1,14 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure one or more display managers (e.g. sddm or Lightdm) +# +--- +displaymanagers: + - sddm + - lightdm + +basicSetup: false + +sysconfigSetup: false diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/finished.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/finished.conf new file mode 100644 index 0000000..562f504 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/finished.conf @@ -0,0 +1,10 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure finished screen options +# +--- +restartNowEnabled: true +restartNowChecked: false +restartNowCommand: "reboot" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/fstab.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/fstab.conf new file mode 100644 index 0000000..da38055 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/fstab.conf @@ -0,0 +1,27 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure fstab options +# +--- +mountOptions: + default: defaults,noatime,nodiscard + btrfs: defaults,noatime,noautodefrag,nodiscard + btrfs_swap: defaults + swap: defaults + +crypttabOptions: luks,keyscript=/bin/cat + +efiMountOptions: umask=0077 + +ssdExtraMountOptions: + btrfs: ssd + +tmpOptions: + default: + tmpfs: false + options: "" + ssd: + tmpfs: true + options: "defaults,noatime,mode=1777" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/luksopenswaphookcfg.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/luksopenswaphookcfg.conf new file mode 100644 index 0000000..f1f04ac --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/luksopenswaphookcfg.conf @@ -0,0 +1,8 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Writes an openswap configuration with LUKS settings to the given path +# +--- +configFilePath: /etc/openswap.conf diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/machineid.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/machineid.conf new file mode 100644 index 0000000..1725e69 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/machineid.conf @@ -0,0 +1,18 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure machineid options +# +--- +systemd: false + +dbus: true + +symlink: true + +entropy-copy: true + +entropy-files: + - /var/lib/urandom/random-seed + - /var/lib/systemd/random-seed diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/mount.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/mount.conf new file mode 100644 index 0000000..a1c0617 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/mount.conf @@ -0,0 +1,38 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure mount options +# +--- +extraMounts: + - device: proc + fs: proc + mountPoint: /proc + - device: sys + fs: sysfs + mountPoint: /sys + - device: /dev + mountPoint: /dev + options: bind + - device: tmpfs + fs: tmpfs + mountPoint: /run + - device: /run/udev + mountPoint: /run/udev + options: bind + +extraMountsEfi: + - device: efivarfs + fs: efivarfs + mountPoint: /sys/firmware/efi/efivars + +btrfsSubvolumes: + - mountPoint: / + subvolume: /@ + - mountPoint: /home + subvolume: /@home + - mountPoint: /var/cache + subvolume: /@cache + - mountPoint: /var/log + subvolume: /@log diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/openrcdmcryptcfg.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/openrcdmcryptcfg.conf new file mode 100644 index 0000000..7058791 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/openrcdmcryptcfg.conf @@ -0,0 +1,8 @@ +# Ezarcher custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration file for opendmcryptcfg module +# +--- +configFilePath: /etc/conf.d/dmcrypt diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/packages.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/packages.conf new file mode 100644 index 0000000..6bdb1a7 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/packages.conf @@ -0,0 +1,19 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure packages options, remove live configuration +# +--- +backend: apt + +operations: + - remove: + - 'live-boot' + - 'live-boot-doc' + - 'live-config' + - 'live-config-doc' + - 'live-config-systemd' + - 'live-tools' + - 'calamares-settings-debian' + - 'calamares' diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/partition.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/partition.conf new file mode 100644 index 0000000..5b35218 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/partition.conf @@ -0,0 +1,34 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configuration for the partition options +# +--- +efiSystemPartition: "/boot/efi" + +efiSystemPartitionSize: 1024M + +efiSystemPartitionName: EFI + +userSwapChoices: + - none # Create no swap, use no swap + - small # Up to 4GB + - suspend # At least main memory size + - file # To swap file instead of partition + +swapPartitionName: SWAP + +drawNestedPartitions: false + +alwaysShowPartitionLabels: true + +allowManualPartitioning: true + +initialPartitioningChoice: none + +initialSwapChoice: none + +defaultFileSystemType: "ext4" + +availableFileSystemTypes: ["ext4","btrfs","xfs"] diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/shellprocess.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/shellprocess.conf new file mode 100644 index 0000000..f99f347 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/shellprocess.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Shell process to remove calamares config files +# +--- +dontChroot: false +timeout: 999 +script: + - "-rm -r @@ROOT@@/etc/calamares/" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/unpackfs.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/unpackfs.conf new file mode 100644 index 0000000..91f16d4 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/unpackfs.conf @@ -0,0 +1,11 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure unpack squashfs filesystem +# +--- +unpack: + - source: "/run/live/medium/live/filesystem.squashfs" + sourcefs: "squashfs" + destination: "/" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/users.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/users.conf new file mode 100644 index 0000000..a4c5202 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/users.conf @@ -0,0 +1,30 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure user and group options +# +--- +userGroup: users + +defaultGroups: + - cdrom + - floppy + - sudo + - audio + - dip + - video + - plugdev + - netdev + - lpadmin + - scanner + - bluetooth + +autologinGroup: autologin +doAutologin: false +sudoersGroup: sudo +setRootPassword: true +doReusePassword: true +allowWeakPasswords: true +allowWeakPasswordsDefault: true +userShell: /bin/bash diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/welcome.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/welcome.conf new file mode 100644 index 0000000..02cec71 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/modules/welcome.conf @@ -0,0 +1,23 @@ +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure welcome options and set minimum specs +# +--- +showSupportUrl: false +showKnownIssuesUrl: false +showReleaseNotesUrl: false + +requirements: + requiredStorage: 10 + requiredRam: 1.0 + check: + - storage + - ram + - power + - root + required: + - storage + - ram + - root diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/settings.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/settings.conf new file mode 100644 index 0000000..971851b --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/calamares/settings.conf @@ -0,0 +1,65 @@ +# Configuration file for Calamares +# EznixOS custom settings +# SPDX-FileCopyrightText: no +# SPDX-License-Identifier: CC0-1.0 +# +# Configure setup options and branding +# Syntax is YAML 1.2 +# +--- + +modules-search: [ local, /usr/lib/calamares/modules ] + +oem-setup: false + +disable-cancel: false + +disable-cancel-during-exec: false + +quit-at-end: false + +sequence: + +- show: + - welcome + - locale + - keyboard + - partition + - users + - summary + +- exec: + - partition + - mount + - unpackfs + - sources-media + - machineid + - fstab + - locale + - keyboard + - localecfg + - users + - displaymanager + - networkcfg + - hwclock + - bootloader-config + - grubcfg + - bootloader + - packages + - luksbootkeyfile + - plymouthcfg + - initramfscfg + - initramfs + - sources-media-unmount + - sources-final + - shellprocess + - umount + +- show: + - finished + +branding: eznixos + +prompt-install: false + +dont-chroot: false diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/bldeznix12X-howto.txt b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/bldeznix12X-howto.txt new file mode 100644 index 0000000..1e769cd --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/bldeznix12X-howto.txt @@ -0,0 +1,120 @@ +Step by Step Live-Build - AMD64 Architecture Example + +----------------------------------- + +Suggested location for the build staging folder: + + /eznixOS12X -- build folder + +Suggested location for the collection of preparation files and packages: + + /eznix12X -- files location + + +The build procedure begins below. Copy and paste each command exactly unless you know what you are doing and are comfortable making changes. +ALL COMMANDS NEED TO BE RUN AS ROOT! + +---------------------------------- + +Step 1: Assign work, files, and build directory variables + +# Run command below to set the working directory: + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +---------------------------------- + +Step 2: Remove the icon cache cleaning hook, create the build staging folder, and cd into it + +# Run commands below to prepare for the build: + +rm /usr/share/live/build/hooks/normal/9000-remove-gnome-icon-cache.hook.chroot + +mkdir $BLDDIR +cd $BLDDIR + +---------------------------------- + +Step 3: Set up the live-build config + +# Run command below to configure live build: + +lb config --binary-images iso-hybrid --mode debian --architectures amd64 --linux-flavours amd64 --distribution bookworm --archive-areas "main contrib non-free non-free-firmware" --updates true --security true --cache true --apt-recommends true --firmware-binary true --firmware-chroot true --win32-loader false --iso-application $BLDDIR --iso-preparer eznix-https://sourceforge.net/projects/eznixos/ --iso-publisher eznix-https://sourceforge.net/projects/eznixos/ --image-name "$BLDDIR-$(date -u +"%y%m%d")" --iso-volume "$BLDDIR-$(date -u +"%y%m%d")" --checksums sha512 --clean --color + +---------------------------------- + +Step 4: Pass the desktop and packages to the live-build config + +# Run command below to install the Xfce Desktop: + +echo "accountsservice arc-theme asunder atril breeze-gtk-theme breeze-icon-theme dconf-cli gnome-disk-utility gnome-keyring gnome-nettool gnome-system-tools greybird-gtk-theme gvfs-backends gvfs-fuse light-locker lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings mousepad network-manager-gnome network-manager-openconnect-gnome network-manager-openvpn-gnome numix-gtk-theme pavucontrol pulseaudio remmina tango-icon-theme xarchiver xfce4 xfce4-goodies xfce4-power-manager xfce4-terminal" > $WKDIR/$BLDDIR/config/package-lists/xfcedesktop.list.chroot + +echo "aisleriot alsa-utils apt-transport-https audacious audacious-plugins autoconf automake bleachbit btrfs-progs build-essential cdtool cdrdao cdrskin cifs-utils clonezilla cryptsetup cryptsetup-initramfs cups cups-filters curl dbus-user-session dbus-x11 debconf debhelper dh-autoreconf dialog dirmngr dkms dos2unix dosbox dosfstools dvdauthor exfatprogs faac faad fakeroot ffmpeg filezilla firefox-esr flac foomatic-db foomatic-db-engine frei0r-plugins fuse3 galculator gdebi geany ghostscript gimp gir1.2-ibus-1.0 gparted grsync grub-pc gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-plugins-good gthumb guvcview hardinfo haveged hplip-gui htop hunspell-en-us hyphen-en-us ibus ibus-data ibus-gtk ibus-gtk3 iftop im-config inxi isolinux iw jfsutils keepassxc lame less libegl1-mesa libibus-1.0-5 libgl1-mesa-glx libqt5opengl5 libreoffice-calc libreoffice-draw libreoffice-impress libreoffice-writer libreoffice-gtk3 libreoffice-help-en-us libnss-mdns libsmbclient libxcb-xtest0 libxvidcore4 linux-headers-amd64 live-build lsb-release lshw meld mencoder menu mjpegtools mpg321 mpv mtools mythes-en-us neofetch netcat-openbsd ntfs-3g nvidia-detect openconnect openvpn openvpn-systemd-resolved os-prober p7zip-full p7zip-rar papirus-icon-theme pciutils perl plymouth plymouth-label plymouth-themes policykit-1 printer-driver-gutenprint python3-ibus-1.0 rar samba-common-bin simple-scan simplescreenrecorder smplayer smplayer-l10n smplayer-themes soundconverter sox squashfs-tools streamripper sudo synaptic syslinux syslinux-common system-config-printer testdisk timeshift transmission-gtk twolame udisks2 upower unrar unzip webext-keepassxc-browser wget x265 x264 xclip xdg-utils xfsprogs xorg xserver-xorg-input-all xserver-xorg-video-all xorriso xscreensaver xterm zip zstd zulucrypt-gui zulumount-gui" > $WKDIR/$BLDDIR/config/package-lists/extrapackages.list.chroot + +echo "atmel-firmware bluez-firmware firmware-linux-free midisport-firmware firmware-misc-nonfree firmware-amd-graphics firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-cavium firmware-intel-sound firmware-iwlwifi firmware-libertas firmware-linux firmware-linux-nonfree firmware-misc-nonfree firmware-myricom firmware-netronome firmware-netxen firmware-qcom-media firmware-qcom-soc firmware-qlogic firmware-realtek firmware-samsung firmware-siano firmware-ti-connectivity firmware-sof-signed firmware-zd1211" > $WKDIR/$BLDDIR/config/package-lists/firmware.list.chroot + +echo "efibootmgr grub-common grub-pc-bin grub2-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub-efi-ia32-bin libefiboot1 libefivar1 mokutil os-prober shim-helpers-amd64-signed +shim-signed shim-signed-common shim-unsigned" > $WKDIR/$BLDDIR/config/package-lists/grubs.list.binary + +# Uncomment below line to include more Broadcom WiFi drivers: +# echo "b43-fwcutter firmware-b43-installer firmware-b43legacy-installer" > $WKDIR/$BLDDIR/config/package-lists/bcmfirmware.list.chroot + +# Include the Calamares Installer + +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/ +cp -r $WKDIR/$FLDIR/calamares/ $WKDIR/$BLDDIR/config/includes.chroot/etc/ +echo "calamares calamares-settings-debian" > $WKDIR/$BLDDIR/config/package-lists/calamares.list.chroot + +---------------------------------- + +Step 5: Make folders in the chroot + +# Run command below to create needed folders: + +mkdir -p $WKDIR/$BLDDIR/config/hooks/normal/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +mkdir -p $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ + +----------------------------------- + +Step 6: Copy files into the chroot and live-build config + +# Run commands below to copy build files into the live system: + +cp -r $WKDIR/$FLDIR/bootloaders/ $WKDIR/$BLDDIR/config/ +cp -r $WKDIR/$FLDIR/ $WKDIR/$BLDDIR/config/includes.chroot/usr/share/ +cp -r $WKDIR/$FLDIR/xfce4/ $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/.config/ +cp $WKDIR/$FLDIR/hooks/* $WKDIR/$BLDDIR/config/hooks/normal/ +cp $WKDIR/$FLDIR/scripts/* $WKDIR/$BLDDIR/config/includes.chroot/usr/local/bin/ +cp $WKDIR/$FLDIR/icons/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/icons/default/ +cp $WKDIR/$FLDIR/backgrounds/* $WKDIR/$BLDDIR/config/includes.chroot/usr/share/backgrounds/ +cp $WKDIR/$FLDIR/launchers/ezadmin.desktop $WKDIR/$BLDDIR/config/includes.chroot/usr/share/applications/ +ln -s /usr/share/$FLDIR $WKDIR/$BLDDIR/config/includes.chroot/etc/skel/$FLDIR + +----------------------------------- + +# Run command below IF you wish to include deb packages from misc64 folder: + +# cp $WKDIR/$FLDIR/misc64/* $WKDIR/$BLDDIR/config/packages.chroot/ + +----------------------------------- + +Step 7: Start the build process + +# Run command below to start live build: + +lb build + +----------------------------------- + +Step 8: Wait for the build to complete. The ISO will be inside the build folder + +----------------------------------- + +# bldeznix12X-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/ezadmin-howto.txt b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/ezadmin-howto.txt new file mode 100644 index 0000000..3a6c1af --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/ezadmin-howto.txt @@ -0,0 +1,123 @@ + EZADMIN HOWTO + +This is a custom built script to perform various tasks on eznixOS. You can run the ezadmin script as root to perform its functions. SU to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. + + + EZ Admin Menu: + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + + +Select a|A to add yourself to the sudo group, allowing the use of 'sudo' to gain administrative privileges. Logout and Login is required to take effect. + +Select b|B to optimize your repositories to Debian's DNS based redirection system for automatically picking closer mirrors. The Stretch Backports repositories are added as well. Use can use Synaptic or your favorite text editor to customize the repositories if you wish. + +Select c|C to rebuild the default icon cache files and lower memory usage. + +Select d|D to install and/or upgrade the latest Firefox Latest. + +Select e|E to install YT-DLP video downloader + +Select f|F to install the newest kernel from backports. + +Select g|G to upgrade to Debian Testing. + +Select x|X to exit the menu and return to the command prompt. Reboot your system after performing any of the steps and in-between multiple steps just to be safe. + + +------------------------------------------------------------------- + + Functions + +------------------------------------------------------------------- + +# Add first user to sudo group + + read -p "Type you user name, be exact and press Enter: " ANS + usermod -aG sudo $ANS + +------------------------------------------------------------------- + +# Optimize mirrors and add contrib and non-free to sources.list + + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznix12X/sources/sources.bookworm /etc/apt/sources.list + apt-get -y update + +------------------------------------------------------------------- + +# Rebuild Default Icon Cache Files + + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ + +------------------------------------------------------------------- + +# Install and/or upgrade the latest Firefox Latest + + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznix12X/launchers/Firefox-Latest.desktop /usr/share/applications/Firefox-Latest.desktop + rm -r /opt/FFDL + +------------------------------------------------------------------ + +# Install YT-DLP video downloader + + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp + +------------------------------------------------------------------ + +# Install the newest kernel from backports + + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 + +------------------------------------------------------------------ + +# Upgrade to Debian Testing + + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznix12X/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade + +------------------------------------------------------------------ + +# ezadmin-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/license.txt b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/license.txt new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/license.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. 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 +them 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 prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. 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. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey 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; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If 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 convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU 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 that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + 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 +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program 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, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU 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 Lesser General +Public License instead of this License. But first, please read +. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/prepare-howto.txt b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/prepare-howto.txt new file mode 100644 index 0000000..13da446 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/prepare-howto.txt @@ -0,0 +1,59 @@ +Preparation for the bldeznix12X script + +-------------------------------------- + +Step 1 +Install the live-build tool and others: + +# apt-get install live-build squashfs-tools syslinux-common syslinux-utils xorriso isolinux + +-------------------------------------- + +Step 2 +Assign work, files, and build directory variables and make the build directory + +WKDIR="$(pwd)" +FLDIR="eznix12X" +BLDDIR="eznixOS12X" + +mkdir=$BLDDIR + +-------------------------------------- + +Step 3 +Collect all background images, especially the current background, and copy them to a folder inside /$FLDIR. + +# cp -r backgrounds /$FLDIR/backgrounds + +-------------------------------------- + +Step 4 +Configure your desktop settings exactly the way you want to preserve them for the live system. +If using XFCE, all of these settings are stored in ~/.config/xfce4. Copy that folder inside /$FLDIR. + +# cp -r ~/.config/xfce4 ~/$FLDIR/ + +-------------------------------------- + +Step 5 +Copy any miscelaneous deb packages into the /$FLDIR/misc64 folder + +-------------------------------------- + +Step 6 +If you have any shell scripts, place them in the /$FLDIR/scripts folder. If you have any icons, place them in the /$FLDIR/icons folder. If you have any hooks, place them in the /$FLDIR/hooks folder. If you have any documentation, place the it in the /$FLDIR/doc folder. If you need other locations, add the folder inside the /$FLDIR folder and use the commands in the bldeznix script as a guide to adapting the script to your needs. + +-------------------------------------- + +Step 7 +The /bootloaders directory is found in /usr/share/live/build/ - copy the folder into your /$FLDIR/ directory. + +# cp -r /usr/share/live/build/bootloaders /$FLDIR/bootloaders + +Inside each of the subfolders within /bootloaders is a file named: splash.svg or splash.png. These are default images and can be replaced. Use whatever graphic program you like to create or edit an image for use as your boot splash. Any text you place on the image should be in the upper portion of the image - the lower half will display the boot menu. When you are satified with your image, save it as a 640x480 pixel PNG graphic file named splash.png. Copy the file into each of the subfolders of /bootloaders with the exception of the grub-legacy folder. Grub-legacy will probably never be used, but if you want to replace that image, save a copy of your splash image as a 640x480 pixel XPM graphic file and name it splash.xpm. You will need to gzip the splash.xpm file and replace the default file in the grub-legacy subfolder. + +-------------------------------------- + + +# prepare-howto.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/readme.txt b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/readme.txt new file mode 100644 index 0000000..7a9a024 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/doc/readme.txt @@ -0,0 +1,40 @@ +Welcome to eznixOS + +The eznixOS is a respin of Debian GNU/Linux, currently based on the Debian 12 Bookworm release. The Debian live-build tool is used to build the ISO and I have included a folder located under /usr/share/eznix12X containing all the necessary build files and build script used to create the respin. I include all the files with the aim to help educate those willing to learn how to build your own live-build created Debian respins. + +This respin was built by my bldeznix12X script but can also be built identically by following the prepare-howto.txt and bldeznix12X-howto.txt files. The build process has been completely automated as long as you do not need to make any adjustments. The bldeznix12X will build a complete respin of Debian Bookworm with all of the eznixOS customizations. If you want to utilize the script to produce your own respin, you will need to edit various parts of the script. The script is documented and should be easy enough to rework into something personal for you. + +The ISO contains all the eznixOS build related files inside the /usr/share/eznix12X folder. Any changes to the files or the folder names must be represented in the bldeznix12X script. The script relies on certain folder names and files to operate correctly. Read the comments in the bldeznix12X script and the prepare-howto.txt and bldeznix12X-howto.txt files for guidance. The /eznix12X folder must reside in the same directory as the bldeznix12X script. Anything can be changed to suit your needs, but the changes must be identical in both the script and the folder structure around it. + +The ezadmin tool is a small script with a menu driven interface that performs a few basic functions. Please take a look at the ezadmin-howtow.txt on the Desktop of eznixOS. + +################################################# +# # +# ---------------------- # +# EZ Admin Menu: # +# 12X Xfce Edition # +# ---------------------- # +# # +# (a) Add Myself to Sudo Group # +# (Logout & Login to take effect) # +# (b) Optimize Sources & Update Repos # +# (c) Rebuild Icon Cache Files # +# (Logout & Login to take effect) # +# (d) Install or upgrade Firefox Latest # +# (e) Install YT-DLP video downloader # +# (f) Install newest kernel from backports # +# (Reboot Required) # +# (g) Upgrade to Debian Testing # +# (Reboot Required) # +# # +# (x) Exit # +# # +# Please enter your choice: # +# # +################################################# + +You can run the ezadmin script as root to perform its functions. Use "su -l" to root in a terminal and issue the command: "ezadmin" to execute the script. Read the documentation for the ezadmin script BEFORE using it. The functions are serious and the changes are not easy to reverse once done. Have fun. + + +# readme.txt -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/grub/grub b/eznixOS12Xdev-calamares/eznixOS12Xdev/grub/grub new file mode 100644 index 0000000..a6760f3 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/grub/grub @@ -0,0 +1,36 @@ +# If you change this file, run 'update-grub' afterwards to update +# /boot/grub/grub.cfg. +# For full documentation of the options in this file, see: +# info -f grub -n 'Simple configuration' + +GRUB_DEFAULT=0 +GRUB_TIMEOUT=5 +GRUB_DISTRIBUTOR="ExnizOS" +GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" +GRUB_CMDLINE_LINUX="" + +# Uncomment to enable BadRAM filtering, modify to suit your needs +# This works with Linux (no patch required) and with any kernel that obtains +# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) +#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" + +# Uncomment this to run os-prober so search for and add other OS +# installations to the grub boot menu +GRUB_DISABLE_OS_PROBER=false + +# Uncomment to disable graphical terminal (grub-pc only) +#GRUB_TERMINAL=console + +# The resolution used on graphical terminal +# note that you can use only modes which your graphic card supports via VBE +# you can see them in real GRUB with the command `vbeinfo' +GRUB_GFXMODE=1440x400 + +# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux +#GRUB_DISABLE_LINUX_UUID=true + +# Uncomment to disable generation of recovery mode menu entries +#GRUB_DISABLE_RECOVERY="true" + +# Uncomment to get a beep at grub start +#GRUB_INIT_TUNE="480 440 1" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9070-add-architecture-i386.hook.chroot b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9070-add-architecture-i386.hook.chroot new file mode 100755 index 0000000..a6bca08 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9070-add-architecture-i386.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9070-add-architecture-i386.hook.chroot +# Description: Script to add i386 architecture +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + + +#add-architecture i386 +dpkg --add-architecture i386 diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9080-remove-not-need-packages.hook.chroot b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9080-remove-not-need-packages.hook.chroot new file mode 100755 index 0000000..2c87e03 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9080-remove-not-need-packages.hook.chroot @@ -0,0 +1,5 @@ +#!/bin/bash + +# Remove software +apt --purge --yes autoremove systemsettings nvidia-tesla-470* + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9090-enable-calamares-debug.hook.chroot b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9090-enable-calamares-debug.hook.chroot new file mode 100755 index 0000000..5b62e64 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9090-enable-calamares-debug.hook.chroot @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +# Enable debug mode for Calamares + + sed -i -e 's|^ *pkexec calamares|pkexec calamares -d|' /usr/bin/install-debian diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9095-rename-installer-eznixos.hook.chroot b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9095-rename-installer-eznixos.hook.chroot new file mode 100755 index 0000000..2ec5802 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9095-rename-installer-eznixos.hook.chroot @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +# Change installer icon name to EznixOS + + sed -i -e 's|Debian|EznixOS|g' /usr/share/applications/install-debian.desktop + sed -i -e 's|^ *Icon=install-debian|Icon=/usr/share/icons/default/lava-lamp.svg|' /usr/share/applications/install-debian.desktop diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9098-rebuild-icon-caches.hook.chroot b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9098-rebuild-icon-caches.hook.chroot new file mode 100755 index 0000000..c1ef601 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9098-rebuild-icon-caches.hook.chroot @@ -0,0 +1,13 @@ +#!/bin/bash + +################################################################################ +# Title: 9098-rebuild-icon-caches.hook.chroot +# Description: Script to remove packages and other things +# Author: manuel rosa +# Date: Outubro 29, 2023 +# License: GPL-3.0-or-later +################################################################################ + +# Lowers the footprint in RAM at the small expense of added size to the ISO. +#update-icon-caches /usr/share/icons/* +find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \; diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9099-create-symlinks-hook.chroot b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9099-create-symlinks-hook.chroot new file mode 100755 index 0000000..aa8451a --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/hooks/9099-create-symlinks-hook.chroot @@ -0,0 +1,4 @@ +#!/bin/bash + +# Creates symlinks inside th chroot. +ln -s -r /usr/share/eznixOS12X /etc/skel diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp-2.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp-2.png new file mode 100644 index 0000000..0b494dc Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp-2.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp-svgrepo-com.svg b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp-svgrepo-com.svg new file mode 100644 index 0000000..0799a08 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp-svgrepo-com.svg @@ -0,0 +1,99 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp.png new file mode 100644 index 0000000..64eb47c Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp.svg b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp.svg new file mode 100644 index 0000000..a46115c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/icons/lava-lamp.svg @@ -0,0 +1,105 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/issue/issue b/eznixOS12Xdev-calamares/eznixOS12Xdev/issue/issue new file mode 100644 index 0000000..d58a10f --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/issue/issue @@ -0,0 +1,2 @@ +EznixOS \n \l + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/issue/issue.net b/eznixOS12Xdev-calamares/eznixOS12Xdev/issue/issue.net new file mode 100644 index 0000000..38cd47a --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/issue/issue.net @@ -0,0 +1 @@ +EznixOS diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/launchers/Firefox-Latest.desktop b/eznixOS12Xdev-calamares/eznixOS12Xdev/launchers/Firefox-Latest.desktop new file mode 100755 index 0000000..b6ac618 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/launchers/Firefox-Latest.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Firefox Latest +Exec=/opt/moz/firefox/firefox %u +Terminal=false +X-MultipleArgs=false +Type=Application +Icon=firefox +Categories=Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;x-scheme-handler/http;x-scheme-handler/https; +StartupWMClass=Firefox +StartupNotify=true diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/launchers/ezadmin.desktop b/eznixOS12Xdev-calamares/eznixOS12Xdev/launchers/ezadmin.desktop new file mode 100755 index 0000000..4a948bc --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/launchers/ezadmin.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=EZ Admin Tool +Comment=ezadmin tool +Categories=System; +Keywords=System; +Exec=pkexec /usr/local/bin/ezadmin +Icon=/usr/share/icons/default/lava-lamp.png +Path=/usr/local/bin +Terminal=true +StartupNotify=false diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/lightdm/lightdm.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/lightdm/lightdm.conf new file mode 100644 index 0000000..0c037c0 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/lightdm/lightdm.conf @@ -0,0 +1,169 @@ +# +# General configuration +# +# start-default-seat = True to always start one seat if none are defined in the configuration +# greeter-user = User to run greeter as +# minimum-display-number = Minimum display number to use for X servers +# minimum-vt = First VT to run displays on +# lock-memory = True to prevent memory from being paged to disk +# user-authority-in-system-dir = True if session authority should be in the system location +# guest-account-script = Script to be run to setup guest account +# logind-check-graphical = True to on start seats that are marked as graphical by logind +# log-directory = Directory to log information to +# run-directory = Directory to put running state in +# cache-directory = Directory to cache to +# sessions-directory = Directory to find sessions +# remote-sessions-directory = Directory to find remote sessions +# greeters-directory = Directory to find greeters +# backup-logs = True to move add a .old suffix to old log files when opening new ones +# dbus-service = True if LightDM provides a D-Bus service to control it +# +[LightDM] +#start-default-seat=true +#greeter-user=lightdm +#minimum-display-number=0 +#minimum-vt=7 +#lock-memory=true +#user-authority-in-system-dir=false +#guest-account-script=guest-account +#logind-check-graphical=false +#log-directory=/var/log/lightdm +#run-directory=/var/run/lightdm +#cache-directory=/var/cache/lightdm +#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions +#remote-sessions-directory=/usr/share/lightdm/remote-sessions +#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters +#backup-logs=true +#dbus-service=true + +# +# Seat configuration +# +# Seat configuration is matched against the seat name glob in the section, for example: +# [Seat:*] matches all seats and is applied first. +# [Seat:seat0] matches the seat named "seat0". +# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client". +# +# type = Seat type (local, xremote, unity) +# pam-service = PAM service to use for login +# pam-autologin-service = PAM service to use for autologin +# pam-greeter-service = PAM service to use for greeters +# xserver-backend = X backend to use (mir) +# xserver-command = X server command to run (can also contain arguments e.g. X -special-option) +# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option) +# xserver-config = Config file to pass to X server +# xserver-layout = Layout to pass to X server +# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server +# xserver-share = True if the X server is shared for both greeter and session +# xserver-hostname = Hostname of X server (only for type=xremote) +# xserver-display-number = Display number of X server (only for type=xremote) +# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true) +# xdmcp-port = XDMCP UDP/IP port to communicate on +# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf) +# unity-compositor-command = Unity compositor command to run (can also contain arguments e.g. unity-system-compositor -special-option) +# unity-compositor-timeout = Number of seconds to wait for compositor to start +# greeter-session = Session to load for greeter +# greeter-hide-users = True to hide the user list +# greeter-allow-guest = True if the greeter should show a guest login option +# greeter-show-manual-login = True if the greeter should offer a manual login option +# greeter-show-remote-login = True if the greeter should offer a remote login option +# user-session = Session to load for users +# allow-user-switching = True if allowed to switch users +# allow-guest = True if guest login is allowed +# guest-session = Session to load for guests (overrides user-session) +# session-wrapper = Wrapper script to run session with +# greeter-wrapper = Wrapper script to run greeter with +# guest-wrapper = Wrapper script to run guest sessions with +# display-setup-script = Script to run when starting a greeter session (runs as root) +# display-stopped-script = Script to run after stopping the display server (runs as root) +# greeter-setup-script = Script to run when starting a greeter (runs as root) +# session-setup-script = Script to run when starting a user session (runs as root) +# session-cleanup-script = Script to run when quitting a user session (runs as root) +# autologin-guest = True to log in as guest by default +# autologin-user = User to log in with by default (overrides autologin-guest) +# autologin-user-timeout = Number of seconds to wait before loading default user +# autologin-session = Session to load for automatic login (overrides user-session) +# autologin-in-background = True if autologin session should not be immediately activated +# exit-on-failure = True if the daemon should exit if this seat fails +# +[Seat:*] +#type=local +#pam-service=lightdm +#pam-autologin-service=lightdm-autologin +#pam-greeter-service=lightdm-greeter +#xserver-backend= +#xserver-command=X +#xmir-command=Xmir +#xserver-config= +#xserver-layout= +#xserver-allow-tcp=false +#xserver-share=true +#xserver-hostname= +#xserver-display-number= +#xdmcp-manager= +#xdmcp-port=177 +#xdmcp-key= +#unity-compositor-command=unity-system-compositor +#unity-compositor-timeout=60 +#greeter-session=example-gtk-gnome +greeter-hide-users=false +#greeter-allow-guest=true +#greeter-show-manual-login=false +#greeter-show-remote-login=true +#user-session=default +#allow-user-switching=true +#allow-guest=true +#guest-session= +#session-wrapper=lightdm-session +#greeter-wrapper= +#guest-wrapper= +#display-setup-script= +#display-stopped-script= +#greeter-setup-script= +#session-setup-script= +#session-cleanup-script= +#autologin-guest=false +#autologin-user= +#autologin-user-timeout=0 +#autologin-in-background=false +#autologin-session= +#exit-on-failure=false + +# +# XDMCP Server configuration +# +# enabled = True if XDMCP connections should be allowed +# port = UDP/IP port to listen for connections on +# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present) +# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf) +# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset) +# +# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively +# it can be a word and the first 7 characters are used as the key. +# +[XDMCPServer] +#enabled=false +#port=177 +#listen-address= +#key= +#hostname= + +# +# VNC Server configuration +# +# enabled = True if VNC connections should be allowed +# command = Command to run Xvnc server with +# port = TCP/IP port to listen for connections on +# listen-address = Host/address to listen for VNC connections (use all addresses if not present) +# width = Width of display to use +# height = Height of display to use +# depth = Color depth of display to use +# +[VNCServer] +#enabled=false +#command=Xvnc +#port=5900 +#listen-address= +#width=1024 +#height=768 +#depth=8 diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/live-user/10-user-setup.conf b/eznixOS12Xdev-calamares/eznixOS12Xdev/live-user/10-user-setup.conf new file mode 100644 index 0000000..89e58ad --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/live-user/10-user-setup.conf @@ -0,0 +1,2 @@ +LIVE_USERNAME=eznix +LIVE_USER_FULLNAME="exnixOS" diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual.en.html new file mode 100644 index 0000000..6ec7c9a --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual.en.html @@ -0,0 +1,8792 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + +
+ + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +
+ +

+ Live Systems Manual +

+ +
+ +

+ About +

+ +
+ +

+ About this manual +

+ +

+ 1. About this manual +

+ +
+ 1.1 For the impatient +
+ +
+ 1.2 Terms +
+ +
+ 1.3 Authors +
+ +
+ 1.4 Contributing to this document +
+ +
+ 1.4.1 Applying changes +
+ +
+ 1.4.2 Translation +
+ +
+ +

+ About the Live Systems Project +

+ +

+ 2. About the Live Systems Project +

+ +
+ 2.1 Motivation +
+ +
+ 2.1.1 What is wrong with current live systems +
+ +
+ 2.1.2 Why create our own live system? +
+ +
+ 2.2 Philosophy +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+ +
+ 2.2.2 No package configuration of the live system +
+ +
+ 2.3 Contact +
+ +
+ +

+ User +

+ +
+ +

+ Installation +

+ +

+ 3. Installation +

+ +
+ 3.1 Requirements +
+ +
+ 3.2 Installing live-build +
+ +
+ 3.2.1 From the Debian repository +
+ +
+ 3.2.2 From source +
+ +
+ 3.2.3 From 'snapshots' +
+ +
+ 3.3 Installing live-boot and live-config +
+ +
+ 3.3.1 From the Debian repository +
+ +
+ 3.3.2 From source +
+ +
+ 3.3.3 From 'snapshots' +
+ +
+ +

+ The basics +

+ +

+ 4. The basics +

+ +
+ 4.1 What is a live system? +
+ +
+ 4.2 Downloading prebuilt images +
+ +
+ 4.3 Using the web live image builder +
+ +
+ 4.3.1 Web builder usage and caveats +
+ +
+ 4.4 First steps: building an ISO hybrid image +
+ +
+ 4.5 Using an ISO hybrid live image +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+ +
+ 4.5.3 Using the space left on a USB stick +
+ +
+ 4.5.4 Booting the live medium +
+ +
+ 4.6 Using a virtual machine for testing +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+ +
+ 4.7 Building and using an HDD image +
+ +
+ 4.8 Building a netboot image +
+ +
+ 4.8.1 DHCP server +
+ +
+ 4.8.2 TFTP server +
+ +
+ 4.8.3 NFS server +
+ +
+ 4.8.4 Netboot testing HowTo +
+ +
+ 4.8.5 Qemu +
+ +
+ 4.9 Webbooting +
+ +
+ 4.9.1 Getting the webboot files +
+ +
+ 4.9.2 Booting webboot images +
+ +
+ +

+ Overview of tools +

+ +

+ 5. Overview of tools +

+ +
+ 5.1 The live-build package +
+ +
+ 5.1.1 The lb config command +
+ +
+ 5.1.2 The lb build command +
+ +
+ 5.1.3 The lb clean command +
+ +
+ 5.2 The live-boot package +
+ +
+ 5.3 The live-config package +
+ +
+ +

+ Managing a configuration +

+ +

+ 6. Managing a configuration +

+ +
+ 6.1 Dealing with configuration changes +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+ +
+ 6.1.2 Use example auto scripts +
+ +
+ 6.2 Clone a configuration published via Git +
+ +
+ +

+ Customizing contents +

+ +

+ 7. Customization overview +

+ +
+ 7.1 Build time vs. boot time configuration +
+ +
+ 7.2 Stages of the build +
+ +
+ 7.3 Supplement lb config with files +
+ +
+ 7.4 Customization tasks +
+ +
+ +

+ Customizing package installation +

+ +

+ 8. Customizing package installation +

+ +
+ 8.1 Package sources +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+ +
+ 8.1.2 Distribution mirrors +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+ +
+ 8.1.5 Additional repositories +
+ +
+ 8.2 Choosing packages to install +
+ +
+ 8.2.1 Package lists +
+ +
+ 8.2.2 Using metapackages +
+ +
+ 8.2.3 Local package lists +
+ +
+ 8.2.4 Local binary package lists +
+ +
+ 8.2.5 Generated package lists +
+ +
+ 8.2.6 Using conditionals inside package lists +
+ +
+ 8.2.7 Removing packages at install time +
+ +
+ 8.2.8 Desktop and language tasks +
+ +
+ 8.2.9 Kernel flavour and version +
+ +
+ 8.2.10 Custom kernels +
+ +
+ 8.3 Installing modified or third-party packages +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+ +
+ 8.3.3 Custom packages and APT +
+ +
+ 8.4 Configuring APT at build time +
+ +
+ 8.4.1 Choosing apt or aptitude +
+ +
+ 8.4.2 Using a proxy with APT +
+ +
+ 8.4.3 Tweaking APT to save space +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+ +
+ 8.4.5 APT pinning +
+ +
+ +

+ Customizing contents +

+ +

+ 9. Customizing contents +

+ +
+ 9.1 Includes +
+ +
+ 9.1.1 Live/chroot local includes +
+ +
+ 9.1.2 Binary local includes +
+ +
+ 9.2 Hooks +
+ +
+ 9.2.1 Chroot local hooks +
+ +
+ 9.2.2 Binary local hooks +
+ +
+ 9.2.3 Boot-time hooks +
+ +
+ 9.3 Preseeding Debconf questions +
+ +
+ +

+ Customizing run time behaviours +

+ +

+ 10. Customizing run time behaviours +

+ +
+ 10.1 Customizing the live user +
+ +
+ 10.2 Customizing locale and language +
+ +
+ 10.3 Persistence +
+ +
+ 10.3.1 The persistence.conf file +
+ +
+ 10.3.2 Using more than one persistence store +
+ +
+ 10.3.3 Using persistence with encryption +
+ +
+ +

+ Customizing the binary image +

+ +

+ 11. Customizing the binary image +

+ +
+ 11.1 Bootloaders +
+ +
+ 11.2 ISO metadata +
+ +
+ +

+ Customizing Debian Installer +

+ +

+ 12. Customizing Debian Installer +

+ +
+ 12.1 Types of Debian Installer +
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+ +
+ 12.3 Customizing Debian Installer content +
+ +
+ +

+ Project +

+ +
+ +

+ Contributing to the project +

+ +

+ 13. Contributing to the project +

+ +
+ 13.1 Making changes +
+ +
+ 13.2 Translation of man pages +
+ +
+ +

+ Reporting bugs +

+ +

+ 14. Reporting bugs +

+ +
+ 14.1 Known issues +
+ +
+ 14.2 Rebuild from scratch +
+ +
+ 14.3 Use up-to-date packages +
+ +
+ 14.4 Collect information +
+ +
+ 14.5 Isolate the failing case if possible +
+ +
+ 14.6 Use the correct package to report the bug against +
+ +
+ 14.6.1 At build time while bootstrapping +
+ +
+ 14.6.2 At build time while installing packages +
+ +
+ 14.6.3 At boot time +
+ +
+ 14.6.4 At run time +
+ +
+ 14.7 Do the research +
+ +
+ 14.8 Where to report bugs +
+ +
+ +

+ Coding Style +

+ +

+ 15. Coding Style +

+ +
+ 15.1 Compatibility +
+ +
+ 15.2 Indenting +
+ +
+ 15.3 Wrapping +
+ +
+ 15.4 Variables +
+ +
+ 15.5 Miscellaneous +
+ +
+ +

+ Procedures +

+ +

+ 16. Procedures +

+ +
+ 16.1 Major Releases +
+ +
+ 16.2 Point Releases +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+ +
+ 16.2.2 Point release announcement template +
+ +
+ +

+ Git repositories +

+ +

+ 17. Git repositories +

+ +
+ 17.1 Handling multiple repositories +
+ +
+ +

+ Examples +

+ +
+ +

+ Examples +

+ +

+ 18. Examples +

+ +
+ 18.1 Using the examples +
+ +
+ 18.2 Tutorial 1: A default image +
+ +
+ 18.3 Tutorial 2: A web browser utility +
+ +
+ 18.4 Tutorial 3: A personalized image +
+ +
+ 18.4.1 First revision +
+ +
+ 18.4.2 Second revision +
+ +
+ 18.5 A VNC Kiosk Client +
+ +
+ 18.6 A base image for a 128MB USB key +
+ +
+ 18.7 A localized GNOME desktop and installer +
+ +
+ +

+ Appendix +

+ +
+ +

+ Style guide +

+ +

+ 19. Style guide +

+ +
+ 19.1 Guidelines for authors +
+ +
+ 19.1.1 Linguistic features +
+ +
+ 19.1.2 Procedures +
+ +
+ 19.2 Guidelines for translators +
+ +
+ 19.2.1 Translation hints +
+ +
+ +
+ +


+
+ +

+ Live Systems Manual +

+
+ +


+
+ +

+ About +

+
+ +


+
+ +

+ About this manual +

+
+ +


+
+ +

+ 1. About this manual +

+
+ +
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +


+
+ +
+ 1.1 For the impatient +
+
+ +
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +


+
+ +
+ 1.2 Terms +
+
+ +
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +


+
+ +
+ 1.3 Authors +
+
+ +
+ +

+ A list of authors (in alphabetical order): +

+
+ +
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +


+
+ +
+ 1.4 Contributing to this document +
+
+ +
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +
+ +
+ 1.4.1 Applying changes +
+
+ +
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +
+ +

+ $ make build
+

+
+ +
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +
+ +

+ $ make build PROOF=1
+

+
+ +
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de
+

+
+ +
+ +

+ It is also possible to build by document type, e.g: +

+
+ +
+ +

+ $ make build FORMATS=pdf
+

+
+ +
+ +

+ Or combine both, e.g: +

+
+ +
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +
+ +
+ 1.4.2 Translation +
+
+ +
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+
+ +


+
+ +

+ About the Live Systems Project +

+
+ +


+
+ +

+ 2. About the Live Systems Project +

+
+ +


+
+ +
+ 2.1 Motivation +
+
+ +
+ +
+ 2.1.1 What is wrong with current live systems +
+
+ +
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +
+ +
+ 2.1.2 Why create our own live system? +
+
+ +
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +


+
+ +
+ 2.2 Philosophy +
+
+ +
+ +
+ 2.2.1 Only unchanged packages from Debian "main" +
+
+ +
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +
+ +
+ 2.2.2 No package configuration of the live system +
+
+ +
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +


+
+ +
+ 2.3 Contact +
+
+ +
+ + +
+ +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+
+ +


+
+ +

+ User +

+
+ +


+
+ +

+ Installation +

+
+ +


+
+ +

+ 3. Installation +

+
+ +


+
+ +
+ 3.1 Requirements +
+
+ +
+ +

+ Building live system images has very few system requirements: +

+
+ +
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
+ +
    +
  • + debootstrap +
  • +
+
+ +
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +


+
+ +
+ 3.2 Installing live-build +
+
+ +
+ +

+ You can install live-build in a number of different ways: +

+
+ +
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
+ +
    +
  • + From source +
  • +
+
+ +
+ +
    +
  • + From snapshots +
  • +
+
+ +
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +
+ +
+ 3.2.1 From the Debian repository +
+
+ +
+ +

+ Simply install live-build like any other package: +

+
+ +
+ +

+ # apt-get install live-build
+

+
+ +
+ +
+ 3.2.2 From source +
+
+ +
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +
+ +

+ You can build and install your own Debian package by executing: +

+
+ +
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +
+ +

+ # make install
+

+
+ +
+ +

+ and uninstall it with: +

+
+ +
+ +

+ # make uninstall
+

+
+ +
+ +
+ 3.2.3 From 'snapshots' +
+
+ +
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +


+
+ +
+ 3.3 Installing live-boot and live-config +
+
+ +
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +
+ +
+ 3.3.1 From the Debian repository +
+
+ +
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +
+ +
+ 3.3.2 From source +
+
+ +
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +
+ +
+ 3.3.3 From 'snapshots' +
+
+ +
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+
+ +


+
+ +

+ The basics +

+
+ +


+
+ +

+ 4. The basics +

+
+ +
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +


+
+ +
+ 4.1 What is a live system? +
+
+ +
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +


+
+ +
+ 4.2 Downloading prebuilt images +
+
+ +
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +


+
+ +
+ 4.3 Using the web live image builder +
+
+ +
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +
+ +
+ 4.3.1 Web builder usage and caveats +
+
+ +
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +


+
+ +
+ 4.4 First steps: building an ISO hybrid image +
+
+ +
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +


+
+ +
+ 4.5 Using an ISO hybrid live image +
+
+ +
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +
+ +
+ 4.5.1 Burning an ISO image to a physical medium +
+
+ +
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +
+ +
+ 4.5.2 Copying an ISO hybrid image to a USB stick +
+
+ +
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +
+ +
+ 4.5.3 Using the space left on a USB stick +
+
+ +
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +
+ +

+ # gparted ${USBSTICK}
+

+
+ +
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +
+ +
+ 4.5.4 Booting the live medium +
+
+ +
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +


+
+ +
+ 4.6 Using a virtual machine for testing +
+
+ +
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +
+ +
+ 4.6.1 Testing an ISO image with QEMU +
+
+ +
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +
+ +

+ Booting an ISO image is simple: +

+
+ +
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +
+ +

+ See the man pages for more details. +

+
+ +
+ +
+ 4.6.2 Testing an ISO image with VirtualBox +
+
+ +
+ +

+ In order to test the ISO with virtualbox: +

+
+ +
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +


+
+ +
+ 4.7 Building and using an HDD image +
+
+ +
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +
+ +

+ # lb clean --binary
+

+
+ +
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +
+ +

+ $ lb config -b hdd
+

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +


+
+ +
+ 4.8 Building a netboot image +
+
+ +
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +
+ +

+ Now build the image with the lb build command: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +
+ +
+ 4.8.1 DHCP server +
+
+ +
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +
+ +
+ 4.8.2 TFTP server +
+
+ +
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +
+ +
+ 4.8.3 NFS server +
+
+ +
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +
+ +

+ # exportfs -rv
+

+
+ +
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +
+ +
+ 4.8.4 Netboot testing HowTo +
+
+ +
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +
+ +

+ To make our life easier, we can use virtualization. +

+
+ +
+ +
+ 4.8.5 Qemu +
+
+ +
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +
+ +

+ Edit /etc/qemu-ifup: +

+
+ +
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +


+
+ +
+ 4.9 Webbooting +
+
+ +
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +
+ +
+ 4.9.1 Getting the webboot files +
+
+ +
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +
+ +
+ 4.9.2 Booting webboot images +
+
+ +
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+
+ +


+
+ +

+ Overview of tools +

+
+ +


+
+ +

+ 5. Overview of tools +

+
+ +
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +


+
+ +
+ 5.1 The live-build package +
+
+ +
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +
+ +
+ 5.1.1 The lb config command +
+
+ +
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +
+ +

+ $ lb config --apt aptitude
+

+
+ +
+ +

+ It is possible to specify many options, such as: +

+
+ +
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +
+ +
+ 5.1.2 The lb build command +
+
+ +
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +
+ +
+ 5.1.3 The lb clean command +
+
+ +
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +


+
+ +
+ 5.2 The live-boot package +
+
+ +
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +


+
+ +
+ 5.3 The live-config package +
+
+ +
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+
+ +


+
+ +

+ Managing a configuration +

+
+ +


+
+ +

+ 6. Managing a configuration +

+
+ +
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +


+
+ +
+ 6.1 Dealing with configuration changes +
+
+ +
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +
+ +
+ 6.1.1 Why use auto scripts? What do they do? +
+
+ +
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +
+ +
+ 6.1.2 Use example auto scripts +
+
+ +
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +


+
+ +
+ 6.2 Clone a configuration published via Git +
+
+ +
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +
+ +

+ $ lb config --config lso:live-images
+

+
+ +
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 7. Customization overview +

+
+ +
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +


+
+ +
+ 7.1 Build time vs. boot time configuration +
+
+ +
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +


+
+ +
+ 7.2 Stages of the build +
+
+ +
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +


+
+ +
+ 7.3 Supplement lb config with files +
+
+ +
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +


+
+ +
+ 7.4 Customization tasks +
+
+ +
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+
+ +


+
+ +

+ Customizing package installation +

+
+ +


+
+ +

+ 8. Customizing package installation +

+
+ +
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +


+
+ +
+ 8.1 Package sources +
+
+ +
+ +
+ 8.1.1 Distribution, archive areas and mode +
+
+ +
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +
+ +

+ $ lb config --distribution sid
+

+
+ +
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +
+ +
+ 8.1.2 Distribution mirrors +
+
+ +
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +
+ +
+ 8.1.3 Distribution mirrors used at build time +
+
+ +
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +
+ +
+ 8.1.4 Distribution mirrors used at run time +
+
+ +
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +
+ +
+ 8.1.5 Additional repositories +
+
+ +
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +


+
+ +
+ 8.2 Choosing packages to install +
+
+ +
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +
+ +
+ 8.2.1 Package lists +
+
+ +
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +
+ +
+ 8.2.2 Using metapackages +
+
+ +
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +
+ +

+ $ debtags search role::metapackage
+

+
+ +
+ +
+ 8.2.3 Local package lists +
+
+ +
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +
+ +
+ 8.2.4 Local binary package lists +
+
+ +
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +
+ +
+ 8.2.5 Generated package lists +
+
+ +
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +
+ +
+ 8.2.6 Using conditionals inside package lists +
+
+ +
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +
+ +

+ The nesting of conditionals is not supported. +

+
+ +
+ +
+ 8.2.7 Removing packages at install time +
+
+ +
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +
+ +
+ 8.2.8 Desktop and language tasks +
+
+ +
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +
+ +
+ 8.2.9 Kernel flavour and version +
+
+ +
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +
+ +
+ 8.2.10 Custom kernels +
+
+ +
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +


+
+ +
+ 8.3 Installing modified or third-party packages +
+
+ +
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
+ +
    +
  • + packages.chroot +
  • +
+
+ +
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +
+ +
+ 8.3.1 Using packages.chroot to install custom packages +
+
+ +
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +
+ +
+ 8.3.2 Using an APT repository to install custom packages +
+
+ +
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +
+ +
+ 8.3.3 Custom packages and APT +
+
+ +
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +


+
+ +
+ 8.4 Configuring APT at build time +
+
+ +
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +
+ +
+ 8.4.1 Choosing apt or aptitude +
+
+ +
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +
+ +
+ 8.4.2 Using a proxy with APT +
+
+ +
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +
+ +
+ 8.4.3 Tweaking APT to save space +
+
+ +
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +
+ +

+ $ lb config --apt-indices false
+

+
+ +
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +
+ +

+ $ lb config --apt-recommends false
+

+
+ +
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +
+ +
+ 8.4.4 Passing options to apt or aptitude +
+
+ +
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +
+ +
+ 8.4.5 APT pinning +
+
+ +
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+
+ +


+
+ +

+ Customizing contents +

+
+ +


+
+ +

+ 9. Customizing contents +

+
+ +
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +


+
+ +
+ 9.1 Includes +
+
+ +
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +
+ +
+ 9.1.1 Live/chroot local includes +
+
+ +
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +
+ +

+ Your configuration will then have the following layout: +

+
+ +
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +
+ +
+ 9.1.2 Binary local includes +
+
+ +
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +


+
+ +
+ 9.2 Hooks +
+
+ +
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +
+ +
+ 9.2.1 Chroot local hooks +
+
+ +
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.2 Binary local hooks +
+
+ +
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +
+ +
+ 9.2.3 Boot-time hooks +
+
+ +
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +


+
+ +
+ 9.3 Preseeding Debconf questions +
+
+ +
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+
+ +


+
+ +

+ Customizing run time behaviours +

+
+ +


+
+ +

+ 10. Customizing run time behaviours +

+
+ +
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +


+
+ +
+ 10.1 Customizing the live user +
+
+ +
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +


+
+ +
+ 10.2 Customizing locale and language +
+
+ +
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
+ +
    +
  • + the locale generation +
  • +
+
+ +
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +


+
+ +
+ 10.3 Persistence +
+
+ +
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ + + +
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +
+ +
+ 10.3.1 The persistence.conf file +
+
+ +
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +
+ +
+ 10.3.2 Using more than one persistence store +
+
+ +
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +
+ +
+ 10.3.3 Using persistence with encryption +
+
+ +
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +
+ +

+ To install cryptsetup on your machine: +

+
+ +
+ +

+ # apt-get install cryptsetup
+

+
+ +
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +
+ +

+ Then unmount the mount point: +

+
+ +
+ +

+ # umount /mnt
+

+
+ +
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +
+ +

+ # cryptsetup luksClose live
+

+
+ +
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+
+ +


+
+ +

+ Customizing the binary image +

+
+ +


+
+ +

+ 11. Customizing the binary image +

+
+ +


+
+ +
+ 11.1 Bootloaders +
+
+ +
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +


+
+ +
+ 11.2 ISO metadata +
+
+ +
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+
+ +


+
+ +

+ Customizing Debian Installer +

+
+ +


+
+ +

+ 12. Customizing Debian Installer +

+
+ +
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +


+
+ +
+ 12.1 Types of Debian Installer +
+
+ +
+ +

+ The three main types of installer are: +

+
+ +
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +


+
+ +
+ 12.2 Customizing Debian Installer by preseeding +
+
+ +
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +


+
+ +
+ 12.3 Customizing Debian Installer content +
+
+ +
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+
+ +


+
+ +

+ Project +

+
+ +


+
+ +

+ Contributing to the project +

+
+ +


+
+ +

+ 13. Contributing to the project +

+
+ +
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
+ +
    +
  • + Merge commits. +
  • +
+
+ +
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +


+
+ +
+ 13.1 Making changes +
+
+ +
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +
+ +

+ $ git push
+

+
+ +


+
+ +
+ 13.2 Translation of man pages +
+
+ +
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+
+ +


+
+ +

+ Reporting bugs +

+
+ +


+
+ +

+ 14. Reporting bugs +

+
+ +
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +
+ +

+ For the impatient: +

+
+ +
+ + +
+ +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +


+
+ +
+ 14.1 Known issues +
+
+ +
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +


+
+ +
+ 14.2 Rebuild from scratch +
+
+ +
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +


+
+ +
+ 14.3 Use up-to-date packages +
+
+ +
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +


+
+ +
+ 14.4 Collect information +
+
+ +
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +


+
+ +
+ 14.5 Isolate the failing case if possible +
+
+ +
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +


+
+ +
+ 14.6 Use the correct package to report the bug against +
+
+ +
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +
+ +
+ 14.6.1 At build time while bootstrapping +
+
+ +
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +
+ +
+ 14.6.2 At build time while installing packages +
+
+ +
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +
+ +
+ 14.6.3 At boot time +
+
+ +
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +
+ +
+ 14.6.4 At run time +
+
+ +
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +


+
+ +
+ 14.7 Do the research +
+
+ +
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +


+
+ +
+ 14.8 Where to report bugs +
+
+ +
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+
+ +


+
+ +

+ Coding Style +

+
+ +


+
+ +

+ 15. Coding Style +

+
+ +
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +


+
+ +
+ 15.1 Compatibility +
+
+ +
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +


+
+ +
+ 15.2 Indenting +
+
+ +
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +


+
+ +
+ 15.3 Wrapping +
+
+ +
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if foo; then
+         bar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ Foo () {
+         bar
+}
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +


+
+ +
+ 15.4 Variables +
+
+ +
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ FOO=bar
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ FOO="bar"
+

+
+ +
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +
+ +

+ Bad: +

+
+ +
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +
+ +

+ Good: +

+
+ +
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +


+
+ +
+ 15.5 Miscellaneous +
+
+ +
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+
+ +


+
+ +

+ Procedures +

+
+ +


+
+ +

+ 16. Procedures +

+
+ +
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +


+
+ +
+ 16.1 Major Releases +
+
+ +
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +


+
+ +
+ 16.2 Point Releases +
+
+ +
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +
+ +
+ 16.2.1 Last Point Release of a Debian Release +
+
+ +
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +
+ +
+ 16.2.2 Point release announcement template +
+
+ +
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+
+ +


+
+ +

+ Git repositories +

+
+ +


+
+ +

+ 17. Git repositories +

+
+ +
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ Or, +

+
+ +
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +
+ +

+ $ git checkout debian-next
+

+
+ +
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +


+
+ +
+ 17.1 Handling multiple repositories +
+
+ +
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ Examples +

+
+ +


+
+ +

+ 18. Examples +

+
+ +
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +


+
+ +
+ 18.1 Using the examples +
+
+ +
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +


+
+ +
+ 18.2 Tutorial 1: A default image +
+
+ +
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +
+ +

+ You can't get much simpler than this: +

+
+ +
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +


+
+ +
+ 18.3 Tutorial 2: A web browser utility +
+
+ +
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +


+
+ +
+ 18.4 Tutorial 3: A personalized image +
+
+ +
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +
+ +
+ 18.4.1 First revision +
+
+ +
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +
+ +

+ Edit auto/config to read as follows: +

+
+ +
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +
+ +

+ $ lb config
+

+
+ +
+ +

+ Now populate your local package list: +

+
+ +
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +
+ +

+ Now, build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +
+ +
+ 18.4.2 Second revision +
+
+ +
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +
+ +

+ # lb clean
+

+
+ +
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +
+ +

+ Build again: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +


+
+ +
+ 18.5 A VNC Kiosk Client +
+
+ +
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +
+ +

+ Build the image: +

+
+ +
+ +

+ # lb build
+

+
+ +
+ +

+ Enjoy. +

+
+ +


+
+ +
+ 18.6 A base image for a 128MB USB key +
+
+ +
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +
+ +

+ Now, build the image in the usual way: +

+
+ +
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +


+
+ +
+ 18.7 A localized GNOME desktop and installer +
+
+ +
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+
+ +


+
+ +

+ Appendix +

+
+ +


+
+ +

+ Style guide +

+
+ +


+
+ +

+ 19. Style guide +

+
+ +


+
+ +
+ 19.1 Guidelines for authors +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +
+ +
+ 19.1.1 Linguistic features +
+
+ +
+ +
    +
  • + Use plain English +
  • +
+
+ +
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
+ +
    +
  • + Variety of English +
  • +
+
+ +
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
+ +
    +
  • + Be balanced +
  • +
+
+ +
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
+ +
    +
  • + Be politically correct +
  • +
+
+ +
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
+ +
    +
  • + Be concise +
  • +
+
+ +
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
+ +
    +
  • + Minimize translation work +
  • +
+
+ +
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
+ +
    +
  • + Be coherent +
  • +
+
+ +
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
+ +
    +
  • + Be cohesive +
  • +
+
+ +
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
+ +
    +
  • + Be descriptive +
  • +
+
+ +
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
+ +
    +
  • + Dictionary +
  • +
+
+ +
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +
+ +
+ 19.1.2 Procedures +
+
+ +
+ +
    +
  • + Test before write +
  • +
+
+ +
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
+ +
    +
  • + Examples +
  • +
+
+ +
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
+ +
    +
  • + External links +
  • +
+
+ +
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
+ +
    +
  • + Chapters +
  • +
+
+ +
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +
+ +

+ $ sisu --help markup
+

+
+ +
+ +

+ Here are some markup examples that may prove useful: +

+
+ +
+ +

+ - For emphasis/bold text: +

+
+ +
+ +

+ *{foo}* or !{foo}!
+

+
+ +
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +
+ +

+ - For italics: +

+
+ +
+ +

+ /{foo}/
+

+
+ +
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +
+ +

+ - For monospace: +

+
+ +
+ +

+ #{foo}#
+

+
+ +
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +
+ +

+ - For code blocks: +

+
+ +
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +
+ +

+ produces: +

+
+ +
+ +

+ $ foo
+# bar
+

+
+ +
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +


+
+ +
+ 19.2 Guidelines for translators +
+
+ +
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +
+ +
+ 19.2.1 Translation hints +
+
+ +
+ +
    +
  • + Comments +
  • +
+
+ +
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
+ +
    +
  • + False friends +
  • +
+
+ +
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
+ +
    +
  • + Markup +
  • +
+
+ +
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
+ +
    +
  • + Code blocks +
  • +
+
+ +
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
+ +
    +
  • + Newlines +
  • +
+
+ +
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +
+ +

+ Translators should never translate: +

+
+ +
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +
+ +

+ - The names of programs +

+
+ +
+ +

+ - The commands given as examples +

+
+ +
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +
+ +

+ - Links +

+
+ +
+ +

+ - Paths +

+
+ +
+ +
+ + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   +
+

+ + + +

+ + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/about-manual.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/about-manual.en.html new file mode 100644 index 0000000..dbf850a --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/about-manual.en.html @@ -0,0 +1,522 @@ + + + + + + about-manual - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About this manual +

+
+ +

+ 1. About this manual +

+
+ +

+ This manual serves as a single access point to all documentation related to the Live Systems Project and in particular applies to the software produced by the project for the Debian 9.0 "stretch" release. An up-to-date version can always be found at ‹http://debian-live.alioth.debian.org/› +

+
+ +

+ While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence. +

+
+ +

+ Some of the commands mentioned in the text must be executed with superuser privileges which can be obtained by becoming the root user via su or by using sudo. To distinguish between commands which may be executed by an unprivileged user and those requiring superuser privileges, commands are prepended by $ or # respectively. This symbol is not a part of the command. +

+
+ +

+ 1.1 For the impatient +

+
+ +

+ While we believe that everything in this manual is important to at least some of our users, we realize it is a lot of material to cover and that you may wish to experience early success using the software before delving into the details. Therefore, we suggest reading in the following order. +

+
+ +

+ First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems. +

+
+ +

+ We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover. +

+
+ +

+ 1.2 Terms +

+
+ +
    +
  • + Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting). +
  • +
+
+ +
    +
  • + Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files. +
  • +
+
+ +
    +
  • + Live Systems Project: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages. +
  • +
+
+ +
    +
  • + Host system: The environment used to create the live system. +
  • +
+
+ +
    +
  • + Target system: The environment used to run the live system. +
  • +
+
+ +
    +
  • + live-boot: A collection of scripts used to boot live systems. +
  • +
+
+ +
    +
  • + live-build: A collection of scripts used to build customized live systems. +
  • +
+
+ +
    +
  • + live-config: A collection of scripts used to configure a live system during the boot process. +
  • +
+
+ +
    +
  • + live-tools: A collection of additional scripts used to perform useful tasks within a running live system. +
  • +
+
+ +
    +
  • + live-manual: This document is maintained in a package called live-manual. +
  • +
+
+ +
    +
  • + Debian Installer (d-i): The official installation system for the Debian distribution. +
  • +
+
+ +
    +
  • + Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config. +
  • +
+
+ +
    +
  • + chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. +
  • +
+
+ +
    +
  • + Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img. +
  • +
+
+ +
    +
  • + Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system. +
  • +
+
+ +
    +
  • + stable/testing/unstable: The stable distribution, currently codenamed stretch, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed buster, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as buster or sid, as that is what is supported by the tools themselves. +
  • +
+
+ +

+ 1.3 Authors +

+
+ +

+ A list of authors (in alphabetical order): +

+
+ +
    +
  • + Ben Armstrong +
  • +
+
+ +
    +
  • + Brendan Sleight +
  • +
+
+ +
    +
  • + Carlos Zuferri +
  • +
+
+ +
    +
  • + Chris Lamb +
  • +
+
+ +
    +
  • + Daniel Baumann +
  • +
+
+ +
    +
  • + Franklin Piat +
  • +
+
+ +
    +
  • + Jonas Stein +
  • +
+
+ +
    +
  • + Kai Hendry +
  • +
+
+ +
    +
  • + Marco Amadori +
  • +
+
+ +
    +
  • + Mathieu Geli +
  • +
+
+ +
    +
  • + Matthias Kirschner +
  • +
+
+ +
    +
  • + Richard Nelson +
  • +
+
+ +
    +
  • + Trent W. Buck +
  • +
+
+ +

+ 1.4 Contributing to this document +

+
+ +

+ This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits. +

+
+ +

+ 1.4.1 Applying changes +

+
+ +

+ In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing: +

+
+ +

+ # apt-get install make po4a ruby ruby-nokogiri sisu-complete
+

+
+ +

+ You may build the live-manual from the top level directory of your Git checkout by executing: +

+
+ +

+ $ make build
+

+
+ +

+ Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g: +

+
+ +

+ $ make build PROOF=1
+

+
+ +

+ When proofing one of the translations it is possible to build only one language by executing, e.g: +

+
+ +

+ $ make build LANGUAGES=de
+

+
+ +

+ It is also possible to build by document type, e.g: +

+
+ +

+ $ make build FORMATS=pdf
+

+
+ +

+ Or combine both, e.g: +

+
+ +

+ $ make build LANGUAGES=de FORMATS=html
+

+
+ +

+ After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details. +

+
+ +

+ 1.4.2 Translation +

+
+ +

+ Note: For the translation of the man pages see Translation of man pages +

+
+ +

+ In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Start a new translation from scratch +
  • +
+
+ +
    +
  • + Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors. +
  • +
+
+ +
    +
  • + Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets. +
  • +
+
+ +
    +
  • + Continue with an already started translation +
  • +
+
+ +
    +
  • + If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit) . +
  • +
+
+ +
    +
  • + Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m "Translating..." and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes +
  • +
+
+ +

+ After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution. +

+
+ +

+ live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is "make translate". It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the "make fixfuzzy" target, only acts upon changed strings but it helps you to find and fix them one by one. +

+
+ +

+ Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators. +

+
+ +

+ Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/about-project.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/about-project.en.html new file mode 100644 index 0000000..2c02972 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/about-project.en.html @@ -0,0 +1,314 @@ + + + + + + about-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ About the Live Systems Project +

+
+ +

+ 2. About the Live Systems Project +

+
+ +

+ 2.1 Motivation +

+
+ +

+ 2.1.1 What is wrong with current live systems +

+
+ +

+ When Live Systems Project was initiated, there were already several Debian based live systems available and they are doing a great job. From the Debian perspective most of them have one or more of the following disadvantages: +

+
+ +
    +
  • + They are not Debian projects and therefore lack support from within Debian. +
  • +
+
+ +
    +
  • + They mix different distributions, e.g. testing and unstable. +
  • +
+
+ +
    +
  • + They support i386 only. +
  • +
+
+ +
    +
  • + They modify the behaviour and/or appearance of packages by stripping them down to save space. +
  • +
+
+ +
    +
  • + They include packages from outside of the Debian archive. +
  • +
+
+ +
    +
  • + They ship custom kernels with additional patches that are not part of Debian. +
  • +
+
+ +
    +
  • + They are large and slow due to their sheer size and thus not suitable for rescue issues. +
  • +
+
+ +
    +
  • + They are not available in different flavours, e.g. CDs, DVDs, USB-stick and netboot images. +
  • +
+
+ +

+ 2.1.2 Why create our own live system? +

+
+ +

+ Debian is the Universal Operating System: Debian has a live system to show around and to accurately represent the Debian system with the following main advantages: +

+
+ +
    +
  • + It is a subproject of Debian. +
  • +
+
+ +
    +
  • + It reflects the (current) state of one distribution. +
  • +
+
+ +
    +
  • + It runs on as many architectures as possible. +
  • +
+
+ +
    +
  • + It consists of unchanged Debian packages only. +
  • +
+
+ +
    +
  • + It does not contain any packages that are not in the Debian archive. +
  • +
+
+ +
    +
  • + It uses an unaltered Debian kernel with no additional patches. +
  • +
+
+ +

+ 2.2 Philosophy +

+
+ +

+ 2.2.1 Only unchanged packages from Debian "main" +

+
+ +

+ We will only use packages from the Debian repository in the "main" section. The non-free section is not part of Debian and therefore cannot be used for official live system images. +

+
+ +

+ We will not change any packages. Whenever we need to change something, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ As an exception, our own packages such as live-boot, live-build or live-config may temporarily be used from our own repository for development reasons (e.g. to create development snapshots). They will be uploaded to Debian on a regular basis. +

+
+ +

+ 2.2.2 No package configuration of the live system +

+
+ +

+ In this phase we will not ship or install sample or alternative configurations. All packages are used in their default configuration as they are after a regular installation of Debian. +

+
+ +

+ Whenever we need a different default configuration, we will do that in coordination with its package maintainer in Debian. +

+
+ +

+ A system for configuring packages is provided using debconf allowing custom configured packages to be installed in your custom produced live system images, but for the prebuilt live images we choose to leave packages in their default configuration, unless absolutely necessary in order to work in the live environment. Wherever possible, we prefer to adapt packages within the Debian archive to work better in a live system versus making changes to the live toolchain or prebuilt image configurations. For more information, please see Customization overview. +

+
+ +

+ 2.3 Contact +

+
+ + +
+ +
    +
  • + IRC: A number of users and developers are present in the #debian-live channel on irc.debian.org (OFTC). When asking a question on IRC, please be patient for an answer. If no answer is forthcoming, please email the mailing list. +
  • +
+
+ +
    +
  • + BTS : The Debian Bug Tracking System (BTS) contains details of bugs reported by users and developers. Each bug is given a number, and is kept on file until it is marked as having been dealt with. For more information, please see Reporting bugs. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/bugs.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/bugs.en.html new file mode 100644 index 0000000..ac139e0 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/bugs.en.html @@ -0,0 +1,419 @@ + + + + + + bugs - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Reporting bugs +

+
+ +

+ 14. Reporting bugs +

+
+ +

+ Live systems are far from being perfect, but we want to make it as close as possible to perfect - with your help. Do not hesitate to report a bug. It is better to fill a report twice than never. However, this chapter includes recommendations on how to file good bug reports. +

+
+ +

+ For the impatient: +

+
+ + +
+ +
    +
  • + Before submitting a bug report always try to reproduce the bug with the most recent versions of the branch of live-build, live-boot, live-config and live-tools that you're using (like the newest 4.x version of live-build if you're using live-build 4). +
  • +
+
+ +
    +
  • + Try to give as specific information as possible about the bug. This includes (at least) the version of live-build, live-boot, live-config, and live-tools used and the distribution of the live system you are building. +
  • +
+
+ +

+ 14.1 Known issues +

+
+ +

+ Since Debian testing and Debian unstable distributions are moving targets, when you specify either of them as the target system distribution, a successful build may not always be possible. +

+
+ +

+ If this causes too much difficulty for you, do not build a system based on testing or unstable, but rather, use stable. live-build always defaults to the stable release. +

+
+ +

+ Currently known issues are listed under the section 'status' on our homepage at ‹http://debian-live.alioth.debian.org/›. +

+
+ +

+ It is out of the scope of this manual to train you to correctly identify and fix problems in packages of the development distributions, however, there are two things you can always try: If a build fails when the target distribution is testing, try unstable. If unstable does not work either, revert to testing and pin the newer version of the failing package from unstable (see APT pinning for details). +

+
+ +

+ 14.2 Rebuild from scratch +

+
+ +

+ To ensure that a particular bug is not caused by an uncleanly built system, please always rebuild the whole live system from scratch to see if the bug is reproducible. +

+
+ +

+ 14.3 Use up-to-date packages +

+
+ +

+ Using outdated packages can cause significant problems when trying to reproduce (and ultimately fix) your problem. Make sure your build system is up-to-date and any packages included in your image are up-to-date as well. +

+
+ +

+ 14.4 Collect information +

+
+ +

+ Please provide enough information with your report. Include, at least, the exact version of live-build where the bug is encountered and the steps to reproduce it. Please use your common sense and provide any other relevant information if you think that it might help in solving the problem. +

+
+ +

+ To make the most out of your bug report, we require at least the following information: +

+
+ +
    +
  • + Architecture of the host system +
  • +
+
+ +
    +
  • + Distribution of the host system +
  • +
+
+ +
    +
  • + Version of live-build on the host system +
  • +
+
+ +
    +
  • + Version of debootstrap on the host system +
  • +
+
+ +
    +
  • + Architecture of the live system +
  • +
+
+ +
    +
  • + Distribution of the live system +
  • +
+
+ +
    +
  • + Version of live-boot on the live system +
  • +
+
+ +
    +
  • + Version of live-config on the live system +
  • +
+
+ +
    +
  • + Version of live-tools on the live system +
  • +
+
+ +

+ You can generate a log of the build process by using the tee command. We recommend doing this automatically with an auto/build script (see Managing a configuration for details). +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ At boot time, live-boot and live-config store their logfiles in /var/log/live/. Check them for error messages. +

+
+ +

+ Additionally, to rule out other errors, it is always a good idea to tar up your config/ directory and upload it somewhere (do not send it as an attachment to the mailing list), so that we can try to reproduce the errors you encountered. If this is difficult (e.g. due to size) you can use the output of lb config --dump which produces a summary of your config tree (i.e. lists files in subdirectories of config/ but does not include them). +

+
+ +

+ Remember to send in any logs that were produced with English locale settings, e.g. run your live-build commands with a leading LC_ALL=C or LC_ALL=en_US. +

+
+ +

+ 14.5 Isolate the failing case if possible +

+
+ +

+ If possible, isolate the failing case to the smallest possible change that breaks. It is not always easy to do this so if you cannot manage it for your report, do not worry. However, if you plan your development cycle well, using small enough change sets per iteration, you may be able to isolate the problem by constructing a simpler 'base' configuration that closely matches your actual configuration plus just the broken change set added to it. If you have a hard time sorting out which of your changes broke, it may be that you are including too much in each change set and should develop in smaller increments. +

+
+ +

+ 14.6 Use the correct package to report the bug against +

+
+ +

+ If you do not know what component is responsible for the bug or if the bug is a general bug concerning live systems, you can fill a bug against the debian-live pseudo-package. +

+
+ +

+ However, we would appreciate it if you try to narrow it down according to where the bug appears. +

+
+ +

+ 14.6.1 At build time while bootstrapping +

+
+ +

+ live-build first bootstraps a basic Debian system with debootstrap. If a bug appears here, check if the error is related to a specific Debian package (most likely), or if it is related to the bootstrapping tool itself. +

+
+ +

+ In both cases, this is not a bug in the live system, but rather in Debian itself and probably we cannot fix it directly. Please report such a bug against the bootstrapping tool or the failing package. +

+
+ +

+ 14.6.2 At build time while installing packages +

+
+ +

+ live-build installs additional packages from the Debian archive and depending on the Debian distribution used and the daily archive state, it can fail. If a bug appears here, check if the error is also reproducible on a normal system. +

+
+ +

+ If this is the case, this is not a bug in the live system, but rather in Debian - please report it against the failing package. Running debootstrap separately from the Live system build or running lb bootstrap --debug will give you more information. +

+
+ +

+ Also, if you are using a local mirror and/or any sort of proxy and you are experiencing a problem, please always reproduce it first by bootstrapping from an official mirror. +

+
+ +

+ 14.6.3 At boot time +

+
+ +

+ If your image does not boot, please report it to the mailing list together with the information requested in Collect information. Do not forget to mention, how/when the image failed exactly, whether using virtualization or real hardware. If you are using a virtualization technology of any kind, please always run it on real hardware before reporting a bug. Providing a screenshot of the failure is also very helpful. +

+
+ +

+ 14.6.4 At run time +

+
+ +

+ If a package was successfully installed, but fails while actually running the Live system, this is probably a bug in the live system. However: +

+
+ +

+ 14.7 Do the research +

+
+ +

+ Before filing the bug, please search the web for the particular error message or symptom you are getting. As it is highly unlikely that you are the only person experiencing a particular problem. There is always a chance that it has been discussed elsewhere and a possible solution, patch, or workaround has been proposed. +

+
+ +

+ You should pay particular attention to the live systems mailing list, as well as the homepage, as these are likely to contain the most up-to-date information. If such information exists, always include the references to it in your bug report. +

+
+ +

+ In addition, you should check the current bug lists for live-build, live-boot, live-config and live-tools to see whether something similar has already been reported. +

+
+ +

+ 14.8 Where to report bugs +

+
+ +

+ The Live Systems Project keeps track of all bugs in the Bug Tracking System (BTS). For information on how to use the system, please see ‹https://bugs.debian.org/›. You can also submit the bugs by using the reportbug command from the package with the same name. +

+
+ +

+ In general, you should report build time errors against the live-build package, boot time errors against live-boot, and run time errors against live-config. If you are unsure of which package is appropriate or need more help before submitting a bug report, please report it against the debian-live pseudo-package. We will then take care about it and reassign it where appropriate. +

+
+ +

+ Please note that bugs found in distributions derived from Debian (such as Ubuntu and others) should not be reported to the Debian BTS unless they can be also reproduced on a Debian system using official Debian packages. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/coding-style.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/coding-style.en.html new file mode 100644 index 0000000..f603650 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/coding-style.en.html @@ -0,0 +1,400 @@ + + + + + + coding-style - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Coding Style +

+
+ +

+ 15. Coding Style +

+
+ +

+ This chapter documents the coding style used in live systems. +

+
+ +

+ 15.1 Compatibility +

+
+ +
    +
  • + Don't use syntax or semantics that are unique to the Bash shell. For example, the use of array constructs. +
  • +
+
+ +
    +
  • + Only use the POSIX subset - for example, use $(foo) over `foo`. +
  • +
+
+ +
    +
  • + You can check your scripts with 'sh -n' and 'checkbashisms'. +
  • +
+
+ +
    +
  • + Make sure all shell code runs with 'set -e'. +
  • +
+
+ +

+ 15.2 Indenting +

+
+ +
    +
  • + Always use tabs over spaces. +
  • +
+
+ +

+ 15.3 Wrapping +

+
+ +
    +
  • + Generally, lines are 80 chars at maximum. +
  • +
+
+ +
    +
  • + Use the "Linux style" of line breaks: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if foo; then
+         bar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if foo
+then
+         bar
+fi
+

+
+ +
    +
  • + The same holds for functions: +
  • +
+
+ +

+ Bad: +

+
+ +

+ Foo () {
+         bar
+}
+

+
+ +

+ Good: +

+
+ +

+ Foo ()
+{
+         bar
+}
+

+
+ +

+ 15.4 Variables +

+
+ +
    +
  • + Variables are always in capital letters. +
  • +
+
+ +
    +
  • + Variables used in live-build always start with LB_ prefix. +
  • +
+
+ +
    +
  • + Internal temporary variables in live-build should start with the _LB_ prefix. +
  • +
+
+ +
    +
  • + Local variables start with live-build __LB_ prefix. +
  • +
+
+ +
    +
  • + Variables in connection to a boot parameter in live-config start with LIVE_. +
  • +
+
+ +
    +
  • + All other variables in live-config start with _ prefix. +
  • +
+
+ +
    +
  • + Use braces around variables; e.g. write ${FOO} instead of $FOO. +
  • +
+
+ +
    +
  • + Always protect variables with quotes to respect potential whitespaces: write "${FOO}" not ${FOO}. +
  • +
+
+ +
    +
  • + For consistency reasons, always use quotes when assigning values to variables: +
  • +
+
+ +

+ Bad: +

+
+ +

+ FOO=bar
+

+
+ +

+ Good: +

+
+ +

+ FOO="bar"
+

+
+ +
    +
  • + If multiple variables are used, quote the full expression: +
  • +
+
+ +

+ Bad: +

+
+ +

+ if [ -f "${FOO}"/foo/"${BAR}"/bar ]
+then
+         foobar
+fi
+

+
+ +

+ Good: +

+
+ +

+ if [ -f "${FOO}/foo/${BAR}/bar" ]
+then
+         foobar
+fi
+

+
+ +

+ 15.5 Miscellaneous +

+
+ +
    +
  • + Use "|" (without the surround quotes) as a separator in calls to sed, e.g. "sed -e 's|foo|bar|'" (without ""). +
  • +
+
+ +
    +
  • + Don't use the test command for comparisons or tests, use "[" "]" (without ""); e.g. "if [ -x /bin/foo ]; ..." and not "if test -x /bin/foo; ...". +
  • +
+
+ +
    +
  • + Use case wherever possible over test, as it's easier to read and faster in execution. +
  • +
+
+ +
    +
  • + Use capitalized names for functions to limit messing with the users environment. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/contributing-to-project.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/contributing-to-project.en.html new file mode 100644 index 0000000..49ff6f9 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/contributing-to-project.en.html @@ -0,0 +1,338 @@ + + + + + + contributing-to-project - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Contributing to the project +

+
+ +

+ 13. Contributing to the project +

+
+ +

+ When submitting a contribution, please clearly identify its copyright holder and include any applicable licensing statement. Note that to be accepted, the contribution must be licensed under the same license as the rest of the documents, namely, GPL version 3 or later. +

+
+ +

+ Contributions to the project, such as translations and patches, are greatly welcome. Anyone can directly commit to the repositories, however, we ask you to send bigger changes to the mailing list to discuss them first. See the section Contact for more information. +

+
+ +

+ The Live Systems Project uses Git as version control system and source code management. As explained in Git repositories there are two main development branches: debian and debian-next. Everybody can commit to the debian-next branches of the live-boot, live-build, live-config, live-images, live-manual and live-tools repositories. +

+
+ +

+ However, there are certain restrictions. The server will reject: +

+
+ +
    +
  • + Non fast-forward pushes. +
  • +
+
+ +
    +
  • + Merge commits. +
  • +
+
+ +
    +
  • + Adding or removing tags or branches. +
  • +
+
+ +

+ Even though all commits might be revised, we ask you to use your common sense and make good commits with good commit messages. +

+
+ +
    +
  • + Write commit messages that consist of complete, meaningful sentences in English, starting with a capital letter and ending with a full stop. Usually, these will start with the form "Fixing/Adding/Removing/Correcting/Translating/...". +
  • +
+
+ +
    +
  • + Write good commit messages. The first line must be an accurate summary of the contents of the commit which will be included in the changelog. If you need to make some further explanations, write them below leaving a blank line after the first one and then another blank line after each paragraph. Lines of paragraphs should not exceed 80 characters in length. +
  • +
+
+ +
    +
  • + Commit atomically, this is to say, do not mix unrelated things in the same commit. Make one different commit for each change you make. +
  • +
+
+ +

+ 13.1 Making changes +

+
+ +

+ In order to push to the repositories, you must follow the following procedure. Here we use live-manual as an example so replace it with the name of the repository you want to work with. For detailed information on how to edit live-manual see Contributing to this document. +

+
+ +
    +
  • + Fetch the public commit key: +
  • +
+
+ +

+ $ mkdir -p ~/.ssh/keys
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org -O ~/.ssh/keys/git@debian-live.alioth.debian.org
+$ wget http://debian-live.alioth.debian.org/other/keys/git@debian-live.alioth.debian.org.pub -O ~/.ssh/keys/git@debian-live.alioth.debian.org.pub
+$ chmod 0600 ~/.ssh/keys/git@debian-live.alioth.debian.org*
+

+
+ +
    +
  • + Add the following section to your openssh-client config: +
  • +
+
+ +

+ $ cat >> ~/.ssh/config << EOF
+Host debian-live.alioth.debian.org
+     Hostname debian-live.alioth.debian.org
+     User git
+     IdentitiesOnly yes
+     IdentityFile ~/.ssh/keys/git@debian-live.alioth.debian.org
+EOF
+

+
+ +
    +
  • + Check out a clone of live-manual through ssh: +
  • +
+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+$ cd live-manual && git checkout debian-next
+

+
+ +
    +
  • + Make sure you have Git author and email set: +
  • +
+
+ +

+   $ git config user.name "John Doe"
+  $ git config user.email john@example.org
+

+
+ +

+ Important: Remember that you should commit any changes on the debian-next branch. +

+
+ +
    +
  • + Make your changes. In this example you would first write a new section dealing with applying patches and then prepare to commit adding the files and writing your commit message like this: +
  • +
+
+ +

+ $ git commit -a -m "Adding a section on applying patches."
+

+
+ +
    +
  • + Push the commit to the server: +
  • +
+
+ +

+ $ git push
+

+
+ +

+ 13.2 Translation of man pages +

+
+ +

+ You can also contribute to the project working on the translation of the man pages for the different live-* packages that the project maintains. The procedure is different depending on whether you are starting a translation from scratch or continue working on an already existing one: +

+
+ +
    +
  • + Working on an already existing translation +
  • +
+
+ +

+ If you want to maintain the translation of an already existing language you have to make your changes to your manpages/po/${LANGUAGE}/*.po file or files and then run make rebuild from inside the manpages/ directory. This will update the actual man pages in manpages/${LANGUAGE}/* +

+
+ +
    +
  • + Starting a new translation from scratch +
  • +
+
+ +

+ In order to add a new translation of any of the project's man pages you have to follow a similar procedure. It could be summarized as follows: +

+
+ +
    +
  • + Open the manpages/pot/ file or files in your favourite editor, such as poedit, and save it as a .po file in manpages/po/${LANGUAGE}/. (You will have to create your ${LANGUAGE}/ directory). +
  • +
+
+ +
    +
  • + Run make rebuild from inside the manpages/ directory to create the manpages/${LANGUAGE}/ files which will contain the actual man pages. +
  • +
+
+ +

+ Remember that you will have to add all the directories and files, then make the commit and finally push to the git server. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customization-overview.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customization-overview.en.html new file mode 100644 index 0000000..8730608 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customization-overview.en.html @@ -0,0 +1,175 @@ + + + + + + customization-overview - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 7. Customization overview +

+
+ +

+ This chapter gives an overview of the various ways in which you may customize a live system. +

+
+ +

+ 7.1 Build time vs. boot time configuration +

+
+ +

+ Live system configuration options are divided into build-time options which are options that are applied at build time and boot-time options which are applied at boot time. Boot-time options are further divided into those occurring early in the boot, applied by the live-boot package, and those that happen later in the boot, applied by live-config. Any boot-time option may be modified by the user by specifying it at the boot prompt. The image may also be built with default boot parameters so users can normally just boot directly to the live system without specifying any options when all of the defaults are suitable. In particular, the argument to lb --bootappend-live consists of any default kernel command line options for the Live system, such as persistence, keyboard layouts, or timezone. See Customizing locale and language, for example. +

+
+ +

+ Build-time configuration options are described in the lb config man page. Boot-time options are described in the man pages for live-boot and live-config. Although the live-boot and live-config packages are installed within the live system you are building, it is recommended that you also install them on your build system for easy reference when you are working on your configuration. It is safe to do so, as none of the scripts contained within them are executed unless the system is configured as a live system. +

+
+ +

+ 7.2 Stages of the build +

+
+ +

+ The build process is divided into stages, with various customizations applied in sequence in each. The first stage to run is the bootstrap stage. This is the initial phase of populating the chroot directory with packages to make a barebones Debian system. This is followed by the chroot stage, which completes the construction of chroot directory, populating it with all of the packages listed in the configuration, along with any other materials. Most customization of content occurs in this stage. The final stage of preparing the live image is the binary stage, which builds a bootable image, using the contents of the chroot directory to construct the root filesystem for the Live system, and including the installer and any other additional material on the target medium outside of the Live system's filesystem. After the live image is built, if enabled, the source tarball is built in the source stage. +

+
+ +

+ Within each of these stages, there is a particular sequence in which commands are applied. These are arranged in such a way as to ensure customizations can be layered in a reasonable fashion. For example, within the chroot stage, preseeds are applied before any packages are installed, packages are installed before any locally included files are copied, and hooks are run later, after all of the materials are in place. +

+
+ +

+ 7.3 Supplement lb config with files +

+
+ +

+ Although lb config creates a skeletal configuration in the config/ directory, to accomplish your goals, you may need to provide additional files in subdirectories of config/. Depending on where the files are stored in the configuration, they may be copied into the live system's filesystem or into the binary image filesystem, or may provide build-time configurations of the system that would be cumbersome to pass as command-line options. You may include things such as custom lists of packages, custom artwork, or hook scripts to run either at build time or at boot time, boosting the already considerable flexibility of debian-live with code of your own. +

+
+ +

+ 7.4 Customization tasks +

+
+ +

+ The following chapters are organized by the kinds of customization task users typically perform: Customizing package installation, Customizing contents and Customizing locale and language cover just a few of the things you might want to do. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-binary.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-binary.en.html new file mode 100644 index 0000000..c82dd86 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-binary.en.html @@ -0,0 +1,196 @@ + + + + + + customizing-binary - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing the binary image +

+
+ +

+ 11. Customizing the binary image +

+
+ +

+ 11.1 Bootloaders +

+
+ +

+ live-build uses syslinux and some of its derivatives (depending on the image type) as bootloaders by default. They can be easily customized to suit your needs. +

+
+ +

+ In order to use a full theme, copy /usr/share/live/build/bootloaders into config/bootloaders and edit the files in there. If you do not want to bother modifying all supported bootloader configurations, only providing a local customized copy of one of the bootloaders, e.g. isolinux in config/bootloaders/isolinux is enough too, depending on your use case. +

+
+ +

+ When modifying one of the default themes, if you want to use a personalized background image that will be displayed together with the boot menu, add a splash.png picture of 640x480 pixels. Then, remove the splash.svg file. +

+
+ +

+ There are many possibilities when it comes to making changes. For instance, syslinux derivatives are configured by default with a timeout of 0 (zero) which means that they will pause indefinitely at their splash screen until you press a key. +

+
+ +

+ To modify the boot timeout of a default iso-hybrid image just edit a default isolinux.cfg file specifying the timeout in units of 1/10 seconds. A modified isolinux.cfg to boot after five seconds would be similar to this: +

+
+ +

+ include menu.cfg
+default vesamenu.c32
+prompt 0
+timeout 50
+

+
+ +

+ 11.2 ISO metadata +

+
+ +

+ When creating an ISO9660 binary image, you can use the following options to add various textual metadata for your image. This can help you easily identify the version or configuration of an image without booting it. +

+
+ +
    +
  • + LB_ISO_APPLICATION/--iso-application NAME: This should describe the application that will be on the image. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PREPARER/--iso-preparer NAME: This should describe the preparer of the image, usually with some contact details. The default for this option is the live-build version you are using, which may help with debugging later. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_PUBLISHER/--iso-publisher NAME: This should describe the publisher of the image, usually with some contact details. The maximum length for this field is 128 characters. +
  • +
+
+ +
    +
  • + LB_ISO_VOLUME/--iso-volume NAME: This should specify the volume ID of the image. This is used as a user-visible label on some platforms such as Windows and Apple Mac OS. The maximum length for this field is 32 characters. +
  • +
+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-contents.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-contents.en.html new file mode 100644 index 0000000..19a400c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-contents.en.html @@ -0,0 +1,276 @@ + + + + + + customizing-contents - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing contents +

+
+ +

+ 9. Customizing contents +

+
+ +

+ This chapter discusses fine-tuning customization of the live system contents beyond merely choosing which packages to include. Includes allow you to add or replace arbitrary files in your live system image, hooks allow you to execute arbitrary commands at different stages of the build and at boot time, and preseeding allows you to configure packages when they are installed by supplying answers to debconf questions. +

+
+ +

+ 9.1 Includes +

+
+ +

+ While ideally a live system would include files entirely provided by unmodified packages, it is sometimes convenient to provide or modify some content by means of files. Using includes, it is possible to add (or replace) arbitrary files in your live system image. live-build provides two mechanisms for using them: +

+
+ +
    +
  • + Chroot local includes: These allow you to add or replace files to the chroot/Live filesystem. Please see Live/chroot local includes for more information. +
  • +
+
+ +
    +
  • + Binary local includes: These allow you to add or replace files in the binary image. Please see Binary local includes for more information. +
  • +
+
+ +

+ Please see Terms for more information about the distinction between the "Live" and "binary" images. +

+
+ +

+ 9.1.1 Live/chroot local includes +

+
+ +

+ Chroot local includes can be used to add or replace files in the chroot/Live filesystem so that they may be used in the Live system. A typical use is to populate the skeleton user directory (/etc/skel) used by the Live system to create the live user's home directory. Another is to supply configuration files that can be simply added or replaced in the image without processing; see Chroot local hooks if processing is needed. +

+
+ +

+ To include files, simply add them to your config/includes.chroot directory. This directory corresponds to the root directory / of the live system. For example, to add a file /var/www/index.html in the live system, use: +

+
+ +

+ $ mkdir -p config/includes.chroot/var/www
+$ cp /path/to/my/index.html config/includes.chroot/var/www
+

+
+ +

+ Your configuration will then have the following layout: +

+
+ +

+ -- config
+    [...]
+     |-- includes.chroot
+     |   `-- var
+     |       `-- www
+     |           `-- index.html
+    [...]
+

+
+ +

+ Chroot local includes are installed after package installation so that files installed by packages are overwritten. +

+
+ +

+ 9.1.2 Binary local includes +

+
+ +

+ To include material such as documentation or videos on the medium filesystem so that it is accessible immediately upon insertion of the medium without booting the Live system, you can use binary local includes. This works in a similar fashion to chroot local includes. For example, suppose the files ~/video_demo.* are demo videos of the live system described by and linked to by an HTML index page. Simply copy the material to config/includes.binary/ as follows: +

+
+ +

+ $ cp ~/video_demo.* config/includes.binary/
+

+
+ +

+ These files will now appear in the root directory of the live medium. +

+
+ +

+ 9.2 Hooks +

+
+ +

+ Hooks allow commands to be run in the chroot and binary stages of the build in order to customize the image. Depending on whether you are building a live image or a regular system image you have to place your hooks in config/hooks/live or config/hooks/normal respectively. These are frequently referred to as local hooks because they are executed inside the build environment. +

+
+ +

+ There are also boot-time hooks that allow you to run commands once the image has already been built, during the boot process. +

+
+ +

+ 9.2.1 Chroot local hooks +

+
+ +

+ To run commands in the chroot stage, create a hook script with a .hook.chroot suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run in the chroot after the rest of your chroot configuration has been applied, so remember to ensure your configuration includes all packages and files your hook needs in order to run. See the example chroot hook scripts for various common chroot customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.2 Binary local hooks +

+
+ +

+ To run commands in the binary stage, create a hook script with a .hook.binary suffix containing the commands either in the config/hooks/live or config/hooks/normal directories. The hook will run after all other binary commands are run, but before binary_checksums, the very last binary command. The commands in your hook do not run in the chroot, so take care not to modify any files outside of the build tree, or you may damage your build system! See the example binary hook scripts for various common binary customization tasks provided in /usr/share/doc/live-build/examples/hooks which you can copy or symlink to use them in your own configuration. +

+
+ +

+ 9.2.3 Boot-time hooks +

+
+ +

+ To execute commands at boot time, you can supply live-config hooks as explained in the "Customization" section of its man page. Examine live-config's own hooks provided in /lib/live/config/, noting the sequence numbers. Then provide your own hook prefixed with an appropriate sequence number, either as a chroot local include in config/includes.chroot/lib/live/config/, or as a custom package as discussed in Installing modified or third-party packages. +

+
+ +

+ 9.3 Preseeding Debconf questions +

+
+ +

+ Files in the config/preseed/ directory suffixed with .cfg followed by the stage (.chroot or .binary) are considered to be debconf preseed files and are installed by live-build using debconf-set-selections during the corresponding stage. +

+
+ +

+ For more information about debconf, please see debconf(7) in the debconf package. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-installer.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-installer.en.html new file mode 100644 index 0000000..9c470ba --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-installer.en.html @@ -0,0 +1,218 @@ + + + + + + customizing-installer - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing Debian Installer +

+
+ +

+ 12. Customizing Debian Installer +

+
+ +

+ Live system images can be integrated with Debian Installer. There are a number of different types of installation, varying in what is included and how the installer operates. +

+
+ +

+ Please note the careful use of capital letters when referring to the "Debian Installer" in this section - when used like this we refer explicitly to the official installer for the Debian system, not anything else. It is often seen abbreviated to "d-i". +

+
+ +

+ 12.1 Types of Debian Installer +

+
+ +

+ The three main types of installer are: +

+
+ +

+ "Normal" Debian Installer: This is a normal live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into a standard Debian Installer instance, just as if you had downloaded a CD image of Debian and booted it. Images containing a live system and such an otherwise independent installer are often referred to as "combined images". +

+
+ +

+ On such images, Debian is installed by fetching and installing .deb packages using debootstrap, from local media or some network-based network, resulting in a default Debian system being installed to the hard disk. +

+
+ +

+ This whole process can be preseeded and customized in a number of ways; see the relevant pages in the Debian Installer manual for more information. Once you have a working preseeding file, live-build can automatically put it in the image and enable it for you. +

+
+ +

+ "Live" Debian Installer: This is a live system image with a separate kernel and initrd which (when selected from the appropriate bootloader) launches into an instance of the Debian Installer. +

+
+ +

+ Installation will proceed in an identical fashion to the "normal" installation described above, but at the actual package installation stage, instead of using debootstrap to fetch and install packages, the live filesystem image is copied to the target. This is achieved with a special udeb called live-installer. +

+
+ +

+ After this stage, the Debian Installer continues as normal, installing and configuring items such as bootloaders and local users, etc. +

+
+ +

+ Note: to support both normal and live installer entries in the bootloader of the same live medium, you must disable live-installer by preseeding live-installer/enable=false. +

+
+ +

+ "Desktop" Debian Installer: Regardless of the type of Debian Installer included, d-i can be launched from the Desktop by clicking on an icon. This is user friendlier in some situations. In order to make use of this, the debian-installer-launcher package needs to be included. +

+
+ +

+ Note that by default, live-build does not include Debian Installer images in the images, it needs to be specifically enabled with lb config. Also, please note that for the "Desktop" installer to work, the kernel of the live system must match the kernel d-i uses for the specified architecture. For example: +

+
+ +

+ $ lb config --architectures i386 --linux-flavours 586 \
+         --debian-installer live
+$ echo debian-installer-launcher >> config/package-lists/my.list.chroot
+

+
+ +

+ 12.2 Customizing Debian Installer by preseeding +

+
+ +

+ As described in the Debian Installer Manual, Appendix B at ‹https://www.debian.org/releases/stable/i386/apb.html›, "Preseeding provides a way to set answers to questions asked during the installation process, without having to manually enter the answers while the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations." This kind of customization is best accomplished with live-build by placing the configuration in a preseed.cfg file included in config/includes.installer/. For example, to preseed setting the locale to en_US: +

+
+ +

+ $ echo "d-i debian-installer/locale string en_US" \
+         >> config/includes.installer/preseed.cfg
+

+
+ +

+ 12.3 Customizing Debian Installer content +

+
+ +

+ For experimental or debugging purposes, you might want to include locally built d-i component udeb packages. Place these in config/packages.binary/ to include them in the image. Additional or replacement files and directories may be included in the installer initrd as well, in a similar fashion to Live/chroot local includes, by placing the material in config/includes.installer/. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-package-installation.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-package-installation.en.html new file mode 100644 index 0000000..05328d3 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-package-installation.en.html @@ -0,0 +1,799 @@ + + + + + + customizing-package-installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing package installation +

+
+ +

+ 8. Customizing package installation +

+
+ +

+ Perhaps the most basic customization of a live system is the selection of packages to be included in the image. This chapter guides you through the various build-time options to customize live-build's installation of packages. The broadest choices influencing which packages are available to install in the image are the distribution and archive areas. To ensure decent download speeds, you should choose a nearby distribution mirror. You can also add your own repositories for backports, experimental or custom packages, or include packages directly as files. You can define lists of packages, including metapackages which will install many related packages at once, such as packages for a particular desktop or language. Finally, a number of options give some control over apt, or if you prefer, aptitude, at build time when packages are installed. You may find these handy if you use a proxy, want to disable installation of recommended packages to save space, or need to control which versions of packages are installed via APT pinning, to name a few possibilities. +

+
+ +

+ 8.1 Package sources +

+
+ +

+ 8.1.1 Distribution, archive areas and mode +

+
+ +

+ The distribution you choose has the broadest impact on which packages are available to include in your live image. Specify the codename, which defaults to buster for the buster version of live-build. Any current distribution carried in the archive may be specified by its codename here. (See Terms for more details.) The --distribution option not only influences the source of packages within the archive, but also instructs live-build to behave as needed to build each supported distribution. For example, to build against the unstable release, sid, specify: +

+
+ +

+ $ lb config --distribution sid
+

+
+ +

+ Within the distribution archive, archive areas are major divisions of the archive. In Debian, these are main, contrib and non-free. Only main contains software that is part of the Debian distribution, hence that is the default. One or more values may be specified, e.g. +

+
+ +

+ $ lb config --archive-areas "main contrib non-free"
+

+
+ +

+ Experimental support is available for some Debian derivatives through a --mode option. By default, this option is set to debian only if you are building on a Debian or on an unknown system. If lb config is invoked on any of the supported derivatives, it will default to create an image of that derivative. If lb config is run in e.g. ubuntu mode, the distribution names and archive areas for the specified derivative are supported instead of the ones for Debian. The mode also modifies live-build behaviour to suit the derivatives. +

+
+ +

+ Note: The projects for whom these modes were added are primarily responsible for supporting users of these options. The Live Systems Project, in turn, provides development support on a best-effort basis only, based on feedback from the derivative projects as we do not develop or support these derivatives ourselves. +

+
+ +

+ 8.1.2 Distribution mirrors +

+
+ +

+ The Debian archive is replicated across a large network of mirrors around the world so that people in each region can choose a nearby mirror for best download speed. Each of the --mirror-* options governs which distribution mirror is used at various stages of the build. Recall from Stages of the build that the bootstrap stage is when the chroot is initially populated by debootstrap with a minimal system, and the chroot stage is when the chroot used to construct the live system's filesystem is built. Thus, the corresponding mirror switches are used for those stages, and later, in the binary stage, the --mirror-binary and --mirror-binary-security values are used, superseding any mirrors used in an earlier stage. +

+
+ +

+ 8.1.3 Distribution mirrors used at build time +

+
+ +

+ To set the distribution mirrors used at build time to point at a local mirror, it is sufficient to set --mirror-bootstrap and --mirror-chroot-security as follows. +

+
+ +

+ $ lb config --mirror-bootstrap http://localhost/debian/ \
+          --mirror-chroot-security http://localhost/debian-security/
+

+
+ +

+ The chroot mirror, specified by --mirror-chroot, defaults to the --mirror-bootstrap value. +

+
+ +

+ 8.1.4 Distribution mirrors used at run time +

+
+ +

+ The --mirror-binary* options govern the distribution mirrors placed in the binary image. These may be used to install additional packages while running the live system. The defaults employ httpredir.debian.org, a service that chooses a geographically close mirror based, among other things, on the user's IP family and the availability of the mirrors. This is a suitable choice when you cannot predict which mirror will be best for all of your users. Or you may specify your own values as shown in the example below. An image built from this configuration would only be suitable for users on a network where "mirror" is reachable. +

+
+ +

+ $ lb config --mirror-binary http://mirror/debian/ \
+          --mirror-binary-security http://mirror/debian-security/ \
+          --mirror-binary-backports http://mirror/debian-backports/
+

+
+ +

+ 8.1.5 Additional repositories +

+
+ +

+ You may add more repositories, broadening your package choices beyond what is available in your target distribution. These may be, for example, for backports, experimental or custom packages. To configure additional repositories, create config/archives/your-repository.list.chroot, and/or config/archives/your-repository.list.binary files. As with the --mirror-* options, these govern the repositories used in the chroot stage when building the image, and in the binary stage, i.e. for use when running the live system. +

+
+ +

+ For example, config/archives/live.list.chroot allows you to install packages from the debian-live snapshot repository at live system build time. +

+
+ +

+ deb http://debian-live.alioth.debian.org/ sid-snapshots main contrib non-free
+

+
+ +

+ If you add the same line to config/archives/live.list.binary, the repository will be added to your live system's /etc/apt/sources.list.d/ directory. +

+
+ +

+ If such files exist, they will be picked up automatically. +

+
+ +

+ You should also put the GPG key used to sign the repository into config/archives/your-repository.key.{binary,chroot} files. +

+
+ +

+ Should you need custom APT pinning, such APT preferences snippets can be placed in config/archives/your-repository.pref.{binary,chroot} files and will be automatically added to your live system's /etc/apt/preferences.d/ directory. +

+
+ +

+ 8.2 Choosing packages to install +

+
+ +

+ There are a number of ways to choose which packages live-build will install in your image, covering a variety of different needs. You can simply name individual packages to install in a package list. You can also use metapackages in those lists, or select them using package control file fields. And finally, you may place package files in your config/ tree, which is well suited to testing of new or experimental packages before they are available from a repository. +

+
+ +

+ 8.2.1 Package lists +

+
+ +

+ Package lists are a powerful way of expressing which packages should be installed. The list syntax supports conditional sections which makes it easy to build lists and adapt them for use in multiple configurations. Package names may also be injected into the list using shell helpers at build time. +

+
+ +

+ Note: The behaviour of live-build when specifying a package that does not exist is determined by your choice of APT utility. See Choosing apt or aptitude for more details. +

+
+ +

+ 8.2.2 Using metapackages +

+
+ +

+ The simplest way to populate your package list is to use a task metapackage maintained by your distribution. For example: +

+
+ +

+ $ lb config
+$ echo task-gnome-desktop > config/package-lists/desktop.list.chroot
+

+
+ +

+ This supercedes the older predefined list method supported in live-build 2.x. Unlike predefined lists, task metapackages are not specific to the Live System project. Instead, they are maintained by specialist working groups within the distribution and therefore reflect the consensus of each group about which packages best serve the needs of the intended users. They also cover a much broader range of use cases than the predefined lists they replace. +

+
+ +

+ All task metapackages are prefixed task-, so a quick way to determine which are available (though it may contain a handful of false hits that match the name but aren't metapackages) is to match on the package name with: +

+
+ +

+ $ apt-cache search --names-only ^task-
+

+
+ +

+ In addition to these, you will find other metapackages with various purposes. Some are subsets of broader task packages, like gnome-core, while others are individual specialized parts of a Debian Pure Blend, such as the education-* metapackages. To list all metapackages in the archive, install the debtags package and list all packages with the role::metapackage tag as follows: +

+
+ +

+ $ debtags search role::metapackage
+

+
+ +

+ 8.2.3 Local package lists +

+
+ +

+ Whether you list metapackages, individual packages, or a combination of both, all local package lists are stored in config/package-lists/. Since more than one list can be used, this lends itself well to modular designs. For example, you may decide to devote one list to a particular choice of desktop, another to a collection of related packages that might as easily be used on top of a different desktop. This allows you to experiment with different combinations of sets of packages with a minimum of fuss, sharing common lists between different live image projects. +

+
+ +

+ Package lists that exist in this directory need to have a .list suffix in order to be processed, and then an additional stage suffix, .chroot or .binary to indicate which stage the list is for. +

+
+ +

+ Note: If you don't specify the stage suffix, the list will be used for both stages. Normally, you want to specify .list.chroot so that the packages will only be installed in the live filesystem and not have an extra copy of the .deb placed on the medium. +

+
+ +

+ 8.2.4 Local binary package lists +

+
+ +

+ To make a binary stage list, place a file suffixed with .list.binary in config/package-lists/. These packages are not installed in the live filesystem, but are included on the live medium under pool/. You would typically use such a list with one of the non-live installer variants. As mentioned above, if you want this list to be the same as your chroot stage list, simply use the .list suffix by itself. +

+
+ +

+ 8.2.5 Generated package lists +

+
+ +

+ It sometimes happens that the best way to compose a list is to generate it with a script. Any line starting with an exclamation point indicates a command to be executed within the chroot when the image is built. For example, one might include the line ! grep-aptavail -n -sPackage -FPriority standard | sort in a package list to produce a sorted list of available packages with Priority: standard. +

+
+ +

+ In fact, selecting packages with the grep-aptavail command (from the dctrl-tools package) is so useful that live-build provides a Packages helper script as a convenience. This script takes two arguments: field and pattern. Thus, you can create a list with the following contents: +

+
+ +

+ $ lb config
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+

+
+ +

+ 8.2.6 Using conditionals inside package lists +

+
+ +

+ Any of the live-build configuration variables stored in config/* (minus the LB_ prefix) may be used in conditional statements in package lists. Generally, this means any lb config option uppercased and with dashes changed to underscores. But in practice, it is only the ones that influence package selection that make sense, such as DISTRIBUTION, ARCHITECTURES or ARCHIVE_AREAS. +

+
+ +

+ For example, to install ia32-libs if the --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES amd64
+ia32-libs
+#endif
+

+
+ +

+ You may test for any one of a number of values, e.g. to install memtest86+ if either --architectures i386 or --architectures amd64 is specified: +

+
+ +

+ #if ARCHITECTURES i386 amd64
+memtest86+
+#endif
+

+
+ +

+ You may also test against variables that may contain more than one value, e.g. to install vrms if either contrib or non-free is specified via --archive-areas: +

+
+ +

+ #if ARCHIVE_AREAS contrib non-free
+vrms
+#endif
+

+
+ +

+ The nesting of conditionals is not supported. +

+
+ +

+ 8.2.7 Removing packages at install time +

+
+ +

+ You can list packages in files with .list.chroot_live and .list.chroot_install suffixes inside the config/package-lists directory. If both a live and an install list exist, the packages in the .list.chroot_live list are removed with a hook after the installation (if the user uses the installer). The packages in the .list.chroot_install list are present both in the live system and in the installed system. This is a special tweak for the installer and may be useful if you have --debian-installer live set in your config, and wish to remove live system-specific packages at install time. +

+
+ +

+ 8.2.8 Desktop and language tasks +

+
+ +

+ Desktop and language tasks are special cases that need some extra planning and configuration. Live images are different from Debian Installer images in this respect. In the Debian Installer, if the medium was prepared for a particular desktop environment flavour, the corresponding task will be automatically installed. Thus, there are internal gnome-desktop, kde-desktop, lxde-desktop and xfce-desktop tasks, none of which are offered in tasksel's menu. Likewise, there are no menu entries for tasks for languages, but the user's language choice during the install influences the selection of corresponding language tasks. +

+
+ +

+ When developing a desktop live image, the image typically boots directly to a working desktop, the choices of both desktop and default language having been made at build time, not at run time as in the case of the Debian Installer. That's not to say that a live image couldn't be built to support multiple desktops or multiple languages and offer the user a choice, but that is not live-build's default behaviour. +

+
+ +

+ Because there is no provision made automatically for language tasks, which include such things as language-specific fonts and input-method packages, if you want them, you need to specify them in your configuration. For example, a GNOME desktop image containing support for German might include these task metapackages: +

+
+ +

+ $ lb config
+$ echo "task-gnome-desktop task-laptop" >> config/package-lists/my.list.chroot
+$ echo "task-german task-german-desktop task-german-gnome-desktop" >> config/package-lists/my.list.chroot
+

+
+ +

+ 8.2.9 Kernel flavour and version +

+
+ +

+ One or more kernel flavours will be included in your image by default, depending on the architecture. You can choose different flavours via the --linux-flavours option. Each flavour is suffixed to the default stub linux-image to form each metapackage name which in turn depends on an exact kernel package to be included in your image. +

+
+ +

+ Thus by default, an amd64 architecture image will include the linux-image-amd64 flavour metapackage, and an i386 architecture image will include the linux-image-586 metapackage. +

+
+ +

+ When more than one kernel package version is available in your configured archives, you can specify a different kernel package name stub with the --linux-packages option. For example, supposing you are building an amd64 architecture image and add the experimental archive for testing purposes so you can install the linux-image-3.18.0-trunk-amd64 kernel. You would configure that image as follows: +

+
+ +

+ $ lb config --linux-packages linux-image-3.18.0-trunk
+$ echo "deb http://ftp.debian.org/debian/ experimental main" > config/archives/experimental.list.chroot
+

+
+ +

+ 8.2.10 Custom kernels +

+
+ +

+ You can build and include your own custom kernels, so long as they are integrated within the Debian package management system. The live-build system does not support kernels not built as .deb packages. +

+
+ +

+ The proper and recommended way to deploy your own kernel packages is to follow the instructions in the kernel-handbook. Remember to modify the ABI and flavour suffixes appropriately, then include a complete build of the linux and matching linux-latest packages in your repository. +

+
+ +

+ If you opt to build the kernel packages without the matching metapackages, you need to specify an appropriate --linux-packages stub as discussed in Kernel flavour and version. As we explain in Installing modified or third-party packages, it is best if you include your custom kernel packages in your own repository, though the alternatives discussed in that section work as well. +

+
+ +

+ It is beyond the scope of this document to give advice on how to customize your kernel. However, you must at least ensure your configuration satisfies these minimum requirements: +

+
+ +
    +
  • + Use an initial ramdisk. +
  • +
+
+ +
    +
  • + Include the union filesystem module (i.e. usually aufs). +
  • +
+
+ +
    +
  • + Include any other filesystem modules required by your configuration (i.e. usually squashfs). +
  • +
+
+ +

+ 8.3 Installing modified or third-party packages +

+
+ +

+ While it is against the philosophy of a live system, it may sometimes be necessary to build a live system with modified versions of packages that are in the Debian repository. This may be to modify or support additional features, languages and branding, or even to remove elements of existing packages that are undesirable. Similarly, "third-party" packages may be used to add bespoke and/or proprietary functionality. +

+
+ +

+ This section does not cover advice regarding building or maintaining modified packages. Joachim Breitner's 'How to fork privately' method from ‹http://www.joachim-breitner.de/blog/archives/282-How-to-fork-privately.html› may be of interest, however. The creation of bespoke packages is covered in the Debian New Maintainers' Guide at ‹https://www.debian.org/doc/maint-guide/› and elsewhere. +

+
+ +

+ There are two ways of installing modified custom packages: +

+
+ +
    +
  • + packages.chroot +
  • +
+
+ +
    +
  • + Using a custom APT repository +
  • +
+
+ +

+ Using packages.chroot is simpler to achieve and useful for "one-off" customizations but has a number of drawbacks, while using a custom APT repository is more time-consuming to set up. +

+
+ +

+ 8.3.1 Using packages.chroot to install custom packages +

+
+ +

+ To install a custom package, simply copy it to the config/packages.chroot/ directory. Packages that are inside this directory will be automatically installed into the live system during build - you do not need to specify them elsewhere. +

+
+ +

+ Packages must be named in the prescribed way. One simple way to do this is to use dpkg-name. +

+
+ +

+ Using packages.chroot for installation of custom packages has disadvantages: +

+
+ +
    +
  • + It is not possible to use secure APT. +
  • +
+
+ +
    +
  • + You must install all appropriate packages in the config/packages.chroot/ directory. +
  • +
+
+ +
    +
  • + It does not lend itself to storing live system configurations in revision control. +
  • +
+
+ +

+ 8.3.2 Using an APT repository to install custom packages +

+
+ +

+ Unlike using packages.chroot, when using a custom APT repository you must ensure that you specify the packages elsewhere. See Choosing packages to install for details. +

+
+ +

+ While it may seem unnecessary effort to create an APT repository to install custom packages, the infrastructure can be easily re-used at a later date to offer updates of the modified packages. +

+
+ +

+ 8.3.3 Custom packages and APT +

+
+ +

+ live-build uses APT to install all packages into the live system so will therefore inherit behaviours from this program. One relevant example is that (assuming a default configuration) given a package available in two different repositories with different version numbers, APT will elect to install the package with the higher version number. +

+
+ +

+ Because of this, you may wish to increment the version number in your custom packages' debian/changelog files to ensure that your modified version is installed over one in the official Debian repositories. This may also be achieved by altering the live system's APT pinning preferences - see APT pinning for more information. +

+
+ +

+ 8.4 Configuring APT at build time +

+
+ +

+ You can configure APT through a number of options applied only at build time. (APT configuration used in the running live system may be configured in the normal way for live system contents, that is, by including the appropriate configurations through config/includes.chroot/.) For a complete list, look for options starting with apt in the lb_config man page. +

+
+ +

+ 8.4.1 Choosing apt or aptitude +

+
+ +

+ You can elect to use either apt or aptitude when installing packages at build time. Which utility is used is governed by the --apt argument to lb config. Choose the method implementing the preferred behaviour for package installation, the notable difference being how missing packages are handled. +

+
+ +
    +
  • + apt: With this method, if a missing package is specified, the package installation will fail. This is the default setting. +
  • +
+
+ +
    +
  • + aptitude: With this method, if a missing package is specified, the package installation will succeed. +
  • +
+
+ +

+ 8.4.2 Using a proxy with APT +

+
+ +

+ One commonly required APT configuration is to deal with building an image behind a proxy. You may specify your APT proxy with the --apt-ftp-proxy or --apt-http-proxy options as needed, e.g. +

+
+ +

+ $ lb config --apt-http-proxy http://proxy/
+

+
+ +

+ 8.4.3 Tweaking APT to save space +

+
+ +

+ You may find yourself needing to save some space on the image medium, in which case one or the other or both of the following options may be of interest. +

+
+ +

+ If you don't want to include APT indices in the image, you can omit those with: +

+
+ +

+ $ lb config --apt-indices false
+

+
+ +

+ This will not influence the entries in /etc/apt/sources.list, but merely whether /var/lib/apt contains the indices files or not. The tradeoff is that APT needs those indices in order to operate in the live system, so before performing apt-cache search or apt-get install, for instance, the user must apt-get update first to create those indices. +

+
+ +

+ If you find the installation of recommended packages bloats your image too much, provided you are prepared to deal with the consequences discussed below, you may disable that default option of APT with: +

+
+ +

+ $ lb config --apt-recommends false
+

+
+ +

+ The most important consequence of turning off recommends is that live-boot and live-config themselves recommend some packages that provide important functionality used by most Live configurations, such as user-setup which live-config recommends and is used to create the live user. In all but the most exceptional circumstances you need to add back at least some of these recommends to your package lists or else your image will not work as expected, if at all. Look at the recommended packages for each of the live-* packages included in your build and if you are not certain you can omit them, add them back into your package lists. +

+
+ +

+ The more general consequence is that if you don't install recommended packages for any given package, that is, "packages that would be found together with this one in all but unusual installations" (Debian Policy Manual, section 7.2), some packages that users of your Live system actually need may be omitted. Therefore, we suggest you review the difference turning off recommends makes to your packages list (see the binary.packages file generated by lb build) and re-include in your list any missing packages that you still want installed. Alternatively, if you find you only want a small number of recommended packages left out, leave recommends enabled and set a negative APT pin priority on selected packages to prevent them from being installed, as explained in APT pinning. +

+
+ +

+ 8.4.4 Passing options to apt or aptitude +

+
+ +

+ If there is not a lb config option to alter APT's behaviour in the way you need, use --apt-options or --aptitude-options to pass any options through to your configured APT tool. See the man pages for apt and aptitude for details. Note that both options have default values that you will need to retain in addition to any overrides you may provide. So, for example, suppose you have included something from snapshot.debian.org for testing purposes and want to specify Acquire::Check-Valid-Until=false to make APT happy with the stale Release file, you would do so as per the following example, appending the new option after the default value --yes: +

+
+ +

+ $ lb config --apt-options "--yes -oAcquire::Check-Valid-Until=false"
+

+
+ +

+ Please check the man pages to fully understand these options and when to use them. This is an example only and should not be construed as advice to configure your image this way. This option would not be appropriate for, say, a final release of a live image. +

+
+ +

+ For more complicated APT configurations involving apt.conf options you might want to create a config/apt/apt.conf file instead. See also the other apt-* options for a few convenient shortcuts for frequently needed options. +

+
+ +

+ 8.4.5 APT pinning +

+
+ +

+ For background, please first read the apt_preferences(5) man page. APT pinning can be configured either for build time, or else for run time. For the former, create config/archives/*.pref, config/archives/*.pref.chroot, and config/apt/preferences. For the latter, create config/includes.chroot/etc/apt/preferences. +

+
+ +

+ Let's say you are building a buster live system but need all the live packages that end up in the binary image to be installed from sid at build time. You need to add sid to your APT sources and pin the live packages from it higher, but all other packages from it lower, than the default priority. Thus, only the packages you want are installed from sid at build time and all others are taken from the target system distribution, buster. The following will accomplish this: +

+
+ +

+ $ echo "deb http://mirror/debian/ sid main" > config/archives/sid.list.chroot
+$ cat >> config/archives/sid.pref.chroot << EOF
+Package: live-*
+Pin: release n=sid
+Pin-Priority: 600

+Package: *
+Pin: release n=sid
+Pin-Priority: 1
+EOF
+

+
+ +

+ Negative pin priorities will prevent a package from being installed, as in the case where you do not want a package that is recommended by another package. Suppose you are building an LXDE image using task-lxde-desktop in config/package-lists/desktop.list.chroot, but don't want the user prompted to store wifi passwords in the keyring. This metapackage depends on lxde-core, which recommends gksu, which in turn recommends gnome-keyring. So you want to omit the recommended gnome-keyring package. This can be done by adding the following stanza to config/apt/preferences: +

+
+ +

+ Package: gnome-keyring
+Pin: version *
+Pin-Priority: -1
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-run-time-behaviours.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-run-time-behaviours.en.html new file mode 100644 index 0000000..becca70 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/customizing-run-time-behaviours.en.html @@ -0,0 +1,579 @@ + + + + + + customizing-run-time-behaviours - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Customizing run time behaviours +

+
+ +

+ 10. Customizing run time behaviours +

+
+ +

+ All configuration that is done during run time is done by live-config. Here are some of the most common options of live-config that users are interested in. A full list of all possibilities can be found in the man page of live-config. +

+
+ +

+ 10.1 Customizing the live user +

+
+ +

+ One important consideration is that the live user is created by live-boot at boot time, not by live-build at build time. This not only influences where materials relating to the live user are introduced in your build, as discussed in Live/chroot local includes, but also any groups and permissions associated with the live user. +

+
+ +

+ You can specify additional groups that the live user will belong to by using any of the possibilities to configure live-config. For example, to add the live user to the fuse group, you can either add the following file in config/includes.chroot/etc/live/config/user-setup.conf: +

+
+ +

+ LIVE_USER_DEFAULT_GROUPS="audio cdrom dip floppy video plugdev netdev powerdev scanner bluetooth fuse"
+

+
+ +

+ or use live-config.user-default-groups=audio,cdrom,dip,floppy,video,plugdev,netdev,powerdev,scanner,bluetooth,fuse as a boot parameter. +

+
+ +

+ It is also possible to change the default username "user" and the default password "live". If you want to do that for any reason, you can easily achieve it as follows: +

+
+ +

+ To change the default username you can simply specify it in your config: +

+
+ +

+ $ lb config --bootappend-live "boot=live components username=live-user"
+

+
+ +

+ One possible way of changing the default password is by means of a hook as described in Boot-time hooks. In order to do that you can use the "passwd" hook from /usr/share/doc/live-config/examples/hooks, prefix it accordingly (e.g. 2000-passwd) and add it to config/includes.chroot/lib/live/config/ +

+
+ +

+ 10.2 Customizing locale and language +

+
+ +

+ When the live system boots, language is involved in two steps: +

+
+ +
    +
  • + the locale generation +
  • +
+
+ +
    +
  • + setting the keyboard configuration +
  • +
+
+ +

+ The default locale when building a Live system is locales=en_US.UTF-8. To define the locale that should be generated, use the locales parameter in the --bootappend-live option of lb config, e.g. +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8"
+

+
+ +

+ Multiple locales may be specified as a comma-delimited list. +

+
+ +

+ This parameter, as well as the keyboard configuration parameters indicated below, can also be used at the kernel command line. You can specify a locale by language_country (in which case the default encoding is used) or the full language_country.encoding word. A list of supported locales and the encoding for each can be found in /usr/share/i18n/SUPPORTED. +

+
+ +

+ Both the console and X keyboard configuration are performed by live-config using the console-setup package. To configure them, use the keyboard-layouts, keyboard-variants, keyboard-options and keyboard-model boot parameters via the --bootappend-live option. Valid options for these can be found in /usr/share/X11/xkb/rules/base.lst. To find layouts and variants for a given language, try searching for the English name of the language and/or the country where the language is spoken, e.g: +

+
+ +

+ $ egrep -i '(^!|german.*switzerland)' /usr/share/X11/xkb/rules/base.lst
+! model
+! layout
+   ch              German (Switzerland)
+! variant
+   legacy          ch: German (Switzerland, legacy)
+   de_nodeadkeys   ch: German (Switzerland, eliminate dead keys)
+   de_sundeadkeys  ch: German (Switzerland, Sun dead keys)
+   de_mac          ch: German (Switzerland, Macintosh)
+! option
+

+
+ +

+ Note that each variant lists the layout to which it applies in the description. +

+
+ +

+ Often, only the layout needs to be configured. For example, to get the locale files for German and Swiss German keyboard layout in X use: +

+
+ +

+ $ lb config --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch"
+

+
+ +

+ However, for very specific use cases, you may wish to include other parameters. For example, to set up a French system with a French-Dvorak layout (called Bepo) on a TypeMatrix EZ-Reach 2030 USB keyboard, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components locales=fr_FR.UTF-8 keyboard-layouts=fr keyboard-variants=bepo keyboard-model=tm2030usb"
+

+
+ +

+ Multiple values may be specified as comma-delimited lists for each of the keyboard-* options, with the exception of keyboard-model, which accepts only one value. Please see the keyboard(5) man page for details and examples of XKBMODEL, XKBLAYOUT, XKBVARIANT and XKBOPTIONS variables. If multiple keyboard-variants values are given, they will be matched one-to-one with keyboard-layouts values (see setxkbmap(1) -variant option). Empty values are allowed; e.g. to define two layouts, the default being US QWERTY and the other being US Dvorak, use: +

+
+ +

+ $ lb config --bootappend-live \
+     "boot=live components keyboard-layouts=us,us keyboard-variants=,dvorak"
+

+
+ +

+ 10.3 Persistence +

+
+ +

+ A live cd paradigm is a pre-installed system which runs from read-only media, like a cdrom, where writes and modifications do not survive reboots of the host hardware which runs it. +

+
+ +

+ A live system is a generalization of this paradigm and thus supports other media in addition to CDs; but still, in its default behaviour, it should be considered read-only and all the run-time evolutions of the system are lost at shutdown. +

+
+ +

+ 'Persistence' is a common name for different kinds of solutions for saving across reboots some, or all, of this run-time evolution of the system. To understand how it works it would be handy to know that even if the system is booted and run from read-only media, modifications to the files and directories are written on writable media, typically a ram disk (tmpfs) and ram disks' data do not survive reboots. +

+
+ +

+ The data stored on this ramdisk should be saved on a writable persistent medium like local storage media, a network share or even a session of a multisession (re)writable CD/DVD. All these media are supported in live systems in different ways, and all but the last one require a special boot parameter to be specified at boot time: persistence. +

+
+ +

+ If the boot parameter persistence is set (and nopersistence is not set), local storage media (e.g. hard disks, USB drives) will be probed for persistence volumes during boot. It is possible to restrict which types of persistence volumes to use by specifying certain boot parameters described in the live-boot(7) man page. A persistence volume is any of the following: +

+
+ +
    +
  • + a partition, identified by its GPT name. +
  • +
+
+ +
    +
  • + a filesystem, identified by its filesystem label. +
  • +
+
+ +
    +
  • + an image file located on the root of any readable filesystem (even an NTFS partition of a foreign OS), identified by its filename. +
  • +
+
+ +

+ The volume label for overlays must be persistence but it will be ignored unless it contains in its root a file named persistence.conf which is used to fully customize the volume's persistence, this is to say, specifying the directories that you want to save in your persistence volume after a reboot. See The persistence.conf file for more details. +

+
+ +

+ Here are some examples of how to prepare a volume to be used for persistence. It can be, for instance, an ext4 partition on a hard disk or on a usb key created with, e.g.: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+

+
+ +

+ If you already have a partition on your device, you could just change the label with one of the following: +

+
+ +

+ # tune2fs -L persistence /dev/sdb1 # for ext2,3,4 filesystems
+

+
+ +

+ Here's an example of how to create an ext4-based image file to be used for persistence: +

+
+ +

+ $ dd if=/dev/null of=persistence bs=1 count=0 seek=1G # for a 1GB sized image file
+$ /sbin/mkfs.ext4 -F persistence
+

+
+ +

+ Once the image file is created, as an example, to make /usr persistent but only saving the changes you make to that directory and not all the contents of /usr, you can use the "union" option. If the image file is located in your home directory, copy it to the root of your hard drive's filesystem and mount it in /mnt as follows: +

+
+ +

+ # cp persistence /
+# mount -t ext4 /persistence /mnt
+

+
+ +

+ Then, create the persistence.conf file adding content and unmount the image file. +

+
+ +

+ # echo "/usr union" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Now, reboot into your live medium with the boot parameter "persistence". +

+
+ +

+ 10.3.1 The persistence.conf file +

+
+ +

+ A volume with the label persistence must be configured by means of the persistence.conf file to make arbitrary directories persistent. That file, located on the volume's filesystem root, controls which directories it makes persistent, and in which way. +

+
+ +

+ How custom overlay mounts are configured is described in full detail in the persistence.conf(5) man page, but a simple example should be sufficient for most uses. Let's say we want to make our home directory and APT cache persistent in an ext4 filesystem on the /dev/sdb1 partition: +

+
+ +

+ # mkfs.ext4 -L persistence /dev/sdb1
+# mount -t ext4 /dev/sdb1 /mnt
+# echo "/home" >> /mnt/persistence.conf
+# echo "/var/cache/apt" >> /mnt/persistence.conf
+# umount /mnt
+

+
+ +

+ Then we reboot. During the first boot the contents of /home and /var/cache/apt will be copied into the persistence volume, and from then on all changes to these directories will live in the persistence volume. Please note that any paths listed in the persistence.conf file cannot contain white spaces or the special . and .. path components. Also, neither /lib, /lib/live (or any of their sub-directories) nor / can be made persistent using custom mounts. As a workaround for this limitation you can add / union to your persistence.conf file to achieve full persistence. +

+
+ +

+ 10.3.2 Using more than one persistence store +

+
+ +

+ There are different methods of using multiple persistence store for different use cases. For instance, using several volumes at the same time or selecting only one, among various, for very specific purposes. +

+
+ +

+ Several different custom overlay volumes (with their own persistence.conf files) can be used at the same time, but if several volumes make the same directory persistent, only one of them will be used. If any two mounts are "nested" (i.e. one is a sub-directory of the other) the parent will be mounted before the child so no mount will be hidden by the other. Nested custom mounts are problematic if they are listed in the same persistence.conf file. See the persistence.conf(5) man page for how to handle that case if you really need it (hint: you usually don't). +

+
+ +

+ One possible use case: If you wish to store the user data i.e. /home and the superuser data i.e. /root in different partitions, create two partitions with the persistence label and add a persistence.conf file in each one like this, # echo "/home" > persistence.conf for the first partition that will save the user's files and # echo "/root" > persistence.conf for the second partition which will store the superuser's files. Finally, use the persistence boot parameter. +

+
+ +

+ If a user would need multiple persistence store of the same type for different locations or testing, such as private and work, the boot parameter persistence-label used in conjunction with the boot parameter persistence will allow for multiple but unique persistence media. An example would be if a user wanted to use a persistence partition labeled private for personal data like browser bookmarks or other types, they would use the boot parameters: persistence persistence-label=private. And to store work related data, like documents, research projects or other types, they would use the boot parameters: persistence persistence-label=work. +

+
+ +

+ It is important to remember that each of these volumes, private and work, also needs a persistence.conf file in its root. The live-boot man page contains more information about how to use these labels with legacy names. +

+
+ +

+ 10.3.3 Using persistence with encryption +

+
+ +

+ Using the persistence feature means that some sensible data might get exposed to risk. Especially if the persistent data is stored on a portable device such as a usb stick or an external hard drive. That is when encryption comes in handy. Even if the entire procedure might seem complicated because of the number of steps to be taken, it is really easy to handle encrypted partitions with live-boot. In order to use luks, which is the supported encryption type, you need to install cryptsetup both on the machine you are creating the encrypted partition with and also in the live system you are going to use the encrypted persistent partition with. +

+
+ +

+ To install cryptsetup on your machine: +

+
+ +

+ # apt-get install cryptsetup
+

+
+ +

+ To install cryptsetup in your live system, add it to your package-lists: +

+
+ +

+ $ lb config
+$ echo "cryptsetup" > config/package-lists/encryption.list.chroot
+

+
+ +

+ Once you have your live system with cryptsetup, you basically only need to create a new partition, encrypt it and boot with the persistence and persistence-encryption=luks parameters. We could have already anticipated this step and added the boot parameters following the usual procedure: +

+
+ +

+ $ lb config --bootappend-live "boot=live components persistence persistence-encryption=luks"
+

+
+ +

+ Let's go into the details for all of those who are not familiar with encryption. In the following example we are going to use a partition on a usb stick which corresponds to /dev/sdc2. Please be warned that you need to determine which partition is the one you are going to use in your specific case. +

+
+ +

+ The first step is plugging in your usb stick and determine which device it is. The recommended method of listing devices in live-manual is using ls -l /dev/disk/by-id. After that, create a new partition and then, encrypt it with a passphrase as follows: +

+
+ +

+ # cryptsetup --verify-passphrase luksFormat /dev/sdc2
+

+
+ +

+ Then open the luks partition in the virtual device mapper. Use any name you like. We use live here as an example: +

+
+ +

+ # cryptsetup luksOpen /dev/sdc2 live
+

+
+ +

+ The next step is filling the device with zeros before creating the filesystem: +

+
+ +

+ # dd if=/dev/zero of=/dev/mapper/live
+

+
+ +

+ Now, we are ready to create the filesystem. Notice that we are adding the label persistence so that the device is mounted as persistence store at boot time. +

+
+ +

+ # mkfs.ext4 -L persistence /dev/mapper/live
+

+
+ +

+ To continue with our setup, we need to mount the device, for example in /mnt. +

+
+ +

+ # mount /dev/mapper/live /mnt
+

+
+ +

+ And create the persistence.conf file in the root of the partition. This is, as explained before, strictly necessary. See The persistence.conf file. +

+
+ +

+ # echo "/ union" > /mnt/persistence.conf
+

+
+ +

+ Then unmount the mount point: +

+
+ +

+ # umount /mnt
+

+
+ +

+ And optionally, although it might be a good way of securing the data we have just added to the partition, we can close the device: +

+
+ +

+ # cryptsetup luksClose live
+

+
+ +

+ Let's summarize the process. So far, we have created an encryption capable live system, which can be copied to a usb stick as explained in Copying an ISO hybrid image to a USB stick. We have also created an encrypted partition, which can be located in the same usb stick to carry it around and we have configured the encrypted partition to be used as persistence store. So now, we only need to boot the live system. At boot time, live-boot will prompt us for the passphrase and will mount the encrypted partition to be used for persistence. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/examples.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/examples.en.html new file mode 100644 index 0000000..7727525 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/examples.en.html @@ -0,0 +1,595 @@ + + + + + + examples - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Examples +

+
+ +

+ 18. Examples +

+
+ +

+ This chapter covers example builds for specific use cases with live systems. If you are new to building your own live system images, we recommend you first look at the three tutorials in sequence, as each one teaches new techniques that will help you use and understand the remaining examples. +

+
+ +

+ 18.1 Using the examples +

+
+ +

+ To use these examples you need a system to build them on that meets the requirements listed in Requirements and has live-build installed as described in Installing live-build. +

+
+ +

+ Note that, for the sake of brevity, in these examples we do not specify a local mirror to use for the build. You can speed up downloads considerably if you use a local mirror. You may specify the options when you use lb config, as described in Distribution mirrors used at build time, or for more convenience, set the default for your build system in /etc/live/build.conf. Simply create this file and in it, set the corresponding LB_MIRROR_* variables to your preferred mirror. All other mirrors used in the build will be defaulted from these values. For example: +

+
+ +

+ LB_MIRROR_BOOTSTRAP="http://mirror/debian/"
+LB_MIRROR_CHROOT_SECURITY="http://mirror/debian-security/"
+LB_MIRROR_CHROOT_BACKPORTS="http://mirror/debian-backports/"
+

+
+ +

+ 18.2 Tutorial 1: A default image +

+
+ +

+ Use case: Create a simple first image, learning the basics of live-build. +

+
+ +

+ In this tutorial, we will build a default ISO hybrid live system image containing only base packages (no Xorg) and some live system support packages, as a first exercise in using live-build. +

+
+ +

+ You can't get much simpler than this: +

+
+ +

+ $ mkdir tutorial1 ; cd tutorial1 ; lb config
+

+
+ +

+ Examine the contents of the config/ directory if you wish. You will see stored here a skeletal configuration, ready to customize or, in this case, use immediately to build a default image. +

+
+ +

+ Now, as superuser, build the image, saving a log as you build with tee. +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Assuming all goes well, after a while, the current directory will contain live-image-i386.hybrid.iso. This ISO hybrid image can be booted directly in a virtual machine as described in Testing an ISO image with Qemu and Testing an ISO image with VirtualBox, or else imaged onto optical media or a USB flash device as described in Burning an ISO image to a physical medium and Copying an ISO hybrid image to a USB stick, respectively. +

+
+ +

+ 18.3 Tutorial 2: A web browser utility +

+
+ +

+ Use case: Create a web browser utility image, learning how to apply customizations. +

+
+ +

+ In this tutorial, we will create an image suitable for use as a web browser utility, serving as an introduction to customizing live system images. +

+
+ +

+ $ mkdir tutorial2
+$ cd tutorial2
+$ lb config
+$ echo "task-lxde-desktop iceweasel" >> config/package-lists/my.list.chroot
+

+
+ +

+ Our choice of LXDE for this example reflects our desire to provide a minimal desktop environment, since the focus of the image is the single use we have in mind, the web browser. We could go even further and provide a default configuration for the web browser in config/includes.chroot/etc/iceweasel/profile/, or additional support packages for viewing various kinds of web content, but we leave this as an exercise for the reader. +

+
+ +

+ Build the image, again as superuser, keeping a log as in Tutorial 1: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ Again, verify the image is OK and test, as in Tutorial 1. +

+
+ +

+ 18.4 Tutorial 3: A personalized image +

+
+ +

+ Use case: Create a project to build a personalized image, containing your favourite software to take with you on a USB stick wherever you go, and evolving in successive revisions as your needs and preferences change. +

+
+ +

+ Since we will be changing our personalized image over a number of revisions, and we want to track those changes, trying things experimentally and possibly reverting them if things don't work out, we will keep our configuration in the popular git version control system. We will also use the best practice of autoconfiguration via auto scripts as described in Managing a configuration. +

+
+ +

+ 18.4.1 First revision +

+
+ +

+ $ mkdir -p tutorial3/auto
+$ cp /usr/share/doc/live-build/examples/auto/* tutorial3/auto/
+$ cd tutorial3
+

+
+ +

+ Edit auto/config to read as follows: +

+
+ +

+ #!/bin/sh

+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     "${@}"
+

+
+ +

+ Perform lb config to generate the config tree, using the auto/config script you just created: +

+
+ +

+ $ lb config
+

+
+ +

+ Now populate your local package list: +

+
+ +

+ $ echo "task-lxde-desktop iceweasel xchat" >> config/package-lists/my.list.chroot
+

+
+ +

+ First, --architectures i386 ensures that on our amd64 build system, we build a 32-bit version suitable for use on most machines. Second, we use --linux-flavours 686-pae because we don't anticipate using this image on much older systems. Third, we have chosen the lxde task metapackage to give us a minimal desktop. And finally, we have added two initial favourite packages: iceweasel and xchat. +

+
+ +

+ Now, build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Note that unlike in the first two tutorials, we no longer have to type 2>&1 | tee build.log as that is now included in auto/build. +

+
+ +

+ Once you've tested the image (as in Tutorial 1) and are satisfied it works, it's time to initialize our git repository, adding only the auto scripts we just created, and then make the first commit: +

+
+ +

+ $ git init
+$ cp /usr/share/doc/live-build/examples/gitignore .gitignore
+$ git add .
+$ git commit -m "Initial import."
+

+
+ +

+ 18.4.2 Second revision +

+
+ +

+ In this revision, we're going to clean up from the first build, add the vlc package to our configuration, rebuild, test and commit. +

+
+ +

+ The lb clean command will clean up all generated files from the previous build except for the cache, which saves having to re-download packages. This ensures that the subsequent lb build will re-run all stages to regenerate the files from our new configuration. +

+
+ +

+ # lb clean
+

+
+ +

+ Now append the vlc package to our local package list in config/package-lists/my.list.chroot: +

+
+ +

+ $ echo vlc >> config/package-lists/my.list.chroot
+

+
+ +

+ Build again: +

+
+ +

+ # lb build
+

+
+ +

+ Test, and when you're satisfied, commit the next revision: +

+
+ +

+ $ git commit -a -m "Adding vlc media player."
+

+
+ +

+ Of course, more complicated changes to the configuration are possible, perhaps adding files in subdirectories of config/. When you commit new revisions, just take care not to hand edit or commit the top-level files in config containing LB_* variables, as these are build products, too, and are always cleaned up by lb clean and re-created with lb config via their respective auto scripts. +

+
+ +

+ We've come to the end of our tutorial series. While many more kinds of customization are possible, even just using the few features explored in these simple examples, an almost infinite variety of different images can be created. The remaining examples in this section cover several other use cases drawn from the collected experiences of users of live systems. +

+
+ +

+ 18.5 A VNC Kiosk Client +

+
+ +

+ Use case: Create an image with live-build to boot directly to a VNC server. +

+
+ +

+ Make a build directory and create an skeletal configuration inside it, disabling recommends to make a minimal system. And then create two initial package lists: the first one generated with a script provided by live-build named Packages (see Generated package lists), and the second one including xorg, gdm3, metacity and xvnc4viewer. +

+
+ +

+ $ mkdir vnc-kiosk-client
+$ cd vnc-kiosk-client
+$ lb config -a i386 -k 686-pae --apt-recommends false
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo "xorg gdm3 metacity xvnc4viewer" > config/package-lists/my.list.chroot
+

+
+ +

+ As explained in Tweaking APT to save space you may need to re-add some recommended packages to make your image work properly. +

+
+ +

+ An easy way to list recommends is using apt-cache. For example: +

+
+ +

+ $ apt-cache depends live-config live-boot
+

+
+ +

+ In this example we found out that we had to re-include several packages recommended by live-config and live-boot: user-setup to make autologin work and sudo as an essential program to shutdown the system. Besides, it could be handy to add live-tools to be able to copy the image to RAM and eject to eventually eject the live medium. So: +

+
+ +

+ $ echo "live-tools user-setup sudo eject" > config/package-lists/recommends.list.chroot
+

+
+ +

+ After that, create the directory /etc/skel in config/includes.chroot and put a custom .xsession in it for the default user that will launch metacity and start xvncviewer, connecting to port 5901 on a server at 192.168.1.2: +

+
+ +

+ $ mkdir -p config/includes.chroot/etc/skel
+$ cat > config/includes.chroot/etc/skel/.xsession << EOF
+#!/bin/sh

+/usr/bin/metacity &
+/usr/bin/xvncviewer 192.168.1.2:1

+exit
+EOF
+

+
+ +

+ Build the image: +

+
+ +

+ # lb build
+

+
+ +

+ Enjoy. +

+
+ +

+ 18.6 A base image for a 128MB USB key +

+
+ +

+ Use case: Create a default image with some components removed in order to fit on a 128MB USB key with a little space left over to use as you see fit. +

+
+ +

+ When optimizing an image to fit a certain media size, you need to understand the tradeoffs you are making between size and functionality. In this example, we trim only so much as to make room for additional material within a 128MB media size, but without doing anything to destroy the integrity of the packages contained within, such as the purging of locale data via the localepurge package, or other such "intrusive" optimizations. Of particular note, we use --debootstrap-options to create a minimal system from scratch. +

+
+ +

+ $ lb config --apt-indices false --apt-recommends false --debootstrap-options "--variant=minbase" --firmware-chroot false --memtest none
+

+
+ +

+ To make the image work properly, we must re-add, at least, two recommended packages which are left out by the --apt-recommends false option. See Tweaking APT to save space +

+
+ +

+ $ echo "user-setup sudo" > config/package-lists/recommends.list.chroot
+

+
+ +

+ Now, build the image in the usual way: +

+
+ +

+ # lb build 2>&1 | tee build.log
+

+
+ +

+ On the author's system at the time of writing this, the above configuration produced a 110MB image. This compares favourably with the 192MB image produced by the default configuration in Tutorial 1. +

+
+ +

+ Leaving off APT's indices with --apt-indices false saves a fair amount of space, the tradeoff being that you need to do an apt-get update before using apt in the live system. Dropping recommended packages with --apt-recommends false saves some additional space, at the expense of omitting some packages you might otherwise expect to be there. --debootstrap-options "--variant=minbase" bootstraps a minimal system from the start. Not automatically including firmware packages with --firmware-chroot false saves some space too. And finally, --memtest none prevents the installation of a memory tester. +

+
+ +

+ Note: A minimal system can also be achieved using hooks, like for example the stripped.hook.chroot hook found in /usr/share/doc/live-build/examples/hooks. It may shave off additional small amounts of space and produce an image of 91MB. However, it does so by removal of documentation and other files from packages installed on the system. This violates the integrity of those packages and that, as the comment header warns, may have unforeseen consequences. That is why using a minimal debootstrap is the recommended way of achieving this goal. +

+
+ +

+ 18.7 A localized GNOME desktop and installer +

+
+ +

+ Use case: Create a GNOME desktop image, localized for Switzerland and including an installer. +

+
+ +

+ We want to make an iso-hybrid image for i386 architecture using our preferred desktop, in this case GNOME, containing all of the same packages that would be installed by the standard Debian installer for GNOME. +

+
+ +

+ Our initial problem is the discovery of the names of the appropriate language tasks. Currently, live-build cannot help with this. While we might get lucky and find this by trial-and-error, there is a tool, grep-dctrl, which can be used to dig it out of the task descriptions in tasksel-data, so to prepare, make sure you have both of those things: +

+
+ +

+ # apt-get install dctrl-tools tasksel-data
+

+
+ +

+ Now we can search for the appropriate tasks, first with: +

+
+ +

+ $ grep-dctrl -FTest-lang de /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german
+

+
+ +

+ By this command, we discover the task is called, plainly enough, german. Now to find the related tasks: +

+
+ +

+ $ grep-dctrl -FEnhances german /usr/share/tasksel/descs/debian-tasks.desc -sTask
+Task: german-desktop
+Task: german-kde-desktop
+

+
+ +

+ At boot time we will generate the de_CH.UTF-8 locale and select the ch keyboard layout. Now let's put the pieces together. Recalling from Using metapackages that task metapackages are prefixed task-, we just specify these language boot parameters, then add standard priority packages and all our discovered task metapackages to our package list as follows: +

+
+ +

+ $ mkdir live-gnome-ch
+$ cd live-gnome-ch
+$ lb config \
+     -a i386 \
+     --bootappend-live "boot=live components locales=de_CH.UTF-8 keyboard-layouts=ch" \
+     --debian-installer live
+$ echo '! Packages Priority standard' > config/package-lists/standard.list.chroot
+$ echo task-gnome-desktop task-german task-german-desktop >> config/package-lists/desktop.list.chroot
+$ echo debian-installer-launcher >> config/package-lists/installer.list.chroot
+

+
+ +

+ Note that we have included the debian-installer-launcher package to launch the installer from the live desktop. The 586 kernel flavour, which is currently necessary for the launcher to work properly, will be included by default. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/git-repositories.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/git-repositories.en.html new file mode 100644 index 0000000..d4cd6d2 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/git-repositories.en.html @@ -0,0 +1,205 @@ + + + + + + git-repositories - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Git repositories +

+
+ +

+ 17. Git repositories +

+
+ +

+ The list of all the available repositories of the Live Systems Project can be found at ‹http://http://anonscm.debian.org/cgit/debian-live/›. The project's git URLs have the form: protocol://http://anonscm.debian.org/git/debian-live/repository. Thus, in order to clone live-manual read-only, launch: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone https://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ Or, +

+
+ +

+ $ git clone http://http://anonscm.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The cloning addresses with write permission have the form: ssh://git.debian.org/git/debian-live/repository. +

+
+ +

+ So, again, to clone live-manual over ssh you must type: +

+
+ +

+ $ git clone ssh://git.debian.org/git/debian-live/live-manual.git
+

+
+ +

+ The git tree is made up of several different branches. The debian and the debian-next branches are particularly noteworthy because they contain the actual work that will eventually be included in each new release. +

+
+ +

+ After cloning any of the existing repositories, you will be on the debian branch. This is appropriate to take a look at the state of the project's latest release but before starting work it is crucial to switch to the debian-next branch. To do so: +

+
+ +

+ $ git checkout debian-next
+

+
+ +

+ The debian-next branch, which is not always fast-forward, is where all the changes are committed first before being merged into the debian branch. To make an analogy, it is like a testing ground. If you are working on this branch and need to pull, you will have to do a git pull --rebase so that your local modifications are staged while pulling from the server and then your changes will be put on top of it all. +

+
+ +

+ 17.1 Handling multiple repositories +

+
+ +

+ If you intend to clone several of the live systems repositories and want to switch to the debian-next branch right away to check the latest code, write a patch or contribute with a translation you ought to know that the git server provides a mrconfig file to ease the handling of multiple repositories. In order to use it you need to install the mr package and after that, launch: +

+
+ +

+ $  mr bootstrap http://debian-live.alioth.debian.org/other/mr/mrconfig
+

+
+ +

+ This command will automatically clone and checkout to the debian-next branch the development repositories of the Debian packages produced by the project. These include, among others, the live-images repository, which contains the configurations used for the prebuilt images that the project publishes for general use. For more information on how to use this repository, see Clone a configuration published via Git +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/index.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/index.en.html new file mode 120000 index 0000000..f590e80 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/index.en.html @@ -0,0 +1 @@ +toc.en.html \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/installation.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/installation.en.html new file mode 100644 index 0000000..b86051d --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/installation.en.html @@ -0,0 +1,389 @@ + + + + + + installation - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Installation +

+
+ +

+ 3. Installation +

+
+ +

+ 3.1 Requirements +

+
+ +

+ Building live system images has very few system requirements: +

+
+ +
    +
  • + Superuser (root) access +
  • +
+
+ +
    +
  • + An up-to-date version of live-build +
  • +
+
+ +
    +
  • + A POSIX-compliant shell, such as bash or dash +
  • +
+
+ +
    +
  • + debootstrap +
  • +
+
+ +
    +
  • + Linux 2.6 or newer. +
  • +
+
+ +

+ Note that using Debian or a Debian-derived distribution is not required - live-build will run on almost any distribution with the above requirements. +

+
+ +

+ 3.2 Installing live-build +

+
+ +

+ You can install live-build in a number of different ways: +

+
+ +
    +
  • + From the Debian repository +
  • +
+
+ +
    +
  • + From source +
  • +
+
+ +
    +
  • + From snapshots +
  • +
+
+ +

+ If you are using Debian, the recommended way is to install live-build via the Debian repository. +

+
+ +

+ 3.2.1 From the Debian repository +

+
+ +

+ Simply install live-build like any other package: +

+
+ +

+ # apt-get install live-build
+

+
+ +

+ 3.2.2 From source +

+
+ +

+ live-build is developed using the Git version control system. On Debian based systems, this is provided by the git package. To check out the latest code, execute: +

+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-build.git
+

+
+ +

+ You can build and install your own Debian package by executing: +

+
+ +

+ $ cd live-build
+$ dpkg-buildpackage -b -uc -us
+$ cd ..
+

+
+ +

+ Now install whichever of the freshly built .deb files you were interested in, e.g. +

+
+ +

+ # dpkg -i live-build_4.0-1_all.deb
+

+
+ +

+ You can also install live-build directly to your system by executing: +

+
+ +

+ # make install
+

+
+ +

+ and uninstall it with: +

+
+ +

+ # make uninstall
+

+
+ +

+ 3.2.3 From 'snapshots' +

+
+ +

+ If you do not wish to build or install live-build from source, you can use snapshots. These are built automatically from the latest version in Git and are available on ‹http://debian-live.alioth.debian.org/debian/›. +

+
+ +

+ 3.3 Installing live-boot and live-config +

+
+ +

+ Note: You do not need to install live-boot or live-config on your system to create customized live systems. However, doing so will do no harm and is useful for reference purposes. If you only want the documentation, you may now install the live-boot-doc and live-config-doc packages separately. +

+
+ +

+ 3.3.1 From the Debian repository +

+
+ +

+ Both live-boot and live-config are available from the Debian repository as per Installing live-build. +

+
+ +

+ 3.3.2 From source +

+
+ +

+ To use the latest source from git, you can follow the process below. Please ensure you are familiar with the terms mentioned in Terms. +

+
+ +
    +
  • + Checkout the live-boot and live-config sources +
  • +
+
+ +

+ $ git clone git://http://anonscm.debian.org/git/debian-live/live-boot.git
+$ git clone git://http://anonscm.debian.org/git/debian-live/live-config.git
+

+
+ +

+ Consult the live-boot and live-config man pages for details on customizing if that is your reason for building these packages from source. +

+
+ +
    +
  • + Build live-boot and live-config .deb files +
  • +
+
+ +

+ You must build either on your target distribution or in a chroot containing your target platform: this means if your target is buster then you should build against buster. +

+
+ +

+ Use a personal builder such as pbuilder or sbuild if you need to build live-boot for a target distribution that differs from your build system. For example, for buster live images, build live-boot in a buster chroot. If your target distribution happens to match your build system distribution, you may build directly on the build system using dpkg-buildpackage (provided by the dpkg-dev package): +

+
+ +

+ $ cd live-boot
+$ dpkg-buildpackage -b -uc -us
+$ cd ../live-config
+$ dpkg-buildpackage -b -uc -us
+

+
+ +
    +
  • + Use applicable generated .deb files +
  • +
+
+ +

+ As live-boot and live-config are installed by live-build system, installing the packages in the host system is not sufficient: you should treat the generated .deb files like any other custom packages. Since your purpose for building from source is likely to test new things over the short term before the official release, follow Installing modified or third-party packages to temporarily include the relevant files in your configuration. In particular, notice that both packages are divided into a generic part, a documentation part and one or more back-ends. Include the generic part, only one back-end matching your configuration, and optionally the documentation. Assuming you are building a live image in the current directory and have generated all .deb files for a single version of both packages in the directory above, these bash commands would copy all of the relevant packages including default back-ends: +

+
+ +

+ $ cp ../live-boot{_,-initramfs-tools,-doc}*.deb  config/packages.chroot/
+$ cp ../live-config{_,-sysvinit,-doc}*.deb  config/packages.chroot/
+

+
+ +

+ 3.3.3 From 'snapshots' +

+
+ +

+ You can let live-build automatically use the latest snapshots of live-boot and live-config by configuring the package repository on debian-live.alioth.debian.org as a third-party repository in your live-build configuration directory. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/managing-a-configuration.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/managing-a-configuration.en.html new file mode 100644 index 0000000..8c7b6df --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/managing-a-configuration.en.html @@ -0,0 +1,252 @@ + + + + + + managing-a-configuration - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Managing a configuration +

+
+ +

+ 6. Managing a configuration +

+
+ +

+ This chapter explains how to manage a live configuration from initial creation, through successive revisions and successive releases of both the live-build software and the live image itself. +

+
+ +

+ 6.1 Dealing with configuration changes +

+
+ +

+ Live configurations rarely are perfect on the first try. It may be fine to pass lb config options from the command-line to perform a single build, but it is more typical to revise those options and build again until you are satisfied. To support these changes, you will need auto scripts which ensure your configuration is kept in a consistent state. +

+
+ +

+ 6.1.1 Why use auto scripts? What do they do? +

+
+ +

+ The lb config command stores the options you pass to it in config/* files along with many other options set to default values. If you run lb config again, it will not reset any option that was defaulted based on your initial options. So, for example, if you run lb config again with a new value for --binary-images, any dependent options that were defaulted for the old image type may no longer work with the new ones. Nor are these files intended to be read or edited. They store values for over a hundred options, so nobody, let alone yourself, will be able to see in these which options you actually specified. And finally, if you run lb config, then upgrade live-build and it happens to rename an option, config/* would still contain variables named after the old option that are no longer valid. +

+
+ +

+ For all these reasons, auto/* scripts will make your life easier. They are simple wrappers to the lb config, lb build and lb clean commands that are designed to help you manage your configuration. The auto/config script stores your lb config command with all desired options, the auto/clean script removes the files containing configuration variable values, and the auto/build script keeps a build.log of each build. Each of these scripts is run automatically every time you run the corresponding lb command. By using these scripts, your configuration is easier to read and is kept internally consistent from one revision to the next. Also, it will be much easier for you identify and fix options which need to change when you upgrade live-build after reading the updated documentation. +

+
+ +

+ 6.1.2 Use example auto scripts +

+
+ +

+ For your convenience, live-build comes with example auto shell scripts to copy and edit. Start a new, default configuration, then copy the examples into it: +

+
+ +

+ $ mkdir mylive && cd mylive && lb config
+$ mkdir auto
+$ cp /usr/share/doc/live-build/examples/auto/* auto/
+

+
+ +

+ Edit auto/config, adding any options as you see fit. For instance: +

+
+ +

+ #!/bin/sh
+lb config noauto \
+     --architectures i386 \
+     --linux-flavours 686-pae \
+     --binary-images hdd \
+     --mirror-bootstrap http://ftp.ch.debian.org/debian/ \
+     --mirror-binary http://ftp.ch.debian.org/debian/ \
+     "${@}"
+

+
+ +

+ Now, each time you use lb config, auto/config will reset the configuration based on these options. When you want to make changes to them, edit the options in this file instead of passing them to lb config. When you use lb clean, auto/clean will clean up the config/* files along with any other build products. And finally, when you use lb build, a log of the build will be written by auto/build in build.log. +

+
+ +

+ Note: A special noauto parameter is used here to suppress another call to auto/config, thereby preventing infinite recursion. Make sure you don't accidentally remove it when making edits. Also, take care to ensure when you split the lb config command across multiple lines for readability, as shown in the example above, that you don't forget the backslash (\) at the end of each line that continues to the next. +

+
+ +

+ 6.2 Clone a configuration published via Git +

+
+ +

+ Use the lb config --config option to clone a Git repository that contains a live system configuration. If you would like to base your configuration on one maintained by the Live Systems Project, look at ‹http://http://anonscm.debian.org/cgit/debian-live/› for the repository named live-images in the category Packages. This repository contains the configurations for the live systems prebuilt images. +

+
+ +

+ For example, to build a standard image, use the live-images repository as follows: +

+
+ +

+ $ mkdir live-images && cd live-images
+$ lb config --config git://http://anonscm.debian.org/git/debian-live/live-images.git
+$ cd images/standard
+

+
+ +

+ Edit auto/config and any other things you need in the config tree to suit your needs. For example, the unofficial non-free prebuilt images are made by simply adding --archive-areas "main contrib non-free". +

+
+ +

+ You may optionally define a shortcut in your Git configuration by adding the following to your ${HOME}/.gitconfig: +

+
+ +

+ [url "git://http://anonscm.debian.org/git/debian-live/"]
+         insteadOf = lso:
+

+
+ +

+ This enables you to use lso: anywhere you need to specify the address of a debian-live.alioth.debian.org git repository. If you also drop the optional .git suffix, starting a new image using this configuration is as easy as: +

+
+ +

+ $ lb config --config lso:live-images
+

+
+ +

+ Cloning the entire live-images repository pulls the configurations used for several images. If you feel like building a different image after you have finished with the first one, change to another directory and again and optionally, make any changes to suit your needs. +

+
+ +

+ In any case, remember that every time you will have to build the image as superuser: lb build +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/metadata.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/metadata.en.html new file mode 100644 index 0000000..b6dfea7 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/metadata.en.html @@ -0,0 +1,126 @@ + + + + + + metadata - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+

+ Metadata +

+

+ Document Metadata: +

+ Title: Live Systems Manual +

+ Author: Live Systems Project +

+ Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file. +

+ Publisher: Live Systems Project +

+ Date: 2015-09-22 +

+ Version Information: +

+ Sourcefile: live-manual.ssm.sst +

+ Filetype: SiSU text 2.0, ASCII text, with very long lines (1077) +

+ Source Digest: SHA2-256(live-manual.ssm.sst)= 5946f730f5507ab7b8fd85c9c536b89bd30afc6d5f336d8cafd50d54a84d9be6 +

+ Generated: +

+ Generated by: Generated by: SiSU 7.2.1_pre_rel of 2019w35/4 (2019-09-05) +

+ Ruby version: ruby 3.0.4p208 (2022-04-12 revision 3fa771dded) [x86_64-linux-gnu] +

+ Document (ao) last generated: 2022-06-14 13:53:03 +0000 +


+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + +
+
+ +
\ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/overview-of-tools.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/overview-of-tools.en.html new file mode 100644 index 0000000..171486c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/overview-of-tools.en.html @@ -0,0 +1,288 @@ + + + + + + overview-of-tools - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Overview of tools +

+
+ +

+ 5. Overview of tools +

+
+ +

+ This chapter contains an overview of the three main tools used in building live systems: live-build, live-boot and live-config. +

+
+ +

+ 5.1 The live-build package +

+
+ +

+ live-build is a collection of scripts to build live systems. These scripts are also referred to as "commands". +

+
+ +

+ The idea behind live-build is to be a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +

+
+ +

+ Many concepts are similar to those used to build Debian packages with debhelper: +

+
+ +
    +
  • + The scripts have a central location for configuring their operation. In debhelper, this is the debian/ subdirectory of a package tree. For example, dh_install will look, among others, for a file called debian/install to determine which files should exist in a particular binary package. In much the same way, live-build stores its configuration entirely under a config/ subdirectory. +
  • +
+
+ +
    +
  • + The scripts are independent - that is to say, it is always safe to run each command. +
  • +
+
+ +

+ Unlike debhelper, live-build provides the tools to generate a skeleton configuration directory. This could be considered to be similar to tools such as dh-make. For more information about these tools, read on, since the remainder of this section discuses the four most important commands. Note that the preceding lb is a generic wrapper for live-build commands. +

+
+ +
    +
  • + lb config: Responsible for initializing a Live system configuration directory. See The lb config command for more information. +
  • +
+
+ +
    +
  • + lb build: Responsible for starting a Live system build. See The lb build command for more information. +
  • +
+
+ +
    +
  • + lb clean: Responsible for removing parts of a Live system build. See The lb clean command for more information. +
  • +
+
+ +

+ 5.1.1 The lb config command +

+
+ +

+ As discussed in live-build, the scripts that make up live-build read their configuration with the source command from a single directory named config/. As constructing this directory by hand would be time-consuming and error-prone, the lb config command can be used to create the initial skeleton configuration tree. +

+
+ +

+ Issuing lb config without any arguments creates the config/ subdirectory which is populated with some default settings in configuration files, and two skeleton trees named auto/ and local/. +

+
+ +

+ $ lb config
+[2015-01-06 19:25:58] lb config
+P: Creating config tree for a debian/stretch/i386 system
+P: Symlinking hooks...
+

+
+ +

+ Using lb config without any arguments would be suitable for users who need a very basic image, or who intend to provide a more complete configuration via auto/config later (see Managing a configuration for details). +

+
+ +

+ Normally, you will want to specify some options. For example, to specify which package manager to use while building the image: +

+
+ +

+ $ lb config --apt aptitude
+

+
+ +

+ It is possible to specify many options, such as: +

+
+ +

+ $ lb config --binary-images netboot --bootappend-live "boot=live components hostname=live-host username=live-user" ...
+

+
+ +

+ A full list of options is available in the lb_config man page. +

+
+ +

+ 5.1.2 The lb build command +

+
+ +

+ The lb build command reads in your configuration from the config/ directory. It then runs the lower level commands needed to build your Live system. +

+
+ +

+ 5.1.3 The lb clean command +

+
+ +

+ It is the job of the lb clean command to remove various parts of a build so subsequent builds can start from a clean state. By default, chroot, binary and source stages are cleaned, but the cache is left intact. Also, individual stages can be cleaned. For example, if you have made changes that only affect the binary stage, use lb clean --binary prior to building a new binary. If your changes invalidate the bootstrap and/or package caches, e.g. changes to --mode, --architecture, or --bootstrap, you must use lb clean --purge. See the lb_clean man page for a full list of options. +

+
+ +

+ 5.2 The live-boot package +

+
+ +

+ live-boot is a collection of scripts providing hooks for the initramfs-tools, used to generate an initramfs capable of booting live systems, such as those created by live-build. This includes the live system ISOs, netboot tarballs, and USB stick images. +

+
+ +

+ At boot time it will look for read-only media containing a /live/ directory where a root filesystem (often a compressed filesystem image like squashfs) is stored. If found, it will create a writable environment, using aufs, for Debian like systems to boot from. +

+
+ +

+ More information on initial ramfs in Debian can be found in the Debian Linux Kernel Handbook at ‹http://kernel-handbook.alioth.debian.org/› in the chapter on initramfs. +

+
+ +

+ 5.3 The live-config package +

+
+ +

+ live-config consists of the scripts that run at boot time after live-boot to configure the live system automatically. It handles such tasks as setting the hostname, locales and timezone, creating the live user, inhibiting cron jobs and performing autologin of the live user. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/procedures.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/procedures.en.html new file mode 100644 index 0000000..04a891c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/procedures.en.html @@ -0,0 +1,254 @@ + + + + + + procedures - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Procedures +

+
+ +

+ 16. Procedures +

+
+ +

+ This chapter documents the procedures within the Live Systems Project for various tasks that need cooperation with other teams in Debian. +

+
+ +

+ 16.1 Major Releases +

+
+ +

+ Releasing a new stable major version of Debian includes a lot of different teams working together to make it happen. At some point, the Live team comes in and builds live system images. The requirements to do this are: +

+
+ +
    +
  • + A mirror containing the released versions for the debian and debian-security archives which the debian-live buildd can access. +
  • +
+
+ +
    +
  • + The names of the image need to be known (e.g. debian-live-VERSION-ARCH-FLAVOUR.iso). +
  • +
+
+ +
    +
  • + The data from debian-cd needs to be synced (udeb exclude lists). +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +

+ 16.2 Point Releases +

+
+ +
    +
  • + Again, we need updated mirrors of debian and debian-security. +
  • +
+
+ +
    +
  • + Images are built and mirrored on cdimage.debian.org. +
  • +
+
+ +
    +
  • + Send announcement mail. +
  • +
+
+ +

+ 16.2.1 Last Point Release of a Debian Release +

+
+ +

+ Remember to adjust both chroot and binary mirrors when building the last set of images for a Debian release after it has been moved away from ftp.debian.org to archive.debian.org. That way, old prebuilt live images are still useful without user modifications. +

+
+ +

+ 16.2.2 Point release announcement template +

+
+ +

+ An announcement mail for point releases can be generated using the template below and the following command: +

+
+ +

+ $ sed \
+     -e 's|@MAJOR@|9.0|g' \
+     -e 's|@MINOR@|9.0.1|g' \
+     -e 's|@CODENAME@|stretch|g' \
+     -e 's|@ANNOUNCE@|2017/msgXXXXX.html|g'
+

+
+ +

+ Please check the mail carefully before sending and pass it to others for proof-reading. +

+
+ +

+ Updated Live @MAJOR@: @MINOR@ released

+The Live Systems Project is pleased to announce the @MINOR@ update of the
+Live images for the stable distribution Debian @MAJOR@ (codename "@CODENAME@").

+The images are available for download at:

+   <http://debian-live.alioth.debian.org/cdimage/release/current/>

+and later at:

+   <http://cdimage.debian.org/cdimage/release/current-live/>

+This update includes the changes of the Debian @MINOR@ release:

+   <https://lists.debian.org/debian-announce/@ANNOUNCE@>

+Additionally it includes the following Live-specific changes:

+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [INSERT LIVE-SPECIFIC CHANGE HERE]
+  * [LARGER ISSUES MAY DESERVE THEIR OWN SECTION]

+About Live Systems
+------------------
+The Live Systems Project produces the tools used to build official
+live systems and the official live images themselves for Debian.

+About Debian
+------------
+The Debian Project is an association of Free Software developers who
+volunteer their time and effort in order to produce the completely free
+operating system Debian.

+Contact Information
+-------------------
+For further information, please visit the Live Systems web pages at
+<http://debian-live.alioth.debian.org/>, or contact the Live Systems team at
+<debian-live@lists.debian.org>.
+

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/style-guide.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/style-guide.en.html new file mode 100644 index 0000000..95498ea --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/style-guide.en.html @@ -0,0 +1,698 @@ + + + + + + style-guide - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ Style guide +

+
+ +

+ 19. Style guide +

+
+ +

+ 19.1 Guidelines for authors +

+
+ +

+ This section deals with some general considerations to be taken into account when writing technical documentation for live-manual. They are divided into linguistic features and recommended procedures. +

+
+ +

+ Note: Authors should first read Contributing to this document +

+
+ +

+ 19.1.1 Linguistic features +

+
+ +
    +
  • + Use plain English +
  • +
+
+ +

+ Keep in mind that a high percentage of your readers are not native speakers of English. So as a general rule try to use short, meaningful sentences, followed by a full stop. +

+
+ +

+ This does not mean that you have to use a simplistic, naive style. It is a suggestion to try to avoid, as much as possible, complex subordinate sentences that make the text difficult to understand for non-native speakers of English. +

+
+ +
    +
  • + Variety of English +
  • +
+
+ +

+ The most widely spread varieties of English are British and American so it is very likely that most authors will use either one or the other. In a collaborative environment, the ideal variety would be "International English" but it is very difficult, not to say impossible, to decide on which variety among all the existing ones, is the best to use. +

+
+ +

+ We expect that different varieties may mix without creating misunderstandings but in general terms you should try to be coherent and before deciding on using British, American or any other English flavour at your discretion, please take a look at how other people write and try to imitate them. +

+
+ +
    +
  • + Be balanced +
  • +
+
+ +

+ Do not be biased. Avoid including references to ideologies completely unrelated to live-manual. Technical writing should be as neutral as possible. It is in the very nature of scientific writing. +

+
+ +
    +
  • + Be politically correct +
  • +
+
+ +

+ Try to avoid sexist language as much as possible. If you need to make references to the third person singular preferably use "they" rather than "he" or "she" or awkward inventions such as "s/he", "s(he)" and the like. +

+
+ +
    +
  • + Be concise +
  • +
+
+ +

+ Go straight to the point and do not wander around aimlessly. Give as much information as necessary but do not give more information than necessary, this is to say, do not explain unnecessary details. Your readers are intelligent. Presume some previous knowledge on their part. +

+
+ +
    +
  • + Minimize translation work +
  • +
+
+ +

+ Keep in mind that whatever you write will have to be translated into several other languages. This implies that a number of people will have to do an extra work if you add useless or redundant information. +

+
+ +
    +
  • + Be coherent +
  • +
+
+ +

+ As suggested before, it is almost impossible to standardize a collaborative document into a perfectly unified whole. However, every effort on your side to write in a coherent way with the rest of the authors will be appreciated. +

+
+ +
    +
  • + Be cohesive +
  • +
+
+ +

+ Use as many text-forming devices as necessary to make your text cohesive and unambiguous. (Text-forming devices are linguistic markers such as connectors). +

+
+ +
    +
  • + Be descriptive +
  • +
+
+ +

+ It is preferable to describe the point in one or several paragraphs than merely using a number of sentences in a typical "changelog" style. Describe it! Your readers will appreciate it. +

+
+ +
    +
  • + Dictionary +
  • +
+
+ +

+ Look up the meaning of words in a dictionary or encyclopedia if you do not know how to express certain concepts in English. But keep in mind that a dictionary can either be your best friend or can turn into your worst enemy if you do not know how to use it correctly. +

+
+ +

+ English has the largest vocabulary that exists (with over one million words). Many of these words are borrowings from other languages. When looking up the meaning of words in a bilingual dictionary the tendency of a non-native speaker of English is to choose the one that sounds more similar in their mother tongue. This often turns into an excessively formal discourse which does not sound quite natural in English. +

+
+ +

+ As a general rule, if a concept can be expressed using different synonyms, it is a good advice to choose the first word proposed by the dictionary. If in doubt, choosing words of Germanic origin (Usually monosyllabic words) is often the right thing to do. Be warned that these two techniques might produce a rather informal discourse but at least your choice of words will be of wide use and generally accepted. +

+
+ +

+ Using a dictionary of collocations is recommended. They are extremely helpful when it comes to know which words usually occur together. +

+
+ +

+ Again it is a good practice to learn from the work of others. Using a search engine to check how other authors use certain expressions may help a lot. +

+
+ +
    +
  • + False friends, idioms and other idiomatic expressions +
  • +
+
+ +

+ Watch out for false friends. No matter how proficient you are in a foreign language you cannot help falling from time to time in the trap of the so called "false friends", words that look similar in two languages but whose meanings or uses might be completely different. +

+
+ +

+ Try to avoid idioms as much as possible. "Idioms" are expressions that may convey a completely different meaning from what their individual words seem to mean. Sometimes, idioms might be difficult to understand even for native speakers of English! +

+
+ +
    +
  • + Avoid slang, abbreviations, contractions... +
  • +
+
+ +

+ Even though you are encouraged to use plain, everyday English, technical writing belongs to the formal register of the language. +

+
+ +

+ Try to avoid slang, unusual abbreviations that are difficult to understand and above all contractions that try to imitate the spoken language. Not to mention typical irc and family friendly expressions. +

+
+ +

+ 19.1.2 Procedures +

+
+ +
    +
  • + Test before write +
  • +
+
+ +

+ It is important that authors test their examples before adding them to live-manual to ensure that everything works as described. Testing on a clean chroot or VM can be a good starting point. Besides, it would be ideal if the tests were then carried out on different machines with different hardware to spot possible problems that may arise. +

+
+ +
    +
  • + Examples +
  • +
+
+ +

+ When providing an example try to be as specific as you can. An example is, after all, just an example. +

+
+ +

+ It is often better to use a line that only applies to a specific case than using abstractions that may confuse your readers. In this case you can provide a brief explanation of the effects of the proposed example. +

+
+ +

+ There may be some exceptions when the example suggests using some potentially dangerous commands that, if misused, may cause data loss or other similar undesirable effects. In this case you should provide a thorough explanation of the possible side effects. +

+
+ +
    +
  • + External links +
  • +
+
+ +

+ Links to external sites should only be used when the information on those sites is crucial when it comes to understanding a special point. Even so, try to use links to external sites as sparsely as possible. Internet links are likely to change from time to time resulting in broken links and leaving your arguments in an incomplete state. +

+
+ +

+ Besides, people who read the manual offline will not have the chance to follow those links. +

+
+ +
    +
  • + Avoid branding and things that violate the license under which the manual is published +
  • +
+
+ +

+ Try to avoid branding as much as possible. Keep in mind that other downstream projects might make use of the documentation you write. So you are complicating things for them if you add certain specific material. +

+
+ +

+ live-manual is licensed under the GNU GPL. This has a number of implications that apply to the distribution of the material (of any kind, including copyrighted graphics or logos) that is published with it. +

+
+ +
    +
  • + Write a first draft, revise, edit, improve, redo if necessary +
  • +
+
+ +

+ - Brainstorm!. You need to organize your ideas first in a logical sequence of events. +

+
+ +

+ - Once you have somehow organized those ideas in your mind write a first draft. +

+
+ +

+ - Revise grammar, syntax and spelling. Keep in mind that the proper names of the releases, such as buster or sid, should not be capitalized when referred to as code names. In order to check the spelling you can run the "spell" target. i.e. make spell +

+
+ +

+ - Improve your statements and redo any part if necessary. +

+
+ +
    +
  • + Chapters +
  • +
+
+ +

+ Use the conventional numbering system for chapters and subtitles. e.g. 1, 1.1, 1.1.1, 1.1.2 ... 1.2, 1.2.1, 1.2.2 ... 2, 2.1 ... and so on. See markup below. +

+
+ +

+ If you have to enumerate a series of steps or stages in your description, you can also use ordinal numbers: First, second, third ... or First, Then, After that, Finally ... Alternatively you can use bulleted items. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ And last but not least, live-manual uses SiSU to process the text files and produce a multiple format output. It is recommended to take a look at SiSU's manual to get familiar with its markup, or else type: +

+
+ +

+ $ sisu --help markup
+

+
+ +

+ Here are some markup examples that may prove useful: +

+
+ +

+ - For emphasis/bold text: +

+
+ +

+ *{foo}* or !{foo}!
+

+
+ +

+ produces: foo or foo. Use it to emphasize certain key words. +

+
+ +

+ - For italics: +

+
+ +

+ /{foo}/
+

+
+ +

+ produces: foo. Use them e.g. for the names of Debian packages. +

+
+ +

+ - For monospace: +

+
+ +

+ #{foo}#
+

+
+ +

+ produces: foo. Use it e.g. for the names of commands. And also to highlight some key words or things like paths. +

+
+ +

+ - For code blocks: +

+
+ +

+ code{

+  $ foo
+  # bar

+}code
+

+
+ +

+ produces: +

+
+ +

+ $ foo
+# bar
+

+
+ +

+ Use code{ to open and }code to close the tags. It is important to remember to leave a space at the beginning of each line of code. +

+
+ +

+ 19.2 Guidelines for translators +

+
+ +

+ This section deals with some general considerations to be taken into account when translating the contents of live-manual. +

+
+ +

+ As a general recommendation, translators should have read and understood the translation rules that apply to their specific languages. Usually, translation groups and mailing lists provide information on how to produce translated work that complies with Debian quality standards. +

+
+ +

+ Note: Translators should also read Contributing to this document. In particular the section Translation +

+
+ +

+ 19.2.1 Translation hints +

+
+ +
    +
  • + Comments +
  • +
+
+ +

+ The role of the translator is to convey as faithfully as possible the meaning of words, sentences, paragraphs and texts as written by the original authors into their target language. +

+
+ +

+ So they should refrain from adding personal comments or extra bits of information of their own. If they want to add a comment for other translators working on the same documents, they can leave it in the space reserved for that. That is, the header of the strings in the po files preceded by a number sign #. Most graphical translation programs can automatically handle those types of comments. +

+
+ +
    +
  • + TN, Translator's Note +
  • +
+
+ +

+ It is perfectly acceptable however, to include a word or an expression in brackets in the translated text if, and only if, that makes the meaning of a difficult word or expression clearer to the reader. Inside the brackets the translator should make evident that the addition was theirs using the abbreviation "TN" or "Translator's Note". +

+
+ +
    +
  • + Impersonal sentences +
  • +
+
+ +

+ Documents written in English make an extensive use of the impersonal form "you". In some other languages that do not share this characteristic, this might give the false impression that the original texts are directly addressing the reader when they are actually not doing so. Translators must be aware of that fact and reflect it in their language as accurately as possible. +

+
+ +
    +
  • + False friends +
  • +
+
+ +

+ The trap of "false friends" explained before especially applies to translators. Double check the meaning of suspicious false friends if in doubt. +

+
+ +
    +
  • + Markup +
  • +
+
+ +

+ Translators working initially with pot files and later on with po files will find many markup features in the strings. They can translate the text anyway, as long as it is translatable, but it is extremely important that they use exactly the same markup as the original English version. +

+
+ +
    +
  • + Code blocks +
  • +
+
+ +

+ Even though the code blocks are usually untranslatable, including them in the translation is the only way to score a 100% complete translation. And even though it means more work at first because it might require the intervention of the translators if the code changes, it is the best way, in the long run, to identify what has already been translated and what has not when checking the integrity of the .po files. +

+
+ +
    +
  • + Newlines +
  • +
+
+ +

+ The translated texts need to have the exact same newlines as the original texts. Be careful to press the "Enter" key or type \n if they appear in the original files. These newlines often appear, for instance, in the code blocks. +

+
+ +

+ Make no mistake, this does not mean that the translated text needs to have the same length as the English version. That is nearly impossible. +

+
+ +
    +
  • + Untranslatable strings +
  • +
+
+ +

+ Translators should never translate: +

+
+ +

+ - The code names of releases (which should be written in lowercase) +

+
+ +

+ - The names of programs +

+
+ +

+ - The commands given as examples +

+
+ +

+ - Metadata (often between colons :metadata:) +

+
+ +

+ - Links +

+
+ +

+ - Paths +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/the-basics.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/the-basics.en.html new file mode 100644 index 0000000..1e08eb9 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/the-basics.en.html @@ -0,0 +1,847 @@ + + + + + + the-basics - + Live Systems Manual + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+

+ Live Systems Manual +

+
+

+ The basics +

+
+ +

+ 4. The basics +

+
+ +

+ This chapter contains a brief overview of the build process and instructions for using the three most commonly used image types. The most versatile image type, iso-hybrid, may be used on a virtual machine, optical medium or USB portable storage device. In certain special cases, as explained later, the hdd type may be more suitable. The chapter includes detailed instructions for building and using a netboot type image, which is a bit more involved due to the setup required on the server. This is an slightly advanced topic for anyone who is not already familiar with netbooting, but it is included here because once the setup is done, it is a very convenient way to test and deploy images for booting on the local network without the hassle of dealing with image media. +

+
+ +

+ The section finishes with a quick introduction to webbooting which is, perhaps, the easiest way of using different images for different purposes, switching from one to the other as needed using the internet as a means. +

+
+ +

+ Throughout the chapter, we will often refer to the default filenames produced by live-build. If you are downloading a prebuilt image instead, the actual filenames may vary. +

+
+ +

+ 4.1 What is a live system? +

+
+ +

+ A live system usually means an operating system booted on a computer from a removable medium, such as a CD-ROM or USB stick, or from a network, ready to use without any installation on the usual drive(s), with auto-configuration done at run time (see Terms). +

+
+ +

+ With live systems, it's an operating system, built for one of the supported architectures (currently amd64 and i386). It is made from the following parts: +

+
+ +
    +
  • + Linux kernel image, usually named vmlinuz* +
  • +
+
+ +
    +
  • + Initial RAM disk image (initrd): a RAM disk set up for the Linux boot, containing modules possibly needed to mount the System image and some scripts to do it. +
  • +
+
+ +
    +
  • + System image: The operating system's filesystem image. Usually, a SquashFS compressed filesystem is used to minimize the live system image size. Note that it is read-only. So, during boot the live system will use a RAM disk and 'union' mechanism to enable writing files within the running system. However, all modifications will be lost upon shutdown unless optional persistence is used (see Persistence). +
  • +
+
+ +
    +
  • + Bootloader: A small piece of code crafted to boot from the chosen medium, possibly presenting a prompt or menu to allow selection of options/configuration. It loads the Linux kernel and its initrd to run with an associated system filesystem. Different solutions can be used, depending on the target medium and format of the filesystem containing the previously mentioned components: isolinux to boot from a CD or DVD in ISO9660 format, syslinux for HDD or USB drive booting from a VFAT partition, extlinux for ext2/3/4 and btrfs partitions, pxelinux for PXE netboot, GRUB for ext2/3/4 partitions, etc. +
  • +
+
+ +

+ You can use live-build to build the system image from your specifications, set up a Linux kernel, its initrd, and a bootloader to run them, all in one medium-dependant format (ISO9660 image, disk image, etc.). +

+
+ +

+ 4.2 Downloading prebuilt images +

+
+ +

+ While the focus of this manual is developing and building your own live images, you may simply wish to try one of our prebuilt images, either as an introduction to their use or instead of building your own. These images are built using our live-images git repository and official stable releases are published at ‹https://www.debian.org/CD/live/›. In addition, older and upcoming releases, and unofficial images containing non-free firmware and drivers are available at ‹http://debian-live.alioth.debian.org/cdimage/release/›. +

+
+ +

+ 4.3 Using the web live image builder +

+
+ +

+ As a service to the community, we run a web-based live image builder service at ‹http://debian-live.alioth.debian.org/build/›. This site is maintained on a best effort basis. That is, although we strive to keep it up-to-date and operational at all times, and do issue notices for significant operational outages, we cannot guarantee 100% availability or fast image building, and the service may occasionally have issues that take some time to resolve. If you have problems or questions about the service, please contact us, providing us with the link to your build. +

+
+ +

+ 4.3.1 Web builder usage and caveats +

+
+ +

+ The web interface currently makes no provision to prevent the use of invalid combinations of options, and in particular, where changing an option would normally (i.e. using live-build directly) change defaults of other options listed in the web form, the web builder does not change these defaults. Most notably, if you change --architectures from the default i386 to amd64, you must change the corresponding option --linux-flavours from the default 586 to amd64. See the lb_config man page for the version of live-build installed on the web builder for more details. The version number of live-build is listed at the bottom of the web builder page. +

+
+ +

+ The time estimate given by the web builder is a crude estimate only and may not reflect how long your build actually takes. Nor is the estimate updated once it is displayed. Please be patient. Do not refresh the page you land on after submitting the build, as this will resubmit a new build with the same parameters. You should contact us if you don't receive notification of your build only once you are certain you've waited long enough and verified the notification e-mail did not get caught by your own e-mail spam filter. +

+
+ +

+ The web builder is limited in the kinds of images it can build. This keeps it simple and efficient to use and maintain. If you would like to make customizations that are not provided for by the web interface, the rest of this manual explains how to build your own images using live-build. +

+
+ +

+ 4.4 First steps: building an ISO hybrid image +

+
+ +

+ Regardless of the image type, you will need to perform the same basic steps to build an image each time. As a first example, create a build directory, change to that directory and then execute the following sequence of live-build commands to create a basic ISO hybrid image containing a default live system without X.org. It is suitable for burning to CD or DVD media, and also to copy onto a USB stick. +

+
+ +

+ The name of the working directory is absolutely up to you, but if you take a look at the examples used throughout live-manual, it is a good idea to use a name that helps you identify the image you are working with in each directory, especially if you are working or experimenting with different image types. In this case you are going to build a default system so let's call it, for example, live-default. +

+
+ +

+ $ mkdir live-default && cd live-default
+

+
+ +

+ Then, run the lb config command. This will create a "config/" hierarchy in the current directory for use by other commands: +

+
+ +

+ $ lb config
+

+
+ +

+ No parameters are passed to these commands, so defaults for all of their various options will be used. See The lb config command for more details. +

+
+ +

+ Now that the "config/" hierarchy exists, build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ This process can take a while, depending on the speed of your computer and your network connection. When it is complete, there should be a live-image-i386.hybrid.iso image file, ready to use, in the current directory. +

+
+ +

+ Note: If you are building on an amd64 system the name of the resulting image will be live-image-amd64.hybrid.iso. Keep in mind this naming convention throughout the manual. +

+
+ +

+ 4.5 Using an ISO hybrid live image +

+
+ +

+ After either building or downloading an ISO hybrid image, which can be obtained at ‹https://www.debian.org/CD/live/›, the usual next step is to prepare your medium for booting, either CD-R(W) or DVD-R(W) optical media or a USB stick. +

+
+ +

+ 4.5.1 Burning an ISO image to a physical medium +

+
+ +

+ Burning an ISO image is easy. Just install xorriso and use it from the command-line to burn the image. For instance: +

+
+ +

+ # apt-get install xorriso
+$ xorriso -as cdrecord -v dev=/dev/sr0 blank=as_needed live-image-i386.hybrid.iso
+

+
+ +

+ 4.5.2 Copying an ISO hybrid image to a USB stick +

+
+ +

+ ISO images prepared with xorriso, can be simply copied to a USB stick with the cp program or an equivalent. Plug in a USB stick with a size large enough for your image file and determine which device it is, which we hereafter refer to as ${USBSTICK}. This is the device file of your key, such as /dev/sdb, not a partition, such as /dev/sdb1! You can find the right device name by looking in dmesg's output after plugging in the stick, or better yet, ls -l /dev/disk/by-id. +

+
+ +

+ Once you are certain you have the correct device name, use the cp command to copy the image to the stick. This will definitely overwrite any previous contents on your stick! +

+
+ +

+ $ cp live-image-i386.hybrid.iso ${USBSTICK}
+$ sync
+

+
+ +

+ Note: The sync command is useful to ensure that all the data, which is stored in memory by the kernel while copying the image, is written to the USB stick. +

+
+ +

+ 4.5.3 Using the space left on a USB stick +

+
+ +

+ After copying the live-image-i386.hybrid.iso to a USB stick, the first partition on the device will be filled up by the live system. To use the remaining free space, use a partitioning tool such as gparted or parted to create a new partition on the stick. +

+
+ +

+ # gparted ${USBSTICK}
+

+
+ +

+ After the partition is created, where ${PARTITION} is the name of the partition, such as /dev/sdb2, you have to create a filesystem on it. One possible choice would be ext4. +

+
+ +

+ # mkfs.ext4 ${PARTITION}
+

+
+ +

+ Note: If you want to use the extra space with Windows, apparently that OS cannot normally access any partitions but the first. Some solutions to this problem have been discussed on our mailing list, but it seems there are no easy answers. +

+
+ +

+ Remember: Every time you install a new live-image-i386.hybrid.iso on the stick, all data on the stick will be lost because the partition table is overwritten by the contents of the image, so back up your extra partition first to restore again after updating the live image. +

+
+ +

+ 4.5.4 Booting the live medium +

+
+ +

+ The first time you boot your live medium, whether CD, DVD, USB key, or PXE boot, some setup in your computer's BIOS may be needed first. Since BIOSes vary greatly in features and key bindings, we cannot get into the topic in depth here. Some BIOSes provide a key to bring up a menu of boot devices at boot time, which is the easiest way if it is available on your system. Otherwise, you need to enter the BIOS configuration menu and change the boot order to place the boot device for the live system before your normal boot device. +

+
+ +

+ Once you've booted the medium, you are presented with a boot menu. If you just press enter here, the system will boot using the default entry, Live and default options. For more information about boot options, see the "help" entry in the menu and also the live-boot and live-config man pages found within the live system. +

+
+ +

+ Assuming you've selected Live and booted a default desktop live image, after the boot messages scroll by, you should be automatically logged into the user account and see a desktop, ready to use. If you have booted a console-only image, such as a standard flavour prebuilt image, you should be automatically logged in on the console to the user account and see a shell prompt, ready to use. +

+
+ +

+ 4.6 Using a virtual machine for testing +

+
+ +

+ It can be a great time-saver for the development of live images to run them in a virtual machine (VM). This is not without its caveats: +

+
+ +
    +
  • + Running a VM requires enough RAM for both the guest OS and the host and a CPU with hardware support for virtualization is recommended. +
  • +
+
+ +
    +
  • + There are some inherent limitations to running on a VM, e.g. poor video performance, limited choice of emulated hardware. +
  • +
+
+ +
    +
  • + When developing for specific hardware, there is no substitute for running on the hardware itself. +
  • +
+
+ +
    +
  • + Occasionally there are bugs that relate only to running in a VM. When in doubt, test your image directly on the hardware. +
  • +
+
+ +

+ Provided you can work within these constraints, survey the available VM software and choose one that is suitable for your needs. +

+
+ +

+ 4.6.1 Testing an ISO image with QEMU +

+
+ +

+ The most versatile VM in Debian is QEMU. If your processor has hardware support for virtualization, use the qemu-kvm package; the qemu-kvm package description briefly lists the requirements. +

+
+ +

+ First, install qemu-kvm if your processor supports it. If not, install qemu, in which case the program name is qemu instead of kvm in the following examples. The qemu-utils package is also valuable for creating virtual disk images with qemu-img. +

+
+ +

+ # apt-get install qemu-kvm qemu-utils
+

+
+ +

+ Booting an ISO image is simple: +

+
+ +

+ $ kvm -cdrom live-image-i386.hybrid.iso
+

+
+ +

+ See the man pages for more details. +

+
+ +

+ 4.6.2 Testing an ISO image with VirtualBox +

+
+ +

+ In order to test the ISO with virtualbox: +

+
+ +

+ # apt-get install virtualbox virtualbox-qt virtualbox-dkms
+$ virtualbox
+

+
+ +

+ Create a new virtual machine, change the storage settings to use live-image-i386.hybrid.iso as the CD/DVD device, and start the machine. +

+
+ +

+ Note: For live systems containing X.org that you want to test with virtualbox, you may wish to include the VirtualBox X.org driver package, virtualbox-guest-dkms and virtualbox-guest-x11, in your live-build configuration. Otherwise, the resolution is limited to 800x600. +

+
+ +

+ $ echo "virtualbox-guest-dkms virtualbox-guest-x11" >> config/package-lists/my.list.chroot
+

+
+ +

+ In order to make the dkms package work, also the kernel headers for the kernel flavour used in your image need to be installed. Instead of manually listing the correct linux-headers package in above created package list, the selection of the right package can be done automatically by live-build. +

+
+ +

+   $ lb config --linux-packages "linux-image linux-headers"
+

+
+ +

+ 4.7 Building and using an HDD image +

+
+ +

+ Building an HDD image is similar to an ISO hybrid one in all respects except you specify -b hdd and the resulting filename is live-image-i386.img which cannot be burnt to optical media. It is suitable for booting from USB sticks, USB hard drives, and various other portable storage devices. Normally, an ISO hybrid image can be used for this purpose instead, but if you have a BIOS which does not handle hybrid images properly, you need an HDD image. +

+
+ +

+ Note: if you created an ISO hybrid image with the previous example, you will need to clean up your working directory with the lb clean command (see The lb clean command): +

+
+ +

+ # lb clean --binary
+

+
+ +

+ Run the lb config command as before, except this time specifying the HDD image type: +

+
+ +

+ $ lb config -b hdd
+

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ When the build finishes, a live-image-i386.img file should be present in the current directory. +

+
+ +

+ The generated binary image contains a VFAT partition and the syslinux bootloader, ready to be directly written on a USB device. Once again, using an HDD image is just like using an ISO hybrid one on USB. Follow the instructions in Using an ISO hybrid live image, except use the filename live-image-i386.img instead of live-image-i386.hybrid.iso. +

+
+ +

+ Likewise, to test an HDD image with Qemu, install qemu as described above in Testing an ISO image with QEMU. Then run kvm or qemu, depending on which version your host system needs, specifying live-image-i386.img as the first hard drive. +

+
+ +

+ $ kvm -hda live-image-i386.img
+

+
+ +

+ 4.8 Building a netboot image +

+
+ +

+ The following sequence of commands will create a basic netboot image containing a default live system without X.org. It is suitable for booting over the network. +

+
+ +

+ Note: if you performed any previous examples, you will need to clean up your working directory with the lb clean command: +

+
+ +

+ # lb clean
+

+
+ +

+ In this specific case, a lb clean --binary would not be enough to clean up the necessary stages. The cause for this is that in netboot setups, a different initramfs configuration needs to be used which live-build performs automatically when building netboot images. Since the initramfs creation belongs to the chroot stage, switching to netboot in an existing build directory means to rebuild the chroot stage too. Therefore, lb clean (which will remove the chroot stage, too) needs to be used. +

+
+ +

+ Run the lb config command as follows to configure your image for netbooting: +

+
+ +

+ $ lb config -b netboot --net-root-path "/srv/debian-live" --net-root-server "192.168.0.2"
+

+
+ +

+ In contrast with the ISO and HDD images, netbooting does not, itself, serve the filesystem image to the client, so the files must be served via NFS. Different network filesystems can be chosen through lb config. The --net-root-path and --net-root-server options specify the location and server, respectively, of the NFS server where the filesystem image will be located at boot time. Make sure these are set to suitable values for your network and server. +

+
+ +

+ Now build the image with the lb build command: +

+
+ +

+ # lb build
+

+
+ +

+ In a network boot, the client runs a small piece of software which usually resides on the EPROM of the Ethernet card. This program sends a DHCP request to get an IP address and information about what to do next. Typically, the next step is getting a higher level bootloader via the TFTP protocol. That could be pxelinux, GRUB, or even boot directly to an operating system like Linux. +

+
+ +

+ For example, if you unpack the generated live-image-i386.netboot.tar archive in the /srv/debian-live directory, you'll find the filesystem image in live/filesystem.squashfs and the kernel, initrd and pxelinux bootloader in tftpboot/. +

+
+ +

+ We must now configure three services on the server to enable netbooting: the DHCP server, the TFTP server and the NFS server. +

+
+ +

+ 4.8.1 DHCP server +

+
+ +

+ We must configure our network's DHCP server to be sure to give an IP address to the netbooting client system, and to advertise the location of the PXE bootloader. +

+
+ +

+ Here is an example for inspiration, written for the ISC DHCP server isc-dhcp-server in the /etc/dhcp/dhcpd.conf configuration file: +

+
+ +

+ # /etc/dhcp/dhcpd.conf - configuration file for isc-dhcp-server

+ddns-update-style none;

+option domain-name "example.org";
+option domain-name-servers ns1.example.org, ns2.example.org;

+default-lease-time 600;
+max-lease-time 7200;

+log-facility local7;

+subnet 192.168.0.0 netmask 255.255.255.0 {
+   range 192.168.0.1 192.168.0.254;
+   filename "pxelinux.0";
+   next-server 192.168.0.2;
+   option subnet-mask 255.255.255.0;
+   option broadcast-address 192.168.0.255;
+   option routers 192.168.0.1;
+}
+

+
+ +

+ 4.8.2 TFTP server +

+
+ +

+ This serves the kernel and initial ramdisk to the system at run time. +

+
+ +

+ You should install the tftpd-hpa package. It can serve all files contained inside a root directory, usually /srv/tftp. To let it serve files inside /srv/debian-live/tftpboot, run as root the following command: +

+
+ +

+ # dpkg-reconfigure -plow tftpd-hpa
+

+
+ +

+ and fill in the new tftp server directory when being asked about it. +

+
+ +

+ 4.8.3 NFS server +

+
+ +

+ Once the guest computer has downloaded and booted a Linux kernel and loaded its initrd, it will try to mount the Live filesystem image through a NFS server. +

+
+ +

+ You need to install the nfs-kernel-server package. +

+
+ +

+ Then, make the filesystem image available through NFS by adding a line like the following to /etc/exports: +

+
+ +

+ /srv/debian-live *(ro,async,no_root_squash,no_subtree_check)
+

+
+ +

+ and tell the NFS server about this new export with the following command: +

+
+ +

+ # exportfs -rv
+

+
+ +

+ Setting up these three services can be a little tricky. You might need some patience to get all of them working together. For more information, see the syslinux wiki at ‹http://www.syslinux.org/wiki/index.php/PXELINUX› or the Debian Installer Manual's TFTP Net Booting section at ‹http://d-i.alioth.debian.org/manual/en.i386/ch04s05.html›. They might help, as their processes are very similar. +

+
+ +

+ 4.8.4 Netboot testing HowTo +

+
+ +

+ Netboot image creation is made easy with live-build, but testing the images on physical machines can be really time consuming. +

+
+ +

+ To make our life easier, we can use virtualization. +

+
+ +

+ 4.8.5 Qemu +

+
+ +
    +
  • + Install qemu, bridge-utils, sudo. +
  • +
+
+ +

+ Edit /etc/qemu-ifup: +

+
+ +

+ #!/bin/sh
+sudo -p "Password for $0:" /sbin/ifconfig $1 172.20.0.1
+echo "Executing /etc/qemu-ifup"
+echo "Bringing up $1 for bridged mode..."
+sudo /sbin/ifconfig $1 0.0.0.0 promisc up
+echo "Adding $1 to br0..."
+sudo /usr/sbin/brctl addif br0 $1
+sleep 2
+

+
+ +

+ Get, or build a grub-floppy-netboot. +

+
+ +

+ Launch qemu with "-net nic,vlan=0 -net tap,vlan=0,ifname=tun0" +

+
+ +

+ 4.9 Webbooting +

+
+ +

+ Webbooting is a convenient way of retrieving and booting live systems using the internet as a means. The requirements for webbooting are very few. On the one hand, you need a medium with a bootloader, an initial ramdisk and a kernel. On the other hand, a web server to store the squashfs files which contain the filesystem. +

+
+ +

+ 4.9.1 Getting the webboot files +

+
+ +

+ As usual, you can build the images yourself or use the prebuilt files, which are available on the project's homepage at ‹http://debian-live.alioth.debian.org/›. Using prebuilt images would be handy for doing initial testing until one can fine tune their own needs. If you have built a live image you will find the files needed for webbooting in the build directory under binary/live/. The files are called vmlinuz, initrd.img and filesystem.squashfs. +

+
+ +

+ It is also possible to extract those files from an already existing iso image. In order to achieve that, loopback mount the image as follows: +

+
+ +

+ # mount -o loop image.iso /mnt
+

+
+ +

+ The files are to be found under the live/ directory. In this specific case, it would be /mnt/live/. This method has the disadvantage that you need to be root to be able to mount the image. However, it has the advantage that it is easily scriptable and thus, easily automatized. +

+
+ +

+ But undoubtedly, the easiest way of extracting the files from an iso image and uploading it to the web server at the same time, is using the midnight commander or mc. If you have the genisoimage package installed, the two-pane file manager allows you to browse the contents of an iso file in one pane and upload the files via ftp in the other pane. Even though this method requires manual work, it does not require root privileges. +

+
+ +

+ 4.9.2 Booting webboot images +

+
+ +

+ While some users will prefer virtualization to test webbooting, we refer to real hardware here to match the following possible use case which should only be considered as an example. +

+
+ +

+ In order to boot a webboot image it is enough to have the components mentioned above, i.e. vmlinuz and initrd.img in a usb stick inside a directory named live/ and install syslinux as bootloader. Then boot from the usb stick and type fetch=URL/PATH/TO/FILE at the boot options. live-boot will retrieve the squashfs file and store it into ram. This way, it is possible to use the downloaded compressed filesystem as a regular live system. For example: +

+
+ +

+ append boot=live components fetch=http://192.168.2.50/images/webboot/filesystem.squashfs
+

+
+ +

+ Use case: You have a web server in which you have stored two squashfs files, one which contains a full desktop, like for example gnome, and a standard one. If you need a graphical environment for one machine, you can plug your usb stick in and webboot the gnome image. If you need one of the tools included in the second type of image, perhaps for another machine, you can webboot the standard one. +

+

+ + + +
+ + + +
+ + +
+
+ + + + + + +
+ + << previous + + + + toc + + + + next >> + + +
+
+ +
+ + + +
+ \ No newline at end of file diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/toc.en.html b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/toc.en.html new file mode 100644 index 0000000..9612714 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/livebuild/live-manual/toc.en.html @@ -0,0 +1,1163 @@ + + + + + + Live Systems Manual + + + + + + + + + + + + + + + + + + + + + +
+ + +
+

+ Live manual +

+

+ Live Systems +

+
+
+ + + +
+ + +
+
+   + next >>  +
+

+ + + +
+ +

Live Systems Manual +

+ +

Live Systems Project <debian-live@lists.debian.org> +

+ +
+ +

+ Live Systems Manual +

+ +

+ About +

+ +

+ About this manual +

+ +

+ + 1. About this manual + +

+ +
+ + 1.1 For the impatient + +
+ +
+ + 1.2 Terms + +
+ +
+ + 1.3 Authors + +
+ +
+ + 1.4 Contributing to this document + +
+ +
+ + 1.4.1 Applying changes + +
+ +
+ + 1.4.2 Translation + +
+ +

+ About the Live Systems Project +

+ +

+ + 2. About the Live Systems Project + +

+ +
+ + 2.1 Motivation + +
+ +
+ + 2.1.1 What is wrong with current live systems + +
+ +
+ + 2.1.2 Why create our own live system? + +
+ +
+ + 2.2 Philosophy + +
+ +
+ + 2.2.1 Only unchanged packages from Debian "main" + +
+ +
+ + 2.2.2 No package configuration of the live system + +
+ +
+ + 2.3 Contact + +
+ +

+ User +

+ +

+ Installation +

+ +

+ + 3. Installation + +

+ +
+ + 3.1 Requirements + +
+ +
+ + 3.2 Installing live-build + +
+ +
+ + 3.2.1 From the Debian repository + +
+ +
+ + 3.2.2 From source + +
+ +
+ + 3.2.3 From 'snapshots' + +
+ +
+ + 3.3 Installing live-boot and live-config + +
+ +
+ + 3.3.1 From the Debian repository + +
+ +
+ + 3.3.2 From source + +
+ +
+ + 3.3.3 From 'snapshots' + +
+ +

+ The basics +

+ +

+ + 4. The basics + +

+ +
+ + 4.1 What is a live system? + +
+ +
+ + 4.2 Downloading prebuilt images + +
+ +
+ + 4.3 Using the web live image builder + +
+ +
+ + 4.3.1 Web builder usage and caveats + +
+ +
+ + 4.4 First steps: building an ISO hybrid image + +
+ +
+ + 4.5 Using an ISO hybrid live image + +
+ +
+ + 4.5.1 Burning an ISO image to a physical medium + +
+ +
+ + 4.5.2 Copying an ISO hybrid image to a USB stick + +
+ +
+ + 4.5.3 Using the space left on a USB stick + +
+ +
+ + 4.5.4 Booting the live medium + +
+ +
+ + 4.6 Using a virtual machine for testing + +
+ +
+ + 4.6.1 Testing an ISO image with QEMU + +
+ +
+ + 4.6.2 Testing an ISO image with VirtualBox + +
+ +
+ + 4.7 Building and using an HDD image + +
+ +
+ + 4.8 Building a netboot image + +
+ +
+ + 4.8.1 DHCP server + +
+ +
+ + 4.8.2 TFTP server + +
+ +
+ + 4.8.3 NFS server + +
+ +
+ + 4.8.4 Netboot testing HowTo + +
+ +
+ + 4.8.5 Qemu + +
+ +
+ + 4.9 Webbooting + +
+ +
+ + 4.9.1 Getting the webboot files + +
+ +
+ + 4.9.2 Booting webboot images + +
+ +

+ Overview of tools +

+ +

+ + 5. Overview of tools + +

+ +
+ + 5.1 The live-build package + +
+ +
+ + 5.1.1 The lb config command + +
+ +
+ + 5.1.2 The lb build command + +
+ +
+ + 5.1.3 The lb clean command + +
+ +
+ + 5.2 The live-boot package + +
+ +
+ + 5.3 The live-config package + +
+ +

+ Managing a configuration +

+ +

+ + 6. Managing a configuration + +

+ +
+ + 6.1 Dealing with configuration changes + +
+ +
+ + 6.1.1 Why use auto scripts? What do they do? + +
+ +
+ + 6.1.2 Use example auto scripts + +
+ +
+ + 6.2 Clone a configuration published via Git + +
+ +

+ Customizing contents +

+ +

+ + 7. Customization overview + +

+ +
+ + 7.1 Build time vs. boot time configuration + +
+ +
+ + 7.2 Stages of the build + +
+ +
+ + 7.3 Supplement lb config with files + +
+ +
+ + 7.4 Customization tasks + +
+ +

+ Customizing package installation +

+ +

+ + 8. Customizing package installation + +

+ +
+ + 8.1 Package sources + +
+ +
+ + 8.1.1 Distribution, archive areas and mode + +
+ +
+ + 8.1.2 Distribution mirrors + +
+ +
+ + 8.1.3 Distribution mirrors used at build time + +
+ +
+ + 8.1.4 Distribution mirrors used at run time + +
+ +
+ + 8.1.5 Additional repositories + +
+ +
+ + 8.2 Choosing packages to install + +
+ +
+ + 8.2.1 Package lists + +
+ +
+ + 8.2.2 Using metapackages + +
+ +
+ + 8.2.3 Local package lists + +
+ +
+ + 8.2.4 Local binary package lists + +
+ +
+ + 8.2.5 Generated package lists + +
+ +
+ + 8.2.6 Using conditionals inside package lists + +
+ +
+ + 8.2.7 Removing packages at install time + +
+ +
+ + 8.2.8 Desktop and language tasks + +
+ +
+ + 8.2.9 Kernel flavour and version + +
+ +
+ + 8.2.10 Custom kernels + +
+ +
+ + 8.3 Installing modified or third-party packages + +
+ +
+ + 8.3.1 Using packages.chroot to install custom packages + +
+ +
+ + 8.3.2 Using an APT repository to install custom packages + +
+ +
+ + 8.3.3 Custom packages and APT + +
+ +
+ + 8.4 Configuring APT at build time + +
+ +
+ + 8.4.1 Choosing apt or aptitude + +
+ +
+ + 8.4.2 Using a proxy with APT + +
+ +
+ + 8.4.3 Tweaking APT to save space + +
+ +
+ + 8.4.4 Passing options to apt or aptitude + +
+ +
+ + 8.4.5 APT pinning + +
+ +

+ Customizing contents +

+ +

+ + 9. Customizing contents + +

+ +
+ + 9.1 Includes + +
+ +
+ + 9.1.1 Live/chroot local includes + +
+ +
+ + 9.1.2 Binary local includes + +
+ +
+ + 9.2 Hooks + +
+ +
+ + 9.2.1 Chroot local hooks + +
+ +
+ + 9.2.2 Binary local hooks + +
+ +
+ + 9.2.3 Boot-time hooks + +
+ +
+ + 9.3 Preseeding Debconf questions + +
+ +

+ Customizing run time behaviours +

+ +

+ + 10. Customizing run time behaviours + +

+ +
+ + 10.1 Customizing the live user + +
+ +
+ + 10.2 Customizing locale and language + +
+ +
+ + 10.3 Persistence + +
+ +
+ + 10.3.1 The persistence.conf file + +
+ +
+ + 10.3.2 Using more than one persistence store + +
+ +
+ + 10.3.3 Using persistence with encryption + +
+ +

+ Customizing the binary image +

+ +

+ + 11. Customizing the binary image + +

+ +
+ + 11.1 Bootloaders + +
+ +
+ + 11.2 ISO metadata + +
+ +

+ Customizing Debian Installer +

+ +

+ + 12. Customizing Debian Installer + +

+ +
+ + 12.1 Types of Debian Installer + +
+ +
+ + 12.2 Customizing Debian Installer by preseeding + +
+ +
+ + 12.3 Customizing Debian Installer content + +
+ +

+ Project +

+ +

+ Contributing to the project +

+ +

+ + 13. Contributing to the project + +

+ +
+ + 13.1 Making changes + +
+ +
+ + 13.2 Translation of man pages + +
+ +

+ Reporting bugs +

+ +

+ + 14. Reporting bugs + +

+ +
+ + 14.1 Known issues + +
+ +
+ + 14.2 Rebuild from scratch + +
+ +
+ + 14.3 Use up-to-date packages + +
+ +
+ + 14.4 Collect information + +
+ +
+ + 14.5 Isolate the failing case if possible + +
+ +
+ + 14.6 Use the correct package to report the bug against + +
+ +
+ + 14.6.1 At build time while bootstrapping + +
+ +
+ + 14.6.2 At build time while installing packages + +
+ +
+ + 14.6.3 At boot time + +
+ +
+ + 14.6.4 At run time + +
+ +
+ + 14.7 Do the research + +
+ +
+ + 14.8 Where to report bugs + +
+ +

+ Coding Style +

+ +

+ + 15. Coding Style + +

+ +
+ + 15.1 Compatibility + +
+ +
+ + 15.2 Indenting + +
+ +
+ + 15.3 Wrapping + +
+ +
+ + 15.4 Variables + +
+ +
+ + 15.5 Miscellaneous + +
+ +

+ Procedures +

+ +

+ + 16. Procedures + +

+ +
+ + 16.1 Major Releases + +
+ +
+ + 16.2 Point Releases + +
+ +
+ + 16.2.1 Last Point Release of a Debian Release + +
+ +
+ + 16.2.2 Point release announcement template + +
+ +

+ Git repositories +

+ +

+ + 17. Git repositories + +

+ +
+ + 17.1 Handling multiple repositories + +
+ +

+ Examples +

+ +

+ Examples +

+ +

+ + 18. Examples + +

+ +
+ + 18.1 Using the examples + +
+ +
+ + 18.2 Tutorial 1: A default image + +
+ +
+ + 18.3 Tutorial 2: A web browser utility + +
+ +
+ + 18.4 Tutorial 3: A personalized image + +
+ +
+ + 18.4.1 First revision + +
+ +
+ + 18.4.2 Second revision + +
+ +
+ + 18.5 A VNC Kiosk Client + +
+ +
+ + 18.6 A base image for a 128MB USB key + +
+ +
+ + 18.7 A localized GNOME desktop and installer + +
+ +

+ Appendix +

+ +

+ Style guide +

+ +

+ + 19. Style guide + +

+ +
+ + 19.1 Guidelines for authors + +
+ +
+ + 19.1.1 Linguistic features + +
+ +
+ + 19.1.2 Procedures + +
+ +
+ + 19.2 Guidelines for translators + +
+ +
+ + 19.2.1 Translation hints + +
+ +

+ Metadata +

+ +

+ + SiSU Metadata, document information + +

+ +

Rights: Copyright: Copyright (C) 2006-2015 Live Systems Project
License: 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 3 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, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.

+

+ +

+ +
+

 

+ + + +
+ + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/misc64/desktop-base_12.0.6+custom1_all.deb b/eznixOS12Xdev-calamares/eznixOS12Xdev/misc64/desktop-base_12.0.6+custom1_all.deb new file mode 100644 index 0000000..b244c14 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/misc64/desktop-base_12.0.6+custom1_all.deb differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/os-release/os-release b/eznixOS12Xdev-calamares/eznixOS12Xdev/os-release/os-release new file mode 100644 index 0000000..0a2bc3b --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/os-release/os-release @@ -0,0 +1,6 @@ +PRETTY_NAME="EznixOS12X" +NAME="EznixOS" +VERSION_ID="12" +VERSION="12 (bookworm)" +VERSION_CODENAME=bookworm +ID=debian diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/bpkernel b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/bpkernel new file mode 100755 index 0000000..78a05c5 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/bpkernel @@ -0,0 +1,25 @@ +#!/bin/bash + +# bpkernel -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +bpkernelr () { + apt-get -y install -t bookworm-backports linux-image-amd64 linux-headers-amd64 + apt-get -y install -t bookworm-backports firmware-linux firmware-linux-nonfree firmware-misc-nonfree + apt-get -y install -t bookworm-backports firmware-realtek firmware-atheros firmware-bnx2 firmware-bnx2x firmware-brcm80211 firmware-ipw2x00 firmware-intelwimax firmware-iwlwifi firmware-libertas firmware-netxen firmware-zd1211 +} + +bpkernelr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ezadmin b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ezadmin new file mode 100755 index 0000000..d78256b --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ezadmin @@ -0,0 +1,151 @@ +#!/bin/bash + +# ezadmin -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + + +# --------------------------------------- +# Define Functions: +# --------------------------------------- + + +setsudo () { + clear + echo " " + bash /usr/local/bin/setsudo + clear + echo " " + echo "User Added To Sudo Group (logout & login)" + sleep 3 + clear +} + +optimize () { + clear + echo " " + bash /usr/local/bin/optimize + clear + echo " " + echo "Optimized sources.list & Updated Repos" + echo " " + sleep 3 + clear +} + +debtesting () { + clear + echo " " + bash /usr/local/bin/gototesting + clear + echo " " + echo "Upgrade to testing, reboot now" + echo " " + sleep 3 + clear +} + +iconcache () { + clear + echo " " + bash /usr/local/bin/iconcache + clear + echo " " + echo "Icon Cache Files Rebuilt (logout & login)" + sleep 3 + clear +} + +ffinstall () { + clear + echo " " + bash /usr/local/bin/ffinstall + clear + echo " " + echo "Firefox Current Installed" + sleep 3 + clear +} + +ytdlpinst () { + clear + echo " " + bash /usr/local/bin/ytdlpinstall + clear + echo " " + echo "YT-DLP video downloader Installed" + sleep 3 + clear +} + +bpkernel () { + clear + echo " " + bash /usr/local/bin/bpkernel + clear + echo " " + echo "Newest Kernel From Backports Installed (Reboot Required)" + sleep 3 + clear +} + +# --------------------------- +# Main Menu +# --------------------------- + +mainmenu () { while true +do + clear + echo "----------------------" + echo " EZ Admin Menu:" + echo " 12X Xfce Edition" + echo "----------------------" + echo "" + echo " (a) Add Myself to Sudo Group " + echo " (Logout & Login to take effect) " + echo " (b) Optimize Sources & Update Repos " + echo " (c) Rebuild Icon Cache Files " + echo " (Logout & Login to take effect) " + echo " (d) Install or upgrade Firefox Latest " + echo " (e) Install YT-DLP video downloader " + echo " (f) Install newest kernel from backports " + echo " (Reboot Required) " + echo " (g) Upgrade to Debian Testing " + echo " (Reboot Required) " + echo "" + echo " (x) Exit " + echo + read -p "Please enter your choice: " choice + case $choice in + a|A) setsudo;; + b|B) optimize;; + c|C) iconcache;; + d|D) ffinstall;; + e|E) ytdlpinst;; + f|F) bpkernel;; + g|G) debtesting;; + x|X) exit;; + *) echo "invalid answer, please try again";; + + esac +done +} + +# Begin main program: + +mainmenu + +done + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ffinstall b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ffinstall new file mode 100755 index 0000000..74127b0 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ffinstall @@ -0,0 +1,31 @@ +#!/bin/bash + +# ffinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ffinstallr () { + [[ -d /opt/FFDL ]] && rm -r /opt/FFDL + mkdir /opt/FFDL + [[ -d /opt/moz ]] && rm -r /opt/moz + mkdir /opt/moz + wget -O /opt/FFDL/FirefoxSetup.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US" + tar xjf /opt/FFDL/FirefoxSetup.tar.bz2 -C /opt/moz/ + cp /usr/share/eznixOS12Xdev/launchers/Firefox-Latest.desktop /usr/share/applications/ + rm -r /opt/FFDL +} + +ffinstallr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/gototesting b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/gototesting new file mode 100755 index 0000000..a861d3c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/gototesting @@ -0,0 +1,26 @@ +#!/bin/bash + +# gototesting -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +totesting () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4testing + cp /usr/share/eznixOS12Xdev/sources/sources.testing /etc/apt/sources.list + apt-get -y update + apt-get -y dist-upgrade +} + +totesting + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/iconcache b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/iconcache new file mode 100755 index 0000000..42d2846 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/iconcache @@ -0,0 +1,30 @@ +#!/bin/bash + +# iconcache -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +iconcacher () { + gtk-update-icon-cache -f /usr/share/icons/breeze/ + gtk-update-icon-cache -f /usr/share/icons/breeze-dark/ + gtk-update-icon-cache -f /usr/share/icons/ePapirus/ + gtk-update-icon-cache -f /usr/share/icons/gnome/ + gtk-update-icon-cache -f /usr/share/icons/Papirus/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Dark/ + gtk-update-icon-cache -f /usr/share/icons/Papirus-Light/ + gtk-update-icon-cache -f /usr/share/icons/Tango/ +} + +iconcacher + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/optimize b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/optimize new file mode 100755 index 0000000..e1733cd --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/optimize @@ -0,0 +1,25 @@ +#!/bin/bash + +# optimize -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +optimizer () { + cp /etc/apt/sources.list /etc/apt/sources.list.b4optimize + cp /usr/share/eznixOS12Xdev/sources/sources.daedalus /etc/apt/sources.list + apt-get -y update +} + +optimizer + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/setsudo b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/setsudo new file mode 100755 index 0000000..7460481 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/setsudo @@ -0,0 +1,24 @@ +#!/bin/bash + +# setsudo -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +setsudoer () { + read -p "Type your user name, be exact, and press Enter: " ANS + usermod -aG sudo $ANS +} + +setsudoer + +# Disclaimer: +# +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ytdlpinstall b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ytdlpinstall new file mode 100755 index 0000000..d60cafa --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/scripts/ytdlpinstall @@ -0,0 +1,24 @@ +#!/bin/bash + +# ytdlpinstall -- Revision: 12X -- by eznix (https://sourceforge.net/projects/eznixos/) +# (GNU/General Public License version 3.0) + +ytdlpinstlr () { + curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o /usr/local/bin/yt-dlp + chmod a+rx /usr/local/bin/yt-dlp +} + +ytdlpinstlr + +# Disclaimer: + +# THIS SOFTWARE IS PROVIDED BY EZNIX “AS IS” AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL EZNIX BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/sources-calamares/sources-final b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources-calamares/sources-final new file mode 100755 index 0000000..b9c9429 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources-calamares/sources-final @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Writes the final sources.list file +# + +CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g") +RELEASE="daedalus" + +cat << EOF > $CHROOT/etc/apt/sources.list +# See https://wiki.debian.org/SourcesList for more information. + +# Main Repo - main contrib non-free non-free-firmware +deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware + +# Security Repo - main contrib non-free non-free-firmware +deb http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware + +# Updates Repo - main contrib non-free non-free-firmware +deb http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware + +# daedalus-backports, previously on backports.debian.org +deb http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware +#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware + + +EOF + +exit 0 diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/sources-calamares/sources-media b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources-calamares/sources-media new file mode 100755 index 0000000..4bbe529 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources-calamares/sources-media @@ -0,0 +1,25 @@ +#!/bin/sh + +CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g") +MEDIUM_PATH="/run/live/medium" +RELEASE="daedalus" + +if [ "$1" = "-u" ]; then + umount $CHROOT/$MEDIUM_PATH + rm $CHROOT/etc/apt/sources.list.d/debian-live-media.list + chroot $CHROOT apt-get update + exit 0 +fi + +# Remove the base sources, we will configure sources in a later phase +rm -f $CHROOT/etc/apt/sources.list.d/base.list + +mkdir -p $CHROOT/$MEDIUM_PATH +mount --bind $MEDIUM_PATH $CHROOT/$MEDIUM_PATH +echo "deb [trusted=yes] file:$MEDIUM_PATH $RELEASE main" > $CHROOT/etc/apt/sources.list.d/debian-live-media.list +chroot $CHROOT apt-get update +# Attempt safest way to remove cruft +rmdir $CHROOT/run/live/medium +rmdir $CHROOT/run/live + +exit 0 diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/sources/sources.daedalus b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources/sources.daedalus new file mode 100644 index 0000000..4c09bdc --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources/sources.daedalus @@ -0,0 +1,15 @@ +# Main +deb https://deb.debian.org/debian/ daedalus main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ daedalus main contrib non-free non-free-firmware + +# Updates +deb https://deb.debian.org/debian/ daedalus-updates main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ daedalus-updates main contrib non-free non-free-firmware + +# Security +deb https://security.debian.org/debian-security/ daedalus-security main contrib non-free non-free-firmware +# deb-src https://security.debian.org/debian-security/ daedalus-security main contrib non-free non-free-firmware + +# Backports +deb https://deb.debian.org/debian/ daedalus-backports main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ daedalus-backports main contrib non-free non-free-firmware diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/sources/sources.testing b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources/sources.testing new file mode 100644 index 0000000..3126b8c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/sources/sources.testing @@ -0,0 +1,3 @@ +# Main +deb https://deb.debian.org/debian/ excalibur main contrib non-free non-free-firmware +# deb-src https://deb.debian.org/debian/ excalibur main contrib non-free non-free-firmware diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/slide1.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/slide1.png new file mode 100644 index 0000000..708e794 Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/slide1.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/splash.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/splash.png new file mode 100644 index 0000000..a2c31eb Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/splash.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/splash.xpm b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/splash.xpm new file mode 100644 index 0000000..73a6a8a --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/splash.xpm @@ -0,0 +1,14048 @@ +/* XPM */ +static char * splash_xpm[] = { +"640 480 13565 3", +" c #01040C", +". c #01060F", +"+ c #01050D", +"@ c #02040B", +"# c #01050E", +"$ c #01060E", +"% c #01040D", +"& c #010711", +"* c #02060F", +"= c #01060D", +"- c #010611", +"; c #010712", +"> c #010610", +", c #020816", +"' c #000710", +") c #010816", +"! c #000714", +"~ c #010815", +"{ c #010917", +"] c #010713", +"^ c #010714", +"/ c #010919", +"( c #020A19", +"_ c #02091B", +": c #02091A", +"< c #020919", +"[ c #010918", +"} c #020A1A", +"| c #010814", +"1 c #010A19", +"2 c #010916", +"3 c #03091A", +"4 c #010A18", +"5 c #020B1A", +"6 c #020B1C", +"7 c #020B1D", +"8 c #020B1E", +"9 c #030B1C", +"0 c #020D1F", +"a c #020C1E", +"b c #030B1D", +"c c #020D21", +"d c #020B1B", +"e c #020C1F", +"f c #020C21", +"g c #020C20", +"h c #020E23", +"i c #030C1E", +"j c #030C1F", +"k c #020D1E", +"l c #030E24", +"m c #021027", +"n c #020E22", +"o c #020D22", +"p c #020F25", +"q c #010F26", +"r c #020E24", +"s c #020E26", +"t c #011028", +"u c #010F27", +"v c #010E25", +"w c #02112A", +"x c #02112D", +"y c #020F28", +"z c #02122C", +"A c #02122E", +"B c #01112B", +"C c #02102A", +"D c #021029", +"E c #03122C", +"F c #01102A", +"G c #02112B", +"H c #021433", +"I c #02122D", +"J c #021432", +"K c #03122D", +"L c #021533", +"M c #02132F", +"N c #02112C", +"O c #031432", +"P c #021536", +"Q c #031533", +"R c #021639", +"S c #021331", +"T c #021534", +"U c #031534", +"V c #031638", +"W c #021738", +"X c #021638", +"Y c #021434", +"Z c #021435", +"` c #031433", +" . c #03183B", +".. c #02183C", +"+. c #03183C", +"@. c #031739", +"#. c #02173A", +"$. c #031A3F", +"%. c #021A40", +"&. c #031940", +"*. c #021940", +"=. c #03193E", +"-. c #031941", +";. c #031A40", +">. c #02193E", +",. c #03193D", +"'. c #031B43", +"). c #031A42", +"!. c #031A41", +"~. c #031C45", +"{. c #031B44", +"]. c #021A3F", +"^. c #031B45", +"/. c #041C45", +"(. c #031C47", +"_. c #021D48", +":. c #031D49", +"<. c #041D4A", +"[. c #041D44", +"}. c #04204C", +"|. c #041D47", +"1. c #041D49", +"2. c #031F4B", +"3. c #041E4B", +"4. c #04204D", +"5. c #04214E", +"6. c #06234F", +"7. c #05224E", +"8. c #04214D", +"9. c #062251", +"0. c #062350", +"a. c #041F4E", +"b. c #04204F", +"c. c #092554", +"d. c #072352", +"e. c #082453", +"f. c #0B2757", +"g. c #082454", +"h. c #0C2857", +"i. c #0A2656", +"j. c #0A2857", +"k. c #082655", +"l. c #092857", +"m. c #092757", +"n. c #092858", +"o. c #0A2958", +"p. c #0C2B59", +"q. c #0A2859", +"r. c #0C2B5B", +"s. c #0D2B5D", +"t. c #0B295B", +"u. c #0B2A5B", +"v. c #0C2A5C", +"w. c #0C2B5C", +"x. c #0A295B", +"y. c #0C2C5D", +"z. c #0E2C5E", +"A. c #0E2E5F", +"B. c #0D2D5F", +"C. c #0D2D60", +"D. c #0F2F62", +"E. c #0D2D5E", +"F. c #0E2E61", +"G. c #103063", +"H. c #113164", +"I. c #0F2F63", +"J. c #113066", +"K. c #102F64", +"L. c #102F65", +"M. c #103064", +"N. c #0F2E64", +"O. c #123167", +"P. c #102E64", +"Q. c #123168", +"R. c #113067", +"S. c #133268", +"T. c #14336A", +"U. c #123269", +"V. c #133469", +"W. c #133369", +"X. c #113268", +"Y. c #133269", +"Z. c #113167", +"`. c #15366C", +" + c #14356B", +".+ c #13346A", +"++ c #15346B", +"@+ c #17376C", +"#+ c #16376D", +"$+ c #16366D", +"%+ c #15366B", +"&+ c #173770", +"*+ c #1B3B74", +"=+ c #193972", +"-+ c #16366F", +";+ c #183871", +">+ c #163670", +",+ c #183771", +"'+ c #163870", +")+ c #183770", +"!+ c #183872", +"~+ c #183B75", +"{+ c #1A3A75", +"]+ c #193B75", +"^+ c #173A74", +"/+ c #1A3D77", +"(+ c #193C76", +"_+ c #193B77", +":+ c #173976", +"<+ c #1A3C77", +"[+ c #193B7A", +"}+ c #1C3E7A", +"|+ c #1A3C79", +"1+ c #1C3E7B", +"2+ c #1B3E79", +"3+ c #1B3E7A", +"4+ c #1A3D79", +"5+ c #1D407C", +"6+ c #1D3F7C", +"7+ c #1C407C", +"8+ c #1A3E7A", +"9+ c #1B3E7C", +"0+ c #1B3F7D", +"a+ c #1C407D", +"b+ c #1B3F7C", +"c+ c #1A3E7B", +"d+ c #1A3E7C", +"e+ c #193D7B", +"f+ c #1A3F7D", +"g+ c #1B407F", +"h+ c #183E7D", +"i+ c #183E7C", +"j+ c #1A407E", +"k+ c #183D7C", +"l+ c #1A407F", +"m+ c #173D7C", +"n+ c #193F7E", +"o+ c #173D7E", +"p+ c #173C7D", +"q+ c #163C7B", +"r+ c #193F7F", +"s+ c #193F80", +"t+ c #1A4081", +"u+ c #183F80", +"v+ c #143B7C", +"w+ c #173E7F", +"x+ c #163D7E", +"y+ c #153C7E", +"z+ c #194082", +"A+ c #163D80", +"B+ c #173E81", +"C+ c #153C7F", +"D+ c #133A7D", +"E+ c #143B7E", +"F+ c #12397C", +"G+ c #11387B", +"H+ c #133C7E", +"I+ c #143C7E", +"J+ c #153D80", +"K+ c #143A7F", +"L+ c #133A7F", +"M+ c #143B7F", +"N+ c #123A7E", +"O+ c #143B80", +"P+ c #133B80", +"Q+ c #12397E", +"R+ c #11397E", +"S+ c #123A7F", +"T+ c #10387D", +"U+ c #10387E", +"V+ c #0F377C", +"W+ c #0D357B", +"X+ c #0E367C", +"Y+ c #0E367B", +"Z+ c #0D357A", +"`+ c #0C357A", +" @ c #0D367C", +".@ c #0F377D", +"+@ c #0B3379", +"@@ c #0C347A", +"#@ c #0A3278", +"$@ c #083177", +"%@ c #093177", +"&@ c #083076", +"*@ c #072F75", +"=@ c #072F76", +"-@ c #062E75", +";@ c #093077", +">@ c #062E74", +",@ c #052B6D", +"'@ c #052D73", +")@ c #052D72", +"!@ c #042A6A", +"~@ c #042C6F", +"{@ c #042C6E", +"]@ c #052C72", +"^@ c #042A6B", +"/@ c #042B6D", +"(@ c #052D71", +"_@ c #042869", +":@ c #042969", +"<@ c #042B6A", +"[@ c #042965", +"}@ c #042867", +"|@ c #042865", +"1@ c #042662", +"2@ c #042864", +"3@ c #042661", +"4@ c #042866", +"5@ c #04265D", +"6@ c #04265F", +"7@ c #04255E", +"8@ c #042761", +"9@ c #042762", +"0@ c #042359", +"a@ c #04255D", +"b@ c #052459", +"c@ c #03245A", +"d@ c #042356", +"e@ c #042358", +"f@ c #042153", +"g@ c #042257", +"h@ c #032255", +"i@ c #032254", +"j@ c #032152", +"k@ c #032154", +"l@ c #032050", +"m@ c #031F4F", +"n@ c #022152", +"o@ c #031F4D", +"p@ c #032153", +"q@ c #031D4A", +"r@ c #021F4C", +"s@ c #031E4B", +"t@ c #031D48", +"u@ c #031E4C", +"v@ c #031C46", +"w@ c #031C4A", +"x@ c #031A43", +"y@ c #03183A", +"z@ c #03183E", +"A@ c #03193F", +"B@ c #041A42", +"C@ c #04193F", +"D@ c #03163B", +"E@ c #03173A", +"F@ c #03163A", +"G@ c #031639", +"H@ c #021537", +"I@ c #021636", +"J@ c #031435", +"K@ c #031331", +"L@ c #021535", +"M@ c #021332", +"N@ c #03122F", +"O@ c #02132E", +"P@ c #021330", +"Q@ c #02122F", +"R@ c #01040B", +"S@ c #02040F", +"T@ c #020610", +"U@ c #000712", +"V@ c #01050F", +"W@ c #010817", +"X@ c #010915", +"Y@ c #010A1A", +"Z@ c #020814", +"`@ c #010715", +" # c #020817", +".# c #000914", +"+# c #01091A", +"@# c #020818", +"## c #020918", +"$# c #020A1B", +"%# c #010818", +"&# c #020A1C", +"*# c #020917", +"=# c #030A1D", +"-# c #030A1C", +";# c #020815", +"># c #030C1D", +",# c #020C1D", +"'# c #020B1F", +")# c #010D23", +"!# c #010D20", +"~# c #020D20", +"{# c #020E20", +"]# c #010E23", +"^# c #021028", +"/# c #021129", +"(# c #030F26", +"_# c #020E25", +":# c #011029", +"<# c #011230", +"[# c #03112A", +"}# c #01112C", +"|# c #021430", +"1# c #031434", +"2# c #031536", +"3# c #031431", +"4# c #031637", +"5# c #03183D", +"6# c #02193D", +"7# c #021739", +"8# c #04183C", +"9# c #031B41", +"0# c #021941", +"a# c #021B42", +"b# c #031B42", +"c# c #041B46", +"d# c #031B46", +"e# c #041F4B", +"f# c #05214E", +"g# c #05204D", +"h# c #031E4A", +"i# c #05204E", +"j# c #05204C", +"k# c #06224E", +"l# c #05224F", +"m# c #052150", +"n# c #06224F", +"o# c #072453", +"p# c #062351", +"q# c #092555", +"r# c #092656", +"s# c #0A2858", +"t# c #082756", +"u# c #092958", +"v# c #0B2958", +"w# c #0B2959", +"x# c #0A285A", +"y# c #0A295A", +"z# c #0E2D5F", +"A# c #0F2E5F", +"B# c #0D2C5E", +"C# c #0C2C5E", +"D# c #0E2E60", +"E# c #123166", +"F# c #143369", +"G# c #143269", +"H# c #15346A", +"I# c #14356A", +"J# c #123369", +"K# c #15356B", +"L# c #14346A", +"M# c #16366C", +"N# c #15356C", +"O# c #16376E", +"P# c #15356E", +"Q# c #193974", +"R# c #17376F", +"S# c #1A3A74", +"T# c #173873", +"U# c #163973", +"V# c #183974", +"W# c #1B3D77", +"X# c #1A3C76", +"Y# c #1B3E78", +"Z# c #1A3C78", +"`# c #193B78", +" $ c #183A78", +".$ c #193C79", +"+$ c #1A3D7A", +"@$ c #1C3F7C", +"#$ c #193C78", +"$$ c #193D79", +"%$ c #1C407E", +"&$ c #183D7B", +"*$ c #193F7D", +"=$ c #183F7D", +"-$ c #193E7D", +";$ c #1B4180", +">$ c #1A4080", +",$ c #183D7E", +"'$ c #183E7F", +")$ c #163C7D", +"!$ c #153C7D", +"~$ c #163D7D", +"{$ c #173E7E", +"]$ c #173E80", +"^$ c #153D7F", +"/$ c #11387D", +"($ c #11397F", +"_$ c #0C3479", +":$ c #0D367B", +"<$ c #0B357A", +"[$ c #0C3379", +"}$ c #093178", +"|$ c #0A3479", +"1$ c #072E75", +"2$ c #052D74", +"3$ c #052F76", +"4$ c #062E73", +"5$ c #042C70", +"6$ c #052B6E", +"7$ c #062D73", +"8$ c #042A6D", +"9$ c #042B6C", +"0$ c #04296A", +"a$ c #032B6C", +"b$ c #042967", +"c$ c #052866", +"d$ c #042966", +"e$ c #042A68", +"f$ c #042764", +"g$ c #052661", +"h$ c #04255C", +"i$ c #052762", +"j$ c #05265F", +"k$ c #04255A", +"l$ c #042660", +"m$ c #042459", +"n$ c #05245A", +"o$ c #04245A", +"p$ c #042458", +"q$ c #032459", +"r$ c #032052", +"s$ c #022050", +"t$ c #032051", +"u$ c #032151", +"v$ c #031E4F", +"w$ c #031C48", +"x$ c #031D4B", +"y$ c #041B48", +"z$ c #02173B", +"A$ c #04183E", +"B$ c #03173C", +"C$ c #021637", +"D$ c #031535", +"E$ c #021431", +"F$ c #031436", +"G$ c #031636", +"H$ c #031330", +"I$ c #011332", +"J$ c #01040A", +"K$ c #00040D", +"L$ c #01050B", +"M$ c #02050D", +"N$ c #010813", +"O$ c #020713", +"P$ c #000812", +"Q$ c #010710", +"R$ c #000814", +"S$ c #000711", +"T$ c #010819", +"U$ c #000713", +"V$ c #030B1E", +"W$ c #010D21", +"X$ c #030D21", +"Y$ c #020F24", +"Z$ c #020F27", +"`$ c #020F26", +" % c #021026", +".% c #011231", +"+% c #031332", +"@% c #021230", +"#% c #021538", +"$% c #02183D", +"%% c #041B44", +"&% c #041D46", +"*% c #041E49", +"=% c #031C44", +"-% c #051F4A", +";% c #05214D", +">% c #04204E", +",% c #041E4A", +"'% c #03204C", +")% c #04214F", +"!% c #062250", +"~% c #05214F", +"{% c #0A2655", +"]% c #072756", +"^% c #0C2757", +"/% c #0C2959", +"(% c #0C2B5A", +"_% c #092758", +":% c #0A2957", +"<% c #0D2B5C", +"[% c #0B2A5A", +"}% c #0B2B5C", +"|% c #0A2A5B", +"1% c #0C2B5D", +"2% c #0D2D5D", +"3% c #0F2F61", +"4% c #102F62", +"5% c #113064", +"6% c #123265", +"7% c #0E2D62", +"8% c #0E2D63", +"9% c #102F63", +"0% c #123267", +"a% c #143469", +"b% c #16356C", +"c% c #17376D", +"d% c #18386F", +"e% c #16376C", +"f% c #193A70", +"g% c #183870", +"h% c #14346D", +"i% c #173972", +"j% c #193A74", +"k% c #193A75", +"l% c #1D3F79", +"m% c #193C77", +"n% c #1A3B78", +"o% c #193B79", +"p% c #183A77", +"q% c #1B3C79", +"r% c #1A3C7A", +"s% c #1B3D7A", +"t% c #1B3F7B", +"u% c #1B407E", +"v% c #1A3E7E", +"w% c #1B3F7F", +"x% c #183F7F", +"y% c #1B4182", +"z% c #18407F", +"A% c #163D7F", +"B% c #183F82", +"C% c #11387C", +"D% c #133B7D", +"E% c #153C81", +"F% c #0F367B", +"G% c #10377C", +"H% c #0C367B", +"I% c #062F75", +"J% c #083178", +"K% c #073077", +"L% c #062E72", +"M% c #052C73", +"N% c #052B6F", +"O% c #052C6E", +"P% c #062F72", +"Q% c #052E74", +"R% c #052C70", +"S% c #052D70", +"T% c #052C6F", +"U% c #042B6E", +"V% c #042A6C", +"W% c #042968", +"X% c #042763", +"Y% c #04255B", +"Z% c #05245C", +"`% c #042760", +" & c #052358", +".& c #04245B", +"+& c #032358", +"@& c #022052", +"#& c #032354", +"$& c #032458", +"%& c #032355", +"&& c #032253", +"*& c #042154", +"=& c #031E4E", +"-& c #031F4E", +";& c #041E4C", +">& c #041C48", +",& c #031A44", +"'& c #041B45", +")& c #02193F", +"!& c #02193C", +"~& c #01122C", +"{& c #01112A", +"]& c #01050C", +"^& c #010612", +"/& c #020A18", +"(& c #020711", +"_& c #020A1E", +":& c #020A1D", +"<& c #020B19", +"[& c #030D20", +"}& c #030F25", +"|& c #020F22", +"1& c #03132E", +"2& c #031333", +"3& c #021532", +"4& c #03173D", +"5& c #041C46", +"6& c #041E47", +"7& c #041F49", +"8& c #041D48", +"9& c #031D47", +"0& c #021E4A", +"a& c #041F4C", +"b& c #041F4D", +"c& c #052251", +"d& c #072454", +"e& c #072554", +"f& c #092657", +"g& c #0C2858", +"h& c #082758", +"i& c #0C2A5A", +"j& c #0E2D5D", +"k& c #0D2C5D", +"l& c #0D2A5C", +"m& c #0C2C5F", +"n& c #123165", +"o& c #113166", +"p& c #123066", +"q& c #103065", +"r& c #113267", +"s& c #17366D", +"t& c #13336B", +"u& c #17386E", +"v& c #1A3A72", +"w& c #18376F", +"x& c #17386F", +"y& c #183971", +"z& c #193970", +"A& c #173772", +"B& c #16376F", +"C& c #1A3C74", +"D& c #193973", +"E& c #183A74", +"F& c #163A73", +"G& c #183B76", +"H& c #1B3D79", +"I& c #1B3E7B", +"J& c #193D7A", +"K& c #193E7C", +"L& c #1B3E7E", +"M& c #183E7E", +"N& c #173E7D", +"O& c #19407F", +"P& c #143A7D", +"Q& c #163D82", +"R& c #163E80", +"S& c #163D81", +"T& c #11377C", +"U& c #10377D", +"V& c #0D347A", +"W& c #0C367A", +"X& c #0B367B", +"Y& c #083078", +"Z& c #0A3279", +"`& c #062F74", +" * c #052C71", +".* c #062D71", +"+* c #042C6D", +"@* c #052A69", +"#* c #05255C", +"$* c #05255D", +"%* c #05255E", +"&* c #052760", +"** c #04265E", +"=* c #042357", +"-* c #05245B", +";* c #04235A", +">* c #042255", +",* c #032357", +"'* c #032356", +")* c #032256", +"!* c #022153", +"~* c #03204F", +"{* c #031E4D", +"]* c #021F4E", +"^* c #031F50", +"/* c #041C47", +"(* c #03183F", +"_* c #02173D", +":* c #011431", +"<* c #02030B", +"[* c #00060F", +"}* c #020611", +"|* c #000611", +"1* c #010510", +"2* c #010C1F", +"3* c #010C1D", +"4* c #011027", +"5* c #031029", +"6* c #031028", +"7* c #02112E", +"8* c #03132F", +"9* c #02163A", +"0* c #031737", +"a* c #03193C", +"b* c #061F49", +"c* c #021D47", +"d* c #031D46", +"e* c #051E4A", +"f* c #031F4A", +"g* c #05224D", +"h* c #082552", +"i* c #082452", +"j* c #072250", +"k* c #062352", +"l* c #0D2959", +"m* c #092756", +"n* c #0B2A59", +"o* c #0A2959", +"p* c #0D2C5B", +"q* c #092759", +"r* c #113163", +"s* c #14346B", +"t* c #18376E", +"u* c #15356D", +"v* c #183970", +"w* c #13346C", +"x* c #183A73", +"y* c #163872", +"z* c #183B77", +"A* c #1C3E79", +"B* c #1E407C", +"C* c #183A76", +"D* c #183C78", +"E* c #173A76", +"F* c #183C7A", +"G* c #1D417F", +"H* c #1D407F", +"I* c #173D7B", +"J* c #183F7E", +"K* c #173D80", +"L* c #143C80", +"M* c #0B3479", +"N* c #042D73", +"O* c #052A6D", +"P* c #042B6B", +"Q* c #032A6B", +"R* c #042A69", +"S* c #042868", +"T* c #052660", +"U* c #052359", +"V* c #032258", +"W* c #042051", +"X* c #042256", +"Y* c #02204F", +"Z* c #021F4D", +"`* c #021F4F", +" = c #031C49", +".= c #03173B", +"+= c #021334", +"@= c #011128", +"#= c #03122E", +"$= c #000610", +"%= c #000813", +"&= c #000916", +"*= c #030C20", +"== c #030A1B", +"-= c #030F27", +";= c #010F23", +">= c #02102C", +",= c #02173C", +"'= c #041C44", +")= c #02183B", +"!= c #031D45", +"~= c #051F4B", +"{= c #031E49", +"]= c #072350", +"^= c #072450", +"/= c #092452", +"(= c #092654", +"_= c #082857", +":= c #092859", +"<= c #0B295A", +"[= c #0F2D5F", +"}= c #0E2D60", +"|= c #133266", +"1= c #123266", +"2= c #113065", +"3= c #103166", +"4= c #16366E", +"5= c #14356C", +"6= c #1A3972", +"7= c #1A3A73", +"8= c #193872", +"9= c #183972", +"0= c #1B3C75", +"a= c #1B3B76", +"b= c #1C3F79", +"c= c #1A3D78", +"d= c #1D407B", +"e= c #1E4280", +"f= c #1A3F7E", +"g= c #1D4384", +"h= c #1B4283", +"i= c #194081", +"j= c #193F81", +"k= c #133A7E", +"l= c #123B7D", +"m= c #0F367C", +"n= c #0C367C", +"o= c #072E73", +"p= c #073075", +"q= c #052E73", +"r= c #052B70", +"s= c #042C71", +"t= c #062E76", +"u= c #042D70", +"v= c #052868", +"w= c #052A6C", +"x= c #042863", +"y= c #04255F", +"z= c #032359", +"A= c #042254", +"B= c #031B47", +"C= c #041C49", +"D= c #031D4C", +"E= c #031231", +"F= c #02122B", +"G= c #00040B", +"H= c #010812", +"I= c #020A17", +"J= c #010A1B", +"K= c #020D23", +"L= c #020E21", +"M= c #02102B", +"N= c #03112C", +"O= c #031738", +"P= c #041F4A", +"Q= c #031E48", +"R= c #03204D", +"S= c #0A2757", +"T= c #0B2857", +"U= c #0D2A59", +"V= c #0D2A5A", +"W= c #0E2D5C", +"X= c #0E2D5E", +"Y= c #0B2B5D", +"Z= c #0F2F60", +"`= c #113165", +" - c #123268", +".- c #16356B", +"+- c #18386E", +"@- c #17386D", +"#- c #17376E", +"$- c #193971", +"%- c #173870", +"&- c #1A3974", +"*- c #173971", +"=- c #193C75", +"-- c #1B3E77", +";- c #1C3F7B", +">- c #1E417D", +",- c #1C417F", +"'- c #1B3F7E", +")- c #1B417F", +"!- c #163C7C", +"~- c #12397B", +"{- c #173E83", +"]- c #153B7F", +"^- c #123A7C", +"/- c #143C81", +"(- c #0F377B", +"_- c #0C377C", +":- c #0B3278", +"<- c #083176", +"[- c #063075", +"}- c #052A6B", +"|- c #032967", +"1- c #032966", +"2- c #032761", +"3- c #031F51", +"4- c #02183F", +"5- c #020712", +"6- c #010B1C", +"7- c #010A17", +"8- c #020916", +"9- c #030D22", +"0- c #010E22", +"a- c #011330", +"b- c #031230", +"c- c #031430", +"d- c #021635", +"e- c #02183E", +"f- c #01183D", +"g- c #031E47", +"h- c #021B41", +"i- c #052250", +"j- c #042050", +"k- c #0B2B59", +"l- c #0F2E5D", +"m- c #102E60", +"n- c #0F2E61", +"o- c #0E2D61", +"p- c #123368", +"q- c #19386F", +"r- c #183A72", +"s- c #173A73", +"t- c #1B3D7B", +"u- c #1D3F7B", +"v- c #1B3F7A", +"w- c #1F417D", +"x- c #1B3E7D", +"y- c #193E7E", +"z- c #1A3F7F", +"A- c #1B4181", +"B- c #194083", +"C- c #153C80", +"D- c #082F75", +"E- c #063176", +"F- c #042D74", +"G- c #052E72", +"H- c #042D71", +"I- c #042B6F", +"J- c #032968", +"K- c #032864", +"L- c #052865", +"M- c #021E4D", +"N- c #041F4F", +"O- c #041D4B", +"P- c #041C4A", +"Q- c #021D49", +"R- c #02050F", +"S- c #02040C", +"T- c #000815", +"U- c #010A1C", +"V- c #030B1F", +"W- c #031A3D", +"X- c #051F4C", +"Y- c #072351", +"Z- c #0B2756", +"`- c #0E2C5D", +" ; c #102F66", +".; c #18396F", +"+; c #1A3B72", +"@; c #1C3C75", +"#; c #1B3B75", +"$; c #183973", +"%; c #1A3B76", +"&; c #193B76", +"*; c #1C3F7E", +"=; c #173D7D", +"-; c #193E7F", +";; c #143C7F", +">; c #123A7D", +",; c #0D3579", +"'; c #0A3277", +"); c #093179", +"!; c #062D74", +"~; c #083077", +"{; c #052B6C", +"]; c #052A6A", +"^; c #052864", +"/; c #032865", +"(; c #052763", +"_; c #03255D", +":; c #042152", +"<; c #031943", +"[; c #04173D", +"}; c #031537", +"|; c #021333", +"1; c #011026", +"2; c #011129", +"3; c #011432", +"4; c #011636", +"5; c #041B42", +"6; c #031B48", +"7; c #021C46", +"8; c #04204B", +"9; c #06214E", +"0; c #072451", +"a; c #082551", +"b; c #0E2B5B", +"c; c #0F2E60", +"d; c #18376D", +"e; c #18396E", +"f; c #1A3970", +"g; c #17366F", +"h; c #193A72", +"i; c #1D407D", +"j; c #1A3D7B", +"k; c #1D4280", +"l; c #1C4281", +"m; c #193F82", +"n; c #13397C", +"o; c #143A7E", +"p; c #0B3378", +"q; c #093378", +"r; c #062D72", +"s; c #03296A", +"t; c #032B6B", +"u; c #052765", +"v; c #052764", +"w; c #04245C", +"x; c #05255A", +"y; c #032257", +"z; c #011638", +"A; c #000612", +"B; c #030C1C", +"C; c #030E23", +"D; c #030F29", +"E; c #01122D", +"F; c #04183F", +"G; c #04193D", +"H; c #051E49", +"I; c #05234E", +"J; c #0B2858", +"K; c #0C2A59", +"L; c #0F2E5C", +"M; c #102F61", +"N; c #102F60", +"O; c #133366", +"P; c #113063", +"Q; c #133368", +"R; c #13336A", +"S; c #1C3D78", +"T; c #193D77", +"U; c #1C407F", +"V; c #1A4181", +"W; c #18407E", +"X; c #13397E", +"Y; c #143D80", +"Z; c #143A80", +"`; c #0E357B", +" > c #073076", +".> c #062C72", +"+> c #062B6F", +"@> c #052969", +"#> c #031A45", +"$> c #031538", +"%> c #01122E", +"&> c #02112F", +"*> c #020715", +"=> c #010B19", +"-> c #030A1A", +";> c #020819", +">> c #010C20", +",> c #010F25", +"'> c #021229", +")> c #03112B", +"!> c #04173A", +"~> c #031F4C", +"{> c #082451", +"]> c #0A2654", +"^> c #0D2858", +"/> c #0A2756", +"(> c #0D2B5B", +"_> c #0B2A5C", +":> c #0F2D60", +"<> c #133164", +"[> c #123263", +"}> c #16346B", +"|> c #17356C", +"1> c #17366C", +"2> c #193A71", +"3> c #1B3A73", +"4> c #1B3C76", +"5> c #1C3F78", +"6> c #1D4381", +"7> c #184080", +"8> c #153B7C", +"9> c #133A7B", +"0> c #133B7E", +"a> c #153D82", +"b> c #0E377D", +"c> c #073277", +"d> c #042D72", +"e> c #052E75", +"f> c #052F72", +"g> c #032969", +"h> c #052662", +"i> c #022150", +"j> c #021D4B", +"k> c #041E4D", +"l> c #031942", +"m> c #04163A", +"n> c #011434", +"o> c #011331", +"p> c #03091B", +"q> c #010C1E", +"r> c #030B20", +"s> c #020F23", +"t> c #021634", +"u> c #051C47", +"v> c #021E49", +"w> c #0B2755", +"x> c #0C2958", +"y> c #0C2A5B", +"z> c #0D2C5C", +"A> c #112F61", +"B> c #0F2F5F", +"C> c #123164", +"D> c #143268", +"E> c #16356D", +"F> c #193A73", +"G> c #193B73", +"H> c #183A75", +"I> c #1A3D76", +"J> c #1C3E7C", +"K> c #1D417E", +"L> c #19407E", +"M> c #183E80", +"N> c #1A4182", +"O> c #12397D", +"P> c #133B7F", +"Q> c #0A357A", +"R> c #0A3178", +"S> c #072F74", +"T> c #032C6E", +"U> c #05296A", +"V> c #031840", +"W> c #041A44", +"X> c #011536", +"Y> c #020C1C", +"Z> c #020D24", +"`> c #041E48", +" , c #05204B", +"., c #05214C", +"+, c #07244F", +"@, c #102E5F", +"#, c #102E62", +"$, c #103062", +"%, c #1D407A", +"&, c #1D4180", +"*, c #1C4080", +"=, c #1C4282", +"-, c #0D387D", +";, c #0B357B", +">, c #042C6C", +",, c #010511", +"', c #01040F", +"), c #01040E", +"!, c #02050E", +"~, c #02040D", +"{, c #01030B", +"], c #010309", +"^, c #010207", +"/, c #01030C", +"(, c #02091C", +"_, c #020B20", +":, c #020E27", +"<, c #020F29", +"[, c #041940", +"}, c #00050E", +"|, c #000917", +"1, c #030D23", +"2, c #010F24", +"3, c #010F2A", +"4, c #021231", +"5, c #011635", +"6, c #021942", +"7, c #041C43", +"8, c #021B45", +"9, c #05204A", +"0, c #06214D", +"a, c #112F62", +"b, c #123264", +"c, c #133267", +"d, c #103066", +"e, c #1A3B73", +"f, c #1C3F7A", +"g, c #1E407D", +"h, c #1D407E", +"i, c #1E427F", +"j, c #1B407D", +"k, c #183F81", +"l, c #052F75", +"m, c #083075", +"n, c #052968", +"o, c #042663", +"p, c #021A42", +"q, c #010206", +"r, c #010105", +"s, c #010103", +"t, c #000002", +"u, c #000001", +"v, c #010104", +"w, c #000101", +"x, c #010102", +"y, c #000000", +"z, c #010101", +"A, c #010002", +"B, c #031334", +"C, c #011433", +"D, c #010B1B", +"E, c #030F23", +"F, c #021A41", +"G, c #072452", +"H, c #0E2A5A", +"I, c #0A2A59", +"J, c #082757", +"K, c #123366", +"L, c #193870", +"M, c #1A3A71", +"N, c #163971", +"O, c #173B75", +"P, c #1C4181", +"Q, c #1D4080", +"R, c #183E81", +"S, c #193F83", +"T, c #153E80", +"U, c #063076", +"V, c #082F76", +"W, c #072E74", +"X, c #042765", +"Y, c #052761", +"Z, c #02060E", +"`, c #010208", +" ' c #000102", +".' c #000100", +"+' c #010204", +"@' c #000003", +"#' c #010001", +"$' c #010615", +"%' c #021943", +"&' c #021436", +"*' c #000811", +"=' c #010811", +"-' c #021C44", +";' c #041A40", +">' c #051D48", +",' c #062252", +"'' c #072353", +")' c #0E2C5C", +"!' c #103061", +"~' c #143466", +"{' c #133367", +"]' c #143368", +"^' c #19386E", +"/' c #193A6F", +"(' c #193871", +"_' c #1C3C76", +":' c #1D3C76", +"<' c #1C3E78", +"[' c #1A3E78", +"}' c #1E4180", +"|' c #1C4180", +"1' c #1A3F80", +"2' c #1A4180", +"3' c #032A69", +"4' c #032866", +"5' c #020207", +"6' c #010205", +"7' c #020203", +"8' c #020204", +"9' c #021539", +"0' c #01060C", +"a' c #030D1F", +"b' c #021128", +"c' c #011532", +"d' c #01183B", +"e' c #051E48", +"f' c #07224F", +"g' c #082450", +"h' c #0E2C5B", +"i' c #133168", +"j' c #1C3D77", +"k' c #1E417B", +"l' c #1D417D", +"m' c #173C7A", +"n' c #194080", +"o' c #163C7F", +"p' c #093076", +"q' c #042E73", +"r' c #04245D", +"s' c #02040A", +"t' c #010D22", +"u' c #051F49", +"v' c #092551", +"w' c #082554", +"x' c #153469", +"y' c #153369", +"z' c #18386D", +"A' c #1B3A75", +"B' c #1C3E76", +"C' c #1D3D76", +"D' c #1D4079", +"E' c #1D417B", +"F' c #163E7C", +"G' c #0E387D", +"H' c #0C337A", +"I' c #052D6F", +"J' c #032A6A", +"K' c #042766", +"L' c #011534", +"M' c #030D1E", +"N' c #030B1B", +"O' c #030E25", +"P' c #021737", +"Q' c #02183A", +"R' c #031A3E", +"S' c #031C43", +"T' c #021B44", +"U' c #07234F", +"V' c #092553", +"W' c #0F2B5B", +"X' c #113162", +"Y' c #173771", +"Z' c #1B3C77", +"`' c #1E407A", +" ) c #1B3D78", +".) c #1E427E", +"+) c #1E4381", +"@) c #1D4382", +"#) c #153D81", +"$) c #123A80", +"%) c #0C357B", +"&) c #072F77", +"*) c #010308", +"=) c #020105", +"-) c #030F24", +";) c #010F28", +">) c #011533", +",) c #0D2B5A", +"') c #123062", +")) c #112F63", +"!) c #0F3065", +"~) c #1E3E77", +"{) c #1C3B75", +"]) c #1F437F", +"^) c #1F4381", +"/) c #1D4281", +"() c #1B4285", +"_) c #173F81", +":) c #083074", +"<) c #042E72", +"[) c #020206", +"}) c #010003", +"|) c #010004", +"1) c #00050D", +"2) c #00070F", +"3) c #011535", +"4) c #04183D", +"5) c #04204A", +"6) c #06224D", +"7) c #082350", +"8) c #0F2C5B", +"9) c #1A396F", +"0) c #19396F", +"a) c #1C3D72", +"b) c #1D3D75", +"c) c #1B3C74", +"d) c #1A3B75", +"e) c #173F82", +"f) c #0E357A", +"g) c #0E377C", +"h) c #010613", +"i) c #02030A", +"j) c #020D25", +"k) c #00060E", +"l) c #02050B", +"m) c #01132F", +"n) c #041739", +"o) c #021A43", +"p) c #021B43", +"q) c #0A2753", +"r) c #0E2A59", +"s) c #0E2B5A", +"t) c #113062", +"u) c #123065", +"v) c #16346A", +"w) c #15336A", +"x) c #17366B", +"y) c #1C3C74", +"z) c #1C3B74", +"A) c #1E417A", +"B) c #1D3F7A", +"C) c #1B4080", +"D) c #1B4282", +"E) c #173D7F", +"F) c #163E81", +"G) c #042B70", +"H) c #020104", +"I) c #02081A", +"J) c #010A16", +"K) c #021736", +"L) c #04193E", +"M) c #082553", +"N) c #0F2D5E", +"O) c #0E2C60", +"P) c #1A3B70", +"Q) c #1D3E77", +"R) c #1E3F7A", +"S) c #1C3F7F", +"T) c #020613", +"U) c #020612", +"V) c #020D1D", +"W) c #01122B", +"X) c #051C45", +"Y) c #092957", +"Z) c #163568", +"`) c #1A3B74", +" ! c #1B3A74", +".! c #1E407B", +"+! c #1E417E", +"@! c #1F4382", +"#! c #173F7D", +"$! c #0F367D", +"%! c #073078", +"&! c #042C73", +"*! c #042D6F", +"=! c #032A6C", +"-! c #020103", +";! c #041A43", +">! c #011537", +",! c #031027", +"'! c #06214C", +")! c #092653", +"!! c #092652", +"~! c #112F5F", +"{! c #0F2E5E", +"]! c #143266", +"^! c #153568", +"/! c #18376B", +"(! c #1A3A70", +"_! c #1C3D75", +":! c #1D3F77", +"~ c #204482", +",~ c #062F76", +"'~ c #052867", +")~ c #020409", +"!~ c #01091B", +"~~ c #0E2C5F", +"{~ c #143467", +"]~ c #1B3A71", +"^~ c #1C3D73", +"/~ c #1D3E76", +"(~ c #1E3F77", +"_~ c #1F427C", +":~ c #21447E", +"<~ c #093176", +"[~ c #062C70", +"}~ c #052E76", +"|~ c #052C6D", +"1~ c #051D46", +"2~ c #07204A", +"3~ c #051E47", +"4~ c #0D2857", +"5~ c #0D2C5A", +"6~ c #112E60", +"7~ c #122F61", +"8~ c #133265", +"9~ c #153367", +"0~ c #133165", +"a~ c #143468", +"b~ c #163469", +"c~ c #1E4078", +"d~ c #1E3E79", +"e~ c #20427F", +"f~ c #0A3379", +"g~ c #020309", +"h~ c #041638", +"i~ c #041639", +"j~ c #030F28", +"k~ c #061E4A", +"l~ c #07224E", +"m~ c #0A2653", +"n~ c #0A2856", +"o~ c #123160", +"p~ c #112F60", +"q~ c #123064", +"r~ c #153468", +"s~ c #1C3C72", +"t~ c #1D3C77", +"u~ c #1F4380", +"v~ c #1E4281", +"w~ c #1A4184", +"x~ c #0B367A", +"y~ c #0D347B", +"z~ c #020307", +"A~ c #030E21", +"B~ c #01173A", +"C~ c #031C42", +"D~ c #041D45", +"E~ c #041B47", +"F~ c #0F2B5A", +"G~ c #112D5D", +"H~ c #102F5E", +"I~ c #102D5D", +"J~ c #0F2D61", +"K~ c #123063", +"L~ c #113061", +"M~ c #143366", +"N~ c #17376A", +"O~ c #1B3B72", +"P~ c #1B3D76", +"Q~ c #1D3E78", +"R~ c #194181", +"S~ c #10387C", +"T~ c #052A6E", +"U~ c #03255F", +"V~ c #010B1A", +"W~ c #021840", +"X~ c #0C2855", +"Y~ c #082352", +"Z~ c #0B2856", +"`~ c #122E5E", +" { c #153467", +".{ c #153569", +"+{ c #1B3A6F", +"@{ c #1F3F78", +"#{ c #1F427F", +"${ c #032867", +"%{ c #010106", +"&{ c #021633", +"*{ c #03173E", +"={ c #031839", +"-{ c #041E46", +";{ c #06204D", +">{ c #0D2D5B", +",{ c #0F2C5C", +"'{ c #102D5C", +"){ c #133264", +"!{ c #18366C", +"~{ c #1B3B73", +"{{ c #1C3F77", +"]{ c #1E417C", +"^{ c #1D3F7D", +"/{ c #1B4281", +"({ c #153B7A", +"_{ c #0C3378", +":{ c #0A367A", +"<{ c #010409", +"[{ c #010B1D", +"}{ c #010C21", +"|{ c #03112D", +"1{ c #092451", +"2{ c #19376D", +"3{ c #1D3C73", +"4{ c #1E3D77", +"5{ c #1D4282", +"6{ c #1E4485", +"7{ c #19417F", +"8{ c #143D7F", +"9{ c #13397D", +"0{ c #0A347A", +"a{ c #052B6B", +"b{ c #000816", +"c{ c #010E24", +"d{ c #031532", +"e{ c #051D49", +"f{ c #052049", +"g{ c #06204B", +"h{ c #08234F", +"i{ c #0A2652", +"j{ c #0B2653", +"k{ c #102F5F", +"l{ c #123163", +"m{ c #143264", +"n{ c #163569", +"o{ c #1D3E75", +"p{ c #1C3B76", +"q{ c #1F3F7A", +"r{ c #1D4078", +"s{ c #1E4382", +"t{ c #11397D", +"u{ c #042E74", +"v{ c #041A41", +"w{ c #061F48", +"x{ c #06224C", +"y{ c #0A2552", +"z{ c #0A2754", +"A{ c #0B2754", +"B{ c #0C2756", +"C{ c #112D5C", +"D{ c #0F2D5C", +"E{ c #102E5E", +"F{ c #1B3A70", +"G{ c #1E3E76", +"H{ c #1D3D74", +"I{ c #1D3C75", +"J{ c #1A3D75", +"K{ c #1E3F79", +"L{ c #204381", +"M{ c #1F4482", +"N{ c #183E84", +"O{ c #0E357C", +"P{ c #052967", +"Q{ c #030E22", +"R{ c #02193B", +"S{ c #08224D", +"T{ c #07234E", +"U{ c #0B2855", +"V{ c #102C5B", +"W{ c #102C5C", +"X{ c #163668", +"Y{ c #1B3B71", +"Z{ c #1C3B71", +"`{ c #1D3D77", +" ] c #20437D", +".] c #1E4181", +"+] c #03255E", +"@] c #020205", +"#] c #02122A", +"$] c #031129", +"%] c #05214B", +"&] c #0A2553", +"*] c #0C2C5A", +"=] c #163468", +"-] c #1A386F", +";] c #1C3B72", +">] c #20427D", +",] c #204380", +"'] c #1E4282", +")] c #183F83", +"!] c #083277", +"~] c #061F47", +"{] c #06204A", +"]] c #0B2654", +"^] c #0D2957", +"/] c #153366", +"(] c #122F62", +"_] c #153269", +":] c #163669", +"<] c #1A386E", +"[] c #1D3D73", +"}] c #1B3E75", +"|] c #1A417F", +"1] c #093277", +"2] c #000915", +"3] c #010D1E", +"4] c #061E48", +"5] c #051F47", +"6] c #0E2E5D", +"7] c #112F5E", +"8] c #11305F", +"9] c #143265", +"0] c #17376B", +"a] c #17366A", +"b] c #1E4179", +"c] c #1F417C", +"d] c #214380", +"e] c #073176", +"f] c #020714", +"g] c #020106", +"h] c #011430", +"i] c #0B2753", +"j] c #092651", +"k] c #0C2856", +"l] c #112E5D", +"m] c #0D2D5C", +"n] c #122F63", +"o] c #18386B", +"p] c #1C3B73", +"q] c #1E3D79", +"r] c #1D3E79", +"s] c #1F427D", +"t] c #204480", +"u] c #1E4482", +"v] c #0A3177", +"w] c #083278", +"x] c #053076", +"y] c #032762", +"z] c #02070F", +"A] c #07204B", +"B] c #0E2958", +"C] c #123162", +"D] c #1D3C74", +"E] c #1B3C73", +"F] c #1F3F77", +"G] c #1F4279", +"H] c #042B69", +"I] c #020B21", +"J] c #010C1C", +"K] c #030F22", +"L] c #061E47", +"M] c #061F4B", +"N] c #0B2854", +"O] c #123061", +"P] c #133064", +"Q] c #173569", +"R] c #17356A", +"S] c #1D3E74", +"T] c #1F3F75", +"U] c #1E3D76", +"V] c #1F3F79", +"W] c #1F407B", +"X] c #20427E", +"Y] c #20437E", +"Z] c #1D4181", +"`] c #1A4083", +" ^ c #153B80", +".^ c #0E367A", +"+^ c #093278", +"@^ c #083378", +"#^ c #00060D", +"$^ c #051F48", +"%^ c #0A2551", +"&^ c #132F5F", +"*^ c #102E5D", +"=^ c #18366A", +"-^ c #18366B", +";^ c #16366A", +">^ c #15356A", +",^ c #1C3D74", +"'^ c #1E4079", +")^ c #224482", +"!^ c #214582", +"~^ c #1D427F", +"{^ c #193E82", +"]^ c #00030A", +"^^ c #051E46", +"/^ c #0F2F5E", +"(^ c #153368", +"_^ c #18376C", +":^ c #1B3970", +"<^ c #1E3F76", +"[^ c #1F427A", +"}^ c #1E427C", +"|^ c #1E4483", +"1^ c #183D81", +"2^ c #000309", +"3^ c #04173C", +"4^ c #051C48", +"5^ c #071F4B", +"6^ c #08234E", +"7^ c #06204C", +"8^ c #09244F", +"9^ c #072550", +"0^ c #0F2A59", +"a^ c #1A396E", +"b^ c #1B396F", +"c^ c #1F4281", +"d^ c #0B3279", +"e^ c #020308", +"f^ c #03102A", +"g^ c #071E4A", +"h^ c #203F78", +"i^ c #1E3F78", +"j^ c #1F427B", +"k^ c #214581", +"l^ c #214583", +"m^ c #1B4284", +"n^ c #021025", +"o^ c #02142F", +"p^ c #061E49", +"q^ c #071F4A", +"r^ c #041F48", +"s^ c #092450", +"t^ c #12305F", +"u^ c #19376B", +"v^ c #18386C", +"w^ c #19386D", +"x^ c #1D3E73", +"y^ c #204079", +"z^ c #203F7A", +"A^ c #204280", +"B^ c #1A4280", +"C^ c #073177", +"D^ c #010E27", +"E^ c #041738", +"F^ c #041A3E", +"G^ c #021D45", +"H^ c #0C2754", +"I^ c #133062", +"J^ c #1D3C72", +"K^ c #1E3E74", +"L^ c #203F79", +"M^ c #204179", +"N^ c #20437F", +"O^ c #1F4282", +"P^ c #1E4383", +"Q^ c #113A7D", +"R^ c #082F77", +"S^ c #021023", +"T^ c #03142F", +"U^ c #031736", +"V^ c #021A3E", +"W^ c #072049", +"X^ c #07234D", +"Y^ c #112E5E", +"Z^ c #1C3A71", +"`^ c #1E3D74", +" / c #1D3F78", +"./ c #1E417F", +"+/ c #1A4084", +"@/ c #0C3478", +"#/ c #0B347A", +"$/ c #053075", +"%/ c #03112E", +"&/ c #021B40", +"*/ c #031F47", +"=/ c #0A2550", +"-/ c #0D2955", +";/ c #0F2C5A", +">/ c #14305F", +",/ c #153365", +"'/ c #143365", +")/ c #18376A", +"!/ c #1F3E77", +"~/ c #20447F", +"{/ c #224481", +"]/ c #214482", +"^/ c #1B4183", +"// c #0C2854", +"(/ c #153266", +"_/ c #173669", +":/ c #1F4079", +"( c #E4DB1B", +",( c #DAD21F", +"'( c #C2BB25", +")( c #908C31", +"!( c #31353D", +"~( c #041B40", +"{( c #222A3F", +"]( c #878438", +"^( c #BFB82C", +"/( c #D9D023", +"(( c #E4DB1D", +"_( c #E3DA1F", +":( c #DBD322", +"<( c #C9C129", +"[( c #ABA532", +"}( c #6F6D3D", +"|( c #262F45", +"1( c #061D47", +"2( c #2A3347", +"3( c #32384A", +"4( c #31394A", +"5( c #2A344A", +"6( c #1F2D4E", +"7( c #323C50", +"8( c #323B4F", +"9( c #333C51", +"0( c #152A54", +"a( c #203154", +"b( c #303C54", +"c( c #333D56", +"d( c #333E57", +"e( c #2C3956", +"f( c #122F5F", +"g( c #10305E", +"h( c #133161", +"i( c #1E3E75", +"j( c #204383", +"k( c #21252A", +"l( c #E6DD14", +"m( c #F6EC0D", +"n( c #6A672A", +"o( c #7D7A33", +"p( c #DAD11F", +"q( c #E7DE1A", +"r( c #9A9531", +"s( c #1C253B", +"t( c #041B41", +"u( c #7E7B37", +"v( c #DFD620", +"w( c #F8EE0D", +"x( c #E5DC1D", +"y( c #B2AC32", +"z( c #3E4142", +"A( c #051D4A", +"B( c #112349", +"C( c #C5BE2E", +"D( c #E9E01D", +"E( c #43474A", +"F( c #12264E", +"G( c #BFB935", +"H( c #ECE21D", +"I( c #4C4F4C", +"J( c #424951", +"K( c #7F7E4A", +"L( c #B3AD3E", +"M( c #DAD22D", +"N( c #F4EA14", +"O( c #DAD22C", +"P( c #1B2D56", +"Q( c #123060", +"R( c #1A396C", +"S( c #1F417A", +"T( c #1F407A", +"U( c #1E427D", +"V( c #093579", +"W( c #032A6D", +"X( c #010203", +"Y( c #222526", +"Z( c #6A6728", +"`( c #161F32", +" _ c #A8A22B", +"._ c #F3E910", +"+_ c #F7ED0E", +"@_ c #C6BF27", +"#_ c #2E3440", +"$_ c #928E38", +"%_ c #F2E912", +"&_ c #74733F", +"*_ c #062049", +"=_ c #08204C", +"-_ c #5C5D44", +";_ c #F1E716", +">_ c #B4AE38", +",_ c #6E6E49", +"'_ c #F3EA14", +")_ c #A8A33F", +"!_ c #70704D", +"~_ c #D2CA2F", +"{_ c #ECE21E", +"]_ c #F7ED0F", +"^_ c #DBD32D", +"/_ c #133061", +"(_ c #153465", +"__ c #19376A", +":_ c #19396C", +"<_ c #19386C", +"[_ c #1F4076", +"}_ c #1F3E75", +"|_ c #1F417B", +"1_ c #1F3E79", +"2_ c #20437C", +"3_ c #020208", +"4_ c #021C47", +"5_ c #00050C", +"6_ c #212529", +"7_ c #F7ED0D", +"8_ c #6A6727", +"9_ c #A6A02C", +"0_ c #E7DD1A", +"a_ c #C2BA27", +"b_ c #A8A22F", +"c_ c #A49F30", +"d_ c #B9B22B", +"e_ c #DDD51C", +"f_ c #C9C227", +"g_ c #222A3E", +"h_ c #696738", +"i_ c #F0E714", +"j_ c #E7DE1C", +"k_ c #C5BD2B", +"l_ c #A29C32", +"m_ c #AEA82F", +"n_ c #CAC32C", +"o_ c #E8DF1A", +"p_ c #73713D", +"q_ c #B5AF37", +"r_ c #F0E717", +"s_ c #5C5D47", +"t_ c #18294C", +"u_ c #D1C92E", +"v_ c #E3DA23", +"w_ c #353E51", +"x_ c #999544", +"y_ c #1C2F58", +"z_ c #133160", +"A_ c #163466", +"B_ c #19376C", +"C_ c #1F3E74", +"D_ c #1E3F74", +"E_ c #1F4078", +"F_ c #21407A", +"G_ c #1A3F83", +"H_ c #5E5C2F", +"I_ c #65622A", +"J_ c #656224", +"K_ c #26292C", +"L_ c #817E30", +"M_ c #F4EA10", +"N_ c #F5EB0F", +"O_ c #ADA72E", +"P_ c #3E413C", +"Q_ c #262D3A", +"R_ c #8D8833", +"S_ c #ECE216", +"T_ c #ACA62F", +"U_ c #0F1F40", +"V_ c #CDC526", +"W_ c #F6EC0E", +"X_ c #B5AE2F", +"Y_ c #414441", +"Z_ c #3F4243", +"`_ c #8F8B39", +" : c #DDD522", +".: c #F5EC0F", +"+: c #08214A", +"@: c #434748", +"#: c #C6BF30", +"$: c #11254C", +"%: c #888542", +"&: c #F6EC0F", +"*: c #928F42", +"=: c #999546", +"-: c #F1E817", +";: c #D4CC30", +">: c #A9A442", +",: c #C7BF36", +"': c #132E5F", +"): c #143261", +"!: c #122F60", +"~: c #133263", +"{: c #113160", +"]: c #153264", +"^: c #173468", +"/: c #1D4283", +"(: c #1C4182", +"_: c #183E82", +":: c #153E81", +"<: c #052966", +"[: c #020306", +"}: c #333631", +"|: c #E2D919", +"1: c #97922A", +"2: c #011737", +"3: c #6A6837", +"4: c #EBE216", +"5: c #F1E812", +"6: c #666535", +"7: c #4F503C", +"8: c #F3E911", +"9: c #C0B92C", +"0: c #0E1F40", +"a: c #051D45", +"b: c #041C42", +"c: c #1D2844", +"d: c #9B9637", +"e: c #61603F", +"f: c #A19C3B", +"g: c #F5EB11", +"h: c #767546", +"i: c #2B364D", +"j: c #DFD625", +"k: c #D7CF2B", +"l: c #1F2E4E", +"m: c #838148", +"n: c #BBB53C", +"o: c #8B8848", +"p: c #3B4351", +"q: c #B6B03E", +"r: c #1B2E56", +"s: c #102E5C", +"t: c #21417A", +"u: c #20417A", +"v: c #163C7E", +"w: c #163C80", +"x: c #052E71", +"y: c #000103", +"z: c #010E20", +"A: c #031634", +"B: c #A29C2A", +"C: c #B9B225", +"D: c #0E1C37", +"E: c #8C8833", +"F: c #C8C028", +"G: c #0F1D3B", +"H: c #8E8937", +"I: c #5F5E3B", +"J: c #061D46", +"K: c #2E3649", +"L: c #DFD724", +"M: c #D5CD2A", +"N: c #1E2D4D", +"O: c #A09B3C", +"P: c #F5EC11", +"Q: c #7A7847", +"R: c #08244E", +"S: c #0C2753", +"T: c #B6B03C", +"U: c #1C2F57", +"V: c #0F2B59", +"W: c #122D5C", +"X: c #122D5D", +"Y: c #20427B", +"Z: c #1F4179", +"`: c #234682", +" < c #214480", +".< c #595619", +"+< c #9D9717", +"@< c #BEB715", +"#< c #CAC216", +"$< c #C6BE14", +"%< c #AFA816", +"&< c #78731A", +"*< c #0D1420", +"=< c #757124", +"-< c #B2AB1C", +";< c #C8C01A", +">< c #C8C018", +",< c #B0A91D", +"'< c #716E26", +")< c #011736", +"!< c #212736", +"~< c #E1D81A", +"{< c #E9E016", +"]< c #414236", +"^< c #16223A", +"/< c #CFC726", +"(< c #58573B", +"_< c #E9E01A", +":< c #262C3A", +"<< c #071E48", +"[< c #8A8740", +"}< c #8F8B3F", +"|< c #46494A", +"1< c #E9E01E", +"2< c #C8C133", +"3< c #11254D", +"4< c #0B2552", +"5< c #143062", +"6< c #1A386C", +"7< c #1E3D73", +"8< c #1F4383", +"9< c #193E80", +"0< c #030E26", +"a< c #36361C", +"b< c #BAB216", +"c< c #F0E60D", +"d< c #F5EB0D", +"e< c #D2CA12", +"f< c #57551F", +"g< c #ABA517", +"h< c #EAE110", +"i< c #EAE111", +"j< c #EAE10F", +"k< c #CBC317", +"l< c #0D1726", +"m< c #2A2C24", +"n< c #E5DC13", +"o< c #E8DF12", +"p< c #40402A", +"q< c #363726", +"r< c #C5BD1A", +"s< c #F4EA0E", +"t< c #BCB41E", +"u< c #212528", +"v< c #21262C", +"w< c #D9D118", +"x< c #EAE113", +"y< c #E8DF13", +"z< c #636129", +"A< c #262A2D", +"B< c #D6CD1A", +"C< c #C6BF1F", +"D< c #162033", +"E< c #6E6D31", +"F< c #E8DF16", +"G< c #EAE115", +"H< c #EAE016", +"I< c #95902B", +"J< c #747033", +"K< c #B1AA2A", +"L< c #817D37", +"M< c #A6A033", +"N< c #AFA931", +"O< c #E6DC1A", +"P< c #212A3F", +"Q< c #06214A", +"R< c #1E2D4C", +"S< c #D3CB2C", +"T< c #E2D923", +"U< c #2E374B", +"V< c #B5AF38", +"W< c #606048", +"X< c #DBD32C", +"Y< c #1C2E56", +"Z< c #143060", +"`< c #133262", +" [ c #133060", +".[ c #173568", +"+[ c #1A396D", +"@[ c #20427A", +"#[ c #21437D", +"$[ c #22457F", +"%[ c #214381", +"&[ c #010306", +"*[ c #030408", +"=[ c #00040C", +"-[ c #49471D", +";[ c #D9D012", +">[ c #E7DD10", +",[ c #615D1B", +"'[ c #B5AE17", +")[ c #D7CF15", +"![ c #0E1725", +"~[ c #2D2E23", +"{[ c #F2E90E", +"][ c #F5EC0D", +"^[ c #504E22", +"/[ c #D0C818", +"([ c #B7B01D", +"_[ c #0E1623", +":[ c #21262D", +"<[ c #E6DD16", +"[[ c #8C8728", +"}[ c #8D882A", +"|[ c #D7CF1C", +"1[ c #DDD419", +"2[ c #292D31", +"3[ c #011639", +"4[ c #AFA826", +"5[ c #F5EC0E", +"6[ c #656335", +"7[ c #262E3D", +"8[ c #D2CA22", +"9[ c #0E1E3F", +"0[ c #A9A331", +"a[ c #F1E714", +"b[ c #363A3D", +"c[ c #041C41", +"d[ c #051D44", +"e[ c #051B45", +"f[ c #071F48", +"g[ c #07214B", +"h[ c #717044", +"i[ c #F4EA12", +"j[ c #A5A03C", +"k[ c #5F6047", +"l[ c #F1E717", +"m[ c #B7B138", +"n[ c #092350", +"o[ c #0D2855", +"p[ c #B6B03D", +"q[ c #1B2D54", +"r[ c #102F5D", +"s[ c #112C5C", +"t[ c #132F5E", +"u[ c #143262", +"v[ c #1B396D", +"w[ c #1A3A6E", +"x[ c #1A3A6F", +"y[ c #1E3D75", +"z[ c #20407B", +"A[ c #1C4381", +"B[ c #093379", +"C[ c #042C72", +"D[ c #020209", +"E[ c #041A45", +"F[ c #21241F", +"G[ c #D3CA13", +"H[ c #F0E60E", +"I[ c #D1C913", +"J[ c #BEB616", +"K[ c #C5BD15", +"L[ c #DCD312", +"M[ c #2D2E20", +"N[ c #B1AA18", +"O[ c #F2E80E", +"P[ c #D7CF16", +"Q[ c #2D2E21", +"R[ c #BAB31A", +"S[ c #E6DD13", +"T[ c #C5BD1B", +"U[ c #C0B81A", +"V[ c #DAD214", +"W[ c #6C6921", +"X[ c #21262B", +"Y[ c #161F31", +"Z[ c #CBC31D", +"`[ c #E6DC16", +" } c #3C3D31", +".} c #9F9924", +"+} c #797632", +"@} c #D1C921", +"#} c #E4DB18", +"$} c #22293A", +"%} c #C6BE26", +"&} c #ECE316", +"*} c #29303D", +"=} c #918D35", +"-} c #999434", +";} c #051C43", +">} c #10234A", +",} c #C3BC32", +"'} c #EBE21C", +")} c #4C4F4A", +"!} c #C8C130", +"~} c #EAE11D", +"{} c #464A4B", +"]} c #0B2450", +"^} c #1C3157", +"/} c #0D2856", +"(} c #11305E", +"_} c #123261", +":} c #133162", +"<} c #1C3C6F", +"[} c #1F3F76", +"}} c #1F4483", +"|} c #10397B", +"1} c #041F51", +"2} c #A39C18", +"3} c #C2BB14", +"4} c #4B491D", +"5} c #26261D", +"6} c #ACA51A", +"7} c #615E20", +"8} c #EEE40F", +"9} c #C7BF16", +"0} c #0E1522", +"a} c #2D2E22", +"b} c #F4EA0D", +"c} c #F3E90E", +"d} c #A59F1D", +"e} c #212427", +"f} c #928D23", +"g} c #F3E90F", +"h} c #BEB71C", +"i} c #5B592A", +"j} c #EEE512", +"k} c #B7B025", +"l} c #53512F", +"m} c #ECE314", +"n} c #BFB724", +"o} c #0E1A31", +"p} c #222734", +"q} c #E6DC18", +"r} c #CCC423", +"s} c #05183A", +"t} c #A6A030", +"u} c #59593C", +"v} c #56563D", +"w} c #F4EA11", +"x} c #EDE417", +"y} c #8D8938", +"z} c #0D1E3D", +"A} c #08214B", +"B} c #07204C", +"C} c #08214C", +"D} c #595B48", +"E} c #EFE618", +"F} c #D1C92D", +"G} c #A29D3E", +"H} c #1C3056", +"I} c #122F5D", +"J} c #10305F", +"K} c #122E5F", +"L} c #143163", +"M} c #173466", +"N} c #1E3D78", +"O} c #23437C", +"P} c #21447D", +"Q} c #214683", +"R} c #37361D", +"S} c #E9E00F", +"T} c #C3BB12", +"U} c #1C1F1F", +"V} c #0E1420", +"W} c #B7AF17", +"X} c #E3DA11", +"Y} c #212421", +"Z} c #2A2B23", +"`} c #D8CF14", +" | c #EBE110", +".| c #54521F", +"+| c #2D2F26", +"@| c #A69F20", +"#| c #021127", +"$| c #B9B11E", +"%| c #6A6729", +"&| c #A6A023", +"*| c #6F6C2B", +"=| c #0D1A31", +"-| c #C5BE20", +";| c #E9E015", +">| c #474733", +",| c #2D3130", +"'| c #F2E911", +")| c #B7B029", +"!| c #898531", +"~| c #CEC626", +"{| c #DDD421", +"]| c #A9A333", +"^| c #69683C", +"/| c #343840", +"(| c #062048", +"_| c #09214D", +":| c #B1AB39", +"<| c #E0D824", +"[| c #0A244F", +"}| c #0E2A58", +"|| c #0E2B59", +"1| c #112C5D", +"2| c #133261", +"3| c #173567", +"4| c #1D3B72", +"5| c #1F3E78", +"6| c #234785", +"7| c #1C4384", +"8| c #10367B", +"9| c #000308", +"0| c #948E15", +"a| c #ECE30F", +"b| c #45441D", +"c| c #3E3E1F", +"d| c #ECE20F", +"e| c #726E1C", +"f| c #B1AA1C", +"g| c #8E881A", +"h| c #2D2F27", +"i| c #E0D714", +"j| c #262A2C", +"k| c #636125", +"l| c #4D4C26", +"m| c #21252C", +"n| c #E6DD15", +"o| c #292E31", +"p| c #DCD31A", +"q| c #D7CF1B", +"r| c #21262F", +"s| c #837F2A", +"t| c #96912A", +"u| c #505033", +"v| c #747136", +"w| c #65633A", +"x| c #EDE317", +"y| c #CFC729", +"z| c #A59F35", +"A| c #5E5D3C", +"B| c #40444A", +"C| c #E7DE1F", +"D| c #8B8842", +"E| c #1B2D55", +"F| c #122E5C", +"G| c #132F61", +"H| c #1A3A6D", +"I| c #1C3B6F", +"J| c #214179", +"K| c #10397C", +"L| c #0D3479", +"M| c #02020A", +"N| c #C8C012", +"O| c #BDB513", +"P| c #C3BC16", +"Q| c #A6A01A", +"R| c #7C781C", +"S| c #BEB719", +"T| c #0E1521", +"U| c #ABA51D", +"V| c #011025", +"W| c #262929", +"X| c #E9E012", +"Y| c #777327", +"Z| c #77732A", +"`| c #F4EA0F", +" 1 c #9F9927", +".1 c #343630", +"+1 c #D2CA1E", +"@1 c #1C2334", +"#1 c #615F2E", +"$1 c #9D972E", +"%1 c #999432", +"&1 c #767337", +"*1 c #F1E814", +"=1 c #C6BF2C", +"-1 c #565740", +";1 c #092049", +">1 c #B4AD36", +",1 c #D5CD2B", +"'1 c #1F2D4D", +")1 c #0B2553", +"!1 c #0F2B58", +"~1 c #0E2A57", +"{1 c #132E5E", +"]1 c #143162", +"^1 c #1C3B70", +"/1 c #1D3B71", +"(1 c #1F3E76", +"_1 c #1F4075", +":1 c #22447E", +"<1 c #1F437D", +"[1 c #1E4481", +"}1 c #04296C", +"|1 c #010408", +"11 c #21231C", +"21 c #E4DA0F", +"31 c #8D8718", +"41 c #A19B18", +"51 c #C2BA18", +"61 c #454421", +"71 c #E4DB11", +"81 c #E0D713", +"91 c #3C3C24", +"01 c #7C7822", +"a1 c #161D2A", +"b1 c #DBD216", +"c1 c #898424", +"d1 c #21262E", +"e1 c #0E1A32", +"f1 c #BDB621", +"g1 c #BDB623", +"h1 c #F1E711", +"i1 c #67652D", +"j1 c #666432", +"k1 c #9A952C", +"l1 c #01183C", +"m1 c #61603B", +"n1 c #9C9732", +"o1 c #47493B", +"p1 c #B5AF2E", +"q1 c #E9E019", +"r1 c #EBE119", +"s1 c #807C3A", +"t1 c #3A3F48", +"u1 c #E5DC20", +"v1 c #DAD228", +"w1 c #24304C", +"x1 c #0C2651", +"y1 c #0A2451", +"z1 c #1B2E54", +"A1 c #0D2A56", +"B1 c #0F2A58", +"C1 c #102C5A", +"D1 c #0F2D5B", +"E1 c #143263", +"F1 c #204078", +"G1 c #36361B", +"H1 c #F3E90D", +"I1 c #F6EC0C", +"J1 c #78741A", +"K1 c #47451B", +"L1 c #49471A", +"M1 c #49471E", +"N1 c #494821", +"O1 c #49471C", +"P1 c #49471F", +"Q1 c #9B9518", +"R1 c #D0C813", +"S1 c #161B21", +"T1 c #C5BD18", +"U1 c #747020", +"V1 c #575520", +"W1 c #0E1729", +"X1 c #D5CD17", +"Y1 c #8F8A22", +"Z1 c #454530", +"`1 c #B0A925", +" 2 c #5E5C31", +".2 c #9F9928", +"+2 c #696739", +"@2 c #979232", +"#2 c #3E413D", +"$2 c #BEB72E", +"%2 c #E0D71F", +"&2 c #EEE417", +"*2 c #666540", +"=2 c #072048", +"-2 c #ABA639", +";2 c #96923F", +">2 c #0B234F", +",2 c #0E2955", +"'2 c #0E2B58", +")2 c #1C3A70", +"!2 c #1D3C71", +"~2 c #21437B", +"{2 c #204583", +"]2 c #5E5A17", +"^2 c #D6CE13", +"/2 c #0E1520", +"(2 c #96911C", +"_2 c #A9A31A", +":2 c #2E2F27", +"<2 c #454425", +"[2 c #0D192F", +"}2 c #D3CB18", +"|2 c #918C24", +"12 c #938E28", +"22 c #E2D918", +"32 c #363832", +"42 c #454531", +"52 c #ABA52A", +"62 c #7A7738", +"72 c #8C8834", +"82 c #061E44", +"92 c #959136", +"02 c #D3CA25", +"a2 c #D1C928", +"b2 c #172545", +"c2 c #062149", +"d2 c #515348", +"e2 c #EDE419", +"f2 c #E5DC21", +"g2 c #383F4C", +"h2 c #1C3057", +"i2 c #13305F", +"j2 c #153265", +"k2 c #143165", +"l2 c #1F437B", +"m2 c #21447F", +"n2 c #11397C", +"o2 c #10377B", +"p2 c #041E4E", +"q2 c #01112D", +"r2 c #000918", +"s2 c #6D691B", +"t2 c #D8CF12", +"u2 c #5D5A1F", +"v2 c #EDE40F", +"w2 c #D3CA15", +"x2 c #252820", +"y2 c #021024", +"z2 c #0D1728", +"A2 c #D3CB19", +"B2 c #212730", +"C2 c #DED519", +"D2 c #8A852E", +"E2 c #2A2E34", +"F2 c #EFE612", +"G2 c #BEB627", +"H2 c #938E2F", +"I2 c #757236", +"J2 c #1D2842", +"K2 c #959038", +"L2 c #F3E913", +"M2 c #F5EB10", +"N2 c #656441", +"O2 c #112449", +"P2 c #BEB734", +"Q2 c #EDE41A", +"R2 c #868241", +"S2 c #A9A43B", +"T2 c #09234F", +"U2 c #1D3157", +"V2 c #1F4583", +"W2 c #10377A", +"X2 c #11387E", +"Y2 c #062C71", +"Z2 c #6E6A1C", +"`2 c #D4CC11", +" 3 c #D3CB13", +".3 c #D3CB12", +"+3 c #D3CB14", +"@3 c #B7B018", +"#3 c #0D141E", +"$3 c #252824", +"%3 c #D6CD13", +"&3 c #EBE210", +"*3 c #595620", +"=3 c #2D2F28", +"-3 c #454420", +";3 c #0D1525", +">3 c #918C21", +",3 c #7E792A", +"'3 c #F5EB0E", +")3 c #B0AA2A", +"!3 c #1C2333", +"~3 c #DFD61A", +"{3 c #D5CC1F", +"]3 c #0E1C36", +"^3 c #01173C", +"/3 c #041A3F", +"(3 c #B1AB2D", +"_3 c #454639", +":3 c #051B41", +"<3 c #061D44", +"[3 c #ADA730", +"}3 c #A39D36", +"|3 c #081F49", +"13 c #0A234C", +"23 c #6C6B44", +"33 c #F3E914", +"43 c #AAA437", +"53 c #102248", +"63 c #C2BB33", +"73 c #ECE31B", +"83 c #4E514A", +"93 c #1C2E55", +"03 c #14305E", +"a3 c #153161", +"b3 c #143161", +"c3 c #183466", +"d3 c #193769", +"e3 c #203F75", +"f3 c #204076", +"g3 c #20427C", +"h3 c #1C4285", +"i3 c #113A7C", +"j3 c #052F73", +"k3 c #02060C", +"l3 c #615D1E", +"m3 c #434119", +"n3 c #AEA718", +"o3 c #918C1B", +"p3 c #2D2F29", +"q3 c #454426", +"r3 c #D3CB17", +"s3 c #6A672E", +"t3 c #2D3030", +"u3 c #666431", +"v3 c #C7BF23", +"w3 c #EDE314", +"x3 c #303434", +"y3 c #0E1E3E", +"z3 c #D2CA24", +"A3 c #E4DB1A", +"B3 c #22293C", +"C3 c #494B40", +"D3 c #F3E912", +"E3 c #BFB82F", +"F3 c #09224B", +"G3 c #182849", +"H3 c #CFC72C", +"I3 c #383E4C", +"J3 c #585A4A", +"K3 c #F0E617", +"L3 c #BAB336", +"M3 c #0B2651", +"N3 c #0C2755", +"O3 c #112C5B", +"P3 c #153262", +"Q3 c #123161", +"R3 c #183568", +"S3 c #183668", +"T3 c #1A386A", +"U3 c #1B396C", +"V3 c #1F437E", +"W3 c #10387A", +"X3 c #10397D", +"Y3 c #0C3279", +"Z3 c #000715", +"`3 c #39381F", +" 4 c #75701A", +".4 c #7A761B", +"+4 c #C1B916", +"@4 c #0E151F", +"#4 c #2D2F24", +"$4 c #444428", +"%4 c #0D172B", +"&4 c #D3CB1A", +"*4 c #918C25", +"=4 c #AAA426", +"-4 c #F2E910", +";4 c #E7DD16", +">4 c #D2CA20", +",4 c #9E992C", +"'4 c #837F2F", +")4 c #454739", +"!4 c #F0E614", +"~4 c #C5BD2A", +"{4 c #C9C22A", +"]4 c #07214A", +"^4 c #84813F", +"/4 c #95913F", +"(4 c #08204B", +"_4 c #08224C", +":4 c #0A234D", +"<4 c #B2AC37", +"[4 c #F1E816", +"}4 c #646449", +"|4 c #0E2957", +"14 c #0E2B57", +"24 c #123260", +"34 c #1C3A6E", +"44 c #1B3B6E", +"54 c #1B3A6E", +"64 c #1F3D74", +"74 c #204178", +"84 c #1E407E", +"94 c #0F377A", +"04 c #032660", +"a4 c #21231B", +"b4 c #E4DA10", +"c4 c #A59E15", +"d4 c #41401E", +"e4 c #E2D911", +"f4 c #3E3D1D", +"g4 c #0E1626", +"h4 c #918C22", +"i4 c #6A672C", +"j4 c #01132D", +"k4 c #5E5C2C", +"l4 c #EFE611", +"m4 c #B3AD23", +"n4 c #848029", +"o4 c #54532F", +"p4 c #C9C124", +"q4 c #0E1D38", +"r4 c #04183B", +"s4 c #A09B31", +"t4 c #8F8A36", +"u4 c #1C2642", +"v4 c #E1D81F", +"w4 c #C8C02C", +"x4 c #081F48", +"y4 c #082049", +"z4 c #273147", +"A4 c #DCD425", +"B4 c #D9D028", +"C4 c #232D49", +"D4 c #09224D", +"E4 c #05214A", +"F4 c #414549", +"G4 c #C9C131", +"H4 c #13284F", +"I4 c #09224E", +"J4 c #0A234F", +"K4 c #0B2550", +"L4 c #0C2752", +"M4 c #112D5B", +"N4 c #12315F", +"O4 c #143160", +"P4 c #153463", +"Q4 c #163264", +"R4 c #173365", +"S4 c #163365", +"T4 c #1A376B", +"U4 c #1B3B6F", +"V4 c #1D3B70", +"W4 c #204177", +"X4 c #22447F", +"Y4 c #C5BD12", +"Z4 c #D8D011", +"`4 c #16191B", +" 5 c #0E141F", +".5 c #C3BB15", +"+5 c #0D1626", +"@5 c #161E2E", +"#5 c #CDC51C", +"$5 c #E3DA17", +"%5 c #393B2F", +"&5 c #C6BE20", +"*5 c #E8DF15", +"=5 c #474834", +"-5 c #0E1B35", +";5 c #CFC722", +">5 c #6E6B34", +",5 c #393C3A", +"'5 c #E5DC19", +")5 c #E8DF18", +"!5 c #34383E", +"~5 c #061C43", +"{5 c #313743", +"]5 c #BBB42E", +"^5 c #071F47", +"/5 c #9B973C", +"(5 c #F5EC10", +"_5 c #7E7B42", +":5 c #08224E", +"<5 c #A09B3E", +"[5 c #7A7845", +"}5 c #0F2A57", +"|5 c #102D59", +"15 c #0F2C59", +"25 c #143061", +"35 c #183567", +"45 c #1A386B", +"55 c #1E3C73", +"65 c #204176", +"75 c #22427A", +"85 c #183D80", +"95 c #062F73", +"05 c #010913", +"a5 c #8B8616", +"b5 c #88821A", +"c5 c #010B1E", +"d5 c #938D1C", +"e5 c #ADA61A", +"f5 c #2D2F23", +"g5 c #444421", +"h5 c #0D1729", +"i5 c #031633", +"j5 c #8F8A29", +"k5 c #898529", +"l5 c #525231", +"m5 c #EDE313", +"n5 c #0F1C38", +"o5 c #7E7B2D", +"p5 c #DAD11C", +"q5 c #343634", +"r5 c #04193C", +"s5 c #0E1D3B", +"t5 c #B9B22A", +"u5 c #ABA52F", +"v5 c #65643C", +"w5 c #4D4E3D", +"x5 c #051C41", +"y5 c #8C8839", +"z5 c #9C9738", +"A5 c #071E46", +"B5 c #061D45", +"C5 c #3C4146", +"D5 c #E7DE1D", +"E5 c #CBC32C", +"F5 c #182749", +"G5 c #07224B", +"H5 c #2B354B", +"I5 c #E0D724", +"J5 c #D6CE2C", +"K5 c #202F50", +"L5 c #0A2450", +"M5 c #092550", +"N5 c #DBD32B", +"O5 c #0F2C58", +"P5 c #112D5A", +"Q5 c #163262", +"R5 c #163263", +"S5 c #143362", +"T5 c #143363", +"U5 c #153466", +"V5 c #1D3B6F", +"W5 c #203F76", +"X5 c #214177", +"Y5 c #214178", +"Z5 c #1F407D", +"`5 c #10387B", +" 6 c #2A2A1B", +".6 c #E2D910", +"+6 c #E9DF0F", +"@6 c #676416", +"#6 c #34331D", +"$6 c #A69F16", +"%6 c #36361E", +"&6 c #5D591E", +"*6 c #D5CC15", +"=6 c #26271E", +"-6 c #F2E90D", +";6 c #444426", +">6 c #918C23", +",6 c #40412E", +"'6 c #E6DC15", +")6 c #CAC21C", +"!6 c #A09B2A", +"~6 c #77742F", +"{6 c #0E1B32", +"]6 c #C9C122", +"^6 c #CAC221", +"/6 c #373937", +"(6 c #0E1D3A", +"_6 c #A9A330", +":6 c #E3DA1C", +"<6 c #393D3C", +"[6 c #A09A31", +"}6 c #EAE019", +"|6 c #A39E30", +"16 c #545540", +"26 c #59593E", +"36 c #B0AA33", +"46 c #F2E814", +"56 c #656544", +"66 c #09214C", +"76 c #8A8742", +"86 c #8F8B42", +"96 c #132F60", +"06 c #1B396E", +"a6 c #021B46", +"b6 c #041C4B", +"c6 c #010D1D", +"d6 c #8C8617", +"e6 c #F5EC0C", +"f6 c #EDE30E", +"g6 c #A09915", +"h6 c #4B4920", +"i6 c #21231D", +"j6 c #1C1E1E", +"k6 c #3E3D1F", +"l6 c #69651D", +"m6 c #B0A918", +"n6 c #E8DF0F", +"o6 c #45431F", +"p6 c #161A1C", +"q6 c #D1C914", +"r6 c #5A581C", +"s6 c #454428", +"t6 c #0D1628", +"u6 c #918C20", +"v6 c #212526", +"w6 c #B8B121", +"x6 c #EEE411", +"y6 c #58562E", +"z6 c #262B32", +"A6 c #D9D01A", +"B6 c #DBD21A", +"C6 c #292D30", +"D6 c #4F4F33", +"E6 c #DFD61B", +"F6 c #878332", +"G6 c #414237", +"H6 c #16213A", +"I6 c #0F1C39", +"J6 c #333737", +"K6 c #6E6C37", +"L6 c #CDC525", +"M6 c #7B7835", +"N6 c #011739", +"O6 c #9F9A32", +"P6 c #AFA92F", +"Q6 c #67653A", +"R6 c #3C3F3E", +"S6 c #172441", +"T6 c #262E40", +"U6 c #4B4D3E", +"V6 c #989336", +"W6 c #C8C12B", +"X6 c #0F2042", +"Y6 c #051D43", +"Z6 c #565744", +"`6 c #EFE617", +" 7 c #BBB433", +".7 c #0A224D", +"+7 c #1E2B4C", +"@7 c #D4CC2B", +"#7 c #E1D824", +"$7 c #2E374A", +"%7 c #55584B", +"&7 c #5B5D4C", +"*7 c #5B5D4B", +"=7 c #5C5E4F", +"-7 c #5C5E50", +";7 c #BEB83A", +">7 c #DED62A", +",7 c #5F6150", +"'7 c #5C5F51", +")7 c #5A5E52", +"!7 c #253555", +"~7 c #102D5B", +"{7 c #22417A", +"]7 c #11397B", +"^7 c #0F367A", +"/7 c #0F387C", +"(7 c #062C73", +"_7 c #0E131C", +":7 c #B7AF16", +"<7 c #EEE50E", +"[7 c #DED512", +"}7 c #D9D111", +"|7 c #DDD411", +"17 c #EBE10F", +"27 c #D8D014", +"37 c #D8D013", +"47 c #BBB41A", +"57 c #2E2E22", +"67 c #444425", +"77 c #0D1727", +"87 c #E6DD12", +"97 c #716E29", +"07 c #A6A025", +"a7 c #03132D", +"b7 c #726F2D", +"c7 c #A49E2A", +"d7 c #716F33", +"e7 c #EBE116", +"f7 c #DCD31C", +"g7 c #DAD21D", +"h7 c #E5DC1A", +"i7 c #989233", +"j7 c #DCD421", +"k7 c #DAD121", +"l7 c #E0D720", +"m7 c #EFE515", +"n7 c #E8DF1B", +"o7 c #585842", +"p7 c #112348", +"q7 c #C2BB30", +"r7 c #ECE21A", +"s7 c #4C4E47", +"t7 c #757446", +"u7 c #F5EB12", +"v7 c #A29D3C", +"w7 c #24314E", +"x7 c #E8DF20", +"y7 c #696B50", +"z7 c #102C58", +"A7 c #122D5B", +"B7 c #102B59", +"C7 c #163565", +"D7 c #1C3A6F", +"E7 c #021E4B", +"F7 c #21221A", +"G7 c #B6AF17", +"H7 c #403F1D", +"I7 c #26271F", +"J7 c #D7CF14", +"K7 c #2D2E1F", +"L7 c #454429", +"M7 c #262A2F", +"N7 c #D8CF1C", +"O7 c #DCD31B", +"P7 c #2A2E2D", +"Q7 c #0E1B33", +"R7 c #BAB322", +"S7 c #EEE413", +"T7 c #575630", +"U7 c #676534", +"V7 c #8B8733", +"W7 c #0E1D3C", +"X7 c #7B7837", +"Y7 c #E5DC1C", +"Z7 c #6B6A3E", +"`7 c #706F42", +" 8 c #A7A23A", +".8 c #09224C", +"+8 c #0A224E", +"@8 c #14274D", +"#8 c #C6BF32", +"$8 c #44484B", +"%8 c #23304D", +"&8 c #E7DE21", +"*8 c #F6EC10", +"=8 c #696B52", +"-8 c #102C59", +";8 c #142F5F", +">8 c #153160", +",8 c #163564", +"'8 c #163362", +")8 c #163464", +"!8 c #1B3A6D", +"~8 c #1F4077", +"{8 c #11377B", +"]8 c #837F1A", +"^8 c #D4CC13", +"/8 c #E0D712", +"(8 c #B5AE16", +"_8 c #676417", +":8 c #0D1624", +"<8 c #D4CB15", +"[8 c #22252B", +"}8 c #E7DD14", +"|8 c #9F9921", +"18 c #78742C", +"28 c #43432E", +"38 c #E7DE16", +"48 c #C9C121", +"58 c #041839", +"68 c #343734", +"78 c #A59F2C", +"88 c #E1D81B", +"98 c #EAE117", +"08 c #535237", +"a8 c #2E323D", +"b8 c #898536", +"c8 c #C5BE28", +"d8 c #E3DA1E", +"e8 c #ADA731", +"f8 c #41433F", +"g8 c #172646", +"h8 c #D3CB2A", +"i8 c #E3DA20", +"j8 c #353C49", +"k8 c #5E5F49", +"l8 c #112E5A", +"m8 c #143361", +"n8 c #173363", +"o8 c #183464", +"p8 c #163465", +"q8 c #1B386C", +"r8 c #204077", +"s8 c #1C1F1D", +"t8 c #54521C", +"u8 c #918B18", +"v8 c #A9A317", +"w8 c #AFA815", +"x8 c #A6A017", +"y8 c #8D881B", +"z8 c #57541C", +"A8 c #36361D", +"B8 c #3C3B20", +"C8 c #3C3B1F", +"D8 c #3C3B1D", +"E8 c #3C3B1E", +"F8 c #3C3B21", +"G8 c #3C3B1C", +"H8 c #3C3B23", +"I8 c #313222", +"J8 c #393925", +"K8 c #3C3B22", +"L8 c #393A25", +"M8 c #0D1523", +"N8 c #303227", +"O8 c #3C3C2A", +"P8 c #3C3C27", +"Q8 c #36382A", +"R8 c #3C3C28", +"S8 c #3C3D2E", +"T8 c #161D2B", +"U8 c #2D302D", +"V8 c #3C3D2C", +"W8 c #393B32", +"X8 c #303331", +"Y8 c #3C3D32", +"Z8 c #3C3D34", +"`8 c #363932", +" 9 c #262B35", +".9 c #656230", +"+9 c #97922E", +"@9 c #ABA42B", +"#9 c #9E992F", +"$9 c #767336", +"%9 c #31343A", +"&9 c #2D333B", +"*9 c #64633B", +"=9 c #949033", +"-9 c #AAA432", +";9 c #AFA930", +">9 c #A8A232", +",9 c #928E36", +"'9 c #61603E", +")9 c #2B3241", +"!9 c #031C41", +"~9 c #082046", +"{9 c #061E45", +"]9 c #373D48", +"^9 c #3C4145", +"/9 c #323948", +"(9 c #0A224C", +"_9 c #07224C", +":9 c #09244E", +"<9 c #383F4E", +"[9 c #3D434C", +"}9 c #3D444E", +"|9 c #32394B", +"19 c #384150", +"29 c #3D444D", +"39 c #3E454F", +"49 c #3E4552", +"59 c #3D4550", +"69 c #3D4450", +"79 c #3D4551", +"89 c #3E4755", +"99 c #3E4654", +"09 c #3E4754", +"a9 c #102B58", +"b9 c #122F5C", +"c9 c #132E5D", +"d9 c #153362", +"e9 c #153163", +"f9 c #153363", +"g9 c #153364", +"h9 c #193668", +"i9 c #1A3769", +"j9 c #1B396B", +"k9 c #1D3D72", +"l9 c #21417B", +"m9 c #11387A", +"n9 c #0F387B", +"o9 c #062F77", +"p9 c #01060B", +"q9 c #05193B", +"r9 c #04183A", +"s9 c #0D254F", +"t9 c #08234B", +"u9 c #0B244E", +"v9 c #09234D", +"w9 c #0A264F", +"x9 c #09254F", +"y9 c #0E2855", +"z9 c #0E2A56", +"A9 c #112C59", +"B9 c #143364", +"C9 c #183566", +"D9 c #1C3B6E", +"E9 c #032053", +"F9 c #03204E", +"G9 c #030B1A", +"H9 c #04193B", +"I9 c #081F4B", +"J9 c #0F2853", +"K9 c #0D2854", +"L9 c #173463", +"M9 c #193567", +"N9 c #1E3C71", +"O9 c #203E75", +"P9 c #0E3579", +"Q9 c #03245B", +"R9 c #042767", +"S9 c #052560", +"T9 c #04245E", +"U9 c #062B6B", +"V9 c #062B6C", +"W9 c #062B6E", +"X9 c #05183B", +"Y9 c #01173B", +"Z9 c #051C42", +"`9 c #071F46", +" 0 c #08204A", +".0 c #08234D", +"+0 c #0B254F", +"@0 c #09254E", +"#0 c #08234C", +"$0 c #0C2551", +"%0 c #0E2954", +"&0 c #0D2853", +"*0 c #102B57", +"=0 c #112C5A", +"-0 c #102D5A", +";0 c #153162", +">0 c #1B386A", +",0 c #21427C", +"'0 c #234581", +")0 c #324C81", +"!0 c #445F94", +"~0 c #37568D", +"{0 c #486395", +"]0 c #526C9B", +"^0 c #546D9E", +"/0 c #526C9E", +"(0 c #536EA0", +"_0 c #556FA4", +":0 c #5770A4", +"<0 c #5972A6", +"[0 c #566FA4", +"}0 c #5871A3", +"|0 c #5A72A1", +"10 c #5C74A3", +"20 c #5E75A5", +"30 c #5A72A0", +"40 c #506A9A", +"50 c #516A9C", +"60 c #4F6898", +"70 c #476395", +"80 c #425E93", +"90 c #425F95", +"00 c #436096", +"a0 c #3D5C97", +"b0 c #365590", +"c0 c #345491", +"d0 c #385894", +"e0 c #355694", +"f0 c #2E4E8C", +"g0 c #2B4C8A", +"h0 c #2D4D89", +"i0 c #2C4D8C", +"j0 c #294B8C", +"k0 c #244889", +"l0 c #264A8B", +"m0 c #22478B", +"n0 c #20468B", +"o0 c #1B4185", +"p0 c #12377A", +"q0 c #0E3376", +"r0 c #0A3173", +"s0 c #0A3175", +"t0 c #073278", +"u0 c #063078", +"v0 c #041F50", +"w0 c #021F53", +"x0 c #020C1B", +"y0 c #03193B", +"z0 c #051B42", +"A0 c #051B40", +"B0 c #082149", +"C0 c #08244C", +"D0 c #0B234D", +"E0 c #0C2450", +"F0 c #0A254E", +"G0 c #0B234E", +"H0 c #0E2652", +"I0 c #122E5B", +"J0 c #173362", +"K0 c #173465", +"L0 c #173566", +"M0 c #21427A", +"N0 c #21447C", +"O0 c #21457F", +"P0 c #0B327A", +"Q0 c #294D90", +"R0 c #4368A8", +"S0 c #BACBE8", +"T0 c #D4E2F5", +"U0 c #CCDCF2", +"V0 c #D1E1F5", +"W0 c #D3E2F5", +"X0 c #D3E1F5", +"Y0 c #D0E1F4", +"Z0 c #CFDFF3", +"`0 c #CEDFF4", +" a c #D1E1F4", +".a c #D3E1F4", +"+a c #D3E2F4", +"@a c #D2E1F5", +"#a c #CFE0F3", +"$a c #CEDFF3", +"%a c #CFE0F4", +"&a c #D0DFF3", +"*a c #CCDEF3", +"=a c #CDDEF3", +"-a c #CDDFF3", +";a c #CADCF4", +">a c #C8DAF0", +",a c #CBDBF0", +"'a c #CCDDF2", +")a c #CCDCF0", +"!a c #C9DAEE", +"~a c #C8D9ED", +"{a c #C7D9EE", +"]a c #C5D7F0", +"^a c #C1D4EE", +"/a c #BED1EC", +"(a c #C0D2EC", +"_a c #C2D2EC", +":a c #BFD1EA", +"b c #071F45", +",b c #072149", +"'b c #09204C", +")b c #0A244D", +"!b c #08244D", +"~b c #0D2551", +"{b c #163364", +"]b c #133B82", +"^b c #36538D", +"/b c #D2E1F4", +"(b c #C2D6F4", +"_b c #B6D0F1", +":b c #A8C5F0", +"c c #A2C2F0", +",c c #A5C3F0", +"'c c #AAC8F0", +")c c #E2ECF7", +"!c c #B6CAEA", +"~c c #2C5296", +"{c c #020710", +"]c c #020F21", +"^c c #01173D", +"/c c #0B254D", +"(c c #09244D", +"_c c #0A254F", +":c c #0B2650", +"d c #B3CDF3", +",d c #B5CDF3", +"'d c #B3CCF4", +")d c #AEC9F2", +"!d c #ACC8F2", +"~d c #ACC9F2", +"{d c #B0CBF3", +"]d c #BBD2F3", +"^d c #B2CCF0", +"/d c #8EB4EF", +"(d c #8FB4EE", +"_d c #9CBDEF", +":d c #9DBEEF", +"e c #ADCAF2", +",e c #B1CCF3", +"'e c #8FB3EB", +")e c #89B1EE", +"!e c #83ABEA", +"~e c #87AFEC", +"{e c #8EB3EE", +"]e c #81AAE8", +"^e c #81A9E7", +"/e c #D5E4F4", +"(e c #DEE9F6", +"_e c #6286C1", +":e c #194086", +"f c #6F97D7", +",f c #6A92D3", +"'f c #6891D1", +")f c #749AD7", +"!f c #A6C2EB", +"~f c #BED4F1", +"{f c #B3CDF0", +"]f c #B3CCF0", +"^f c #B3CDF1", +"/f c #B3CDEF", +"(f c #B4CEF0", +"_f c #B0CCF1", +":f c #B0CBF1", +"g c #8FB4ED", +",g c #98BBEF", +"'g c #88AFEB", +")g c #779FDF", +"!g c #729BDB", +"~g c #7CA0D9", +"{g c #B5CEF1", +"]g c #B7D0F0", +"^g c #B6CEEF", +"/g c #B5CEF0", +"(g c #AFCBF0", +"_g c #ADCAF0", +":g c #B8CFF2", +"h c #0F1520", +",h c #A29C18", +"'h c #EEE50F", +")h c #9F9918", +"!h c #6F6C2F", +"~h c #A9A326", +"{h c #A9A328", +"]h c #A9A329", +"^h c #A9A327", +"/h c #A9A32C", +"(h c #A8A229", +"_h c #A29C29", +":h c #958F2C", +"i c #C6BF33", +",i c #898644", +"'i c #0D2752", +")i c #0F2652", +"!i c #112C57", +"~i c #132E59", +"{i c #132E5B", +"]i c #112E5C", +"^i c #1C3F7D", +"/i c #153D7D", +"(i c #133A7C", +"_i c #0E3578", +":i c #16397A", +"j c #8AABE2", +",j c #84A7DF", +"'j c #7EA1DD", +")j c #6E95D5", +"!j c #85A9E4", +"~j c #6C93D3", +"{j c #6990D0", +"]j c #6990D1", +"^j c #678FCF", +"/j c #668DCD", +"(j c #678ECF", +"_j c #688FD0", +":j c #6D94D4", +"k c #122D58", +",k c #112E5B", +"'k c #183463", +")k c #183364", +"!k c #1E3C6F", +"~k c #1F3D71", +"{k c #1C3C70", +"]k c #1F3D73", +"^k c #214278", +"/k c #22457E", +"(k c #163D7C", +"_k c #5B76AB", +":k c #E3EDF5", +"l c #456DB0", +",l c #537CBD", +"'l c #5881C1", +")l c #6991D2", +"!l c #7AA3E1", +"~l c #87AEEB", +"{l c #B1CBF2", +"]l c #9CB4DD", +"^l c #173F84", +"/l c #041840", +"(l c #0E131A", +"_l c #C6BE13", +":l c #EAE00E", +"m c #7F7B1C", +",m c #807C1E", +"'m c #B9B118", +")m c #D7CF13", +"!m c #817C1B", +"~m c #807C1F", +"{m c #807C1D", +"]m c #63601E", +"^m c #B5AE15", +"/m c #F1E80F", +"(m c #E1D814", +"_m c #C0B81E", +":m c #7C7820", +"n c #BBD1F1", +",n c #ACC7F0", +"'n c #87ABE4", +")n c #7097D8", +"!n c #6188CA", +"~n c #3D64A8", +"{n c #436BAE", +"]n c #436AAD", +"^n c #3F66A9", +"/n c #4E75B8", +"(n c #658ECD", +"_n c #6A93D3", +":n c #C0D3EE", +"o c #6C95D5", +",o c #A1C1F1", +"'o c #CBDBF3", +")o c #315696", +"!o c #424118", +"~o c #E9E00E", +"{o c #8C8718", +"]o c #908B1A", +"^o c #C2BA15", +"/o c #171D26", +"(o c #BCB51B", +"_o c #EDE410", +":o c #292B24", +"p c #1C1F1E", +",p c #63601F", +"'p c #BCB516", +")p c #BDB514", +"!p c #D6CD12", +"~p c #E5DC11", +"{p c #BDB51A", +"]p c #BDB516", +"^p c #BDB518", +"/p c #938D1A", +"(p c #A09A1C", +"_p c #C3BC17", +":p c #8B861D", +"

Q c #2A5092", +",Q c #00070E", +"'Q c #051938", +")Q c #071A3A", +"!Q c #061B3A", +"~Q c #092042", +"{Q c #0B2245", +"]Q c #071D43", +"^Q c #0C2347", +"/Q c #0A2246", +"(Q c #1C345F", +"_Q c #1F3762", +":Q c #1E3562", +"R c #11284E", +",R c #162E55", +"'R c #152D55", +")R c #1A335D", +"!R c #203763", +"~R c #1E3762", +"{R c #1F3D6D", +"]R c #173875", +"^R c #0C3374", +"/R c #0C3275", +"(R c #163773", +"_R c #BBCDE9", +":R c #8BB0E6", +"S c #0E264A", +",S c #152D53", +"'S c #0F254E", +")S c #183058", +"!S c #1E3864", +"~S c #213965", +"{S c #223A68", +"]S c #203966", +"^S c #233E6C", +"/S c #233D6C", +"(S c #223C6D", +"_S c #163A78", +":S c #103676", +"T c #143977", +",T c #0C3273", +"'T c #0E3377", +")T c #123573", +"!T c #A8BCDA", +"~T c #ABC9F1", +"{T c #86B2EE", +"]T c #5880C0", +"^T c #668FCF", +"/T c #88B0EE", +"(T c #D6E5F5", +"_T c #4567A6", +":T c #071E3F", +"U c #88B4F1", +",U c #547ABD", +"'U c #547CBF", +")U c #587EC2", +"!U c #5F87C7", +"~U c #90B6F0", +"{U c #C2D8F4", +"]U c #86A0CE", +"^U c #041539", +"/U c #03132C", +"(U c #061937", +"_U c #0B1F42", +":U c #162D54", +"V c #213A63", +",V c #203862", +"'V c #1D3660", +")V c #243C66", +"!V c #243B67", +"~V c #253D69", +"{V c #25406D", +"]V c #233E6E", +"^V c #203E6E", +"/V c #213F71", +"(V c #0E3474", +"_V c #0C3274", +":V c #8FA4C9", +"W c #04245F", +",W c #042253", +"'W c #010A15", +")W c #021530", +"!W c #071D3E", +"~W c #0E2447", +"{W c #0D2248", +"]W c #0F274B", +"^W c #12284D", +"/W c #11284D", +"(W c #13294F", +"_W c #152B50", +":W c #162E54", +"X c #0E244A", +",X c #12294E", +"'X c #142A51", +")X c #1A3157", +"!X c #1D335D", +"~X c #1F3B67", +"{X c #243E6D", +"]X c #1B3F78", +"^X c #123977", +"/X c #0D3275", +"(X c #6680B0", +"_X c #90B5EB", +":X c #97BDF2", +"Y c #072E71", +",Y c #10316F", +"'Y c #A5BDE1", +")Y c #7EA5E2", +"!Y c #93BAF0", +"~Y c #90B6F1", +"{Y c #92B9F3", +"]Y c #92B8F3", +"^Y c #93B8F2", +"/Y c #97BCF2", +"(Y c #8FB5F4", +"_Y c #7FA4DF", +":Y c #6D93D4", +"Z c #243D68", +",Z c #253D6B", +"'Z c #243E6A", +")Z c #233D6D", +"!Z c #0F3473", +"~Z c #113676", +"{Z c #093072", +"]Z c #5572A4", +"^Z c #8BB3EE", +"/Z c #82A7E2", +"(Z c #5B82C3", +"_Z c #5D84C7", +":Z c #537BBE", +"` c #233F6D", +",` c #153774", +"'` c #123775", +")` c #143878", +"!` c #113775", +"~` c #0D3373", +"{` c #0C3172", +"]` c #0A3072", +"^` c #0A3073", +"/` c #0D306F", +"(` c #A1B8DB", +"_` c #90B4EB", +":` c #89AEE8", +"<` c #8DB3EA", +"[` c #9FBFF2", +"}` c #9DBEF2", +"|` c #9BBDF2", +"1` c #95B9F3", +"2` c #7DA6E6", +"3` c #88B1F0", +"4` c #A5BCE2", +"5` c #030F21", +"6` c #061A37", +"7` c #0B2040", +"8` c #0E2344", +"9` c #142B50", +"0` c #172E54", +"a` c #152B53", +"b` c #1B3259", +"c` c #1F365D", +"d` c #1C345B", +"e` c #1B335A", +"f` c #253C66", +"g` c #233D6B", +"h` c #25406F", +"i` c #163875", +"j` c #133775", +"k` c #123674", +"l` c #0D3372", +"m` c #0F3676", +"n` c #0C3174", +"o` c #092F73", +"p` c #133472", +"q` c #ADC4E5", +"r` c #8BB2EA", +"s` c #8CB1EB", +"t` c #8BB2EB", +"u` c #9CBDF2", +"v` c #7AA1E0", +"w` c #6087C8", +"x` c #5D84C6", +"y` c #5980C3", +"z` c #AFC6EA", +"A` c #1A3F82", +"B` c #072D72", +"C` c #04142D", +"D` c #0C1F40", +"E` c #0D2142", +"F` c #102649", +"G` c #0D2346", +"H` c #142A4E", +"I` c #1D345A", +"J` c #1E355C", +"K` c #1E365D", +"L` c #213861", +"M` c #1F355F", +"N` c #223862", +"O` c #273F6C", +"P` c #243D6A", +"Q` c #26416E", +"R` c #274270", +"S` c #143875", +"T` c #25427B", +"U` c #8BB1EA", +"V` c #86ADE9", +"W` c #93B8EF", +"X` c #A3C2F2", +"Y` c #85AAE5", +"Z` c #648ACB", +"`` c #6289CA", +" . c #5C83C5", +". . c #658DCD", +"+ . c #7DA6E4", +"@ . c #04132E", +"# . c #061B3B", +"$ . c #11284A", +"% . c #172D53", +"& . c #182E55", +"* . c #1C3259", +"= . c #172D55", +"- . c #1E345C", +"; . c #1C325B", +"> . c #233A63", +", . c #253C68", +"' . c #243D67", +") . c #28406C", +"! . c #273F6A", +"~ . c #254070", +"{ . c #163975", +"] . c #103373", +"^ . c #0E3372", +"/ . c #082F70", +"( . c #3E5A8D", +"_ . c #97BAF0", +": . c #8CB3EC", +"< . c #A1C1F0", +"[ . c #96BBF0", +"} . c #93B8F1", +"| . c #6E94D5", +"1 . c #5C82C4", +"2 . c #7CA5E3", +"3 . c #A4C4F3", +"4 . c #3B5C99", +"5 . c #051633", +"6 . c #091C3F", +"7 . c #0E2345", +"8 . c #11274A", +"9 . c #0F2548", +"0 . c #12294B", +"a . c #172D52", +"b . c #183054", +"c . c #172E53", +"d . c #1A3057", +"e . c #213760", +"f . c #253C67", +"g . c #263D68", +"h . c #273E69", +"i . c #223B65", +"j . c #29406E", +"k . c #163876", +"l . c #143874", +"m . c #123574", +"n . c #093071", +"o . c #5772A2", +"p . c #9FC0F3", +"q . c #97BCF3", +"r . c #91B9F0", +"s . c #7AA1DD", +"t . c #749BDB", +"u . c #8CB3F0", +"v . c #4E70AA", +"w . c #01102C", +"x . c #061734", +"y . c #051734", +"z . c #041632", +"A . c #041432", +"B . c #0F2648", +"C . c #162B50", +"D . c #12274E", +"E . c #182E54", +"F . c #1C345A", +"G . c #223962", +"H . c #243B69", +"I . c #1D3B6A", +"J . c #173A75", +"K . c #153775", +"L . c #153874", +"M . c #143773", +"N . c #0F3675", +"O . c #728BB6", +"P . c #92B8EE", +"Q . c #95B9EF", +"R . c #A3C4F1", +"S . c #9EBFF2", +"T . c #9BBEF2", +"U . c #97BAF2", +"V . c #97BBF3", +"W . c #7CA3E0", +"X . c #779FDE", +"Y . c #6281B9", +"Z . c #0A1D3D", +"` . c #102447", +" .. c #102547", +"... c #102648", +"+.. c #11264B", +"@.. c #162B4F", +"#.. c #182E53", +"$.. c #192F58", +"%.. c #1A325A", +"&.. c #1D355C", +"*.. c #253D66", +"=.. c #253C6B", +"-.. c #26406C", +";.. c #253F6D", +">.. c #183C76", +",.. c #133774", +"'.. c #143676", +").. c #0E3272", +"!.. c #0C3271", +"~.. c #8FA6CD", +"{.. c #8CB3ED", +"].. c #A2C2F2", +"^.. c #9EBEF2", +"/.. c #7CA3E1", +"(.. c #7299DA", +"_.. c #7298D9", +":.. c #749CDB", +"<.. c #769FDE", +"[.. c #8AB2F0", +"}.. c #9FC1F2", +"|.. c #7C97C8", +"1.. c #0A2F73", +"2.. c #091E3F", +"3.. c #122648", +"4.. c #0E2243", +"5.. c #0C2446", +"6.. c #162D52", +"7.. c #172C54", +"8.. c #193055", +"9.. c #1F365E", +"0.. c #1E355D", +"a.. c #2A416D", +"b.. c #25406E", +"c.. c #133674", +"d.. c #0F3373", +"e.. c #092F70", +"f.. c #092F71", +"g.. c #0E306B", +"h.. c #9EB5DA", +"i.. c #91B6EF", +"j.. c #8EB5EF", +"k.. c #A3C2F1", +"l.. c #9CBEF3", +"m.. c #9CBDF3", +"n.. c #96BBF3", +"o.. c #92B9F0", +"p.. c #91B8F0", +"q.. c #94B9F0", +"r.. c #94B8F1", +"s.. c #7FA6E2", +"t.. c #79A0E0", +"u.. c #87AFEE", +"v.. c #8DAAD8", +"w.. c #092E72", +"x.. c #051E4D", +"y.. c #001028", +"z.. c #01122A", +"A.. c #011531", +"B.. c #061835", +"C.. c #0D2042", +"D.. c #0E2446", +"E.. c #1D335A", +"F.. c #213860", +"G.. c #20365F", +"H.. c #29416D", +"I.. c #25406C", +"J.. c #173975", +"K.. c #143775", +"L.. c #113474", +"M.. c #123676", +"N.. c #163572", +"O.. c #ADC5E8", +"P.. c #9CBEEF", +"Q.. c #90B6EF", +"R.. c #94B8EF", +"S.. c #A6C5F1", +"T.. c #80A6E3", +"U.. c #7EA7E4", +"V.. c #A9C8F3", +"W.. c #9EB7E1", +"X.. c #0C3071", +"Y.. c #011229", +"Z.. c #041633", +"`.. c #0E2548", +" +. c #0F2649", +".+. c #12294C", +"++. c #1A3055", +"@+. c #152C52", +"#+. c #162E53", +"$+. c #152C51", +"%+. c #1B3158", +"&+. c #283F69", +"*+. c #233B65", +"=+. c #26406D", +"-+. c #193C74", +";+. c #294479", +">+. c #9BBDF0", +",+. c #9EBEF3", +"'+. c #9BBCF2", +")+. c #96BAF3", +"!+. c #6F95D6", +"~+. c #7299D9", +"{+. c #698FD0", +"]+. c #79A0E1", +"^+. c #8FB5F0", +"/+. c #A8C0E7", +"(+. c #143678", +"_+. c #041631", +":+. c #0E2144", +"<+. c #112749", +"[+. c #0B2345", +"}+. c #11284B", +"|+. c #152B4F", +"1+. c #182D52", +"2+. c #152D52", +"3+. c #172F54", +"4+. c #162E52", +"5+. c #20375F", +"6+. c #1F355D", +"7+. c #223861", +"8+. c #273F68", +"9+. c #273E68", +"0+. c #1B3A69", +"a+. c #173974", +"b+. c #153773", +"c+. c #133773", +"d+. c #153875", +"e+. c #103474", +"f+. c #0C3170", +"g+. c #103473", +"h+. c #0D3271", +"i+. c #082E70", +"j+. c #0A3171", +"k+. c #435F91", +"l+. c #9CBDF0", +"m+. c #8FB4EF", +"n+. c #A9C6F1", +"o+. c #A4C3F2", +"p+. c #A0C0F3", +"q+. c #9DBFF2", +"r+. c #769DDB", +"s+. c #759CDD", +"t+. c #668CCD", +"u+. c #7096D7", +"v+. c #B4CBEF", +"w+. c #214283", +"x+. c #061833", +"y+. c #071938", +"z+. c #112548", +"A+. c #0D2547", +"B+. c #12274C", +"C+. c #152A4F", +"D+. c #183055", +"E+. c #182F54", +"F+. c #1A3158", +"G+. c #263D66", +"H+. c #28406A", +"I+. c #29406A", +"J+. c #2B426E", +"K+. c #223D69", +"L+. c #153872", +"M+. c #163874", +"N+. c #143673", +"O+. c #113573", +"P+. c #0B3170", +"Q+. c #0B3272", +"R+. c #647FAE", +"S+. c #9DBDF0", +"T+. c #A9C6F2", +"U+. c #A5C4F3", +"V+. c #9EBFF3", +"W+. c #98BAF1", +"X+. c #96BAEF", +"Y+. c #95BAEF", +"Z+. c #5E84C5", +"`+. c #7FA8E7", +" @. c #355591", +".@. c #051632", +"+@. c #0B1F3F", +"@@. c #0F2245", +"#@. c #122649", +"$@. c #102346", +"%@. c #0D2244", +"&@. c #0D2447", +"*@. c #192E53", +"=@. c #162C50", +"-@. c #20365D", +";@. c #1E345D", +">@. c #1F375E", +",@. c #233963", +"'@. c #243A64", +")@. c #183B74", +"!@. c #153873", +"~@. c #0E3375", +"{@. c #879CC0", +"]@. c #9EBFEF", +"^@. c #9FBFEF", +"/@. c #96B9EF", +"(@. c #9CBDF1", +"_@. c #84ACEB", +":@. c #C0D5F3", +"<@. c #4E6EA9", +"[@. c #04235C", +"}@. c #021C45", +"|@. c #0A1E3D", +"1@. c #0A1E3E", +"2@. c #0A1F3F", +"3@. c #0C2040", +"4@. c #0C2243", +"5@. c #10254A", +"6@. c #1B3156", +"7@. c #1E365E", +"8@. c #253B65", +"9@. c #223B64", +"0@. c #273F69", +"a@. c #233C68", +"b@. c #263F6C", +"c@. c #1A3971", +"d@. c #163873", +"e@. c #163974", +"f@. c #143774", +"g@. c #113674", +"h@. c #113574", +"i@. c #0B3171", +"j@. c #0D3270", +"k@. c #99AFD3", +"l@. c #9FBFF0", +"m@. c #9BBCF0", +"n@. c #A5C3F2", +"o@. c #98BCF0", +"p@. c #9DBEF0", +"q@. c #688ECF", +"r@. c #82A9E9", +"s@. c #85ACE8", +"t@. c #9EC1F1", +"u@. c #6A88BD", +"v@. c #051733", +"w@. c #091E3D", +"x@. c #0C1F41", +"y@. c #0E2244", +"z@. c #102749", +"A@. c #162D4F", +"B@. c #13284C", +"C@. c #1D3359", +"D@. c #1C3359", +"E@. c #192F57", +"F@. c #21395F", +"G@. c #274069", +"H@. c #29426B", +"I@. c #263E69", +"J@. c #183873", +"K@. c #143572", +"L@. c #163774", +"M@. c #0A2F72", +"N@. c #103271", +"O@. c #9FBEF1", +"P@. c #A6C5F3", +"Q@. c #A6C4F2", +"R@. c #9DBDF2", +"S@. c #9BBDF3", +"T@. c #99BBF2", +"U@. c #9EBEF0", +"V@. c #79A1DF", +"W@. c #80A7E2", +"X@. c #B0CAF1", +"Y@. c #849FCC", +"Z@. c #031539", +"`@. c #010B18", +" #. c #04132D", +".#. c #152C4E", +"+#. c #1F355C", +"@#. c #1F365C", +"##. c #213960", +"$#. c #28416B", +"%#. c #283F6C", +"&#. c #2A426E", +"*#. c #264170", +"=#. c #113473", +"-#. c #113373", +";#. c #0F3573", +">#. c #103372", +",#. c #0B3073", +"'#. c #1E3B75", +")#. c #B0CAEE", +"!#. c #A6C5F0", +"~#. c #A0C0F0", +"{#. c #99BAF0", +"]#. c #9BBCF1", +"^#. c #7DA4E2", +"/#. c #97B0DB", +"(#. c #071834", +"_#. c #061837", +":#. c #061735", +"<#. c #081D3C", +"[#. c #102548", +"}#. c #182E51", +"|#. c #1D335B", +"1#. c #223860", +"2#. c #193465", +"3#. c #163972", +"4#. c #123672", +"5#. c #0A3070", +"6#. c #072E6F", +"7#. c #2D487C", +"8#. c #9BBEF0", +"9#. c #A0BFEF", +"0#. c #99BBF0", +"a#. c #AAC7F2", +"b#. c #9DBDF3", +"c#. c #9BBDF1", +"d#. c #6F95D5", +"e#. c #668DCF", +"f#. c #779DDD", +"g#. c #86ADEA", +"h#. c #81AAE9", +"i#. c #000810", +"j#. c #061736", +"k#. c #071A38", +"l#. c #0F2447", +"m#. c #0E2647", +"n#. c #172D50", +"o#. c #1E345A", +"p#. c #1E345B", +"q#. c #21385F", +"r#. c #1F355E", +"s#. c #123572", +"t#. c #0F3474", +"u#. c #082E6F", +"v#. c #072E70", +"w#. c #4A6699", +"x#. c #9DBDEF", +"y#. c #94B8EE", +"z#. c #ABC7F2", +"A#. c #9EBEF1", +"B#. c #A4C2F1", +"C#. c #5C83C6", +"D#. c #88AFEE", +"E#. c #AFC6EB", +"F#. c #1A3D82", +"G#. c #031229", +"H#. c #041733", +"I#. c #071937", +"J#. c #0F2243", +"K#. c #112447", +"L#. c #10274A", +"M#. c #13294C", +"N#. c #132A4C", +"O#. c #1F375F", +"P#. c #1E345E", +"Q#. c #243B64", +"R#. c #293F69", +"S#. c #283F6B", +"T#. c #263F6B", +"U#. c #26416D", +"V#. c #133672", +"W#. c #0E3472", +"X#. c #0C3372", +"Y#. c #0E3271", +"Z#. c #0A306F", +"`#. c #0B3071", +" $. c #7088B1", +".$. c #A9C6F0", +"+$. c #A2C1EF", +"@$. c #A0C0EF", +"#$. c #A9C6F3", +"$$. c #9EBFF0", +"%$. c #7AA2E2", +"&$. c #85ADEC", +"*$. c #2B4C8C", +"=$. c #01060A", +"-$. c #031733", +";$. c #051936", +">$. c #081C3B", +",$. c #102444", +"'$. c #0D2043", +")$. c #12274A", +"!$. c #13294B", +"~$. c #1B3057", +"{$. c #1B3157", +"]$. c #21375E", +"^$. c #263C65", +"/$. c #253B64", +"($. c #1D3C6B", +"_$. c #133572", +":$. c #133673", +"<$. c #153776", +"[$. c #0F3372", +"}$. c #082F6F", +"|$. c #0E3371", +"1$. c #869BBF", +"2$. c #A3C4F0", +"3$. c #ABC7F0", +"4$. c #A1C0EF", +"5$. c #688FD1", +"6$. c #83ABEB", +"7$. c #3C5E9B", +"8$. c #04152F", +"9$. c #091D3C", +"0$. c #0B1E3F", +"a$. c #122548", +"b$. c #132A4D", +"c$. c #132A4B", +"d$. c #162B51", +"e$. c #1A2F55", +"f$. c #1E355B", +"g$. c #1E365C", +"h$. c #223960", +"i$. c #21375F", +"j$. c #253B66", +"k$. c #283E68", +"l$. c #163775", +"m$. c #113471", +"n$. c #103472", +"o$. c #0F3472", +"p$. c #0F3272", +"q$. c #97AFD6", +"r$. c #98BAF0", +"s$. c #86ABE7", +"t$. c #9FBDED", +"u$. c #A8C6F3", +"v$. c #9EBEED", +"w$. c #5980C1", +"x$. c #95BBF0", +"y$. c #ABC9F2", +"z$. c #5173AE", +"A$. c #05152F", +"B$. c #071836", +"C$. c #0F2246", +"D$. c #182E52", +"E$. c #1D3358", +"F$. c #233960", +"G$. c #22385F", +"H$. c #233962", +"I$. c #233961", +"J$. c #263C66", +"K$. c #253E68", +"L$. c #223C6B", +"M$. c #143672", +"N$. c #153470", +"O$. c #AAC2E5", +"P$. c #A4C4F0", +"Q$. c #A1C1EF", +"R$. c #85ACE7", +"S$. c #87ACE3", +"T$. c #ABC7F1", +"U$. c #9FC1F0", +"V$. c #BED4F3", +"W$. c #081A3B", +"X$. c #0E2145", +"Y$. c #0F2547", +"Z$. c #0D2546", +"`$. c #142A4D", +" %. c #1C3257", +".%. c #1C3258", +"+%. c #21385E", +"@%. c #2A436C", +"#%. c #1D3A69", +"$%. c #173871", +"%%. c #173973", +"&%. c #113572", +"*%. c #103573", +"=%. c #0F3171", +"-%. c #092F6E", +";%. c #082D70", +">%. c #072D6E", +",%. c #1E3B72", +"'%. c #B1CAEF", +")%. c #AAC7EF", +"!%. c #A3C2F0", +"~%. c #A5C4F0", +"{%. c #92B6EF", +"]%. c #82A9E4", +"^%. c #769BD8", +"/%. c #A8C7F3", +"(%. c #A9C6F4", +"_%. c #5E85C8", +":%. c #8BB3F0", +"<%. c #819DCD", +"[%. c #071839", +"}%. c #0C2142", +"|%. c #11264A", +"1%. c #172C51", +"2%. c #192E54", +"3%. c #1F375D", +"4%. c #253C63", +"5%. c #273E67", +"6%. c #223964", +"7%. c #263F69", +"8%. c #263E67", +"9%. c #223E6A", +"0%. c #143872", +"a%. c #143772", +"b%. c #123472", +"c%. c #123673", +"d%. c #103272", +"e%. c #0C3171", +"f%. c #062C6C", +"g%. c #082E72", +"h%. c #445F95", +"i%. c #99BCEF", +"j%. c #8BB2EC", +"k%. c #80A6E2", +"l%. c #7196D4", +"m%. c #9FBCEA", +"n%. c #A1C2F0", +"o%. c #A2C1F0", +"p%. c #A0BEED", +"q%. c #587EC1", +"r%. c #5F85C7", +"s%. c #91ADDA", +"t%. c #061834", +"u%. c #071837", +"v%. c #152B4D", +"w%. c #152C4F", +"x%. c #152A4E", +"y%. c #20375E", +"z%. c #153771", +"A%. c #113470", +"B%. c #123474", +"C%. c #0D3272", +"D%. c #062D70", +"E%. c #5D76A5", +"F%. c #8FB7F0", +"G%. c #9ABCEF", +"H%. c #89B0EA", +"I%. c #7CA3DF", +"J%. c #7499D7", +"K%. c #8BACE2", +"L%. c #ADC8F2", +"M%. c #A9C7F3", +"N%. c #A7C7F2", +"O%. c #A3BDE3", +"P%. c #051530", +"Q%. c #061A38", +"R%. c #0C1F3F", +"S%. c #12284A", +"T%. c #152A4D", +"U%. c #1A2F54", +"V%. c #223961", +"W%. c #243A62", +"X%. c #253C65", +"Y%. c #143674", +"Z%. c #0D3171", +"`%. c #0B3070", +" &. c #798EB1", +".&. c #95B9EE", +"+&. c #A3C1EF", +"@&. c #82AAE5", +"#&. c #7BA2DE", +"$&. c #7B9FDD", +"%&. c #779BD6", +"&&. c #AFCBF3", +"*&. c #9DBCEC", +"=&. c #A2C3F3", +"-&. c #ADC6EE", +";&. c #1C3E80", +">&. c #062E70", +",&. c #051731", +"'&. c #04142E", +")&. c #0C1E3D", +"!&. c #0D2040", +"~&. c #091E3E", +"{&. c #0B203F", +"]&. c #0F2345", +"^&. c #112648", +"/&. c #172D51", +"(&. c #20365E", +"_&. c #243B63", +":&. c #092F6F", +"<&. c #072D6F", +"[&. c #0D316F", +"}&. c #89A0C7", +"|&. c #97B9EF", +"1&. c #95B7ED", +"2&. c #6E94D2", +"3&. c #A8C5F2", +"4&. c #9BBAEB", +"5&. c #5C84C6", +"6&. c #6087CA", +"7&. c #30518F", +"8&. c #081B38", +"9&. c #0F2344", +"0&. c #0C2140", +"a&. c #102445", +"b&. c #132749", +"c&. c #142A4C", +"d&. c #1A3056", +"e&. c #22375E", +"f&. c #263C64", +"g&. c #27406B", +"h&. c #1E396B", +"i&. c #163772", +"j&. c #143771", +"k&. c #123471", +"l&. c #113472", +"m&. c #103371", +"n&. c #0D3170", +"o&. c #082E6E", +"p&. c #0D2E67", +"q&. c #9EB6DA", +"r&. c #96B9EE", +"s&. c #7CA3DE", +"t&. c #769DD9", +"u&. c #7399D7", +"v&. c #6C92D0", +"w&. c #9FBCE8", +"x&. c #A6C4F0", +"y&. c #A6C6F1", +"z&. c #94B5E8", +"A&. c #5D82C4", +"B&. c #5C82C5", +"C&. c #6086C8", +"D&. c #7A9FDA", +"E&. c #7299D8", +"F&. c #4868A3", +"G&. c #0B1E3E", +"H&. c #091D3D", +"I&. c #162C4F", +"J&. c #14294D", +"K&. c #172E50", +"L&. c #1B3055", +"M&. c #243A63", +"N&. c #29416A", +"O&. c #243C65", +"P&. c #2C436F", +"Q&. c #0E3270", +"R&. c #0E3171", +"S&. c #0B306F", +"T&. c #13326B", +"U&. c #ABC3E4", +"V&. c #8DB4ED", +"W&. c #99BBEF", +"X&. c #94B7EE", +"Y&. c #7AA1DC", +"Z&. c #749CD8", +"`&. c #7096D4", +" *. c #6D93D1", +".*. c #8CAEE3", +"+*. c #8FB0E7", +"@*. c #97B4E6", +"#*. c #ACC6ED", +"$*. c #7B9DD8", +"%*. c #5D85C7", +"&*. c #90B0E5", +"**. c #8AB2EE", +"=*. c #6583B9", +"-*. c #081937", +";*. c #091A38", +">*. c #071936", +",*. c #081B3A", +"'*. c #0A1F3E", +")*. c #122546", +"!*. c #112649", +"~*. c #13284A", +"{*. c #192F51", +"]*. c #1A2F56", +"^*. c #243B62", +"/*. c #293F6A", +"(*. c #284370", +"_*. c #243E6E", +":*. c #1A396B", +"<*. c #15366F", +"[*. c #133671", +"}*. c #153772", +"|*. c #133571", +"1*. c #153673", +"2*. c #133574", +"3*. c #09306F", +"4*. c #082D71", +"5*. c #254075", +"6*. c #8AB0EC", +"7*. c #90B4EA", +"8*. c #A0BFF0", +"9*. c #7299D6", +"0*. c #6B91D0", +"a*. c #799CD7", +"b*. c #B8CFF1", +"c*. c #A8C7F1", +"d*. c #A7C7F1", +"e*. c #AAC7F0", +"f*. c #AFC9F1", +"g*. c #92B3E9", +"h*. c #A7C1EA", +"i*. c #BED3F2", +"j*. c #97B5E4", +"k*. c #4A71B5", +"l*. c #6A90D2", +"m*. c #030D1D", +"n*. c #061631", +"o*. c #081936", +"p*. c #081A38", +"q*. c #0D2041", +"r*. c #122749", +"s*. c #14284B", +"t*. c #172D4F", +"u*. c #192D51", +"v*. c #162C4E", +"w*. c #1C3156", +"x*. c #1F355B", +"y*. c #273D68", +"z*. c #273E6B", +"A*. c #133670", +"B*. c #12356F", +"C*. c #0A2F6E", +"D*. c #425D8F", +"E*. c #88AEE8", +"F*. c #6F96D2", +"G*. c #698FCD", +"H*. c #6B91CF", +"I*. c #688ECB", +"J*. c #B1C9EF", +"K*. c #8FB1E7", +"L*. c #6288CA", +"M*. c #6A8FCF", +"N*. c #84A5DE", +"O*. c #5B81C4", +"P*. c #4C73B5", +"Q*. c #4369AC", +"R*. c #87A3D2", +"S*. c #052052", +"T*. c #02070C", +"U*. c #02132B", +"V*. c #142B4E", +"W*. c #182F51", +"X*. c #20365C", +"Y*. c #20385E", +"Z*. c #233A62", +"`*. c #27406A", +" =. c #243D66", +".=. c #0F3271", +"+=. c #082E6D", +"@=. c #062D6E", +"#=. c #0A2F71", +"$=. c #617AA6", +"%=. c #89B1EA", +"&=. c #81A7E3", +"*=. c #83A9E5", +"==. c #8BB0E9", +"-=. c #8DB3EC", +";=. c #779ED9", +">=. c #6A90CE", +",=. c #698ECD", +"'=. c #A3BEE8", +")=. c #B8CFF3", +"!=. c #A9C7F0", +"~=. c #ACC9F0", +"{=. c #B2CBF1", +"]=. c #8BAEE5", +"^=. c #5E84C7", +"/=. c #9AB5DE", +"(=. c #081B39", +"_=. c #0E2141", +":=. c #102446", +"<=. c #13274A", +"[=. c #152B4E", +"}=. c #172E4F", +"|=. c #182D51", +"1=. c #20375D", +"2=. c #253B63", +"3=. c #223C68", +"4=. c #1B396A", +"5=. c #183B73", +"6=. c #173872", +"7=. c #133471", +"8=. c #103470", +"9=. c #123571", +"0=. c #103471", +"a=. c #0E3170", +"b=. c #7B90B7", +"c=. c #A2C1EE", +"d=. c #84ABE5", +"e=. c #7AA0DC", +"f=. c #92B6EE", +"g=. c #85ACE6", +"h=. c #769ED9", +"i=. c #7299D5", +"j=. c #688ECC", +"k=. c #87A8DC", +"l=. c #B2CAF2", +"m=. c #81A5DF", +"n=. c #5E86C8", +"o=. c #AAC2E7", +"p=. c #051732", +"q=. c #0C1F3E", +"r=. c #14284A", +"s=. c #152C4D", +"t=. c #182D50", +"u=. c #1B3054", +"v=. c #22385E", +"w=. c #21375D", +"x=. c #2A416B", +"y=. c #233C66", +"z=. c #1A3A6C", +"A=. c #143671", +"B=. c #123370", +"C=. c #113571", +"D=. c #0F3370", +"E=. c #0C316F", +"F=. c #0C306F", +"G=. c #0A2C69", +"H=. c #6F96D1", +"I=. c #789ED9", +"J=. c #6A8FCD", +"K=. c #8AB1EB", +"L=. c #7EA4DF", +"M=. c #7299D4", +"N=. c #6C93CF", +"O=. c #6D93CF", +"P=. c #6B91CE", +"Q=. c #7499D5", +"R=. c #B6CDF3", +"S=. c #B4CCF2", +"T=. c #AFCCF2", +"U=. c #7CA1DD", +"V=. c #6288C9", +"W=. c #4269AE", +"X=. c #7DA6E3", +"Y=. c #BDD5F3", +"Z=. c #AFC8ED", +"`=. c #214284", +" -. c #000817", +".-. c #061531", +"+-. c #071A39", +"@-. c #071B3A", +"#-. c #142B4D", +"$-. c #193052", +"%-. c #192F53", +"&-. c #1E3459", +"*-. c #253A61", +"=-. c #21365E", +"--. c #283F68", +";-. c #153870", +">-. c #143670", +",-. c #153973", +"'-. c #123470", +")-. c #113370", +"!-. c #0C3270", +"~-. c #0D3371", +"{-. c #0A306E", +"]-. c #0B2C6A", +"^-. c #99B3D9", +"/-. c #88AEE7", +"(-. c #729AD4", +"_-. c #658BC8", +":-. c #7398D4", +"<-. c #6287C5", +"[-. c #84ABE6", +"}-. c #749BD6", +"|-. c #7197D4", +"1-. c #6D94D1", +"2-. c #6F95D2", +"3-. c #6E93D0", +"4-. c #6A91CD", +"5-. c #6E93D1", +"6-. c #A5C0EA", +"7-. c #7FA4DE", +"8-. c #6C90D0", +"9-. c #6086C9", +"0-. c #BBD4F3", +"a-. c #365794", +"b-. c #071A37", +"c-. c #091A3B", +"d-. c #0D1F3F", +"e-. c #0B1F3E", +"f-. c #112547", +"g-. c #112849", +"h-. c #1A3153", +"i-. c #172C4E", +"j-. c #1D3258", +"k-. c #1E3359", +"l-. c #243A61", +"m-. c #15376F", +"n-. c #14356E", +"o-. c #143770", +"p-. c #0F326F", +"q-. c #0B316F", +"r-. c #0D3070", +"s-. c #0B2E6E", +"t-. c #13316D", +"u-. c #7AA1DB", +"v-. c #5F84C2", +"w-. c #6A8ECC", +"x-. c #5D82C0", +"y-. c #6D94D2", +"z-. c #84A8E2", +"A-. c #9ABAEE", +"B-. c #739AD7", +"C-. c #92B2E2", +"D-. c #B7CEF2", +"E-. c #B5CDF1", +"F-. c #769CDA", +"G-. c #B5CFF4", +"H-. c #506FAA", +"I-. c #071835", +"J-. c #081939", +"K-. c #081A3A", +"L-. c #122647", +"M-. c #15294B", +"N-. c #13284B", +"O-. c #152A4C", +"P-. c #192E51", +"Q-. c #192E52", +"R-. c #23395F", +"S-. c #22395F", +"T-. c #13366E", +"U-. c #16356F", +"V-. c #153670", +"W-. c #103370", +"X-. c #072D6C", +"Y-. c #254074", +"Z-. c #97B9EC", +"`-. c #759BD7", +" ;. c #6289C6", +".;. c #5B81BF", +"+;. c #668BC9", +"@;. c #5B7FBE", +"#;. c #6C92CE", +"$;. c #749BD7", +"%;. c #6B93D0", +"&;. c #6A91CE", +"*;. c #678DCB", +"=;. c #6A90CD", +"-;. c #6D93D0", +";;. c #6F94D1", +">;. c #B7CEF1", +",;. c #B9CFF2", +"';. c #6A91D3", +");. c #5B83C5", +"!;. c #6482B8", +"~;. c #000913", +"{;. c #010C1A", +"];. c #071B39", +"^;. c #0F2242", +"/;. c #0E2342", +"(;. c #172C50", +"_;. c #182C50", +":;. c #1F345B", +"<;. c #213761", +"[;. c #233B64", +"};. c #233C67", +"|;. c #28406E", +"1;. c #153671", +"2;. c #113371", +"3;. c #062C6D", +"4;. c #062D6D", +"5;. c #385283", +"6;. c #93B6EB", +"7;. c #6E94D0", +"8;. c #6086C4", +"9;. c #5A80BE", +"0;. c #5F85C3", +"a;. c #587DBC", +"b;. c #678CCA", +"c;. c #638AC7", +"d;. c #7399D6", +"e;. c #658BC9", +"f;. c #658CCA", +"g;. c #A6C1EC", +"h;. c #B7CEF3", +"i;. c #B6CDF2", +"j;. c #4B71B5", +"k;. c #5078B9", +"l;. c #7692C3", +"m;. c #061732", +"n;. c #0D2140", +"o;. c #112546", +"p;. c #0F2749", +"q;. c #162C4D", +"r;. c #1A2E53", +"s;. c #1C3055", +"t;. c #203459", +"u;. c #1D3259", +"v;. c #1D3965", +"w;. c #213867", +"x;. c #13356F", +"y;. c #13346E", +"z;. c #12346F", +"A;. c #072D6D", +"B;. c #446197", +"C;. c #85A9E1", +"D;. c #6389C7", +"E;. c #5C83C0", +"F;. c #557BB9", +"G;. c #5D83C1", +"H;. c #5479B8", +"I;. c #6589C7", +"J;. c #6389C6", +"K;. c #779DD8", +"L;. c #6F95D3", +"M;. c #88A9DE", +"N;. c #BFD3F2", +"O;. c #ADCBF2", +"P;. c #B1CDF1", +"Q;. c #6990D2", +"R;. c #A9C8F1", +"S;. c #B1CDF3", +"T;. c #84A0CF", +"U;. c #091B39", +"V;. c #102443", +"W;. c #112545", +"X;. c #162A4B", +"Y;. c #172B4E", +"Z;. c #1B2E51", +"`;. c #1E335B", +" >. c #21375C", +".>. c #233A61", +"+>. c #253B62", +"@>. c #2A416A", +"#>. c #253B67", +"$>. c #263D6A", +"%>. c #16356E", +"&>. c #14376F", +"*>. c #15356F", +"=>. c #133570", +"->. c #10326F", +";>. c #0C2F6F", +">>. c #09306E", +",>. c #082A68", +"'>. c #5F7FB4", +")>. c #5379B7", +"!>. c #4F74B2", +"~>. c #5278B6", +"{>. c #4268A6", +"]>. c #799BD4", +"^>. c #7399D4", +"/>. c #A3BEE7", +"(>. c #668CC9", +"_>. c #668CCA", +":>. c #BAD0F1", +"<>. c #BAD0F2", +"[>. c #4E74B7", +"}>. c #688ECE", +"|>. c #7FA6E6", +"1>. c #ACCAF2", +"2>. c #93AFDB", +"3>. c #082A67", +"4>. c #061733", +"5>. c #132747", +"6>. c #102344", +"7>. c #162A4D", +"8>. c #172C4F", +"9>. c #1A3052", +"0>. c #182E50", +"a>. c #1B2F54", +"b>. c #223A60", +"c>. c #273D66", +"d>. c #13346D", +"e>. c #163770", +"f>. c #0F316F", +"g>. c #0F336F", +"h>. c #0E326E", +"i>. c #0C3070", +"j>. c #072E6D", +"k>. c #082A65", +"l>. c #6F90C7", +"m>. c #7096D1", +"n>. c #597FBD", +"o>. c #4B71AF", +"p>. c #496FAE", +"q>. c #4268A7", +"r>. c #3B619F", +"s>. c #4066A5", +"t>. c #698DC9", +"u>. c #C6D9F2", +"v>. c #A3BDE6", +"w>. c #658CC9", +"x>. c #A2BEE9", +"y>. c #AECCF2", +"z>. c #4068AA", +"A>. c #5379BC", +"B>. c #7CA4E4", +"C>. c #9DBAE4", +"D>. c #11306D", +"E>. c #051937", +"F>. c #091C3A", +"G>. c #0E2143", +"H>. c #132748", +"I>. c #1B2F52", +"J>. c #20355A", +"K>. c #1C3158", +"L>. c #1F355A", +"M>. c #273D64", +"N>. c #20355D", +"O>. c #294069", +"P>. c #253F6B", +"Q>. c #153570", +"R>. c #123473", +"S>. c #10336F", +"T>. c #0F326E", +"U>. c #082F6E", +"V>. c #072E6E", +"W>. c #092A64", +"X>. c #7296D0", +"Y>. c #6990CB", +"Z>. c #567CBB", +"`>. c #4D73B2", +" ,. c #476DAC", +".,. c #335999", +"+,. c #759CD6", +"@,. c #6B92CE", +"#,. c #678DCA", +"$,. c #759BD8", +"%,. c #85A9E0", +"&,. c #A2C1ED", +"*,. c #658CCC", +"=,. c #5A80C3", +"-,. c #3E66A9", +";,. c #6890D0", +">,. c #A5C6F2", +",,. c #A1BFEB", +"',. c #1D3B73", +"),. c #031127", +"!,. c #041630", +"~,. c #041732", +"{,. c #091B3B", +"],. c #0B1E3D", +"^,. c #0E2242", +"/,. c #0F2647", +"(,. c #12294A", +"_,. c #20365B", +":,. c #2B426C", +"<,. c #283F6A", +"[,. c #233964", +"},. c #1D386A", +"|,. c #193767", +"1,. c #173670", +"2,. c #173671", +"3,. c #163671", +"4,. c #123570", +"5,. c #0E326F", +"6,. c #0B2F6E", +"7,. c #0A2E6E", +"8,. c #072C6F", +"9,. c #102F68", +"0,. c #749AD5", +"a,. c #648BC7", +"b,. c #466CAA", +"c,. c #345999", +"d,. c #294E8F", +"e,. c #5C82C0", +"f,. c #6990CD", +"g,. c #7097D4", +"h,. c #AFC8EE", +"i,. c #BCD2F2", +"j,. c #92B3E7", +"k,. c #6088C8", +"l,. c #335087", +"m,. c #041833", +"n,. c #0D2242", +"o,. c #142B4C", +"p,. c #263C63", +"q,. c #284069", +"r,. c #223B66", +"s,. c #273F6D", +"t,. c #143570", +"u,. c #10336E", +"v,. c #11346E", +"w,. c #0D2F6F", +"x,. c #062C6B", +"y,. c #213D73", +"z,. c #779CD9", +"A,. c #5B81BE", +"B,. c #5076B4", +"C,. c #486EAD", +"D,. c #446AA9", +"E,. c #3A609F", +"F,. c #2D5493", +"G,. c #254B8A", +"H,. c #4B70AE", +"I,. c #648AC9", +"J,. c #799ED9", +"K,. c #8DADE0", +"L,. c #B9CFF1", +"M,. c #88ABE2", +"N,. c #678DCE", +"O,. c #456399", +"P,. c #051834", +"Q,. c #051636", +"R,. c #0A1D3C", +"S,. c #0D203F", +"T,. c #15294C", +"U,. c #182C4F", +"V,. c #233A60", +"W,. c #20385F", +"X,. c #283E67", +"Y,. c #11346F", +"Z,. c #0E316D", +"`,. c #0A2D6D", +" '. c #436298", +".'. c #4D73B1", +"+'. c #3F65A3", +"@'. c #3B61A0", +"#'. c #355B9A", +"$'. c #29508F", +"%'. c #264D8C", +"&'. c #4064A2", +"*'. c #6389C8", +"='. c #678ECC", +"-'. c #7398D6", +";'. c #789DD8", +">'. c #83A8E2", +",'. c #385FA5", +"''. c #5674A9", +")'. c #14294C", +"!'. c #162B4C", +"~'. c #1E3257", +"{'. c #1B3056", +"]'. c #172E59", +"^'. c #19386A", +"/'. c #15346E", +"('. c #13336D", +"_'. c #14366E", +":'. c #0F316E", +"<'. c #0E316F", +"['. c #0B2F6F", +"}'. c #092E6E", +"|'. c #062D6C", +"1'. c #072F6E", +"2'. c #052B6A", +"3'. c #052C6C", +"4'. c #062A68", +"5'. c #5272A9", +"6'. c #698FCB", +"7'. c #547AB9", +"8'. c #3D63A2", +"9'. c #385E9D", +"0'. c #2B5292", +"a'. c #244A8B", +"b'. c #335796", +"c'. c #658BCA", +"d'. c #648BC9", +"e'. c #648BC8", +"f'. c #688FCB", +"g'. c #7097D3", +"h'. c #82A7E3", +"i'. c #567CBF", +"j'. c #5A82C4", +"k'. c #466CAF", +"l'. c #4A70B2", +"m'. c #77A0DF", +"n'. c #6C88B9", +"o'. c #091A39", +"p'. c #0A1B3B", +"q'. c #0E2343", +"r'. c #192D4F", +"s'. c #14294B", +"t'. c #192D50", +"u'. c #172E51", +"v'. c #162A4E", +"w'. c #182C51", +"x'. c #1E3358", +"y'. c #1A2F57", +"z'. c #23385F", +"A'. c #2B416A", +"B'. c #14356D", +"C'. c #12346C", +"D'. c #0C306E", +"E'. c #0B2F6D", +"F'. c #052C6B", +"G'. c #062D6B", +"H'. c #072C6D", +"I'. c #5376AE", +"J'. c #5D84C0", +"K'. c #5177B5", +"L'. c #335998", +"M'. c #305695", +"N'. c #2E5495", +"O'. c #254B8B", +"P'. c #2E5493", +"Q'. c #557AB8", +"R'. c #668CCB", +"S'. c #6288C6", +"T'. c #7096D3", +"U'. c #94B2E0", +"V'. c #5780C2", +"W'. c #5B84C6", +"X'. c #4167AA", +"Y'. c #4168AA", +"Z'. c #7795CA", +"`'. c #000C1D", +" ). c #03142D", +".). c #081935", +"+). c #081A39", +"@). c #0A203F", +"#). c #0C2141", +"$). c #0D2241", +"%). c #102544", +"&). c #14294A", +"*). c #1A2F52", +"=). c #1D3055", +"-). c #1D3257", +";). c #1F3459", +">). c #253E67", +",). c #14346E", +"'). c #13346F", +")). c #10336D", +"!). c #0F326D", +"~). c #0E306D", +"{). c #072A66", +"]). c #5B80BA", +"^). c #557CB8", +"/). c #4369A7", +"(). c #395F9E", +"_). c #325897", +":). c #2C5292", +"<). c #2A5091", +"[). c #224889", +"}). c #264E8C", +"|). c #678DCC", +"1). c #759BD5", +"2). c #5981C4", +"3). c #91B5EE", +"4). c #81A1D6", +"5). c #062254", +"6). c #0B1D3D", +"7). c #0C203F", +"8). c #0F2343", +"9). c #162A4C", +"0). c #283E65", +"a). c #273E66", +"b). c #15366D", +"c). c #13336C", +"d). c #15346D", +"e). c #11336F", +"f). c #0F3270", +"g). c #082D6C", +"h). c #0E2E68", +"i). c #658AC6", +"j). c #5177B4", +"k). c #3F65A4", +"l). c #2F5594", +"m). c #284E8E", +"n). c #2F5494", +"o). c #284F8D", +"p). c #395E9C", +"q). c #7399D5", +"r). c #749AD6", +"s). c #6187C5", +"t). c #668DCB", +"u). c #A3BFE9", +"v). c #6289C9", +"w). c #5F85C6", +"x). c #91B5ED", +"y). c #A6C3F1", +"z). c #95B2E2", +"A). c #102C61", +"B). c #051833", +"C). c #081A36", +"D). c #071737", +"E). c #122849", +"F). c #172A4D", +"G). c #22365C", +"H). c #1D3461", +"I). c #1E3564", +"J). c #223867", +"K). c #17366E", +"L). c #13356D", +"M). c #12336E", +"N). c #133771", +"O). c #11356F", +"P). c #0A2F6D", +"Q). c #0A2E6D", +"R). c #082F6D", +"S). c #072F6D", +"T). c #062C6E", +"U). c #678DC9", +"V). c #4C71AF", +"W). c #3E64A3", +"X). c #2D5392", +"Y). c #2B5191", +"Z). c #295091", +"`). c #3A5D9B", +" !. c #4E72AF", +".!. c #234A8A", +"+!. c #274C8C", +"@!. c #5E83C2", +"#!. c #6188C6", +"$!. c #5E84C2", +"%!. c #5D85C2", +"&!. c #6187C6", +"*!. c #7297D4", +"=!. c #88ACE3", +"-!. c #638AC8", +";!. c #BFD4F2", +">!. c #AEC8F0", +",!. c #5D86C7", +"'!. c #5E87C8", +")!. c #89AEE9", +"!!. c #90B2E8", +"~!. c #1A3569", +"{!. c #071736", +"]!. c #081837", +"^!. c #0C1E3F", +"/!. c #0D2141", +"(!. c #1F3358", +"_!. c #18335F", +":!. c #14356F", +"~. c #082D6E", +",~. c #052863", +"'~. c #5171A8", +")~. c #5276B4", +"!~. c #4166A5", +"~~. c #3C60A0", +"{~. c #294F8E", +"]~. c #284F8E", +"^~. c #234A8B", +"/~. c #28508E", +"(~. c #2D5393", +"_~. c #294F90", +":~. c #294E8C", +"<~. c #567CBA", +"[~. c #7397D1", +"}~. c #6B91CB", +"|~. c #85ABE5", +"1~. c #7298D4", +"2~. c #5F85C4", +"3~. c #5E85C2", +"4~. c #98B6E5", +"5~. c #90B0E6", +"6~. c #7EA2DD", +"7~. c #6C92D2", +"8~. c #355DA1", +"9~. c #5075B6", +"0~. c #7294D0", +"a~. c #46649B", +"b~. c #031126", +"c~. c #071838", +"d~. c #0E2142", +"e~. c #15284B", +"f~. c #1A2E52", +"g~. c #192D52", +"h~. c #263D63", +"i~. c #12326D", +"j~. c #13356E", +"k~. c #13336E", +"l~. c #05265D", +"m~. c #5F82BD", +"n~. c #496FAD", +"o~. c #2C5291", +"p~. c #2A518F", +"q~. c #274E8D", +"r~. c #264D8E", +"s~. c #254B8C", +"t~. c #1E4585", +"u~. c #4A6FAD", +"v~. c #799CD5", +"w~. c #7499D6", +"x~. c #769DD8", +"y~. c #5D84C2", +"z~. c #7CA1DC", +"A~. c #B3CEF2", +"B~. c #8BAFE7", +"C~. c #AEC8F2", +"D~. c #8BACE3", +"E~. c #5D84C4", +"F~. c #365DA1", +"G~. c #335C9F", +"H~. c #5777B2", +"I~. c #061934", +"J~. c #081938", +"K~. c #112446", +"L~. c #1A2F53", +"M~. c #1C3159", +"N~. c #253C64", +"O~. c #173364", +"P~. c #14336D", +"Q~. c #12326C", +"R~. c #12336C", +"S~. c #10326E", +"T~. c #0D306E", +"U~. c #0C2E6E", +"V~. c #0A2A60", +"W~. c #6186C1", +"X~. c #4167A5", +"Y~. c #264C8D", +"Z~. c #254D8C", +"`~. c #204788", +" {. c #365B99", +".{. c #6C94D0", +"+{. c #5E85C3", +"@{. c #638BC8", +"#{. c #5C84C1", +"${. c #ACC7EE", +"%{. c #7CA2E0", +"&{. c #8EB1EA", +"*{. c #6D94D3", +"={. c #86ABE5", +"-{. c #7795C9", +";{. c #010F29", +">{. c #0A1D3B", +",{. c #15294A", +"'{. c #172B50", +"){. c #1D3158", +"!{. c #1A3464", +"~{. c #12356D", +"{{. c #15336E", +"]{. c #10326C", +"^{. c #11326F", +"/{. c #10316E", +"({. c #082D6D", +"_{. c #052A67", +":{. c #062E6C", +"<{. c #0E2E66", +"[{. c #5C83BE", +"}{. c #3D62A1", +"|{. c #345A99", +"1{. c #2D5492", +"2{. c #2C5392", +"3{. c #294F8F", +"4{. c #244B8A", +"5{. c #22498A", +"6{. c #284D8D", +"7{. c #4C72AF", +"8{. c #5980BD", +"9{. c #6187C4", +"0{. c #5A80BF", +"a{. c #92B3E3", +"b{. c #749AD8", +"c{. c #658BCC", +"d{. c #3A62A6", +"e{. c #81A6E2", +"f{. c #7A9AD1", +"g{. c #020915", +"h{. c #122748", +"i{. c #1B2F51", +"j{. c #192F52", +"k{. c #253B61", +"l{. c #14346C", +"m{. c #0D316D", +"n{. c #0C306C", +"o{. c #0C2F6E", +"p{. c #092D6B", +"q{. c #0B2E6D", +"r{. c #092D6D", +"s{. c #072C6C", +"t{. c #052B69", +"u{. c #062B6D", +"v{. c #395F9D", +"w{. c #4368A7", +"x{. c #315796", +"y{. c #2A508F", +"z{. c #284E8D", +"A{. c #2F5695", +"B{. c #2E5594", +"C{. c #3A5E9C", +"D{. c #587EBC", +"E{. c #7EA1D9", +"F{. c #6E94D3", +"G{. c #0E2A5E", +"H{. c #000F24", +"I{. c #051532", +"J{. c #071935", +"K{. c #0A1C3A", +"L{. c #172A4C", +"M{. c #182B4E", +"N{. c #1A2E50", +"O{. c #172F51", +"P{. c #1F3965", +"Q{. c #052D6C", +"R{. c #254681", +"S{. c #5277B4", +"T{. c #3D63A1", +"U{. c #274D8C", +"V{. c #264C8C", +"W{. c #2C5493", +"X{. c #214788", +"Y{. c #234887", +"Z{. c #4E74B2", +"`{. c #5981BE", +" ]. c #6A8FCB", +".]. c #B5CEEE", +"+]. c #6F95D4", +"@]. c #6087C7", +"#]. c #547BBC", +"$]. c #3B62A6", +"%]. c #1A3669", +"&]. c #031024", +"*]. c #04132C", +"=]. c #15284A", +"-]. c #132647", +";]. c #1C2F52", +">]. c #172B4F", +",]. c #1C3254", +"']. c #2B426D", +")]. c #12346D", +"!]. c #0F316D", +"~]. c #0C2F6B", +"{]. c #092E6C", +"]]. c #072C6B", +"^]. c #062A6A", +"/]. c #062B6A", +"(]. c #042C6B", +"_]. c #052A68", +":]. c #31538D", +"<]. c #3F64A2", +"[]. c #2E5492", +"}]. c #2C5391", +"|]. c #274F8D", +"1]. c #1F4586", +"2]. c #1F4687", +"3]. c #4468A6", +"4]. c #5279B7", +"5]. c #A5C1E8", +"6]. c #557CBD", +"7]. c #5178B9", +"8]. c #5B85C6", +"9]. c #2C487C", +"0]. c #0B1C3A", +"a]. c #1B3053", +"b]. c #192E55", +"c]. c #2A4069", +"d]. c #0F326C", +"e]. c #082D6B", +"f]. c #092E6B", +"g]. c #072B6C", +"h]. c #395D97", +"i]. c #446AA7", +"j]. c #3E63A1", +"k]. c #345998", +"l]. c #2E5494", +"m]. c #2B5291", +"n]. c #244C8A", +"o]. c #234989", +"p]. c #1D4485", +"q]. c #305492", +"r]. c #537AB7", +"s]. c #5076B5", +"t]. c #5279B8", +"u]. c #557CBA", +"v]. c #5C82C1", +"w]. c #82A4DA", +"x]. c #597FC2", +"y]. c #5A84C5", +"z]. c #4369AD", +"A]. c #486FB3", +"B]. c #547ABC", +"C]. c #405F97", +"D]. c #051635", +"E]. c #091A37", +"F]. c #102343", +"G]. c #192C4F", +"H]. c #1A3054", +"I]. c #193363", +"J]. c #153261", +"K]. c #14336C", +"L]. c #11326D", +"M]. c #0E316C", +"N]. c #0D306C", +"O]. c #072D6B", +"P]. c #072B67", +"Q]. c #3C619C", +"R]. c #4A70AD", +"S]. c #4A70AE", +"T]. c #4066A4", +"U]. c #2F5595", +"V]. c #264C8B", +"W]. c #1F4485", +"X]. c #4F76B4", +"Y]. c #547BB9", +"Z]. c #577DBC", +"`]. c #557BBA", +" ^. c #547CB9", +".^. c #597FBE", +"+^. c #678ECA", +"@^. c #ABC7EF", +"#^. c #5E84C6", +"$^. c #5D83C4", +"%^. c #648AC8", +"&^. c #94B5E9", +"*^. c #557FBF", +"=^. c #5F88C9", +"-^. c #7599D5", +";^. c #779EDE", +">^. c #5273AD", +",^. c #04122A", +"'^. c #081835", +")^. c #061633", +"!^. c #0A1B3A", +"~^. c #182D4F", +"{^. c #1E3560", +"]^. c #1B3765", +"^^. c #13346B", +"/^. c #11336B", +"(^. c #11356E", +"_^. c #0B2F6B", +":^. c #0C2F6C", +"<^. c #0A2C6C", +"[^. c #092C6A", +"}^. c #4066A2", +"|^. c #3D609F", +"1^. c #476CAA", +"2^. c #4C72AE", +"3^. c #496FAB", +"4^. c #244A8A", +"5^. c #224888", +"6^. c #2A5190", +"7^. c #355998", +"8^. c #5179B7", +"9^. c #547BB8", +"0^. c #5278B7", +"a^. c #557CB9", +"b^. c #9CBBE8", +"c^. c #AAC6EF", +"d^. c #638ACA", +"e^. c #8BABE1", +"f^. c #84A6DF", +"g^. c #557ABC", +"h^. c #95B2E4", +"i^. c #5F85C5", +"j^. c #82A6E0", +"k^. c #365CA1", +"l^. c #7699D3", +"m^. c #5E81BF", +"n^. c #172B4D", +"o^. c #1C3256", +"p^. c #1C3662", +"q^. c #173565", +"r^. c #183667", +"s^. c #14336B", +"t^. c #11326A", +"u^. c #0F316B", +"v^. c #11346D", +"w^. c #0E306E", +"x^. c #0A2E6B", +"y^. c #082B6B", +"z^. c #3F66A3", +"A^. c #3C619F", +"B^. c #375C9B", +"C^. c #214987", +"D^. c #1D4584", +"E^. c #204686", +"F^. c #486DAC", +"G^. c #567DBA", +"H^. c #5379B8", +"I^. c #537BB8", +"J^. c #5C82BF", +"K^. c #6085C3", +"L^. c #84A5DC", +"M^. c #A2BFEC", +"N^. c #6187C8", +"O^. c #6489C8", +"P^. c #0A1B37", +"Q^. c #041834", +"R^. c #1D3155", +"S^. c #11316C", +"T^. c #11326C", +"U^. c #0E316B", +"V^. c #082E6C", +"W^. c #092C6B", +"X^. c #082C6C", +"Y^. c #4166A4", +"Z^. c #3B5F9D", +"`^. c #325896", +" /. c #1F4685", +"./. c #224988", +"+/. c #4F75B3", +"@/. c #5178B6", +"#/. c #537AB8", +"$/. c #7498D2", +"%/. c #B3CEF1", +"&/. c #ACCAF0", +"*/. c #97B6E7", +"=/. c #5E84C4", +"-/. c #91B3E7", +";/. c #90B2E5", +">/. c #0C2555", +",/. c #051630", +"'/. c #061839", +")/. c #162D50", +"!/. c #1B3560", +"~/. c #12316A", +"{/. c #10336B", +"]/. c #11316B", +"^/. c #11336D", +"//. c #0F316C", +"(/. c #0B2E6B", +"_/. c #082C6A", +":/. c #294983", +"(. c #84ABE7", +",(. c #405D92", +"'(. c #041835", +")(. c #14274A", +"!(. c #163368", +"~(. c #13326A", +"{(. c #11346C", +"](. c #0F2F69", +"^(. c #10316B", +"/(. c #0D2F6D", +"((. c #032A68", +"_(. c #032868", +":(. c #062863", +"<(. c #486CA9", +"[(. c #3D62A0", +"}(. c #385E9C", +"|(. c #325796", +"1(. c #325595", +"2(. c #325695", +"3(. c #204685", +"4(. c #123779", +"5(. c #385D9C", +"6(. c #4E74B3", +"7(. c #5A7EBD", +"8(. c #A4C1EC", +"9(. c #A8C5EF", +"0(. c #A8C7F0", +"a(. c #A9C6EF", +"b(. c #567CBC", +"c(. c #6185C3", +"d(. c #31599D", +"e(. c #2E559A", +"f(. c #2B5297", +"g(. c #3F68AA", +"h(. c #4F75B8", +"i(. c #83ABE8", +"j(. c #5171AA", +"k(. c #172B4C", +"l(. c #132849", +"m(. c #162D51", +"n(. c #1B3155", +"o(. c #172C52", +"p(. c #1D3562", +"q(. c #1B3563", +"r(. c #1B3764", +"s(. c #10306A", +"t(. c #11336C", +"u(. c #0D2F6A", +"v(. c #0A2D6B", +"w(. c #082B6A", +"x(. c #042C6A", +"y(. c #0B2C66", +"z(. c #476DA9", +"A(. c #375D9B", +"B(. c #2D5290", +"C(. c #2E5291", +"D(. c #2A4F8E", +"E(. c #234786", +"F(. c #4A70AF", +"G(. c #ABC8EF", +"H(. c #A7C4F0", +"I(. c #A9C5F0", +"J(. c #5177B9", +"K(. c #8CA8D9", +"L(. c #4F74B5", +"M(. c #274F93", +"N(. c #2A5196", +"O(. c #295196", +"P(. c #6083BF", +"Q(. c #031128", +"R(. c #192D4E", +"S(. c #21355A", +"T(. c #173160", +"U(. c #103069", +"V(. c #10326A", +"W(. c #11326B", +"X(. c #0D306A", +"Y(. c #0C2F6A", +"Z(. c #0C316C", +"`(. c #0A2E6A", +" _. c #0B2F6C", +"._. c #486EAA", +"+_. c #3D61A0", +"@_. c #2D5291", +"#_. c #2E5392", +"$_. c #234988", +"%_. c #2C518F", +"&_. c #395E9D", +"*_. c #466CAB", +"=_. c #789AD3", +"-_. c #A6C3EF", +";_. c #6289C8", +">_. c #557CBB", +",_. c #5177B8", +"'_. c #6B8AC4", +")_. c #90AEDE", +"!_. c #4970B1", +"~_. c #476EB0", +"{_. c #30569A", +"]_. c #244B90", +"^_. c #274F94", +"/_. c #3D63A8", +"(_. c #3E67A9", +"__. c #7B9BD2", +":_. c #020C1A", +"<_. c #061936", +"[_. c #061737", +"}_. c #182C4D", +"|_. c #152749", +"1_. c #1C3053", +"2_. c #1D3154", +"3_. c #1B2E53", +"4_. c #193466", +"5_. c #123169", +"6_. c #0F316A", +"7_. c #0F326A", +"8_. c #10306B", +"9_. c #0C2E6B", +"0_. c #0B2D6A", +"a_. c #0B2E6A", +"b_. c #082F6C", +"c_. c #092F6C", +"d_. c #042B68", +"e_. c #446AA8", +"f_. c #385D9B", +"g_. c #6889C0", +"h_. c #2F5492", +"i_. c #244988", +"j_. c #214685", +"k_. c #254B89", +"l_. c #274C8B", +"m_. c #4167A6", +"n_. c #4B71B0", +"o_. c #4C72B1", +"p_. c #5E83BF", +"q_. c #ACC7EF", +"r_. c #A2C0EE", +"s_. c #5D85C4", +"t_. c #547BBB", +"u_. c #486FB1", +"v_. c #254D91", +"w_. c #284F94", +"x_. c #295195", +"y_. c #3C64A8", +"z_. c #6288C8", +"A_. c #5177BB", +"B_. c #799FDE", +"C_. c #99B4E1", +"D_. c #0B2350", +"E_. c #132649", +"F_. c #16294A", +"G_. c #1C3154", +"H_. c #1B2F53", +"I_. c #1D3054", +"J_. c #153263", +"K_. c #183468", +"L_. c #173467", +"M_. c #12326A", +"N_. c #0E2E69", +"O_. c #0D2F6B", +"P_. c #092D69", +"Q_. c #092F6B", +"R_. c #2B4C86", +"S_. c #456BA8", +"T_. c #3F65A2", +"U_. c #7898CE", +"V_. c #2A4E8D", +"W_. c #5A7FBD", +"X_. c #9FBCE9", +"Y_. c #A7C5F0", +"Z_. c #A6C3F0", +"`_. c #A6C5EF", +" :. c #A7C7F0", +".:. c #9EBCEB", +"+:. c #4F76B7", +"@:. c #4D72B4", +"#:. c #446DAF", +"$:. c #22498E", +"%:. c #274E93", +"&:. c #295095", +"*:. c #2C5498", +"=:. c #5679B7", +"-:. c #7493CA", +";:. c #3B63A6", +">:. c #8AAEE6", +",:. c #122D60", +"':. c #0E2241", +"):. c #162B4D", +"!:. c #1D3255", +"~:. c #1C355D", +"{:. c #163267", +"]:. c #10316A", +"^:. c #102F6A", +"/:. c #0E3169", +"(:. c #0E306A", +"_:. c #0F306B", +"::. c #082C6B", +"<:. c #345792", +"[:. c #446AA6", +"}:. c #4066A3", +"|:. c #3E62A1", +"1:. c #294F8D", +"2:. c #355A99", +"3:. c #8BA9DA", +"4:. c #A5C2F0", +"5:. c #A5C5EF", +"6:. c #AAC6F1", +"7:. c #9CBBEB", +"8:. c #4B72B3", +"9:. c #2B5196", +"0:. c #224A8F", +"a:. c #2A5095", +"b:. c #2D5398", +"c:. c #91B1E4", +"d:. c #051430", +"e:. c #091A36", +"f:. c #1F3356", +"g:. c #1C3054", +"h:. c #112F66", +"i:. c #0F306A", +"j:. c #103169", +"k:. c #0E316A", +"l:. c #0B2E69", +"m:. c #062B69", +"n:. c #3A5F9A", +"o:. c #4067A2", +"p:. c #092E70", +"q:. c #5277B6", +"r:. c #7D9ED4", +"s:. c #A2C0F0", +"t:. c #A2C3F0", +"u:. c #9AB9E9", +"v:. c #567CBE", +"w:. c #4D74B5", +"x:. c #4A71B2", +"y:. c #476EAF", +"z:. c #21488E", +"A:. c #254C91", +"B:. c #4269AB", +"C:. c #86A8E0", +"D:. c #84ABE8", +"E:. c #375489", +"F:. c #020B18", +"G:. c #091938", +"H:. c #091B38", +"I:. c #0D2445", +"J:. c #223659", +"K:. c #1B3154", +"L:. c #20355C", +"M:. c #103168", +"N:. c #113069", +"O:. c #0E2F69", +"P:. c #0F336D", +"Q:. c #0D306B", +"R:. c #082D6A", +"S:. c #082B67", +"T:. c #3E62A0", +"U:. c #3C639F", +"V:. c #39609D", +"W:. c #315795", +"X:. c #153A7B", +"Y:. c #3A5F9E", +"Z:. c #4E73B2", +"`:. c #6A8ECB", +" <. c #94B4E6", +".<. c #456CAE", +"+<. c #4F74B6", +"@<. c #1F468C", +"#<. c #21498E", +"$<. c #254D92", +"%<. c #2C5497", +"&<. c #345C9F", +"*<. c #4F75B5", +"=<. c #4970B0", +"-<. c #4E75B5", +";<. c #6083C1", +"><. c #82A8E5", +",<. c #4969A0", +"'<. c #0B1C39", +")<. c #0D2344", +"!<. c #1E3255", +"~<. c #113168", +"{<. c #0B2F6A", +"]<. c #092C68", +"^<. c #092D6A", +"/<. c #103068", +"(<. c #3E64A2", +"_<. c #3C629F", +":<. c #3A609D", +"<<. c #244A88", +"[<. c #456BAA", +"}<. c #597DBC", +"|<. c #90B1E6", +"1<. c #5076B7", +"2<. c #4A71B3", +"3<. c #466DAE", +"4<. c #436AAB", +"5<. c #7AA2E0", +"6<. c #557BBC", +"7<. c #20478C", +"8<. c #20488D", +"9<. c #295096", +"0<. c #2F579A", +"a<. c #4469AA", +"b<. c #577AB8", +"c<. c #5E80BC", +"d<. c #000F26", +"e<. c #000F25", +"f<. c #102347", +"g<. c #132B4D", +"h<. c #113068", +"i<. c #103167", +"j<. c #0F2F68", +"k<. c #102F69", +"l<. c #0D3068", +"m<. c #0F2F6A", +"n<. c #0C2F69", +"o<. c #0B2F69", +"p<. c #0A2D6A", +"q<. c #062969", +"r<. c #456BA9", +"s<. c #39609C", +"t<. c #2F5593", +"u<. c #1F4585", +"v<. c #4D72B1", +"w<. c #4F74B3", +"x<. c #94B3E4", +"y<. c #9CBCF0", +"z<. c #88AAE2", +"A<. c #5278B9", +"B<. c #466DAF", +"C<. c #446BAC", +"D<. c #486FB0", +"E<. c #456BAC", +"F<. c #284E92", +"G<. c #1F478C", +"H<. c #1E468B", +"I<. c #264D92", +"J<. c #345CA0", +"K<. c #355CA0", +"L<. c #7294CE", +"M<. c #051A41", +"N<. c #00030B", +"O<. c #010A14", +"P<. c #05152E", +"Q<. c #1B2E52", +"R<. c #12336A", +"S<. c #0F3069", +"T<. c #0F3169", +"U<. c #102F6B", +"V<. c #0C2F68", +"W<. c #082C69", +"X<. c #082C68", +"Y<. c #072B68", +"Z<. c #032964", +"`<. c #032763", +" [. c #294A81", +".[. c #3A619D", +"+[. c #244A89", +"@[. c #6489C6", +"#[. c #7B9FDC", +"$[. c #5E84C3", +"%[. c #87AAE0", +"&[. c #9ABBF0", +"*[. c #87AAE4", +"=[. c #446CAE", +"-[. c #31589B", +";[. c #1B4388", +">[. c #2B5296", +",[. c #244C91", +"'[. c #2A5296", +")[. c #2F589B", +"![. c #3960A4", +"~[. c #769CD9", +"{[. c #071734", +"][. c #071738", +"^[. c #07193A", +"/[. c #0F2141", +"([. c #19305E", +"_[. c #0F3067", +":[. c #0E3068", +"<[. c #0A2D67", +"[[. c #0E326B", +"}[. c #0B2D69", +"|[. c #375991", +"1[. c #446BA8", +"2[. c #305593", +"3[. c #5579B7", +"4[. c #7296D2", +"5[. c #7EA2DC", +"6[. c #9DBDF1", +"7[. c #98BAEF", +"8[. c #5379BA", +"9[. c #4269AA", +"0[. c #3E66A8", +"a[. c #284E93", +"b[. c #1D458A", +"c[. c #2C5599", +"d[. c #325A9E", +"e[. c #31589C", +"f[. c #7FA4E1", +"g[. c #091933", +"h[. c #081934", +"i[. c #0E2E67", +"j[. c #0F2F67", +"k[. c #0C2C67", +"l[. c #0E2F68", +"m[. c #0E2F6A", +"n[. c #0B2E68", +"o[. c #0C2E6A", +"p[. c #052965", +"q[. c #3B5E9A", +"r[. c #4268A5", +"s[. c #365A98", +"t[. c #2E5391", +"u[. c #2D5391", +"v[. c #456AA9", +"w[. c #4A6FAE", +"x[. c #7B9FDA", +"y[. c #496FB2", +"z[. c #4168A9", +"A[. c #3961A4", +"B[. c #1C4388", +"C[. c #1F478D", +"D[. c #234B90", +"E[. c #2C5499", +"F[. c #30579D", +"G[. c #85ABE7", +"H[. c #061630", +"I[. c #071833", +"J[. c #09193A", +"K[. c #0F2445", +"L[. c #192C51", +"M[. c #182D53", +"N[. c #1B315B", +"O[. c #18315E", +"P[. c #0F3066", +"Q[. c #103067", +"R[. c #113269", +"S[. c #103269", +"T[. c #0C2E68", +"U[. c #072D6A", +"V[. c #042A66", +"W[. c #072760", +"X[. c #4166A1", +"Y[. c #3E64A1", +"Z[. c #7496CD", +"`[. c #89AADB", +" }. c #2A4E8C", +".}. c #41619B", +"+}. c #678AC5", +"@}. c #476DAB", +"#}. c #466AA9", +"$}. c #4A6DAD", +"%}. c #4C70B0", +"&}. c #6D92CF", +"*}. c #95B8F0", +"=}. c #94B7F0", +"-}. c #93B7F0", +";}. c #7DA2DB", +">}. c #4A6FB2", +",}. c #4067A9", +"'}. c #2F579B", +")}. c #1C4287", +"!}. c #1C4489", +"~}. c #1B4287", +"{}. c #1B4389", +"]}. c #496FB1", +"^}. c #87ADEA", +"/}. c #304C80", +"(}. c #000509", +"_}. c #04132F", +":}. c #061632", +"<}. c #102546", +"[}. c #0F2E67", +"}}. c #0B2E67", +"|}. c #0A2E68", +"1}. c #0C306A", +"2}. c #0C2E69", +"3}. c #042A67", +"4}. c #597DB8", +"5}. c #3E64A0", +"6}. c #4467A4", +"7}. c #7394C7", +"8}. c #2F5491", +"9}. c #7598D1", +"0}. c #33528A", +"a}. c #486CAC", +"b}. c #4469A8", +"c}. c #6084C1", +"d}. c #96B8F0", +"e}. c #95B8EF", +"f}. c #92B6F0", +"g}. c #91B5EF", +"h}. c #8FB6EF", +"i}. c #4E75B6", +"j}. c #456CAD", +"k}. c #3F66A8", +"l}. c #3B62A5", +"m}. c #244A8F", +"n}. c #184085", +"o}. c #194186", +"p}. c #355DA2", +"q}. c #6387C5", +"r}. c #668DCC", +"s}. c #5C85C7", +"t}. c #436299", +"u}. c #1C345C", +"v}. c #1B325D", +"w}. c #14326A", +"x}. c #0D2F67", +"y}. c #0C2E67", +"z}. c #0F2E6A", +"A}. c #092C69", +"B}. c #032A67", +"C}. c #7195CF", +"D}. c #4F73AF", +"E}. c #3F66A1", +"F}. c #3D64A0", +"G}. c #375C9A", +"H}. c #2B518F", +"I}. c #204584", +"J}. c #0A2D68", +"K}. c #2A4F8F", +"L}. c #3C61A0", +"M}. c #5E81C0", +"N}. c #8CB3EE", +"O}. c #8EB4F0", +"P}. c #97BBEF", +"Q}. c #7DA3DD", +"R}. c #5077B8", +"S}. c #466CAD", +"T}. c #365DA0", +"U}. c #194187", +"V}. c #375FA2", +"W}. c #416AAC", +"X}. c #3960A6", +"Y}. c #7B9FD9", +"Z}. c #91B9F4", +"`}. c #92BAF3", +" |. c #7DA2DD", +".|. c #5576AF", +"+|. c #020913", +"@|. c #17305D", +"#|. c #123067", +"$|. c #0D2D67", +"%|. c #0D3069", +"&|. c #0E2D68", +"*|. c #092B68", +"=|. c #0A2D69", +"-|. c #072C69", +";|. c #092E6A", +">|. c #234176", +",|. c #779CD6", +"'|. c #4C72AD", +")|. c #365C9A", +"!|. c #305494", +"~|. c #173A7B", +"{|. c #6889C1", +"]|. c #1A3E7F", +"^|. c #5B7EBD", +"/|. c #8DB4EE", +"(|. c #8BB2ED", +"_|. c #80A5E1", +":|. c #32599C", +"<|. c #184086", +"[|. c #3D66A8", +"}|. c #335B9E", +"||. c #355CA2", +"1|. c #3D65A9", +"2|. c #87ACE6", +"3|. c #8CB1E9", +"4|. c #6189C6", +"5|. c #5E80BA", +"6|. c #05142E", +"7|. c #081A37", +"8|. c #16294D", +"9|. c #1D3357", +"0|. c #192E58", +"a|. c #19305D", +"b|. c #112F64", +"c|. c #0E2F67", +"d|. c #0F2E68", +"e|. c #0D2F69", +"f|. c #0F326B", +"g|. c #0D2E68", +"h|. c #0A2E69", +"i|. c #052B68", +"j|. c #32528A", +"k|. c #5A7FB9", +"l|. c #7FA2DA", +"m|. c #5276B0", +"n|. c #2C5290", +"o|. c #1E4583", +"p|. c #3F649E", +"q|. c #234580", +"r|. c #4668A3", +"s|. c #325594", +"t|. c #2D4F8B", +"u|. c #305290", +"v|. c #5B7FBC", +"w|. c #2B508F", +"x|. c #2F5493", +"y|. c #4469A9", +"z|. c #567BBA", +"A|. c #89AFE9", +"B|. c #8AB1ED", +"C|. c #8BB1EF", +"D|. c #8BB1EE", +"E|. c #80A4E1", +"F|. c #385FA2", +"G|. c #244B8E", +"H|. c #1D4589", +"I|. c #325A9F", +"J|. c #345CA1", +"K|. c #13264A", +"L|. c #0F2F66", +"M|. c #0E2F66", +"N|. c #0B2D66", +"O|. c #0D2D66", +"P|. c #0C2D66", +"Q|. c #0B2D67", +"R|. c #032965", +"S|. c #3F629C", +"T|. c #486DA8", +"U|. c #3F659F", +"V|. c #335997", +"W|. c #305694", +"X|. c #466AA7", +"Y|. c #8FB0E6", +"Z|. c #89ABE1", +"`|. c #B2CBEF", +" 1. c #A5BFEA", +".1. c #4467A5", +"+1. c #365997", +"@1. c #254A8A", +"#1. c #88AFEA", +"$1. c #8AB0ED", +"%1. c #8AB0EE", +"&1. c #82A7E1", +"*1. c #4F75B6", +"=1. c #285095", +"-1. c #2A5297", +";1. c #335BA0", +">1. c #3C65A8", +",1. c #6B92D1", +"'1. c #081E49", +")1. c #020E1E", +"!1. c #081734", +"~1. c #102D61", +"{1. c #0F2E65", +"]1. c #0C2F67", +"^1. c #0F3068", +"/1. c #0D2D68", +"(1. c #0B2D68", +"_1. c #072A69", +":1. c #032863", +"<1. c #4E70AB", +"[1. c #486DA9", +"}1. c #4367A4", +"|1. c #244786", +"11. c #335693", +"21. c #4265A0", +"31. c #3F639E", +"41. c #3C5F9C", +"51. c #2F5190", +"61. c #395C9A", +"71. c #204586", +"81. c #375D9C", +"91. c #8AB0EB", +"01. c #88AEE9", +"a1. c #89AFEA", +"b1. c #89ADE9", +"c1. c #89AEEA", +"d1. c #87ADEB", +"e1. c #85AAE4", +"f1. c #2D5397", +"g1. c #183F84", +"h1. c #1A4288", +"i1. c #355EA2", +"j1. c #6C95D3", +"k1. c #071934", +"l1. c #091B3A", +"m1. c #0F2748", +"n1. c #172C53", +"o1. c #16305C", +"p1. c #0E2E64", +"q1. c #0E2F65", +"r1. c #072966", +"s1. c #072A68", +"t1. c #0B2B63", +"u1. c #5177B1", +"v1. c #466CA7", +"w1. c #39609B", +"x1. c #3F64A1", +"y1. c #466BAA", +"z1. c #4C71B0", +"A1. c #88ADE9", +"B1. c #86ACE8", +"C1. c #89ACE9", +"D1. c #88ACE9", +"E1. c #87ACE9", +"F1. c #87ABE7", +"G1. c #88ACE8", +"H1. c #88ADEB", +"I1. c #8AAEED", +"J1. c #8CB3F1", +"K1. c #87ACE7", +"L1. c #3960A3", +"M1. c #21478C", +"N1. c #557BBF", +"O1. c #203C70", +"P1. c #15315F", +"Q1. c #0D2E64", +"R1. c #0B2E66", +"S1. c #092C67", +"T1. c #062A66", +"U1. c #082B68", +"V1. c #062968", +"W1. c #5279B3", +"X1. c #4269A4", +"Y1. c #2A508E", +"Z1. c #123778", +"`1. c #0F3273", +" 2. c #45649C", +".2. c #5F7FB5", +"+2. c #1E407F", +"@2. c #14397D", +"#2. c #39609E", +"$2. c #4267A7", +"%2. c #4A6EAE", +"&2. c #5377B7", +"*2. c #7DA2DE", +"=2. c #86AAE6", +"-2. c #88ACEA", +";2. c #86AAE8", +">2. c #86AAE7", +",2. c #87ABE8", +"'2. c #88ADEA", +")2. c #8AAEEC", +"!2. c #89AFEC", +"~2. c #8CB2F1", +"{2. c #93B8F0", +"]2. c #8AAFE9", +"^2. c #1F468B", +"/2. c #1F468A", +"(2. c #3D65A7", +"_2. c #517ABA", +":2. c #7DA6E5", +"<2. c #335289", +"[2. c #04152E", +"}2. c #0B1D3B", +"|2. c #122A4C", +"12. c #112F65", +"22. c #0F2F65", +"32. c #0D2E65", +"42. c #0D2E66", +"52. c #0A2C67", +"62. c #062A67", +"72. c #022967", +"82. c #23437B", +"92. c #567BB7", +"02. c #365D98", +"a2. c #284E8C", +"b2. c #38578F", +"c2. c #A1C3F3", +"d2. c #5A79B0", +"e2. c #345B99", +"f2. c #4267A6", +"g2. c #4A6EAD", +"h2. c #5479B7", +"i2. c #7A9FDB", +"j2. c #85A9E5", +"k2. c #84A8E4", +"l2. c #85A9E7", +"m2. c #89ADEB", +"n2. c #8AAFEB", +"o2. c #8BB1F0", +"p2. c #8FB4F1", +"q2. c #8DB1EA", +"r2. c #4C72B3", +"s2. c #4067A8", +"t2. c #1E458A", +"u2. c #1A4186", +"v2. c #365EA3", +"w2. c #48689E", +"x2. c #0E2D66", +"y2. c #0D2F68", +"z2. c #092C66", +"A2. c #072A67", +"B2. c #072C68", +"C2. c #052964", +"D2. c #305189", +"E2. c #5579B3", +"F2. c #325895", +"G2. c #6C8CC1", +"H2. c #7396CC", +"I2. c #2B4D8A", +"J2. c #214686", +"K2. c #476CAB", +"L2. c #4D71B0", +"M2. c #7498D4", +"N2. c #86ABE6", +"O2. c #83A7E3", +"P2. c #84A8E6", +"Q2. c #83A8E4", +"R2. c #87ABE9", +"S2. c #85AAE8", +"T2. c #86ABE9", +"U2. c #88ACEB", +"V2. c #8BB0EB", +"W2. c #90B5F0", +"X2. c #4B71B2", +"Y2. c #476DAE", +"Z2. c #3E65A7", +"`2. c #234A8E", +" 3. c #2C5398", +".3. c #3961A5", +"+3. c #7BA2E1", +"@3. c #5D7FB9", +"#3. c #132F62", +"$3. c #0C2C64", +"%3. c #0A2C6A", +"&3. c #052862", +"*3. c #032662", +"=3. c #3F6199", +"-3. c #5276B1", +";3. c #345A98", +">3. c #214785", +",3. c #5373AA", +"'3. c #5074B3", +")3. c #82A6E2", +"!3. c #83A7E4", +"~3. c #83A7E5", +"{3. c #83A9E7", +"]3. c #8AAEEA", +"^3. c #8BB0EC", +"/3. c #8CB2F0", +"(3. c #4D73B4", +"_3. c #3960A2", +":3. c #20478B", +"<3. c #234B8F", +"[3. c #3D66A9", +"}3. c #668AC7", +"|3. c #061738", +"13. c #0E2140", +"23. c #162C54", +"33. c #152F5D", +"43. c #163260", +"53. c #0E2F64", +"63. c #0F2E66", +"73. c #092B69", +"83. c #072C67", +"93. c #062B68", +"03. c #032765", +"a3. c #4668A2", +"b3. c #3F65A0", +"c3. c #264B89", +"d3. c #2C4C88", +"e3. c #6C90C8", +"f3. c #5075B4", +"g3. c #7B9EDB", +"h3. c #81A5E1", +"i3. c #85A9E6", +"j3. c #8AAEEB", +"k3. c #5076B6", +"l3. c #2B5195", +"m3. c #264C91", +"n3. c #284F93", +"o3. c #285093", +"p3. c #20488C", +"q3. c #355EA0", +"r3. c #3C65A7", +"s3. c #456EB0", +"t3. c #7396D1", +"u3. c #0B1C3B", +"v3. c #162D4E", +"w3. c #182F53", +"x3. c #14305D", +"y3. c #0E2E63", +"z3. c #0E2D64", +"A3. c #0D2D65", +"B3. c #0E2E65", +"C3. c #0B2B64", +"D3. c #0C2E66", +"E3. c #0A2D65", +"F3. c #082B66", +"G3. c #062B67", +"H3. c #042862", +"I3. c #072861", +"J3. c #5075AE", +"K3. c #385E99", +"L3. c #2D518F", +"M3. c #264B8A", +"N3. c #0D3472", +"O3. c #103875", +"P3. c #093070", +"Q3. c #799CD8", +"R3. c #82A6E3", +"S3. c #82A6E4", +"T3. c #84A8E5", +"U3. c #89ADEA", +"V3. c #496FAF", +"W3. c #3E65A6", +"X3. c #1E468C", +"Y3. c #1D458B", +"Z3. c #335C9E", +"`3. c #3B64A6", +" 4. c #6A92D1", +".4. c #7B9FDB", +"+4. c #000511", +"@4. c #182E56", +"#4. c #132C5A", +"$4. c #0D2E63", +"%4. c #0C2C65", +"&4. c #0A2D66", +"*4. c #072B65", +"=4. c #597DB7", +"-4. c #345997", +";4. c #254A88", +">4. c #234886", +",4. c #0B3271", +"'4. c #09316F", +")4. c #365C9B", +"!4. c #5175B4", +"~4. c #80A4E0", +"{4. c #81A5E2", +"]4. c #89AEEB", +"^4. c #5178B8", +"/4. c #4B72B2", +"(4. c #345A9D", +"_4. c #194185", +":4. c #1C4389", +"<4. c #315A9D", +"[4. c #7EA3DE", +"}4. c #04122B", +"|4. c #051934", +"14. c #162E5C", +"24. c #17335F", +"34. c #0C2D63", +"44. c #0C2D64", +"54. c #092C65", +"64. c #082B65", +"74. c #082C66", +"84. c #062966", +"94. c #05265E", +"04. c #062765", +"a4. c #1B376B", +"b4. c #4367A3", +"c4. c #4468A5", +"d4. c #3E629F", +"e4. c #284D8C", +"f4. c #264C8A", +"g4. c #0B3371", +"h4. c #5579B6", +"i4. c #7FA3DF", +"j4. c #81A5E3", +"k4. c #86ABE8", +"l4. c #4D73B5", +"m4. c #1D4488", +"n4. c #1B4288", +"o4. c #264E93", +"p4. c #365EA1", +"q4. c #7FA5E2", +"r4. c #02060B", +"s4. c #071A35", +"t4. c #122850", +"u4. c #14315E", +"v4. c #0F2E63", +"w4. c #0D2C62", +"x4. c #0F2F64", +"y4. c #0D2D63", +"z4. c #0B2E63", +"A4. c #062965", +"B4. c #325085", +"C4. c #5D81BA", +"D4. c #3A5E9B", +"E4. c #325592", +"F4. c #274A88", +"G4. c #0E3573", +"H4. c #0D3473", +"I4. c #395D9C", +"J4. c #567AB8", +"K4. c #5A7EBC", +"L4. c #7DA0DB", +"M4. c #80A4E2", +"N4. c #92B6F1", +"O4. c #8CAEE6", +"P4. c #6D8EC8", +"Q4. c #1E4589", +"R4. c #173D82", +"S4. c #2D5294", +"T4. c #5478B5", +"U4. c #6C93D2", +"V4. c #041435", +"W4. c #0A1C3B", +"X4. c #11294B", +"Y4. c #152C5A", +"Z4. c #122E60", +"`4. c #102D5F", +" 5. c #0F2D63", +".5. c #0D2F64", +"+5. c #0B2D65", +"@5. c #092C64", +"#5. c #062865", +"$5. c #04275F", +"%5. c #446397", +"&5. c #587CB5", +"*5. c #325693", +"=5. c #32528C", +"-5. c #809DCE", +";5. c #42639F", +">5. c #2A4C8A", +",5. c #2C4F8D", +"'5. c #2F5393", +")5. c #4E72B0", +"!5. c #567BB9", +"~5. c #80A3E0", +"{5. c #80A2DF", +"]5. c #8BAFEC", +"^5. c #90B2E9", +"/5. c #6588C4", +"(5. c #6986BF", +"_5. c #254B8F", +":5. c #254A8E", +"<5. c #244A8E", +"[5. c #6B8BC2", +"}5. c #5174B1", +"|5. c #234A8F", +"15. c #1B3A72", +"25. c #0E2648", +"35. c #0F2C5E", +"45. c #0D2C63", +"55. c #0D2D64", +"65. c #0C2B64", +"75. c #082B63", +"85. c #072A64", +"95. c #0A2C68", +"05. c #082C67", +"a5. c #4C6FA8", +"b5. c #4C70AB", +"c5. c #345795", +"d5. c #4969A1", +"e5. c #A6C3EC", +"f5. c #6D8FC8", +"g5. c #5879B2", +"h5. c #345794", +"i5. c #335795", +"j5. c #2A5090", +"k5. c #486DAB", +"l5. c #5B7FBD", +"m5. c #91B4EC", +"n5. c #4D74B4", +"o5. c #224A8D", +"p5. c #1B4286", +"q5. c #224588", +"r5. c #4465A4", +"s5. c #1D4387", +"t5. c #1C468B", +"u5. c #23447E", +"v5. c #020F20", +"w5. c #031020", +"x5. c #021228", +"y5. c #16315A", +"z5. c #152C59", +"A5. c #132D59", +"B5. c #142D5B", +"C5. c #0C2D62", +"D5. c #0C2D65", +"E5. c #0C2C63", +"F5. c #0D2C65", +"G5. c #0A2C64", +"H5. c #092B65", +"I5. c #082A66", +"J5. c #092B66", +"K5. c #082963", +"L5. c #4F73AD", +"M5. c #4E73AC", +"N5. c #315694", +"O5. c #32538D", +"P5. c #264986", +"Q5. c #224685", +"R5. c #244785", +"S5. c #4367A6", +"T5. c #678AC7", +"U5. c #7DA1DD", +"V5. c #8FB2EC", +"W5. c #2A5195", +"X5. c #1E4588", +"Y5. c #184186", +"Z5. c #395C97", +"`5. c #061935", +" 6. c #12274B", +".6. c #152B56", +"+6. c #0E2E62", +"@6. c #0B2C64", +"#6. c #082B64", +"$6. c #072A65", +"%6. c #072965", +"&6. c #052A66", +"*6. c #122E62", +"=6. c #5277B2", +"-6. c #466CA6", +";6. c #274B89", +">6. c #224785", +",6. c #6E91CE", +"'6. c #7FA2DF", +")6. c #80A6E1", +"!6. c #8BB0EE", +"~6. c #91B3EA", +"{6. c #3B61A2", +"]6. c #295194", +"^6. c #254C8F", +"/6. c #21488B", +"(6. c #264D93", +"_6. c #31599C", +":6. c #3962A5", +"<6. c #4066A6", +"[6. c #071832", +"}6. c #102748", +"|6. c #162D59", +"16. c #132E58", +"26. c #112D5E", +"36. c #0A2D63", +"46. c #0A2D64", +"56. c #0A2C62", +"66. c #0C2E65", +"76. c #0A2B64", +"86. c #0B2C65", +"96. c #092D67", +"06. c #05265C", +"a6. c #203D71", +"b6. c #264A88", +"c6. c #254987", +"d6. c #7094D0", +"e6. c #8AAFED", +"f6. c #8CB2EE", +"g6. c #4568A8", +"h6. c #2A5194", +"i6. c #284F92", +"j6. c #1F4689", +"k6. c #1E4489", +"l6. c #22498D", +"m6. c #254D93", +"n6. c #30589C", +"o6. c #365EA2", +"p6. c #06162F", +"q6. c #0F2E62", +"r6. c #0C2B61", +"s6. c #0B2C62", +"t6. c #0B2C63", +"u6. c #0B2D63", +"v6. c #0B2B62", +"w6. c #062A65", +"x6. c #072967", +"y6. c #062964", +"z6. c #042964", +"A6. c #304E84", +"B6. c #476BA6", +"C6. c #244886", +"D6. c #224684", +"E6. c #7598D5", +"F6. c #7FA3DE", +"G6. c #8CB0ED", +"H6. c #93B7F1", +"I6. c #94B7F1", +"J6. c #5E83C0", +"K6. c #295093", +"L6. c #335A9D", +"M6. c #355C9F", +"N6. c #1D4487", +"O6. c #1C4387", +"P6. c #516FA8", +"Q6. c #2C4F91", +"R6. c #7191C9", +"S6. c #6385C0", +"T6. c #142A54", +"U6. c #0D2D62", +"V6. c #0B2B61", +"W6. c #0C2E64", +"X6. c #092A62", +"Y6. c #072B66", +"Z6. c #34538A", +"`6. c #385C97", +" 7. c #214684", +".7. c #1E4484", +"+7. c #214787", +"@7. c #779BD7", +"#7. c #89ACE8", +"$7. c #8AAFEA", +"%7. c #93B6EC", +"&7. c #345B9D", +"*7. c #30579A", +"=7. c #274F91", +"-7. c #20478A", +";7. c #294F92", +">7. c #22488B", +",7. c #173F83", +"'7. c #183F85", +")7. c #143C83", +"!7. c #2F5090", +"~7. c #274B8E", +"{7. c #224689", +"]7. c #1E468A", +"^7. c #597BB7", +"/7. c #6186C5", +"(7. c #071732", +"_7. c #0C2C62", +":7. c #0A2B63", +"<7. c #092B63", +"[7. c #0A2C65", +"}7. c #082A63", +"|7. c #062963", +"17. c #032560", +"27. c #32558F", +"37. c #2F5390", +"47. c #204684", +"57. c #7BA0DB", +"67. c #8CAFE7", +"77. c #6C94D2", +"87. c #32599B", +"97. c #2C5295", +"07. c #30589A", +"a7. c #395FA2", +"b7. c #295092", +"c7. c #22498C", +"d7. c #20488B", +"e7. c #13387D", +"f7. c #173C80", +"g7. c #92ADDF", +"h7. c #4566A2", +"i7. c #194286", +"j7. c #194087", +"k7. c #1C448A", +"l7. c #071733", +"m7. c #0E2546", +"n7. c #142B56", +"o7. c #0D2D61", +"p7. c #0A2A62", +"q7. c #0A2962", +"r7. c #0B2A63", +"s7. c #092B64", +"t7. c #092C63", +"u7. c #062A64", +"v7. c #06255B", +"w7. c #325793", +"x7. c #2D518E", +"y7. c #264A87", +"z7. c #375C9C", +"A7. c #264E90", +"B7. c #234A8D", +"C7. c #214486", +"D7. c #6488C9", +"E7. c #183F86", +"F7. c #184087", +"G7. c #1B4186", +"H7. c #3B5B9A", +"I7. c #21478A", +"J7. c #153F83", +"K7. c #345DA0", +"L7. c #4F78B8", +"M7. c #091A3A", +"N7. c #0D2C5F", +"O7. c #0B2B5F", +"P7. c #0A2B60", +"Q7. c #092B61", +"R7. c #082A62", +"S7. c #0A2A63", +"T7. c #092A63", +"U7. c #082C63", +"V7. c #082C64", +"W7. c #072964", +"X7. c #062864", +"Y7. c #325893", +"Z7. c #85AAE2", +"`7. c #6386C1", +" 8. c #254D90", +".8. c #1B4489", +"+8. c #1D448A", +"@8. c #294A83", +"#8. c #041333", +"$8. c #000408", +"%8. c #15294E", +"&8. c #112E59", +"*8. c #0E2B5D", +"=8. c #0D2C61", +"-8. c #0B2B60", +";8. c #0B2C61", +">8. c #0A2C63", +",8. c #0A2B62", +"'8. c #092962", +")8. c #072A62", +"!8. c #092D65", +"~8. c #072A63", +"{8. c #062961", +"]8. c #062962", +"^8. c #395D99", +"/8. c #274D89", +"(8. c #224786", +"_8. c #4D71AD", +":8. c #80A4DF", +"<8. c #9BBBF1", +"[8. c #5275B2", +"}8. c #284F91", +"|8. c #254D8F", +"18. c #21498C", +"28. c #1F4589", +"38. c #385DA1", +"48. c #1F478B", +"58. c #20488E", +"68. c #3760A2", +"78. c #3860A3", +"88. c #476AA5", +"98. c #000307", +"08. c #122A55", +"a8. c #0A2B61", +"b8. c #08295F", +"c8. c #092A61", +"d8. c #092961", +"e8. c #072860", +"f8. c #2A497E", +"g8. c #385C98", +"h8. c #284E89", +"i8. c #5074B1", +"j8. c #739BD7", +"k8. c #7BA2E0", +"l8. c #4E73B1", +"m8. c #264D91", +"n8. c #264D90", +"o8. c #254C8E", +"p8. c #214A8C", +"q8. c #21488C", +"r8. c #1C4488", +"s8. c #21488D", +"t8. c #285094", +"u8. c #284F95", +"v8. c #4E71AF", +"w8. c #04122C", +"x8. c #061634", +"y8. c #0D2B5E", +"z8. c #0C2A5E", +"A8. c #0D2C60", +"B8. c #0C2C61", +"C8. c #0A295F", +"D8. c #092A5F", +"E8. c #0C2E63", +"F8. c #052561", +"G8. c #34568E", +"H8. c #40649E", +"I8. c #2F548F", +"J8. c #284E8B", +"K8. c #294D8A", +"L8. c #153C7A", +"M8. c #5174B2", +"N8. c #87AFEA", +"O8. c #87ACE4", +"P8. c #769EDB", +"Q8. c #7DA5E2", +"R8. c #5D82BF", +"S8. c #274D91", +"T8. c #234B8D", +"U8. c #375FA3", +"V8. c #2E569A", +"W8. c #3F64A7", +"X8. c #051431", +"Y8. c #061532", +"Z8. c #132B4F", +"`8. c #112956", +" 9. c #122B59", +".9. c #0C2B60", +"+9. c #0C2C60", +"@9. c #092A60", +"#9. c #0B2D64", +"$9. c #052962", +"%9. c #052963", +"&9. c #03265D", +"*9. c #062253", +"=9. c #4266A1", +"-9. c #355994", +";9. c #2A508B", +">9. c #2F5590", +",9. c #234686", +"'9. c #244787", +")9. c #254A89", +"!9. c #234A89", +"~9. c #284C8C", +"{9. c #80A3DE", +"]9. c #84A9E5", +"^9. c #82A8E2", +"/9. c #79A1DE", +"(9. c #274E90", +"_9. c #163C82", +":9. c #193D7E", +"<9. c #214A8E", +"[9. c #0F254C", +"}9. c #112950", +"|9. c #0C2A5D", +"19. c #0B2B5E", +"29. c #0B2A60", +"39. c #0A2A5F", +"49. c #07285F", +"59. c #082861", +"69. c #072961", +"79. c #05275F", +"89. c #052860", +"99. c #052861", +"09. c #032661", +"a9. c #032760", +"b9. c #092558", +"c9. c #5B7EB7", +"d9. c #365A96", +"e9. c #2D518D", +"f9. c #2C508E", +"g9. c #244987", +"h9. c #4D72AE", +"i9. c #83AAE5", +"j9. c #8BB1EB", +"k9. c #7EA5E1", +"l9. c #7EA6E3", +"m9. c #769DDA", +"n9. c #284E91", +"o9. c #1A4085", +"p9. c #1B4387", +"q9. c #5F81BB", +"r9. c #93B6EA", +"s9. c #6587C1", +"t9. c #1E488D", +"u9. c #264B90", +"v9. c #2C5297", +"w9. c #000207", +"x9. c #041026", +"y9. c #132952", +"z9. c #102853", +"A9. c #102B5B", +"B9. c #102C5D", +"C9. c #0D2B5F", +"D9. c #0F2C60", +"E9. c #0C2A60", +"F9. c #0A2A61", +"G9. c #082961", +"H9. c #042860", +"I9. c #042861", +"J9. c #143064", +"K9. c #5F83BC", +"L9. c #4B6EA9", +"M9. c #3D619C", +"N9. c #315591", +"O9. c #2D508E", +"P9. c #284D8B", +"Q9. c #224683", +"R9. c #2B4F8D", +"S9. c #294D8B", +"T9. c #254988", +"U9. c #2A4E8E", +"V9. c #355B99", +"W9. c #5177B3", +"X9. c #7DA1DC", +"Y9. c #85ABE6", +"Z9. c #89B0E9", +"`9. c #91B5F0", +" 0. c #A3C1F0", +".0. c #395EA0", +"+0. c #2C5395", +"@0. c #1F478A", +"#0. c #20468C", +"$0. c #4469AB", +"%0. c #90B4EC", +"&0. c #90B3E9", +"*0. c #264C8E", +"=0. c #174286", +"-0. c #3C5EA0", +";0. c #6581B7", +">0. c #061635", +",0. c #112A4F", +"'0. c #112A55", +")0. c #0C2B5F", +"!0. c #0A2A5E", +"~0. c #052961", +"{0. c #062761", +"]0. c #03265E", +"^0. c #04265C", +"/0. c #284477", +"(0. c #6287BE", +"_0. c #486CA7", +":0. c #3D619D", +"<0. c #325692", +"[0. c #2C508C", +"}0. c #284C8A", +"|0. c #254888", +"10. c #244887", +"20. c #274A8A", +"30. c #547AB6", +"40. c #80A5E0", +"50. c #7FA5E1", +"60. c #9DBCED", +"70. c #7BA4E1", +"80. c #7FA8E4", +"90. c #80A9E5", +"00. c #3B60A1", +"a0. c #2D5497", +"b0. c #2B5194", +"c0. c #5B7FC0", +"d0. c #5E84C1", +"e0. c #7CA3DC", +"f0. c #4F72B0", +"g0. c #194287", +"h0. c #1C4289", +"i0. c #2A5397", +"j0. c #264477", +"k0. c #041025", +"l0. c #132953", +"m0. c #122854", +"n0. c #0B2A5E", +"o0. c #0B2A5D", +"p0. c #0C2B5E", +"q0. c #0B2A5F", +"r0. c #06295E", +"s0. c #072A60", +"t0. c #082962", +"u0. c #062860", +"v0. c #062760", +"w0. c #03235B", +"x0. c #405D8F", +"y0. c #6286BE", +"z0. c #4367A2", +"A0. c #2F538F", +"B0. c #2E528E", +"C0. c #2A4E8B", +"D0. c #284B89", +"E0. c #2B4E8C", +"F0. c #274A89", +"G0. c #274C8A", +"H0. c #264988", +"I0. c #294E8D", +"J0. c #274D8B", +"K0. c #577BB8", +"L0. c #7CA0DA", +"M0. c #8DB1EB", +"N0. c #99B9EC", +"O0. c #7BA5E1", +"P0. c #81ABE7", +"Q0. c #81AAE7", +"R0. c #2F5699", +"S0. c #21498B", +"T0. c #1E4689", +"U0. c #193D80", +"V0. c #1E458B", +"W0. c #2C559A", +"X0. c #030E1F", +"Y0. c #031023", +"Z0. c #0D295B", +"`0. c #09295F", +" a. c #082A60", +".a. c #082960", +"+a. c #072862", +"@a. c #032862", +"#a. c #4A6A9E", +"$a. c #6386BE", +"%a. c #3F629E", +"&a. c #305491", +"*a. c #305490", +"=a. c #274B8A", +"-a. c #597CB7", +";a. c #234483", +">a. c #294D8D", +",a. c #294C8C", +"'a. c #264989", +")a. c #2B4E8E", +"!a. c #5E81BE", +"~a. c #7DA1DB", +"{a. c #86AAE5", +"]a. c #9CBCF1", +"^a. c #9DBDEC", +"/a. c #7DA7E3", +"(a. c #83ADE9", +"_a. c #83ADE8", +":a. c #88B1EC", +"b. c #052258", +",b. c #0F2B5D", +"'b. c #668AC1", +")b. c #486BA5", +"!b. c #294D89", +"~b. c #274B87", +"{b. c #274B88", +"]b. c #2A4D8B", +"^b. c #315593", +"/b. c #224584", +"(b. c #5D7EBB", +"_b. c #335896", +":b. c #375B99", +"c. c #4C6DAA", +",c. c #34589A", +"'c. c #365C9E", +")c. c #486EAF", +"!c. c #4971B2", +"~c. c #6786BE", +"{c. c #5376B4", +"]c. c #274E92", +"^c. c #325B9D", +"/c. c #2E4B7F", +"(c. c #03060B", +"_c. c #030F20", +":c. c #10254B", +"d. c #08285B", +",d. c #07275F", +"'d. c #06255C", +")d. c #264A86", +"!d. c #234783", +"~d. c #284B87", +"{d. c #294C8A", +"]d. c #4367A5", +"^d. c #3F63A1", +"/d. c #365999", +"(d. c #3B5F9E", +"_d. c #4165A3", +":d. c #6185C1", +"e. c #041123", +",e. c #0F2952", +"'e. c #0A285B", +")e. c #09285A", +"!e. c #09275B", +"~e. c #09295B", +"{e. c #09285D", +"]e. c #07275C", +"^e. c #03275E", +"/e. c #042259", +"(e. c #355893", +"_e. c #224581", +":e. c #274A85", +"f. c #1B3A76", +",f. c #355997", +"'f. c #305391", +")f. c #305392", +"!f. c #4C71AD", +"~f. c #7198D2", +"{f. c #6B92CC", +"]f. c #678CC7", +"^f. c #81A4DE", +"/f. c #8AADE7", +"(f. c #8CB2E9", +"_f. c #8CB2EB", +":f. c #81AAE6", +"g. c #A9C9F0", +",g. c #89B4EF", +"'g. c #7297D1", +")g. c #2C5194", +"!g. c #3D5E9C", +"~g. c #5E7CB5", +"{g. c #355B9F", +"]g. c #466FB0", +"^g. c #0D2044", +"/g. c #0B2243", +"(g. c #0A2555", +"_g. c #0B2656", +":g. c #07285B", +"h. c #06275B", +",h. c #05255B", +"'h. c #07275E", +")h. c #05245D", +"!h. c #345690", +"~h. c #042559", +"{h. c #4C6594", +"]h. c #243964", +"^h. c #476BA8", +"/h. c #0A3170", +"(h. c #375994", +"_h. c #749AD4", +":h. c #7197D0", +"i. c #83AEEA", +",i. c #8CB2EC", +"'i. c #3C61A1", +")i. c #2B5294", +"!i. c #1E4488", +"~i. c #265094", +"{i. c #0B2045", +"]i. c #072655", +"^i. c #032156", +"/i. c #022051", +"(i. c #062559", +"_i. c #2E508B", +":i. c #05255F", +"j. c #042156", +",j. c #022151", +"'j. c #31548E", +")j. c #284A87", +"!j. c #05295F", +"~j. c #516EA0", +"{j. c #9AB6E2", +"]j. c #5070A9", +"^j. c #80A5DE", +"/j. c #779ED8", +"(j. c #7BA1DA", +"_j. c #9FBFEC", +":j. c #1B4184", +"k. c #80AAE6", +",k. c #6187C2", +"'k. c #5C7EB7", +")k. c #99BBEE", +"!k. c #6B8BC1", +"~k. c #21478B", +"{k. c #1E4487", +"]k. c #1D3F7E", +"^k. c #718EC0", +"/k. c #163A7D", +"(k. c #1D4388", +"_k. c #1A4388", +":k. c #062554", +"l. c #8BB3ED", +",l. c #33599A", +"'l. c #07234C", +")l. c #07214D", +"!l. c #072551", +"~l. c #052352", +"{l. c #062353", +"]l. c #062354", +"^l. c #052557", +"/l. c #042252", +"(l. c #0E3069", +"_l. c #274982", +":l. c #264680", +"m. c #88A6DA", +",m. c #6282B8", +"'m. c #98B6E3", +")m. c #16397C", +"!m. c #668ECC", +"~m. c #022250", +"{m. c #385687", +"]m. c #1E3A6D", +"^m. c #082B69", +"/m. c #6283BA", +"(m. c #80A7DE", +"_m. c #82A9DF", +":m. c #82A9DE", +"n. c #040E1F", +",n. c #02214F", +"'n. c #022251", +")n. c #052256", +"!n. c #0D2E62", +"~n. c #0A2F69", +"{n. c #3D5B8E", +"]n. c #26447A", +"^n. c #24457F", +"/n. c #0E326C", +"(n. c #224380", +"_n. c #7698CF", +":n. c #4E6EA8", +"o. c #143873", +",o. c #5474AA", +"'o. c #85ACE1", +")o. c #84A9DE", +"!o. c #86ABE0", +"~o. c #94B7E8", +"{o. c #A1C2EF", +"]o. c #C0D6F1", +"^o. c #C4D9F2", +"/o. c #C7D9F3", +"(o. c #98BDF3", +"_o. c #9CC0F3", +":o. c #80A3DA", +"p. c #637AA6", +",p. c #627BA6", +"'p. c #5F78A3", +")p. c #57719D", +"!p. c #526C98", +"~p. c #4D6794", +"{p. c #4A6592", +"]p. c #476390", +"^p. c #456090", +"/p. c #3E5A8B", +"(p. c #3B5889", +"_p. c #375486", +":p. c #314D81", +"q. c #010304", +",q. c #040406", +"'q. c #030405", +")q. c #021232", +"!q. c #030305", +"~q. c #010303", +"{q. c #010202", +"]q. c #020202", +"^q. c #030E27", +"/q. c #020405", +"(q. c #030304", +"_q. c #030204", +":q. c #03080E", +" $ , > ' > ) > ! $ ~ { $ ] ^ $ ] > & ^ & ! ] ~ / ( _ : < [ / { [ / { } ; | { : 1 2 < { } 2 3 4 : } 5 6 { 7 8 9 0 a } 7 7 b 8 8 6 7 c a 8 b 6 6 d e f g 0 a h 7 i 8 0 7 j k c l m n n h c o p q r r s t u v m p w p t x y z A w B x z C D E D F G H I I A z J A I K L H M N O M P Q R M S T U S H V W P X H Y Z ` P V . .. R X +. @. . #. $. .. %. &. @. *. =. +. -. ;. >. ,. &. '. ). !. '. ~. {. {. {. ]. ^. '. '. ^. /. (. _. :. <. [. }. |. 1. }. 2. 3. 4. 5. 6. 7. 8. 5. 9. 0. 0. a. b. 9. 9. c. c. d. e. d. e. c. e. f. g. g. h. i. j. k. i. l. m. m. n. o. f. o. p. q. q. r. s. t. u. v. v. w. s. x. y. z. A. B. A. C. D. E. F. F. F. F. G. H. I. J. K. L. L. M. N. O. J. L. L. P. N. Q. R. S. S. T. Q. U. V. W. X. T. Y. Z. T. X. `. + .+ ++ @+ ++ `. #+ `. $+ %+ &+ *+ =+ -+ ;+ &+ ;+ &+ &+ >+ ,+ '+ )+ !+ ~+ ~+ {+ ]+ ^+ /+ ~+ (+ ~+ ~+ /+ ~+ (+ _+ :+ <+ /+ [+ }+ |+ |+ 1+ 2+ 3+ 4+ |+ 4+ 3+ 5+ 6+ 7+ 8+ 3+ 9+ 0+ 8+ 8+ a+ b+ c+ d+ d+ e+ e+ d+ e+ c+ f+ d+ d+ f+ 0+ 0+ g+ h+ i+ j+ h+ k+ l+ m+ n+ h+ h+ h+ n+ h+ k+ o+ p+ m+ q+ h+ n+ r+ s+ t+ u+ s+ o+ v+ s+ w+ w+ x+ s+ x+ x+ x+ y+ z+ A+ A+ B+ A+ C+ C+ D+ A+ E+ F+ D+ G+ C+ D+ C+ E+ H+ I+ J+ K+ L+ F+ D+ M+ E+ N+ L+ O+ L+ O+ P+ L+ L+ Q+ Q+ R+ R+ R+ S+ T+ U+ R+ Q+ R+ V+ W+ X+ U+ X+ U+ X+ W+ W+ Y+ Z+ `+ @ W+ Y+ .@ +@ @@ W+ #@ +@ @@ #@ $@ +@ +@ #@ @@ #@ %@ %@ %@ &@ &@ %@ &@ *@ *@ %@ =@ -@ ;@ *@ >@ ,@ '@ )@ -@ !@ ~@ ~@ {@ ]@ ^@ /@ (@ ^@ _@ !@ {@ :@ <@ [@ }@ |@ 1@ 2@ 3@ 2@ 4@ 5@ 2@ 1@ _@ 6@ 7@ 6@ 8@ 9@ 6@ 0@ 6@ a@ b@ c@ d@ e@ f@ g@ 0@ h@ i@ j@ h@ k@ e@ l@ l@ l@ m@ n@ o@ l@ p@ q@ o@ :. :. r@ s@ t@ u@ s@ u@ (. (. s@ v@ w@ ^. x@ ,. s@ =. y@ ). -. ^. -. z@ A@ A@ B@ C@ +. z@ @. &. D@ E@ F@ G@ H@ X I@ Y J@ H@ ` V J K@ L@ M@ H N@ Y L@ K@ O@ O@ P@ Q@ Q@ N Q@ C A I ", +"R@ S@ R@ + + R@ + + # > T@ ; & R@ > U@ > V@ # > & > . & T@ > ; W@ ; ^ | ) | & ; ; > ] ^ X@ Y@ ) | ~ 1 Z@ [ / / `@ # ) { ) .# +# +# < @# b 2 _ { < W@ ## $# < %# < { $# Y@ 7 $# 5 &# *# =# a 6 -# ;# d a e ># } a { ,# c g f '# a e d a b 0 e h )# h !# h h f ~# {# r o ~# n r ~# ]# ^# /# n (# x C w _# Q@ D m I :# ^# C z w N <# P@ K@ [# N }# N A J z x U z I Y O@ N@ Q@ |# T J Y L@ L@ K@ S P 1# 2# 1# 3# 1# J J@ Z @. E@ 4# Y 1# #. . 5# 5# 6# 7# +. +. 8# W . .. . . &. 9# ;. 0# A@ a# !. ;. .. ~. '. b# c# t@ d# v@ v@ v@ v@ :. v@ v@ e# f# }. g# h# i# }. j# g# k# 7. 6. 6. l# 9. m# 4. n# 9. d. 9. o# m# p# c. e. c. d. c. q# q# d. q# i. l. r# r# s# l. t# l. u# v# n. o. q. t. w# q. t. x# y# v. u. u. s. z# A# B# E. A. F. C. C# D# G. G. G. G. G. G. E# K. J. N. M. L. J. F# O. L. S. O. J. J. O. S. S. G# H# I# O. G# F# Y. J# K# `. `. J# L# T. W. I# M# N# #+ N# N# O# N# &+ &+ P# ;+ -+ ;+ &+ ;+ Q# ;+ R# S# T# U# ]+ V# (+ W# X# U# ~+ (+ /+ Y# /+ Z# `# _+ ~+ Z# 1+ |+ `# `# $ |+ .$ 1+ 3+ +$ 4+ @$ #$ $$ 8+ +$ 0+ c+ 7+ b+ e+ d+ %$ 9+ 0+ 0+ 0+ d+ 0+ &$ i+ d+ 0+ 0+ %$ g+ m+ l+ *$ m+ =$ l+ n+ h+ m+ -$ k+ h+ h+ ;$ n+ l+ -$ n+ l+ l+ >$ ,$ s+ '$ s+ w+ o+ o+ )$ x+ !$ ~$ {$ ~$ x+ x+ ]$ B+ A+ A+ A+ A+ A+ B+ A+ A+ A+ D+ E+ y+ C+ E+ C+ A+ ^$ A+ D+ L+ M+ C+ E+ F+ N+ O+ Q+ /$ Q+ R+ /$ /$ /$ /$ R+ T+ P+ S+ T+ .@ V+ R+ R+ V+ X+ X+ X+ .@ ($ X+ .@ X+ _$ W+ :$ <$ @ @@ W+ +@ @@ W+ @@ @@ [$ +@ #@ %@ +@ &@ %@ %@ #@ #@ &@ &@ }$ %@ |$ *@ 1$ =@ =@ *@ -@ *@ 2$ 3$ '@ 4$ *@ !@ )@ 5$ ~@ 6$ 7$ 8$ ~@ (@ 9$ 0$ !@ a$ b$ c$ 4@ ,@ d$ 4@ 4@ !@ e$ f$ 3@ g$ 3@ 9@ h$ a@ i$ j$ 7@ k$ l$ m$ n$ o$ p$ f@ f@ i@ 0@ n@ l@ q$ r$ i@ f@ s$ l@ p@ l@ l@ t$ j@ h# u$ v$ s@ u@ q@ :. t@ w$ w$ :. w$ x@ x$ (. q@ y$ ^. !. -. !. ). b# ^. ). $. ). *. &. &. A@ !. z$ 5# A$ W #. I@ B$ C$ D$ #. E$ Y V S F$ E@ D$ S M@ M D$ G$ J A N@ H$ I$ H$ M J N@ P@ /# P@ ", +"* R@ J$ K$ # L$ M$ # N$ O$ > > & . ] V@ ; # P$ # > & ; ] . Q$ ] ~ ; ~ P$ & ) R$ W@ [ S$ | W@ { T$ ~ W@ ~ ~ ( ;# U$ [ { 2 { { W@ / ~ [ [ ) +# ## $# / : 2 } } { $# < < $# 6 -# $# ( } $# ~# &# e } g $# V$ b b [ 7 / 9 V$ a 6 V$ !# $# 7 j c a W$ o c X$ Y$ e ~# ~# o n h c Z$ c v h h h m ^# D c p `$ Y$ ^# C % ^# ^# I M N C N Q@ M Q@ N x x A G .% I x x Q@ M T J O@ Q@ P@ L@ +% A L@ P@ M@ ` P J L @% I@ Y H@ G$ C$ I@ #% L@ Y @. E@ z$ #. C$ W $% &. R =. A@ A@ $% A@ &. +. A@ =. $. $% =. =. z@ &. %% ^. {. &% ^. ~. x@ (. v@ *% ^. ~. =% t@ -% }. h# ;% g# >% ,% h# 4. '% 8. 7. 8. )% 9. !% m# ~% 9. e. d. c. d. e. c. e. {% e. g. q# g. c. e. v# v# ]% ^% t# o. /% l. j. s# (% q. t. _% :% (% <% t. <% [% }% t. v. |% 1% A. 2% D# D. 3% D# 4% 5% G. 6% G. H. D. 7% 8% J. 9% O. J. S. O. O. S. O. 0% I# T. S. S. G# Q. a% W. H# L# T. Y. W. J# ++ W. ++ b% c% c% L# #+ #+ d% P# e% f% g% -+ ;+ -+ P# -+ h% ;+ Q# =+ i% j% j% ~+ /+ k% ^+ ~+ ~+ ~+ (+ /+ ~+ (+ l% m% n% 6+ m% m% o% p% p% q% r% s% 1+ $$ 1+ 1+ t% 3+ 6+ $$ $$ 8+ @$ c+ $$ b+ d+ d+ d+ d+ a+ a+ %$ f+ 0+ 0+ m+ 0+ %$ %$ d+ u% n+ h+ n+ *$ l+ v% w% n+ l+ j+ m+ n+ n+ m+ n+ h+ r+ h+ m+ n+ h+ x% u+ y% s+ s+ z% '$ o+ o+ x+ w+ o+ v+ x+ u+ A% A+ A+ B% C+ A+ A+ B% A+ A+ C+ E+ A+ B+ C+ E+ D+ E+ F+ C+ I+ C+ L+ C% E+ C+ D% E% L+ K+ Q+ P+ S+ /$ F% R+ G% S+ T+ R+ S+ T+ V+ S+ T+ V+ ($ U+ W+ .@ .@ .@ .@ X+ W+ W+ @@ H% H% @@ +@ +@ @@ +@ +@ W+ +@ @@ +@ #@ +@ %@ #@ %@ I% }$ }$ J% >@ &@ K% >@ &@ L% -@ *@ >@ M% 4$ >@ '@ N% O% '@ ]@ )@ P% '@ Q% R% 9$ S% T% 8$ U% :@ V% |@ !@ b$ b$ 9$ W% l$ |@ ^@ f$ X% l$ l$ Y% a@ 2@ d@ h$ Z% `% 0@ o$ p@ & .& +& @& #& i@ $& %& p@ && t$ i@ p@ m@ j@ r$ t$ j@ *& t$ =& u@ o@ -& m@ ~. ;& <. u@ {. d# u@ >& ~. $. (. ,& z@ q@ c# -. '. x@ '& ;. %. 5# )& &. )& z@ !& 5# 5# .. z@ X P D$ D$ V P #% Y ` Y P P Y +% H H P@ S N w ~& G K@ A N {& H$ C ", +"+ % V@ # % R@ + + ; + > = ]& # ^& ; V@ + - V@ . & ] ] & ] - < ) / ~ ] ] N$ [ ~ ~ ] ) ~ `@ /& ) { W@ ~ ; { ) W@ ; (& | ) / 2 { } [ } ## $# 1 { ( | 4 $# _& $# < :& 6 6 8 ( 8 6 6 a e 9 $# 8 g <& < $# 8 &# e 8 a a g e i f g [& a }& n e e |& a c ~# r r h c h n Z$ `$ `$ _# {& 1& y h `$ y Z$ D :# x Z$ x C I N I I K x x A G 2& M A @% Q@ z }# A I 3# J I Y Q@ 3& Y K@ O@ A L J L@ X J H T U R S E$ #. L@ L@ C$ V D$ F@ #. C$ G@ =. V 4& .. z@ $% !. 5# %. b# %. ). ;. A@ !. ). &. &% 5& 6& x@ 7& v@ 8& 9& (. 7& v@ b# 9& -% ,% ,% }. 4. 0& a& b& 6. ;% u@ 7. 7. 6. 6. 6. ~% m# 6. ~% !% c& 9. d. m# 9. 9. d. e. {% c. i. d& q# {% i. i. e& f& g& o. j. o. n. o. n. n. t. h& i& j& <% v. s. k& x# l& s. y. z# s. z. 1% B. m& D# F. D. C. G. F. D. F. n& L. L. o& p& O. O. N. q& J. S. F# V. W. r& 0% G# F# Y. T. Y. Y. s& T. b% W. ++ b% T. L# s& T. + e% t& u& v& w& x& R# y& ;+ &+ z& g% &+ ;+ !+ A& B& C& D& k% (+ V# E& F& ~+ ~+ (+ (+ (+ /+ /+ _+ :+ :+ G& H& 2+ Z# |+ |+ |+ s% s% 6+ 3+ 1+ $$ 3+ |+ #$ $$ $$ I& e+ t% 7+ 7+ d+ %$ %$ %$ J& %$ K& 0+ 0+ u% *$ 0+ 0+ f+ d+ %$ L& l+ *$ h+ h+ l+ h+ n+ n+ n+ n+ n+ ;$ n+ h+ h+ m+ n+ h+ M& N& o+ s+ '$ s+ O& s+ y% t+ u+ u+ '$ u+ x+ w+ w+ z+ B+ B+ A+ C+ C+ E+ C+ C+ C+ B% P& C+ C+ A+ A+ A+ C+ D% C+ A+ E% Q& D+ B+ R& S& L+ P+ Q+ P+ L+ /$ T& Q+ T+ S+ R+ R+ T+ R+ Z+ T+ T+ S+ U& U+ V& X+ .@ X+ U+ .@ W+ Y+ X+ W& X& `+ +@ @@ @@ +@ .@ @@ @@ #@ W+ _$ @@ @@ +@ #@ %@ #@ }$ #@ %@ }$ Y& &@ *@ Z& `& >@ &@ &@ =@ >@ >@ * )@ >@ '@ R% .* R% ~@ (@ U% S% W% W% :@ b$ 9$ ^@ }@ +* |@ :@ 4@ g$ @* e$ 2@ |@ #* $* d$ %* &* b$ .& ** .& o$ =* -* %* a@ ;* e@ q$ i@ d@ >* h@ ,* '* )* j@ !* l@ *& ~* m@ u$ {* ]* ^* q@ x$ o@ q@ w$ (. (. :. d# =% t@ 5& !. /* x@ !. &. ,& !. -. ). ~. !. =. &. #. .. =. (* .. _* z@ $% z$ I@ P H@ P L@ H@ H@ D$ L@ H H P@ P T S H$ T K@ P@ P@ N A A :* H$ H P@ J ", +"$ <* $ + % + [* ]& % ]& L$ + # }* . ; ]& V@ T@ & |* 1* Q$ U$ ' & N$ - U$ ^ ; # & U@ ] > | ;# > ^ ) ^ [ | { ~ 2 ~ 1 | | 2 { } : 6 ) , 1 /& [ ) { / $# %# %# d 6 7 < *# e ## 6 $# [ } $# / 6 V$ 7 } &# 8 $# ## $# b 8 ~# 6 2* V$ ,# e 3* 9 g 8 c ~# 0 ~# ~# (# _# ~# n ^# Z$ h ~# Z$ p c 0 c p 4* G r y m y 5* D :# :# p t D ^# u N G 6* D x A x D 7* P@ z Y T A S I@ 8* P@ 3# z S Q@ J M@ P@ Y S T M@ 9* J 2& D$ L Z J J .. P P X +. 0* +. $% ;. &. A@ >. A@ +. -. +. A@ !. ). A@ %. x@ $. x@ !. a* '. |. b* =% {. '. c* |. d* ). t@ '. e* c# e# 9& 3. f* f* q@ 4. }. g* 7. n# 6. 6. 7. k# 8. 5. -& 7. h* i* 9. j* k* d. d. e. {% c. c. d. i. i. i. {% f. l* m* m. g& j. l. n* h& o. w# (% o* v. x# p* q* x# x# x# z. v. v. k& E. z. s. B# B. D. F. m& D. D. F. H. r* H. G. 5% 7% 9% G. n& O. J. 0% O. S. J. r& S. Z. S. F# F# F# Q. T. W. ++ ++ ++ J# s* T. ++ + s& b% u& #+ $+ t* u* R# v* R# w* -+ &+ =+ =+ &+ ;+ ;+ D& )+ x* =+ Q# y* ^+ ~+ ~+ (+ /+ ~+ (+ (+ ~+ ~+ /+ z* p% o% H& Y# A* B* C* s% H& r% s% D* E* 4+ 8+ 3+ s% 7+ 8+ t% a+ @$ D* 7+ 0+ 0+ F* 9+ d+ e+ 0+ %$ G* %$ *$ f+ 0+ j+ 0+ H* L& ;$ *$ h+ h+ h+ h+ n+ l+ n+ I* n+ l+ n+ h+ l+ n+ n+ ;$ s+ l+ '$ t+ s+ s+ J* x+ '$ s+ w+ w+ u+ w+ w+ x+ x+ x+ A+ B+ C+ B% B+ K* E+ A+ C+ A+ B+ B% C+ E+ D+ P& F+ E+ E+ E+ M+ E% C+ F+ D+ L* P+ P+ O+ R+ P+ Q+ L+ S+ Q+ S+ R+ P+ P+ G% R+ U+ R+ T+ V+ R+ X+ X+ X+ @@ W+ W+ U+ W+ .@ V+ H% M* .@ X+ @@ +@ +@ +@ #@ #@ +@ +@ +@ +@ @@ #@ #@ &@ %@ &@ %@ &@ &@ %@ &@ * &@ %@ =@ &@ '@ *@ *@ -@ >@ N* 2$ ]@ O* 9$ T% ~@ {@ ~@ P* U% Q* 1@ R* :@ /@ [@ d$ !@ X% S* f$ f$ 6@ 3@ T* %* X% l$ 9@ l$ X% 6@ U* 7@ .& o$ .& V* k@ m$ f@ W* p@ %& f@ X* u$ m@ Y* l@ -& Z* `* t$ o@ u@ -& ^* = W* -& u@ =& s@ t@ x@ %% b# w$ ). ^. v@ ^. z@ 5# (. *. ;. A@ ;. ). ,& 5# B$ .= G@ %. z@ &. z@ E@ H@ @. Z P Z J V E@ 2# ` 1# R M@ S += H@ S M J S Q@ O@ N@ I @= I #= w N ", +"[* # # * & - . - V@ . & T@ . $ V@ T@ V@ V@ > # > - ] $= & `@ . ] |* ] %= ~ ] | < 6 | ^ | ) Y@ [ ;# ~ ~ ~ ~ &= 4 $# / } | : { %= & 2 %= / { d < : < &# ( Y@ &# $# $# 1 d d 6 $# / 7 V$ b b V$ } *= [ a b 9 6 7 d ~# [& b g ~# 6 f a ~# == b c _# c {# c o -= _# ;= ~# p W$ Y$ n j c y Z$ C N q Z$ p ^# C C n N @% m N I z w x >= x P@ w A J I A I Q@ Q@ J A L@ H L Y C$ A G H$ U C$ P@ T H P@ H #. S L@ .= J C$ V 7# C$ I@ +. B$ ,= ,. 5# C$ 7# &. 7# +. . +. '= &. %. b# ;. )= b# b# . {. ~. /. /. d* v@ c* d# ). != t@ ^. t@ q@ ~= c* q@ {= v@ 2. l# }. a& 7. 7. '% 7. 6. ]= f# 7. m# p# ^= /= c. e. c. c. e. d. e. c. 9. (= e. q# q# i. i. i. j. w# /% m* _= k. := n. v# r. n* <= x# (% r. s. s. v. s. v. s. B# B# [= z. z. A. D. }= C. }= C. C. H. D. D. H. G. D. |= 1= M. 2= J. L. V. L# O. 3= S. O. F# F# F# H# H# T. H# T. N# T. T. T. ++ b% N# H# ++ T. + u& t* 4= ;+ $+ 5= ;+ -+ &+ &+ ;+ -+ &+ 6= 7= 8= 9= 0= D& a= (+ X# W# (+ (+ /+ Y# (+ /+ b= /+ m% `# 1+ }+ (+ c= Z# d= `# `# 2+ }+ t% 8+ 6+ I& 8+ 3+ 4+ t% t% a+ e+ 8+ a+ 0+ 0+ d+ 0+ 0+ 0+ G* 0+ e= 0+ i+ K& %$ f+ u% 0+ %$ ;$ j+ j+ l+ ;$ f= l+ h+ n+ i+ l+ n+ l+ n+ n+ n+ m+ l+ >$ n+ >$ t+ g= s+ l+ h= u+ s+ i= u+ w+ j= '$ w+ w+ !$ i= A+ A+ A+ B+ B+ C+ E+ C+ A+ C+ B% E+ A+ I+ C+ C+ A+ D+ D+ E+ E% k= C+ E+ l= N+ S+ L+ /$ S+ S+ S+ L+ /$ R+ S+ P+ P+ P+ R+ U+ X+ V+ V+ V+ R+ X+ .@ R+ X+ W+ m= X+ V+ F% @ n= m= V& @@ @@ #@ @@ @@ +@ +@ %@ W+ @@ #@ #@ %@ #@ +@ %@ #@ %@ #@ #@ +@ $@ o= *@ =@ p= 4$ *@ '@ q= {@ r= s= t= 2$ * 9$ ~@ u= T% (@ R% 6$ v= 9$ w= !@ !@ d$ x= :@ b$ f$ 9@ ** 6@ 2@ 8@ T* y= 7@ .& .& g$ p$ 8@ h$ m$ e@ .& z= A= =* ,* i@ )* u$ *& '* ~* l@ ~* ]* *& -& l@ <. B= u@ C= u@ (. s@ ~. D= (. {* (. (. '& ). ^. !. x@ ^. {. &. A@ *. &. x@ =. v@ A@ %. -. -. .= 5# >. z$ 5# $% L@ P 4# B$ 5# 4# I@ H@ O E= J T P Y S J@ M T M S Q@ @% Q@ F= z A S G z ", +"# ; # G= V@ + R@ + . V@ > # > . # V@ ^ * > H= - 1* . & > & U$ . ]& ] | { ~ ; & & ~ { 2 N$ N$ W@ ~ %# 2 2 < 4 2 ) $# : 2 } { W@ U$ 2 2 7 I= &# $# } $# 7 &# j $# [ 8 8 ( ~# J= $# / { $# e $# &# 7 ~# } &# 6 7 < 6 c g e ,# a e e K= 6 2* e a 7 j l h g c L= (# y g `$ n 0 l m {# r ~# Z$ s p p -= ^# M= `$ m C ^# C C A B ^# N N H$ A N M I z N@ J O@ I N= N M P@ A I Q@ E$ P@ I H S 1# L@ I@ L@ A X H )= H 4# V L@ I@ V V C$ T E@ .. 5# .= I@ +. H W P X O= 7# ). .= B@ C@ &. ). A@ +. 6# '. != ). != d* =. '= ~. '. b# 1. (. {. P= *% _. Q= q@ |. P= }. 2. 3. '% 8. 8. 8. 7. 7. R= 6. f# m# ^= 9. b. 9. d. 9. p# d. c. e. e. c. e. e. q# f. c. i. S= S= S= T= l. U= [% o* V= w# o. i& t. (% W= v. t. s. z. X= z. z. [= B# [= X= Y= m& F. Z= B. 3% H. H. D. D. D. M. 9% L. 8% `= 2= L. O. o& S. S. F# p& O. - S. .- F# J. G# Y. H# L# Y. T. M# K# b% +- b% K# b% u& @- #- #- ;+ B& $- g% g% &+ %- g% *+ =+ ;+ 7= &- g% *- 9= {+ (+ ]+ k% ~+ (+ =- -- X# Y# Y# (+ /+ m% _+ `# m% Z# `# 3+ A* 4+ ;- c= 4+ 8+ 1+ @$ t% t% >- 7+ t% $$ I& b+ 8+ d+ d+ G* b+ 0+ 0+ %$ %$ %$ G* %$ n+ ,- 0+ %$ G* d+ '- f= )- ;$ n+ v% n+ l+ l+ h+ l+ n+ h+ n+ n+ h+ >$ l+ n+ n+ h+ !- '$ )$ s+ s+ u+ '$ s+ w+ w+ s+ u+ x+ u+ x+ u+ ]$ B% C+ A+ C+ B% B% A+ C+ y+ C+ E+ C+ B+ ~- C+ B+ A+ R& C+ O+ {- ]- C+ ^- N+ S+ O+ O+ Q+ L+ O+ O+ Q& /$ /- Q+ Q+ /$ Y+ X+ ($ R+ (- V+ V+ Y+ X+ ($ W+ X+ X+ W+ X+ m= X+ _- `+ V& W+ @@ X+ @@ +@ +@ %@ :- @@ +@ @@ +@ %@ #@ #@ +@ %@ %@ *@ *@ %@ #@ %@ <- >@ %@ [- >@ *@ I% L% o= 6$ S% )@ (@ ,@ T% 5$ +* a$ 5$ {@ /@ R* d$ 4@ :@ W% }- |- 9@ 4@ b$ X% 4@ 9@ 2@ 1- 9@ 7@ 2- %* 7@ ** 3@ o$ o$ h@ m$ X* m$ i@ i@ )* u$ >* =* ~* {* ~* s@ t$ 3- t$ -& m@ C= -& s@ q@ w$ :. '& t$ x$ (. ~. d# >& ^. (. C@ v@ v@ /* x@ ). !. ). x@ A@ 5# $% -. 4- 0# 6# z@ #. ,. G@ .= H 7# .= #. 7# J G@ C$ M@ T L@ Y H@ J J Y L@ ` J S A Q@ Y G I I A I N ", +"= - M$ % ]& V@ # > V@ ^& ] | | N$ - 5- = . > + + 1* ; S$ ; ) . R$ ] H= ] ] & ~ N$ *# | *# ] | | ; ) [ ## $# 6- { ^ < 7- [ | [ [ X@ *# -# d { 4 } < ( / W@ b 6 ( ,# &# 8- d } a < $# 2 b a e *= -# $# $# b e $# e a 7 6 ,# h 9- c o h !# o 3* a c ~# n r c ~# s o L= r ^# r o r h Y$ 0- /# u m t `$ G D `$ I D B G p I C `$ :# /# z A 8* H$ I F= a- b- G Q@ x c- H J H$ J K@ P@ C$ H L L@ H T L@ P@ P@ Y L@ d- H T J@ #. O= E@ L@ R G@ . e- )& f- @. y@ G@ V (* e- 6# +. -. +. 5# A@ !. *. A@ b# '. v@ ^. ^. g- h- 9& v@ 9& ^. |. :. ). ,% *% 9& '. &% 0& 1. 9& q@ ;% ~% }. 6. 6. 8. 7. 6. 6. 6. 7. b. i- !% j- 9. m# m# 9. d. c. e. o# {% {% c. g. q# {% c. f. c. g& g& s# m. l. o. o. k- (% (% w. <% l- t. t. s. s. s. z. z. [= Z= m- B# E. D# F. n- D# F. D. G. D. G. G. o- G. O. J. 2= O. L. J. J. E# J. S. O. O. S. H# p- - Q. Q. H# H# T. T. T. I# K# ++ M# ++ `. K# + @- d% q- ;+ P# &+ d% %- &+ &+ -+ &+ ;+ ;+ ;+ S# =+ ;+ r- {+ ^+ ~+ k% ^+ ^+ s- ^+ /+ Y# (+ /+ W# (+ m% `# Z# Y# |+ t- u- 1+ s% 1+ 4+ v- w- 1+ 7+ 8+ 1+ t% t% 8+ c+ %$ 8+ t% 0+ %$ e+ %$ 0+ 9+ %$ e= %$ %$ *$ u% 0+ G* 0+ 0+ x- y- k+ I* l+ z- n+ n+ m+ l+ n+ m+ m+ l+ n+ l+ r+ m+ m+ n+ n+ A- t+ '$ '$ s+ u+ '$ '$ u+ !$ x+ t+ u+ w+ '$ x+ A% A+ B% B+ C+ A+ A+ D+ C+ A+ A+ B- A+ E+ y+ E+ A+ E+ E+ E+ C- E% C- A+ D+ k= Q+ O+ L+ Q+ R+ S+ E% L+ O+ L+ P+ S+ T+ Y+ T+ T+ S+ S+ R+ V+ V+ T+ X+ W+ .@ W+ X+ X+ Y+ Y+ <$ X& W+ @@ W+ #@ X+ W+ @@ #@ +@ +@ @@ +@ %@ %@ &@ %@ &@ +@ #@ &@ &@ &@ %@ &@ 4$ >@ D- E- * =@ Q% 4$ *@ 7$ I% F- q= G- * Q% R% /@ {@ H- I- 9$ J- X% J- V% e$ :@ ^@ f$ J- X% 1@ 3@ K- 6@ c$ 8@ L- 6@ .& h$ X% a@ m$ m$ 0@ d@ ;* m$ c@ 0@ e@ 0@ i@ >* f@ ^* ^* t$ M- p@ k@ -& m@ N- =& (. O- q@ <. '. P- :. Q- :. b& x$ c# (. ^. '& v@ ). )& ^. A@ >. 5# -. ;. z$ 5# .= E@ R z@ 5# +. V E@ B$ X ` C$ 5# Y T T X T H Y E= J I I P@ M A z H$ A z A N :# A A ", +"& > $ R- + S- R@ + # # 1* Q$ + V@ H= - & - H= ; & - > ] > & - 2 ) ; [* 2 ~ ^ | | | ; 1 ] - ) ) { T- | ## { ~ 2 1 & ) 2 : [ ## < $# -# ## { < 6 7- 3 { -# &# { $# V$ Y@ ( &# :& ) < Y@ ( 7 7 7 7 V$ j U- i 6 7 } : V- n L= $# n L= 7 e ,# g e $# c n ~# o Y$ `$ j h _# L= _# h l n n _# y r _# p r G C C G ^# #= N ^# {& N C N D Q@ S M A Q@ I S A K z H$ M L@ P@ E$ P@ T I #= U L T P@ P@ D @% C$ P@ Y D$ H G@ 4# P =. I@ z$ V C$ X . L@ R 5# )& ). G$ $% A@ '= b# ). A@ z@ &. W- =. &. b# ^. '& '= (. 5& $. 5& v@ {= *% '= {= w$ b# _. :. {= 2. 9& e# e# 7& j# >% X- }. 7. 7. 6. 7. 8. 6. ^= !% 9. 5. Y- 9. e. e. e. e. c. e. c. {% e. {% {% i. f. Z- q# f. f. h. S= t# m. n* o. l. l. o. o* s. i& v. v. k& s. z. [= z. s. 1% 1% `- z. [= F. C. D# C. C. F. F. D. H. H. H. J. E# ; J. J. L. O. S. O. S. p- o& R. p- p- r& Q. T. T. T. F# H# b% ++ K# ++ M# %+ t* s& .+ #+ .; t* 4= ;+ &+ z& +; #- =+ ;+ ;+ &+ &+ -+ ;+ Q# @; x* #; $; ~+ ]+ %; ~+ X# /+ E& (+ (+ ~+ /+ Y# &; `# :+ /+ H& `# s% |+ H& `# ;- u- 8+ 3+ 1+ 8+ 8+ +$ t% $$ b+ G* c+ t% a+ %$ e= %$ 0+ %$ d+ a+ 0+ G* u% i+ %$ 0+ %$ G* *; g+ n+ f= k+ m+ h+ n+ h+ h+ l+ l+ ;$ l+ h+ n+ >$ =; f= l+ h+ h+ M& A- -; '$ w+ u+ s+ o+ w+ w+ s+ i= !$ x+ w+ A% C+ A+ A+ A+ B- B+ A+ A+ A+ B+ A+ C+ ;; E+ C+ A+ C+ D+ E+ D+ M+ E% C- E+ E+ >; Q+ /$ O+ Q+ R+ Q+ /$ O+ k= S+ S+ R+ R+ S+ V+ R+ R+ V+ Y+ ,; V+ V+ V+ V+ X+ .@ Z+ Z+ Z+ W+ H% :$ @@ X+ #@ #@ W+ W+ +@ #@ @@ +@ #@ %@ *@ &@ &@ &@ #@ %@ '; *@ &@ *@ K% ); *@ !; [- ~; &@ Q% >@ '@ Q% {; 5$ R% /@ R% {@ V% {@ O% 8$ N% R% U% ]; /@ @* ^; /; 2@ f$ |@ (; }@ 2@ 7@ 9@ |@ l$ 6@ a@ 6@ _; 7@ 7@ l$ .& =* o$ e@ X* h@ g@ 0@ d@ h@ p@ i@ j@ j@ m@ u@ x$ :; =& l@ -& x$ ^* v@ q@ w$ v@ (. B@ c# /* {. /* 5& w$ (. d# d# '. ;. A@ z@ <; !. . 5# $% (* &. A@ -. 5# =. 5# =. z$ z$ [; }; L@ P@ R H 2# Y D$ P@ I Y H$ |; M J P@ I I I ` H$ z A z I G ", +"+ M$ # . V@ . & + > & . - %= > $ ] - V@ ; S$ > > ; . - > & = R$ (& ] ; & | %= W@ ~ S$ ; X@ ~ ~ N$ ;# 2 ~ 2 | N$ { ) +# 1 { [ } : / ## < ,# d { 1 7 $# } ) ## V$ } : ( $# &# $# ## } 6 } &# 7 } { 9 6 6 8 V$ a g a 7 h g g g e e a e j r a s c 1; c Y$ `$ ~# 2; y h h h h Z$ `$ y Z$ ^# C G y G #= z x A m C m Z$ C P@ x 7* N x M M M@ P@ N@ L@ M I A J S C$ M@ G$ 3; 4; H Y E$ M T U H B$ D$ X .. X H@ z$ @. #. z@ 5# @. @. +. 7# 9* . E@ @. y@ (* . ;. z@ #. +. &. $. 5; -. =. ~. ~. b# A@ &. x@ v@ 6; 7; v@ x@ *% 7; c# h# P= *% {= 8; 9; ;% ;% :. e# f# f# 7. 7. 6. k# 7. ^= 7. 6. i- 0; a; 9. 9. d. d. 9. d. d. e. e. c. Z- Z- i. r# {% {% i. f. g& S= l. n* b; n* w# <= <= p* v. [% r. v. X= z. t. v. B# v. z. k& v. v. c; D# G. D# z# D. H. F. 6% H. G. M. q& `= L. L. O. J. O. F# - S. o& r& J. W. - d; Y. S. .- ++ H# .- b% ++ N# M# M# M# .- b% M# +- e; f; g; R# ;+ g% .; .; &+ )+ &+ =+ &+ &+ &+ Q# !+ h; =+ k% ]+ /+ Q# (+ /+ /+ (+ (+ /+ (+ /+ /+ (+ _+ `# 2+ /+ Z# s% s% H& s% |+ |+ #$ 3+ 4+ 3+ i; 6+ 8+ $$ 8+ j; e+ J& 7+ 0+ b+ a+ %$ %$ %$ 0+ %$ e= G* ,- k; G* u% ,- %$ '- g+ )- f+ h+ n+ m+ l+ l+ ;$ l; m+ m+ n+ ;$ >$ l+ n+ n+ l+ h+ n+ s+ t+ '$ x% J* s+ >$ o+ i= u+ s+ s+ !$ u+ j= A+ C- m; A+ B% B+ B% A+ C+ E+ n; A+ ^$ A+ C+ B% C+ B+ E+ E+ o; Q+ M+ C+ E+ D% L+ L+ E% O+ S+ Q+ T& Q+ R+ S+ S+ P+ R+ G% R+ T+ R+ T+ L+ S+ T+ T+ V+ X+ .@ .@ X+ X+ W+ X+ _- @ W+ W+ X+ @@ #@ p; +@ +@ +@ +@ +@ W+ #@ $@ [- q; &@ *@ &@ %@ ;@ #@ &@ ~; *@ *@ Q% r; 1$ I- N% * '@ ~@ I% * s= s= W% s; /@ w= ,@ t; R* e$ b$ !@ R* ^@ 9$ ]; U% 2@ 4@ |@ |@ X% 6@ u; l$ j$ a@ v; e@ w; a@ 0@ =* x; o$ u$ )* y; p@ ,* >* h@ W* >* >* o@ q@ M- t$ t$ q@ Y* o@ u@ i@ ~. -& l@ :. t@ 7; {. (. s@ 0& x@ &. v@ '. '. *. C@ -. x@ !. !. +. A@ &. A@ B$ -. e- (* G@ +. 5# C$ X B$ .. .= }; L@ G@ C$ 1# S z; P@ H ` ` X S M@ I z H$ Q@ M A I I A x ", +"# L$ . ; R- $= V@ > > = # > & N$ # U@ V@ - ] S$ & > - T@ > |* ; ^ ] ] ] ; | $= | A; ) ) ] ) W@ 2 ^ 5 { | ;# ; ^& J= ) %# | [ [ 1 : ( &# 2 } < == { 5 < : &# } $# [ 6 V$ 9 $# b d ~# X$ } $# b 6 b -# 6 B; a d } ( 1 c o 0 0 g e a 7 Y$ 7 V$ 6 7 ~# n ~# h c h t Z$ _# s p -= n o C; Y$ ,# _# f /# D _# `$ s O@ m % {& B Z$ ^# m D; N G B I A @% M O 7* A J P@ E$ H$ A S A A M E; T J J M J H T G$ P L@ W R P H 4- @. T E@ .= X 5# W @. z@ .= W A$ 5# )= F; A@ ;. ). C@ G; '. $. ). ). ,. ). '. !. h- !. /. =% 8& 7& /* /* |. H; 9& |. 8& {= X- s@ s@ g# g# }. ^= 9; 8. 8. 9; 6. '% '% 8. I; >% !% ^= ~% d. 9. d. d. e. e. {% {% e. e. {% q# q# Z- i. q# g& S= J; f. p* l* K; o* o* L; W= u. v. (% v. t. s. t. t. k& z. v. [= z. s. M; 3% D. B. N; O; P; F. G. 6% G. D. G. H. 9% J. L. L. N. L. E# O. q& p- O. Q; F# F# Q. O. F# H# .- .- ++ ++ ++ + R; Y. b% .- t* b% #+ `. b% d% ;+ u& R# d% &+ =+ =+ =+ -+ &+ 7= D& S# *+ 0= *+ S; T; X# <+ /+ Y# Y# Y# /+ /+ /+ b= /+ Y# Z# Y# Y# Z# s% 1+ 6+ 1+ s% s% @$ 4+ I& 8+ 8+ 1+ +$ D* 7+ @$ 0+ t% 8+ c+ e+ 0+ G* d+ d+ d+ u% 0+ e+ d+ f+ %$ u% u% G* U; '- j+ *$ n+ l+ n+ m+ l+ k+ f= m+ n+ m+ n+ n+ l+ n+ l+ =; m+ h+ '$ s+ t+ V; W; {$ t+ '$ w+ w+ o+ u+ x+ w+ x+ A% C+ B+ A+ B- C+ A+ w+ B+ B% B+ A+ C+ D+ E+ y+ E+ E+ E+ F+ A+ Q+ X; C+ D+ C+ Y; P+ Z; L+ S+ S+ Q+ L+ R+ R+ P+ R+ R+ Q+ P+ G% R+ T+ G% /$ V+ .@ X+ W+ W+ U+ X+ X+ Z+ `; @ X& X+ .@ W+ X+ `; +@ W+ @@ @@ @@ #@ #@ +@ #@ +@ %@ *@ &@ %@ > > <- &@ ~; I% '@ *@ >@ * t= .> U% 7$ * +> >@ )@ * U% * '@ {@ /@ !@ R% V% v; }@ @> W% S* @> X% X% X% /@ 8@ 6@ 6@ m$ o$ m$ o$ a@ Y% 0@ X* ;* -* 0@ )* e@ ;* u$ j@ && f@ ~* l@ o@ i@ n@ p@ l@ l@ u$ m@ 3. j- O- <. =& -& q@ q@ ^. x@ u@ #> v@ d# u@ B= ). &. {. {. !. !. &. -. -. A@ 5# $% &. 5# A@ C@ A@ #. z@ . R #. X $% $> 4# J F@ H@ M J I@ H@ H S %> S Q@ L@ J M J P@ 7* &> K@ M= I z ", +"+ # $ $ R@ # & + # T@ = ; = Q$ R@ ^ > > U@ ; - > > > + S$ & { ] ; [ ) ~ ] | N$ N$ | ~ < [ ^ ) ^ # { ## ; ~ *> , : [ [ ~ ~ 2 : < ] : $# } X@ } *# < [ $# < ## &# V$ : b 7 6 a j &# => V- 8 =# =# V$ -> -# 3* 7 ;> 7 0 h :& i c o e a e i >> a ,# ,# ~# h *= 7 0- ,> ~# r Y$ Y$ p h r `$ c C; y y '> h D M= C G D ^# F +% C C G G A A N C K N O O@ M I U M@ E$ J S D$ )> K@ 8* T L@ P@ X T T L@ I@ H Q@ Y L@ ` D$ O= X R H B$ $% 5# +. W )= #. !> O= z@ A@ . (* ;. ;. &. =. =. ). =. =. {. (* $. '& /. {. v@ {. |. {. |. {= t@ P= j# e* v@ e* Q= h# a& a& a& ~> g# k# 9; ;% 6. 4. 7. 8. 8. 6. ^= Y- e. 0. {> m# 9. d. e. e. 9. {% c. e. ]> {% {% c. f. Z- i. ^> /> m* l* n* K; J; n. s# n* (% (> <% [% o* v. v. s. v. s. u. s. z. _> :> <> Z= 3% F. D# [> 4% H. G. 6% H. H. H. 5% q& F# J. `= O. S. O. O. S. @+ V. L# Y. S. O. F# S. }> b% F# |> ++ T. ++ b% ++ ++ t* b% 1> M# f% #- #- g% &+ u& 2> 7= &+ ;+ *+ ;+ 7= 3> =+ =+ ;+ r- 7= #; ^+ /+ 4> (+ (+ 5> b= /+ ~+ ~+ (+ /+ c= `# Z# /+ _+ s% s% :+ _+ 1+ `# I& @$ 3+ #$ 7+ 3+ I& t% 7+ 7+ %$ 0+ 7+ e+ d+ d+ d+ d+ d+ %$ %$ d+ %$ 0+ *$ u% f+ i+ G* e= g+ l+ l+ 6> l+ l+ l+ q+ n+ l+ l+ l+ n+ n+ n+ n+ n+ n+ >$ ;$ h+ -; s+ s+ >$ W; 7> '$ s+ !$ !$ 8> s+ w+ w+ v+ 9> x+ C+ A+ A+ A+ B% y+ C+ A+ A+ A+ E+ D+ E+ n; B+ C+ C+ E+ C+ E% E% E+ E+ E+ 0> N+ Q& O+ a> O+ /- P+ S+ L+ S+ R+ R+ T+ /$ R+ V+ Y+ T+ S+ T+ .@ U& W+ W+ U+ W+ W+ U+ X+ U+ _- b> X+ `; W+ @@ W+ W+ @@ +@ @@ +@ %@ %@ #@ [$ #@ &@ #@ p= c> [- *@ *@ #@ %@ &@ -@ 4$ p= >@ q= d> e> * P* f> )@ /@ 9$ H- ^@ :@ T% S* 9$ !@ g> 3@ ^@ L- 4@ W% h> X% l$ f$ i$ 2@ 8@ ;* 8@ v; f$ 7@ 0@ X* c@ o$ o$ d@ %& t$ )* g@ +& r$ :; i> s$ {* t$ p@ m@ a. l@ `* =& i> u@ j> u@ ;& k> u@ ~. ). ~. w$ a# {. = w$ (. 5& x@ (. t@ -. {. l> ). !. ). 5# *. !. &. z@ =. (* m> $% E@ a* .= Z E@ n> .= G@ B$ U K@ E$ H Y H E$ o> P@ J P@ L@ H ` H P@ :# I 8* M I ", +"> V@ - * # > Q$ + . . ]& ; $ > + . ; & H= `@ ] - . ] + ~ $ V@ ^ ; Q$ | ~ | N$ | ] { ; ] ~ ~ ~ $# Y@ ] ; $# ) { *# ~ ) ( p> } 6 ## { [ } $# 2 ## &# ## ) : 6 $# < : ( : ~# 2 8 9 e } $# 0 q> ># 7 b } 7 g 6 -# 1 0 ~# e ~# 0 r> J= g h j V- e e n g 7 a '# }& Y$ c Y$ r s> Z$ `$ Z$ Z$ r `$ q G `$ % :# C Q@ A G F 7* E$ D P@ |# I K I z A x w H C A H$ I H S Q@ Y E$ I Y Y M A ` t> C$ 3# C$ I@ T D$ P L@ T C$ T D$ L@ D$ C$ 5# 7# +. E@ +. 7# 5# . . 4- . z$ !. . A@ 5# ;. x@ A@ b# *. . {. u> '. b# v@ ). v@ /* t@ -% _. 9& 9& 1. :. v> 9& d* h# b& a& }. X- 9; 7. }. 8. 9; 8. 7. g* 6. ^= 0. 9. b. 9. d. e. e. e. c. e. w> e. c. c. c. c. d. f. c. q# q# r# l. x> j. o. x> w# n* n* v# o. t. y> (> w. z> v. v. s. 1% t. z. X= A> Z= B> B# }= 4% Z= P; C> D. D. G. G. H. n& L. S. J. `= O. F# J. H# D> L. o& F# Q. Z. V. H# Y. Q. T. H# 1> H# s& ++ t* b% b% ++ b% E> s& u& u& c% 7= &+ f% g% -+ =+ ;+ ;+ 7= 3> 3> F> F> ,+ 9= G> *+ j% /+ a= H> /+ I> Y# b= W# /+ Y# (+ b= |+ o% b= c= s% 1+ |+ s% J> 1+ 1+ 3+ ;- 6+ 7+ @$ @$ @$ 7+ t% K> 0+ 7+ b+ 0+ %$ %$ d+ %$ a+ 0+ %$ 0+ %$ -$ f+ %$ )- G* k; 0+ n+ ;$ g+ j+ ;$ ;$ h+ L> l; ;$ l+ l+ ;$ m+ h+ r+ n+ ;$ s+ n+ n+ s+ s+ j= x% 7> t+ s+ w+ x+ x+ M> N> {$ !$ w+ w+ A+ C+ A+ K* B% A% A+ C+ A+ B+ C+ A+ J+ A+ C+ A+ E+ ~- D% C- L+ M+ O> A+ D% S+ P> L+ Q+ E% R+ S+ R+ /$ P+ R+ R+ T+ G% Y+ X+ V+ T+ V+ Y+ U& V+ W+ X+ @@ W+ @@ X+ X+ X+ .@ Q> W+ W+ W+ @@ W+ W+ +@ #@ +@ +@ +@ +@ +@ +@ +@ %@ %@ ;@ R> #@ *@ *@ *@ %@ *@ S> $@ >@ `& ,@ H- '@ =@ q= ~@ q= * :@ +* T> H- {; R* 9$ {@ U> !@ R* 4@ e$ 4@ f$ }@ X% X% 3@ 6@ 9@ 6@ 8@ l$ i$ c$ h$ 3@ g@ >* ~* q@ m@ -& l@ -& q@ B= q@ '& ^. = x$ w$ c# (. B@ V> w$ ^. d# _. t@ !. '. = {. q@ ^. x@ ,& '. {. b# {. {. W> B= = :. '. x@ ). !. ). &. &. .. A@ e- &. A@ 5# 5# +. &. @. 5# }; X 4# @. G@ H@ T X> J R }; H P A O S H$ J J@ A A G H$ |; Q@ I ", +"* & V@ . V@ # % + R@ [* . R@ + > - - ' $ ; ; . # ; U@ . * # ] V@ > > ] ] *> ; 2 ~ ~ ^ X@ 2 -> *# 2 2 N$ N$ ; N$ / 2 N$ [ == : &# 5 5 ## [ *# : ## { [ $# | | } 2 < a $# -> V$ ) W@ b b &# [ Y> == b 6 b } d b b 7 -# b 6 8 6- q> c a j r ~# c Z> i ~# o *= 7 o ^# ^# L= N p C; ^# m _# h p y p p n `$ x D w s 6* M C I :# C a- {& M= G I A P@ P@ K@ M ^# G P@ L M I L 8* J J Y P@ I@ H L L P G@ 9* D$ 4# L@ P H T I$ J M@ U @. X .= G@ 5# (* . . +. %. A@ 6# ). -. =. ;. =. *. A@ +. =. A@ -. '= 9# &. '. |. 5& ;. |. 1. `> ~. v@ , 8& t@ :. c* , s@ b& b& ., P= e# 8. 4. a& }. R= 6. 7. +, 6. 8. 9. m# 0; Y- 9. e. d. e. {% d. d. e. e. c. c. c. i. i. {% f. g& f. l* f. u# (% J; n* (% t# p* v. q* := r. (% @, v. z. s. k& v. _> s. s. z. A> #, H. $, z# 9% G. H. `= D. D. D. H. K. L. L. Z. o& J. O. S. H# F# S. F# Q; a% F# O. F# T. ++ Y. L# ++ ++ b% q- +- $+ b% s& #- +- u& b% $+ &+ ;+ -+ &+ &+ -+ &+ =+ 7= ;+ ;+ F> S# 7= r- D& ,+ -- %; %; (+ (+ /+ Y# ~+ (+ Y# Y# %, b= |+ 2+ Y# %, s% }+ %, 1+ }+ |+ q% s% s% r% 3+ ;- 6+ t% 8+ b+ %$ F* 7+ K> G* %$ 0+ %$ %$ %$ G* G* %$ u% )- G* 0+ j+ G* &, *; h+ U; j+ l+ *, n+ n+ l+ l+ L> l+ l+ ;$ n+ >$ =, n+ l+ l+ n+ o+ u+ s+ '$ w+ u+ s+ '$ x+ w+ M> '$ w+ w+ x+ '$ C+ A+ A+ B% B+ B- A+ C+ C+ B+ B+ A+ A+ D+ B+ C+ E+ C+ J+ E+ C- O+ M+ C+ F+ 0> Q+ L+ L+ Q+ Q+ R+ R+ R+ S+ R+ L+ S+ V+ T+ U+ T+ T+ R+ R+ T+ T+ T+ .@ U+ U+ W+ X+ W+ Y+ T+ -, ;, @@ W+ +@ +@ W+ W+ V& @@ @@ #@ #@ +@ &@ &@ +@ p; #@ %@ &@ *@ &@ *@ > *@ *@ &@ ~; 1$ 4$ R% T% * Q% ]@ N% ~@ O% >, W% ~@ T% {@ s= 0$ !@ b$ !@ R* 4@ }@ }@ b$ :@ l$ |@ l$ v; 6@ a@ w; d# R b- Z> : %# ,, ', ', 1* ), !, ~, {, ), ], <* ^, ], <* % ), ,, /, S@ ), ^& ^& W@ # (, _& _, :, v <, V L@ #. )& %% '. {. -. c# {. ). )& -. &. )& [, =. B$ )& *. ;. X . z$ 5# e- 2# 4# G@ z@ H@ C$ L@ H@ Y C$ Y A ` S U K@ I$ S A J@ J +% K@ G P@ M@ O@ M ", +". > !, . # + + ' # }, Q$ = # # $ U$ Q$ S$ # # U$ ; > N$ V@ > Q$ ' . $ ; ~ N$ N$ O$ W@ | [ ~ ~ ( ## ) ~ ] 4 ] ## W@ U$ ~ ] ) ~ ( : < ( $# &# ) [ / { 2 : ~ { ~ |, 5 0 a $# ## ( $# V$ [ $# $# d 6 /& { 6 $# 6 9 -# ,# 7 V$ b } ~# 0 o 8 7 e c 9 V$ 7 r L= c ~# c _# p 1, -= }& <, s> % D m p F= `$ 2, _# y w 3, t Z$ G N C M t N 4, w z x Q@ N I P@ S J I N Y P@ Q@ N E$ 5, H +% J P J S S I@ C$ J R Y C$ Q@ C$ Q@ L@ L@ L L@ P T V C$ E@ $% 4& +. 5# b# $% -. %. +. z@ 6, %. A@ .. *. *. '. &. ^. 7, ;. &. '. /. 8, d# 9& ~. ^. ~. ~. 9& v@ t@ h# 9, h# ,% j# s@ 9; 7. 0, f# 8. 2. 9; 6. 6. 6. ^= 7. 7. 0. m# Y- Y- e. d. c. e. {% d. e. c. c. c. h. i. i. g& q# i. i. f. g& g& v# o. (% o. o. n* o. y# v. q* u. n* s. v. v. z. s. A> A# k& A# m- [= a, H. b, 3% H. 6% G. G. H. F. G. 6% c, O. S. J. 3= d, o& J. S. S. S. S. S. S. H# d; .- F# b% t* s* b% ++ ++ s& t* b% s& q- #+ `. N# c% $+ 7= =+ $- .; $- =+ =+ ;+ ;+ g% =+ =+ #; S# e, F> S# y* ]+ S; /+ (+ /+ W# b= Y# Y# Y# /+ (+ /+ `# 4+ W# Y# A* }+ f, 1+ t- |+ |+ g, I& 8+ #$ 4+ t% 7+ 7+ h, 0+ $$ c+ %$ 0+ K> G* G* i, %$ G* %$ i, j+ ,- e= f+ u% j, x- h+ -$ j+ n+ U; n+ h+ l+ h+ n+ ;$ l+ n+ l+ l+ h+ n+ ;$ l+ n+ >$ w+ '$ t+ '$ w+ s+ '$ '$ w+ x+ '$ u+ x+ !$ s+ B% C+ B% C+ A+ B+ B% B+ A+ k, B+ A+ A+ E+ K* B+ C+ C+ A+ E+ k= X; L+ A+ D+ 0> N+ Q+ O+ P+ S+ S+ R+ S+ P+ L+ P+ T+ S+ P+ S+ R+ R+ T+ R+ R+ T+ T+ U+ .@ .@ U+ .@ Y+ @@ @@ X+ -, +@ +@ W+ W+ +@ @@ +@ #@ +@ @@ #@ #@ +@ %@ %@ &@ %@ %@ %@ *@ *@ &@ l, 4$ &@ m, S> -@ ~@ *@ * `& (@ '@ ~@ O% T% 9$ 6$ !@ t; {; u= O% V% @* ^@ 4@ :@ W% |@ /; n, o, |@ 4@ 3@ l$ ** p, 7 . q, ], r, s, t, s, u, s, s, v, w, x, u, x, y, x, u, x, s, x, z, t, x, s, x, A, A, s, t, x, s, v, s, x, s, q, V@ <, &. ^. c# x@ !. !. z@ !. !. &. A@ ). ). =. A@ .= z$ &. E@ z@ (* .= z$ P P L@ L@ P P }; B, T C, J P S H A P@ L@ P@ S S H$ O I H 3# G A ", +"M$ ; R@ ^& T@ $ % V@ > S$ > ; V@ # U@ + Q$ > > & ~ ] & %= ] 1* & ] ~ ) ~ ^ ; `@ N$ ) ] | ) ) ; ; ; X@ X@ W@ U$ [ ) { ) ) / | ~ ~ } { *# 9 [ { ) [ 2 : : 2 { , $# &# D, 6 $# J= $# b &# < J= 6 6 Y> i e *= a b V$ 6 d q> a q> !# L= i c ~# E, c 0 n j 0 ~# n L= ~# r Y$ ^# _# m _# D `$ r o m ^# h ^# Z$ ^# C C p D w I w P@ t 4* P@ x Z$ G x G x C G S H$ I S A H$ H A Z A M L@ 1# L Q@ L@ L@ D$ C$ C$ Y z$ G$ P L@ E$ M@ V L@ R W E$ Y .. A@ C$ z@ . ). B$ 7# $% T #. &. )= z@ .= *. ;. F, =. 5# &. =. {. {. ). !. {. /. ~. ). !. ^. (. v@ 1. 3. s@ *% {= j# ,% h# ;% }. g# 7. a& 9; g* 6. 6. 6. 7. 7. ^= p# m# 0. G, 9. d. d. 9. e. {% c. {% {% c. f. i. q# r# {% f. g& f. H, J; I, V= J, _% x> <= r. m. <% w. p* v. l& v. [= t. t. v. y. z# m- m- X= m& D# b, 6% G. F. 6% H. 6% H. 6% K. S. c, O; K, O. F# S. F# O. S. S. S. F# H# F# H# d; ++ T. b% $+ s& ++ s& s& s& b% ++ e% .; c% u& L, ;+ =+ &+ f% 2> ;+ =+ &+ M, &+ ;+ &+ !+ a= 7= N, ;+ ]+ /+ A* k% O, /+ b= b= (+ Y# b= (+ Y# Y# p% `# /+ -- |+ |+ 3+ t- g, u- s% 1+ I& s% 7+ g, +$ t% 8+ I& 7+ 7+ K> %$ a+ a+ %$ e= G* %$ e= %$ e= e= u% e= %$ j+ j+ U; g+ n+ 0+ ;$ P, Q, v% m+ n+ ;$ n+ n+ h+ l+ l+ r+ n+ h+ l+ n+ =$ J* '$ t+ s+ '$ )$ '$ s+ !$ w+ R, j= u+ u+ o+ S, A+ C+ A+ B+ C+ C+ B% A+ C+ C+ C+ C+ T, A+ A+ A+ C+ A+ D+ M+ C- Q+ C+ E+ D% ;; O+ O+ E% P+ /- S+ R+ R+ Q+ S+ /- S+ S+ R+ V+ ($ S+ R+ R+ V+ T+ .@ X+ X+ .@ +@ #@ W+ @@ X+ X& H% @@ %@ V& @@ +@ W+ +@ +@ +@ @@ %@ #@ #@ +@ &@ %@ %@ &@ %@ %@ > E- U, V, $@ -@ 4$ !; W, ]@ 7$ * '@ Q% 4$ )@ T% ]; N% w= ,@ {; O% /@ b$ 2@ :@ }@ R* 9@ |@ X% 0$ 4@ |@ X, Y, 9@ 5# 1 Z, J$ `, x, v, ' s, v, t, ' u, A, x, x, x, .' z, s, +' @' z, u, s, s, s, y, z, s, y, x, x, s, t, z, x, #' s, +' $' z@ ,& %' ^. !. ;. z@ A@ x@ ^. =. !. =. =. .= !. 5# &. 8# A@ +. 5# D@ L@ H T P H@ V 2# D$ H 7# L@ &' 2# H M M@ J J M@ H H M Q@ N I 6* I ", +"+ # # - }* . # ), # - Q$ ; - - > > + . *' & ] =' ~ - N$ 4 U$ ) ) & U@ ] > - ^ ] { 2 ! ; X@ < R$ 7- [ ) ## : { ) ~ { d ) U@ { [ ## 7 / ] { _ ~ $# :& } : ~ ( } &# $# $# &# d /& { 6 / e &# 6 e b *= e a ~# 6 } a ~# ~# e h n n a c c i ,# a V$ r o Z$ h `$ m % p Z$ p q ^# m `$ ,> `$ D /# r r D G C C G B G y M= N Q@ S |# O@ S I A G P@ J N |# P@ 3; P@ O E$ M P@ T D$ M@ K@ L@ Z J P@ H ` H$ L 7# K@ P I@ 4# I$ 2# X V d- Y $% a* )& +. =. ,. )& 7# 5# A@ A@ +. .. z$ *. !. 0# -' &. A@ ). $. ;' &. a# {. 9& ). 9& v@ v@ `> >' {= e# t@ a& 8& j# , t@ q@ ~> 8. ;% a& 9; 0, g* 4. 9; 7. 6. ^= 6. 9. ,' 9. {> '' 9. d. c. e. e. 9. {% c. Z- c. ^% q# q# Z- h. q# S= o. g& J; w# l* n* p* H, )' v. s. <% (% <% v. v. s. s. z. A> k& c; z. c; A. C. D. D. !' 4% 6% D. G. 6% 6% ~' E# J. N. {' ]' Q. S. Y. S. .- S. F# F# F# F# F# F# H# T. ++ .- .- b% b% W. t* ^' +- f; #+ T. t* .; /' z& z& (' (' 7= 7= )+ (' ;+ =+ =+ =+ =+ _' :' F> *+ {+ <' [' {+ (+ Y# (+ Y# /+ Y# Y# (+ b= Y# &; s% /+ Y# |+ 1+ 5+ H& 1+ |+ |+ +$ 1+ s% t% ;- 5+ 7+ 7+ 8+ x- a+ 8+ c+ %$ d+ 7+ 0+ 0+ e= 0+ k; %$ e= ,- G* e= ,- f= %$ }' g+ ;$ j+ ;$ l+ n+ ;$ ;$ |' g+ l+ h+ l+ ;$ l; l+ l+ l+ n+ s+ t+ t+ 1' s+ 2' u+ s+ '$ u+ x+ w+ )$ x+ w+ w+ x+ B- B+ B+ B+ B+ A+ A+ B% C+ A+ C+ C+ B+ B+ C+ E+ C+ >; D% l= E+ {- B+ D+ E+ k= E% O+ O+ N+ /- P+ P+ R+ L* P+ S+ R+ T+ V+ T+ U+ T+ T+ T+ T+ .@ V+ Y+ Z+ X+ +@ @@ Y+ @@ Y+ H% W+ V& #@ @@ @@ @@ V& #@ +@ +@ &@ +@ @@ @@ Z& :- $@ ~; ~; %@ &@ &@ >@ >@ 1$ U, -@ > * G- ]@ e> Q% I- )@ 3$ q= T% (@ ^@ 3' 0$ 4' :@ ~@ 9$ X% 2@ ^@ 4@ 9@ 3@ 9@ (; u; x= 4@ 3@ i$ 7# *# # ], 5' 6' 7' s, 8' u, x, s, s, y, y, y, y, y, u, u, x, s, x, u, s, s, x, v, y, y, y, s, s, y, u, x, x, r, v, +' !, 4& ,& ). ,& w$ A@ A@ x@ x@ '& e- 5# *. -. z@ z@ 4- *. +. E@ G@ R z$ G@ 1# P Y J@ 9' . 1# 2# P ` H$ H H@ P@ M@ ` 8* P@ Z S M M@ ^# A I E$ ", +"!, > @ . + # T@ + > V@ . T@ 0' ]& ; . ; - . ; $= ] $ 1* 1* H= N$ %= 2 ; N$ Q$ > & ; | ~ U@ ~ ] U@ 2 { ] | W@ ( { W@ | ^ 2 2 / ~ < 2 < { d (, $# &# $# : { U- ,# } ~ { [ :& e == j ~# { $# &# V$ 7 == d e a c a 8 6 8 0 a e ~# Y$ _# o a' a ~# a c a ~# `$ h e `$ r ^# r Y$ p o `$ 1, p b' D q r p n l `$ G G <, C [# x z D K w A M x ^# A 8* c- A N G K@ A M &> M Q@ c' A T T P@ P@ 4# d' M@ I@ E$ 2# L@ T W 2# U C$ G@ J P C$ H P @. L@ H 4# y@ G@ $% A$ &. E@ P #. . ). _* )& ,. A@ =. '. -. ). {. ~. b# p, '. =% '. %% {. {. e' 9, *% -% {= P= Q- 3. P= h# e# a& a& 4. 2. f' k# f' f' g# f' g' ^= ^= a; ]= ~% d. !% !% d. e. {% e. {% {% {% {% Z- {% {% i. i. {% Z- h. /% n* l* S= n* f. n* k- h' (% o. <% w. o. r. v. t. s. z. [= s. z. A# z. [= Z= A. $, F. r* D# G. H. G. 6% 6% G. 2= p& O. J. D> S. O. F# S. i' O. F# S. H# H# H# F# .- .- T. T. 1> b% b% s& M# s& t* b% %+ I# `. @- #+ t* x& ;+ &+ 7= =+ 7= 7= ;+ ;+ 7= =+ =+ =+ =+ @; 0= #; j' Y# X# W# /+ (+ (+ (+ /+ b= Y# k' Y# b= 3+ b= /+ 3+ 1+ H& }+ 1+ H& u- ;- B* 1+ 1+ l' |+ @$ t% 8+ I& b+ 8+ t% e= 0+ 0+ %$ %$ G* %$ 0+ %$ %$ j+ m' %$ %$ j+ G* G* y- ;$ l+ j+ l+ ;$ l+ |' l+ m+ n+ l+ n+ l+ h+ g+ n+ m+ n+ s+ t+ '$ s+ '$ r+ u+ n' u+ o+ x+ w+ i= w+ u+ i= u+ A+ A+ B+ o' A+ B+ B+ A+ E+ C+ B+ C+ A+ A+ E+ E+ C+ A+ C+ C+ C+ Q& E% A+ D+ F+ k= O+ P+ R+ S+ P+ /- /$ Q+ P+ S+ T+ S+ L+ T+ .@ V+ R+ R+ R+ Z+ V+ T+ T+ T+ .@ X+ X+ .@ F% V+ @@ W+ @@ @@ @@ +@ #@ +@ @@ +@ :- +@ #@ #@ [$ &@ p' }$ ;@ %@ *@ >@ &@ >@ =@ $@ -@ &@ 7$ I% s= q' p= R% I- P* T% q= R% @> !@ W% 9$ d$ P* 9$ e$ d$ v; X, S* :@ 4@ W% X% f$ 9@ a@ r' I | s' 5' 6' v, s, x, u, u, s, s, s, x, y, y, x, x, y, u, z, x, s, z, y, u, x, s, y, y, y, y, y, y, u, u, z, u, x, u, `, J@ {. x@ !. /* &. !. &. ). &. &. ;. A@ z@ +. -. >. 4- .. [; A@ B$ 7# R +. E@ .= P Y 7# D$ H@ T T P S z M@ M@ +% N@ O@ Y Y I A F= O@ I %> ", +". > U@ > + > $ R- V@ & N$ . R@ . > # ^ > $ ; & - - ; & & > 1* . & | ) > . ; ^ W@ ) ~ - `@ ~ ( | W@ ## W@ / 4 | | / [ | { ) { Y@ { -# ~ ) X@ ~ / 2 ## $# } } J= ( 7 &# [ a a k b / 6 g 7 ,# *= a 6 6 } V$ 8 7 9 g a 0 c e 0 a ># ~# h e n v K= 8 c c _# o r ~# t' h o c ^# D 9- `$ h n }& `$ Z$ w `$ D M w w a- G A Q@ E= A A 8* A w x )> G M@ Q@ M %> M S K@ P@ Q I@ P L T C$ H Y H J H$ G$ H@ T E$ H R I@ @. X #. #. T C$ #. $% .. +. (* z@ e- #. ,. 0# ). >. {. C@ z@ '. &. )& /. ). =% %% ]. &% '. =% =% `> u' ;. {. ~. *% ^. {= P= _. {= P= P= h# h# a& a& 7. g# a& e# }. g# 9; v' 7. 6. 6. 6. 0. b. ~% 6. 9. w' c. e. d. c. {% e. {% c. {% h. q# g& {% i. U= o. v# l* (% J; w# o* (% p* (% (> s. [% (> y> v. v. [= s. m- m- A# X= z. z# A. 3% D. F. [> D. D. G. G. D. G. 5% E# 2= S. O. `= x' S. J. F# x' - S. S. F# y' H# 1> .- s& ++ H# H# ++ T. %+ z' d; c% @- c% M# `. u& s& x& ;+ ;+ &+ =+ 7= (' ;+ 7= =+ g; 6= 7= A' *+ B' C' _' [' b= %; /+ /+ ~+ D' b= b= ~+ W# (+ Y# b= 4+ b= 2+ `# |+ %, f, ;- d= E' ;- 6+ @$ t% ;- 1+ 3+ 7+ t% e= a+ t% c+ t% b+ %$ %$ %$ d+ %$ %$ e= u% j+ f+ G* ,- 0+ U; f= l+ l+ j+ l+ h+ h+ h+ h+ n+ l+ l+ l+ ;$ n+ l+ n+ h+ r+ s+ y% t+ t+ t+ '$ o+ F' o+ '$ u+ w+ '$ s+ i= w+ w+ A% B+ B% C+ B+ B- B+ B% A+ A+ B+ C+ C+ C+ C+ E+ E+ A+ E+ C+ E+ S& L+ E+ D+ D+ E+ Q& /- S+ L+ P+ T+ S+ G% /$ P+ P+ S+ Q+ R+ R+ V+ T+ R+ R+ V+ T+ V+ Z+ V+ V+ @@ X+ X+ +@ F% X+ G' X+ W+ +@ }$ H' +@ @@ #@ #@ &@ #@ %@ &@ D- #@ %@ .* &@ %@ &@ #@ &@ *@ .* Q% I% 7$ Q% >@ * >@ *@ 5$ S% I' (@ Q% 0$ !@ I- J' ,@ 9$ }- !@ !@ V% f$ 9@ f$ |@ 9@ K' /; c$ v; W* G | J$ 5' 5' v, s, x, u, x, u, s, u, u, y, y, y, z, u, y, s, x, u, s, z, x, s, u, y, u, u, y, y, x, y, y, y, u, y, x, 6' Z W> b# -. {. w$ A@ !. -. &. &. 5# B$ V> . z@ !. F@ &. @. .= X G@ +. e- z$ C$ G@ V P G@ P H ` L' E$ @% S H 8* Y P@ A J A E$ A O@ ~& P@ ", +". $ > ~ > > $ ]& + & + $ S$ ; ; U$ > ] & > # ; - S$ S$ |* }* & ~ ; ; 2 | > ~ [ [ W@ ] ; 2 ~ ## U@ ~ ; [ ~ U@ ~ | { ~ ## d | / 7- [ /& 6 / 1 < +# M' &# 2 [ } $# $# $# 0 7 $# a ## : b &# 2* [ N' 6 8 b 7 $# e *= e b e j c ~# ~# i o e 7 e ,# c a e o r W$ n n s> t `$ Z$ r `$ Y$ r `$ s r O' % :, z ^# D N ^# A ^# G G p E N A I O@ G O@ E$ P@ Q@ A M P@ P@ |# H Y A D$ J L@ 4# P@ J T S C$ Y S H J 7# Q #. V P' z@ z$ H@ E@ z@ Q' (* *. #. I@ . G@ -. R' $% 0# . *. ). A@ p, A@ =. !. ]. ). 5& &% {. ^. !. d* S' |. '. |. |. v@ 8& T' *% (. :. h# v> _. j# j# h# f* g# f# 8. u@ l# n# U' ^= ^= 6. 6. ]= Y- m# ^= V' c. d. e. Z- {% c. c. {% h. Z- Z- c. i. Z- c. f. {% W' l* /% m* x> o. p* b; W= n* y> z. W= p* `- [= m- A> X= s. z. [= [= N; A> X' D. P; n- D. G. G. O; O; 6% H. `= L. O. J. E# `= F# H# ]' 0% - S. O. S. O. T. 1> d; 1> ++ .- .- s& ++ s& +- s& t* K# b% s& #- /' q- R# Y' =+ ;+ &+ =+ 6= ;+ =+ $- 6= C' h; #; #; *+ G> j' X# /+ Z' &; ^+ Y# %, (+ b= Y# `' b= (+ ) o% 2+ b= 2+ 1+ u- s% s% s% A* f, K> s% 7+ I& g, i; l' 7+ a+ .) 7+ 7+ G* %$ b+ G* %$ a+ d+ 0+ G* +) k; j+ G* ,- f+ 0+ G* w% ;$ )- l+ |' P, ;$ ;$ @) l+ n+ n+ n+ @) >$ =, @) l+ >$ r+ h+ s+ t+ s+ s+ x+ s+ s+ i= x+ !$ s+ w+ w+ u+ x+ k, B% B+ B+ A+ C+ A+ R, B+ A+ E+ B+ A+ A+ C+ C+ E+ A+ D% R& C+ S& #) E+ M+ C+ k= O+ O+ O+ S+ S+ T+ S+ R+ G% S+ R+ Q+ S+ R+ $) S+ S+ V+ T+ Y+ V+ Z+ X+ Z+ @@ @@ V& _$ _$ %) X& W+ +@ W+ Z& +@ #@ @@ +@ #@ +@ :- #@ #@ #@ +@ +@ &@ %@ *@ &@ #@ %@ =@ &@ -@ `& 6$ '@ )@ Q% &) r; Q% ~@ I' S% )@ 5$ 9$ /@ !@ w= W% :@ }@ W% J- |@ v; d$ 6@ X% ** 2@ 9@ 9@ z= Z$ ^ R@ *) =) v, s, x, y, y, y, x, x, s, y, x, u, s, u, z, s, u, x, t, z, z, t, x, t, A, x, x, y, z, u, u, y, s, z, x, x, o> p, x@ ^. !. {. ^. &. -. -. &. (* &. a# ,= z@ =. (* A@ A@ )= z$ y@ V 2# F@ 2# P }; P z; H A Y P P@ H 3# Q@ J S z G A Q@ /# A w w w ", +"L$ $ + $= > + R- # V@ # Q$ # H= + . V@ & # V@ U$ | ; - ; 1* + T@ > ; 2 ; . ## *# ] ) ) W@ ~ [ ^ ) ~ ~ ] W@ ) ) W@ ~ T- `@ 2 { ( ) ;# < V$ [ 2 $# Y@ { [ %# $# W@ ) } } 7 < b 6 7 a 7 { Y@ ,# d e $# 6 e } b ~# ,# e g n 9 8 &# e 7 a 3* 8 L= ,# 8 V- a K= L= (# 7 ~# r h b' h h w h r Z$ _# 4* n -) q Z$ ;) D ^# m _# t N F D M= z w I A |# S P@ O@ H M E$ J 7* w 8* P@ M S 3& H P@ >) P@ J Q@ 3# Y J H@ ` 2# T U C$ E@ X S G@ G$ #. R $% H $% .. C$ P ,= 5# z$ *. )= .= z@ .. -. ). >. &. {. [, -. !. '. ). '. p, =% b# '. /* v@ {. v@ 5& 9& u' 8; ,% h# a& e# P= P= e# q@ d* |. f' a& a& ;% 7. 7. ^= ^= 6. ^= v' 6. i- 0. 6. d. c. {% {% c. d. e. e. {% e. w' Z- g& q# q# f. f. g& ^> f. j. v# V= (% ,) n* n* r. v. p* p* i& z. <% z. 1% [= [= [= m- ') m- [> r* )) n- G. H. H. G. D. G. H. 5% o& L. O. O. 1= F# S. q& !) F# .- S. F# H# 1> H# Q. F# b% .- .- b% f; f; c% t* t* q- q- $+ + u& +- #+ R# 7= 3> =+ g% 7= =+ =+ =+ ;+ *+ ~) *+ {+ *+ *+ {) a= /+ ]+ X# ~+ (+ ~+ /+ %, b= %, b= Y# -- `# <+ Y# %, 1+ |+ s% s% H& %, %, 3+ g, 5+ $$ @$ 1+ 7+ ]) 7+ a+ t% 7+ K> %$ K> G* G* G* G* e= G* %$ %$ f+ G* G* ^) j+ U; w% /) U; l+ @) l+ L> ;$ @) l+ l+ ;$ l+ ;$ l+ >$ l+ n+ n+ n+ ;$ M& t+ t+ '$ w+ u+ >$ -; i= w+ o+ u+ u+ i= !$ ]$ B- () B+ B+ C+ B% B+ A+ C+ B- A+ B+ C+ A+ A+ C+ E+ B+ _) B+ C- {- M+ A+ E+ k= L+ O+ L+ /- /- P+ R+ S+ S+ R+ L* /- R+ T+ T+ V+ T+ V+ S+ V+ T+ T+ .@ U+ X+ X+ ($ Y+ Y+ .@ G' @ H' W+ W+ X+ +@ +@ +@ @@ +@ +@ +@ %@ %@ #@ %@ %@ #@ %@ &@ $@ > %@ &@ 7$ I% -@ >@ L% :) L% u= 4$ q= S% T% * <) d> 9$ ~@ 6$ U% !@ V% R* :@ X, 4@ 2@ 4' b$ 8@ 6@ 1@ T* w@ c $ @ `, [) s, s, s, z, y, y, z, u, s, z, u, u, s, x, u, s, x, x, z, u, u, x, u, z, s, x, }) u, y, y, x, t, y, x, |) v, :, A@ ,& ,& '. '. F, ). &. ^. ,& (* z@ B$ 6# A@ +. z@ .= =. #. +. .= }; 2# H L@ +% D$ J L@ P P M@ J J S J Y |; P@ J A A P@ Q@ A G I A ", +"# . R@ L$ 1) # > $ S$ V@ V@ V@ + . ), !, # > 2) U@ Q$ %= ~ & 1* . { %= U@ ~ 2 ~ ) ~ ] ; U@ { <& ~ & ) ~ *# | %= ] ## ) 1 | 2 ~ 2 2 6- [ { ## V$ < W@ $# $# -# $# [ { ># } e i V$ == c a %# $# 7 6 6 a b d j 6 &# 2* V$ d 7 c i 9 6 c i V$ $# d 7 6 l `$ n o ~# r ~# e Y$ s> ^# C; _# h p >= F= /# w p 1; ]# p ^# :# `$ ^# x M= N M= w G N M I N@ [# P@ M w M= H P@ H 7* E$ P@ K@ 3# O 3; P@ K@ Y J Q@ 4# S 3) T d- H X Y C$ P@ L V V D$ E@ C$ P z$ I@ E@ z@ -. z$ .= I@ B$ *. y@ z$ &. A@ -. &. A@ 4) !. *. ;. z@ $. *. {. 9# {. ;. '. -' &% b# 5& ,% 5) 8& 9& &% ~= -% e* e# t@ '% e# X- 6) g# a& j# 7. U' 6. 6. ^= ^= ^= 7) ^= Y- Y- a; V' c. c. e. c. d. Z- c. c. Z- h. Z- i. f. T= W' f. l* l* ^> /% (% 8) o. o. V= W= (% w. z> n* j& v. s. [= B# [= z. A> c; c; a, Z= 3% )) )) 5% H. H. G. D. `= H. P; K. J. O. O. `= O. O. S. J. O. S. S. 9) F# F# T. T. .- H# .- x' .- ^' b% ++ s& s& f; f; s& u& f% e; u& 0) =+ =+ $- a) b) 7= ;+ =+ M, ;+ =+ @; #; !+ 7= c) a= d) /+ S; W# ~+ (+ /+ %, /+ (+ ~+ /+ (+ Y# %, %, b= u- s% s% 1+ 6+ }+ ;- 3+ 1+ 1+ 5+ ;- g, @$ t% 7+ 7+ K> 7+ 7+ 7+ a+ %$ 0+ %$ e= 0+ e= G* ^) u% f+ %$ G* l+ U; U; ;$ '- u% l+ l+ l+ l+ n+ l+ g+ l+ l+ ;$ l; A- l+ n+ h+ n+ n+ h+ =; -; t+ t+ i= s+ i= i= x+ t+ M> w+ x+ u+ ]$ ]$ B+ B+ B% C+ A+ B+ A+ A+ A+ B% A+ A+ e) A+ C+ B+ A+ ^$ C+ O+ O+ M+ I+ D+ E+ Q+ O+ E% a> N+ R+ L+ Q+ R+ T+ P+ S+ R+ R+ U& .@ T+ R+ Y+ Z+ V+ V+ T+ R+ S+ .@ .@ X+ Y+ f) g) X& @@ @@ @@ [$ W+ W+ @@ #@ +@ %@ #@ #@ %@ #@ #@ %@ &@ &@ &@ &@ *@ &@ D- &@ 7$ >@ l, q= S% '@ R% 6$ 9$ r= O* 6$ I- 5$ ~@ N* N% R* 9$ R* {@ P* :@ 2@ :@ X% f$ K- 6@ X% X% ). e h) i) r, [) v, s, s, u, y, x, x, u, y, x, u, v, A, t, s, u, y, y, u, x, u, u, y, y, u, y, y, y, y, y, y, u, y, s, s, v, j) x@ ^. ~. {. '. !. -. &. &. &. z$ ). ;' (* .= A@ )& .= @. .. e- #. X G@ V 4# V P O S P M@ G@ C$ J@ L@ P H$ O M@ E$ +% P@ 8* x M S M )> ", +"R@ k) M$ R@ l) + ; > - ]& ]& U@ V@ Q$ ; V@ ; ; | N$ ^ ; S$ & S$ - ; | U@ N$ 2 ^ `@ R$ . ; ;# | d O$ %= ; %= ] N$ { ) | [ { } < | ## - 8- ) %# U- ) *# $# } ) [ $# $# $# : } ## ) 4 $# %# : < $# 8 } 6 X$ e '# a e [& e D, } a a 8 i $# &# d 7 8 a ,# X$ o b o c e `$ p c h [& h r s> Y$ y ^# C y `$ p `$ ~# D m m N N ^# 0- N M t q P@ O@ P@ I B G H$ B I 3# E$ M m) 7* P@ )> @% @% M S L S P Y J 1# 7# 4# H H$ E$ L@ P@ U V n) C$ H@ H 7# D$ T 9* A@ 5# ,= e- +. (* 5# 6# ). *. ,. A@ ,. =. )& !. ;. o) A@ ;. ). ;. ). 5& {. ;. ;. !. p) (. -' 9& (. :. v@ v@ `> ,% 9& t@ ,% e* a& ~= a& 0, g# 9; g' ;% g# 8. k# 7. 7. 7. ]= q) !% m# l# {> {% c. e. e. c. {% {% e. c. r) {% f. f. T= h. l* g& g& /% s) K; h' ,) (% ,) (% n* r. )' (> p* z. z. z. z. [= z. [= A> t) m- A. c; c; 5% 4% H. 5% D. H. u) n& G. E# O. S. c, 0% 0% F# c, v) .- ]' S. H# d; d; H# w) H# H# .- 1> x) ^' s& s& c% q- s& $+ q- +- d% 0) e; d% v* y) y) +; @; *+ @; C' v& *+ ;+ h; @; &- z) r- _' %; [' W# %; /+ ]+ (+ /+ Y# %, b= /+ b= A) %, %, b= B) |+ 4+ }+ ;- J> |+ 5+ @$ 5+ 1+ 3+ 3+ I& t% l' @$ @$ 7+ .) 7+ .) a+ K> %$ %$ e= k; G* G* e= ,- g+ %$ u% ,- U; g+ l; /) ;$ l+ -$ C) ;$ l+ z- ;$ n+ l+ n+ r+ l; l+ ;$ >$ j+ l; l+ M& s+ ,$ {$ D) t+ t+ s+ t+ E) j= u+ i= x+ B+ B+ z+ B% B+ A+ B- B+ B% A+ ^$ B+ E+ ^$ R, A+ B+ C+ F) C+ C+ S& E% A+ A+ C+ C- O+ O+ L+ L+ /- S+ L+ R+ S+ Q+ R+ R+ P> S+ T+ V+ S+ V+ V+ V+ V+ .@ Y+ V+ X+ W+ @@ +@ Y+ Z+ b> -, V& +@ @@ @@ W+ @@ +@ [$ #@ @@ +@ %@ #@ <- &@ #@ #@ %@ %@ *@ ~; .* 1$ >@ >@ '@ '@ R% G) )@ ]@ 5$ * * e$ * ^@ 5$ @> b$ 2@ |@ V% P* T% 3' 6$ ^@ 9@ v= o, u; 7@ a@ )& 6 . J$ `, =) H) 8' x, y, y, u, s, u, u, x, x, y, u, u, u, x, y, u, s, u, y, u, u, y, x, u, u, y, y, u, y, u, y, u, s, x, I) 4- E@ {. A@ !. {. x@ *. !. ). .= &. !. &. &. !. >. 5# C$ $> F@ =. 5# )= z; L@ H .. C$ S H P@ Y P@ L@ H ` #= S P@ P@ I N w w x Q@ @% I ", +"+ V@ ]& $ * . + . > + . V@ > > $ - - - . V@ = N$ U@ U@ U@ ^ ~ ] ; ) ) ] - | & ^ ] { ; & Q$ ~ ) 2 { d 1 %= `@ %# ~ W@ ## ~ W@ J) W@ $# } ) ## 1 b W@ < 6 *= W@ 6 1 /& / a a V$ ( J= 7 V$ } 6 => 7 7 e k 6 i n a j a 8 e V$ q> a 6 &# ~# ,# i o o 7 a a j e r n h o c c r Z$ ^# `$ `$ p Y$ p c m u q 4* G I m z I ^# D O@ A 8* A S w %> ^# x A M z L@ S Q@ M Y Y o> H S P@ H@ H L@ L@ L@ P@ L@ T L P I@ 2# Y I@ P@ Y U U }; J E@ X K) 5# A@ .= A@ E@ +. +. &. y@ . L) +. V> #. &. A@ A@ -. /. /. $. ^. ^. '. /. {. != v@ |. d* (. 1. Q= e' &% 8& {= h# a& g# a& }. s@ s@ 4. g# ;% ;% 4. 7. g# 6. 6. ^= a; ^= 0. b. i- ^= 9. e. {% e. c. M) {% c. {% Z- Z- Z- g. J; f. l* f. g& w# g& K; (% H, (% p* p* (% (% )' <% (% N) z. s. s. [= [= [= s. A# X= A# t) $, D. O) 6% D. C> C> C> P; H. `= J. S. a% O. {' H# J. J. L. H# O. H# F# O. .- .- 1> H# 1> 1> ^' d; t* t* q- ^' .- t* t* b% t* d% P) f% .; $- ;+ 7= 7= *+ =+ =+ 7= *+ 7= =+ 7= #; @; 0= Q) A' W# (+ R) W# /+ (+ (+ ~+ Y# b= D' Y# b= Y# f, %, %, H& J> b= A* 6+ u- 1+ 1+ 1+ 6+ I& 7+ 1+ l' ;- ;- a+ a+ 5+ .) l' e= e= e= e= e= G* 0+ 0+ %$ u% )- e= g+ '- %$ S) l+ l+ ;$ ;$ l; ;$ n+ n+ n+ ;$ ;$ l+ ;$ l+ l+ l+ n+ >$ n+ )- l+ r+ '$ s+ >$ O& o+ '$ s+ x+ i= t+ s+ N> w+ '$ s+ ]$ B% B+ B+ B+ B+ R, F) A+ m; B+ A% C+ C+ B+ A+ B+ ^$ B- S& E% A+ E+ A+ C- E% O+ L+ O+ L+ S+ L+ P> Q+ S+ /- S+ T+ S+ V+ Q+ R+ V+ V+ Y+ X+ @@ .@ U+ W+ W+ W+ @@ Z+ Z+ %) _- U& @@ @@ #@ @@ @@ +@ #@ +@ #@ +@ #@ &@ %@ %@ &@ %@ #@ %@ &@ $@ &) I% >@ *@ >@ '@ )@ q= q= -@ ~@ q= 5$ * U% I- /@ 5$ {; !@ V% W% 2@ }@ 2@ X% e$ P* R* a@ X, :@ -* 7# $# $= J$ r, 8' 7' u, z, s, s, z, y, y, x, s, x, u, y, y, y, u, y, y, x, x, s, x, u, u, s, z, y, y, y, y, s, s, t, y, A, t, T) E@ -. F, -. ). !. e- ,& {. !. {. B$ F, z$ 4& *. V> .= 4) ,= G@ z@ . ,= H H@ Z Y H P Y S L@ H A Y S S S H J H |; N J M@ Q@ P@ N ", +"S$ & $ + R@ L$ ]& S$ S$ }* - ; | V@ > . |* - # - - > S$ ! - & > ~ 2 U) R$ ; ] ^ { ^ ; | *# > ] ; ; < { | 4 $# { ) < ; ; ~ *# [ 2 ~ ~ / $# [ } $# 6 ~ &# ( { ) 9 +# 6 7 [ $# { 8 : } V$ V) d b D, d 0 e ~# 6 g 8 8 a d e ,# b e n a e j e ,> e o p Y$ r h r s> r p `$ p D /# `$ p h `$ h p n p t C w C P@ 8* y N G Q@ :# %> G A W) ~& A L@ Q@ 3# b- Q@ O@ A L@ H P O J J Y J Q P@ M U X P@ R G$ H H T G$ T $% y@ V ,= 5# F@ .= 4- 2# . z@ z@ E@ . z$ =. 5# z@ >. -. F, &. ,. 5# ). x@ X) [. ,& '= ~. '= {. != `> 1. d* 8& |. P= , 7& , , s@ a& g# a& 4. }. s@ 8. j# g# 7. a; {> 6. n# g' 7. 6. 6. 0. d. Y- 6. i* d. 9. e. h. e. c. c. {% Z- Z- Z- Z- q# f. h. f. l* (% T= S= n* x> i& Y) n* (% (% (> [= W= @, z. z> z. s. k& A# z. z# [= [= A> !' P; )) H. 6% 4% P; n& Z) 6% G. {' F# 0% H# E# S. S. F# F# F# F# F# F# 1> F# .- H# F# 1> s& .- F# s& 1> t* t* ^' b% u& b% t* d% e; z& P) v& ;+ ;+ =+ =+ 7= 7= &+ 7= =+ *+ @; `) ! *+ C& _' Z' /+ W# <' b= b= Y# /+ (+ b= Y# b= Y# <' A* %, k' B) J> .! d= 6+ B* 1+ d= 6+ 6+ >- #$ +! @$ >- 8+ %$ K> l' 7+ b+ e= G* %$ %$ %$ G* e= ^) G* %$ d+ G* %$ e= %$ @! n+ l+ j+ ;$ @) l+ l+ ;$ ;$ ;$ l+ l+ ;$ l; l+ l+ @) n+ M& n+ n+ A- s+ s+ t+ #! w+ o+ '$ s+ i= s+ i= N> '$ s+ t+ ]$ A+ B% B% B+ B+ B+ A+ C+ C+ B+ E+ E+ B+ A+ B+ B+ ;; E+ A+ E% L* D+ C+ D+ M+ L+ L+ Q+ O+ /- Q+ Q+ E% /- S+ R+ R+ S+ T+ Y+ Y+ R+ T+ V+ V+ X+ .@ Y+ T+ U+ W+ X+ `; U+ @@ H% $! X+ X+ +@ #@ %@ X+ @@ #@ #@ #@ #@ +@ <- &@ &@ &@ &@ %! &@ * -@ R% >@ =@ -@ `& S> u= ]@ 1$ `& *@ (@ )@ '@ &! +* *! {@ N% =! W% <@ W% L- W% 4@ :@ W% u; |@ Y, c@ J +# V@ ], s, 6' x, u, t, s, -! y, y, s, H) u, y, y, y, y, y, y, u, z, u, u, z, u, u, y, y, y, y, y, y, y, y, y, y, u, }) A, ), G@ ). x@ l> ;! -. ). 5& !. A@ ;. ;. e- z$ >. #. A@ 5# (* @. .. 5# A@ G@ 1# 2# }; X Z O B$ H Y >! L@ O H$ M@ H S M@ Z E$ A Q@ I ~& I x ", +"Q$ # + & # ] T@ ^& ~ Q$ # & Q$ . Q$ & ; - ; # V@ > ] - . . | ; ; > ## N$ & N$ { | Z@ ) 1 { ) U$ W@ ) 2 ~ 2 ) $# ) W@ H= [ { < 6 | ~ { ~ { [ | [ ) 1 # / X@ } ## Y@ 4 ( : < W@ $# $# 6 $# ,# 1 [ b 2* ( q> a ,# 6 e &# a' 7 ~# q> a $# b ~# L= ~# n ,# `$ j Y$ Z$ s ~# c ,! b' _# 9- n -= G z Z$ m p ~# G D s h C C I m M C Z$ I M D D B (# M z z A }# A M I A N@ G @% z E$ K@ d- E$ Q@ O@ T C$ M T D$ G$ P H@ T T L@ L@ L@ e- 7# E$ 7# . R z@ W z@ .. =. e- )= )& *. e- =. !. !. A@ (* @. x@ A@ &. x@ {. b# +. -. '. '. {. &% =% 5& ~. d* /. H; *% 9& e* P= {= e# ~= q@ h# j# 4. 0, '! 9; f# 7. 9; 8. U' ^= a; 6. ^= 6. 9. !% )! !! i* e. {% c. c. {% c. Z- Z- c. Z- c. g& l* h. g& g& j. g& l* n* h' b; (% l- h' (% z> N) ~! `- [= {! E. A> <% z# m- [= [= [= m- c; P; )) G. $, 6% ]! 9% n& O; G. ^! S. F# S. ]' E# S. F# H# y' /! .- H# S. H# .- H# .- H# f; d; 1> t* ^' t* .; ^' d; c% t* f; (! 0) d% +- g; @; =+ ;+ _! 7= 7= 7= 7= =+ 7= 7= `) {+ _' :! - ;- ;- 7+ l' 7+ i, a+ l' l' G* G* a+ G* 0+ 0+ [! ,- ^) G* %$ ,- e= ,- d+ ,- w% @) l; ;$ f= n+ l; l+ l+ l+ n+ n+ n+ l+ n+ >$ A- n+ }! l+ m+ h+ s+ y% |! 1! t+ t+ t+ '$ o+ s+ s+ u+ x+ o+ u+ A% A% A+ C+ C+ B% A+ A+ A+ C+ A+ A+ A+ B+ C+ A+ C+ ;; 0> A+ C- Q& F) C+ C+ E+ O+ O+ O+ L+ R+ P+ R+ S+ /$ Q+ R+ R+ T+ T+ T+ T+ T+ T+ R+ T+ U+ S+ V+ T+ W+ U+ .@ @@ Y+ .@ q; %) X+ _$ @@ W+ +@ +@ #@ +@ +@ #@ %@ %@ #@ &@ %@ *@ *@ *@ #@ R> ~; =@ &@ =@ ~; I% )@ * Q% * (@ T% H- P* H- * I- {; /@ Q* P* R* b$ b$ X% 4@ f$ 4@ S* 4@ `% T* l@ M@ / # q, r, [) z, y, z, u, y, y, y, u, u, x, u, u, u, x, u, s, y, u, A, A, z, u, s, y, y, y, y, y, y, u, s, u, z, x, v, s, 2! 3! ). &. {. ;! ). p) '& (. '& ,. &. &. -. 4- 4- (* #. #. [; F@ 4! . D$ 4# @. X M@ #% $> K@ Y }; Z A Y P@ N= M L@ O M@ 4, H 8* P@ P@ x S ", +"# @ . . ]& > = + Q$ . V@ > & [* # }* ; > V@ $ . ] . > $ Z@ ) N$ P$ $ & X@ ] - > | W@ ) X@ 1 ] `@ [ Y@ ) 5! N$ ; { ~ W@ { 6- U$ $# 8 { [ &# N$ *# } { { { R$ { $# :& } 7 $# < $# ( $# : 7 ( g a 7 7 8 e ~# Y@ [& e e 8 &# ~# e 6! n e g o ~# 7 ,# C; 9- o q e h C; a 0- n n L= n y h (# p ^# `$ `$ 5* _# z ,! h r Z$ D Z$ m G G F= y G ^# N S A K@ A N N@ G M Q@ A Y M |# O@ P@ ` P@ d- H x O J D$ S @. L@ W W Y I@ X O d- L@ 7# T L@ $% 7# @. A@ L@ E@ E@ +. =. I@ !. +. ]. -. . +. =. ). 0# !. F, !. =. =. A@ R' {. '. =. '. 5; %% 5& /* `> 9& 7! *% :. *% ., P= h# j# e* 8; Q- g# g# '! 9; ;% 7. g# U' q) ^= ^= a; ^= ^= {> Y- e. 0; 0. c. c. e. c. {% c. {% 8! {% c. Z- {% i. g& g& l* l* l* l* /% l. b; /% 9! n* (% (% r. v. W= `- [= z. 0! m- A> [= m- A# m- t) z. X' r* G. r* $, G. 6% G. O; O; 6% E# a! J. S. Q; S. b! F# S. c! 1> H# y' F# H# H# F# 1> d; d! ++ c% c% s& N# #- b% t* s& f; #- t* d% q- L, ;+ =+ =+ e! 7= 7= 7= ;+ 7= @; =+ *+ {+ #; `) f! g! Z' Y# h! b= b= Y# Y# /+ b= %, Y# Y# %, %, }+ H& b= A* 6+ 6+ i! ;- f, k' j! +! g, +! 5+ 6+ 6+ 7+ t% a+ b+ l' l' K> 0+ b+ e= e= e= i, %$ %$ G* &, u% e= ,- k! 6> Q, f= f= g+ l+ ;$ ;$ ;$ ;$ ;$ l+ l+ ;$ f= h+ >$ '$ l+ n+ h+ l+ l! i= t+ s+ u+ n' t+ s+ t+ N> x+ '$ s+ x+ w+ '$ x+ A% B- B% C+ B- A+ B+ C+ A+ A+ R, B% C+ A+ C+ A+ ^$ I+ ^$ C- E% C- D+ E+ E+ C- O+ O+ /- R+ S+ S+ R+ /- S+ S+ S+ P+ S+ V+ U+ G% V+ T+ V+ Y+ Y+ Y+ X+ X+ .@ W+ X+ W+ W+ :$ m! +@ X+ +@ @@ +@ @@ _$ W+ &@ #@ @@ #@ +@ #@ %@ %@ &@ *@ *@ >@ *@ -@ =@ &@ =@ )@ )@ * r; 2$ ~@ T% S% ~@ 6$ O* ~@ /@ /@ /@ (@ P* <@ }@ a@ R* d$ W% v; 8@ T* 2@ W* y ;# ]& ], H) z, z, x, u, u, y, u, x, s, z, u, y, x, y, z, y, s, y, z, x, s, A, y, y, y, y, y, y, y, y, u, x, s, x, s, x, s, 2! M@ d# x@ c# &. !. B$ ]. x@ >& ). =. !. >. F; $% )& +. A@ B$ z@ V z@ C$ Y }; C$ H 2# D$ T V J 1# H$ Q@ n! M O@ #= @% 8* S G b- P@ x A M ", +"J$ + + + R@ - . * + }* ; S$ T@ > # V@ ~, & > > Z@ N$ [* ^ > ^ U$ N$ ; S$ - { H= - o! ; S$ ) } { { ) 4 , | ) 6 %= ] { ## ) < ~ { } / { d { ## $# ) ~ < / 6 8- Y@ /& 7 ( ## b ( *# } b == $# =# ># 7 < 6 7 7 a' j e j &# L= ~# &# g a e ~# j a b c g c s> c X$ h `$ t p h `$ `$ r h p! ^# q w m 6* Q@ Z$ ^# 4* q D `$ Z$ m I G I I G P@ q! M N K@ A y A E$ E$ I H A P@ Q O@ P H 8* ` 7# J T H ` T G$ H G@ 0* C$ D$ r! T I@ J D$ G@ E@ X .= 2# V C$ s! G@ @. &. *. #. >. 0# 5# #. 5# )& *. t! &. {. )= '. 9# '. '= |. u! =% {. ~. 9& 5& '& =% /. `> v! Q= -% P= {= s@ j# j# }. , g# a& a& 9; 9; 7. n# f' w! 6. ^= 7. 6. ^= ^= 0. e. d. a; d. c. {% c. {% {% {% {% h. Z- h. h. f. f. H, x! l* f. g& ^> (% V= V= (% ,) (% p* p* t. {! W= z> z. z. z. [= A# `- A. c; [= y! Z= !' 6% n- $, H. H. H. O; H. O; z! J. S. F# O. F# a! F# J. H# F# H# F# .- 1> .- .- H# d; .- Y. .- 1> t* t* t* q- q- s& s& c% d% q- f% f; 2> =+ 7= M, 7= &+ ;+ =+ *+ *+ *+ *+ @; S# *+ C& A! a= /+ A* <' Y# -- b= Y# <' b= b= b= %, b= m% |+ b= b= 1+ 6+ 6+ t- s% 2+ ;- l' u- 1+ t% t% 6+ 5+ l' l' l' l' t% 7+ 0+ G* e= G* e= a+ G* G* e= %$ j+ ,- e= k! )- &, f= ;$ U; )- g+ n+ l+ n+ l+ ;$ n+ n+ l; ;$ n+ r+ n+ ;$ l+ g+ ;$ O& '$ t+ t+ i= t+ t+ s+ u+ N> u+ s+ N> u+ w+ u+ i= B% B% B% B+ B+ B+ B+ A+ C+ A+ C+ C+ B! B+ B+ B% F) R& E+ S& /- S& A+ C+ 0> O+ E% Q& /- R+ R+ R+ L+ /$ T+ S+ P+ T+ G% X+ V+ V+ V+ V+ Z+ Z+ Y+ X+ W+ +@ W+ @@ _$ Y+ Y+ _- :$ W+ +@ +@ +@ +@ +@ #@ #@ #@ @@ %@ +@ +@ &@ &@ #@ &@ &@ '@ >@ *@ ~; >@ V, .> `& >@ ]@ -@ C! '@ H- '@ d> 9$ 9$ O* /@ !@ R* P* b$ :@ f$ b$ ^; 9@ h> y= 6@ X% m@ p O$ *) =) s, s, 8' u, y, u, s, v, H) x, 8' s, x, y, u, s, z, y, z, s, x, s, s, y, y, y, y, y, u, y, s, w, s, u, s, x, x, r, y ^. %% ^. D! ^. (* x@ '. ,& A@ )& x@ A@ E@ A@ .= &. ). .. )& Y z$ R G@ V V n> 2& J }; M P X Z O ` P@ P@ K@ A M S 8* H$ A t N= #= ", +"!, # . > + # N$ T@ - $ $ R- & 5- V@ E! # ; ] . | N$ ] & ] ; | | !, ; > ] ~ > - & ) ~ ~ 2 / ] ) $# ) ] | { | ) [ W@ 5 < Z@ $# 7 ( ( 6 Y@ [ ) 4 { { d ,# d X@ 6 } 7 2 W@ # < d V$ =# b 6 6 $# ( 7- e ~# 7 6 ,# e 7 a ~# r d j F! X$ j ~# *= 7 c n r 8 i o ~# h C; 9- c h 9- p Y$ m % r ^# F= D Y$ u Z$ D ~& Z$ G /# w z G A O@ J J O A P@ A I A M x P@ N J A O@ @% T H C$ P@ E$ P@ P C$ P H E$ Z E$ U 2& W H C$ I@ Q' @. L@ H@ .. X C$ H@ V @. z@ G! -. $% 5; 5# B@ E@ e- z@ ;. &. =. '. ). /. ~. ^. ,& S' H! ~. =% '. '. 5& d# /* &% %% v@ d* e* u' I! J! , P= j# , a& a& g# 8; j# 9; 8. 9; g* 6. 6. a; 7. ^= a; q) i* d. !! {> {% d. e. c. {% c. c. e. {% h. Z- i. f. f. K! g& /% /% H, K; n* W' (% w# L! W= (% <% s. p* W= s. v. z. [= z. z. A> A. X= m- [> !' r* O; 6% 4% n& H. O; H. 6% C> a! J. S. S. M! ]' F# .- H# S. S. S. O. .- .- 1> .- .- 1> 9) 1> d; ^' t* t* 0) f; q- f; q- +- q- N! (! M, h; =+ O! 7= 7= *+ 7= 7= *+ 7= *+ y) C' P! c) Q! {+ A* b= g! /+ (+ %, b= b= Y# b= Y# %, %, b= r% 2+ l% f, s% 5+ 1+ t- B* ;- 4+ 6+ 6+ t% I& 6+ 6+ .) l' +! l' j! l' e= e= G* G* G* K> R! 0+ e= ^) ,- )- e= e= )- ,- g+ ;$ &, ,- l+ l; l+ l+ l+ l+ l+ l+ l+ n+ l; >$ n+ l+ n+ h+ ;$ ;$ >$ t+ s+ r+ r+ '$ s+ s+ x+ '$ s+ x+ w+ x+ x+ k, B+ A+ B+ A+ A+ A+ K* ]$ A+ B+ m; B+ B+ A+ B+ B+ e) S! E+ C+ #) T! E+ D+ I+ O+ L+ P+ /- P+ S+ /- Q+ S+ P+ S+ S+ P+ T+ T+ X+ T+ R+ V+ T+ V+ X+ .@ U& W+ .@ W+ W+ Z+ f) <$ U! @@ +@ V+ @@ +@ @@ #@ #@ %@ +@ m, %@ #@ *@ +@ *@ &@ &@ *@ >@ &@ e> '@ r; *@ S> -@ s= 2$ r; ~@ H- S% * I' !@ /@ :@ {@ b$ W% !@ V% W% X% R* 1@ b$ W% j$ 6@ w$ h ;# V! ], [) H) s, x, x, u, H) z, u, x, s, u, y, y, u, x, y, z, x, u, u, y, x, s, u, y, y, y, u, +' u, u, s, z, y, u, y, u, v, W! ). x@ z@ ^. '. A@ ). !. &. ). *. z$ -. B$ +. 7# .= +. .= +. B$ F@ .= 4# T D$ L@ H L@ P ` ` O ` O P 4# H$ S A G O@ 8* A z /# M `$ ", +"R@ . & . # ; # = . . X! $ + Y! T@ V@ + & ; }, | [* . $ ] ; ] ) /& ; S$ ^& ] ; 2 - 6 ] ; W@ Z@ { W@ Z! { ^ ~ d /& } 2 W@ { ~ ^ } } : ] 6 ~ { ) 2 / : &# &# ) , d $# Y@ { / $# < &# b b $# &# a $# 0 i e e 9 < 6 8 c &# 6 F! V$ d *= `! t' r h a r h e ~ F! 9- r ~# c n ~# ^# n p p `$ /# y :# 4* G h Z$ -= 4* z C F= `$ Z$ I I )> N w M= N x x w G S S I .~ P@ o> A o> P@ M@ P@ J P@ T Q@ P J L@ L@ d- H@ ,= H$ T P G$ ,= I@ A@ .. V R' E@ z$ G$ 4- 5# +. >. 5# 0# e- e- . (* z@ =. A@ ,. 0# %. &. =. /. A@ 5& '. ). {. ^. /. &% +~ ^. 5& v@ {. S' e* ,% P= _. {= {= _. j# {= h# a& g# a& ., 0, 9; 6. a& g# ^= ^= a; ^= 7. 6. a; !! e. @~ h* #~ c. c. e. e. {% h. {% Z- h. Z- f. g& m* K! g& x> o. ,) r) (% ,) U= 9! W= ,) p* <% t. (> $~ [= m- [= m- z. z. A> A> A> 0! N; N; 3% r* $, A. o- G. 9% D. H. 6% O. F# F# F# H# z! H# F# S. S. S. .- .- H# .- .- F# 1> s& d; 1> 1> b% t* s& q- 9) q- d; %~ s& t* t* &~ &~ a) @; 7= *+ =+ *+ @; 7= =+ 7= &+ @; @; ! @; *~ j' a= /+ S; Z' -- A* =~ 5> %, k' %, k' %, /+ }+ B) D' %, 2+ s% f, s% ;- u- B* ;- 1+ 6+ $$ @$ ;- l' t% -~ G* .) l' i, %$ %$ e= G* ;~ ^) %$ ^) e= >~ l; &, %$ f+ G* &, &, ;$ )- l+ w% l+ ;$ n+ n+ l+ ;$ n+ l+ ;$ n+ l+ n+ n+ h+ h+ n+ n+ '$ s+ s+ r+ )$ t+ t+ {$ i= s+ u+ u+ w+ x+ y+ A+ B% B+ B+ A+ C+ E+ A+ A+ A+ B% B+ B+ C+ D+ E+ A+ A+ A+ B+ E+ E% 0> E+ G+ D+ E% O+ O+ O+ Q+ P+ L+ O+ S+ R+ S+ T+ V+ T+ T+ V+ S+ R+ Y+ V+ @@ .@ .@ T+ X+ W+ X+ Y+ X+ W+ <$ X+ @@ +@ +@ '; @@ W+ #@ #@ M* :) %@ %@ %@ %@ #@ &@ %@ %@ -@ *@ (@ &@ >@ I% I% I% ,~ `& l, (@ {@ '@ '~ {@ r; '@ R% {@ R* ]; R* J- :@ :@ `% 8@ 9@ 9@ l$ l$ &. e ] )~ [) v, v, r, y, u, y, s, u, y, u, s, u, y, y, z, x, z, z, s, H) u, u, x, y, y, y, y, y, x, x, y, s, |) x, z, A, A, z, [) !~ (. {. {. {. d# x@ '. ). ). -. ). &. .. B$ &. 5# H@ B$ E@ +. 5# &. =. V D$ H +% J G@ V H Z C$ L@ P J H 2& J +% N J +% I ~& S N@ I ", +". ^& > ; N$ V@ ] ] > . $ }* & # & # T@ ]& > # ; ; . & | ^& %= ] N$ ; | X@ ' | # ; X@ ] ' 1 ~ ;# ~ 6 # ) [ > ~ { ; ] { W@ { } / ( 4 [ / W@ ~ 2 &# -# ) W@ &# } W@ < == $# ## d ,# V$ 7 a j g V$ 8 a i a 6 0 +# 7 a 6 a ,# 7 b 8 c L= e 8 ,# n ~# o s g L= 9- h n Y$ p h r p D D t q Z$ C C ^# `$ q t w F= C z w ~& w G w 8* D Q@ C w I z J Q@ E$ 1& Z |# L@ I@ E$ L@ 2# K@ Y P@ 3) T 2# E$ D$ 4# J X G$ H Y G$ T V V @. H@ E@ @. ,= .. +. e- ]. -. z@ 5# A@ .= ]. z@ *. O= ). '. %. 0# F, =. '. {. %% {. =% H! ~. '. =% /. /. T' {. &% Q= t@ 7& g- {= {= {= P= , P= j# g# g# f' 6) '! s@ ;% k# 9; 6. ^= 6. 6. ^= 6. ^= a; m# n# h* V' d. c. c. Z- {% Z- c. {% c. h. h. f. g& l* Z- l* V= (% H, i& p* /% (% (% (% p* p* p* z> W= )' N) @, [= [= [= [= m- A> A> m- ~~ c; G. r* O; |= {~ n& |= 6% 6% {~ Q; S. J. S. c! .- H# Y. H# x' H# H# H# .- H# F# .- .- 1> d; 1> 1> 1> 1> f; 9) f; t* s& t* ]~ d% ^~ f% /' =+ *+ =+ =+ C' *+ @; *+ C' *+ @; 7= *+ *+ /~ (~ g! l% Y# h! D' b= Y# %, b= b= %, %, l% /+ b= d= %, k' %, }+ f, B* B* _~ :~ B* g, 6+ 7+ i; g, 7+ l' .) i, 9+ .) 7+ a+ G* ^) ^) G* G* e= G* e= e= %$ %$ %$ e= G* %$ *, l+ l+ )- ;$ l; ;$ l; ;$ l+ h+ h+ l+ l+ l+ l+ l+ h+ l+ n+ l+ n+ u+ s+ s+ r+ =; s+ t+ t+ w+ o+ '$ t+ u+ w+ w+ B+ B+ B+ k, B+ B+ B% B- B% A+ C+ A+ B% A+ A+ E+ A+ A+ C+ C+ E+ O+ M+ C+ P& C+ M+ L+ L+ E% L+ /- Q& C- N+ R+ R+ T+ S+ /$ /$ U+ R+ R+ T+ T+ .@ W+ X+ Y+ X+ X+ W+ +@ W+ W+ @@ H% @@ +@ @@ @@ W+ :- +@ W+ +@ q; #@ %@ %@ *@ +@ *@ *@ <~ >@ %@ &@ &@ *@ >@ I% T% q= [~ I% }~ * >@ (@ r= (@ (@ |~ ~@ O% J- ^@ n, :@ I- W% f$ |@ f$ l$ y= z$ e }* *) ^, H) v, t, y, y, u, x, z, y, y, x, t, u, x, u, s, +' z, v, u, y, z, u, s, z, x, y, u, s, t, y, y, y, x, t, x, u, u, v, `@ -. '. -. !. !. >. &. -. '. z@ ). d# z$ 4& ). E@ V E@ z@ V C$ . P 7# W J@ V I@ Y H@ #. H P@ A Y T J E$ S O M S H |# M z I #= ", +"% . U@ . & & # . . ; # ]& $ Q$ % % 1* U@ H= > V@ ; > > ; ] ] | - > %= U@ - ; & & > 2 X@ Z! ; ; Q$ ; { [ > N$ ] 2 ) ) N$ 6 { ~ 2 ) [ *# < [ / ## ) ) : $# { &# ) 2 a V$ 6 7 e } b } i e a 7 7 5 } :& b c 6! 8 a o ~# ~# !# e 7 n [& 7 e t' 0 o o `$ r L= q h L= t' r _# h `$ m `$ m ~& ^# y w C w Z$ ^# :# 2; ^# u ^# w A A O@ J I z M G A w M H P@ M Q@ L L@ Y P@ L Q@ O H Y J 2# z$ T L@ T U H@ L@ J C$ H U V D$ d- X $% +. B$ $% U )& ]. =. B$ )& )= !. =. >. 0# B$ !. F, b# A@ B$ ,. A@ ^. 1~ $% =% '= b# 5& =% '& {. '. 2~ P= +~ 8& 3~ >' -% e* , e# P= j# , s@ h# 9; g# 0, g# a& 6. 7) ^= 6. ^= ^= ^= ^= 6. a; Y- i* a; !! c. c. c. {% Z- {% {% Z- c. 4~ Z- {% i. g& c. l* l* ,) /% r) n* /% s# (% p* 5~ (% p* s. l- z> L! {! s. 6~ 7~ ') A> Z= M; m- t) $, 6% 8~ H. 8~ 9~ 0~ |= 6% ]! ^! a~ S. S. O. b~ c, S. F# H# H# H# v) d; .- .- H# .- .- 1> t* ^' d; ^' t* q- c% f; #- b% t* f; f% q- .; f% ;+ *+ 7= *+ *+ C' *+ 7= @; @; @; @; `) A' C' C& ~) c~ -- d~ R) b= -- %, b= Y# Y# b= b= Y# b= }+ 3+ b= k' b= A* s% g, g, }+ u- e~ g, 5+ 7+ ;- i; 7+ 7+ e= G* .) l' K> %$ G* e= G* %$ k; ,- e= G* e= ,- 0+ e= G* ^) k; l+ l+ u% j+ g+ n+ l+ h+ f= h+ ;$ l+ ;$ ;$ l+ h+ ;$ ;$ n+ |' ;$ u+ t+ t+ s+ O& o+ t+ i= N> u+ i= s+ w+ u+ i= ]$ B+ B+ B% B% B% B+ A+ B% C+ E+ A+ A+ C+ A+ C+ E+ A+ A+ R& E+ E% A+ E+ A+ E+ k= O+ O+ E% E% P+ /$ R+ O+ O+ S+ /- O+ Q+ S+ $) X+ R+ R+ R+ T+ Y+ .@ X+ @@ U+ .@ .@ W+ X+ m= X& f~ #@ +@ @@ @@ `; #@ %@ '; #@ #@ +@ *@ &@ &@ %@ %@ &@ &@ >@ > ~; >@ 4$ >@ ~@ I% G- `& 5$ '@ (@ 0$ {@ R% /@ {@ d$ <@ 9$ 1- 4@ W% W% W% 9@ l$ x= 4@ e@ H } ; g~ q, v, [) v, u, x, x, s, x, z, x, v, =) u, z, y, s, z, z, x, y, y, y, y, x, z, v, x, x, s, z, z, y, u, s, =) s, u, +' q, Y! A@ (. q@ &. &. ,& -. '. A@ ). A@ -. ,. A@ >. E@ G@ E@ h~ E@ i~ V T D$ S S E@ }; C$ Z E@ H &' @% Q@ Y L@ T ` M P@ P@ J Y #= M I G ", +"]& # T@ * }* = > - > & > . ]& ] - V@ & %= U@ # E! ; & P$ ^ ] | S$ ] > H= ] ; > ] & & / { ) ] ; { ^ R$ ; ) ~ ~ | ) | W@ 2 < [ 5 { [ { ~ / { W@ -# 2 } ) / $# ## &# V$ &# d d $# ## 7 8 b } 7 2* } 7 &# : d 0 6 8 a a a i ~# c 6 7 8 8 8 e a _# r h ^# h o r -) r r c Y$ `$ ^# |& t G h j~ G G G y q m D C B w % ^# D P@ M A J P@ w x M z 8* C E$ H P@ P@ P@ L@ L N@ L@ T 3) L D$ M@ L V P #. E$ H@ R J &' H R I@ 4# H +. .= .. e- +. $% )& . 7# >. )= &. *. A@ ). H! >. e- 0# %. z@ %% %% &. H! 5# &. '. b# o) != |. v@ '= 6& 9& ~. /. {. d* *% k~ , j# e* 1. j# {= j# g# g# j# l~ s@ 9; a& 7) k# 7) U' 6. !! ^= a; ^= i* V' m~ i* e. e. c. c. c. Z- h. K! K! Z- {% ^% f. n~ h. l* U= H, H, p. )' 8) p* n* (% o~ p* z. `- W= @, m- N; A> A> z. m- a, p~ m- A> Z= [> n& q~ r* )) C> ^! O; 6% n& r~ c, 0% O. J. 0% {' F# y' H# F# b! d; v) .- 1> 1> d; ^' d; d; d; ^' f; f; u& f; t* f; f; f; q- f; ]~ s~ (! 7= @; *+ O! *+ *+ C' *+ 7= @; C' @; #; t~ B' =~ t~ Y# A* Z' b= b= Y# b= b= %, b= %, b= b= ) }+ 2+ %, `# 1+ 6+ }+ 6+ 6+ ;- 6+ J> 1+ @$ 8+ 6+ @$ .) l' G* i, .) a+ e= e= %$ e= u~ u~ %$ G* e= G* |' -$ 0+ f+ *$ u% Q, Q, v~ j+ n+ ;$ l+ ;$ l; ;$ ;$ n+ n+ ;$ ;$ y% ;$ l+ n+ l+ n+ r+ i= s+ s+ t+ n' s+ s+ N> u+ u+ N> '$ i= u+ ]$ B% B+ w~ B- B+ A+ B+ B% B% E+ K* B+ E+ C+ A+ A+ C+ F) F) H+ C+ C- A+ ^$ C+ B+ M+ O+ E% E% O+ L+ Q+ L+ E% S+ P+ P+ R+ T+ P+ T+ T+ T+ R+ G% V+ Z+ @@ X+ Y+ W+ X+ @@ @@ _$ Y+ x~ y~ +@ @@ +@ +@ W+ @@ +@ }$ %@ #@ +@ %@ #@ *@ ~; ~; *@ >@ [- &@ I% l, e> >@ d> /@ N% /@ H- O% H- U% (@ {@ )@ 0$ S* !@ {; }- w= W% W% b$ X, |@ e$ )* S [ . g~ *) z~ s, x, u, x, y, s, u, y, x, x, y, y, y, y, x, y, y, y, s, t, y, s, u, y, z, z, u, x, s, t, s, u, x, x, s, s, x, s, + O= A@ ^. = !. 5# *. )& A@ ;. F, A@ ). F@ -. z@ A@ >. E@ R 9* .= .= F@ &' D$ C$ X V L@ E@ H@ H@ J Q@ J@ P J H S Q@ H$ S T H$ S A H$ ", +"!, T@ > $ . . > > > . + = o! |* ' # # H= # > !, > > ] - > - > > > X@ | U$ | N$ - 2 ) ^ ^ { U@ [ ^ . |* R$ 2 | ] ) 2 [ W@ /& 2 ,# ( $# 6 ~ $# $# Y@ $# 8 Y@ 1 / / &# 7 b : 6 == $# a &# a ~# 8 a 6 d e 7 b e A~ $# ( 6 &# e L= e ~# c e *= i e 8 L= n e Y$ h c h c (# o h o r p 4* ^# b' O' % <, p N= y p q w C ^# M= D G /# A }# H$ G C P 8* H E$ L@ |# G P@ I E$ A J P@ M H$ S 3& 3; :* H$ M@ O@ J L B~ T U C$ L L@ H +. e- y@ z$ 7# +. )& e- .= 6# A@ @. A@ &. 5# 5# )& F, V 4) !. %. F, A@ '. &. A@ A@ !. C~ ~. b# D~ -. {. =% '. 5& ~. {. /* D~ {. v@ t@ 1. *% '! E~ 1. j# P= e# a& g# f' g# g# g# f' f' f' 9; v' !! 6. a; 6. ^= !% d. {> a; c. c. d. c. Z- {% c. Z- {% {% h. h. g& f. F~ r) H, H, H, U= (% G~ W= W= H~ l- h' I~ s. W= `- z. z. [= A> m- [= y! J~ <> K~ L~ X' P; 0~ 6% )) ]! 6% H. D> {~ M~ {' E# O. F# O; N~ H# v) H# H# v) F# .- d; d; .- d; 1> d; 1> d; ^' f; t* d% 0) t* t* f; f; ]~ d; t* /' e! $- *+ 7= O~ *+ *+ *+ *+ C' @; *+ C' C' C' C' P~ j' Q~ /+ Y# Y# Y# b= b= b= Y# Y# Y# %, b= %, %, ) %, }+ 1+ g, B* 6+ g, ;- u- t- g, +! 7+ 6+ 6+ 7+ t% 7+ e= 7+ l' i, G* G* ^) G* %$ e= e= ^) ^) ^) j+ e= e= *$ u% e= S) S) )- l+ n+ l+ l+ l+ l; l+ n+ ;$ l; n+ M& >$ l+ ;$ l+ ;$ O& R~ s+ >$ s+ )$ s+ t+ i= w+ u+ s+ u+ w+ w+ w+ B- B+ A+ B+ A+ B+ C+ A+ B% A+ A+ A+ B+ A+ C+ B% B+ D+ A+ ;; R& E% C- B+ A+ A+ C+ Q& O+ O+ E% O+ R+ L+ Q+ P+ S+ P+ S+ S~ P+ S~ S+ R+ T+ R+ G% V+ U+ W+ X+ +@ .@ X+ @@ _$ Z+ H% :$ W+ @@ @@ #@ +@ #@ +@ +@ #@ +@ +@ #@ %@ }$ %@ D- %@ #@ &@ *@ '@ '@ -@ -@ `& T~ )@ Q% C! 9$ w= U% R% /@ <) U% 0$ 9$ 1@ :@ :@ e$ 2@ f$ U~ `% v; f@ Z$ | # *) r, s, v, x, u, u, y, u, x, y, y, u, z, y, u, x, u, y, x, y, u, u, x, s, u, z, y, y, u, x, s, z, x, x, s, x, x, x, x, s, q, R E~ W> B@ 7; ). E~ A@ A@ ). &. ). ). )& )& l> z@ +. &. z$ #. I@ =. ` Z P T H L@ M@ P H ` 1# P Y L@ Y Y H Y P@ J N@ Q@ Q@ 3# A ", +". . = + ]& . $ $ Q$ > $ ! U$ 5- U$ > # . . # V@ - ~ ) N$ ] ^ U@ ] ; > - ; > - & ; R$ ] 2 [ { ) 2 | [ [ W@ ] ] ] %# [ Y@ X@ 2 < $# ( [ } Y@ [ 2 6 7 $# 2 < b } ~# $# $# } 6 e 6 _ e ,# V~ ~# g d 8 a 6 g V$ ,# 6 &# < V$ ,# d e ~# ~# e 7 7 *= r Y$ h c c o n a _# _# {& n h m D b' m K= m D C N /# y Z$ D `$ w I Z$ w I A M N@ N I P@ C w x A E$ P@ E$ U ` L |# J P U Y H@ E$ L@ U O U C$ C$ H T I@ J H D$ V Y F@ @. 4# @. (* z@ 7# e- >. ,. -. +. A@ e- W~ ). !. ). B$ .. ;. 5# 5# 5# )& &. &. {. ;. ;. +~ !. ;. |. |. e' D~ |. &% _. '& d* |. 9& *% e' '! -% e# g# , g# 0, 0, 9; g# f# f' k# f# 9; k# v' ^= 7. 6. 6. ^= i* c. X~ q) Y~ c. e. c. {% Z- h. Z- {% 4~ {% Z~ f. g& K! h. H, ^% H, l* n* V= `~ h' W= p* 5~ W= s. `- {! @, @, m- [= [= s. [= [= L~ A> A> t) 4% 0~ n& G. z! z! 6% r~ O; O; { c, S. F# v) .{ F# v) H# H# .- H# H# H# F# 1> 1> d; 1> .- d; ^' +{ f; f; c% (! q- q- f; f; q- s& /' f% (' 7= *+ e! =+ 7= =+ *+ C' 7= @; *+ @; @{ @; P~ j' d~ b= b= h! <' D' Y# k' k' k' b= b= %, Y# 3+ |+ %, A) 1+ 1+ ;- 1+ |+ %, b= g, 1+ ;- 7+ >- g, #{ t% t% i, K> l' .) u~ e= G* G* h, G* G* ^) e= e= j+ %$ G* ,- /) %$ }' S) ;$ )- ;$ ;$ l; ;$ l+ m+ ;$ l; ;$ n+ A- A- ;$ ;$ n+ l+ J* W; t+ y% '$ y% u+ y% y% u+ x+ u+ u+ u+ u+ w+ i= C+ A+ B+ A+ B+ A+ B% A+ A+ A+ B+ B+ A+ C+ B- A+ B+ B+ B+ D% T! Q& S& E+ C+ C+ O+ E% E% L+ S+ /- O+ Q+ R+ V+ T+ S+ R+ R+ R+ T+ R+ R+ /$ R+ U+ .@ .@ X+ X+ @@ .@ X+ +@ +@ _- ;, #@ +@ +@ @@ @@ +@ #@ %@ %@ #@ ~; &@ &@ &@ ;@ W, %@ &@ `& U, &@ )@ '@ >@ )@ '@ 7$ Q% )@ 8$ [~ }@ /@ ^@ !@ 0$ W% !@ /@ }@ ${ /; X% 2@ W% }@ X% q@ h ] > *) 6' %{ s, s, #' u, u, y, s, x, z, x, u, y, u, 7' u, A, y, y, u, x, w, x, x, s, x, t, v, x, =) v, s, s, H) s, x, s, x, s, q, J@ (. ^. !. ;. ;. {. ;. !. &. $. (* .= 5# E@ =. -. &. !. .= ). G@ 5# X 1# G@ C$ .= . G@ .= 4# X B$ L@ Z Y ` Q@ P@ 3# +% I P@ I Q@ J @% ", +"Q$ [* > Q$ L$ * R@ + = Z, ; . $= $ ] # V@ # & - ^& %= . . > & | H= ^& N$ ; # | | U@ - | - ; /& { 1 { W@ ~ { Y@ W@ / 2 2 } / 4 2 : < ( $# $# ) W@ < Y@ &# $# 9 W@ J= } $# / d b ( } /& 7 0 $# 8 U- 7 ,# 6 ~# d ,> W$ ,# $# 7 $# V- 7 a e ~# e g X$ a c h % n o V$ e K= g p r r `$ p 2, Y$ r /# /# C C C w N= Z$ h `$ p ^# D y 8* [# C Q@ N .~ I C A {& A E; |# P@ Q@ Q@ D$ S O H Y S z U 3& P T J +. P L@ M@ P C$ Y 2# L 7# R +. 4# C$ 6# I@ C$ &{ 7# X !> *{ z$ ={ G@ E@ +. =. 6# z@ )& z@ +. )& =. F, /. =% '. '= ;. A@ '. S' 5& 3~ != +~ -{ Q= -% /* |. 7& *% w$ e* -% P= ;{ `> , j# h# a& a& }. ;% 9; 9; n# f' n# U' U' ]= ^= a; q) q) @~ c. )! (= c. c. {% {% {% {% Z- Z- Z- Z- Z- f. l* K! r) v# l. >{ ,) H, p* b; ,{ p* '{ W= W= j& A# L; ~! p~ z. [= [= z. L~ ') M; N; m- [= N; 5% $, b, ){ q~ 6% O; 6% H. {~ F# c, c, b~ a% H# .- !{ .- y' F# H# .- F# .- .- 1> d; 1> ^' c! d; d! q- q- q- ]~ d% t* f; q- ]~ ]~ ^~ ~{ @; C' *+ @; 7= *+ *+ @; b) @; *+ 0= B' #; *+ {{ C' Q~ b= `' S; b= l% A* Y# %, %, k' k' %, 3+ s% %, %, ]{ 1+ f, ^{ g, 6+ .! d= e~ i! @$ ]) 6+ >- l' 7+ +! K> j! l' K> e= e= G* >~ e= u~ %$ G* G* ,- )- G* ,- K& 0+ &, w% )- j+ l; ;$ @) l; ;$ @) ;$ g+ /) l+ /{ h+ ({ r+ l+ >$ ;$ l+ >$ t+ '$ >$ n' t+ s+ y% u+ '$ t+ t+ w+ u+ s+ k, m; B+ B% R, A+ B% A+ C+ B+ A+ B+ E+ B+ A% B+ A+ C+ B+ A+ E+ Q& E% B+ C+ C+ L+ E% E% L+ L+ /- P+ /$ O+ /$ G% T+ R+ V+ S+ T+ R+ V+ _{ Y+ Y+ W+ .@ @@ V& X+ W+ +@ @@ X+ :$ :{ f~ @@ +@ +@ #@ @@ +@ #@ +@ +@ #@ %@ &@ *@ &@ %@ &@ =@ *@ >@ D- 1$ (@ `& L% G- H- `& d> {; ,@ {; {; S* R% 0$ 9$ }@ W% !@ g> ^@ 1- }@ ^@ 9@ |@ {. h & <{ *) `, s, r, x, y, x, x, r, v, x, y, u, u, s, u, y, x, s, z, x, y, s, s, x, x, s, x, s, x, x, u, =) x, x, s, y, s, A, x, s, q, <, v@ &. '& ;. %% A@ c# ,& 5# )& &. ). &. 4- &. (* 8# +. V A@ ,= (* A@ E@ H X E@ 2# 2# T T C$ b- Q@ M@ L@ L@ P@ P@ I P@ Q@ J #= Q@ A M ", +" + + M$ & # # $ ; - - > ^& ^& & ; & U@ V@ [* $= > . & - 2 ! - ^& ~ N$ S$ | N$ & 5- ; ^ %= 2 ~ } ( ~ } *# V$ 1 ) - ^ ## / ) { ,# $# W@ | 6- ( == } } e d -> } e ( 8 [{ ( } &# [ 6 6 V$ &# V$ [ a 8 7 7 d 6! }{ a 8 9 9 ~# $# i [& g q> ~# h -) 7 `$ K= l n 7 r r h p :, p r p q s> ,> Y$ I z D `$ M z /# C r z y w G Z$ w A I K@ Q@ K 1& |{ Z z H$ A B K@ M 3# A 8* O H S O@ Y d- X H J T T Y C$ #. d- O= 7# @. C$ C$ Q' X E@ >. L@ V H$ +. . E@ (* .. =. $% +. z@ ). 0# 9# A@ ,. ,. *. *. A@ ). *. x@ '. x@ /. {. /. |. 5& `> %% w$ /. %% v@ {. u' k~ *% -% :. 5) {= *% 0, , , l~ a& g# 9; 9; 9; f' f' n# n# 1{ ^= 6. a; v' a; @~ e. )! V' e. c. {% h. {% Z- h. h. Z- h. K! K! f. K! r) K! H, H, ,) H, (% (% p* W= ,{ b; K; W= `- $~ W= @, [= ') m- z. X' m- 0! A> A> ') 0! b, C> {~ H. C> G. 6% ]! 6% ]! b~ D> G# ]' H# H# 1> a! H# H# H# .- 1> 2{ c! 1> H# d; d; d; 1> ^' d; f; ]~ t* t* z& ]~ 3{ f; 3{ 3{ ^~ O~ 7= *+ &+ 7= @; ~{ ;+ =+ =+ @; @; C' 0= h! 4{ F> @{ P! Y# Y# S; {{ f! Y# %, %, b= Y# %, %, ]{ 6+ H& k' b= /+ b= B* 1+ 1+ f, k' 1+ 1+ -~ l' 5+ l' 7+ .) K> G* i, j! .) i, e= G* ^) ^) u~ G* e= e= k; j+ G* ^) G* e= &, 5{ n+ k! j+ l+ ;$ l; l+ @) l+ l+ l+ n+ ;$ l+ l; =, l+ l+ ;$ n+ >$ t+ 6{ y% 7{ V; '$ s+ u+ u+ t+ '$ i= w+ i= i= w+ B+ C+ A+ m; B% w~ B+ C+ A+ B+ B+ C+ ]$ C+ A+ ^$ 8{ 8{ R& E% /$ 9{ C+ C+ P> S+ L+ Q& L+ /- /- Q& O+ R+ R+ P+ R+ V+ R+ T+ Y+ R+ Y+ Y+ V+ U& U+ X+ Y+ m= U+ X+ +@ @@ @@ 0{ M* +@ &@ #@ +@ &@ #@ #@ #@ #@ #@ %@ *@ m, &@ &@ *@ -@ [- p= >@ >@ )@ -@ I% &@ (@ 9$ ]@ 2$ T% (@ }- O% U> :@ a{ /@ }@ W% !@ !@ 4@ 0$ P* b$ 3@ !. f ~ + J$ [) 5' ^, v, z, x, s, x, s, x, y, x, z, u, y, y, s, u, -! y, x, u, x, x, x, x, z, y, y, 7' x, v, v, }) v, v, 6' s, s, s, =) >> x@ p) (. !. !. -. ). '. -. A@ ). )& -. &. .= ). 5# #. 8# ,= .. #. E@ +. $> G@ V 2# P L@ P P M 1# E$ M H H K@ Q@ A Q@ Q@ N@ P@ A I ", +"R@ # T@ # # S$ > > & & . > % + . |* V@ V@ . S$ V@ $ U$ ; & # . N$ - ; 4 | . > ] *# | ; | b{ Y@ | < ) [ } } / / | ] ( ## : 7 { 6 } ( { 8 X@ < $# { 6 b _ : [ { ( e 7 6 7 } 6 9 e [& 6 e e $# ( } 7 i i V- V$ ># &# 0 2* n {# a j a c k L= c{ h Y$ % ^# r K= ,> 4* w ^# r p 1; m `$ Z$ /# h ^# P@ ^# m 2; u /# )> _# /# G w C O@ B Q@ J 3# F= I H O@ H$ A I a- b- 3# 8* r! M J E$ d{ L V :* P@ >) T J T H H@ I@ d- C$ D$ L z$ z$ 4# W D$ Q' )& z$ . e- )= ). z@ 5# !. =. #. &. >. 5# ;. '. A@ 0# -. &. x@ =. %% ). -. ). %% %% '= {. |. D~ 6& +~ {. e{ |. f{ H; t@ , P= P= 7& e# P= j# g{ f' g# 0, 9; a& 9; 4. g' n# h{ i{ 6. 6. a; j{ 1{ 0. 9. V' a; ]> Z- h. Z- h. 8! {% Z- h. {% c. h. l* K! r) r) g& H, V= (% V= (% ,) (% V= G~ W= l- j& k{ H~ {! m- [= A> m- l{ m- A> m- ') m{ <> r* G. P; H. q~ |= O; M~ z! 8~ M~ D> F# F# F# n{ S. v) 1> 1> .- .- 1> .- .- 1> !{ d; 1> ^' 1> 1> d; +- t* t* f; f; d% 0) f; f; ]~ s~ +; 6= 7= *+ *+ o{ O! @; @; *+ @; 7= *+ 7= C' p{ C' P~ _' ) Y# q{ <' b= r{ Y# Y# _~ %, %, Y# b= %, |+ A* k' k' k' B* |+ g, .! k' 6+ 6+ g, l' i; g, +! 7+ .) e= e= l' ]) G* e= %$ %$ e= G* e= ^) G* k; ,- +) e= >~ ^) G* s{ l+ l; k! l; l; ;$ ;$ l; ;$ ;$ n+ h+ ;$ ;$ ;$ l+ ;$ n+ l+ l+ ;$ t+ s+ s+ r+ x% t+ s+ '$ w+ w+ M> u+ u+ w+ u+ w+ B+ B% B+ C+ B+ E+ B+ B% A+ A+ C+ B+ D+ E+ A+ A+ C+ E+ R& A+ O+ E% E+ C+ H+ L* Q+ Q& Q+ L+ S+ O+ R+ t{ T+ R+ P+ R+ R+ Y+ V+ T+ V+ G% m= U+ `; W+ V+ W+ @@ W+ W+ Z+ W+ X+ @ @@ :- +@ +@ %@ #@ %@ %@ *@ #@ &@ +@ -@ %@ %@ S> *@ C! p= &@ I% 4$ -@ )@ p= I% * * R% *@ u{ u= {@ }- )@ {@ ~@ R* |@ P* W% ^@ <@ ^; !@ 7@ X 7 ; ], ^, q, r, x, t, s, y, s, y, v, x, z, x, s, s, u, z, s, s, r, s, v, v, x, u, u, x, s, u, u, s, s, s, H) A, v, r, 8' u, t, s, H) ;> A@ ;! T' &. b# d# x@ z@ x@ &. ). A$ l> A@ 7# .. 7# x@ $% V @. E@ .= B$ V H 2# 1# L@ C, S J 2# P 2# O P@ S L@ A H M J 8* 1# S z ", +"* & . . . # V@ S$ S$ - ; | * V@ > |* # . > H= # & - N$ ^ ] ~ ~ ^ ^ %# ~ ; N$ N$ 7- N$ ) T- ) ~ # 2 { } ) { | R$ ] ~ 1 ) : W@ ~ { e W@ 2 X@ ~ /& $# } $# 6 } 7 +# e } } 7 6 7 $# { < } c | ~ ,# e *= e 7 D, k 8 6 k ~# [& s> 7 e 8 h ~# ~# 8 a e r `$ c o 0- `$ `$ n ^# r o c h Y$ h Y$ _# r 2; D D ^# G D 5* C ^# w z w I B H$ O@ M P@ A P@ 8* @% M J O@ H$ P@ P@ L@ ` P@ P 4# P |# H A S L L@ T T V 7# C$ L@ 4; Y D$ C, Y P H J 7# $. >. >. P +. 5# &. )= =. e- %. ;. .= -. &. )& &. A@ ). ;. &. ,& A@ -. x@ /. ~. ~. v{ {. {. d* w{ &% &% v@ `> u' P= e* {= P= {= x{ h# 1. P= d* 0, g# e# g# 8; h{ 0, 6. n# 7) g# g' a; g' @~ y{ m~ z{ c. A{ m~ {% {% {% Z- 8! Z- h. B{ Z- {% K! K! l* r) K! H, l* C{ 8) '{ p* h' I~ i& W' D{ p* E{ N) H~ p* j& [= t) m- A> A> A> :> y! a, a, 8~ O; 6% O; C> 0~ 6% |= M! O; O; ]' L. a% F# n{ n{ x' .- H# x' 1> .- 1> d; 1> d; 1> d; 1> d; d; 9) F{ s& s& d% ^' f; f; q- z& ]~ q- z& O! b) @; G{ H{ O! C' ;+ *+ @; I{ *+ @; ~) a= @; J{ #; S; <' K{ h! b= %, b= b= %, %, b= k' k' Y# c= %, k' b= c= f, d= B* w- %, >- ;- g, i; 7+ 6+ i! 7+ l' L{ e= K> ]) ^) e= i, e= e= >~ .) +) k; >~ e= s{ [! k; k; ,- M{ &, &, g+ j+ ;$ n+ ;$ ;$ ;$ l+ l+ h+ ;$ ;$ A- >$ n+ l+ n+ n+ l+ i= N> s+ y% r+ w+ t+ u+ u+ i= M> w+ N> i= i= j= B% k, A+ B% A+ B% B+ B% B% B% B% B+ B% B% A+ B+ C+ C+ F) C+ C+ N{ S& B+ E+ C+ O+ E% O+ a> Q+ P+ S+ O+ P+ S+ P+ L+ L+ R+ T+ Y+ R+ R+ T+ Y+ W+ Y+ V& .@ X+ W+ W+ W+ X+ `; _- H% O{ @@ @@ %@ %@ %@ +@ %@ +@ %@ &@ }$ %@ &@ J% V, * %@ p' =@ &@ >@ *@ (@ N% )@ ]@ * e> U% )@ I- R* b$ /@ b$ v= 9$ ^@ ^@ W% P{ X% x= a@ Y 6- T@ R@ *) ^, r, v, z, x, s, s, x, s, x, v, s, s, =) u, y, z, s, 6' x, u, u, y, y, y, y, y, z, u, y, x, H) x, x, x, v, s, u, u, x, s, ] $% {. !. '. ). z@ '. b# ). *. %. 5# A@ *. =. G! x@ +. .. .= =. 5# H P T Y H P D$ Y H L@ H ` S H$ ` S J ` H$ K@ P@ A z O I ", +"1* > ]& % !, & $ # # ]& ^ | L$ . ; $= ; & ; | | H= > > |* H= ~ ; $= U$ ~ ~ 2 N$ N$ | & U$ { 2 { ) ^ $# W@ { ) { / U$ /& %# N$ [ ~ $# { } $# # ## d ( { Y@ / < Y@ b / 7 [ < 6 0 6- 7 1 [ 8 -# 8 $# V$ b c e $# ~# 3* 8 &# ,# j 0 g a 6! L= s> 8 i [& 7 n 9- t' n n h w Z$ r n c o p _# c{ Q{ Z$ r h /# :# M {& 4* D C w w ^# F= C P@ P@ I M 3# N N N@ 1& N@ 3# Q@ 3& Q M N@ S O@ E$ H H K@ I S P T L@ O C$ V L@ L J P G$ C$ 1# U 7# V R 5# $% #. B$ A@ 7# )& V R{ 5# =. 4- F, ). *. &. e- (* !. A@ &. 5# ;. B@ ). a* H! D~ /. !. D~ 7, u> >' v@ ~. != 5& e' d# {= e* P= , {= P= , S{ , , j# a& g# k# T{ ., , n# n# f' 1{ v' q) ^= q) !! v' q) e. U{ @~ V' c. {% Z- {% Z- {% Z- h. h. K! g& g& V{ r) K! l* r) W{ g& i& p* h' W= I~ I~ l- H~ @, k{ l- H~ z. [= A> [= [= m- A> M; l{ )) q~ C> n& n& 6% ]! |= M~ u) z! {~ 6% E# {~ r~ b~ X{ c! F# b! H# H# H# 1> 1> ^' d; c! 1> d; d; t* 1> q- q- 9) 0) f; f; q- t* f; 9) q- Y{ (! z& *+ N! Z{ b) C' 7= *+ C' C' 7= *+ *+ `{ S# {{ /~ q{ <' Y# S; %, D' Y# %, k' /+ D' _~ `' %, %, %, ] _~ k' _~ %, ]{ 6+ k' 6+ i; e~ i! 5+ >- i! i; l' ]) K> K> l' l' e= e= G* G* G* ]) K> +) G* ^) k! k; e= G* u% G* .] .] U; )- k! l+ l+ l; ;$ l; l; n+ l+ ;$ ;$ >$ n+ f= l+ n+ >$ n' i= t+ t+ t+ s+ y% t+ i= u+ w+ y% '$ w+ u+ x+ i= k, A+ B+ B+ A+ A+ A+ R& A+ B! C+ C+ B+ B+ B+ B+ B+ C+ B% E+ Q& S& C+ E+ E+ M+ O+ O+ /- S+ R+ S+ Q+ L+ Q+ /- /$ Q+ Q+ R+ R+ R+ S+ Y+ V+ W+ Y+ @@ X+ .@ W+ W+ W+ @@ V& <$ H% @@ +@ +@ #@ #@ +@ #@ #@ +@ #@ @@ '; &@ $@ > p; J% =@ *@ -@ =@ >@ s= ]@ -@ '@ )@ R% 2$ 0$ R% 6$ T% !@ <@ V% !@ 0$ S* ]; J- W% W% f$ +] K@ Y@ & ^, 6' +' @] s, s, x, z, x, u, u, s, x, x, s, y, y, y, s, s, y, x, 7' y, u, u, y, y, u, x, y, z, z, u, z, u, s, u, s, u, 8' x, V! 5# B@ &. '& #> ;! A@ V> &. ). &. E@ $% =. e- .= h~ .= z$ z@ 7# Z V C$ 1# P |; J P@ |# Y E$ R H Y T +% K@ H$ L M I I )> S S S ", +"# # # # !, > - V@ + + = $ > > # ; > # V@ N$ ; & & Q$ ^& & R$ ; ] 2 %= 2 ] V@ 2 /& | Z! ; { [ ) ; *# d ~ 1 7- 2 W@ 2 ) ] 2 ~ & < 1 < ) a J= : | { 1 ;# 7 { $# $# &# d V$ 6 i < $# 7- &# 6 b a a 6 e 8 d ~# i &# 7 6 {# e L= a q> a n n n 0 c L= n o -) ;= % p q> p ~# r n Y$ l ;= c G p ^# #] C q D D M z Z$ w N /# F= J }# $] N E$ z I A N M T U E$ N w M@ D$ N x O@ T H T J M@ Y T X D$ 7# L@ P' W I@ Y #. 7# T C$ L 2# A@ E@ z$ W @. @. $% z$ ,= $% )& E@ )& A@ B$ >. z@ =. &. !. !. !. ;. B@ ;. b# /. '= '. =% ~. =% {. '= '= b# 6& Q= *% t@ *% P= ~= %] u' g{ '! , e# 9; 0, g# g# 0, e# f' 9; f' 6. k# 1{ 6. 6. a; a; !! @~ !! a; &] !! q) V' c. {% {% Z- h. h. h. Z- h. r) h. f. H, K! l* H, W' H, b; $~ (> (% (% W{ *] h' j& p~ E{ k{ N) N) [= [= [= m- m{ [> !' 0~ 0~ q~ q~ ]! z! 0~ 0~ C> |= |= O; {~ =] a~ Z) y' n{ a% c! y' y' c! x) H# ^' ^' ^' .- d; d; 1> d; d; 1> q- f; f; 0) q- q- f; d! -] ;] O! ^~ 0) +- v& H{ v& C' @; @; 7= *+ @; @; 7= `{ P! Q) f! Q~ <' D' <' R) 5> k' b= Y# %, %, _~ %, %, %, H& Y# _~ k' k' ]{ >] d= 6+ k' 6+ i; i! e~ l' i! ,] 7+ 7+ .) e= l' l' i, e= e= e= ^) u~ ]) ;~ ^) e= %$ u% %$ %$ ,- ^) G* .] '] g+ l+ ;$ l; l+ l+ ;$ l+ l+ l+ l+ ;$ l+ l+ l+ ;$ ;$ ;$ l! D) s+ y% t+ s+ A- g= t+ i= N> y% t+ u+ s+ w+ ]$ B% B- B% A+ B+ B% B% B! B- A+ A+ K* C+ A+ C+ A+ A+ D+ J+ B+ )] a> F) C+ F+ C- K+ O+ /- Q+ S+ P+ S+ L+ Q+ R+ E% R+ T+ S+ R+ R+ T+ R+ T+ _$ m= .@ X+ W+ Z+ X+ W+ @@ Z+ +@ _- :$ W+ @@ @@ +@ p; #@ %@ #@ +@ +@ >@ %@ &@ D- > !] %@ D- * 1$ -@ 4$ ^@ '@ G) .* R% 6$ N% S% ~@ (@ >, P* X% }- W% g> U% x= J' b$ X% i@ D *# $ i) q, r, q, x, s, s, t, y, t, x, u, s, s, |) x, x, x, z, u, u, x, s, z, u, s, s, y, z, A, v, x, x, u, x, z, x, x, s, s, s, x, x, q, B$ '. ;! A@ x@ ). (* =. =% x@ )& P )= z@ )& $% H@ &. .= 2# 2# @. U C$ L@ O R S P T D$ P C$ ` 2& +% J E$ S z I M J w @% ^# I ", +"$ # ]& > # > . $ + & ' S$ N$ - ^& = > R- & . # M$ Q$ # > . H= > ] | ; 2 { V@ { | ; [ ] ~ 1 $# ## Y@ ) `@ ~ ;# ] } ^ ] ! } 2 [ d J= { ) ~ 6 i W@ [ / Y@ : { *# &# } $# 6 8 } ## } [ } } c e $# == _ =# b a N' $# e a 0 -# e {# e ~# L= g c ,# 2, ~# [& o g n C; _# r `$ n h r 0 [& r r m `$ q m t w I G z z G I p ^# `$ w N J O A M x E; x I G M z 7* I Y Q@ I |# P@ P P d- E$ Y L@ E$ S J C$ G$ X d- U Y . z@ y@ #. E@ .. #. @. X +. #. =. )= .. E@ (* 0# )= ;. 5# &. )& =. &. 5# &. ). x@ v{ b# ,& S' z@ ,. 5# /. {. D~ '. +~ &% ~] |. &% w{ 7! {] 7& t@ P= f{ g{ -% '! h# s@ {= j# g# 0, 9; l~ l~ 9; 8. U' f' ]= ]= n# v' {> g' a; !! ]] w> a; @~ c. Z- {% K! Z- Z- K! h. ^] h. h. f. ^> h. F~ l* g& g& W' (% ,) '{ p* ,{ W= L! z> z. k{ E{ `- l- m- m- m- A> 0! L~ [> /] (] q~ 0~ M~ q~ C> z! O; ~' E# {' C> M! F# x' y' _] x' ]' H# !{ :] x) |> .- 1> ^' .- H# d; d; ^' q- <] F{ q- f; M, F{ 3{ z& q- 3{ ]~ ]~ (! f% [] y) y) ~{ C' C' *+ *+ *+ ~{ C' _! ~) `{ ~) _! Q~ j' -- b= S; /+ }] A) %, %, b= b= k' %, b= c= %, b= k' k' A* }+ k' -~ %, ]{ I& +! i! ;- >- g, .) .) l' L{ ]) l' i, e= G* G* %$ G* i, u~ ^) e= >~ 6> %$ G* f+ G* ^) &, /) 6> u% ;$ ;$ g+ l; l+ l+ ;$ ;$ l+ l; n+ l+ ;$ ;$ l+ l+ |] 2' y% t+ }! =, /{ t+ s+ '$ u+ '$ |! y% s+ u+ u+ w~ R, B+ B% A+ k, B+ B% B% B% B% B- B+ C+ A+ C+ B+ D+ J+ C+ C- O+ J+ C+ E+ M+ L+ L+ L+ a> /- P+ L+ E% E% /$ S+ R+ T+ T+ R+ R+ R+ V+ G% .@ `; W+ W+ W+ @@ @@ W+ X+ @@ @@ H% H% #@ @@ #@ +@ [$ &@ %@ #@ }$ }$ *@ &@ #@ =@ V, S> 1] *@ 2$ '@ I% >@ * )@ T% G) G) R% ^@ P* W% P* !@ !@ W% ^@ 4@ d$ 4@ d$ !@ /; |@ u@ C ] ], `, 6' 5' +' r, s, x, s, s, z, x, u, H) s, v, z, x, s, x, t, u, v, u, u, x, u, s, x, u, x, A, u, y, x, s, x, x, x, s, s, v, s, v, 6' 2& ^. ^. ,. !. (* &. !. A@ &. !. 4) A@ ,& >. &. 5# V> R V> E@ F; G@ E@ C$ R E@ E@ 2# 1# Y D$ 2# Y P@ }; H J P@ A z O@ Q@ G x I I ", +"]& [* V@ & . 0' > . = }, ; . > . ^& # . ; T@ # N$ - ; T@ - 1* | ; ' ] 2] { ) - ] Z! ; | | ) 2 ) ~ 2 & U$ { ( ~ ] 7 *# X@ ( ## ) W@ ## ;# ~ d ( / 1 ( ~ 2 4 3] N' d U- 7 6 7 -# 4 9 Y@ $# :& J= X$ &# 2 3* '# b a c{ i 9 -# a ,# c 0 a ~# e a r p 2, n h c f h h n p _# `$ X$ `$ ^# Y$ Z$ Y$ ,> `$ Z$ w G w G B `$ m {& ^# F= z N w N M D D z I I z F B P@ |# K@ m) ` 1& W |# E$ J E$ L@ H$ H L@ C$ M L@ C$ H C$ K@ 7# H 4# #. z$ 4# +. 4# 4# P B$ $% .= *. #. A@ ,. $% $% >. $. *. =. +. e- b# b# x@ &. .. x@ ;. &. &. D~ '. /. ~. ~. /. S' '= >' &% 3~ 4] 5] >& /* != `> e* ., ,% , P= P= s@ P= 0, e# P= l~ 9; I! 0, f# 9; g# f' f' 7) i{ j{ y{ ]= !! ]> #~ q) q) w> c. {% Z- K! h. K! Z- h. K! h. l* g& r) F~ l* l* W{ W' W' p* W' h' 6] I~ 7] l- L! p~ W= N) 8] A> [= A> A> m- ') 9] ') ') 0! 0~ 0~ ]! O; O; 6% {~ r~ z! { b~ F# Q; r~ D> =] ^! c! b! 0] a] ^' 1> .- d; d; 1> 1> d; 1> s& 9) ^' 9) f; q- ^' f; +- f; q- ]~ F{ s~ .; N! e, 7= 7= *+ *+ @{ @; C' G{ C' *+ @; `{ S# @{ B' ~) S; Y# <' <' b] D' b= %, %, k' k' %, %, k' d= k' %, k' ] _~ c] i! ]{ d= 6+ .) i! -~ l' d] g, 7+ 5+ ]) i, u~ .) R! e= ^) e= L{ ^) G* e= e= ^) 6> k! ^) +) k; ^) U; l; ;$ k; k! ;$ z- l; l+ l+ ;$ l+ l; l; ;$ @) ;$ A- l+ @) ;$ l! >$ y% y% A- V; s+ t+ s+ s+ t+ t+ s+ w+ w+ u+ z+ z+ B% B+ B% A+ B+ B+ A+ C+ A+ B+ A+ A+ C+ B+ B+ _) C+ A+ S& Q& #) E+ C+ E+ L+ O+ Q+ S+ L+ /- S+ /$ L+ Q+ R+ R+ R+ T+ T+ V+ V+ T+ T+ Z+ Y+ W+ V+ Z+ W+ W+ W+ X+ W+ @@ `+ Q> +@ #@ #@ +@ #@ *@ %@ %@ ~; }$ ~; D- > 1] &@ 4$ e] >@ 4$ >@ *@ >@ * .> R% ]@ s= ,@ * I- (@ * +* 9$ +* 4@ Q* !@ 9@ V% 2@ ^; X% '. c{ f] % z~ z~ =) s, s, 8' u, z, x, t, u, u, x, x, x, x, =) g] x, s, x, x, x, y, y, z, u, v, s, s, s, u, y, u, s, y, x, y, }) s, s, x, v, 6' N ). ~. = B= -. ). x@ &. )& L) ). 5# >. z@ -. (* =. (* ,= z@ )= B$ 2# 4# X R G@ 2# 2# Z ` M@ L@ +% K@ P ` Q@ P@ P@ H$ F= A w z x ", +"]& o! . $ > . S$ . ^ H= S$ Y! - ^ `@ > U@ + - - V@ | ; . % - N$ ^ 5- > + ^& U@ ] N$ ] N$ | | N$ | , | ) - ~ ~ | | %# ~ ## } $# X@ } : { _ ## & ## 6 X@ } } I= V$ } ( : $# [{ ># g b ( -# b 6 ~# ,# $# 7 a &# ~# c n a 7 =# g 0 o [& a L= ~# ~# e e Y$ o e a c C; n r h ~# ^# p ;= ;) r u h p `$ D p G w ^# w Z$ ,> G m M O@ N= G I C ^# I O@ L N P@ h] J J O U I 3& P@ T J J D$ T ` K@ H Y 3# ` Y I@ @. J .= I@ L z$ 5# 7# . C$ .= H V .= y@ +. 5; X +. x@ ;. *. 5# =. $. A@ $. ). A@ y@ '. b# a* !. S' +. &. '. !. H! {. {. !. D~ /. |. ~. =% 1~ 3~ +~ *% 9& d* k~ -% , P= , P= h# e# 0, e# j# '! 9; I! l~ f' k# ]= 9; 7) k# v' 1{ i] ^= !! j] Y~ h* q) V' e. Z- Z- Z- k] h. h. h. K! K! K! g& H, K! H, l* U= h' G~ ,{ p* l] m] W= ,{ l- l- k& W= l- [= A> z. m- m- A> ') n] ') 0! a, a, C> ]! |= H. q~ ]! 9~ r~ ^! Z) b~ F# 1> b~ b~ :] H# H# 1> o] d; d; .- 1> 1> 1> 1> d; .- 1> ^' d; 9) f; t* q- f; f; f; ]~ f; M, Y{ N! f% p] ~) 7= @; c) @; @; @; ~) C' C' C' @; _' C' C& @; q] l% Y# r] D' 5> D' %, Y# b= %, k' %, k' %, %, /+ %, %, k' s] g, 5+ _~ 5+ 7+ e~ g, #{ .) d] i! .) .) +! .) .) t] e= e= >~ ^) ^) K> %$ G* e= ^) k; ^) e= k; )- k! ;$ ;$ u] j+ ;$ |' g+ l+ @) l; l+ ;$ ;$ @) @) n+ M& ;$ n+ ;$ n+ l; y% t+ y% n+ x+ t+ '$ o+ i= s+ i= w+ u+ u+ x+ A% B+ B+ B% B+ B+ B% B+ A+ B+ B+ B% B% A+ B+ B+ B% B+ A+ ;; S& E% L+ E+ E+ M+ O+ P+ O+ E% L+ /- Q+ Q+ L+ S+ T+ S+ V+ R+ T+ T+ R+ (- V+ V+ W+ .@ V& Z+ W+ W+ @@ Z+ @@ @@ M* v] +@ +@ +@ Z& #@ @@ %@ #@ &@ U, w] x] > %@ >@ $@ =@ *@ 4$ -@ -@ )@ !; S% R% * R% ]@ * U> * T% }@ ^@ {; W% P{ P{ 3@ P{ W% y] 5# h > + ^, 6' v, s, y, t, u, u, x, t, z, s, u, x, u, x, s, v, =) y, u, s, x, y, x, u, x, s, y, x, s, x, u, y, s, s, s, v, z, s, x, x, H) v, `$ !. -. {. x@ A@ {. B@ ). d# C@ 4- A@ 5# #. E@ +. 4& E@ X T E@ H@ J E@ R )= }; J Y P #. H M@ S M P@ H Z J z H }# K@ 1& I H$ ", +"]& H= !, R@ V@ # # $ # & z] ; . Q$ V@ & > > . V@ R@ - *' }* - > ; ; > ^& ] U$ . & X@ | P$ | ) 4 2 *# R$ & 2 ~ > ~ 2 | { &# 2 / /& [ ] +# J= 1 { ~ ( ~ W@ } , 6 9 -> == $# $# 7 q> ~# a 6 7 /& == e e 8 $# 7 6 e 7 8 &# [{ g g ,# Y> , 8 e 8 a a K= a ~# ~# !# 6 c o 2; p 4* r p ~# s K= h o 0- m D p `$ ^# y u `$ D B N w z 5* z D Q@ 2; W) s D A O@ L J T O@ O E$ |# O E$ J A P O T H T s! J C$ X J L D$ H D$ Y Z 7# C$ D$ y@ ,= E@ P A@ +. E@ 8# C$ @. E@ A@ Q' A@ ,. +. z@ 5; !. =. 9# *. x@ ;. b# ). ,. %% {. [. T' ^. &% {. /. /. ^. &% 3~ 3~ &% |. A] 3~ -{ >' -% P= 7! , '! , a& j# '! j# '! g# ;% ., j# n# n# f' ]= f' 7) y{ ^= {> ]= a; /= Y~ !! w> Z- Z- {% {% {% K! l* Z- Z- h. B] f. g& K! K! H, l* l* H, H, W= ,{ )' p* I~ W= h' z> @, H~ z. z. m- A> A> N) A> ') [= C] l{ ') t) 0~ ]! q~ 0~ 9~ 9~ { {~ O; =] =] S. =] x' r~ H# H# H# H# .- .- d; !{ d; d; .- d; 9) ^' d; ^' ^' t* f; q- 0) q- q- Z{ ]~ O~ f; Y{ ^~ D] *+ *+ v& E] y) C' @; F] b) *+ *+ b) P! ~) 7= P~ d~ W# b= d~ R) b= G] %, Y# b= %, Y# %, b= %, %, %, k' /+ %, .! B* 1+ c] 2+ 7+ g, g, .) .) g, 6+ -~ ]) i, K> .) l' ^) e= ^) G* ^) R! G* >~ e= e= ,- %$ e= |' g+ 6> /) 5{ /) j+ ;$ |' &, |' l+ ;$ l; l; ;$ L> l; l; C) ;$ >$ ;$ l+ n+ y% t+ }! r+ x% y% t+ w+ x+ w+ o+ u+ w+ u+ i= ]$ B% k, B+ B+ B% A+ B+ A+ C+ A+ B% B+ B+ A+ A+ A+ A+ ^$ ;; C+ E% L+ k= A+ C+ k= O+ E% O+ P+ P+ C- M+ Q+ R+ S+ S+ /$ S+ V+ Y+ Y+ V+ R+ X+ W+ X+ X+ V+ V+ @@ X+ Y+ X+ @@ <$ &@ &@ +@ +@ Z& +@ %@ +@ +@ %@ &@ e] *@ W, &@ *@ 7$ !; *@ *@ *@ -@ `& `& Q% s= T% R% R* +> ~@ 9$ (@ V% :@ H] }@ b$ b$ 1@ 9@ R* |@ 4# e & ], z~ q, q, s, s, x, s, =) x, u, v, t, s, s, s, H) x, s, s, x, y, s, x, s, u, u, x, z, x, s, y, x, |) u, A, s, v, q, s, s, x, s, H) 6' I] {. !. &. z@ ;. ). '. &. -. =. -. z@ z$ 7# -. z@ A@ (* 7# G@ 5# 5# E@ R +. X C$ H@ 1# P@ L@ P@ O S I I H Z N J H$ N= A G b- G ", +"V@ k) ]& R@ * + $ & # & # N$ ; N$ $ + > + !, # > ; ; H= X@ %= U@ > & h) `@ ^ - $= & U@ %= ; | [ 2 ~ - | { ) S$ ) | 2 2 [ /& [ 8 < # ## W@ | %= ~ | { } *# &# 4 ( 6 ( } ) V$ i &# 7 J] 2* q> /& 8 6 i ~# e b 8 g 6 8 e q> 2* 1 K] e X$ 8 e 0 ~# h i n Y$ ,# e o h r `$ r 0 ~# Y$ n Z$ c r 6* o )> N ^# ^# `$ Z$ G z z N I t /# w G A w /# A I N D N Q@ P@ Q@ T H E$ L@ S 8* J H H$ E$ P@ L@ E$ P X O@ P@ X L@ P X 7# T 4# E@ .= Q' z$ z$ R' A@ . )= #. z$ +. O= (* e- G@ !> )& )& A@ &. 5# 9# H! '. b# 7, o) x@ '. 6, '. 0# '. ~. =% &% w{ ~. 5& 6& '= +~ /* 8& e* L] {] M] *% P= , '! P= , e# '! '! , 8; g# 9; ;% g# k# k# 7) k# y{ 1{ i{ i{ {> @~ !! V' N] j{ B{ Z- Z- K! K! K! g& {% c. h. Z- g& g& l* r) l* F~ W' W' W{ b; `~ I~ h' 8) p* l- l- [= L! {! [= O] m- m- A> m- A> L~ m{ m- A> P] 9% ]! 9~ =] n{ O; O; {~ ^! H. r~ Q] =] M! b! b! .- .- H# H# R] d; d; H# .- 1> 2{ 9) ^' 9) 9) ^' q- q- t* e; ;] f; ]~ f; f; 3{ 3{ S] ]~ ~{ z) &~ T] O! @; @; @; @; @; C' C' I{ C' U] c~ V] W] r{ _' h! <' 5> l% k' _~ _~ _~ k' k' b= k' _~ %, k' ] :~ _~ X] i! d= Y] ^{ g, +! ]) +! g, ]) ]) ]) ,] .) .) ;~ ^) R! >~ e= e= i, k; ^) e= @! k! e= ^) k; 6> e= .] Z] l; k! l; ;$ l+ l; l; ;$ @) ;$ @) l; l+ l; l; ;$ n+ l+ l+ A- |! |! >$ 2' i= |! t+ i= i= s+ w+ w+ u+ w+ k, A+ B% w~ B% B% B+ B% B+ B+ B+ `] A+ B+ E+ A+ A+ A+ B+ B+ B+ B+ Q& ^ C+ D+ ^$ P> L+ L+ O+ R+ /- O+ G% /$ T+ R+ T+ Y+ /$ R+ T+ t{ T+ T+ Y+ .^ V+ Y+ Y+ X+ W+ W+ Z+ @@ `; X& f~ +@ W+ +@ +^ @^ +^ +@ +@ +^ w] !] %@ &@ w] > w] S> -@ 7$ u{ C! W, '@ '@ (@ 5$ R% ~@ ,@ <@ +* /@ !@ 9$ }- [@ }@ S* :@ /; a@ 2# 6 > R@ 2! q, q, s, r, v, |) x, y, z, y, s, s, v, x, s, r, r, v, s, t, z, 8' x, x, s, u, x, s, s, t, v, t, u, z, u, s, r, x, s, s, r, v, v, @# A@ x@ '. x@ ^. A@ {. ). x@ ). !. ). ;. -. -. ;. I@ 9* +. (* $. z@ C$ H L@ L@ Z X H@ M L' P J C, }; P@ J J Q@ M M z I 2& P@ {& ", +"$ + R@ R@ ]& # #^ . > > =' S$ $ ]& k) ] - $ `@ V@ |* > * Q$ - ] & > ; ; Z, ] - U$ < | { [ ] %= ~ ~ Z@ ] | { | 9 ^ < [ { W@ X@ W@ ) +# ^ / $# N$ &= } 1 &# ( } *# 3* $# a 7 9 &# a' &# : -# $# 7 [ ## { e 8 7 6 b 7 7 e 7 ( a c a 6! 8 b n L= a' g c L= 2, h 9- X$ ~# F! h r L= r % e h h ^# p Y$ y G t ^# @= w w C N G z m F= 4* ^# G G I O@ K@ A %> I Q@ E$ L K@ J |# E$ M N |# L J J S L@ D$ P@ T I@ J T @. B$ X S 2# W }; ,= +. 4# z$ !> +. )= E@ =. >. >. . ). >. !. $% .. *. $% #. x@ &. 5# 5; !. b# '= '= ). x@ {. b# %% ). 5; 3~ 3~ {. 5; +~ ^. ^. '& $^ 1. d* P= ,% e* P= {= {= , '! , , 6) j# 8; U' 9; 6) f' ]= n# y{ 7) %^ y{ !! f' !! !! ^= i* {> !! (= c. h. Z- Z- {% h. {% r) r) r) K! g& l* r) l* r) H, W' H, H, D{ &^ h' )' *^ W= H~ N) A> {! A> A> A> m- A> A> 0! A> ') 0! 0! )) H. 0~ )) )) =] { {~ Z) n{ {~ |= =^ Q] -^ v) y' ;^ >^ c! .- a] .- 1> .- ^' 1> !{ 1> 1> 9) t* ^' ^' q- f; (! f; f; ;] f; Z{ f; f; N! s~ ;] ^~ ,^ H{ O! z) C' @; C' @; C' C' C' C' ~) I{ =~ `{ W# D' d~ '^ r{ %, b= %, k' A) k' %, k' _~ %, %, _~ k' :~ ] w- 1+ s] B* )^ -~ e~ .) >- g, >- l' .) !^ R! l' .) ^) ^) G* ^) e= i, ~^ +) e= e= 6> >~ ^) e= ,- e= }' &, @) )- @) @) ;$ l+ ;$ ;$ ;$ l; l+ l+ l; @) ;$ ;$ n+ l+ l+ l+ A- }! }! y% u+ t+ t+ w+ h= V; t+ s+ i= w+ x+ B% B% B+ B- B% `] {^ A% B+ A+ C+ B+ B% B% A+ B+ C+ E+ E+ E+ A+ O+ M+ C+ D+ 0> P+ L+ O+ O+ R+ S+ Q+ L+ L+ S+ T+ V+ V+ V+ F% T+ V+ Y+ Y+ Z+ _$ T+ .@ Z+ +@ @@ @@ @@ W+ @@ M* H% +@ +@ #@ ;@ +^ $@ %@ &@ p' %@ p' !] !] U, p= 7$ =@ &@ =@ )@ 5$ ,@ S% ~@ '@ r= 7$ R% I- 9$ ^@ |- !@ !@ }- P* W% h> +* |@ 7@ N 7 > ]^ ], *) q, s, s, s, x, z, z, x, x, s, s, s, }) x, #' x, x, A, v, x, s, s, s, x, y, z, u, x, x, s, s, s, s, v, y, u, |) x, s, 6' r, w, ,, 4- &. '& 5# !. ). B$ V> e- >. C@ =. 5# z$ +. !. A@ 5# E@ B$ (* .. F@ 5# 5# C$ H T P L@ L@ X J M 3# Y Z H A Q@ S 8* I M@ P@ I ", +"] > X! # . H= . > = S$ ; ; + . - ; ] | ; S$ # > & ; ; ; ^ [ ^ - ) > %= ; ] 2 | U@ N$ ~ > S$ `@ ^ ( 2 { $# < { J] / W@ / ## { 1 / ) 4 } $# / [ 6 /& Y@ Y> 4 { 4 $# / 7 } W@ 7 $# e 7 d a 7 6 ,# b V$ ) V- } $# 7 0 e a i {# $# b a L= ~# c ~# n p c n h n Q{ `$ m w _# p Y$ n /# 1; Y$ % G :# w `$ G O@ z G w G z ^# w G b' w I [# G E; M A h] E$ Y A J J P@ P@ A T T :* L@ I@ L@ L U P T D$ R I@ D$ I@ Q@ L L@ 1# L@ )= Q' +. ,. @. 5# A@ $% >. +. X (* #. 6# &. 6# >. z$ +. ). *. >. ,. !. -. =% %' b# %% 3~ /. ;. ~. &% &% {. {. ). /. =% 1~ ^. ^^ *% 9& 6& 9, -% P= '! P= , 0, g# '! I! e# 0, ., g# T{ ., ;% ^= {> @~ 1{ g' ^= !! i{ !! !! i* &] !! ^= (= Z- {% Z- Z- Z- Z- h. h. h. h. K! g& l* l* r) l* H, W' U= (> G~ ,{ /^ l- l- H~ `- [= p~ m- m- ') m- ') z. Z= q~ )) <> 0~ 0! X' M~ ]! 9~ {~ ]! M~ 9~ 0~ {~ {~ (^ r~ -^ v) F# n{ :] v) _^ 0] b! F# H# 1> 1> ^' ^' d; 9) f; F{ ^' F{ f; 0) f% F{ :^ ]~ ]~ f; ;] ^~ ^~ 3{ Y{ z) f; <^ ~) ~) @; ~) C' ~) C' @; C' P! ~) {{ I{ l% r{ R) V] r{ b= %, b= b= [^ k' k' b= %, u- %, k' b= k' %, X] i! -~ ]{ }^ i! g, i! .) 6+ 5+ l' l' K> !^ l' ]) G* e= G* G* e= R! i, ,- e= >~ M{ k; G* ^) G* G* ^) v~ |^ 6> k! ;$ ;$ l; l+ l; ;$ l; @) l+ ;$ ;$ l+ @) l+ )- ;$ l+ ;$ |! y% |! h= t+ s+ u+ u+ w+ s+ i= u+ u+ w+ ]$ A+ B+ 1^ B+ B+ B- B% B+ B% A% B- A+ B+ C+ B+ A+ A+ E+ E+ C+ S& L* T, C+ D+ E% /- Q+ L+ /- P+ R+ Q+ Q+ O+ S+ V+ V+ R+ T+ T+ V+ T+ Y+ Y+ Y+ Z+ @@ @@ @@ W+ .@ @@ #@ W+ W+ @^ #@ #@ +@ #@ %@ &@ #@ &@ %@ &@ %@ f~ C! -@ U, )@ '@ 1$ W, q= S% 5$ r= )@ ]@ 6$ 5$ N% N* 5$ {@ ^@ W% ^@ ^@ b$ @> f$ J' 3@ m@ G 6 1) 2^ z~ 5' ^, v, =) H) y, u, s, y, t, x, s, 6' |) v, s, s, z, x, z, z, x, s, s, u, z, s, s, v, x, s, x, x, x, H) y, s, A, x, s, x, s, 6' ), #. A@ ^. d# A@ A@ l> %% B$ !. -. -. !. 3^ &. B$ 5# A@ A@ B$ 4- A@ B$ .= G@ L@ P Y V X P@ P@ L@ T O E$ S P@ P@ x P@ E$ z P@ I A ", +"+ > R@ $ T@ $ # > # ; S$ > + !, > U$ > ; 5- > V@ & ^& V@ V@ - & $= |* ] Q$ U@ U$ { ] & > ] ) ; ; | ] 6 ( ) ;# { b{ ## $# { | [ T- 2 *# W@ +# ) ## ) [ [ } { W@ / ( / < } b :& $# $# 2* 7 7 ~# ,# a b j o [ D, | $# a e a ( 7 c i 7 J] e n ,> n j n s> Q{ Y$ % Y$ g c n 9- h `$ p m m w w o _# ^# s y Y$ 2; D C K C w C ^# ^# G I I F= N t N A I |# E$ |# P@ L@ |# n> E$ T A O T z; M O I@ J T P S z; L@ L P@ P E@ P z$ #. ,= I@ #. $% I@ .= 5# =. z@ z$ 2# Q' ;. ]. v{ &. &. A@ !. 5; +. C@ !. ). p, b# ). X) '= !. b# D~ D~ x@ &. '. {. /. 3~ ~. %% b* v! &% 4^ >' e' 1. 5^ -% A] 6^ 7^ X- , , '! '! 9; f' j# 6^ 8^ g' f' 7) a; ^= 9^ a; y{ j{ y{ m~ 8! w> m~ 8! 8! {% {% )! {% h. K! Z- 0^ K! K! H, g& l* r) H, W{ ,{ F~ s) (> b; W= W= 6] l- l- p~ O] 8] A> m- [= m- m- A> L~ t) K~ 0~ 0~ l{ |= 0~ ]! 0~ 9~ C> {~ ]' 1= ^! {~ Q] (^ Q] =] c! N~ R] !{ H# a^ H# 1> ^' 1> ^' d; d; 9) ^' d; d; b^ t* ]~ f; ]~ f; f; q- f; ]~ F{ N! e! Y{ 7= 7= S] ,^ C' C' C' C' @; *+ C' @; 4{ P! =~ ~) P! A* %, d~ V] %, A) %, k' b= %, %, k' %, %, ]{ _~ k' 2+ _~ _~ >- g, w- k' j! i! +! 7+ l' >- i! .) ]) !^ c^ .) l' u~ ;~ e= e= ^) R! ^) ^) G* ,- )- ,- >~ k; ^) >~ e= @) ;$ k! ;$ |^ n+ @) ;$ @) l; l+ l; l+ l; ;$ )- ;$ ;$ ;$ ;$ ;$ y% t+ t+ 2' {$ t+ t+ w+ w+ i= s+ w+ u+ w+ u+ k, B+ B+ B+ B- ]$ B% B% B% B% B+ A+ A+ A+ B+ B+ B% C+ A+ M+ M+ E% M+ C+ E+ M+ L+ /- L+ O+ P+ S+ R+ O+ /$ L+ T+ R+ V+ R+ V+ V+ Y+ V+ F% f) Y+ @@ X+ Z+ [$ +@ Y+ W+ f) :- <$ @@ d^ W+ @@ +@ <- #@ +@ %@ }$ ~; *@ I% W, *@ D- >@ e> *@ [- (@ (@ q= R% '@ R% 5$ V% T% {; }- {@ 9$ b$ d$ !@ }@ f$ X% |@ q@ % *# V! R@ `, [) +' s, v, x, x, s, x, z, 6' s, s, x, s, s, x, u, u, y, y, u, y, y, x, x, y, u, r, [) s, q, u, r, v, u, z, s, x, u, s, x, v, 5' e^ D@ &. x@ /. /* =. ,& F@ A@ (* 5# 5# x@ 0# 7# B$ .= _* @. ,= R 9* z$ G@ R C$ V H L@ T S G@ P@ |; P@ S A N M@ M@ +% M Q@ Q@ b- A ", +"+ V@ ]& ]& # ; > V@ + # . # $ $ . S$ S$ ] ] - + V@ - 2 ; N$ ; > ] ) ] ~ A; { & . H= ; | ) X@ ~ ; ## { X@ | d [ ^ ] [ ## N$ ] # [ , { < ,# { W@ / ( e [ X@ $# ( ,# &# 7 b $# _ } a } b e ># ># 7 b 8 ~# 6! i g o 3* 7 q> } g ># e [& c s> n Y$ 0 8 Y$ s> c{ ~# h c ;= n ^# `$ t ^# 4* m C p (# p ,> ^# D D w ^# m f^ ;) N I Z$ w I N #= D C P@ A 8* M E$ T #= C$ U H$ P@ z J J L@ T Y I C$ 4# J #. z; T L@ P 0* M@ I@ H@ D$ #% 4# C$ 5# Q' [, . 6# 5# 5# . $% ;' . &. )& R #. ;. A@ . !. !. !. ). )& (* /. =% x@ b# T' =% =% %% ,& /. &% ~. &% D~ >' 9& /. v@ ~] |. k~ 2~ {] g^ ~= _. P= 6^ P= e# '! I! '! g# f' l~ 6) h{ f' ]= n# 7) f' ]= {> A{ 1{ j{ @~ A{ 8! q) A{ 8! Z- h. Z- {% Z- h. h. h. h. r) H, l* H, V{ H, V{ 8) H, /% *^ `~ /^ W= *^ *^ H~ 8] @, {! ~! A> m- [= ') ') ') m{ <> ]! 0~ m{ q~ 0~ ]! M~ ]! ]! 0~ 9~ =] 9~ 6% 9~ M! =] Q] R] a] b! v) 1> /! _^ 1> 9) .- H# d; 9) 1> 9) q- q- 9) F{ :^ q- f; ]~ ]~ ]~ ;] q- ;] (! N! P) y) @; ,^ y) @; @; C' C' @; ~) h^ @{ C' `{ i^ /~ @{ Q~ b= l% q{ Y# b] j^ %, %, k' %, k' _~ _~ b= %, :~ _~ k' f, w- -~ e~ s] d= i! >- i; t] g, g, ]) k^ u~ ^) t] .) u~ l^ l^ G* e= e= ^) e= ^) >~ k; k! ^) e= e= G* ^) ;$ l; l; l; l+ l; l; ;$ l+ l+ @) ;$ ;$ @) ;$ ;$ l; ;$ l+ l+ ;$ >$ |! y% >$ W; y% t+ t+ i= w+ t+ N> w+ u+ w+ j= B% B% m^ B- B- B% B+ A+ A+ B+ B+ B% A+ B+ B+ B+ D+ A+ B+ M+ E% O+ F+ A% E+ O+ L+ Q+ ^ P+ T+ S+ G% L+ T+ R+ R+ R+ T+ Q+ V+ T+ T+ Y+ _$ V+ @@ W+ Z+ W+ +@ W+ @@ Z+ @@ W+ q; +@ #@ &@ +@ %@ &@ #@ #@ #@ *@ &@ ~; =@ >@ =@ 5$ 2$ >@ e] Q% =@ '@ M% R% R% O% a$ !@ R% R% ,@ 9$ g> f$ }@ 8$ }@ !@ !@ w$ r ~ + *) 5' [) v, x, v, x, s, v, u, u, s, s, -! s, u, y, z, y, v, =) x, v, s, x, s, s, s, u, 8' u, s, x, u, t, H) s, s, }) s, H) r, x, =) v, s, N 5# {. !. ,& 0# {. x@ '. ;. x@ &. &. %. 9* B$ *. A@ E@ A@ B$ #. .= X $> D$ O Y S J M@ T H$ J@ T +% a- P@ A %> B, N A N Q@ I ", +"+ + !, & # & Q$ $ > * & ' ; $ * * ; $= U@ }* - ; S$ N$ > . > & ; | - - ]& ^& [ | (& ; U@ ] N$ N$ 8- ~ ] ) - { N$ < 4 } 2 [ 1 [ [ ) 4 ~ 2 ~ $# 6 @# / 2 ## d { d $# 0 8 $# < a 7 7 ## j $# 0 V$ V$ 6 V$ '# '# e a c j 7 0 ,# 7 0 e ~# o ~# e |& o ^# ,> Z$ o n t' Y$ n^ h h c t' ,! n D r m 4* p I m Z$ 4* Z$ ^# o^ x C G D z I I {& C C #= z N J S A E$ H H |# J J L O@ M O H L@ J P I@ 3& O J d- X U d- G@ T E@ +. E@ T =. G$ $% A@ .. z$ W }; $% %. +. &. G! Q' 5# ;. ,. 9# b# *. 4- F, !. F, ). 7, C@ b# !. %% {. /. 1~ ^. &% ^^ 3~ D~ |. 6& -{ 3~ p^ >' k~ q^ r^ p^ P= P= A] , , ~= 9; , 9; 9; 7) h{ 6) ., f' 6. f' @~ s^ y{ y{ a; i{ y{ q) m~ #~ i* !! &] B{ c. h. h. r) Z- 8! Z- h. h. h. W' r) F~ 0^ F~ s) W{ I~ )' h' h' W= H~ *^ l- t^ z. O] H~ @, p~ m- m- [= m- 7~ |= q~ 0~ <> /] 9~ 0~ O; 6% ]! 0~ ]! ]! ]! z! 9~ x' Z) N~ a] u^ v^ d; b! :] o] w^ 1> 1> ^' .- d; d; 9) f; F{ ^' Z{ ;] f; ]~ ;] ]~ ;] ;] ]~ ^~ s~ x^ e! C' S] y) O! ~{ *+ *+ @; ~) ~) ~) C' C' P! ~) Q) y^ z^ k' %, d~ A) b] A) k' k' A) b= %, k' k' %, k' k' %, b= A^ ]{ ]{ g, 6+ s] .) i; e~ t] #{ e~ -~ t] 7+ ]) u~ t] u~ e= ^) G* ^) e= R! k; k; ^) >~ k! ^) ^) ^) ^) ^) l; l; l; )- @) ;$ l+ @) l+ |' |' |' l+ l; l+ l; l+ l+ l+ l+ n+ B^ n' s+ D) O& D) t+ s+ h= i= '$ s+ y% i= w+ '$ B% {^ R, () B- B% B+ B+ C+ C+ B% B% E+ A+ C+ E+ A+ 0> T, E+ M+ E% E% C+ D+ M+ O+ O+ Q+ Q+ P+ P+ E% Q+ Q+ R+ T+ R+ T+ T+ Y+ V+ F% T+ T+ Y+ U+ X+ +@ Z+ Z+ @@ @@ p; @@ #@ @^ X& d^ #@ &@ %@ +@ %@ %@ $@ <- V, =@ *@ *@ >@ > C^ I% *@ q' * r; >@ (@ ,@ 5$ R% N% * /@ W% !@ P* 8$ /@ c$ :@ (; !@ E@ o ~ # V! g] x, r, s, 8' v, z, s, H) z, H) x, z, =) s, s, x, s, v, s, s, s, z, z, s, s, s, s, v, s, 7' z, s, v, s, s, s, 8' v, t, @] 5' }) v, v, D^ x@ /. {. '. &. e- ;. ). &. =. )& ,= =. 5# 5# z@ ,. .= 5# z@ .= z@ z@ 2# J@ E$ Y H E$ L@ H P J A I P@ z M A M H M A I )> ", +"Z, + # > = & > = . T@ & $ $ $ . & > | ] & > . ' > . # > & ; ] . . & Q$ ] | | ~ | ( ; ; W@ { ~ ] ^ Y@ Y@ [ { [ ## 2 6 ) ) } 4 < $# d 4 < 6 } ) W@ -# 7 d 6 Y> } D, &# $# { $# 6 ,# : 7 ,# 7 &# c V$ 8 a 7 g ~# e 6 } V$ a 0 c L= h h e L= l !# W$ [& c c{ p ~# ]# r K= K= s n g c{ Y$ w 4* % ^# Z$ {& z w O@ H$ z t N z I G C z I A M M Q@ 8* S P@ H H$ L H E$ 3# I D$ O P@ P T T y@ T 4# E@ 4# @. E^ 7# L@ G@ .= R P H 4& .= W .= O= P ,= . e- *. 5# A@ ,= &. 5; 5# F^ 9# !. 0# &. z@ b# {. /. X) 6# %% !. =% %% '. /. &% 3~ &% /. G^ |. 3~ 6& ~. /* g- P= p^ =% 4] e* , ~= g{ , '! j# j# e# 0, I! g# T{ 6) k# 9; a; 1{ 1{ y{ 7) ]= ^= y{ y{ H^ A{ i] N] A{ {% Z- B{ K! K! K! f. K! K! r) r) H, H, ,) r) V{ F~ V{ C{ s) h' '{ l- H~ 7] W= H~ k{ ') H~ {! [= 0! A> I^ ') m- ') ') ') l{ l{ 8~ K, 6% ]! { 9~ =] =] 9~ =] Q] Q] =] Q] b~ Q] /! }> %~ w^ N~ d; 1> 1> d; 9) ^' 1> ^' 9) J^ Z{ ;] f; ;] f; [] ;] ]~ ]~ ]~ O~ ;] K^ H{ O! C' @; G{ C' *+ *+ 7= C' ~) *+ C' C' V] L^ M^ c~ @{ r] A) K{ j' b] b] A) f, %, j^ %, %, b= %, %, k' _~ k' s] k' w- g, X] ] s] g, e~ ]) l' e~ N^ l' t] -~ G* .) ]) i, e= ^) G* ^) ^) G* G* >~ ^) k; k; ^) e= 6> ,- v~ O^ P^ )- l+ ;$ ;$ ;$ l; l; ;$ |' /) l; l+ ;$ l+ ;$ )- l+ l+ |! t+ y% |! t+ t+ s+ s+ s+ i= u+ y% t+ w+ u+ N> N> R, m; {^ S, B% B% B+ ]$ B+ B+ A+ B+ C+ E+ D+ B% E+ C+ A+ A+ O+ E% C+ C+ l= Q^ E% L+ /$ P+ P+ L+ /$ L+ R+ R+ T+ V+ R+ V+ V+ X+ T+ V+ Y+ .@ +@ Z+ @@ @@ W+ @@ +@ _$ +@ @@ c> @@ #@ %@ +@ #@ %@ =@ &@ p; o= R^ [- %@ *@ `& $@ C! * q= )@ 1$ ]@ o= 5$ R% r= }@ N% /@ v; b$ {@ d$ /@ b$ }@ W% 6@ P h ) R@ g~ ^, v, r, s, s, s, s, =) v, u, v, s, s, r, v, x, s, v, x, s, x, v, v, v, v, s, s, s, s, s, s, +' 6' r, s, s, s, s, r, s, s, H) x, +' ^, K= &. {. (. !. ,& ;. ). v{ x@ 5# !. 5# !. )& +. +. 5# [, A@ A@ z$ z@ ` D$ z$ P H P S M@ M@ J L@ H +% K@ Q@ M@ :* @% P@ +% G I I ", +"R@ 5- - T@ Q$ + % V@ + [* $ Q$ . > $ ' N$ ^& N$ 1* N$ U@ %= N$ & ; X@ ] ~ ; ] > ~ - > ] / { | 2 J) 2 { { { | | ~ ) W@ V~ [ $# ] U$ ) | -> ## ) / < *# { / ) < { *# *# 1 / b | : < U- ( : $# == $# &# d } 7 7 7 ## 6 e e 9 } 7 6 F! n a c 0 n C; 6 S^ `$ p 6! (# e C; n o `$ 9- ~# p r ^# c g j /# F= m ^# F= m 1; I ^# x O@ C {& F= %> D Z$ E O@ I E$ G :# O@ I J 3# A M@ E$ P@ Y E$ J O T^ P@ T 4# X L L@ Y C$ U^ B$ L@ P 1# C$ X @. 4# 7# 4) ,. ;. +. O= 5# L@ ;. =. A@ 5# )& B$ +. &. =. *. ). )& 0# &. 5; V -. A@ V^ {. %% 1~ '= '= '= &% 3~ {. 7, d* 3~ W^ &% &% -' e' $^ 7! H; 7! k~ P= , -% , P= j# 9; P= 0, '! l~ l~ X^ 0, f' {> 7) n# ]= ^= q) q) y{ y{ y{ m~ j{ q) N] ]> {% {% h. h. h. K! F~ Z- K! K! l* g& W' V{ H, V{ '{ (% '{ C{ H, Y^ H~ H~ p* o~ l- A> 8] 8] @, [= 0! A> A> A> A> ') 9] <> <> q~ 6% 9~ ]! =] 9~ =] =] =] =] =^ Q] Q] b! x' {' x' ;^ x) x) /! d; ^' .- d; d; d; ^' d; d; ]~ F{ 9) Z{ ]~ f; (! ;] f; ;] Z^ ;] `^ ;] N! x^ v& @; @; *+ C' @; *+ *+ C' @; @; C' C' 7= 7= Q) @{ V] / <' d~ b] {{ D' Y# k' k' Y# k' _~ _~ k' k' %, k' _~ _~ B* >- w- %, d= g, i! >- .) >- g, l' >- ]) ./ .) .) .) e= l^ e= ;~ >~ ^) G* e= ^) e= )- e= G* 6> ,- &, .] /) @) ;$ l; l; l; @) l+ ;$ ;$ ;$ ;$ |^ ;$ l+ ;$ l; l; l+ ;$ y% t+ y% t+ h= s+ t+ t+ i= t+ t+ u+ w+ i= i= w+ ]$ K* +/ E+ B+ B+ C+ A% B+ A+ C+ B+ J+ B+ B+ A+ C+ R& ^$ ^$ M+ Q& C+ D+ E+ >; O+ O+ O+ L+ P+ P+ Q+ L+ O+ R+ S+ V+ V+ Q+ V+ X+ T+ _$ @/ V+ Z+ @@ W+ W+ W+ @@ @@ @@ +@ [$ #/ %) @@ #@ #@ #@ %@ }$ %@ > Z& =@ V, %@ '@ p= >@ Q% *@ $/ '@ L% )@ /@ T% R% )@ (@ H- |~ 0$ ~@ 9$ /@ 9$ }@ W% |@ +] H@ a & + g~ [) 6' %{ r, 8' s, s, v, }) s, s, s, s, z, x, s, x, s, 6' 6' v, }) =) s, =) x, v, v, s, s, v, q, x, s, s, =) x, x, s, q, s, v, 6' x, =) @# ). {. '& d# -. v@ =. A@ L) !. ). {. !. +. x@ &. G! @. +. B$ +. #. L@ J@ V }; E@ H H P J S |; L@ H$ 1# +% M +% S M I M z I ", +"+ Q$ + & ; 2) > M$ R@ > V@ Q$ ; & . > Z, > U$ ^& ) { ' > V@ ; ; & - ; $ ; ^& ^ ) ( { N$ ; Z! 2 ## [ T- | ( ) (& 1 ~ 1 ) ; 2 { ) : [ / / W@ ~ ~ } { 1 $# d ## ,# ( : [ } { e _ 6 $# == ( e } -> 6 $# $# 6 } j V- c V$ c L= r X$ L= j ~# ~# L= h L= ~# r 6! Y$ h % O' Y$ p n D m `$ ^# n^ o n D m m `$ `$ `$ N M= F= w %/ y {& F D m G w M G I D N M A L@ T K M@ S Y L@ O 8* 3# d- T L I@ T Z X J T 0* I@ 4# Q X I@ I@ L >) z$ +. y@ .. e- E@ z$ @. +. W A@ +. A@ ;. ;. 6# -. ). *. %. x@ '. A@ &/ ). ). {. 7, x@ {. A@ H! '. &% &% =% ). 1~ 3~ ~. 3~ &% e' != &% 9& t@ */ >' g{ , *% , '! j# ;% P= '! , 0, ;% I! =/ h{ @~ v' {> U' v' 1{ i{ 1{ j{ H^ q) /= U{ -/ ]> Z- K! Z- h. Z- K! r) Z- V{ Z- g& l* W' F~ F~ F~ ;/ h' G~ >/ b; `~ 7] W= W= H~ H~ @, p~ l- p~ A> A> 0! A> ') ){ 0! 0~ 0~ <> ,/ '/ 9~ 9~ 8~ z! 0~ Z) ]! =] r~ N~ R] R] a] n{ n{ N~ n{ .- d; )/ w^ d; 9) d; 1> d; 9) d; d; t* 9) J^ Z{ ]~ ]~ s~ ]~ t* f; J^ ;] Y{ e! P) ~{ C' C' 3> *+ G{ C' @; ~) y^ C' C' !/ _' C' Q) :! `{ <' r{ d~ K{ A) 5> k' b= ] k' %, k' %, `' %, _~ k' ] ] B* s] i! Y] .! ~/ e~ {/ e~ #{ e~ e~ ]) N^ L{ e= t] l' u~ i, >~ ]/ ^) >~ e= e= ^) ^) +) +) >~ )- )- G* U; /) l+ k! ;$ s{ |^ l; ;$ ;$ ;$ l; l+ ;$ |' ;$ n+ l; @) ;$ ;$ ;$ y% y% y% s+ u+ t+ y% s+ u+ u+ ^/ N> u+ u+ i= u+ M> B- B- B+ A+ B+ A% B+ A+ B+ B+ _) C+ B% B+ E+ B+ ;; E+ E+ E% A+ B+ C+ E+ C- E% O+ E% L+ P+ R+ /$ Q+ R+ S+ S+ R+ Y+ Y+ Y+ V+ Y+ Y+ Z+ W+ +@ W+ Z+ W+ @@ #@ @@ @@ d^ +@ |$ @@ +@ +@ #@ %@ =@ %@ %@ &@ $@ >@ 1$ *@ q= > u{ N* )@ * '@ Q% ~@ R% d> !@ 5$ O% !@ P* /@ g> 0$ W% ^@ b$ b$ =* J ( ; R@ g~ ^, z~ q, s, x, s, s, v, s, H) x, s, r, v, +' q, v, x, x, x, s, s, s, z, x, g] r, x, v, s, q, q, r, v, s, 6' s, s, s, v, v, z~ 6' -! 6' - =. p, x@ ^. D! ). &. ). w$ &. &. &. A@ 8# d# E@ 5# #. .= .. P P @. 1# I@ D$ X H T P 1# H L@ P@ H$ H$ M@ |# 7* |; S J S N 2; ", +". # V! V@ S$ . . # ; S$ . > & U@ | & . `@ | N$ - ^ { U@ Q$ ; N$ ^ Q$ > V@ ; | ; ; ~ U@ T@ . ; | 2 X@ 2 { Z@ ) , ] } | R$ 2 `@ ] 1 2 } ( 7 ) { [ [ +# : 1 { d ## 8 } { 1 d : i 7 [{ $# 6 6 c d [ Y@ &# -# c &# e J= n 0 o e 0 &# n a' c c s> Y$ g i f h ~# h m % 9- n q `$ Z$ l D r Y$ 4* b' m /# $] 4* m /# G ^# E N N /# E N m z H O@ F= E$ A A H S P@ A A |# M J T H H I L@ T H E$ T O= T L X C$ L@ P L@ C$ T 2# s! E@ +. ,. L) . $% e- z$ z@ ;. >. z@ v{ >. 5# )& A@ ). $. $. b# ;. F, ;. 9# ]. '= ). %. '. ;. x@ %% '. b# +~ 5& /. u> {. =% 3~ ~. D~ |. &% 9& H; 3~ `> 5^ ~= -% -% '! 7^ j# l~ '! I! I! 9; s^ 6^ 6) U' v' y{ j{ H^ H^ @~ ]= // ]= j{ A{ ]> m~ A{ {% h. h. K! K! Z- K! r) r) h. r) l* H, W' F~ F~ C{ V{ b; F~ h' I~ '{ l- 7] H~ l- ~! @, 8] ~! O] m- m- m- ') 0! 0! ') 0~ 0~ <> <> (/ ]! 9~ 9~ 8~ M~ { b~ { _/ b~ =^ Q] Q] u^ u^ N~ 2{ _^ w^ b^ .- _^ ^' .- x) ^' d; 9) ]~ Z{ ]~ F{ ^' ]~ ;] Y{ f; ]~ ;] ]~ ;] M, O! H{ O! ~{ C' *+ ~) C' C' @; C' @; y) z) i^ C' ~) r{ :/ V] r{ K{ V] '^ r{ b= k' k' k' k' k' b= %, _~ _~ %, _~ _~ B* B* i! g, X] _~ +! i! +! >- i! i! t] .) +! G* u~ .) u~ u~ e= %$ ^) i, k^ ,- e= ^) 6> ,- ^) %$ M{ ^) }' |' @) j+ |' l; @) @) l+ @) l; ;$ l+ l; |' ;$ ;$ A- l; l; ;$ l; >$ t+ y% y% i= M> ^/ t+ u+ i= u+ M> B+ B- m; B- C+ A+ B% C+ B% B+ A+ C+ B! A+ B+ C+ E+ C+ J+ C- T! A+ C+ D+ S& O+ L+ L+ L+ S+ R+ Q+ L+ Q+ V+ S+ /$ V+ V+ W+ T+ T+ Z+ _$ @@ +@ W+ Y+ @@ Z+ #@ W+ +@ Z+ +@ |$ !] d^ +^ p; +@ ~; ~; %@ %@ %@ *@ I% `& `& >@ `& Q% r; >@ t= 2$ )@ (@ S% N% N% I- O% /@ [/ u; 0$ :@ 4@ !@ P* p@ H$ / $ ], 5' 2! r, v, v, v, s, s, 5' s, g] x, s, s, s, x, s, @] v, s, s, u, x, v, v, s, v, x, }) =) v, @] +' s, s, v, r, v, 6' 6' v, v, 5' v, v, x, <* 5# &. 5# ;! {. x@ &. ). *. z@ 5# ;. -. =. z@ .= z$ +. $% &. G@ C$ .= D$ I@ H@ 4# 2# H L@ Y T Y Q@ O I N@ M@ w 3; Q@ S A z n! ", +"+ ; + % > & & V@ & . $ > & & Z, = = Q$ > U) ] & > ; - Q$ & & & N$ > N$ X@ - Q$ ~ ] ## } X@ 2 ^& X@ ; > | ) N$ ~ [ | ~ | W@ *# ( ] # 4 e { 2 { ## %# J= < } $# ## 6 b &# a 2 } &# 8 b 6 6 9 d } 1 5 9 a $# 6 3* J= '# h e h ,# 7 a ,# ~# s> n W$ 7 p n Y$ n Y$ p 0 r h p y Z$ Y$ c Z$ h t b' Z$ ^# w w % G w 6* G F= y O@ G I )> ~& M n! I M= Q@ w I A Q@ 3) 3# O T G$ J S L 3# L@ 1& E$ J ` C$ L@ s! I@ Y 7# R W H R 9* t> 4# $% @. +. @. 0* R >. &. .= A@ )& A@ A@ =. v{ R' ;' v{ ;. *. ]. ;. !. !. 9# '. 6, '= b# '. b# v{ ^^ '= /. =% 3~ 5& /. ^^ W^ ~. &% W^ ~. 3~ u' H; -% 7! -% -% , , , j# 9; '! I! 6^ '! I! I! 6^ h{ =/ 1{ 1{ y{ y{ {> N] A{ !! @~ m~ 8! X~ i{ B{ 8! Z- h. K! Z- K! r) r) r) K! g& H, W' F~ F~ }/ F~ l] `~ |/ W= G~ H~ *^ I~ l- 1/ C] p~ 8] ~! ') m- m- A> ') ') 0! K~ =] 0~ ]! <> 9] 0~ 0~ q~ 2/ =] ]! Q] 9~ u^ =^ =^ Q] u^ u^ N~ x) 1> x) 2{ d; d; d; ^' ^' 9) 9) ^' d; Z{ F{ ^' F{ q- +- 3/ 3{ 3{ ]~ 3{ ;] 3{ ^~ N! s~ S] C' C' ~) @{ C' C' @; @; C' ~) y^ P! ~) :/ y^ @{ '^ '^ V] '^ r{ r{ %, k' _~ k' _~ k' %, k' _~ _~ ] %, 4/ g, i! i! B* _~ N^ e~ #{ N^ l' d] -~ .) 5/ R! a+ .) .) u~ e= >~ G* >~ e= e= ^) ^) +) G* M{ ^) e= e= e= k! @) l; +) l; 5{ ;$ ;$ l; l+ ;$ ;$ ;$ ;$ l+ l; A- ;$ ;$ h+ ;$ >$ t+ t+ t+ N> n+ y% t+ s+ u+ t+ t+ s+ w+ s+ s+ M> B+ B- B% B% B+ B% A+ B+ B% B- B+ K* C+ A+ A+ A+ E+ J+ C+ E+ O+ A+ A+ A+ C+ E% L+ /$ L+ /- /- S+ /$ Q+ S+ R+ S+ T+ R+ V+ V+ Y+ Y+ Z+ W+ W+ @@ Z+ Z+ W+ @@ @@ +@ _$ #@ +^ 6/ [$ }$ +@ %@ <~ %@ %@ %@ &@ +^ e] &@ =@ )@ 7/ t= >@ '@ s= * ,@ C! 6$ r; 8$ 8/ +* 0$ }@ }- ~@ 4@ b$ P{ 4@ q@ w [ > R@ *) q, v, q, v, z, s, =) x, u, s, r, v, q, v, 7' x, x, s, v, s, +' r, v, g] q, q, q, =) s, v, t, x, x, x, 7' x, 6' ' x, s, A, 6' v, r, g] V! X {. ^. 5& {. ). A@ -. [, '. -. .= e- &. &. z@ >. V z@ ,. 4& .= 4# $% V $> P J C$ J D$ H S H K@ E$ Y H$ ` P@ A M O@ G G ", +"+ V@ $ . ] !, + # [* o! . - ; T@ $ ]& $ > & P$ `@ /& ] N$ ; 2 N$ N$ ; N$ & ; & | ^ ## ( - ~ X@ N$ | | /& & & R$ ~ ] | ~ ~ 2 { ) 2 ^ { ] [ ;# & W@ Y@ / +# / [ $# $# [ g ~# ( / < J= ,# J= &# 8 < ( q> ,# 6 $# e e j 8 D, 6 7 W@ 7 6 {# a ,# 9 7 0 X$ e n a r X$ s> h a h s> p p Y$ Y$ `$ _# h u 1; h D ^# h m I G M w E y I G O@ 6* N H$ I |# M A C P@ O@ T L@ |# O@ J T L@ L@ H 3# T I O@ I@ P T 4# Q@ L H@ I@ >) 2# Y )= W E@ @. ,= W =. *. +. C$ $% .. z@ A@ C$ B$ *. A@ ;' v{ 9/ &. ;. =. z@ ). =. 0# b# v{ D! ;! b# 1~ =% '= 0/ 3~ b# != ;! L] '. /. &% w{ w{ w{ &% &% p^ -% e' -% H; P= g{ ~= '! '! '! '! '! P= I! I! l~ a/ 8^ s^ 1{ 1{ {> y{ b/ H^ y{ y{ y{ H^ V' B{ c/ &] B{ Z- {% c. h. h. K! h. r) r) 4~ V{ K! F~ C{ V{ d/ V{ '{ e/ *^ h' *^ W= Y^ D{ f/ g/ [= h/ 8] ') ') ') [= m- ') 0! 9] ]! 0~ 0! 9] ]! ]! ]! Q] =^ =] =] =] =] 9~ Q] Q] i/ -^ { Q] v^ 2{ w^ /! z' d; 1> 9) ^' 9) 9) ^' ^' f; 9) d; F{ q- ]~ 0) ;] s~ ]~ ;] O! [] j/ ^~ S] S] C' C' (~ F] *+ C' ~) ~) C' @; C' @{ ~) C' C' @{ d~ A) k/ l/ r{ [^ k' _~ %, %, k' k' %, %, b= k' ] ] s] i! e~ i! m/ ] >- #{ e~ #{ l' N^ >- ]) .) .) u~ t] .) >~ G* ^) i, ;~ ^) l^ ^) e= e= ^) 6> ^) ^) >~ e= /) l; ;$ )- )- /) g+ P, l; l+ l; ;$ ;$ ;$ l; >$ l; l; ;$ ;$ ;$ ;$ >$ t+ t+ y% r+ i= t+ s+ w+ w+ s+ N> u+ w+ s+ n/ w~ B% B% B% B% B- B% A+ A+ B% A+ C+ A+ C+ B+ B- m; E+ B% E+ E% Q& A+ C+ D+ k= O+ O+ L+ S+ a> P+ Q+ Q+ R+ R+ P+ P+ V+ .@ .@ R+ Y+ Y+ _$ W+ W+ @@ +@ +@ W+ W+ #@ %@ #@ #@ @^ R> &@ &@ > #@ *@ %@ #@ *@ 7$ $@ -@ $@ >@ !; *@ *@ '@ ]@ 5$ ~@ u= R% {@ {@ t; 3' /@ !@ ^@ /@ P* n, |@ =! x@ ^# ) Q$ R@ J$ q, 6' q, s, v, x, =) v, v, s, s, x, v, =) s, v, v, s, s, x, v, q, v, 6' g] v, s, v, v, v, s, s, s, x, v, [) 6' t, H) =) s, 6' +' v, s, s' S (. (. /* ). ,& ). !. &. {. $. A@ e- E@ .= _* V D@ $% 7# R C$ P Y L@ C$ ` ` T P@ Y Z T Y P@ Y P@ U 1# N@ Q@ G F= z P@ ", +". # ~ ; . + > * ' - # . . & + ]& ]& ; | - ] ] S$ [ ; | | | ; & - - ) U$ ~ < [ > ^& ; | X@ 2 { ; & ~ { ) ; | ; *' $# | N$ 2 < < { N$ | { Y@ $# Y> +# ) / { Y@ } &# 2 < } Y> a 8 &# } $# d a j 6 a j i V- Y@ i a 8 k ~# j L= Y$ L= b 8 a o/ ~# ~# n Y$ s> |& n s> p m r n^ c w r ]# h p _# Z$ 4* ^# `$ }& p ^# p m D N H$ M 3# C /# E$ O@ P@ I @% 8* L J >) L@ A I M P@ L@ S H M P@ 4# Q J J I@ P %> L L@ }; W G@ 4# V I@ z$ #. . .= @. (* z@ E@ .. y@ !. >. =. )= !. )& ,. . ;. !. v{ 9/ ). =. ,. p, p/ S' %% ). '= q/ {. '= %% r/ !. 3~ 1~ D~ u! '. -{ 5] |. e' 3~ &% w{ *% 8& s/ 5^ g{ 9, t/ 6^ u/ I! h# 0, 0, '! I! 9; 6^ I! 6^ f' 7) ]= i{ v/ 1{ 1{ y{ y{ 7) a; 8! ]> A{ Y~ h. h. K! h. r) K! r) K! K! r) r) F~ r) r) K! w/ r) s) W' h' W= W{ l- E{ 8) H~ ~! 6~ h/ 8] 0! L~ m- 0! 0! l{ ') K~ 9] /] <> 9] q~ ]! ]! 9] (/ =] 9~ ]! 9~ 9~ x/ y/ z/ R] u^ /! o] a] !{ A/ a] ^' ^' d; .- 9) ^' 9) d; 9) 9) Z{ 9) ;] ;] f; O~ f; 3{ ;] [] O! Y{ K^ H{ O~ ~) ~) ~) b) ~) @; C' @{ ~) ~) @{ B/ ~) C' (~ Q) d~ / c~ '^ / C/ [^ Y# k' k' b= k' k' _~ k' }+ _~ %, _~ D/ }+ i! D/ k' _~ l' i! >- N^ #{ d] ]) .) l' u~ !^ .) E/ ^) e= ./ ^) >~ e= ^) ^) ^) e= f+ e= ^) ^) ,- F/ *, g+ /) k! l; '] |' l; l; |' l; l; l; l; l; ;$ l+ l; l+ @) A- y% |! y% |! G/ N> |! y% u+ s+ t+ M> N> i= u+ j= B% B+ B- B% B- B% B+ B+ B+ B+ B+ B% B% A+ B+ H/ A+ C+ E+ C+ M+ O+ M+ F+ F+ D+ k= L+ O> S+ S+ S+ Q+ G% L+ P+ S+ S~ T+ V+ V& R+ V+ Y+ Y+ +@ W+ Z+ V& @@ Y+ W+ #@ @@ +@ '; |$ |$ }$ #@ #@ +@ %@ *@ &@ &@ I% Y& &@ e] > *@ >@ Q% q= U% N% d> )@ ~@ r= * d> ^@ P* u= ,@ 9$ Q* e$ |@ f$ {. _# | # g~ *) q, q, 6' 5' |) u, x, @] v, s, v, s, v, g] s, z, s, u, s, v, +' q, 6' +' x, x, s, x, s, s, A, x, H) x, s, 6' r, v, v, s, r, v, r, v, s, q, N= ~. ,& '& d# x@ E@ {. A@ &. z@ !. A@ .. 5# A@ $% z@ 5# @. E@ V L@ L@ 7# P E@ 2# Z D$ I H S S H$ b- A A b- A 8* S N@ x z ", +"# . + . + . + I/ * # R@ V@ . S$ $ > ~ ; & > > S$ 1* # | & S$ N$ Z! ; S$ ~ [ ~ - ~ & ; ; * 5! . 8- Z@ } 4 5 ## `@ { `@ | `@ J/ `@ / } [ { { 6 X@ &# 6 ) [ ) [ [ ] 2 ) J= 8 8 } $# 6 a +# d c Y@ 6 e b /& 6 g &# 7 L= L= ~# L= 0 c ~# K/ ~# 0 ~# L= n [& e a L= p n |& L= h ^# 1; ]# Z$ p }& q C p p Z$ c p c{ 4* m B ^# 2; m N z {& M O@ L/ M/ N/ O/ P/ }# 1& T P@ H #= T L M J P E$ @% 3# Q U J O@ H I@ I@ @. T U T X C$ I@ T D$ #. G$ #. z$ .= $% +. L@ z$ $% +. =. O= )= z@ ,= =. )& 0# )& &. %. 9/ C~ !. >. 7, p, b# x@ 5; &. ). x@ {. /. '= D~ w{ ^^ '= &% &% -{ w{ Q/ W^ w{ 3~ R/ k~ g^ g^ M] 9, S{ S/ , '! '! 9; '! , 6^ g# I! X^ 6^ %^ 1{ y{ H^ j{ T/ j{ j{ y{ 1{ N] y{ {% q) U/ w> K! h. h. w> K! K! K! h. K! F~ K! l* r) K! r) l* W' W' V/ p* ,{ ~! W= 7] o~ 8] O] N; l- L~ L~ m- A> m{ ,/ ') ') m{ m{ 9~ ]! { |= 9~ 0~ ]! 9~ ]! Q] =^ =^ 9~ =] i/ Q] W/ =^ W/ ^! w^ 0] X/ 2{ d; !{ ^' d; ^' d; ^' 9) F{ ^' F{ f; ;] ;] N! 3{ ;] ]~ K^ ;] ;] H{ S] S] *+ *+ v& @; C' @; @; @; ~) ~) C' C' ~) y^ ~) c~ V] K{ b] Q~ Y/ [^ r{ b] _~ k' %, %, %, k' %, _~ _~ k' k' _~ .! s] Z/ s] ] >- i! i! #{ l' 6+ >- t] ]) #{ ^) l' ]) i, ^) e= >~ ^) G* L{ ^) ^) ^) +) +) ^) >~ )- %$ @! Q, @) l; l; l; l; ;$ `/ l+ l; ;$ l; l; l; l+ n+ ;$ l+ l+ y% A- =, g= |! s+ i= y% t+ i= s+ h= ( u+ s+ u+ u+ z+ ]$ ]$ B% A+ B+ A+ R, A+ B% B+ B% B+ A+ C+ B- o' B+ J+ A+ A+ S& O+ E+ D+ F+ k= L+ O+ R+ f) Q+ T+ V+ T+ T+ S+ V+ T+ V+ Z+ V+ Z+ Y+ Y+ .@ W+ _$ Z+ W+ p; p; W+ @@ +@ @@ +@ q; C^ %@ #@ *@ %@ #@ &@ &@ p= *@ >@ e] <- &@ *@ =@ *@ '@ Q% R% 7$ M% U% /@ s= '@ ^@ T~ 8$ }- R* !@ V% X% 7# g ;# . J$ *) [) 8' @] s, z, =) H) v, v, s, v, u, A, s, 8' v, %{ x, s, s, x, [) v, r, v, s, s, s, s, +' s, z, v, s, s, s, s, x, v, q, 5' s, [) v, s, 5' M= ^. x$ (. ^. ). x@ {. =. ). '. &. &. =. +. z@ B$ e- 4# >. .= E@ 7# H@ i~ G@ C$ U F$ Z 2# H P@ P@ H E$ 4, M S ` M S N I A ", +"+ # $ # Q$ .( # L$ & . * . * Q$ & S$ ] N$ & > & - . 0' . ; N$ | > H= o! ^ N$ | `@ U@ ; N$ E! ] . X@ 2 | ~ N$ | | - ] U$ 4 ~ ^ | U$ { ) { | X@ | } } 6 W@ $# d < &# $# 6- 1 b { < ## } &# &# 7 -# : 7 0 b } < b -# *= 6- q> ~# c L= n ~# {# O' s> ># e r [& g e c o p ;= ]# ~# [& Y$ n /# ^# Z$ !# ^# 1; m y o h w % `$ y G ^# x z B O@ n! P@ +( @( #( $( %( I N z D I O@ Q@ 8* H$ E$ H |# J G$ T ` L@ E$ 4# X L@ P C$ 3# V H T I@ U X &( *( =( -( ;( >( ,( '( )( !( #. $% G$ ~( *. )& %. *. 4- *. B@ z$ !. A@ {( ]( ^( /( (( _( :( <( [( }( |( 1( X) /. D~ /. /. %% 1~ w{ &% &% W^ e' >' H; e{ 7! 2( 3( 4( 5( P= '! 8^ '! 0, l~ I! I! j# h{ 6^ 6( 7( 8( 9( 0( y{ y{ 1{ y{ H^ H^ v' q) ]] a( b( c( d( e( r) K! K! K! K! K! F~ r) K! l* l* F~ F~ V{ G~ `~ W' h' f( E{ p* l- f( g( h( m- ~! 8] A> @, m- 0! A> A> 0! m{ /] 9~ M~ {~ 8~ =] 0~ ]! 9~ =] =] 9~ 9~ 9~ Q] u^ Q] a] Q] W/ N~ ^' _^ 0] -^ 1> 2{ ^' ^' 9) ^' F{ ^' F{ ^' ^' J^ F{ f; O~ 3{ `^ ]~ i( ;] ]~ O~ S] S] ~) ~) z) U] ~) G{ @; @; C' ~) @; U] ~) `{ h^ i^ ~) @{ b] K{ d~ '^ j^ [^ k' ] _~ _~ k' k' _~ k' k' k' ] %, s] d] ] -~ ] :~ -~ i! +! l' g, {/ .) ]) #{ ;~ ]) .) t] u~ e= h, ^) e= >~ e= ^) e= ^) M{ >~ >~ k; k; v~ j( @) l; |' l; ;$ l; ;$ ;$ /) ;$ @) l; ;$ |' ;$ n+ l+ ;$ r+ ;$ >$ t+ t+ y% N> i= y% t+ t+ t+ N> i= y% u+ w+ u+ i= B% B% B% B+ B- z+ ]$ B- B+ B+ B% C+ C+ C+ A+ A+ A+ A+ E+ C- O+ ;; E+ D+ C+ L+ O+ R+ Q+ S+ V+ R+ Q+ /$ S~ R+ R+ T+ G% V+ T+ Z+ T+ X+ W+ Z+ f) @@ +@ W+ W+ @@ @@ '; %@ <- @^ %@ +@ #@ +@ &@ %@ %@ 1$ &@ *@ <- *@ 1$ -@ R% !; )@ R% 9$ /@ S% )@ * V% U% N% * }@ 9$ W% }@ |@ +] H e N$ ]& g~ ^, v, z~ 6' s, v, =) s, v, s, H) s, u, s, s, +' +' r, s, =) x, x, r, s, q, q, +' z, r, s, +' H) s, q, q, s, q, q, ^, e^ 5' ^, [) z~ +' 8' ^, '# *. p) (. ). ). ;. -. &. G@ A@ w$ &. A@ (* z@ z@ E@ B$ )& 5# 5# V H@ E@ 4# $> Y 1# 2# J J@ n> Y I Y Y 8* H Q@ I 8* E$ A A ", +"R@ > # . > [* V@ = > > + & > # H= | ; > > $= 5- N$ ; $ ] ] N$ ; > P$ > & - - Q$ ' ] N$ ; > ^& N$ | U@ U@ %= ; N$ ; [ ] { ~ [ 7 { { ) < 2 / { } } ) ## /& ~ / $# [ Y@ 9 7 { J= -# 7 6 6 &# ## &# b ~# 6 ,# k b c c Q{ a 0 n E, 0 [& j Y$ g 6 a e e ~# X$ [& r t e % c c p ,> 1; m D 4* w ^# /# ^# n m C m b' D C /# D I G P@ I >) k( l( #( m( n( G I M o^ P@ N Q@ H H A E$ #= T C$ 8* O@ H J d- d- L n> 7# E$ d- C$ r! . G$ o( p( #( #( #( #( #( #( #( #( q( r( s( =. +. 4- z@ z@ $% -. A@ )& e- t( u( v( w( #( #( #( #( #( #( #( w( x( y( z( 1~ -{ 3~ =% /. w{ ~] w{ 3~ e' 4] 5^ 3~ A( B( C( w( w( D( E( '! I! , a& j# '! '! '! 9; F( G( w( w( H( I( v' !! g' y{ H^ 1{ J( K( L( M( N( w( w( O( P( Z- K! h. K! K! r) r) F~ r) x! V{ F~ V{ G~ G~ W{ '{ H~ W{ Q( h( Y^ 8] 7] m- L~ 8] O] o~ ') 7~ ') [= I^ 0! 0~ 9~ <> { O; 9~ 9~ 9~ 0~ =] 9~ 9~ u^ =] 9~ =] Q] =^ =^ :] N~ x) 2{ w^ R( ^' ^' ^' 9) 9) w^ 9) 9) 9) Z{ F{ Z{ 9) f; f; ;] ]~ O~ Y{ ;] `^ `^ O! j/ @; b) h^ U] G{ o{ ~) y^ @{ ~) ~) !/ C' K{ y^ :/ b] @{ S( D' T( K{ b= j^ _~ k' k' _~ ] ] _~ k' k' _~ _~ %, ]{ g, ]{ B* w- s] U( g, i; >- #{ e~ N^ ]) -~ L{ !^ K> .) i, ^) u~ e= ^) i, ^) e= ^) e= +) %$ e= ^) k; e= }' l; ;$ k! l; |^ @) l; l; w% l; l; l; Z] /) ;$ =, l; ;$ =, l+ r+ t+ t+ t+ N> N> s+ t+ y% x+ w+ `] N> i= N> t+ M> B% B% B% B- m; B+ ]$ A+ A+ A+ A+ C+ C+ B- B+ A+ A+ I+ E+ E+ E% L* F+ E+ D+ E% O+ P+ O+ Q+ L+ T+ T+ /$ Q+ S+ T+ T+ Y+ F% Y+ Z+ Z+ V+ @@ F% Y+ +@ p; +@ +@ +@ +@ #@ [$ +@ V( +^ %@ &@ %@ *@ > > >@ *@ *@ >@ W, 1$ >@ -@ )@ !; r; T% ~@ T% r; R% H- 6$ 6$ q= 0$ ^@ {@ W( 9$ .& ` 0 ; + R@ ], =) 6' q, v, v, H) v, g] ' s, q, v, s, s, s, r, q, s, v, x, s, @] s, v, +' q, r, ^, @] s, s, X( q, q, v, =) v, s, s, x, t, 6' 6' q, [) ^, !~ x@ ). ). p, x@ A@ ). A@ 5& $% .= 0# x@ ,. 5# .= D! 5# +. .= ,= P 5# V J C$ J J@ U K@ H H 1# P@ +% M@ O@ O )> P@ A M n! I ", +"R@ . = # # # ^& . L$ ]& - > $ . > . U@ 5- ; . T@ ] & }* ; - Q$ > & - # S$ ; %= ; %= ] ; T- > { ] ] Z! ; X@ | & N$ *# X@ < , , $# | < 2 ^ 2 W@ { { b | 1 ## [ 6 $# i 6 7 6 d } 8 $# e $# 7 < e ~# a &# e i 7 7 b 9- $# ## 9- ~# a c n |& L= e ># j L= c -) h Y$ !# c{ h r Y$ j p p h O' m /# C ^# b' Y$ 2; m 4* r 4* G b' w x C G A P@ Y( l( #( m( Z( D G G |# 8* M E$ M@ T J S L@ L I@ J T H T I@ 1# d- O U 3# S X O `( _ ._ #( #( #( #( #( #( #( #( #( #( +_ @_ #_ . +. ;. ;. =. ;. 9/ ;' -. $_ %_ #( #( #( #( #( #( #( #( #( #( #( +_ &_ 3~ =% ~. &% 3~ 5& x@ 5& 4] w{ *_ W^ 2~ ,% =_ -_ ;_ #( #( >_ %] 6^ , , a& , I! 8^ I! ,_ '_ #( w( )_ ]= 1{ q) !! H^ !_ ~_ {_ ]_ #( #( #( #( #( ^_ P( h. Z- K! K! F~ K! ^% V{ r) H, V{ F~ d/ W{ ;/ W{ V{ W= W{ W{ /^ W{ 7] 8] /_ m- p~ 8] p~ I^ y! K~ ') ') 0! 0! M~ 9] (_ 9] ]! r~ Q] {~ =^ Q] 2/ __ u^ =] Q] Q] =^ =^ N~ :_ <_ %~ _^ :_ <] 9) 9) 9) 9) 9) ^' Z{ F{ Z{ ]~ F{ J^ F{ ]~ Y{ F{ `^ O! ;] 3{ 3{ e! [_ 3{ K^ G{ }_ }_ G{ ~) @{ @{ @{ C' C' C' @{ d~ h^ r{ ~) i^ %, |_ 1_ A) l% A) k' 2_ _~ k' ] 2_ _~ k' k' _~ k' b= :~ _~ _~ i! .! s] -~ e~ i! ]) #{ i! .) ]) .) e= i, .) G* e= >~ l^ G* e= u~ >~ >~ ^) +) k; M{ ,- k; ^) G* l; ;$ u] @) @) |' ;$ ;$ l; @) l; ;$ l; l; ;$ >$ >$ |^ n+ n+ l+ A- |! t+ s+ i= y% t+ i= u+ u+ u+ n/ N> u+ w+ k, B% K* B% R, B- +/ w~ B- A+ C+ R, B+ B% _) B! A+ R& ^$ E+ E+ E+ S& D+ F+ G+ k= E% L+ Q+ Q+ S+ P+ L+ /$ L+ R+ R+ V+ V+ T+ V+ _$ p; Z+ Y+ _$ Y+ V& +@ +@ #@ +@ +@ %@ &@ +@ |$ q; :- %@ *@ &@ %@ %@ ;@ *@ W, %@ *@ >@ >@ `& S> q= >@ I- )@ u= T% Q% ,@ R% U% S% R* e$ /@ /@ !@ *& N@ b V@ V! g~ q, q, q, q, v, g] 8' =) q, s, ^, 6' }) [) ^, 3_ 6' 8' v, q, 6' 5' e^ q, 2! e^ r, s, ^, q, q, q, [) g] r, r, 6' x, +' r, 6' 6' r, g~ z~ 6' # A@ !. 4_ !. ). A@ &. -. ). )& !. &. =. . E@ E@ B$ @. z@ ). D@ J@ 5# @. V L@ }; J ` U }; O H A O E$ z @% A P@ O I z F ", +" T@ H= . V@ > $ . 5_ ]& 1* $ . Q$ & > R- > H= Q$ W@ T@ ; . ; $ ; (& # - }* ] Q$ ] ; P$ ^ > ; ; ~ O$ 5- O$ $= ] N$ N$ ~ { / *# X@ [ 4 [ } [ 4 Y@ ~ ) J= ( ~ 1 } 6 &# d 6 { 2 ## 6 ( a 6 a &# ~# :& e $# k 7 c 7 =# ~# a ~# 9 a f c &# ,# n {# n c c c ~# L= h p c e e h h % Y$ Z$ n n h :# {& D ,> F= r h c{ ^# ^# p `$ N /# D I z C G 6_ @( #( 7_ 8_ z w M E$ M o> A J P@ L S 4# Y E$ H U d- C$ L E$ H P@ R P W X R 9_ 7_ #( #( #( 0_ a_ b_ c_ d_ e_ 7_ #( #( #( f_ g_ A@ +. e- A@ =. >. ,. h_ i_ #( #( #( j_ k_ [( l_ m_ n_ o_ #( #( +_ p_ ^^ =% ~. ~. &% &% /. 6& 3~ 3~ D~ w{ &% |. 5^ 5^ q_ #( #( r_ s_ P= '! I! g# I! '! '! t_ u_ #( #( v_ w_ H^ H^ 1{ 1{ y{ x_ #( #( #( #( #( #( #( #( ^_ y_ Z- Z- h. h. K! r) B] r) r) V{ V{ F~ V{ V{ V{ 8) d/ 8) W' `~ f( *^ z_ H~ I~ I^ p~ H~ A> A> A> 0! 0! ') 0! m{ X' A_ 0! /] =] Q] 2/ =] Q] Q] Q] Q] Q] Q] Q] Q] Q] u^ /! N~ W/ _^ B_ x) /! 9) d; d; 9) 9) 9) Z{ Z{ F{ 9) J^ F{ ]~ ;] ;] C_ ;] q- ;] ;] s~ a) D_ [] O~ G{ <^ ~{ ~) C' ~) ~) C' @{ ~) C' @; @; P! E_ Q) d~ `' `' F_ r{ [^ '^ D' _~ %, b= _~ ] _~ k' k' %, :~ :~ ] ] ] d] c] >] #{ ,] >- N^ l' d] N^ 7+ t] !^ R! ]) .) R! e= ^) ^) e= >~ e= e= ^) ^) k; M{ e= >~ e= >~ /) l; l; g+ l; s{ l; @) l; ;$ l; ;$ ;$ |^ l; =, l; l; ;$ ;$ ;$ r+ s+ |! t+ s+ u+ t+ |! N> u+ i= t+ '$ h= V; t+ `] G_ B- B% B- {^ `] B% B- B+ B+ B+ B% A+ B+ A+ B% R, J+ B+ C- E% C- C+ C+ E+ k= Q+ O+ R+ R+ N+ Q+ /$ G% T+ L+ T+ V+ Y+ V+ f) V+ V+ Y+ X+ +@ X+ @@ +@ W+ @@ W+ +@ #@ #@ $@ @^ @@ *@ #@ %@ *@ U, %@ %@ 7$ &@ m, *@ -@ '@ q= !; '@ ~; ,~ 2$ U, !; ~@ U% R% 9$ P* }@ /@ W% {@ {* ^# Y@ Q$ <{ z~ z~ z~ [) v, 6' r, =) [) 5' 6' ^, q, q, q, q, r, [) x, +' s, 6' q, 5' 6' r, ^, i) q, 5' %{ s, s, 6' q, g] [) [) s, v, r, 6' ' @] g] 5' ^, ^, V@ .= v@ ^. d# ^. A@ '& +. l> &. &. V> z@ *. 5# E@ .. 5# .= V E@ P P 1# ` 1# 1# Z H T . H H Z P@ P@ 3# S G q! J I I z ", +"+ [* + ]& . $= 2 . # k) # - # M$ & H= k) + ; & | $ = * - U@ & . * ; - & ; | Q$ S$ R$ V@ ] { /& { | | | [ 2 & `@ - 6 [ < 1 ] ~ < ~ Y@ X@ 1 N$ ) { | / ~ %# +# < 5 8 < R$ a ># 6 e 6 a 8 < 0 6 7 9 ,# } a n 0 e c a 7 o g i ~# ~# 0 ,# a L= L= e 6 8 o c K= n^ E, n 2, p `$ (# L= h h _# ^# _# m n h D B G G G ^# /# y w C 1& L/ H_ I_ J_ K_ z M E$ G n! |# P' O P@ U P@ C$ Y L T D$ L O@ P C$ >) 7# d- 2# P 4; L_ M_ #( #( N_ O_ P_ Y . =. .= Q_ R_ S_ #( #( 7_ T_ ,. #. !. (* #. 5# U_ V_ #( #( W_ X_ Y_ 0# ). 5; %% %% Z_ `_ : .: p_ {. =% D~ &% ~. 3~ 1~ L] &% 3~ D~ +: W^ W^ e{ p^ @: D( #( #( #: $: '! '! g# '! , I! %: &: #( +_ *: f' 1{ y{ g' 7) 1{ =: #( ]_ -: ;: >: ,: #( #( ^_ P( K! K! r) ^] F~ h. r) r) F~ r) l* H, V{ V{ W{ '{ '{ `~ W= ': `~ ): o~ 8] 8] !: ~: {: O] ]: ') A> y! l{ m{ m{ 8~ m{ m{ 9] /] ^: =] =] =] 9~ ]! =] =] Q] u^ Q] N~ n{ Q] =] o] <_ -^ d; :_ X/ F{ ^' 9) ^' 9) t* d; F{ ;] F{ J^ s~ f; ]~ P) 3{ ;] ;] ]~ ^~ O! (! [] O~ y) b) o{ S] S] F] C' @; ~) C' ~) ~) C' d~ (~ Q) `{ R) k' q{ %, %, A) A) %, _~ j^ %, k' k' ] k' _~ _~ k' k' _~ :~ e~ Y] ] >- #{ i! N^ .) i! -~ .) .) .) u~ t] t] e= ^) R! u~ ^) ]) R! k; ^) >~ +) k; e= G* ^) ^) @) @) P, ;$ )- s{ l; ;$ ;$ @) |^ l; ;$ ;$ |^ y% l; l+ l; l+ l+ l+ /: |! y% t+ i= t+ (: t+ N> '$ s+ |! i= u+ N> z+ `] +/ _: B% A+ B+ B- B- B% B+ B+ A+ B% A+ C+ C+ A+ ^$ R& :: O+ O+ E+ C+ G+ D+ Q+ L+ O+ R+ P+ L+ Q+ G% /$ R+ V+ V+ F% Z+ Z+ Z+ Y+ Z+ _$ _$ +@ @@ @@ +@ +@ @@ [$ +@ +@ &@ @^ $@ %@ &@ *@ I% @^ &@ =@ R^ &@ 4$ *@ u{ S% )@ 2$ Q% 7$ O* -@ R% 6$ G- T% ~@ P* 9$ u= :@ U% <: ^. `$ 1 > <{ q, 6' q, =) v, x, s, [) 5' r, q, s, z~ 6' g] t, s, 6' ^, +' r, +' ^, q, q, 5' r, 6' q, r, g] s, =) @] e^ +' [: ^, v, 6' q, r, `, [) 5' +' e^ R@ V {. {. {. ,& ^. !. &. x@ 5# &. (* !. ). -. &. z@ &. P z$ E@ . ` J@ L@ L@ T P P ` M@ D$ O H N A O S x O@ G G K z ", +"> V@ # L$ T@ $ & # . . V@ * & Q$ | H= $ & o! . & S$ ; [ ) ~ V@ ' H= H= ; V@ ' ~ %= > ; N$ X@ X@ ) N$ ; ~ N$ ~ ; N$ 2 { / *# X@ ( ^ [ D, { { Y@ { ) W@ { { ## 6 W@ a == 7 1 Y> j Y@ $# $# [ a +# } 6 k 7 Y> 6 8 } b 6 b 6 V$ 7 e e 0 8 j ># e {# ~# Q{ ~# a e -) g Y$ :# n p ^# Y$ Y$ o Y$ n y ^# ^# D % D 1; D w w :# 6* t M D G O@ x D 3; z I n! I M J }# J O@ M O P@ P@ Q@ 8* J 0* I@ L@ L@ J D$ P@ H I@ I@ .= T }: |: #( #( N_ 1: ,. #. E@ 2: ,= $% )= F@ 3: 4: #( #( 5: 6: B$ $% . ;. R' 7: 8: #( #( 9: 0: q/ ). %% 7, b# ,& a: b: c: d: e: %% {. %% D~ &% 3~ ~] 3~ [. 3~ &% +: 4] `> g- {= 7! f: w( #( g: h: 6^ u/ s/ l~ 0, i: j: #( #( k: l: 6^ @~ {> f' q) i{ m: n: o: p: X~ N] q: #( #( ^_ r: Z- h. Z- h. K! h. K! 4~ r) U= l* l* C{ V{ W{ W{ W{ `~ s: I~ t^ t^ Y^ t^ 8] !: m- A> o~ ') ') m- 7~ m{ 0! m{ 0! m{ 0~ 9~ 9~ ]! 9~ ]! (/ =^ =] {~ =] _/ =^ R] N~ :] =^ Q] =^ a] 2{ d; z' <_ d; ^' ^' !{ 1> ^' 9) 9) Z{ F{ F{ Z{ ;] ;] (! [] ;] 3{ 3{ 3{ 3{ }_ ^~ K^ D] ^~ C' @{ y^ t: @{ C' G{ b) C' ~) ~) y^ ~) y^ k/ y^ u: b= d~ y^ b] b] k' k' _~ k' k' :~ _~ %, _~ _~ k' k' k' ] e~ X] k' ] e~ i! d] N^ .) d] N^ ]) ]) ;~ ^) t] ]) l^ >~ u~ ^) >~ e= ^) >~ e= ^) +) +) >~ k; e= e= j( Z] u] j+ @) @) l; @) |^ @) l; l; l; l+ ;$ ;$ ;$ ;$ l+ l; 5{ C) A- y% y% A- /{ y% t+ y% u+ y% t+ h= u+ u+ N> w~ v: B% B% A+ w: K* B+ m; B+ C+ A+ B+ B% B+ A+ A+ A+ ^$ D% A+ Q+ O+ J+ C+ E+ P+ S+ T+ V+ T+ V+ Q+ O> Y+ T+ G% T+ T+ F% V+ W+ Y+ p; @@ #@ @@ Y+ @@ +@ %@ +@ @@ @@ 1] :- !] f~ %@ #@ v] #@ %@ S> >@ >@ =@ >@ =@ M% )@ C! Q% q= {@ x: R% 9$ R% 6$ 5$ ~@ V% ~@ u{ :@ [/ d$ ,. Y$ [ > s' g~ 2! ^, [) 6' s, =) q, q, 5' x, s, r, ^, 8' 6' q, q, v, e^ e^ ^, y: s, ^, q, ^, v, q, 6' z~ 3_ u, r, v, 6' q, 6' q, r, 2! s, v, *) *) z~ q, ], i) ` '. (. ). &. ^. b# !. x@ &. 5# A@ A@ B@ 5# A@ E@ 6, z@ O= R $% _* #. S P 2# V R L@ G$ P C$ L@ @% M M H$ O@ H$ #= A Q@ A ", +"# + + + $= $ U@ & S$ & > & & & *' > ; ] $ # & ^ ) { ] > ] N$ ] > | N$ ; - ]& N$ P$ ] @# N$ ^ 1 X@ ;# & N$ N$ ) } W@ 2 { %# } } { %= X@ Y@ [ { 1 2 < -# ) ( _ [ | / 7 $# V$ d b D, 8 6 7 : 7 a [& i ~# V$ 6 a e e $# g ~# a e } c ,# 6 &# 8 Q{ X$ n n r o L= o c Y$ :# z: h p h p Z$ w 4* D ;= t ^# z 2; Z$ Z$ (# % O@ ^# n! A I D 8* N@ w ^# A G |# B 3# 8* J L@ P@ +% d- :* P@ A: T E$ A d- Y E$ T G$ C$ P' L@ B: #( #( #( C: D: P' 9* X R V Q' e- 5# .. E: W_ #( #( F: G: 5# $% *. ,. H: w( #( .: I: 9# ). b# H! ;. )& H! %% {. 0/ !. %% J: 1~ =% =% 3~ w{ +~ &% /. 3~ W^ w{ -{ 3~ 4] k~ -% K: L: #( #( M: N: I! '! 0, , O: w( #( P: Q: R: 6^ 7) g' f' v' y{ S: y{ j{ j{ y{ j{ T: #( #( ^_ U: r) h. K! K! K! V{ V: V{ V{ r) l* F~ V{ W: W{ V{ V{ X: d/ p* 7] W{ *^ f( *^ !: I^ ') 0! A> A> ') ,/ ') m- A> m{ m{ 9~ ]! 9~ ]! =] ]! =] 9~ 9~ ^! n{ b~ =] =^ )/ n{ Z) =^ Q] )/ /! <] w^ <_ .- 1> d; 9) 9) 9) F{ ^' J^ F{ Z{ 9) ;] ]~ ;] e! f; f; s~ ;] 3{ `^ ^~ N! 3{ [] @{ C' ~) C' ~) @; C' @; @; ~) @{ y^ y^ ~) k/ y^ t: Y: Z: z^ b] b] %, _~ %, %, k' k' k' _~ c] _~ j^ k' ] Y] s] -~ Y] :~ N^ `: i! < ]) ,] < ]) l' ]) e= ]) l' ^) >~ i, ^) ^) e= ^) ^) e= ^) M{ k; e= ^) 6> >~ @! Z] @) @) @) @) ;$ l; l; @) l; l; l; @) l; ;$ n+ ;$ ;$ ;$ l; ;$ r+ |! t+ A- >$ y% t+ t+ w+ w+ '$ y% V; '$ u+ m; j= B% B- k, B+ B+ B- B% C+ C+ B+ B+ B+ E+ B% E+ C+ B+ I+ A+ Q& L+ O> F+ F+ P> /- R+ R+ /$ P+ S+ /$ G% T+ G% T+ T+ /$ V+ T+ Y+ Z+ Z+ Z+ X+ Z+ +@ #@ +@ #@ &@ &@ &@ %@ %@ q; p= #@ p; > #@ %@ $@ > e] &@ &@ .> !; '@ R% C! q' R% T% Q% 5$ /@ '@ q= N% /@ ~@ |@ ^@ l$ X f ~ + R@ V! q, ^, q, 6' v, x, [) v, v, @] s, 8' [) =) q, s, s, q, ^, ^, v, q, q, ^, q, e^ q, q, z~ ^, e^ 5' 5' =) x, 6' v, 6' 6' 5' v, ^, q, 5' z~ 6' q, ^, G ^. B= {. v{ '. ). x@ ). &. )& !. x@ C@ A@ z@ &. A@ G@ C$ 5# 4# R z$ D$ |; T L@ L' P X n> O K@ H Q@ H P@ I ` P@ M A 8* ", +"X! ; * $ = & ; Q$ V@ > > - - Q$ & ' & Q$ N$ & # Q$ > 2 | ^ ; ^ ~ N$ & *' ~ & { - ; ) & ^ ; N$ | 2 (& ; > Z! *# { ~ X@ /& 4 6 { 7 Y@ T- [ N$ ) : ## X@ < < 6 W@ d } < Y@ } } ( } 6 &# < 7 g V$ .< +< @< #< $< %< &< *< e =# o a [& q> 7 e ~# i _# n ,# h a n 9- i C; q r K] 4* ,> Y$ D o 4* 2; ^# ^# Z$ =< -< ;< >< ,< '< b' I w I D A z D G J O@ P@ F= N P@ M Q@ H$ T^ H P@ d- H O J L 3# J P@ L L H M )< X> I@ T !< ~< #( #( {< ]< . C$ @. Z #. C$ B$ .. C$ z$ ^< /< #( #( %_ (< $% . W~ ;' b_ #( #( _< :< 9# !. !. b# ). H! H! x@ x@ 9# H! 1~ X) << =% b# w{ &% H! &% /. 3~ &% &% ~. +~ &% b* *% *% [< +_ #( 7_ }< I! '! '! |< 1< #( #( 2< 3< '! 6^ 1{ a; 7) 1{ j{ y{ y{ j{ 4< H^ H^ T: #( #( ^_ r: h. K! h. F~ K! F~ K! V{ F~ K! F~ K! r) V{ F~ F~ V{ f( G~ H~ Y^ &^ 7] Y^ I~ g/ 5< ') p~ h/ ') A> 0! A> 0! 0! ') m{ 9~ ]! ]! ]! Q] 9~ =] 0~ Q] Z) ^! b~ 9~ 9~ Q] =^ u^ u^ u^ /! N~ 6< _^ o] w^ w^ ^' ^' ^' F{ 9) ^' F{ Z{ F{ F{ 7< ;] ;] ^~ q- ]~ [] ;] 3{ 3{ s~ a) `^ T] *+ C' @; ~) @; C' *+ ~) ~{ C' ~) ~) @{ y^ i^ E_ y^ E_ '^ z^ '^ b] _~ _~ b= k' _~ k' _~ _~ .! _~ %, k' k' g, ] Y] A^ i! }^ U( i! e~ #{ #{ e~ N^ ]) ]) K> .) ]) R! v~ u~ L{ >~ e= u~ >~ G* e= +) 6> ,- l^ k; ^) @! 8< ;$ l; k! |^ l; /) ;$ l; ;$ l; f= ;$ /) *, @) ;$ ;$ l+ A- l+ /: t+ }! =, 2' t+ t+ |! u+ u+ M> j= u+ o+ s+ ]$ 9< B% B+ A+ B+ B% B% B+ C+ A+ A+ A+ C+ E+ D+ C+ E+ J+ 8{ E+ M+ L+ 0> 0> A+ H+ P+ S+ O+ P+ S+ R+ T+ /$ V+ T+ V+ Y+ Y+ V+ V+ Z+ _$ Y+ Z+ Z+ _$ +@ +@ @@ W+ +@ +@ %@ %@ #@ 6/ q; %@ }$ %@ &@ %@ W, &@ $@ &@ &@ !; =@ -@ Q% T% *@ T% R% G- (@ ~@ w= ,@ )@ u= b$ @* R* .& H e 2 T@ V! V! q, z~ ^, q, q, r, 5' 5' q, q, s, =) q, 6' q, 5' =) 6' q, z~ q, v, r, 3_ ^, [) q, 6' q, 6' [) z~ @] ^, [) 6' r, q, %{ g] [) ^, r, [) q, q, q, ^, 0< v@ :. <. w$ x@ !. 5# A@ A@ ). &. A$ A@ &. *. L) z@ .. }; U G@ E@ +. R R H@ O G@ +% O H Y P }; P@ Z M M Y Y H$ z 3# ", +"]& . & & $ # k) + = ; + * V@ . # ^ . Q$ & ^& T@ . . N$ | ^ | ] N$ ~ X@ N$ | 5! | ~ N$ H= ; ; ; { S$ ; N$ | X@ ; N$ { ~ ~ / { ( 1 ## -# / 6 6 ~ [ 4 Y@ | } 7 V$ | 6 6 V~ ## } 9 ,# ( $# ,# 6 &# a< b< c< #( #( #( #( #( d< e< f< 7 i '# a 8 V$ g< h< h< h< i< h< j< h< h< j< h< i< h< h< k< l< r p m< n< i< o< p< q< r< s< #( #( #( #( s< t< u< b' 2; % ^# P@ I v< w< x< y< z< N@ ^# O@ A< B< x< x< C< D< P@ O T T H P T E< F< G< H< I< L C$ T J< W_ #( #( K< L@ .= E@ W e- z$ W F^ H@ W H@ y@ L< 7_ #( #( M< >. $% $. %. N< #( #( O< P< $. 9# %. *. *. x@ H! b# b# ^^ b# /. %% %% /. {. 3~ 3~ 3~ 7, 1~ 3~ &% /. Q< $^ v@ b* *% p^ R< S< #( #( T< U< I! I! V< #( #( ;_ W< l~ I! 8^ h{ g' N] y{ s^ y{ 1{ y{ y{ j{ i] T: #( #( X< Y< K! Z- h. r) r) r) h. F~ F~ F~ r) K! V{ V{ V{ V{ F~ L! W{ V{ '{ Z< 8) G~ Q( ~! `< `< ~: [ ') ') ') 9] 0! ') m{ ,/ /] ]! ]! .[ 9~ r~ Q] x/ u^ :] ^! .[ x/ =^ =^ u^ u^ 6< Q] =^ N~ _^ ^' <_ +[ F{ F{ ^' ^' 9) 0] ^' ^' 9) ;] Z{ Z{ 3{ 3{ H{ (! ]~ M, H{ J^ }_ Y{ ^~ j/ s~ O! @; @; @; ~) C' C' @{ y) z) C' @{ ~) `{ t: @[ ~) y^ A) T( y^ c~ D' k' k' _~ k' _~ k' _~ k' %, _~ #[ _~ k' ] $[ ]{ N^ _~ >- e~ e~ < t] e~ -~ t] ]) %[ ;~ .) i, R! e= ^) c^ ^) u~ ^) e= ^) ^) M{ +) e= k; k! v~ ^) '] @) ,- ;$ l; ;$ l; @) l; l+ /{ l; ;$ /) l; ;$ |^ ;$ ;$ *$ l; y% t+ |! A- r+ t+ |! t+ i= s+ j= t+ t+ s+ x+ s+ B+ B+ A+ A+ B% B+ B+ y+ B+ B+ A+ C+ C+ A+ C+ C+ E+ _) D+ M+ L+ O+ D+ E+ D% H+ P+ L+ /$ /$ T+ /$ G% F% V+ R+ V+ V+ Y+ Y+ .@ V+ R+ f) Z+ _$ %@ @@ @@ #@ #@ #@ %@ &@ #@ 1] @^ %@ *@ *@ &@ *@ %@ ~; =@ =@ T% 7/ !; ]@ T% C! `& S% 5$ R% ]@ '@ ^@ /@ U% /@ T% b$ b$ e@ O h { > R@ J$ 5' g] +' [) 5' %{ r, H) r, 6' `, ^, z~ 2! ], 3_ 6' z~ ], g~ &[ =) v, e^ z~ q, q, v, +' q, r, 6' 6' ^, 5' e^ *[ e^ 5' 5' v, v, q, q, *) *) q, *) _, '. %% '. B= ). (* ). '. b# 5# =. !. ). ,& -. =. B$ z$ z$ 7# #. R z; .= 5# }; L@ E@ H V Z Y H Q@ S P@ P@ M S A P@ A G ", +"% . + > =[ + T@ . = ; | S$ # # $ . + + * T@ & - ! ] ] | ; ~ & | ; ; & . > | U@ %= N$ ) { Z@ & ~ 4 N$ Z! | Z! | | / 4 | ( < [ 1 d } D, ( ~ &# } b &# ( 7 Y@ :& D, $# : ( } 7 ## a k -[ ;[ #( #( #( #( #( #( #( #( #( >[ ,[ g 8 7 7 e '[ #( #( #( #( #( #( #( #( #( #( #( #( #( )[ ![ n h ~[ {[ #( ][ ^[ /[ #( #( #( #( #( #( #( #( ([ _[ G ^# D F= w :[ <[ #( m( 8_ A Z$ O@ z [[ m( #( 7_ }[ A M E$ 4# P Y :[ |[ #( #( 1[ 2[ 0* 3[ L@ 4[ #( #( 5[ 6[ E$ L@ @. 7# 6# 5# B$ $% $% @. P +. 7[ q( #( #( 8[ 9[ )& ]. >. 0[ #( #( a[ b[ c[ V^ 9# 5; b# ). '= =. d[ X) %% 1~ L] '. e[ /. /. D~ %% '= f[ w{ &% &% $^ 3~ g[ $^ v@ k~ Q< h[ i[ #( w( j[ 6^ k[ l[ #( #( m[ a/ '! 6^ I! 6^ n[ i{ j{ o[ H^ j{ H^ y{ j{ X~ p[ #( #( ^_ q[ h. K! K! F~ r) K! V{ F~ r) F~ F~ V{ V{ F~ V{ F~ V{ r[ `~ s[ `~ &^ ,{ 8] Q( t[ o~ o~ A> u[ `< 0! ') A> ') ') m{ m{ y/ ]! 9~ y/ /] r~ =] =] ]! =] ]! 9~ Q] u^ 6< v[ )/ /! u^ 6< W/ A/ <] /! w[ x[ 9) 9) 9) 2{ ^' F{ Z{ F{ Z{ ]~ 9) J^ 3{ 3{ Y{ f; f; [] 3{ `^ }_ [_ [_ O! y[ ~) C' ~) G{ @{ ~) =+ ~) C' ~) @{ C' @{ !/ i^ i^ t: b] `' z[ r] %, b= _~ k' ] k' _~ ] ] _~ ] ] k' _~ :~ _~ m/ A^ %, X] e~ X] {/ t] -~ i! ]) N^ ]) k^ t] .) i, >~ ^) G* ^) l^ >~ e= ^) l^ +) u% G* >~ u% +) >~ O^ @) u] u] P, A[ l; l; @) ;$ ;$ ;$ |^ l; @) =, n+ l; ;$ ;$ ;$ t+ t+ t+ s+ A- s+ t+ t+ u+ i= y% y% s+ t+ u+ t+ `] B+ B+ A+ B+ B% B+ B+ B% E+ B+ C+ C+ B% B+ A+ C+ ^$ A+ C+ E% L+ M+ D+ F+ D% P+ E% Q+ /$ Q+ /$ G% G% /$ T+ V+ T+ V+ T+ V+ Z+ Z+ Y+ Z+ @@ @@ @@ @@ @@ @@ +@ %@ +@ +@ 1] B[ q; D- &@ *@ *@ '@ >@ *@ 1$ *@ >@ )@ 2$ d> *@ T% )@ C[ H- 8$ ,@ {@ |~ {; 6$ P* 8$ W% r$ J j ; . R@ 2! *) q, [) [) %{ D[ 5' v, 5' @] *) ^, 5' 5' e^ z~ *) ], q, [) q, 6' 6' ^, ^, 5' ^, [) q, 3_ e^ %{ q, e^ q, e^ q, ^, e^ e^ r, q, z~ g] e^ e^ q, q, / 0# (. (. >& c# ,& A@ &. A@ ). &. E[ -. *. .= .= +. 9* z$ F@ E@ 2# $> T }; D$ H@ C$ T H Y P M Q@ P@ J K@ M a- H A M@ .~ ", +"# . + ; R@ + > ; = > ] $ Q$ - . S$ # T@ & . & W@ *' | ] ] | ] N$ & & + > , . ) ~ %= ^ { { ~ X@ ; ; H= 2 2 ^& | 2 ~ : [ H= ~ == < [ < { $# 1 { [ } $# { [{ b 7 d &# $# : $# d ( b ># F[ G[ #( #( #( H[ I[ J[ K[ >[ $( #( #( L[ M[ ~# a e 8 N[ O[ O[ O[ O[ O[ O[ O[ O[ O[ O[ $( #( #( P[ _[ 6! n Q[ {[ #( ][ R[ #( $( S[ T[ U[ V[ m( #( #( s< W[ ^# s )> G ^# X[ l( #( m( Z( ~& I 1& H Y[ Z[ #( #( `[ } %> T O P 4, .} 7_ #( N_ +} T 4# P D: @} #( #( #} $} X V C$ 7# y@ #. z@ +. z@ .= ,. A@ A@ %} #( #( &} *} >. >. 9/ =} w( #( w( -} &. R' %. ). 5; '. ;} '. =% 1~ /. X) %% D~ 1~ =% =% 3~ f[ L] `> 3~ $^ W^ w{ $^ q^ f{ X) p^ , >} ,} #( #( '} )} !} #( #( ~} {} 8^ 8^ l~ 6^ 8^ ]} %^ y{ y{ y{ 1{ j{ y{ j{ N] p[ #( #( ^_ ^} /} h. Z- r) r) K! r) F~ F~ V{ V{ F~ r) F~ F~ >/ V{ (} C{ G~ f( L! e/ 8] H~ I~ o~ 8] g/ 0! _} :} 0! ') A> m{ 0! m{ <> 0~ ]! =] =] 9~ 9~ 9~ y/ =] Q] =] Q] =] Q] Q] R] ^! /! =^ =^ W/ 6< !{ ^' <} F{ 9) ^' 9) F{ F{ Z{ ^' J^ ]~ F{ 7< F{ ;] [] ]~ ;] `^ 3{ 3{ i( D_ ^~ [} y[ C' ~) C' [_ <^ b) C' @{ @{ @{ C' y^ @{ L^ y^ =~ 1_ '^ Z: k/ / A) j^ :~ _~ _~ C/ _~ k' _~ %, k' _~ k' k' k' ] k' ^{ ]{ s] i! e~ e~ l' .) e~ -~ ]) .) .) u~ ]) u~ e= e= e= e= G* ^) >~ h, ^) >~ }} k; >~ >~ 6> k; c^ l; l; k; l; /) &, 5{ |^ l; l+ l+ l; ;$ g+ l; A- G/ @) ;$ ;$ =, t+ t+ |! =, t+ i= y% s+ u+ u+ y% s+ i= N> i= B- B% B% K* B+ B+ A+ A+ B+ C+ A+ A+ B+ C+ A+ B+ D+ F+ F+ D% ~- C- L+ D+ n; |} R+ L+ Q+ Q+ O+ S+ G% Q+ F% V+ R+ R+ Z+ V+ Z+ X+ Y+ Y+ Z+ Z+ Y+ @@ +@ @@ #@ #@ +@ %@ #@ #@ 1] @^ &@ *@ &@ %@ p= &@ I% 4$ I% >@ e> Q% H- )@ * N% 8$ 5$ T% 9$ /@ {@ /@ 9$ O* :@ /@ 1} Q@ q> | = ], ^, [) q, [) 2! e^ ^, 5' [) @] r, g] *) q, 6' q, z~ 2^ *) ^, q, ], ^, r, i) *) e^ e^ e^ e^ ^, 2! q, *) 5' 3_ ^, z~ 2! e^ 5' %{ 5' e^ ^, q, e^ *) 6' - $% ^. 5# :. 9& ~. {. ). e- ). ,& .. 5# +. &. -. 4& z$ z@ B$ #. R E@ V P L@ L@ a- Y Z H J J@ P@ A M@ P@ S A Q@ I M@ P@ ", +"]& L$ $ = . R- # - + $ | ] $ $= . [* k) k) . Q$ *' ~ ^ & { | | ^ < ] # # 2 Z! T- 2 | ~ *# ~ , < h) Z! U$ S$ 2 ## Z! | X@ | ~ [ 4 } [ => 2 6 < ( j } } &# $# [ d $# ~ ( Y@ } 6 6 V~ Y@ == $# 2} #( #( $( 3} 4} ~# [& ~# 5} 6} d< #( #( 2} } 8 ~# e o a 7 j k s *= L= p n 7} 8} #( #( 9} 0} c n a} {[ #( #( b} c} d} e} G b' `$ f} g} #( #( h} z y m w x k( S[ #( m( %( O@ P@ W) Q H i} j} #( #( k} H L@ E$ A l} m} #( #( n} o} P@ L@ E$ p} q} #( #( r} @. s} ,. C$ X W E@ X +. 7# E@ A@ A@ &. t} #( #( W_ u} >. ;. $. v} w} #( #( x} y} z} e- 7, H! %. b: H! %% p, S' '. X) D~ -{ D~ '= '= /. L] e' w{ w{ w{ W^ $^ 3~ u' A} M] B} C} D} E} #( #( F} g: #( w( G} I! I! 8^ 8^ 8^ =/ t/ h{ m~ g' 1{ v' j{ j{ j{ i] q: #( #( X< H} U/ ^] Z- h. h. 0^ ;/ K! F~ F~ F~ K! F~ F~ V{ C{ H, I} `~ L! ,{ t^ Z< t^ J} [ H~ t^ K} L} `< Q( m- ') 0! M} 0! ') m{ 9~ 0~ /] y/ ]! 9~ Q] _/ x/ =^ =] u^ R] Q] 9~ Q] r~ u^ /! u^ R( W/ 2{ w^ A/ +{ d; d; ^' ^' F{ 9) ^' ^' ]~ ]~ F{ ;] 3{ ]~ K^ 3{ 3{ ]~ O! ;] [] s~ S] ;] y) /~ C' <^ G{ @{ @; C' ~) ~) @{ @; y^ P! C' Z: N} d~ D' u: O} [^ b] b= k' _~ P} ] :~ :~ k' k' k' ] :~ %, ]{ s] i! g, k' i! +! e~ i! ]) i! e~ ]) .) #{ i, t] t] !^ ]/ R! >~ ^) >~ e= >~ e= ^) +) k; Q} ^) u] >~ e= @! }} )- @) /) |' ;$ l; l; /) l; l+ l; |^ ;$ l; l; ;$ ;$ l+ ;$ >$ y% y% G/ /{ N> s+ g= s+ u+ s+ (: t+ w+ i= j= A+ B% B+ B+ B% A+ B+ A% C+ B% B+ B% C+ B+ A+ C+ C+ D+ ^$ C+ S& O+ C+ F+ >; /$ R+ Q+ S+ S+ S+ R+ L+ /$ T+ T+ Z+ Y+ V+ Z+ Z+ +@ _$ _$ _$ #@ W+ @@ @@ :- p; #@ &@ %@ %@ &@ c> !] #@ *@ &@ *@ *@ 1$ *@ =@ > `& R% T% )@ Q% N* G) !; .> S% ~@ U% +* O% ^@ s; S* _. m 6 { + ], ], V! q, 2! g~ ^, e^ [) 5' ^, ^, [) *) *) z~ [: `, *) *) *) r, e^ ], ^, *) 2! ^, e^ z~ e^ 5' 2! q, 2! q, [) q, ], *) ^, 5' q, q, ^, v, 2! V! *) `, # R q@ :. (. ^. (. F, ^. =. >. {. &. 5# 5# z@ A@ +. A@ &. z@ E@ +. z@ X 2# H@ H@ F@ L@ V C$ J Y S Q@ M@ A M A Q@ P@ K I ", +"]& + + & # $ + |* . & R$ ^& + > T@ + N$ N$ P$ > U$ & ; Q$ ; !, H= ~ N$ ] ] V@ # ) ) ) ~ 2 | ( & 1 2 | ~ 2 < { | ~ | 2 ] $# 6 -> ## 6 d } < d $# } 6 } $# } 7 < a Y> $# 6 b -# } a e R} S} #( #( T} U} $# 7 a i i V} W} #( #( X} Y} &# k L= s> ~# j o n Y$ c 7 0 Z} `} #( #( | .| e e n +| {[ #( #( $( @| ^# #| B /# p :# $| #( #( n< +( F= 8* z {& +( S[ #( m( %| w A P@ M L #= &| #( #( g} *| z N@ =| -| #( #( ;| >| L J T d- ,| '| #( #( )| #. 7# E@ U )= !& )= X 5# X X $% @. E@ !| 7_ #( 7_ u( )& =. E@ 0: ~| #( #( #( .: {| ]| ^| /| 0: !. !. {. %% ;} H! %% a: D~ u! 1~ /. 4] L] u! 1~ 3~ 3~ W^ w{ (| W^ 3~ b* 5^ q^ _| :| #( #( #( #( #( <| U< 6^ I! '! I! t/ [| =/ 6^ !! a; 1{ i] j{ 7) j{ H^ p[ #( #( X< q[ c/ B{ Z- h. K! r) }| || F~ r) r) r) V{ F~ C{ r) W: C{ `~ '{ l] l] 1| Y^ H~ t^ o~ 2| z_ 7~ p~ o~ O] m- 0! 0! ,/ ') ,/ 9] /] ]! 9~ 3| 9~ =] Q] =^ 9~ Q] =] Q] =^ =^ =^ u^ u^ =^ v[ 6< :_ _^ F{ w[ +[ 9) 9) ^' ^' F{ F{ F{ F{ Z{ f; Z{ J^ ;] 4| O! `^ ;] `^ O! 3{ ;] 3{ S] i( `^ i( z) @; ~) (~ ~) y^ @{ ~) ~) y^ I{ @{ ~) :/ Q) 5| :/ D' P! M^ [^ j^ k' _~ _~ _~ _~ _~ ] _~ k' ] 2_ %, k' c] c] Z/ ] -~ >- {/ i! -~ #{ e~ .) 7+ ]) #{ e= t] R! >~ .) ^) >~ ^) 6| ^) ^) ^) e= +) ^) >~ k; +) e= c^ P, ;$ k! |^ l; l; ;$ l; l+ l; l+ ;$ ;$ l+ l; ;$ n+ A- ;$ )- A- t+ |! y% 2' 7| t+ t+ |! i= s+ g= u+ w+ u+ s+ w~ B% B- B% B- B- B% M> A+ C+ B+ A+ E+ C+ E+ A+ C+ C+ C+ n; C% /$ M+ D+ E+ k= T+ R+ G% V+ R+ Y+ 8| Q+ F% Z+ V+ T+ Y+ f) Z+ W+ Z+ Y+ W+ #@ @@ @@ @@ `; p; #@ #@ #@ &@ &@ B[ !] #@ %@ &@ &@ >@ =@ *@ > Q% 7$ '@ I% -@ 7$ 7$ e> )@ O* M% I- T% V% H- {; w= 9@ z@ % 1 ] # ]& R@ ], e^ ^, 5' z~ 5' g] 5' ^, q, q, [) 5' e^ ^, z~ 2! q, ^, *) ^, ^, *) e^ e^ `, V! 9| V! e^ 5' e^ *) ^, [) q, e^ `, ^, ], ], q, z~ ], e^ z~ g] q, J$ ` D= v@ v@ >& !. A@ (* ). &. p, F, !. ;. [, (* +. #. z$ 5# G@ 5# V }; 1# P 1# H@ X T H J Y M P Y S Q@ G w G I G ", +"= > H= ; > # # & $ N$ ]& . & . Z, + & & & ' X@ & . H= - N$ ; | ) ) | - N$ ] . > - X@ ~ ) ## { & ] W@ [ < | N$ 4 X@ ## | [ { /& ^ %# { 1 6 6 ( 8 } | ~ $# } 5 a < 9 ( 7 D, } Y> ,# 0| #( #( a| b| 6 :& $# b e 7 ~# c| d| #( $( e| '# a L= e 8 7 &# L= ~# r -) ~# f| #( #( ][ g| c r ,# h h| {[ #( #( i| j| G 4* F= m 1; m k| ][ #( d< l| Q@ Q@ F= )> m| n| #( m( Z( I M N= w H n! o| p| #( #( q| r| H s| 5[ #( 7_ t| X> I@ d- L@ T u| 5[ #( #( 9_ 4; W C$ I@ ,. .. .. X a* 7# W #. !& #. v| 7_ #( w( =} &. =. $. %. w| x| #( #( #( #( #( #( _< y| z| A| x@ %% X) q/ !. %% 1~ a: ,& a: =% +: 1~ /. 3~ w{ W^ w{ f{ w{ 3~ 2~ q^ k~ w{ B| C| #( #( #( +_ D| '! I! I! 6^ 8^ [| [| =/ 6^ I! v' 1{ j{ y{ y{ H^ H^ T: #( #( X< E| c/ i] }| K! K! K! }| F| W' F~ r) V{ V{ F~ F~ C{ C{ F~ F~ W' Y^ G~ Y^ W{ `~ H~ o~ 2| o~ G| 7~ Q( p~ I^ A_ 0! 0! m{ m{ m{ .[ 9~ y/ /] =^ =] 9~ 9~ =] 9~ Q] Q] =^ Q] =^ Q] u^ u^ 6< v[ H| o] I| +[ A/ 9) ^' 9) ^' F{ F{ ^' Z{ Z{ ;] F{ Z{ F{ ;] 3{ &~ J^ 3{ [] }_ 3{ 3{ H{ j/ [] H{ @{ ~) C' F] J| @{ @{ @{ y^ @{ ~) @{ @{ i^ c~ h^ t: b= K{ u: @[ b] D' k' k' |_ _~ k' ] :~ ] _~ _~ k' _~ s] _~ i! s] :~ Y] g, e~ >- .) i! < t] l' t] ^) t] ]) ^) ^) >~ l^ G* ^) l^ ^) l^ ;~ +) s{ e= e= +) l^ ^) /) ;$ ;$ l+ l; |' l; l; l; ;$ ;$ ;$ l; l; l; ;$ ;$ ;$ t+ G/ A- y% |! |! >$ u+ i= y% y% u+ i= s+ '$ w+ s+ i= B+ `] B% B% B+ B% C+ A% A+ B+ B+ B+ A+ C+ C+ C+ B! D+ C+ E+ F+ Q+ L+ D+ F+ F+ K| R+ L+ G% R+ S+ G% /$ /$ F% Z+ V+ Y+ f) L| @@ X+ Z+ Z+ _$ @@ W+ #@ @@ +@ V& #@ #@ #@ #@ <- c> +^ >@ *@ &@ %@ 1$ S> o= -@ '@ >@ &) 4$ '@ 7$ 6$ T% T% U% O* R% S% (@ :@ W% |@ z$ q *# ; ], J$ z~ z~ q, q, ^, 5' z~ 3_ ], ^, q, r, g] *) ], g~ g~ ^, g~ 2! *) ], ], e^ ], g~ ^, V! ], 2^ e^ [) 2! *) e^ 2! g~ V! *) ], R@ g~ ^, q, *) *) M| V! Z d# q@ w$ {. !. ;. -. ). A@ %. '. '. !. 5# =. z@ +. .= V C$ D$ 2# E@ 2# P P J Y ` J@ E$ L@ T J J Y M I M +% A :# ", +"= N$ > + ; T@ %= & ] # $ $= - . . ; + # !, ; Q$ . & ^ . { ~ ~ ] *# ; & & ] N$ & H= | |* W@ ~ N$ | ~ N$ ] ## X@ ; N$ ] 2 | ) V~ [{ { ) 2 , ~ [ < $# 4 } } ( d [ $# d 1 d / 7 / ,# $# N| #( #( O| ># 0 ># b a 0 $# b ~# P| #( #( Q| j e ~# c o 7 a t' n a o R| s< #( #( S| T| L= ]# e n h| {[ #( #( U| h ^# @= m y V| Y$ W| X| #( 7_ Y| ~& N N O@ v< l( #( m( n( E$ P@ D G O@ I t> Z| `| #( 7_ 1 .1 |: #( #( +1 @1 I@ L@ r! Y L@ #1 W_ #( #( $1 R Q' X E@ L G@ !& E@ R O= .. z$ z$ V w| W_ #( #( %1 )& z$ %. %. %. &1 q( #( #( #( #( #( #( #( #( *1 =1 -1 x@ =% 7, 1~ J: '. ;1 3~ ). /. L] 6& &% ~] ^^ 4] *_ 3~ W^ w{ b* 5^ A} p^ >1 #( #( #( ,1 '1 '! '! S{ 6^ '! 6^ 8^ 6^ 6^ 8^ s^ H^ )1 j{ H^ H^ H^ T: #( #( X< Y< !1 // ~1 }| r) F~ }| }| K! K! r) K! r) F~ F~ V{ 8) V{ V{ C{ z_ l] *^ I~ {1 t^ t^ t^ t^ g/ I^ 5< ]1 I^ L} ') 0! ') I^ ') ') /] 9] ]! y/ .[ /] 2/ =] ]! Q] 9~ u^ z/ =^ u^ =^ u^ =^ u^ u^ o] w[ a^ :_ <] ^' ^' 9) ^' 9) ^1 F{ ^' ]~ /1 J^ 7< K^ ;] s~ `^ ;] s~ ;] `^ (1 T] _1 T] i( F] @{ ~) <^ F] @{ ~) ~) y^ I{ C' E_ /~ ~) :! ~) y^ :/ '^ V] Z: b] :1 k' k' ] k' %, k' _~ _~ _~ ] ] _~ k' :~ Y] X] k' <1 < {/ i! >- -~ m/ t] .) t] R! i, l' i, e= ^) e= ^) ^) i, u~ ^) >~ >~ u] +) >~ [1 ,- G* /) @) ;$ 6> l+ /) g+ @) @) @) l; l+ |^ ;$ ;$ l; >$ ;$ >$ y% n+ 2' D) |! t+ i= i= y% s+ '$ i= u+ j= u+ u+ t+ M> w~ R, B% B+ B% B% y+ B+ C+ A+ A+ A+ A+ A+ C+ C+ A+ A+ D% D+ M+ L* E+ D+ D+ D% N+ L+ Q+ L+ V+ R+ /$ /$ G% T+ _$ Y+ f) F% Z+ Y+ Z+ Y+ _$ Z+ W+ W+ @@ _$ +@ +@ p; +@ :- &@ e] e] &@ &@ *@ *@ *@ %@ =@ I% q= q= L% q= ]@ ]@ -@ V% {@ * }1 q= S% ,@ 9$ ^@ 6@ C$ m 6 ; R@ R@ g~ z~ g~ *) *) q, z~ ], ^, 2! *) q, *) z~ z~ q, 2^ 2^ 9| g~ ^, g~ ], V! *) <{ ], *) ], V! ], ], ], ], J$ s' ], ], 2^ *) *) ], q, e^ 9| e^ ^, [) i) |1 M= ^. v@ ^. w$ (. <. =. A@ x@ A@ ). *. A@ D! =. F; +. .. 9* )& G@ Y 5# @. R E@ P }; S I #= S 1# Y A M@ Q@ I Q@ @% A 2; ", +"+ . # > + + - . T@ V@ - X! * U@ 2) ; N$ . ; Q$ ' > S$ }, # |* ; ~ ~ ^ - > H= 1* # > ] N$ ~ X@ W@ ~ ) ~ ] | ) , /& 2 H= | { 5 ) W@ ; } ## W@ /& ( -> } } ## ~ ## 9 ( $# a $# 7 6 / $# ,# 11 21 #( #( 31 6 $# i [& D, 7 b 0 r 41 #( #( 51 8 0 j e 8 c L= Q{ n ~# 61 71 #( #( 81 91 }& /# c W! ^# ~[ {[ #( 7_ 01 Y$ n^ {& ^# `$ q `$ a1 b1 #( $( c1 A 4* I z d1 l( #( m( n( 1& G |# O@ M K E$ e1 f1 #( #( m} g1 #( #( h1 i1 H E$ D$ L@ Y D$ j1 m( #( #( k1 L@ y@ @. E@ P' O= I@ ={ H@ 7# !& l1 z$ z@ m1 W_ #( #( n1 *. =. . e- ). ;. o1 p1 q1 #( #( #( #( #( #( #( #( r1 s1 %% ;. q/ q/ L] '& d[ =% D~ 3~ &% w{ &% w{ '& 1( Q< w{ +: b* 7! 5^ t1 u1 #( #( #( v1 w1 I! 6^ ]} '! , I! 8^ 8^ X^ =/ x1 %^ y1 H^ j{ j{ o[ p[ #( #( X< z1 X~ A1 B1 F~ K! K! C1 F~ r) r) r) F~ V{ r) H, F~ V{ V{ F~ V{ l] t[ D1 8) `~ D{ H~ t^ [ `< 5< ,/ [= E1 ') m{ ,/ A_ 0! 0! m{ y/ 9~ 0~ 9] 3| x/ 6< Q] 9~ =^ Q] =^ =^ =^ u^ 6< 6< =^ u^ u^ a] _^ ^' :_ /! F{ F{ ^' F{ 9) 9) 9) ^' J^ F{ Z{ Z{ x[ 3{ 3{ `^ 3{ [] 3{ 7< `^ [] S] S] H{ [_ !/ B/ F] F1 @{ @; @; @; ~) ~) /~ @{ y^ ~) c~ !/ @{ b] @{ d~ A) j^ k' k' _~ k' ] _~ _~ |_ b= 2_ ] :~ ] _~ :~ e~ D/ >] N^ ,] d] N^ ]) g, t] l' t] ]) i, .) l' i, e= ^) ^) ^) !^ e= e= ^) >~ M{ u] e= +) )- l^ @! *, l; G* k! l; |' s{ l; @) ;$ ;$ @) l+ ;$ l+ s+ @) ;$ l+ ;$ L> A- y% t+ t+ i= w+ }! t+ u+ i= t+ w+ u+ N> t+ A% B% B+ A+ B+ B% o' B+ o' A+ E+ A+ A+ D+ C+ B% E+ A+ I+ >; E+ S& O+ F+ F+ D+ t{ Q+ L+ Q+ /$ T+ G% /$ G% R+ R+ T+ R+ V+ _$ +@ W+ _$ _$ _$ @@ Z+ +@ @@ %@ +@ #@ #@ &@ %@ %@ @^ $@ *@ &@ >@ >@ >@ > *@ 7$ *! )@ G- 6$ M% * !; '@ T% U% +* /@ ~@ P* _@ z= n> }& *# 2 # ]& ], ^, q, e^ e^ V! e^ g~ g~ V! V! J$ e^ 9| *) ]^ ], ], *) *) e^ ], R@ 2^ <{ R@ ]^ *) J$ ], ], ], S- ]^ V! e^ R@ ]^ V! q, q, J$ ]^ *) `, *) q, R@ J$ o D! u@ >& ^. w$ ). '. x@ !. *. ). ). ). 5# &. &. e- &. z$ z@ )= R e- &. G@ J H 7# J H Y |; x A H I H A M 1# P@ z ", +"]& 0' . . # > }* V@ . & # = > Z! ] $ > & & - $= =' ]& - # & ; - ~ X@ 2 . $= - & & ] 2 ^ ] U@ U$ ^ ^ R$ U@ } 1 X@ X@ N$ ( 5 `@ } %# / $# ;# 1 ( | ~ / [ ) } d } } 6 | $# } [ [{ ## G1 H1 #( I1 J1 K1 L1 -[ M1 N1 -[ O1 -[ P1 Q1 #( #( R1 a 0 7 9- *= '# e V$ e S1 T1 #( #( {[ U1 2, c Y$ c c r a} {[ #( m( V1 l /# ,> (# n ^# p W1 X1 #( #( Y1 w {& A {& :[ l( #( m( n( o^ P@ 8* N n! I m) O@ Z1 y< #( #( 7_ #( #( `1 J H$ J 5, L T E$ 2 m( #( #( .2 . G; y@ 8# )= V E@ E@ >! .= E@ +. $% =. +2 W_ #( #( @2 ;. A@ *. )& $. t( c[ $. #2 ]( $2 %2 %_ 7_ #( #( #( #( &2 *2 b# q/ X) H! b# %% x@ 1~ /. D~ w{ w{ =2 3~ 1( 7& w{ W^ g[ g[ A] -2 w( #( #( #( 7_ ;2 6^ '! '! 6^ 6^ I! I! 6^ =/ 8^ >2 v/ y{ y{ y{ j{ ,2 q: #( #( X< H} B{ '2 !1 B] K! }| V: V: K! r) V{ r) r) F~ V{ F~ V{ F~ W{ t[ V{ Y^ t[ t[ `~ z_ o~ l- f( o~ &^ 0! O] O] ') 0! 7~ A> 0! A_ ,/ 2/ 9~ =] y/ m{ y/ =^ =] Q] ^: =^ Q] u^ =] =^ u^ 6< =] u^ u^ =^ o] <_ _^ v^ )2 F{ Z{ F{ Z{ b^ F{ 9) F{ Z{ F{ !2 `^ ;] ;] `^ 3{ ;] `^ 3{ 3{ ^~ _1 j/ 3{ O! ~) ~) i( F] y^ C' C' C' C' C' @{ @{ ~) V] '^ ~) y^ [^ ~2 y^ S( D' 2_ k' _~ _~ k' _~ _~ _~ k' k' k' ] >] ] _~ D/ e~ :~ Y] ]) g, i! ]) N^ N^ t] t] ]) #{ u~ t] e= e= >~ e= ^) R! i, ^) e= >~ e= k! ~^ {2 ^) 6> ,- @! l; k! k! ;$ P, '] l+ ;$ l; l; l; g+ ;$ l; @) ;$ l+ l; l; l; >$ t+ y% t+ |! i= |! |! u+ u+ i= t+ y% u+ '$ ]$ A+ A+ B+ R, B% B+ A+ K* B+ C+ A+ A+ A+ D+ A+ E+ D+ C+ C+ E+ k= L+ /$ F+ F+ K| /$ Q+ /$ G% T+ V+ f) G% V+ V+ V+ _$ _$ p; _$ +@ _$ _$ @@ +@ Z+ #@ +@ +@ @@ #@ #@ %@ %@ R> w] e] &@ *@ #@ W, `& m, 1$ `& &@ R% 9$ r; * Q% )@ * 8$ '@ R% ~@ T% s= !@ p@ L@ ~# } ] + R@ J$ e^ 5' e^ 5' e^ e^ e^ e^ e^ ], J$ ], e^ 2! g~ ], <{ 2! ^, q, e^ )~ R@ 9| *) `, ], J$ R@ ]& J$ s' ], J$ J$ `, 2^ R@ V! 5' e^ *) )~ V! R@ *) ], ^, b l> E~ p) H! &. &. A@ -. ). ). '. A@ &. ;! A@ 5# F@ &. 6# E@ C$ 2# $> 4# C$ P P C$ V H +% S J @% S o> J S A M I z ", +"# ]& ]& # . 2) # $ & . . ; . ; [* $ & ; . > Z, 5! ] U@ & | ; ; - `@ ! ; ~ ; |* ] > # ^& ~ | ] | | U@ %= 2 ) X@ ] | & U@ Y@ ~ | 2 | [ ~ { { ## ,# } } | { ,# 5 $# b 6 [ $# Y@ d } ]2 I1 #( #( $( $( $( $( #( #( #( #( #( #( #( #( #( ^2 /2 e V$ *= 7 c ~# ~# n (2 $( #( #( _2 `$ s> p Y$ s> |& Z$ :2 {[ #( ][ <2 ^# p % {& b' Z$ Y$ [2 }2 #( #( |2 G z O@ ^# 6_ l( #( m( %| O@ z M A O@ L M 8* A 12 7_ #( #( #( 22 32 J A J L H@ J E$ 42 5[ #( #( 52 7# V O= @. V 4# O= @. E@ G; ,. @. . +. 62 +_ #( #( 72 +. A@ .. =. ;. !. ;. . *. 82 ;} H! 7: 92 02 +_ #( #( #( a2 b2 a: '= 1~ 1~ X) X) L] &% 3~ ~] L] /. +~ Q/ w{ c2 W^ *_ b* d2 e2 #( #( ;_ #( #( f2 g2 I! I! I! 6^ I! 6^ 0, 6^ 6^ =/ %^ j{ j{ j{ H^ H^ T: #( #( ^_ h2 ^] U/ ~1 B1 K! r) 4~ r) B] K! }| F~ F~ F~ V{ V{ C{ C{ G~ G~ l] 7] Z< e/ t^ &^ ~! 8] i2 (} Z< :} 6~ Q( ') 0! ') ,/ A_ ,/ m{ j2 9] ]! 0~ k2 9] 9~ Q] y/ x/ Q] =^ Q] =^ =^ u^ =^ =^ u^ =^ <_ N~ +[ 2{ w[ <] 9) 9) F{ ^' F{ 9) F{ Z{ 9) 9) 9) x[ [] ]~ f; &~ C_ f; 3{ Y{ K^ S] [] S] `^ ~) G{ b) o{ C' C' @{ @{ F1 y^ U] ~) @{ 4{ (~ Z: @{ '^ b] K{ '^ l2 [^ j^ _~ ] j^ ] ] k' _~ _~ ] ] B* _~ _~ s] A^ m2 P} >- d] e~ ,] < g, >- ]) .) #{ u~ ]) u~ ^) >~ i, e= ^) R! e= k; e= ^) G* +) +) e= k! >~ &, /) u] ,- l; P, C) @) ;$ l; |' l; l+ ;$ l+ l; A- ;$ ;$ r+ j+ 2' V; s+ y% V; N> s+ s+ u+ w+ i= m; t+ t+ N> z+ w~ B% B+ B+ B% B+ B+ B% B% A+ B+ B+ o' A+ E+ D+ E+ E+ E+ n2 k= O+ Z; o2 E+ |} S~ Q+ /$ G% V+ V+ T+ f) L| F% Y+ _$ Z+ Y+ Y+ X+ _$ Z+ Z+ _$ p; @@ +@ @@ +@ +@ <- +@ *@ %@ $@ E- I% %@ *@ C^ I% 7$ *@ *@ I% 7$ G- )@ =@ '@ V% O* 4$ 4$ T% U% 9$ ^@ ^@ p2 H j ~ & ]& R@ ], 2^ ], *) `, *) ], e^ e^ e^ 2! J$ V! J$ ], ], J$ J$ ], ]^ R@ R@ ]^ L$ J$ R@ R@ 2^ R@ J$ J$ R@ ]& R@ *) J$ R@ J$ R@ ], )~ R@ R@ ]^ ], R@ V! ], {, g~ W@ -. E~ {. x@ '& ^. w$ &. (. ;. z@ z@ e- =. '. =. A@ ;. &. G@ P .= 5# G@ 4# P Y H P M@ M@ 3; |; J Q@ #= A O@ P@ P@ Q@ q2 ", +"> # # + U@ > > & U@ . . & - > > ; ^ # Z, . > > 5- . }* & ; U@ ) ~ > ; - ; *# %= Z! .# ^ ] ] N$ > ^& r2 X@ ^ N$ 2 ; S$ R$ | }* |* ;# ) ) / | d ,# { 8- D, /& ; Y@ ) 6 : $# d i 6 ( } s2 I1 #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( t2 /2 8 V$ b a *= g s> u2 v2 #( #( w2 x2 L= Z$ L= s> Y$ y2 `$ ~[ {[ #( ][ <2 ^# h /# w `$ p ^# z2 A2 #( #( |2 /# z b' D 6_ S[ #( m( %( #= O@ A 1& O@ J w P@ O@ B2 C2 #( #( 7_ D2 T L T M@ Q T I@ J E2 F2 #( #( G2 7# E@ . X z$ d- L@ L@ 7# )= ,. =. E@ >. H2 #( #( 7_ I2 C@ !. >. ;. .. t( &. )= !. b# b: 9# ;. 9# J2 K2 L2 #( #( M2 N2 {. X) J: '= L] L] D~ D~ &% &% &% 3~ &% w{ W^ w{ W^ w{ O2 P2 #( #( Q2 R2 i[ #( w( S2 I! '! I! I! '! I! I! 1{ =/ 8^ T2 H^ y{ y{ j{ H^ p[ #( #( ^_ U2 !1 w/ A1 N] B] r) h. r) F~ F~ F~ F~ V{ d/ C{ C{ C{ V{ d/ d/ d/ `~ &^ {1 t^ W{ [ o~ ~! u[ z_ f( /_ ~! 0! 0! ,/ m{ M} ,/ I^ ,/ 9] 9~ 9~ 9~ y/ 9~ Q] x/ x/ __ Q] u^ =^ i/ u^ Q] 6< u^ 6< =^ 6< +[ 2{ 9) d; <] 9) d; Z{ 9) F{ Z{ F{ 9) 3{ F{ Z{ 3{ 3{ f; [] Z{ ;] `^ i( `^ 7< H{ S] H{ T] F] F] <^ b) G{ ~) y^ @{ ~) ~) ~) @{ @{ B/ Z: t: y^ {{ c~ k/ S( r{ A) _~ _~ :~ :~ ] :~ k' _~ _~ k' _~ _~ ] ] e~ g, k' w- ,] e~ d] t] < < t] ]) ]) >~ ]) .) >~ ^) u~ >~ >~ >~ ^) k; >~ l^ >~ k; >~ %$ k! /) M{ @! l; V2 ;$ l; l; @) l+ l; /) ;$ l+ l+ l; l; n+ l; l+ A- l+ ;$ t+ |! y% |! ;$ n' t+ u+ u+ s+ t+ o+ '$ u+ N> u+ C+ S, _: A+ A+ B% A+ A+ B+ A+ C+ C+ C+ D% G+ D+ D+ E+ D+ F+ o; Q+ W2 F+ D+ 0> S+ X2 /$ G% R+ R+ T+ Y+ V+ R+ S+ Y+ V+ V& +@ Z+ _$ Z+ Z+ :- +@ +@ +@ #@ @@ %@ #@ &@ #@ 1] c> E- R> &@ > [- Q% &@ p= $@ Q% (@ Y2 (@ -@ '@ /@ O% S% w= '@ )@ V% +* :. K ~# ~ ] R@ ^, i) V! ]^ J$ *) 2^ *) J$ J$ ], ], V! R@ R@ R@ ]^ # R@ R@ J$ ], ]& R@ R@ R@ ], )~ s' R@ {, R@ ]^ J$ ]& R@ ]^ ]^ R@ 2^ 2! g~ J$ ], )~ `@ &. :. O- v@ ^. v@ u@ A@ {. B@ p, &. ). B$ ). z@ )& B$ 5# -. X z@ V X 2# R }; O V J Z +% O +% P@ A Q@ M H E$ A +% ", +"L$ ]& L$ + > $ . ]& # $ T@ ; T@ U$ Q$ & - $ ; > *' > + ; # & - ^ ^& T- ] ] | U@ U@ ; - P$ Q$ S$ U@ ; ] ] ) ( `@ & X@ Z! %= | | ; ~ ) ( *# 2 Y@ $# Y@ ~ 5 ( a 1 [ [ J= Y@ 7 < $# b /& } Z2 I1 #( I1 `2 3 3 3 3 .3 .3 .3 +3 3 3 .3 3 @3 #3 j *= 0 L= c u $3 %3 #( #( &3 *3 a' X$ }& |& s> Y$ E, L= =3 {[ #( ][ -3 p w 1; w D m y ;3 }2 #( #( >3 `$ {& w C m| n| #( m( %| Q@ L O@ x O@ P@ I E$ M ,3 '3 #( #( #( )3 T d- I@ P L 4; O= E$ !3 ~3 #( #( {3 ]3 W W |# P C$ #. O= . d- 5# ^3 E@ /3 (3 #( #( N_ _3 :3 /3 =. $. B$ 6# ;. )& &. *. 9# !. H! 9# 9# <3 [3 w( #( #( }3 '= '= %% a: '= |3 ~] ^^ &% 3~ w{ W^ ^^ w{ 13 w{ W^ w{ 23 33 #( w( 43 53 63 #( #( 73 83 6^ '! 6^ '! I! I! l~ h{ =/ 6^ H^ y{ H^ v/ H^ p[ #( #( ^_ 93 N] A{ U/ A1 /} F~ V{ F~ F~ r) r) F~ r) C{ V{ F~ V{ C{ C{ V{ 03 d/ d/ `~ l] &^ e/ 8] a3 Z< e/ b3 I^ 0! ,/ m{ c3 I^ ,/ m- 0! 0! 0! 9] ]! ]! =] 9~ Q] Q] /] d3 =^ Q] Q] u^ =^ Q] u^ 6< Q] u^ u^ R( +[ a^ ^' d; F{ 9) Z{ F{ F{ F{ F{ F{ Z{ J^ 7< J^ ;] ]~ e! J^ `^ 3{ H{ `^ e3 }_ [_ f3 [] F1 @{ i( F] <^ C' C' @{ ~) y^ h^ y^ @{ @{ C' u: B/ i^ b] q{ Y: [^ 2_ %, Y# g3 k' _~ 2_ _~ :~ ] _~ ] _~ $[ s] m2 A^ X] s] -~ g, d] ]) #{ e~ #{ t] ]) u~ ;~ ]) l' e= i, ^) ^) ^) G* e= G* >~ ^) 6> +) >~ +) }} k! l; l; l; )- l; l+ @) l; ;$ ;$ l; l+ n+ |' l; l+ l; n+ l+ n+ ;$ |! t+ t+ y% C) >$ |! |! u+ u+ i= s+ i= x+ x+ u+ ]$ h3 C+ B+ B+ A+ A+ A+ B+ C+ D+ K* B+ B% A+ A+ D+ E+ D+ F+ D+ O+ O> G+ D+ i3 N+ Q+ /$ G% S+ T+ T+ Y+ f) T+ Y+ _$ Y+ V& @@ +@ Y+ _$ p; +@ +@ @@ +@ +@ @@ #@ %@ %@ &@ *@ !] E- D- *@ &) $@ Q% *@ &@ &@ 1$ I% '@ 7$ Q% j3 ]@ ~@ )@ 6$ (@ T% 9$ R* !. G e ; N$ + @ e^ J$ V! *) ], R@ R@ R@ R@ 9| ], R@ k3 R@ <{ $ J$ + R@ g~ R@ J$ R@ $ . ]& =[ G= R@ R@ R@ R@ R@ R@ R@ ]& R@ R@ R@ R@ R@ J$ J$ + 2^ 2^ . z@ d# ). c# (. '& w$ x@ x@ .. ). =. 5# &. 5# &. A@ +. .= =. +. )= G@ #. H@ 5# G@ X P ` L K@ P@ L@ P@ H$ U M H$ G Q@ +% ", +". # S$ & - Z, & > R- = . . & = ; ] ; . > Q$ O$ + . . & * N$ ; | ~ ; - | ^ %= N$ ; # V@ ~ 2 U$ ^ { > | ## [ ~ 2 %= %= X@ ( X@ D, 1 W@ 1 Y@ [ ) { 1 } b ## } { Y@ 6 3* [{ ## J= $# 6 ## l3 I1 #( d< m3 6 &# / : _ / 9 ~# d } e 6 7 8 $# V$ e j n c n3 #( #( m( o3 n h |& r r L= p a [& p3 {[ #( ][ q3 `$ w l b' 2, p _# z2 r3 #( #( >3 (# Y$ D t m| S[ #( m( s3 A n! ~& z E$ M z A t3 C2 #( #( #( #( h1 u3 T L J P T 7# J T v3 #( #( w3 x3 W G$ ` D$ H@ #. #. E@ F^ .. =. ,. y3 z3 #( #( A3 B3 C@ =. z@ A@ >. 9/ =. e- ]. v{ b: b: 5; b: 9# 7, C3 D3 #( #( E3 J: X) %% %% '= X) &% =2 ^^ (| 3~ w{ ~] W^ F3 w{ w{ G3 H3 #( #( f2 I3 g[ J3 K3 #( #( L3 6^ 6) '! 6^ 8^ 8^ v/ =/ 8^ M3 y{ j{ y{ %^ j{ p[ #( #( X< 93 A{ c/ N3 A1 o[ B{ Z- K! r) h. V{ V{ w/ V{ O3 d/ V{ C{ V{ V{ C{ t[ V{ e/ `~ t^ Q( f( /_ Z< o~ P3 5< m{ Q3 ,/ ,/ m{ ,/ m{ ,/ m{ M} A_ 9~ =] /] R3 3| S3 y/ y/ T3 u^ u^ z/ =] 6< v[ U3 v[ v[ 6< W/ +[ )2 ^' d; F{ ^' F{ 9) 9) d; 9) )2 F{ Z{ :^ Z{ 3{ ;] K^ K^ `^ 3{ K^ `^ ;] y[ H{ j/ `^ G{ @{ i( [_ [_ F1 ~) *+ y^ y^ ~) @{ K{ y^ @{ Z: y^ q{ S( Y/ ~2 [^ A) %, ] _~ %, k' |_ ] k' _~ _~ %, k' k' Y] ] e~ e~ >] V3 e~ d] < .) d] i! .) t] t] >~ t] k^ l^ R! ^) ^) ^) l^ R! e= ^) >~ /) 6> ^) e= ^) >~ ^) @) l+ /) l+ l; @) l; A[ ;$ l; l; @) ;$ @) ;$ ;$ ;$ ;$ y% ;$ |! y% |! |! N> /{ t+ t+ s+ x+ x% ^/ t+ u+ u+ w+ A% B+ B% B- B+ A+ B% B% C+ E+ C+ C+ A+ B+ I+ D+ C+ D+ E+ D+ F+ L+ P> E+ D+ W3 X3 T+ R+ S+ T+ V+ .^ F% Q+ Y+ V+ Z+ _$ V+ m= X+ p; Z+ Z+ Y3 p; @@ +@ #@ m, _$ %@ #@ %@ &@ <~ @^ p' =@ ~; #@ 4$ '; -@ !; 7$ 2$ =@ '@ >@ '@ s= ]@ T% '@ |~ u= ~@ x= 5# ^# 7 2 U@ + . # J$ * J$ % R@ R@ R@ J$ J$ V! ], + . + ]& L$ + R@ <{ ]& J$ R@ . ]& + > ]& R@ R@ 9| J$ ]& R@ R@ + ]& R@ ]^ J$ R@ R@ R@ > F@ (. v@ q@ {* b# %% (. x@ )& ). ). -. &. 5# 5# !. &. 5# B$ E@ V . P G@ P Y T L@ s! Y 2& T 1# Y K@ O@ S @% J @% x ", +"Z, . # + - & = . $ + & . * + > ] & $ # . H= + > . o! - . Q$ + ; > A; & $= %= N$ H= > 2) H= N$ `@ U@ ~ . ^ ~ W@ ~ { | N$ X@ N$ Z! N$ Z3 2 V~ 7- 2 { ~ ) } [ } W@ 2 W@ 2 < 4 $# &# < [{ 9 `3 b} #( $( 4 6 $# b 1 J= &# i i 6- e h j k e :& e 8 ~# n .4 H1 #( #( +4 @4 p n 0 ~# Y$ s> ~# `$ Q{ #4 {[ #( ][ $4 Y$ p m m ^# Z$ s> %4 &4 #( #( *4 w ^# ^# W) +( l( #( m( %( t N P@ O@ I M 3# A =4 #( #( -4 ;4 #( #( >4 Y[ L@ L@ T J G$ L@ U ,4 #( #( 7_ '4 W C$ T 4# E@ X 7# E@ +. .= 5# .. )4 !4 #( #( ~4 ,. 6# ;' +. z$ C@ ;. 6# b: %. ,. 5# 9# ;' 9# b: !. P< x( #( #( {4 J: '& ). u! '= '= /. &% ^^ 3~ w{ f[ 1~ W^ 3~ W^ ]4 ^4 &: #( 7_ /4 (4 _4 :4 <4 #( #( [4 }4 '! I! 8^ 6^ ]} x1 l~ =/ 8^ h{ =/ y{ y{ y{ T: #( #( X< 93 H^ U/ // |4 14 4~ K! K! K! r) V{ V{ w/ d/ F~ F~ V{ V{ V{ V{ d/ W{ d/ e/ >/ t^ t^ Z< 8] o~ &^ i2 P3 I^ 0! 24 ') ,/ ,/ L} ]: m{ m{ 9] 3| ,/ A_ A_ Q] =^ Q] Q] x/ =^ =^ Q] u^ __ u^ =^ 34 34 u^ =^ +[ w^ a^ 44 54 a^ Z{ Z{ 9) 9) J^ F{ !2 J^ F{ Z{ 64 ]~ 3{ s~ [] `^ ^~ ;] ;] 3{ S] x^ [] H{ ~) @{ *+ ~) ~) ~) @; ~) 74 y^ ~) c~ V] t: :! i^ 4{ S( b] u: c~ Z: r{ _~ Y# _~ _~ ] ] :~ ] _~ $[ k' .! s] _~ :~ 84 $[ >] Y] e~ X] i; ,] e~ ]) V3 ]) R! R! .) !^ ^) >~ >~ ^) e= u~ e= >~ >~ e= k! %$ e= e= e= )- .] s{ 6> k! @) v~ s{ @) ;$ l; l+ ;$ l+ U; g+ =, y% ;$ ;$ ;$ ;$ l+ |! y% y% r+ V; t+ s+ s+ u+ u+ m; u+ y% u+ E) A+ B- B+ C+ A+ B% B% A+ B+ B+ C+ C+ C+ A+ C+ C+ C+ D+ >; D% E+ L+ L+ F+ F+ 94 t{ G% /$ f) R+ Q+ V+ Y+ V+ V+ T+ T+ Y+ Z+ Z+ #@ +@ _$ Z+ %@ `; +@ +@ %@ +@ &@ %@ &@ &@ %@ e] E- *@ &@ #@ *@ W, &@ S> '@ >@ *@ (@ 7$ '@ '@ '@ 5$ r= 8$ I- V% 04 E@ N 7 2 > $ > > + S- R@ R@ @ g~ # S- + R@ = + + = + . + . + + # $ - - L$ + # * % > # + S- + J$ Z, + R@ R@ V@ !, R@ J$ + R@ R@ # R x$ <. q@ :. x@ (. (. '& '& *. ;! ;! &. -. ). v{ $% @. @. E@ E@ @. Z $> P F$ T K@ ` ` J T E$ T H P@ S P@ G I$ H$ ", +"]& Q$ & ]& J$ ]& + > * N$ k) + # # ; | & . T@ . > $= > $ H= ; + H= | W@ - ; > - ^& | & & N$ | > N$ |* ; N$ N$ U$ ~ - { X@ X@ 2 | ; N$ | > 1 | &= [ ) < D, { X@ W@ W@ Y@ Y@ { d _ 2* *# [ } a4 b4 #( #( c4 } b j a L= a {# {# 7 e e ~# $# 0 j g 8 8 d4 X} #( #( e4 f4 a' _# r 8 n s> E, i 1, )> #4 {[ #( ][ <2 Y$ w ^# /# #] ^# /# g4 &4 #( #( h4 N m D 2; +( l( #( m( i4 j4 A I I I 8* O@ k4 l4 #( #( m4 n4 5[ #( 7_ I< D$ T H L@ L@ C$ L o4 g} #( #( p4 q4 L@ L@ r4 #. H@ L@ #. 7# X #. ,. s4 #( #( #( t4 =. )= :3 $% &. ;' 6# ;. b: 5; b: v{ ). 6# !. !. 0# u4 v4 #( #( w4 a: '& '& X) x4 D~ w{ ~] ~] ^^ y4 q/ Q/ +: W^ W^ z4 A4 #( #( B4 C4 D4 ]4 E4 F4 1< #( #( G4 H4 I4 M3 6^ J4 =/ s^ 8^ M3 K4 L4 j{ 1{ v/ T: #( #( X< 93 S: -/ A1 N3 14 N] }| r) w/ r) F~ V{ V{ r) C{ V{ 0^ r) M4 >/ >/ t[ d/ `~ e/ t^ N4 &^ O4 o~ Z< `~ Q( I^ L} P4 h/ ]: c3 Q4 R4 S4 m{ ,/ 9] 9~ 9] m{ .[ =] a] r~ Q] =^ .[ =^ =^ u^ 9~ =^ T4 u^ u^ u^ R( o] /1 U4 44 V4 F{ 9) F{ F{ F{ F{ Z{ Z{ J^ F{ Z{ 7< `^ ]~ `^ 3{ s~ ]~ ]~ ^~ S] j/ j/ `^ ~) @{ ~) F] W4 y^ C' @{ F1 @{ @{ @{ `{ q{ y^ Y: y^ Z: r{ t: :/ '^ b] ] ] _~ :~ _~ _~ k' _~ _~ _~ _~ ] ] ] ] e~ X4 $[ Y] N^ e~ i! t] {/ N^ l' .) ]) ,] .) ]) l^ G* >~ L{ ^) i, ^) >~ G* ^) 6> +) ^) e= ^) k! @! |' 5{ s{ l; l; 2' ;$ l; ;$ ;$ l; ;$ ;$ l+ l+ >$ ;$ l+ l; g+ ;$ l+ t+ s+ y% u+ N> y% u+ u+ u+ u+ o+ u+ w+ x+ k, B+ A+ B% A+ C+ B% B+ B+ B+ B+ C+ C+ C+ B+ B+ C+ E+ C+ l= k= /$ X; F+ D+ D+ X3 /$ Q+ Q+ T+ R+ V+ Y+ Z+ Z+ _$ Z+ Z+ _$ _$ W+ @@ _$ Z+ '; @@ @@ #@ #@ &@ *@ &@ %@ *@ %@ *@ !] Q% >@ *@ >@ *@ &@ &@ -@ R% >@ =@ d> R% '@ d> d> T% )@ I- N% _; .= ^# j { }* & & $ = !, + L$ R@ # V@ # & > Q$ ; V@ * & ] U@ . % # & ] ' . > - T@ ]& + > # . + # # !, ]& > # + R@ R@ M$ + 7* = x$ (. s@ u@ B= {. w$ ). {. ). (* =. -. r4 A@ A@ .= >. 5# &. _* V R 4# V H@ J Y C$ L@ L@ Y P@ +% P@ N Q@ M@ Q@ A ", +"* H= & Z, . . R@ $ # ' # + # > ] - ; ]& # V@ ; ; . & & > | ) ~ %= R$ ] ^& U@ ; U$ ; H= ; . N$ - ] & ~ | ~ ; ~ 1 | %= U$ | H= | U$ | ( 4 { ] { { Y@ 2 ] $# d Y@ V$ $# 9 ~ %# Y> [ == 6 Y4 #( #( Z4 `4 : b } a 7 c {# ~# j 6 b ~# ># a V$ :& 5 .5 #( #( {[ J1 7 e ~# e i n^ 1; % ~# |& Y$ #4 {[ #( ][ 61 h h {& D D N N +5 r3 #( #( *4 G z G h 6_ S[ #( m( %| m) K G E K S @5 #5 #( #( $5 %5 e1 &5 #( #( *5 =5 L@ T T I@ L@ 4# -5 ;5 #( #( ._ >5 C$ X @. I@ s! 7# .= . E@ +. ,5 '5 #( #( )5 !5 $% =. 5# z@ >. 7# z@ @. ~( 5; =. +. ;. +. ~5 ;} >. {5 &2 #( #( ]5 b# X) X) /. 1( 0/ D~ ^5 ~] D~ w{ =2 W^ w{ +: F3 /5 w( #( (5 _5 H; _| 2~ x{ :5 <5 w( #( g: [5 t/ 6^ '! 8^ 6^ 6^ 8^ 8^ K4 =/ v/ H^ H^ p[ #( #( ^_ 93 }5 o[ A1 /} }| |5 4~ 15 V: r) F~ K! V{ V{ F~ F~ C{ F~ F~ V{ F~ C{ G~ f( ~! d/ 8] P3 a3 f( z_ a3 h( 25 L} O] o~ m{ L} M} A_ S4 3| ,/ 35 A_ 3| 3| 3| { { Q] Q] Q] u^ u^ u^ =^ =^ 45 T4 6< u^ 6< _/ o] 2{ <] :_ a^ 9) <] Z{ ^' F{ J^ +{ Z{ J^ ;] Z{ J^ ;] ]~ 3{ Y{ ;] 3{ 55 x^ ^~ O~ j/ }_ C' C' C' <^ 65 G{ @{ @{ F1 F] ~) U] @{ @{ h^ b] t: k/ T( y^ 75 b] C/ %, _~ k' _~ `' _~ _~ :~ %, _~ :~ ] ] _~ ] #{ i! _~ <1 >- e~ d] t] 3+ i! .) .) ,] u~ .) ]) u~ e= u~ !^ ^) u~ e= ^) ^) e= e= k! e= e= e= j+ G* 5{ @) v~ u% @) ;$ w% l; l; k! l; l; l; l; l+ G/ =, l+ l+ ;$ n+ l+ =, 1' t+ i= i= '$ t+ s+ t+ j= n/ i= x+ u+ 85 B+ A% E+ k, C+ B+ C+ A+ A+ E+ C+ C+ A+ B+ A+ E+ D+ D+ D% E+ Q+ O+ D+ F+ ^- S~ /$ L+ /$ Q+ V+ V+ Y+ Z+ V+ Y+ Z+ L| _{ _$ W+ +@ _$ :- _$ +@ %@ #@ +@ @@ %@ #@ *@ &@ *@ D- !] $/ &@ 95 *@ *@ =@ I% -@ I% -@ =@ '@ )@ 9$ 0$ (@ >@ -@ N% s= +& E@ p g | ; `@ S$ !, + # + $ ]& !, V@ ] |* S$ > - & 5- . & > | ) ; ^ { - ] O$ Q$ ] & & ^ N$ R$ $= . * ' S$ & 5- & Q$ Q$ ' - # ]& . + R@ S- c{ w$ k> q@ :. {* (. -. d# x@ (* x@ -. 5# .= z@ =. 4- 5# .= z$ B$ H Z S R D$ #. S T H@ L@ H C$ Z J I J A Q@ M@ @% ", +"= > - - Q$ ]& ]& ]& + L$ . * $ . + $ V@ $ $ $= V@ o! . U@ . > P$ ; { ] - > - S$ ] - N$ > > ; & S$ X@ ^ | 2 | - ~ 2 [ 2 ;# 05 X@ 2 N$ | ~ [ ~ 1 { [ ^ ~ { ( / } W@ } d Y@ d a $# 6 7 a5 $( #( I1 b5 d ~# $# 9 a a $# e 8 6 k 0 6 0 c5 ~# d5 I1 #( #( e5 r 0 L= a g ~# c m D p p m f5 {[ #( ][ g5 r K/ p h ^# ^# w h5 }2 #( #( >3 `$ z z ^# +( l( #( m( %( M I A F= i5 P@ j5 m( #( m( k5 Q@ S l5 m5 #( #( g1 n5 L@ Y T E$ P' W o5 W_ #( #( p5 q5 H r5 Y P a* d- C$ )= s5 t5 #( #( #( u5 )= e- ,. T 4- v5 w5 =. ,. x5 9# ,. 9/ 9# =. b: *. 9# y5 7_ #( #( z5 A5 x@ ). 1~ /. a: B5 W^ &% ^^ =2 =2 3~ H! 4] C5 D5 #( #( E5 F5 p^ 7! 5^ G5 s/ H5 I5 #( #( J5 K5 6^ 8^ 8^ 8^ 6^ L5 8^ M5 s^ j{ y{ y{ T: #( #( N5 93 H^ o[ ~1 o[ ^] O5 /} V: K! 0^ r) P5 r) r) F~ C{ F~ t[ F~ V{ d/ V{ G~ t[ t^ Y^ e/ `~ b3 Z< b3 Q5 t^ u[ R5 ]: S5 T5 L} L} ') ,/ ]: A_ c3 A_ .[ 9~ =] U5 =] { 9~ Q] =] 6< Q] __ u^ 6< u^ u^ 6< 6< +[ H| V5 b^ a^ a^ +[ 9) F{ F{ F{ Z{ ;] Z{ Z{ ;] J^ J^ 7< ;] 3{ ;] }_ W5 }_ X5 3{ W5 [_ j/ H{ s~ y^ ~) W4 F] Y5 U] @{ [} b) @{ @{ @{ @{ @{ Z: @{ t: '^ T( T( b] r{ A) k' _~ ] ] :~ _~ _~ _~ :~ ] k' _~ X] s] A^ >] :~ ,] e~ Z5 ,] l' d] #{ ]) ]) u~ u~ ]) ]) R! t] l^ >~ ^) ^) ^) e= ^) e= k; e= e= ^) )- e= &, &, ;$ ;$ l; ;$ |' @) @) /) s{ l; l+ ;$ l; ;$ l+ ;$ |^ l+ ;$ l; h+ s+ t+ y% n' D) '$ s+ y% s+ j= '$ '$ |! E) R, B- B+ B% B% A+ A+ B% D+ A+ D+ C+ C+ E+ C+ E+ C+ D+ ^- E+ O> L+ R+ G+ G+ G+ `5 Y+ /$ Q+ Y+ G% F% F% o2 Z+ V+ Y+ Z+ @@ _$ Z+ p; _$ p; [$ @@ +@ #@ +@ '; #@ %@ #@ *@ ;@ c> $/ *@ D- 7$ >@ ~; '@ >@ e> >@ -@ * >@ )@ w= -@ * Q% T% /@ o@ T `$ 8 ~ | ] & - > - }* . > T@ . > %= | > ; - & H= ! ^ X@ / R$ X@ X@ , ~ : { W@ ~ 2 *# ^ X@ { R$ 2 ; ~ *# ; ) & ; & . & . + > = V@ c t@ x$ w$ k> :. {* ). ,& l> )& &. &. =. V> A@ ). +. B$ 5# ,. @. V E@ ` 2# K@ Y }; Y T P H M P L@ H S #= A 8* I ", +". + & X! = . * + + # > !, & ]& Q$ ; ^& Q$ > # Q$ . S$ > & Q$ + | ) ; O$ ~ ) ~ /& X@ Z! Z! N$ # N$ N$ %= P$ N$ ~ ] ] N$ W@ ~ > 5! U@ ] 7- I= <& $# { ) # Y@ W@ ( 6 /& { | 9 &# 6 d 7 7 7 6 d 6 .6 #( #( +6 @6 5 ,# b 7 *= $# 0 0 #6 $6 %6 7 0 g &6 a| #( #( *6 =6 ~# c h L= 7 _# j s> s> `$ p Z$ M[ -6 #( ][ ;6 D z % o 4* % D %4 }2 #( #( >6 G w b' M 6_ l( #( m( n( c- x A N O ,6 '6 #( #( )6 o} H$ A |# !6 #( #( M_ ~6 T E$ W L >) L@ {6 ]6 #( #( #( ^6 /6 .= W C$ 4) V E@ (6 _6 W_ #( #( :6 <6 z@ A@ $% $% z@ [6 }6 |6 !( ]. %. )& %. %. %. 9# v{ 16 (( #( #( D3 26 %% '= x@ /. ^^ %% J: D~ 4] ^^ =2 ~] w{ Q/ f[ 36 w( #( 46 56 W^ 2~ b* 66 13 D4 '! 76 +_ #( +_ 86 , '! 6^ I! '! I! 8^ =/ M3 j{ y{ H^ T: #( #( X< 93 b/ o[ ~1 ~1 |4 c/ A1 r) F~ r) C1 |5 F~ F~ C{ V{ C{ C{ C{ C{ G~ V{ C{ C{ &^ a3 {1 &^ Z< `~ i2 e/ ): o~ 96 S4 E1 2| ') 0! ,/ A_ ,/ ,/ ,/ A_ 9~ =] =] A_ x/ 9~ =^ =^ =^ =] 9~ u^ =^ __ u^ =^ u^ v[ v[ R( W/ X/ 9) 0] 06 ^' F{ ^' d; J^ 9) F{ Z{ Z{ Z{ J^ 7< 3{ 3{ ]~ C_ 3{ i( 3{ }_ C_ i( j/ K^ S] ~) @{ [_ 74 74 B/ @{ C' @; @{ ~) t: ~) y^ Z: E_ y^ Z: Y/ y^ r{ [^ D' _~ _~ 2_ P} $[ $[ :~ :~ _~ ] ] _~ >] >] e~ e~ m2 -~ N^ e~ d] ]) #{ +! ]) ]) #{ R! ]) t] .) u~ >~ >~ ^) >~ ^) ^) ^) R! e= ,- e= ^) 6> e= >~ @! l; l; ;$ l; l; g+ l+ ;$ ;$ ;$ @) ;$ l+ l+ n+ l+ l+ ;$ -$ l+ n+ =, s+ y% 2' x% y% t+ s+ u+ u+ t+ i= w+ w+ k, B- B% A+ A+ B% E+ A+ E+ D+ A+ A+ D+ E+ G+ E+ B+ D+ E+ D+ D+ Q+ Q+ O> D+ F+ Q^ T+ R+ f) V+ V+ G% G% G% G% Z+ V+ _$ p; p; @@ @@ Z+ _$ _{ +@ @@ #@ +@ &@ +@ #@ &@ m, '; &@ c> e] $@ =@ I% Y& >@ *@ -@ `& 7$ Q% >@ >@ 2$ )@ )@ q= G- (@ -& }; _# F! 5 W@ X@ P$ ) U$ | U@ - > & ; N$ Z! ] ; 2 { ^ ~ /& { | | 2 7- ) } @# ## ) } { 2 4 == < | R$ } /& : ) 2 | ; ^ (& ; ] S$ Q$ & S$ . { a6 j- (. q@ b6 q@ '. (. x@ ). !. A@ b# b# C@ *. z@ B$ E@ G@ )& G@ L@ G! E@ P L@ J E$ A J Y M@ M O N 3# J J A M@ ", +"= * . R$ > + # . & U@ * ^ + > & & T@ }* . S$ ; . . S$ Q$ & T@ ; ; ; ^& V@ ~ 2 4 ^ | | & }* - ; ] ; U@ ; ~ ^ W@ | { [ 2 ] - & & ' /& ## N' d { 1 %# W@ ( 6 a < &# 6 ## c6 } < X$ &# $# &# d6 e6 #( #( f6 g6 h6 i6 a j6 k6 l6 m6 n6 d< o6 7 6 p6 q6 #( #( f6 r6 {# 8 e a L= L= n g l `$ m m L= M[ {[ #( ][ s6 `$ D m p m 4* % t6 }2 #( #( u6 `$ p `$ C v6 S[ #( m( %| M 3# O@ M M w6 #( #( x6 y6 n! 3# b- H z6 A6 #( #( B6 C6 T T T Y T L D6 ;4 #( #( #( E6 F6 G6 H6 I6 J6 K6 L6 7_ #( #( %_ M6 l1 ,. y@ $% 5# N6 O6 #( 7_ q( P6 Q6 R6 S6 )& T6 U6 V6 _< #( #( #( W6 X6 7, Y6 '. J: q/ J: 1~ D~ << /. ~] w{ &% 4] Z6 `6 #( #( 7 w{ W^ +: A} D4 .7 -{ u/ +7 @7 #( #( #7 $7 6) 6^ S{ =/ 8^ 8^ %7 &7 *7 =7 -7 ;7 #( #( >7 ,7 =7 =7 '7 )7 !7 X~ A1 A1 w/ w/ F~ C1 F~ ~7 C{ V{ K! r) C{ C{ `~ C{ d/ t[ >/ W{ Z< &^ f( a3 z_ 8] h( o~ Z< L} A_ S5 0! m{ m{ ,/ m{ m{ ,/ A_ =] .[ Q] 9] ]! =] 9~ Q] =^ =^ 6< u^ =^ __ u^ =^ u^ T4 u^ v[ :] !2 9) +[ I| Z{ Z{ Z{ Z{ Z{ J^ Z{ Z{ J^ 7< C_ J^ e3 C_ 3{ `^ J^ 3{ O! 3{ C_ s~ j/ [] D_ C' ~) D_ [} 74 @{ C' C' J| ~) ~) @{ E_ {7 u: c~ y^ `' @[ q{ S( r{ b] j^ _~ ] j^ P} _~ k' k' ] _~ _~ :~ ] s] s] 84 Z/ _~ V3 d] d] N^ .) {/ ]) ]) l' R! R! t] ]) i, ^) >~ >~ >~ u~ e= e= e= G* u] f+ l^ ,- ^) ^) v~ |' l; k! l; ;$ l; ;$ ;$ ;$ ;$ ;$ n+ l+ ;$ n+ l+ C) l; n+ l+ l+ t+ t+ g= r+ z% t+ t+ t+ x+ x+ t+ u+ w+ i= i= C+ B+ A+ K* A+ A+ A+ A+ A+ C+ C+ E+ E+ D+ E+ E+ G+ E+ n; ]7 ^7 L+ C% W2 W2 |} /7 F% G% Y+ f) V+ f) L| F% L| Z+ Z+ Z+ Z+ W+ W+ Z+ _$ _{ @@ @@ '; &@ #@ +@ +@ *@ &@ &@ >@ > w] I% ~; 4$ *@ >@ S> Q% H- *@ '@ >@ -@ '@ )@ Q% T% (7 T% <. S w o Y@ , ) %= *# *# [ ~ ~ | | ~ { 2 | 2 [ ## ~ ## ( { $# ~ $# [ &# a } a 7 g $# ( a 8 / a } b b 6 } Y@ %# $# } ( ; & Q$ # & ' > { -. (. x$ u$ <. x$ (. {. ^. {. ). (* -. ,& &. !. !. &. -. A@ [; E@ G@ G@ D$ E@ X P H$ H L@ T J 1& A ` A z I K@ I ", +"Q$ $ = . $ + ; . # & ; + - & Q$ # Q$ ] > ]& . # $ > - (& ; & ~ & S$ P$ ; | ] ^ - > | > { (& P$ ; | ; N$ ~ ] U) N$ , V~ - > N$ ) ] 2 ~ d } [ 7 [ 6- | [ a [ V) } } i [ 7 } k < : _7 :7 #( #( #( #( <7 [7 }7 |7 n6 $( #( #( ][ -3 c 6 =6 17 #( #( a| 27 37 37 37 37 27 37 27 37 27 47 l< h Y$ 57 {[ #( ][ 67 n^ _# m @= `$ % Y$ 77 r3 #( #( h4 2; C D 2; +( 87 #( m( %( O@ O@ A O@ 97 g} #( #( 07 %> a7 J P@ H H b7 g} #( #( c7 H H 4# W P T G$ d7 e7 #( #( #( #( H< f7 g7 h7 W_ #( #( #( M_ i7 #. +. .. +. A@ $. ;. O6 #( #( #( #( +_ o_ j7 k7 l7 m7 #( #( #( #( n7 o7 1~ a: >. 9# X) X) %% a: D~ /. /. =% ^^ D~ p7 q7 #( #( r7 s7 +: W^ W^ W^ _| =_ b* A] =_ t7 u7 #( w( v7 I! 6^ [| t/ I! w7 x7 #( #( #( #( #( #( #( #( #( #( #( #( +_ y7 o[ O5 z7 A7 K! B7 F~ 15 P5 V{ t[ d/ d/ d/ d/ V{ V{ C{ d/ &^ W{ G~ G~ [ &^ t^ 8] b3 ]1 /_ G| /_ E1 C7 ,/ L} ,/ m{ 0! A_ m{ y/ /] .[ S3 .[ =] =^ Q] Q] z/ Q] =] Q] =^ u^ u^ u^ Q] v[ u^ :_ w[ )2 +{ !2 D7 J^ Z{ Z{ Z{ Z{ Z{ 9) ]~ 7< F{ Z{ e3 `^ H{ ^~ `^ }_ H{ `^ `^ [} [] j/ K^ i( @{ o{ ~) F1 @{ @{ F1 [} C' @{ y^ y^ ~) (~ :! i^ L^ '^ '^ T( c~ [^ j^ %, ] A) A) _~ ] _~ _~ ] k' _~ ] s] _~ w- e~ ] t] d] {/ g, .) i! +! ]) ]) K> i, t] ]) t] >~ G* G* ^) l^ >~ >~ >~ >~ +) u] %$ ^) k; 6> /) /) l; k! l; g+ $ n+ |' ;$ n+ l+ >$ t+ y% s+ x% s+ s+ o+ N> t+ t+ t+ w+ w+ w+ k, B% B% R, K* A+ K* B+ B+ ]$ C+ E+ D+ E+ E+ E+ E+ D+ ;; D+ F+ k= /$ F+ ^7 `5 C% /$ G% V+ V+ Z+ Z+ p; L| p; _$ Z+ _$ Y+ p; @@ %@ _$ [$ :- p; %@ &@ #@ +@ #@ %@ %@ &@ >@ &@ @^ C! U, >@ >@ &@ I% +^ R% q= > '@ I% N* 1$ Q% I% ~@ ,@ ). J % ~# a ~# ( Y@ 1 1 &# &# Y@ :& : / < $# 8 7 b 6 _ ( &# 7 Q{ j ~# e c K= Q{ X$ !# a e L= 0 V$ *= '# 0 a' ,# b b g *= 7 } } $# *# } ] | ~ ] ~ 4& {* E7 k> x@ (. ~* :. v@ v@ z@ B@ A@ !. A@ ). +. @. *. 5# G@ (* L@ D$ X C$ X L@ @. 2# P Z P@ S S E$ I x N@ Q@ N ", +"# . = = k) Q$ . $ R@ + V@ !, > & . + # & U@ & o! V@ * . + . & > | & ' - . U@ ) - ] & > (& H= U@ ; U$ U$ U$ ' J/ ^ - / X@ ~ 2 { Y@ 2 2 N$ N$ ## : W@ [ ] $# [ 1 4 [ a ( < -# /& } } 8 a ( ># F7 G7 d< #( #( #( #( #( #( #( #( #( #( H[ H7 c O' I7 17 #( #( #( #( #( #( #( #( #( #( #( #( #( J7 _[ c ~# K7 {[ #( ][ L7 Y$ ^# w /# u K/ % l< }2 #( #( >6 /# I ^# t +( S[ #( m( i4 N P@ |# M7 N7 #( #( O7 P7 S P@ J 1& H H Q7 R7 #( #( S7 T7 P@ H |# T E$ L 3; U7 ~3 #( #( #( #( #( #( #( #( #( #( 4: V7 W7 $% .. @. 5# 7# e- +. X7 Y7 +_ #( #( #( #( #( #( #( #( #( #( #( :6 Z7 J: %% '& b# ;} u! |3 0/ J: /. a: ~. =2 ~] 3~ `7 i[ #( w( 8 +: +: +: 3~ W^ .8 5^ =_ {] +8 @8 #8 #( #( ~} $8 6^ 8^ =/ 6^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 o[ }5 b/ N3 V: |5 -8 M4 P5 C{ C{ d/ d/ t[ >/ C{ C{ F~ C{ {1 ;8 Z< >8 b3 ): Q5 ,8 '8 a3 )8 )8 Q4 L} :} I^ L} 0! ,/ m{ ,/ m{ 3| A_ A_ 3| A_ d3 Q] 6< x/ 6< u^ 45 u^ u^ =^ u^ u^ u^ 6< =^ <_ H| 2{ b^ a^ !8 b^ F{ Z{ F{ F{ Z{ F{ Z{ Z{ F{ 9) 9) 3{ ;] [] K^ `^ `^ `^ }_ s~ 3{ ^~ }_ H{ ~) ~) ~) ,^ U] C' G{ ~8 F1 ~) @{ @{ ~) t: u: '^ t: u: b] q{ u: [^ A) _~ _~ _~ _~ _~ ] k' _~ ] ] ] _~ ] _~ -~ 84 ] ]{ e~ e~ e~ .) #{ e~ ,] .) ]) .) u~ .) .) u~ e= >~ l^ >~ L{ >~ ^) >~ ^) u] e= ^) k; k! |' Q, l; /) ;$ ;$ l; n+ ;$ ;$ l; Z] l+ l+ l; ;$ l+ ;$ ;$ l; l+ l; l+ y% y% t+ i= i= t+ s+ i= u+ '$ x+ x+ '$ x+ x+ A+ A+ B% F+ C+ B+ C+ C+ C+ A+ C+ A+ E+ E+ C+ C+ D+ D+ >; F+ F+ /$ S~ W2 G+ {8 Q+ G% F% G% T+ V+ V+ V+ V+ Y+ Y+ Z+ L| _$ +@ @@ Z+ _$ p; #@ &@ &@ #@ #@ <- %@ &@ %@ %@ >@ e] e] %@ &@ %@ Q% r; !; ,~ ]@ 4$ >@ 7$ (@ )@ 95 R% ]@ n, &. }; w /# ~# ~# [& o e *= ~# e 8 g 8 2* e e e b X$ 9- ~# h c h c _# 4* r Z$ t w % m ^# Z$ t ^# `$ o p -) p Y$ 9- o h e V$ c a b i 6 | ## N$ # { $% -& q@ N- u@ B= s@ w@ w$ (. ^. x@ !. 0# &. .= z@ z@ z@ E@ z$ )= 2# .= z$ G@ 2# }; G@ T 4# L }; O J M Q@ z z B #= ", +"+ ; T@ X! # . # = . $ ]& # . > . # $ # # ; > # = ]& . Q$ > ; > ; ^& ] 2 H= # ) X@ ; U$ & & & ; R$ | | ; | ) 2 N$ ^ W@ | | 4 X@ 2 /& [ 6 X@ ( | => / Y@ [ W@ 6- 9 ,# 6 d b d 7 k d 6 ( 8 ]8 ^8 ][ #( #( #( #( #( $( /8 (8 _8 c s> `$ =6 17 #( #( #( #( #( #( #( #( #( #( #( #( #( )[ /2 C; 6 ~[ c} #( ][ q3 h p p 1; b' m G :8 <8 #( #( u6 Y$ w -= 2; [8 }8 #( m( n( A o^ G |8 #( #( '3 18 ~& P@ I K 3& E$ H |# 28 38 #( #( 48 o} L@ L@ r! D$ Q 58 P 68 78 88 #( #( #( #( #( #( 98 t5 08 @. X L) ,. .. e- C@ %. >. $. a8 b8 c8 q1 #( #( #( #( #( #( w( d8 e8 f8 9# 5; q/ %% J: d[ q/ J: 1~ f[ J: 0/ /. /. ^^ g8 h8 #( #( i8 j8 W^ w{ +: W^ W^ +: q^ =_ _4 g{ (4 k8 l[ #( #( >_ t/ 6^ =/ 8^ %8 &8 #( #( #( #( #( #( #( #( #( #( #( #( *8 =8 A{ w/ !1 P5 |5 C1 -8 B] l8 ;/ V{ d/ w/ W: t[ d/ V{ t[ >8 t[ &^ Z< Z< Z< m8 n8 b3 D{ o8 '8 u[ 25 ]: S4 m{ 3| ,/ ,/ A_ ,/ M} S4 p8 ,/ ,/ ,/ 3| =^ Q] =] .[ d3 =^ 6< q8 34 u^ 6< v[ 34 v[ !8 <_ 9) F{ ^1 <} <] Z{ F{ 9) F{ F{ F{ J^ F{ J^ Z{ Z{ J^ 3{ ;] H{ `^ 3{ 3{ 3{ `^ j/ r8 K^ `^ G{ ~) C' j/ G{ y^ @; G{ F] ~) ~) @{ y^ @{ @{ c~ i^ F] D' T( P! r{ [^ 2_ k' ] ] _~ _~ ] _~ k' k' ] ] ] $[ >] A^ :~ _~ Y] i! i! e~ .) g, e~ .) ]) ]) V3 ]) .) ]) >~ >~ ^) e= e= e= e= ^) >~ G* 6> i, ^) k; k; G* @) C) k; ;$ l; @) @) ;$ ;$ ;$ l; l+ l+ ;$ ;$ h+ ;$ l; ;$ l+ l; ;$ y% t+ s+ u+ t+ t+ s+ u+ N> '$ s+ '$ s+ w+ C+ B+ C+ D+ D+ ]$ C+ A+ y+ C+ m; A+ E+ A+ E+ E+ C+ C+ D+ n2 D+ C% o2 `5 W2 W2 G% G% G% Y+ Y+ V+ V+ Z+ Y+ _$ G% _$ _$ #@ #@ +@ p; '; _$ p; @@ %@ #@ #@ %@ %@ %@ *@ %@ &@ =@ [- *@ *@ *@ Q% I% e> )@ M% =@ '@ *@ >@ >@ I% e> -@ |@ A@ P b- D ,> ^# ^# m h p c{ _# ]# m 9- r ^# `$ D y C C D w `$ z G P@ G I x I Q@ A P@ S P@ P@ Q@ S Q@ P@ N G {& w w D D D p m r h e e a [ : { ,= j@ ~* -& x$ E7 t@ 1. x$ x$ x@ '. x@ A@ B$ ). 5# )& E@ E@ *. G@ V E@ }; @. ,= H $> J P 1# H Y M@ 1# S M I A x ", +"= $ 0' + R@ Z, M$ $ $ $ = o! + + ]& . S$ Q$ .( # N$ > . > $ ; > > = - ^ X@ | ^ ~ > ^& | ] H= N$ ; > - & ] ! ] ^ $# W@ ] / { *# | | N$ ~ 6 D, ## } 6 2 J= W@ [ ( { 3* d } ,# 1 ( :& d => 7 6 6 Y> 6 s8 t8 u8 v8 w8 x8 y8 z8 I7 a e *= a h g A8 B8 C8 B8 D8 E8 D8 F8 E8 G8 G8 E8 B8 H8 I8 L= 6* c p J8 K8 L8 M8 Z$ ,> p p ^# ^# #= % N8 O8 P8 m| N % G G ^# Q8 R8 S8 T8 P@ P@ }# U8 V8 S8 W8 M E$ 3# M z M A z I L X8 Y8 Z8 `8 M I@ P I@ @. E^ V O= y@ G$ 9 .9 +9 @9 O_ #9 $9 %9 O= .. . X .. 4# z$ .= $. .. &. F^ Q' ;' 9[ &9 *9 =9 -9 ;9 >9 ,9 '9 )9 d[ Y6 !9 ~9 {9 a: %% B5 7, X) X) ^^ ^5 ^5 ^^ 5& ~] ~] ]9 ^9 ^9 /9 w{ w{ +: =2 W^ W^ w{ Q/ (9 (9 G5 _9 :9 <9 [9 }9 |9 s/ I! 6^ I! 6^ 19 29 39 }9 29 49 59 69 79 89 99 49 09 99 H} o[ 0^ X~ z7 a9 V: P5 W: l8 b9 c9 V{ d/ W: W: C{ C{ >/ d/ t[ Z< >/ `~ t[ |/ `~ G~ 7] d9 a3 h( 25 e9 S4 f9 g9 p8 ,/ A_ ,/ 35 h9 i9 j9 h9 M} i9 x/ =^ __ d3 x/ u^ =^ 6< __ =^ u^ u^ v[ v[ v[ v[ +[ w^ !2 A/ !2 F{ 9) Z{ 9) 1> F{ Z{ <] F{ Z{ J^ k9 7< `^ K^ [] 3{ i( `^ `^ [] }_ [} H{ ,^ G{ ~) [} F] G{ ~) @{ C' ~) y^ ~) @{ ~) y^ u: :/ B/ `' A) l9 A) [^ 2_ ] _~ k' ] k' ] _~ ] ] ] k' _~ ] :~ -~ w- _~ ] ]) d] e~ ,] N^ d] k^ t] ]) u~ t] ]) ]) ^) l^ !^ ^) ^) e= ^) >~ G* ^) u] +) ^) ,- ,- G* /) /) k; l+ ;$ C) l; ;$ ;$ @) l+ l; l+ |^ l; l+ l+ g+ l+ ;$ ;$ n+ y% y% u+ '$ '$ t+ i= s+ o+ u+ t+ w+ w+ w+ A% B+ R, G+ D+ A+ K* B! m9 E+ C+ C+ E+ I+ I+ D% E+ E+ D+ F+ D+ M+ /$ n9 G+ G+ ^7 N+ /$ Y+ Y+ Y+ V+ Z+ T+ f) p; _$ Y+ W+ '; %@ #@ p; p; %@ +@ +@ #@ &@ %@ &@ #@ &@ %@ <~ *@ +^ <- &@ *@ W, (@ e> (@ >@ >@ G- (@ (@ U, =@ >@ o9 b$ ^. C$ P@ P@ P@ P@ ` L@ S +% 1# H@ G A I S H$ M A S H E$ ` U J C$ E$ P C$ L@ }; 7# V F@ %. +. @. 5# .= .= B$ B$ z@ H 2# H@ 2# H ` a- T D Q@ x p r g e 6 6! L@ j@ ~* -& :. d# q@ ;& (. l> !. &. 0# 5# >. z@ ). x@ .. &. z@ )= E@ V L@ L@ T J H 4# Z P@ ` +% M O@ A S K@ b- I ", +"I/ Q$ . Z, p9 $ = = L$ > # & ^ Z, ]& + # + N$ ) N$ Q$ |* - . ; . Q$ Q$ Q$ U$ Z! ] & ] > }* ] | | X@ ; 2 & ^ 2 N$ ~ Y@ / ; < O$ ~ 1 N$ ( ## ] ~ ( *# d d | ] ) X@ } ## 1 T$ { : a ## ( =# 6 [ $# 9 5 / d } == 6 ,# e d &# e o } 7 Q{ V$ r j i e [& Y@ h Y$ o 8 8 L= n c ~# n s> L= X$ u `$ `$ E, Y$ D Y$ t t t h `$ G w {& ^# ^# A F= ^# G I w `$ G F= P@ /# m) %> I A S Q M O@ 1& 3; S |# a- I T Q@ d- Y 4# P@ 4# L@ P@ L@ V d- q9 @. 7# O= T @. @. r9 r9 r4 R .. +. ,. Q' =. =. =. ,= C@ =. )& B$ $. C@ . >. $. b: 9/ *. !. ,. A@ ;. b: &. 9# 82 Y6 q/ %% %% ;} X) X) a: /. %% 1~ 0/ f[ ^^ ^^ 5] W^ w{ W^ w{ W^ W^ =2 (| .8 F3 F3 s9 t9 u/ u9 I! v9 w9 8^ 8^ '! x9 I! 6^ 8^ =/ 8^ =/ 6^ v/ M3 j{ b/ o[ b/ H^ b/ y9 o[ b/ ~1 K! z9 A9 V: || r) || C1 F~ F~ V{ F~ F~ F~ d/ d/ >/ t[ `~ >/ G~ a3 >/ [ &^ [ ): a3 f( Q4 Q4 R4 )8 B9 3| S4 35 ]: 35 C9 h9 S3 S3 3| S3 x/ =] =^ 3| 9~ x/ x/ u^ =^ =^ v[ 6< v[ v[ 6< 6< D9 I| a^ 9) H| b^ Z{ Z{ ^' F{ ^' Z{ Z{ F{ J^ Z{ F{ J^ 3{ Y{ `^ 3{ `^ `^ `^ }_ C_ W4 j/ K^ <^ @{ ~) y^ ~8 E_ @{ y^ @; @{ @{ ~) P! @{ t: Z: h^ u: k' W] Y: b] b] A) _~ ] k' k' ] $[ ] ] ] :~ _~ _~ _~ _~ g, Y] s] d] e~ i! i! ]) ,] E/ .) .) #{ >~ ]) .) l' u~ G* e= e= e= ^) >~ l^ l^ +) M{ >~ +) /) i, H* P, @) k! l+ *, @) l; l+ k! ;$ l+ ;$ l+ l+ ;$ ;$ ;$ l; ;$ ;$ ;$ A- t+ y% t+ >$ '$ s+ t+ t+ w+ o+ u+ w+ )$ x+ B+ B% A+ C+ C+ C+ E+ D+ C+ C+ E+ E+ E+ D+ D% C+ D+ D+ G+ W2 G+ L+ G% D+ G+ D% (- T+ T+ V+ V+ T+ F% G% Y+ Z+ Y+ L| _$ _$ #@ #@ p; <~ <~ %@ +@ #@ %@ %@ %@ &@ %@ <~ %@ &@ C^ $/ > &@ 1$ R% * '@ >@ >@ l, C! -@ [- >@ Q% > +] m@ b# v@ F, x@ d# t@ ^. (. v@ {. :. s@ ). (. >& :. q@ v@ p, v@ 5& {. (. 9& 9& Q- :. <. v@ 8& o@ x$ q@ m@ E9 o@ {* W* -& q@ x$ 1. o@ :. !. v@ ~. F, A@ b# 6# 5# H S M A 2; 1; D P@ h$ f@ j- p@ u@ F9 :. ^. w$ 9& '& '& A@ V> A@ )& ). .= V =. .. 5# V ,. G$ |; S Y E@ P Y H$ Q@ O@ O 8* N@ A N J ", +"R@ . $ + 0' .( # . ]& > = # > > > # > $ - U@ & ' ^& Q$ > $= ; ; S$ S$ ^ ; . 2 ] T@ S$ ~ | H= ; & H= U@ ] ] { { ; ' [ R$ W@ 2 *# ~ G9 } 2 *# 6 } ) 2 W@ } } 1 4 6 7 ) { D, ,# } ( ~ 2 == 6 J= [ $# ( ~# [& d d 7 6 :& g 9 9 ~# 5 r e i 0 e j g c n ~# 8 0 n L= ~# c ^# 2, p ~# c Y$ ^# |& t Y$ n Y$ q t 4* m /# t /# b' 4* /# m A I w G z w I /# K |{ z A H$ c- O@ :* M |# H$ O@ H J L |# T D$ L@ |# |# C$ J L@ 4# P' 58 H I@ O= L r9 ={ r5 H9 R{ )= X X . !& #. >. =. >. z@ +. e- /3 r4 .= $% $. $. 4) 6# &. A@ ;' v{ Y6 b: b: 9# b: Y6 9# H! '= 0/ J: x4 r/ %% X) J: '. y4 ^^ =2 w{ w{ &% +: w{ F3 F3 +: W^ W^ F3 q^ 5^ W^ , I9 S{ 6^ 6^ _9 :9 t/ 8^ 6^ 6^ 6^ =/ =/ =/ L4 J9 K9 j{ j{ o[ j{ H^ b/ }5 b/ o[ X~ B7 z9 |4 /} V{ r) V{ F~ C{ C{ F~ t[ V{ C{ d/ C{ d/ >/ C{ >/ `~ Z< Z< Z< Q5 a3 h( L9 Q5 P3 Q4 L} u[ T5 c3 Q4 M9 c3 M} A_ 3| d3 S3 M} S3 T3 Q] Q] z/ x/ =^ =^ 6< 6< 6< v[ v[ v[ u^ 6< v[ u^ <} 54 Z{ I| N9 J^ F{ F{ Z{ F{ Z{ Z{ F{ ;] F{ C_ 7< W5 O9 3{ `^ 3{ O! ]~ `^ 7< [] j/ K^ [} C' @{ ~) F1 <^ @{ @{ ~) y^ @{ @{ y^ y^ @{ Z: y^ k/ k' |_ Y/ [^ C/ j^ k' _~ ] _~ _~ k' %, ] _~ ] k' _~ :~ ] i! d] Y] X4 i! e~ e~ N^ +! e~ N^ t] ]) >~ R! ]) ]) l^ ^) e= >~ e= G* e= >~ G* G* ,- G* e= k; e= G* |' l; @) 6> ;$ @) l; ;$ l+ ;$ l+ ;$ l+ ;$ n+ l+ l; l; l+ ;$ f= >$ t+ y% '$ l+ >$ t+ s+ '$ u+ s+ w+ u+ w+ x+ z+ A+ w~ C+ A+ A+ E+ E+ F+ D+ D+ E+ D+ F+ C+ D+ E+ D+ F+ G+ G+ G% G% {8 W2 P9 n9 V+ V+ Y+ V+ Y+ V+ F% f) f) Y+ Z+ Y+ &@ +@ @@ @@ p; p; &@ p; &@ %@ +@ &@ %@ &@ +@ &@ &@ %@ > E- *@ >@ ,~ q= '@ >@ > *@ *@ >@ '@ !; *@ Z& '~ & i@ Q9 *& w; (; T* 0$ c$ f$ @* |@ R9 S9 T9 r' l$ w; -* w; ;* 7@ 9@ w; 7@ +] 4@ S9 g$ 0$ 4@ n, R* ,@ U9 V9 w= 0$ W9 {; @* L- f$ v; 4@ 8@ X% 7@ y= S9 r' f@ )* *& q@ 9& &. F, z@ #. $% 6@ n$ l@ l@ {* -& (. u@ '. ). ^. &. e- &. ,= *. .= [, 5# @. .. ,= C$ E@ E@ ` M@ |# P D$ C$ Y ` K@ P@ S K@ M A +% ", +"$ Q$ + + = !, > . $ Q$ V@ # ]& T@ & Q$ H= ^ > H= U@ . > ^& N$ # 5_ N$ P$ Q$ - ] ; T- & | . U@ ~ < N$ S$ N$ N$ ; U@ & ~ N$ ~ | ! 4 | N$ N$ < 2 { 2 > ) ~ W@ ) ) { 4 1 { *# 7 [ ) Y@ J] d == { $# } i a &# i 6 k 6- 7 8 a 6 a X$ V$ 8 c a $# 6 ># L= g g D o n ~# j ~# n h a h Z$ n^ h Y$ n ,# Y$ ;= m 2, n p o 1; D D /# z /# ^# w {& n! C #= z x q w N D |# B M H$ E$ T E$ A I E P@ 1& M Y h] E$ O L L 3) d- s! O= J V }; C$ C$ P P' I@ 7# H 7# H@ J d- C$ . r5 X9 +. +. Y9 @. =. =. $. ;' ,. $. )& =. >. /3 ;. :3 Z9 5; ;. Y6 b: 82 5; b: ;} x@ '& !. A5 `9 X) X) '. X) f[ 0/ L] ~] ~] ~] 3~ W^ +: W^ +: w{ W^ W^ F3 +: +: 66 0 .0 C} +0 @0 6^ #0 .0 >2 T2 8^ T2 6^ =/ T2 $0 %0 K4 K9 b/ y9 &0 S: o[ }5 }5 b/ *0 H^ A9 P5 -8 =0 V: V: -0 15 F| C{ V{ F~ V{ >/ C{ G~ W{ V{ d/ &^ `~ &^ f( f( [ &^ Q( b3 a3 Q5 ;0 ]: L} )8 ,/ m{ 3| 35 R4 ,/ S4 d3 3| i9 35 >0 x/ =^ =^ .[ d3 __ U3 v[ 6< 45 =^ v[ 6< v[ v[ u^ H| +[ b^ A/ +[ a^ J^ F{ Z{ )2 !2 J^ 7< F{ 7< Z{ F{ J^ 3{ 3{ W5 }_ i( 3{ `^ D] 65 j/ K^ <^ ~) @{ C' @{ G{ ~) ~) @{ ~) ~) @{ :/ @{ P! Q) i^ t: Y/ #[ ,0 @[ Z: 2_ _~ _~ k' ] g3 ] _~ ] k' :~ :~ %, _~ _~ '0 D/ w- _~ e~ d] e~ #{ N^ e~ ,] ]) ]) G* ^) t] u~ >~ e= >~ >~ >~ ;~ +) k; >~ e= k! k; ^) %$ %$ ^) f+ /) |' ,- g+ /) ;$ |' l+ l+ g+ ;$ l+ ;$ n+ C) >$ n+ l+ ;$ h+ l; |! t+ y% r+ h+ -; t+ s+ w+ w+ '$ w+ u+ x+ y+ A+ C+ E+ y+ A+ A+ C+ E+ C+ E+ D+ D+ D+ E+ G+ E+ E+ D+ >; ]7 Q+ G% O> F+ F% 94 S~ U& Y+ Z+ F% Y+ f) ,; _{ Y+ _$ Z+ _$ p; p; #@ p; p; p; #@ %@ %@ +@ %@ %@ ~; *@ *@ *@ &@ $@ $/ [- &@ *@ K% *@ 1$ > V, >@ >@ *@ > K% +^ :@ )0 !0 ~0 {0 ]0 ^0 /0 (0 _0 :0 <0 [0 }0 |0 10 20 30 40 50 60 70 80 90 00 a0 b0 c0 d0 e0 f0 g0 h0 i0 j0 k0 l0 m0 n0 o0 G_ Z; p0 q0 r0 s0 t0 u0 S> $@ > G- q= w= 5$ 4' V* z= v0 w0 7@ {* +] h$ =* l@ m@ <. x$ w$ ^. v@ :. ^. %. x@ 5# &. . )& A@ .= ;. 5# z$ E@ C$ T P@ L@ Y H$ H$ M H J O P@ P@ I A M ", +"* * . ' L$ $ + & $ 0' = X! ]& # $ # = Q$ . H= + & ' N$ Q$ H= o! | H= [* - ~ =' ~ . & ] ~ ; ) 4 ~ ~ ; ] ] > & P$ U@ [ W@ ~ H= W@ { ## ; ;# { ] 8- < < [ { 6 ## 1 ) $# ># x0 6 Y@ } } 1 c 6 9 6 i 0 2* 6 [ 0 k 6! n L= a >> ~# 7 0 3* Y> a h 0 e r e 8 c E, n K= r Y$ c n p % }& L= o h r m ^# Y$ r Y$ c h h Z$ 0- m /# D `$ w /# `$ m x )> z z z :# O@ K N M P@ M E$ w A |# L@ w |# M d- 3) E$ I@ C$ Y I@ T J T U 3; L@ C$ E@ T G$ G$ d- H X O= y@ 4# y0 @. n) +. $% $% E@ +. $. /3 $% z@ . ;' L) A@ z0 )& A0 Y6 v{ $. :3 b: Y6 b: Y6 Y6 H! x@ '= J: x4 %% J: J: B0 << ~] << 4] D~ =2 W^ w{ w{ w{ w{ 3~ w{ 3~ W^ +: W^ k~ +8 .8 C0 D0 6^ 6^ E0 F0 G0 J4 =/ H0 [| 6^ =/ 4< =/ =/ S: }5 o[ H^ H^ }5 }5 }5 o[ b/ }5 A9 }5 ~1 a9 I0 l8 P5 r) B7 C{ C{ d/ C{ d/ d/ C{ >/ C{ d/ C{ Z< i2 H~ Z< Q5 a3 J0 Q5 n8 Q4 E1 K0 A_ ]: L0 ]: m{ ,/ m{ ,/ A_ h9 35 M} d3 ,/ S3 =] Q] 3| A_ 45 u^ 6< v[ 6< 6< v[ u^ 6< v[ v[ D9 44 D7 )2 H| N9 /1 9) F{ /1 Z{ Z{ 7< J^ 7< J^ J^ C_ 3{ 3{ ^~ `^ }_ 3{ 3{ s~ K^ }_ S] S] <^ !/ @; @{ @{ @{ U] @{ ~) @{ @{ y^ t: @{ y^ r{ V] y^ r{ M0 y^ Z: N0 D' %, g3 ] ] :~ _~ _~ k' _~ _~ ] ] ] O0 X] -~ ] ]{ t] d] ,] l' i! g, t] .) t] ]) t] ]) R! ^) ^) u~ >~ i, u~ e= >~ ^) e= k! G* e= G* +) u~ }' }' k; l+ ;$ ;$ ;$ ;$ P^ @) Z] l+ l+ l+ h+ t+ n+ l+ l+ l+ ;$ =, t+ s+ s+ r+ u+ t+ t+ s+ t+ t+ s+ u+ !$ w+ w+ x+ A+ K* C+ E+ E+ C+ E+ D+ E+ F+ E+ E+ F+ D+ F+ F+ |} |} F+ k= G% G+ F+ G+ C% G% F% F% Z+ Y+ F% F% f) Z+ V+ Z+ Z+ _$ #@ +@ d^ [$ '; '; %@ %@ #@ &@ &@ #@ %@ %@ %@ *@ Q% $/ 1$ V, >@ 1$ !; !; p= >@ >@ *@ &@ %@ P0 Q0 R0 S0 T0 U0 V0 W0 X0 Y0 Z0 `0 a .a +a T0 @a .a a #a $a %a &a Z0 *a =a -a ;a >a ,a 'a )a !a ~a {a ]a ^a /a (a _a :a . > !, . S$ # + & N$ T@ ]& | - $ . > $ # H= ; ; ] P$ N$ > V@ | ~ | 2 ] | { > ^& ; 2 ^ W@ ~ ; U$ ## ( X@ 1 ) *# 2] N$ . X@ ## ~ ) == d W@ ( W@ } /& 1 } 7 q> } ( } b 6- $# i 0 &# $# } 7 ># ,# e a 6! d W$ r 0- 7 a L= 9 } e ~# e c r n Q{ g ~# c h ~# Y$ p n ~# p ^# m % p n D % n 0- h ^# `$ F= m m Y$ 4* 1; /# M= A m K M O@ F= ~& O@ I S M J z E$ E$ K M M 8* M A |# 3& J d- T C$ U ia L@ 4; C$ 3) O= O= G@ W ={ C$ T 7# W y0 ja r5 y@ 8# F^ G; C@ =. 8# ;' =. $% ,= =. Q' =. ;. :3 ;' /3 9/ Z9 Z9 9# %. b: 9# 9# Y6 b: Y6 '= %% %% X) X) r/ ^5 f[ ^5 ^^ ~] =2 ^^ =2 +: w{ W^ w{ W^ F3 ]4 13 +: F3 (4 +8 =_ ka la S{ 6^ >2 +0 8^ 8^ I! $0 ma I! 6^ =/ L4 L4 %0 j{ }5 o[ }5 na H^ b/ b/ *0 oa pa |4 }| -8 |5 -0 P5 V{ I0 l8 M4 d/ F~ C{ >/ >/ >/ C{ Z< t[ Z< Z< Z< Z< a3 &^ Z< Q5 Q5 Z< ): P3 R4 m{ 0! 0! m{ ,/ A_ ,/ 3| A_ S3 3| ,/ .[ S3 d3 =^ =^ d3 __ Q] =^ =^ 6< u^ =^ =^ u^ R( R( v[ !8 54 a^ qa I| /1 Z{ Z{ J^ J^ F{ F{ 7< J^ 7< C_ 7< `^ ]~ O! `^ `^ `^ 3{ }_ f3 W5 K^ _1 K^ @{ ~) F] @{ @{ (~ @{ @{ ~) ~) y^ y^ @{ @{ :/ '^ B/ @[ @[ y^ t: b] b] :~ ] ] _~ k' ] ] ] k' |_ ] _~ ] ] :~ i! >] _~ ]) e~ d] < k^ e~ e~ ]) ]) t] ]) t] ]) i, ^) ^) ^) ^) ^) ^) >~ e= G* ,- e= e= k; ,- e= ra .] Q, f= l; ;$ ;$ g+ ;$ l+ /) ;$ l; l+ ;$ r+ l+ m+ l+ ;$ n+ l+ r+ t+ s+ '$ w+ '$ '$ >$ s+ x+ '$ '$ x+ x+ v+ x+ A+ A+ A+ A+ E+ E+ C+ A+ A+ C+ E+ G+ G+ D+ D+ F+ >; |} sa k= /$ o2 F+ W2 W2 o2 G% C% f) F% V+ p; L| f) _$ _$ _$ #@ #@ +@ #@ +@ p; %@ %@ #@ &@ %@ %@ *@ %@ &@ &@ &@ 1] E- 1] &@ q' U, *@ D- >@ >@ &@ *@ &@ %@ @@ ta ua va wa xa ya ya za wa Aa Ba Ca Da Ea Fa Ga Ha Ia Ja Ia Ka Ba La Ka Ma Ba Ma Ga Na Na Ha La Ha Oa Ha Pa Qa Qa Ha Ra Sa Ta Ua Va Va Wa Fa Aa Xa Ya Za `a b .b +b #a @b #b $b %b &b *b =b -b 4@ e@ *& u@ a. u@ h# t@ v{ C@ A@ x@ 5# A@ 5# ). &. @. X )= F@ !> 5# T X L@ H J Y J@ Z P@ S J Q@ N= N |; A ", +"L$ J$ ;b [* ]& R@ L$ + - # R@ # ]& ]& 1) [* Q$ !, & V@ + ] . . U@ }* N$ k) ' . & U@ ; Q$ > S$ T- | ; ) 2 N$ ## > X@ N$ X@ .# %= ~ - ! ^ | | / { | *# , ^ ;# /& $# $# { W@ { W@ 1 } { [ { ( / { } $# } < < ( Y> d 3* 0 a a a < J] e &# ~# e a ,# a ~# $# b d 8 g h F! e V- 6 o d _# ;= 2, r |& L= `$ `$ h % Y$ b' F 4* 4* m t ^# Z$ 1; ^# G w w y /# w I ^# t [# w I A I H$ C z I H |# M P@ M 8* J U E$ I@ K) D$ T J C, E$ 4; T G$ L C$ >) r9 O= G$ I@ X R X a* a* . r4 @. r9 G; ,. $% +. )= +. A@ /3 /3 :3 y@ +. ;' ,. &. =. ~( &. ;. 9# Y6 >b 9# b: b: !9 b# J: x@ 0/ J: a: x4 w{ 1~ r/ ^^ a: =2 D~ ~] w{ w{ w{ F3 W^ F3 +: F3 +: +: ,b +8 'b )b C0 'b L5 I4 !b =/ _| =/ ~b =/ 6^ L4 M3 &0 L4 M3 L4 b/ o[ b/ %0 o[ b/ }5 }5 a9 c/ U/ B1 |5 P5 M4 l8 V{ V: F~ C{ d/ d/ C{ t[ d/ d/ `~ >/ >/ Z< &^ Z< &^ I~ z_ Z< n8 n8 Z< ): 2| g9 {b g9 m{ m{ ,/ A_ A_ m{ ,/ y/ 9~ =] .[ d3 3| =] =^ .[ S3 =^ U3 z/ 6< 6< v[ u^ v[ 34 R( 6< H| I| <] a^ 54 )2 Z{ Z{ 7< J^ J^ J^ 7< F{ Z{ Z{ J^ 7< }_ 3{ K^ `^ 3{ }_ 3{ j/ O! `^ j/ [_ @{ y^ J| (~ G{ M^ @; G{ W4 @{ @{ ~) @{ t: t: Z: @{ y^ b] y^ y^ C/ [^ A) ] ] j^ 2_ ] ] ] ] ] ] _~ _~ P} ] )^ X] _~ -~ e~ d] N^ .) #{ d] .) .) ]) k^ t] .) .) e= ^) e= e= e= ^) e= >~ e= M{ e= e= M{ ;$ +) H* S) |^ k; l+ l; l; l+ ;$ l; C) l+ n+ ;$ l; A- l+ ;$ h+ ;$ h+ l+ l+ s+ t+ '$ '$ 8> '$ o+ s+ w+ t+ s+ u+ !$ u+ !$ A+ C+ C+ C+ B! C+ C+ y+ E+ C+ C+ F+ E+ F+ D+ D+ F+ i3 F+ Q+ /$ G% F% ^7 W2 C% F% f) V+ f) T+ Y+ F% _$ p; V+ Z+ +@ R> d^ +@ +@ '; p; '; #@ %@ %@ &@ #@ #@ I% e] >@ 4$ >@ E- E- Q% >@ *@ &@ '@ *@ >@ *@ %@ @@ `; ]b ^b /b (b _b Ia :b .. 5# A@ W> &. 5# $% .= .= 7# V P z$ Z H P D$ H O@ P@ Q@ P@ I I N ~& I ", +"L$ 0' Z, Z, + . ]& L$ (& ' o! . ; & $ > T@ T@ V@ # & > # U@ ] N$ Q$ | H= $ ; ' S$ - > ; | ^ & | ) | N$ | ] S$ P$ | < ;# | ~ ) %= N$ 4 ; ~ I= ( # ~ 2 [ ) ( 6- / < Y@ [ 5 6 7 ) 7 ,# < ) 9 7 ~# &# 0 a '# ( < ~# $# 6 q> 6 e 6 6 ,# 0 7 b L= e 3] c n p {# Y$ 0 2, n h c n g h 0 n^ h h p C; E, Y$ ^# h 5* p `$ N {& b' m ,> #] w D 1; G w 2; w w D Q@ P@ O@ I E$ O@ P@ P@ H M J z P@ M H M@ E$ Q H$ S J J L@ M L@ O= P G$ r! P r9 X @. T 58 . y@ L X +. . +. @. .. 5# W e- ,. +. +. [, R' 6# ;. ;. $% ~( ~( v{ z0 <3 zb t( 6# 5; b# 9# d[ 7, 7, J: b# J: '. X) 7, Ab 7, 1~ y4 W^ f[ =2 W^ w{ 13 +: F3 F3 +: 0 Bb Bb +: F3 Cb Db Eb :5 6^ +0 @0 6^ 8^ 8^ K4 M3 E0 K4 8^ M3 L4 M3 H^ o[ b/ K9 ,2 b/ b/ }5 }5 -8 -8 B1 14 -8 B] F~ F~ W: O3 W: t[ W{ V{ d/ d/ d/ C{ &^ >/ t[ >/ Z< Q5 a3 a3 Q5 a3 Z< Fb a3 f9 {b {b ,/ S5 E1 ,/ S4 A_ ,/ Gb C9 y/ Hb 3| h9 3| .[ x/ __ T3 Q] =^ v[ v[ 34 =^ u^ v[ q8 34 v[ v[ H| 54 V4 +{ I| <_ Z{ ;] Z{ F{ J^ Z{ C_ Z{ C_ 7< C_ 7< 3{ ;] 7< 3{ [] 3{ `^ `^ 3{ T] [_ @{ ~) @{ !/ y^ y^ @{ ~) @{ ~) t: y^ @{ y^ h^ :/ i^ @{ `' C/ :/ :/ [^ t: 2_ _~ j^ k' 2_ _~ _~ 2_ #[ :~ ] k' ] #[ Y] e~ ] X] A^ e~ i! ,] t] d] ]) .) ,] ,] u~ ]) ]) R! ;~ ^) e= e= e= e= G* G* G* ;$ ,- e= G* G* G* .] l+ k! j+ g+ P, ;$ ;$ l+ l+ n+ l+ ;$ ;$ f= l+ n+ h+ l+ ;$ ;$ l+ r+ s+ i= r+ M& t+ s+ s+ '$ s+ x+ '$ !$ !$ '$ H/ B+ A+ C+ E+ E+ F+ E+ E+ C+ D+ E+ E+ W3 C+ D+ D+ Ib W2 F+ /$ /$ G% F% ^7 94 V+ Y+ Z+ Y+ Y+ Y+ V+ f) _$ '; V& _$ :- Jb :- #@ '; p; #@ #@ %@ *@ &@ &@ &@ &@ &@ %@ >@ #@ *@ I% W, >@ I% $@ I% r; *@ #@ #@ +@ %) Kb Lb Mb Aa Ba Nb Ob Pb Qb pb Rb Sb Tb Ub Vb 8b Wb 3b 3b Xb 6b bb pb Tb xa Yb Zb `b c |b |b }b 7b 7b pb pb }b 1b .c +c @c lb #c $c %c %c %c %c lb &c +c db *c =c -c ;c >c ,c 'c `a )c !c ~c .@ T% l$ m$ k@ =& w$ x$ u@ O- ^. ). &. e- &. $% 6# 3^ .= 5# 5# 5# C$ +. D$ Q D$ D$ 2# H 1# L@ H 2& 8* A b- Y G S ", +"$ ; > * ]& . T@ $ ]& ; Q$ = > o! = > + + > ; # Q$ !, ]& * U@ & . & {c . . & ~ N$ ^ ; ^& ^ $ & N$ & S$ /& 2 ' S$ { { | & | ^& ~ | ) { ~ *# | ) 7- ^ [ W@ 2 $# < [ 4 ) Y@ a 6- 9 ,# < ( e 6 7 $# d e i a &# ( 8 a q> 6 7 7 7 ~# k 8 b N' 8 ~# k ,# Y$ c [& L= h `$ Y$ ]c `$ L= n p n Y$ h `$ Q{ ~# D p m % Y$ 4* ^# :# t F= ^# D D ^# C z ^# M z D w G O@ N z P@ Q@ b' M@ M 3& O@ ` O@ z I |# P@ J z K@ L L 2& P' I@ J P 4# G@ L E$ H@ Q' r9 !> y@ @. G; @. Q' E@ ,. +. y0 #. L) L) )= )= $. =. A@ =. 6# >. 6# >. 4- V^ =. ^c A@ 9# Y6 b: 7, 7, Y6 Y6 >b d[ u! L] u! 1~ << r/ f[ X) =2 f[ W^ f[ B0 W^ W^ *_ W^ +: +: Bb F3 W^ +: W^ 13 v9 t9 /c (c I! _c !b :c / t[ C{ Z< d/ }c `~ `~ a3 a3 a3 &^ Q5 Q5 t^ ,8 |c Q5 Q4 S4 f9 3| A_ m{ S4 L} 3| L0 35 35 d3 h9 3| d3 x/ __ __ Q] =^ u^ u^ 6< u^ 6< u^ v[ v[ v[ v[ !8 !8 <] w^ 44 X/ 9) Z{ ^' ^' Z{ 7< J^ /1 J^ J^ 7< C_ `^ `^ 3{ `^ 1c i( `^ }_ 64 i( D_ C' @{ @{ C' y^ @{ ~) @{ ~) @{ @{ y^ @{ y^ B/ y^ '^ @{ L^ c~ 2c S( b] b] j^ :~ _~ _~ _~ _~ :~ _~ :~ _~ ] _~ ] :~ ]{ i! D/ Y] N^ i! i! ]) t] i! < ]) N^ t] i, .) .) R! G* ^) ^) e= >~ %$ G* ^) ^) k; k! ^) ^) e= G* U; ;$ l; l; g+ g+ 6> l; @) ;$ l+ n+ l+ ;$ n+ l+ l+ h+ l+ l+ l; l+ >$ '$ '$ >$ N& i= s+ )$ '$ w+ !$ '$ x+ w+ !$ A% C+ D+ E+ C+ D+ A+ D+ F+ E+ C+ E+ D+ D+ D+ F+ G+ F+ 3c m9 G+ Q+ o2 4c ^7 5c Z+ Y+ Z+ Z+ Z+ Y+ _$ L| Z+ _$ _$ T+ p; [$ W+ &@ @@ p; %@ &@ &@ &@ %@ &@ *@ %@ }$ *@ &@ W, $@ E- >@ *@ l, > 2$ *@ &@ %@ %@ @@ U+ 6c 7c 8c Wa 9c 0c ac bc cc dc ec pb fc `b gc Tb }b Wb 6b hc ic jc `b kc lc mc nc oc mc mc pc pc gc Vb |b |b 1b .c qc rc sc tc %c %c %c %c %c %c %c lb uc vc qb ya wc xc yc zc Ac Bc Cc Dc Ec Fc w= l$ o$ m@ :; `* s@ (. s@ (. F, %. ^. z@ 5# G@ z@ ;. i~ i~ E@ G@ R D$ Y H@ 1# Y M@ Q@ ` S P@ A A I z I P@ ", +". = V@ * ;b = = G= . & Gc - Q$ Z, ]& V@ o! ]& + V@ Q$ ]& > $ ]& . + . N$ & . Q$ S$ *' ; Q$ U@ - ! ~ |* - - Z! ] *# . N$ { ~ ~ & | ) ( ] Y@ X@ ( /& /& d 1 ; ) D, Y@ d 1 $# d d N' 9 } ( $# [ } &# ## a' $# &# $# D, 7 L= [& 0 b 9 V$ a 6 a ,# a e d c g ~# a ~# L= p c L= c s> h 0- Y$ L= Y$ Y$ y2 0 ,> z: c -) n n }& Y$ D 4* D D _# 4* w 2; /# F m 1; 4* 2; w w G I A I M D 8* J I E$ M |# G E$ L@ 3; J U J T Y G$ E$ 3) J I@ 4# V 4# J T H 7# G$ !> @. X z$ W ={ r4 #. ,. E@ 6# E@ C@ .= /3 . C@ W- 5# =. ;' Hc z@ 9# =. A0 t( Y6 Y6 Ic 9# b: 7, b: b: Y6 d[ '& << u! {9 << 0/ a: x4 X) q/ << f[ ~] B0 F3 +: W^ F3 ,b Jc F3 13 F3 F3 W^ #0 D0 Kc )b .0 8^ Lc Mc 8^ 8^ =/ M3 Nc t/ =/ %^ =/ L4 Oc j{ o[ /} M3 o[ ,2 A9 b/ o[ a9 z7 V: -8 a9 Pc Qc M4 M4 I0 Qc F| d/ d/ d/ t[ >/ >/ G~ d/ t[ G~ Z< Z< a3 o8 a3 Q5 P3 d9 Q5 a3 Q5 ]: o8 g9 ]: S4 h9 Rc M} A_ M} d3 A_ M9 A_ h9 x/ =^ d3 x/ u^ u^ _/ u^ =^ =^ v[ 6< v[ 6< 34 <_ <} Sc F{ Tc D7 9) F{ F{ 7< 7< J^ J^ F{ 7< F{ Z{ C_ J^ }_ 3{ `^ `^ T] 1c }_ i( `^ S] ~) ~) @{ C' ~) @{ ~) @{ @{ @{ y^ C' ~) i^ @{ y^ y^ :/ @{ :/ b] 2c Z: C/ b] _~ ] 2_ j^ _~ _~ _~ ] $[ _~ :~ ] _~ s] e~ e~ s] >] i! e~ e~ .) >- >- t] t] t] >~ K> l' ]) >~ e= ^) ^) ^) ^) ^) ^) ^) >~ k; e= e= *; G* &, ;$ /) s{ k! ;$ |' l+ ;$ l+ l+ l+ l+ ;$ n+ ;$ n+ n+ l+ l+ ;$ h+ n' t+ t+ |! r+ s+ y% t+ u+ u+ )$ '$ w+ x+ x+ '$ B+ E+ E+ A+ E+ E+ E+ D+ E+ E+ D+ E+ F+ n2 D+ D+ F+ F+ G+ Uc W2 G% G+ D+ `5 Z+ F% Y+ Z+ V+ Z+ _$ F% L| _{ Z+ _$ _{ +@ #@ +@ _$ '; +@ %@ #@ %@ %@ &@ %@ *@ }$ %@ *@ 4$ V, E- +^ *@ p= >@ -@ *@ &@ *@ %@ +@ ($ Vc Wc Xc Yc Zc `c d .d +d @d #d $d %d `c c Ob &d ab 7b *d *d d `b |b Sb ,d 'd )d sc gb %c !d %c ~d gb %c %c lb {d db ]d ^d /d (d _d :d T@ L$ + + & o! & ]& # V@ . S$ H= ; | ] ; & . ; T@ Q$ 2 ; & ~ - & ~ | ) 2 ] H= &= N$ /& }* 7- 2 2 X@ | 1 ~ ~ | ) N$ { 1 1 2 | ] ) ) | ) { 4 [ ,# $# ( [ b 6 6 2d *# : o 1 7 e $# 7 6! 7 h ( 6- a d ~# a 7 7 a a ~# c 6 a d 0 c a e ~# g e e K= !# % ~# % h p n s> ^# o c ^# p m q `$ w `$ % z m `$ `$ {& `$ N -= :# m % |# C N n! F= ~& o^ I o^ E$ M M P@ N E$ I@ J L t> L@ T M Y |# G$ 0* U L@ d- L@ H E@ 58 3d V 4d +. 5d r4 r9 5d 6# 5# =. +. ,. ,. R' +. e- R' A@ R' :3 v{ =. ;' :3 =. =. b: Y6 6d 9/ b: 5; 9# b: b: X) J: 7d b: H! '= 1( ^5 f[ X) J: f[ Jc ~] W^ +: w{ w{ +: F3 13 w{ *_ W^ F3 +: D4 _9 Q< 8d :4 6^ E0 t/ K4 =/ M3 8^ K4 J9 M3 j{ 9d L4 &0 j{ H^ 0d y9 H^ o[ a9 }5 }5 }5 !1 a9 }5 ad A9 P5 M4 F~ b9 bd cd d/ d/ C{ C{ d/ >/ `~ t[ d/ t[ Z< b3 ): dd &^ Z< Q5 ;0 ed P3 )8 {b M} P3 S4 m{ ,/ M9 fd h9 h9 S3 gd ^: S3 T3 d3 =^ d3 T3 i/ hd <_ u^ v[ 45 45 6< 6< 6< v[ !8 44 +[ D7 ^1 44 /1 !2 J^ 7< 7< F{ 7< 7< 7< J^ 7< J^ 7< }_ `^ K^ 3{ K^ 3{ W5 `^ `^ `^ i( }_ G{ @{ f3 U] ~) y^ y^ @{ ~8 y^ @{ @{ y^ y^ @{ c~ B/ u: S( t: :/ [^ id ] k' ] 2_ P} k' ] ] k' k' ] :~ ] _~ Y] 6+ >- 4/ i! e~ #{ -~ t] e~ e~ N^ ]) .) ^) ]) .) ^) ^) !^ ^) ^) G* u~ k; ^) e= +) 6> ^) v~ k! e= e= g+ l; j+ 6> l; l; l+ l+ l+ ;$ l+ l+ l+ ;$ =, l+ l+ n+ h+ h+ M& x% t+ '$ o+ h+ s+ s+ u+ i= o+ o+ )$ x+ !$ x+ y+ C+ w+ C+ E+ D+ E+ D+ D+ D+ E+ C+ F+ E+ F+ F+ D+ F+ F+ ^- o2 T& F% C% W2 W2 o2 V+ Z+ _$ _$ V+ f) F% _$ p; _{ Z+ p; +@ <~ %@ p; +@ p; :- &@ &@ %@ %@ %@ %@ %@ &@ *@ &@ &@ U, &@ &@ *@ *@ >@ >@ ~; #@ Z+ Vc O> jd kd ld 'a Zb md nd od pd #d qd rd sd td ud ab ic sb *d {* u@ x$ 7; !. !. ). -. !. 4& *. &. . A@ A@ +. @. 5# 1# &' Ld P G@ X J s! Q@ M |; J S S Q@ G ", +"+ = $ $ ; . > . ]& R@ . = > ]& X! o! ; > - - $ ; H= > ^ *' U@ ^ $ . T@ H= Z! # & ; Q$ %= ] 5- ^ ] | | ; | | & N$ ) ] | N$ 2 { < ) U$ ( P$ Z! P$ W@ | H= b{ W@ { ~ ~ Y> d $# < N' '# a B; 2* ( { $# o 4 c b [ e ,# M' K/ d e ~# g a *= 7 L= L= n q> o 7 ,# o c e K= 8 a ~# c L= c{ C; 0- Z$ m |& `$ h r r Y$ ~# D p p r @= D Y$ m F= N G m x 2; `$ C ^# F= G A `$ S O@ I z O@ M U^ M O@ c' P@ 8* ` J o^ P@ J T M@ ` H L@ T L' S I@ G$ C$ O= C$ !> O= q9 W @. E@ G@ . r5 /3 =. $% z$ a* G; /3 =. $% /3 >. $% =. A@ A0 A0 x5 =. /3 >. b: b: b: Y6 b: b: Y6 b: B5 r/ J: '& `9 r/ X) L] ~] r/ =2 L] L] =2 ^^ W^ W^ 3~ F3 W^ w{ w{ W^ +: +: 2~ +: Md Md ka 13 Nd G0 D4 _c K4 ]} L5 Od Nd K4 M3 &0 &0 L4 K9 j{ Pd }5 b/ }5 a9 b/ Qd A9 -8 ad a9 P5 a9 =0 0^ O3 M4 C1 C{ C{ C{ C{ C{ t[ t[ t[ `~ >/ >/ &^ &^ Z< {1 &^ Z< b3 S5 ): '8 S5 Rd M9 Sd ,/ 0! ,/ A_ Td Rc 3| S3 S3 Q] S3 3| 3| 45 45 S3 S3 __ u^ =^ =^ =^ v[ v[ 6< v[ 6< v[ !8 H| 34 F{ <} D7 J^ Z{ 9) Z{ J^ Z{ 7< C_ e3 C_ C_ }_ `^ `^ (! `^ W5 `^ `^ }_ }_ `^ S] j/ <^ F1 [} F] @{ @{ @{ @; @{ @{ y^ @{ @{ @{ !/ t: t: Ud :/ 2c y^ Z: b] b] ] _~ :~ ] :~ k' _~ k' _~ k' ] _~ _~ _~ X] d] 4/ X] i! i! +! .) ,] e~ l' ]) l' i, K> t] u~ ^) >~ ^) e= G* l' k; e= ^) k; k! 0+ ^) G* u% ^) &, '] ;$ k! l; ;$ l+ l+ ;$ ;$ ;$ ;$ l+ l+ l; z- -$ ;$ n+ h+ ;$ s+ t+ t+ '$ n+ M& '$ o+ u+ w+ w+ !$ v+ !$ x+ x+ ]$ E+ C+ C+ C+ D+ E+ E+ D+ F+ F+ F+ F+ F+ W2 F+ F+ E+ n2 W2 ^7 f) o2 F+ Ib 4c T+ Y+ Z+ Y+ f) V+ f) L| L| Z+ Z+ _$ #@ _$ +@ %@ #@ _$ :- &@ %@ *@ %@ &@ %@ *@ *@ &@ *@ *@ R> &@ %@ &@ %@ %@ *@ *@ +@ X+ Vd o' Wd W0 Yb Xd td Yd Zd `d e .e .e rd qd +e @e wc 8b sb 0c #e $e =d %e &e &e nc *e *e =e mc nc rc wd =e -e ,d -e ;e Ad rc =d gb lb >e rc &c &c rc ,e ,d 2b 'e )e !e ~e {e ]e ^e nc /e (e _e :e m, |@ 7@ *& j@ o@ x$ w$ = 5& ,& /* &. &. G@ A@ -. .= .= A@ B$ X 5# C$ 2& P T J@ T ` S Y P@ Q@ 3; Q@ A H S ", +"$= + $ . k) $ # * X! - . ]& k) > ]& U@ . N$ & S$ ; ]& . / H= S$ ^ U@ + ; Z! ] - [* . . S$ ; ~ $# W@ ; W@ ~ ; - - - U$ N$ 2 ) X@ ; } { { ~ [ [ X@ 1 < } ) ; ~ { D, ~ [ [ 6 j 6 $# d : Y@ d 7 a b 0 d &# 6 V$ $# *# ,# n $# ~# 8 i -# g 6 L= L= 3] g {# {# ~# e c 7 Y$ 0 h 8 Y$ h ;= m Z$ s> ,> `$ p G D n m Z$ ^# }& m n^ Z$ % /# z z 2; :# N ^# ^# w /# t I ^# P@ G z O@ N J Y E$ C, S z M / >/ t[ >8 >/ &^ `~ &^ Q5 a3 a3 n8 Q5 S5 |c |c S5 |c c3 c3 7e Sd 35 A_ S3 8e d3 35 /] y/ 3| A_ S3 d3 Q] T3 T3 T3 6< =^ v[ 6< 6< 34 6< 34 v[ V5 34 54 I| b^ H| V4 9e J^ F{ F{ F{ d; )2 Z{ Z{ 7< J^ C_ 7< }_ 3{ K^ J^ 3{ }_ ;] ;] 3{ H{ [_ T] 65 G{ !/ @{ F] E_ @{ @{ y^ y^ y^ F] ~) h^ ~) :! @{ y^ b] F1 u: C/ [^ [^ ] :~ :~ :~ _~ ] k' _~ _~ ] _~ $[ :~ _~ e~ ]{ _~ e~ e~ g, < #{ g, >- t] ]) R! R! t% l' i, ^) ^) %$ e= R! e= G* ^) e= +) G* ^) ^) u% %$ +) /) ;$ n+ j+ ;$ l+ ;$ l; l; ;$ l+ ;$ l+ ;$ ;$ l+ n+ l+ l+ ;$ n+ s+ t+ '$ A- n+ s+ t+ '$ w+ u+ o+ x+ x+ w+ !$ 0e B+ D+ A+ F+ E+ A+ A% E+ >; E+ W2 F+ F+ F+ F+ D+ 94 S~ W2 G+ o2 (- 5c W2 P9 Z+ Y+ Y+ L| F% f) _$ L| L| L| _{ p; _$ #@ #@ +@ m, p; #@ ae %@ &@ %@ S> &@ &@ *@ m, S> &@ W, U, *@ &@ &@ %@ =@ +@ W+ W+ be ce de ee fe ge he Gd ie je ke le me ne oe pe qe re ac &d jc se fe =d nc nc nc nc te ue ve Ad we xe -d we Vb `b ye Ub ,d oc rc ze &c ze &c @c Ae nb ob Be Ce De Ee Fe Ge He Ie Je Ke Le Me Ne Oe @@ n, a@ W* *& m@ -& {. :. w$ /* v@ !. &. x@ ;. 5# E@ )& 5# P X 4# 1# Y H J H 2# O P@ A S A N I H$ I Q ", +"$ = = ]& - . . . . . . - $ ; . # + > ; z] . $ !, ' - Q$ . > ; $ > . T@ ] Q$ ; | | | O$ { Q$ 1 1 | 2 | 5! - ] ) / ~ ## [ { } [ } { < | ## /& *# ~ /& [ 2 } [ / { 6 ,# | } $# 6 } < ) W@ } == } 6 $# 7 k $# a 0 6 a d 0 6 0 0 n L= n a ~# K/ `$ ~# *= g j 8 f 8 e h h s> c ^# p ^# ^# Y$ ^# Y$ % D r h ^# Y$ L= w m /# z 5* A G /# m ^# I /# E; N |# Q@ A M I |# S M |# w H I O P@ T J P L E$ H O= T I@ E$ L@ O= W H I@ D$ n) ja 58 W y@ E@ R y0 4; a* a* +. G; Pe /3 $% ,. ,. /3 .. ;. A@ 6# ;' =. ~( :3 A@ ;. ;} Z9 ~( Ic 82 b: Y6 9# Y6 {9 b: A5 X) q/ b: J: ^5 Qe r/ ^^ Re f[ ~] 3~ 3~ +: w{ +: +: +: 13 13 Se }e }e 13 13 13 t9 [e [e Te :4 :9 Ue Nd $0 / d/ Q5 Q5 >8 a3 Z< &^ a3 )8 b3 d9 |c {b Q4 Ye o8 c3 c3 m{ 3| ]: T3 i9 S3 d3 >0 Ze d3 v[ U3 T3 j9 U3 `e 34 6< 6< v[ 34 V5 f .f 34 Sc Sc )2 +f 54 06 a^ Z{ J^ C_ J^ J^ J^ J^ ;] 9) F{ Z{ 7< 3{ T] `^ }_ `^ }_ }_ y[ K^ [_ T] W4 74 F1 r8 J| F1 @{ ~) @{ E_ @{ !/ y^ 5| y^ S( i^ y^ c~ Z: V] [^ C/ j^ k' k' _~ _~ _~ _~ ] ] ] _~ _~ _~ _~ :~ g, D/ ] e~ e~ e~ i! .) #{ -~ ]) ]) N^ ^) t] V3 i, >~ R! >~ ^) G* K> e= e= ^) %$ u% k; ^) ,- G* k; /) U; U; |' ;$ l; w% l; l+ ;$ g+ n+ ;$ l+ l+ n+ l+ l+ h+ l+ n+ >$ '$ -; s+ J* o+ s+ s+ x+ w+ w+ x+ x+ !$ x+ w+ A+ B+ C+ D+ D+ E+ F+ F+ F+ D+ F+ D+ D+ G+ @f G+ W2 C% W2 W2 o2 /$ ^7 ^7 o2 Z+ Y+ Y+ Y+ F% Z+ _$ F% L| _{ Z+ _$ _$ [$ :- #@ `; '; p; [$ %@ p' &@ %@ +@ &@ &@ &@ >@ D- *@ $/ %@ *@ *@ &@ ~; #@ @@ U+ #f $f %f &f ;c Hd *f =f -f ;f >f ,f 'f )f !f ~f sb {f ]f ^f /f (f {f _f :f oc mc %* X* j- -& ~* a. (. c# <. (. -. =. ^. -. (* W~ A@ e- ,= !> @. G! L@ 4& 1# L@ L@ Y P@ P@ Q@ 8* P@ P@ L@ P@ J ", +"& = ]& = . Q$ ; . . o! = T@ - ]& . ; $ - U@ > . + . > ; V@ & $ > $ S$ & U@ N$ Q$ ] > ; U@ ; ] U@ & & 5- > ; ] | N$ H= | %= ^ X@ [ Y@ ] *> *# Z! %= N$ Z! 1 { %# : } ( [ [ } 7 Y@ V~ e D, $# b Y@ 2 ## &# [ d a $# d } ( 6 2* a a 0 c ,# 6 r e ~# a' a o {# Y$ ]# 8 c e i h &# c {# ^# p p ~# L= p D -) Y$ % % 1; r s> `$ % 6* D ^# m C % /# Z$ ^# /# :# C p ^# G z S I n! P@ J A I M S M w H >) E$ T +% T H 3) O H T L@ E^ r9 W @. V t> V O= n) 4# r9 ja ja bf H9 8# cf y@ r4 a* !& A@ ;. a* =. df )& 5# /3 $% $% A@ A0 /3 ;' z0 v{ ]. ~( ef b: b: Y6 Y6 *. b: B5 J: J: ff x4 r/ 0/ r/ x4 0/ ^5 a: f[ W^ F3 W^ +: F3 +: Md 13 13 }e +: F3 F3 F3 }e [e gf [| t/ 8^ E0 ~b ]} ~b H0 hf L4 %0 L4 if if %0 H^ H^ jf }5 a9 a9 a9 oa oa b/ a9 V: A9 Qd W: =0 6e Qd I0 d/ t[ t[ >/ }c >8 t[ Z< >/ >/ n8 a3 &^ n8 n8 Q5 Q5 P3 P3 n8 Q5 n8 c3 {b o8 c3 Q4 L} A_ K0 Ze Td M9 A_ 35 kf T3 x/ u^ x/ j9 T3 T3 34 v[ u^ T4 .f 34 34 34 34 D9 44 D7 b^ <} Sc ^1 F{ J^ Z{ Z{ J^ 7< J^ J^ 7< 7< J^ J^ 1c }_ 7< }_ 3{ `^ W5 W5 }_ [} j/ [_ S] F1 D_ F] @{ y^ ~) ~) y^ ~) y^ @{ ~) !/ :/ lf y^ mf b] k/ c~ [^ [^ k' :~ $[ g3 :~ :~ _~ k' k' ] k' _~ _~ ] N^ w- ] i! 84 e~ e~ ]) ]) N^ ]) .) .) u~ i, ]) l' u~ >~ l^ e= ^) R! e= ^) ^) +) k! G* G* 0+ G* G* .] Q, H* ,- l+ w% Q, -$ ;$ ;$ ;$ l+ l+ n+ n+ l+ l+ -$ n+ -$ n+ l+ s+ '$ s+ J* ~$ o+ '$ !$ x+ x+ o+ )$ x+ v+ x+ B! C+ C+ D+ C+ D+ C+ E+ D+ F+ F+ D+ D+ F+ W2 W2 W2 G+ G+ W2 /$ G% G% L| f) Z+ ,; p; _$ Y+ Y+ Z+ f) nf _{ '; _$ p; p; :- &@ %@ %@ '; +@ @@ &@ &@ #@ %@ *@ &@ &@ &@ 4$ D- [- !] %@ &@ }$ &@ %@ #@ .@ of pf &b qf rf sf tf uf vf wf le xf yf ^d zf Af Zb Bf Cf {f (f (f Df Ef oc ue kc vd vd vd {f vd vd $e ,e Yb `b Tb Tb Ff Vb Ub ,d Gf nb {d {d Sb Hf 9b Vb If Jf Kf Lf vf Mf Nf Of Pf Qf Rf Sf Tf Uf &@ }@ $* 0@ A= o@ -& q@ w$ ^. d# p, x@ -. A@ !. &. *. &. 8# >. E@ z@ X F@ 4& F@ J L@ P H$ M@ H$ I P@ T 4, S 7* ", +"%= > $ . * & ; $ $= + + + U@ = $= . U@ Q$ > V@ * $ & > Q$ + ^ . Q$ V@ * # P$ S$ P$ .# R$ N$ ~ > > & ; & N$ ] ; | 2 X@ ;# 1 ~ > & | [ ) > { { %= | { [ 2 | < 2 ~ [ -# +# 8 : 1 ## 4 4 6 ,# Y> 6 3* d } 8 } 1 } ,# i ~# b e 6 j k c h 4 a Y$ k 6 6 6! n L= s> h n ~# 2* [& n p X$ e g L= h `$ m s> 4* |& ;= D ^# Y$ N 4* % Y$ _# 2; G 4* z D m /# w F= A z F= E$ Q@ 3; O@ I P@ S O@ O T N@ P@ P@ E$ >) P@ L@ L' T :* T L@ O= O= L@ J L@ Vf T 0* V y@ L G$ y0 . r4 r5 y@ ,. @. @. ,. !& A@ G; a* F^ A0 /3 +. A@ =. /3 )& ;' /3 ~( v{ v{ b: $. 5; b: Y6 H! d[ b: >b X) J: a: J: J: J: J: x4 J: =2 ^5 Re =2 =2 +: W^ F3 +: +: W^ +: F3 +: +: }e [e Wf [e Wf Wf R: [| $0 Xf H0 Yf / d/ t[ d/ >8 >8 >/ Zf a3 o8 Q5 Q5 o8 n8 o8 n8 n8 a3 Q5 Sd M} Sd Ye fd `f Rc g 3| h9 .g S3 h9 M9 3| __ =] =] S3 d3 d3 6< v[ 34 u^ 6< v[ 6< 6< 6< 34 +g @g /1 I| H| ^1 F{ /1 Z{ J^ J^ Z{ Z{ Z{ C_ C_ C_ `^ C_ `^ `^ }_ r8 W5 `^ #g 1c r8 S] [_ W4 F1 f3 F] F] @{ ~) C' @{ @{ @{ @{ t: h^ M^ / y^ t: Z: l/ J| [^ C/ [^ j^ ] _~ :~ _~ ] ] _~ k' _~ k' k' :1 X] e~ e~ :~ X] e~ e~ e~ ]) -~ -~ .) k^ ^) ^) ]) ]) R! e= >~ ./ e= ^) ^) %$ L{ e= %$ k; e= G* G* ^) e= Q, }' 6> )- &, U; l+ l; |' L& ;$ l+ ;$ h+ h+ n+ l+ n+ n+ n+ n+ s+ s+ '$ r+ N& s+ '$ '$ w+ !$ !$ v+ !$ !$ !$ v+ A+ C+ K* D+ E+ E+ E+ F+ E+ F+ D+ F+ E+ G+ W2 W2 F+ W2 G+ $g G% G% G% f) Y+ _$ V& _$ Z+ Z+ ,; p; _$ p; p; _$ <~ '; @@ +@ +@ #@ _$ '; #@ &@ >@ &@ %@ &@ &@ *@ *@ %g 1d m, E- U, >@ <- &@ #@ @@ U& &g *g =g -g ;g >g ,g 'g )g !g 4f ~g {g ]g se se #e ^g ^g /g Cf (f ^f (g _g ub *e we :f ve $e ve $e $e vd X% >* t$ ~* u$ u@ x$ q@ w$ ). x@ &. &. ). $% 4& B$ $% .. X F@ E@ .= P R $> X +% H ` L@ O@ L@ A I Q@ I ", +"= R@ > # = ]& $ S$ ) > = . ] . #^ > # + - & . > ; ] N$ ] { . 2) ] . + S$ ' . Q$ ] - ] ; - N$ ] | ) f] } A; N$ N$ & *# | ~ ; & ] 4 8- | ] ] ; ^& | ~ P$ < *# 7- 7- 2 0 7 2 Y@ ## $# $# : j b ,# d [ 7 Y> Y@ 0 *= n 0 g *= 9 a a ,# L= [{ ,# ~# j ,# ,# 8 bg cg dg eg T1 T1 fg ~# Z$ c p Y$ n y p {# `$ C; n p n n r p h p 2, % r `$ m w z {& ^# G ^# G ^# z N I m) w I 3& A H$ z O@ J >) E$ H T J P@ O@ J L 3& M@ d- L@ G$ Ld T L 0* 4# L@ P' I@ G$ O= W r5 y@ 8# E@ y0 r9 y@ E@ y0 ,. $% #. x5 @. $% A0 a* F; e- =. $. )& ;' =. x5 ;' 82 b: gg 82 9# A5 82 7, d[ X) x4 b# r/ 7, X) r/ Ab Ab ^5 hg ig jg kg lg +: +: y4 +: +: F3 13 +: F3 F3 F3 t9 mg [e }e t/ ng og pg H0 ~b x1 ~b ~b Od &0 H^ qg %0 qg y9 a9 }5 }5 }5 a9 A9 }5 a9 Qd ad A9 cd A9 Qd Qc 03 c9 ad 03 }c }c C{ rg >/ }c J0 a3 >/ >8 a3 a3 a3 n8 a3 n8 a3 n8 n8 n8 n8 Ye Rc Ze sg 7e o8 Ze 35 35 T3 M9 T3 d3 >0 kf T3 __ 45 T3 d3 x/ __ 34 v[ 6< =^ 6< 6< 6< tg 6< <_ Sc b^ )2 44 +{ 7< Z{ 7< 7< C_ 7< 7< J^ 7< 7< 7< e3 e3 3{ H{ W5 }_ `^ }_ `^ K^ W5 S] [] [_ /~ [} [_ [_ @{ C' @{ F] 74 @{ t: t: @{ F_ t: :/ y^ Z: @[ F_ Z: [^ ug j^ k' %, 2_ _~ _~ k' j^ k' :~ k' ] B* B* w- i! .! X] Z/ +! e~ +! -~ e~ l' .) %[ i, u~ .) R! >~ u~ i, e= e= u~ vg k; G* ^) g+ k; e= u% &, +) S) S) f= j+ l+ l+ l+ ;$ ;$ '- l+ l+ l+ g+ l+ n+ n+ n+ ;$ l+ l+ '$ '$ '$ o+ h+ =; s+ '$ '$ x+ i= )$ !$ x+ !$ v+ D+ F+ C+ D+ D+ E+ D+ D+ G+ F+ D+ P& G+ G+ W2 G+ W2 n2 `5 ]7 o2 G% L| f) f) 94 F% _$ _$ _{ _$ _{ p; _$ wg p; _$ p; #@ #@ &@ #@ #@ &@ '; $@ %@ *@ 1] &@ D- *@ &@ ~; p= -@ E- E- &@ #@ &@ %@ X+ $) xg yg Sf zg ve Ag Bg Cg Dg Eg Fg Gg Hg Ig ]g jc Jg Kg #e Lg Lg Mg Ob Ng (g (g Ef _g _g *e *e vd Og Bf Mg zf #e zf *d :g :g fc 7b Pg Ha Xb Qg Rg Sg Tg Ug Vg 1g 2g 1g Wg Xg Yg me 6g Zg pb `g h .h U& n, X% >* j@ ~* {* (. q@ d# x@ ). '. D! 4- B@ &. +. &. .= B$ C$ G@ 4# L@ V ` 4# 2# H P@ D$ P@ L@ E$ %> Q@ A G ", +"p9 ]& $= $ ]& J$ + . = . ]& & Z, .( # # L$ ]& - U@ . Q$ & %= H= ] ' & ~ S$ ; H= T@ # > > > ] ] $= |* ; U@ ; ~ | ' H= P$ H= 4 %= { S$ & ] W@ ) 7- [ ~ ~ N$ /& X@ 4 | / D, <& Y@ &# Y@ Y@ q> / { +h @h #h #h $h %h 6 d } $# 8 $# j 0 ,# g &h *h =h -h ;h L= ~# Y> ~# 6 >h ,h 'h #( #( #( #( #( )h s> 0- |& {# n |& L= `$ m -) c Y$ Q{ Y$ p p p ;= m w 2, % % h 6* D /# }# ^# /# A ^# N /# /# w z 8* E$ N@ I z P@ Y L A E$ O@ J P@ L !h ~h {h ]h ^h ^h /h (h _h :h b A5 '= X) r/ B5 |3 2h 0/ y4 ;1 3h 4h #( (5 5h F3 F3 F3 +: F3 13 F3 +: F3 }e Wf )b 13 6h Wf 8d H0 [e 7h ~b H0 :5 ]} 8h H0 L4 y1 9d &0 x1 S: b/ y9 b/ na 9h b/ A9 a9 A9 A9 A9 a9 a9 Qd Qc t[ rg 0h ah 03 }c d/ C{ t[ t[ >/ >8 >/ >/ >8 &^ Q5 Z< n8 o8 Q5 bh b3 Q5 o8 Ye Sd 35 L0 C9 Td 35 fd Rc 35 Rc M} A_ i9 ch T3 d3 T3 =^ S3 S3 6< =^ =^ 6< u^ v[ 34 34 34 34 34 D9 w^ /1 a^ Sc Z{ J^ 7< 7< Z{ 7< J^ C_ 7< `^ J^ C_ }_ 4| 3{ W5 }_ `^ `^ ;] `^ }_ f3 i( f3 M^ G{ D_ W4 Y5 (~ ~) ~) r8 J| ~) ~) y^ P! @{ u: t: 2c u: u: u: b] b] 2_ ] ] C/ k' :~ :~ k' k' _~ _~ k' X] s] s] -~ D/ 5+ >- N^ e~ >- .) e~ N^ l' t] ,] ./ ]) l' ^) ^) K> ^) ^) K> +) ~^ ./ ^) k; )- G* k; ,- G* H* Q, g+ )- l+ ;$ ;$ |] j+ ;$ l+ l; l+ l+ f= h+ l+ h+ n+ l+ n+ i= w+ '$ '$ =; =$ '$ s+ s+ )$ s+ o+ )$ !$ !$ 9> v+ D+ C+ E+ E+ E+ E+ C+ E+ E+ F+ F+ F+ G+ W2 G+ G+ dh (- 94 G+ C% Q+ (- f) eh R+ T+ Y+ p; _$ f) _{ _{ _$ _$ p; <~ +@ +@ p; %@ #@ %@ <~ %@ %@ &@ &@ %@ > %@ >@ &@ *@ %@ e] $/ v] %@ #@ +@ W+ $) fh gh hh ih $c jh kh lh mh )g nh oh ph qh Ig rh sh sh se th ]g sh ^g sh se {f uh vh %e %e wh xh yh zh Ah ud ud ud Bh Ch 4b Dh 6b Eh Fh Gh Hh Ih Jh Kh Lh 5f 1g 2g Kh Mh Nh Oh Ph Qh Rh _f Sh Th Uh O{ .* |@ .& y; D= q@ k> p2 {. !. /* x@ )& x@ .= -. E@ !. $% .= G@ @. @. V B$ $> E$ +% O K@ Q@ T K@ M S 8* I x ", +"= 0' $ $ $ o! ]& & $ & = = Z, - + X! - & . = . + = T@ N$ Q$ ] ; - > h) & + + # . U@ ^ ^ ^ ; ; [ ; ] ^& ^ 2 ; & H= | P$ & ; | { , ] ~ ^ [ 2 1 ( ~ 1 ~ } Y@ 7- } } a 1 } $# 2 -# Vh #( #( b} Wh &# Y@ 6 ( 2* 7 a i 6 Xh Yh #( #( Zh `h c 0 i h 8 i m( #( #( #( #( #( #( .i g n r L= c{ o n Z$ c{ h % h n^ s> % L= y `$ w 1; m `$ s `$ `$ /# z 2; `$ % A G G m m ^# G z :# M I M O@ P@ O@ L A z I A T +i #( #( #( #( #( #( #( #( #( #( N_ E6 @i #i L@ q9 C$ X9 n) r4 r4 a* !& a* 5d @. G; $i 6# =. R' %i ;' A@ . ;' |h /3 /3 e- $% A0 A0 9# 82 Y6 b: b: 82 >b &i ~( *i B5 r/ J: A5 J: 1( f[ Ab x4 3h 4h #( (5 5h 3~ 13 F3 ,b +: 13 +: F3 F3 }e [e [e Wf =i =i -i ;i >i ,i [e Ue Nd 'i )i H0 L4 L4 L4 L4 M3 %0 ,2 }5 b/ !i ~i a9 a9 a9 a9 Qd Qd A9 a9 {i P5 F~ ]i Qc 0h P5 >/ d/ >/ rg >/ >/ t[ d/ t[ J0 a3 Q5 a3 a3 Q5 n8 o8 S5 P3 n8 Q5 o8 M} g9 p8 Rc M9 Rc M9 h9 h9 y/ A_ 3| M9 S3 T3 x/ Q] __ T3 T4 6< 6< 6< 6< 6< 6< U3 34 Sc v[ .f 44 Sc ^1 Sc ^1 ^1 7< J^ J^ Z{ J^ Z{ C_ e3 }_ J^ }_ 3{ `^ 3{ 3{ 3{ }_ 3{ 7< }_ i( [] 1c [} X5 y) f3 W4 F1 ~) @{ @{ y^ t: @{ O} y^ y^ u: M^ !/ '^ Z: 75 ~2 [^ A) ] ] :~ P} :~ ] _~ ] ] _~ ] ] :~ k' w- w- :~ -~ i! i! i! .) >- i! -~ .) -~ G* +! .) u~ h, ^) ^) %$ G* e= e= u% ^) e= )- G* G* ^i G* e= H* P, l+ j+ l+ l; n+ ;$ n+ n+ ;$ l+ n+ l+ n+ l+ l+ l+ n+ h+ O& /i t+ s+ o+ O& h+ r+ )$ x+ )$ s+ '$ !$ !$ 9> v+ D+ F+ F+ D+ D+ E+ P& (i F+ F+ F+ Ib G+ 4c G+ W2 W2 5c _i W2 F% F% n2 F% f) G% _$ Z+ L| Z+ Z+ p; p; p; _{ p; '; '; +@ _{ +@ %@ %@ '; #@ &@ %@ >@ %@ [- %@ *@ &@ *@ *@ &@ $/ I% *@ %@ #@ @@ ($ :i f si ti ui vi wi U+ r; 6@ X* xi ~> -& u@ q@ (. d# x$ A@ -. -. {. z@ A@ A@ B$ -. $. .= 2# T ` X> Y @% K@ H K@ L@ P@ M@ S K@ P@ A ", +"V@ 0' = Z, X! .( $ o! - $ . > = V@ !, =' Q$ ; # . Z, . H= %= . = ] ]& > ] . . { & N$ ~ U$ ~ ; S$ ~ - |* U@ - *> /& H= P$ X@ > *# W@ ] . ] T- } { { ~ ~ 7- X@ 2 X@ ( d { 1 1 { ## 2 d 6 G9 ,# yi zi #( #( Ai Bi i [{ 1 a 6 ,# Y@ ## Ci $( #( m( Di b [& ~# ~# ,# s8 L[ #( #( H1 Ei .5 Fi Fi Gi !# K/ _# `$ L= n z: p p L= Y$ n^ L= m `$ 2, % C w h t I ^# G 1; w w n^ <, z O@ 4* ~& w `$ M S ^# P@ M N I J M O@ M P@ P@ I L Q c7 #( #( #( #( #( #( #( #( #( #( #( #( #( ._ Hi Ii r9 r9 . r4 .= y0 G; .= E@ O= r5 $% $% =. 5# ~( =. $% R' :3 /3 F^ /3 :3 x5 Ji Ki Ic 9# Y6 9# 82 >b Y6 Y6 ;' ~9 {9 ;1 x4 d[ {9 J: ;1 ~] Li Mi 4h #( (5 Ni Se F3 W^ F3 Bb +: F3 13 #0 13 F3 }e [e [e [e Oi #( #( Pi 8d 7h +8 K4 ng Yf x1 Od 'i x1 Qi Oc Ve S: }5 Ri *0 }5 {i na a9 }5 a9 A9 A9 =0 Qd 0h Si W: {i =0 d/ d/ V{ c9 t[ t[ t[ &^ Z< >/ &^ Q5 Ti a3 Q5 O4 Q5 Ui P3 n8 n8 Vi Td Wi p8 S4 M9 Rc i9 Rc 3| M} Rc 3| >0 S3 T3 j9 u^ 6< d3 U3 6< u^ 6< 34 j9 `e V5 v[ D9 34 !8 H| D9 9e I| I| b^ 7< F{ J^ Z{ 7< F{ J^ C_ C_ C_ 7< J^ 3{ `^ H{ `^ `^ W5 3{ W5 [} [_ H{ i( 65 G{ i( @{ t: F1 @{ @{ @{ y^ y^ t: t: y^ u: 2c k/ :/ [^ u: 2c b] j^ k' k' _~ j^ %, %, ] ] _~ _~ ] _~ _~ _~ X] w- _~ ] #{ i! i! {/ N^ -~ -~ .) t] #{ i, 7+ ]) G* ^) e= ^) G* e= u~ ,- G* G* +) +) G* ,- ,- e= H* ;$ l+ j+ g+ l+ f= l+ l+ ;$ h+ h+ l+ l+ ;$ l+ l+ n+ n+ n+ =$ O& M& '$ s+ =; h+ =; o+ !$ !$ !$ Xi x+ w+ !$ x+ !$ 0e E+ D+ D+ D+ 0e Yi D+ 94 F+ W2 G+ W2 G+ G+ G+ 94 o2 C% G% G% .^ G% F% L| _$ _$ f) @/ L| _$ p; Z+ p; _$ _$ _$ p; [$ +@ #@ #@ '; %@ &@ $@ &@ *@ &@ &@ &@ *@ *@ &@ &@ p= C^ %@ #@ +@ X+ Zi `i j .j +j @j #j me $j >f %j 4i 5i 5i &j Ch *j ic ic rh sh se Lg se sh th ]g se se ]g sh ^g =j ^f -j ;j >j Mf ,j 'j )j !j ~j ~j {j ]j ^j ^j /j (j _j :j * j- m@ ^* :. N- = v@ ~. '. -. A@ &. &. 5# 4& z$ (* +. P L@ P E@ F@ P K@ +% M J@ C$ J@ H K@ P@ S :# ", +"# p9 0' = # = = = . }* . # . > T@ & ]& - = = $ > # . S$ + . > $ + * ] S$ ; =' *' H= | | 7- ] | ' ; ~ ] - & ; ~ ] X@ | 2 ; (& | | ~ } [ 2 W@ { P$ /& ~ X@ /& $# 1 => d } / Y@ 7 ~ 4 D, 8j $( #( $( 9j i &# ,# e 0 D, Y@ G8 >[ #( #( 0j 0} k k e c 7 aj d< #( d< bj @4 ~# L= e n ~# r r Y$ s> r L= n^ n n h Z$ /# cj D w m <, Z$ `$ m @= p ^# Z$ b' w x m w z p y /# G 2; z 1; A A n! N O ` Y E$ L M M@ M J dj #( #( '3 ej ~3 E6 ~3 88 fj gj #( #( #( #( #( F< hj T !> @. r4 G; . r5 r4 $% $% ja a* A0 $% $% =. /3 ;' /3 A@ +. ;' =. t( ;' df &i /3 b: b: Y6 9# Y6 82 ^5 Y6 A5 82 << ^5 2h << J: x4 =2 ij 4h #( (5 5h +: 13 W^ F3 W^ 13 }e 13 mg F3 Cb mg }e [e }e Oi #( #( jj 1e kj ng >2 [| +8 ma lj &0 ng mj %0 ,2 a9 }5 H^ ,2 }5 }5 Qd Qd Qd Qd Qd w/ B7 A9 nj Qc c9 rg }c W: >/ 03 c9 >/ oj d/ >8 &^ >/ Q5 n8 a3 n8 Q5 a3 Ye o8 P3 n8 Zf Ye Rd ]: n8 Ye R4 R4 Rc 35 S3 M9 8e 8e d3 ch j9 d3 d3 __ >0 d3 v[ U3 `e v[ V5 34 6< 6< 6< 34 34 +[ 44 /1 J^ <} .f F{ 7< 7< Z{ J^ J^ Z{ 7< 7< C_ e3 e3 W5 }_ `^ f3 `^ K^ }_ 1c e3 T] W4 [_ [_ W4 F] W4 ~8 F] @{ ~) @{ y^ y^ y^ Ud t: y^ S( J| y^ b] S( V] [^ [^ _~ _~ _~ ] ] k' :~ _~ _~ _~ _~ ] ] ]{ d= >] w- m2 X] e~ i! e~ .) N^ i! < ]) #{ .) e= .) i, e= e= ^) e= e= u~ e= G* ^) ,- G* e= ^) G* G* %$ )- l+ ;$ )- ;$ w% g+ h+ ;$ l+ l+ n+ h+ n+ n+ h+ n+ n+ O& n+ *$ h+ o+ '$ '$ m+ pj )$ o+ x+ x+ !$ !$ !$ !$ !$ !$ 0e D+ F+ F+ D+ D+ (i D+ D+ Ib G+ G+ E+ F+ W2 G+ 4c 5c 4c ^7 G% Y+ f) L| L| _$ Z+ _{ Z+ _$ _$ p; _$ p; p; p; '; '; Y3 _$ #@ #@ %@ %@ &@ > &@ *@ &@ %@ >@ V, *@ %@ %@ > c> qj +@ [$ V& 6c rj 6j pc sj tj [j uj vj wj xj yj 5i 5i zj Ig *j jc &d sh sh sh ^g Aj Kg #e #e /g /g /g se Kg /g 7i {f {f Bj Cj :b Dj ,f Ej Fj Gj (j (j ]j (j (j (j (j 4f )j Hj Ij Jj Kj Lj Oh Mj |i ]e Nj Oj Pj Qj ta )@ f$ d@ d@ j@ d# d# = (. ,& x@ F, A@ '. B@ 5# !. R $> 5# ;. 5# H@ V G@ C$ L@ H T P@ 1& K@ m) J M@ P I G ", +". + 0' = + + 0' * ]& = & ; S$ J$ + * $ - = ]& T@ . . Q$ N$ - - & ] R$ 0' ~ Q$ U@ H= Q$ > ] S$ ~ U@ [ > ^ R$ ~ 5- ; N$ ) - ^ X@ %= ; ; X@ 2 { | | ) | 2 { 2 | 8- } 5 Y@ 1 } $# 9 } ,# 6- | 4 Rj Sj #( #( Tj Uj J= Vj a U- [ e %< #( #( -6 Wj e n C; 8 7 {# Xj $( #( Yj Zj ~# 7 e c h n m 2, r c L= c a -) Z$ p n t p 1; % 1; 4* ;) p t w G A % /# w C ^# N /# /# ^# %> I A I I A A E@ +. a* H9 &k r9 L) =. 5d y0 e- $% >. =. =. /3 A@ ~( /3 $. /3 9# Z9 =. $. $. 5; p/ 9# gg b: >b 0/ b: Y6 82 J: X) x4 x4 r/ x4 ^5 ij *k #( (5 Ni =2 W^ W^ W^ +: 13 13 F3 F3 13 13 }e 13 13 [e =k #( #( jj E0 -k |e =/ =/ H0 hf E0 M3 M3 Od !i ;k ~i }5 b/ >k }5 }5 }5 A9 {i A9 Qd Qd Qd {i {i 0h ,k }c c9 }c }c >8 >8 >8 >8 'k J0 a3 >8 J0 n8 >8 n8 o8 Q5 Z< o8 n8 o8 Ye Zf )k C9 `f Ye M} 3| S3 3| M9 Rc Rc 8e j9 .g 35 d3 d3 45 j9 T3 34 34 34 .f v[ .f 34 V5 34 !k V5 ~k Tc {k 9e D9 <} J^ J^ J^ 7< ]k 7< 7< /1 e3 3{ C_ J^ `^ W5 3{ T] }_ T] `^ }_ W5 W5 j/ ^k j/ W4 F] W4 G{ 74 y^ ~) @{ y^ h^ y^ t: y^ @{ c~ u: B/ 2c [^ L^ u: [^ C/ /k k' _~ _~ ] :~ ] %, k' ] k' k' s] s] s] g, X] _~ w- e~ d] +! ]) i! d] ]) ]) .) e= l' l' G* e= G* e= e= K> e= G* >~ %$ ^) ;~ e= G* %$ G* f= n+ ;$ u% n+ Z] n+ l+ ;$ ;$ z- n+ n+ h+ l+ m+ n+ h+ k+ n+ n+ M& =; )$ )$ M& (k '$ o+ '$ x+ x+ s+ )$ v+ 9> v+ 0e D+ E+ E+ G+ D+ F+ F+ F+ Ib G+ G+ G+ Ib W2 W2 G+ W2 G+ (- o2 G% 8| F% V+ Z+ Y+ p; p; Z+ _$ p; p; p; <~ p; <~ '; _$ p; &@ &@ %@ <~ #@ &@ &@ &@ *@ &@ *@ 7$ %@ m, *@ >@ *@ 1] #@ W+ U+ of _k :k f ak bk ck ]j (j _j dk (j (j _j ]j oe ek fk gk hk ik jk kk ]j lk mk we %b nk 6c .* X% d@ :; ~* a. u@ s@ h# (. d# x@ !. A@ v{ p, >. e- .= +. =. +. @. E@ C$ 2# 1# G@ 1# J S }; A S z |; I N@ ", +"V@ T@ (& & |* & * $ $ & $ ; V@ + ]& + Q$ L$ * Q$ o! & Q$ V@ & H= & H= ; & + ~ > | | & . N$ H= N$ U@ N$ ~ ; > | N$ [ ; | & T@ ; P$ N$ ; 5 { X@ < | U@ ~ ~ { | V~ 1 { 2 %# / } Y@ [ d ,# 9 Y> { c5 ok d< #( #( pk $# 3* k 7 ># qk rk #( #( sk ~# i K/ 0 e c e tk #( #( uk r c g h ~# h s> c s> ]# e K/ n L= |& ^# vk s> t p % Z$ % ;= {& <, D z m s> w w w w E; A D % F= G w 8* G w J P@ O@ S Q@ 8* 7* M J Q x E$ L `j #( #( wk xk T G$ P' H L 4# C$ P yk f7 #( #( #( zk Ak C$ O= 4# r4 X9 r9 Bk ,. r4 G; ,. /3 =. =. =. =. 9/ ~( ~( Ji v{ >. =. /3 c[ ;' 9# Y6 Y6 Ck 82 Y6 Dk Y6 82 82 1( ;1 r/ ff J: J: f[ Ek 4h #( (5 Fk =2 =2 W^ +: +: W^ +: F3 Jc Gk 13 }e 13 13 [e Oi #( #( Hk / J0 Pk a3 Q5 >8 Q5 ;8 n8 n8 a3 o8 o8 o8 o8 n8 C9 Qk o8 R4 o8 `f Rc M9 m{ M9 Ze .g Rc A_ M9 h9 d3 T3 d3 __ gd T4 V5 V5 v[ 34 v[ .f !k .f .f .f V5 44 Rk 9e +g 44 !2 C_ F{ F{ J^ Z{ 7< J^ 7< C_ J^ e3 3{ 3{ 3{ [] `^ W5 }_ }_ T] `^ K^ W4 K^ X5 j/ F1 [} r8 ~) ~) ~) ~) @{ y^ C' y^ q{ u: @[ @{ t: [^ 2c M^ [^ b] [^ ] :~ %, _~ :~ _~ _~ k' k' _~ k' s] c] m2 e~ e~ ] _~ i! g, -~ .) #{ i! ]) ]) .) i, .) .) u~ ^) 0+ e= e= K> K> %$ %$ G* ^) ,- G* %$ 0+ e= ,- l+ ;$ f= l+ g+ l+ l+ l+ ;$ w% m+ l+ n+ l+ k+ h+ h+ h+ m+ h+ h+ h+ s+ )$ )$ F' )$ )$ o+ w+ u+ x+ 8> 9> !$ v+ 9> F+ D+ E+ F+ F+ W2 F+ (i D+ F+ G+ F+ F+ W2 G+ W2 G+ ^7 Sk 4c ^7 F% F% f) Z+ _$ _$ Y+ Z+ '; _$ _$ '; '; '; <~ _$ +@ _$ #@ &@ %@ <~ '; V, &@ %@ &@ > > p' #@ ;@ *@ >@ ;@ 6/ f~ +@ U+ P+ Tk Uk Vk Wk Xk 4f ri Vg Yk Zk `k 5k 4i 4i Xb l *j &d Jg sh sh Lg se th #e .l {f {f {f ^d {f /g =j #e se /g ^d +l @l #l hi pe $l (j dk ii _j dk %l 'f &l *l =l -l ;l >l ,l jk 'l )l !l ~l {l 9g ]l ^l &@ 4@ 7@ A= -& o@ _. {* ^. (. /. /* &. A@ 5# &. 6# $% 5# /l $% z$ X K@ L@ L@ P X E$ P@ A J J P@ P@ S A N@ ", +"R@ ]& - # ; # . + o! # - T@ $ o! = - Q$ 0' . . $ + Q$ ; ] . > $ U@ U$ # k) T@ & ^ N$ T@ H= H= > ; 8- | ] - X@ ^& ) | H= & > X@ 2 1 ; [ ~ 2 ) W@ { ) d 4 | | 8- { ~ D, &# d d [ 6 d 6 Y@ 1 e (l _l #( #( :l ~# r ,> m c |l 1l 2l 3l 4l m s> `$ b' % 4* D G `$ C Y$ /# G T8 5l 6l h| X[ N= w z I w K M A H$ N P@ J J E$ O@ E$ |# J I E$ J `j #( #( wk 7l J 4# C$ S G$ L@ E^ V O= 8l 9l #( #( #( 0l I@ O= y@ @. 8# Q' .= ,. =. $% al bl cl !( dl g_ ;' ;. ~( ,. /3 6# >. z0 A0 Ki 9/ b: b: Y6 el fl gl hl il jl r/ r/ r/ r/ Y6 L] ;1 ij 4h #( (5 kl W^ =2 =2 F3 F3 F3 +: F3 13 }e }e }e }e 13 :4 Oi #( #( jj ~b ll Nd =/ ml K4 ~b 8h hf %0 ng ;k nl ol pl ql rl ql sl A9 a9 tl Pd Qd A9 A9 0h Pc I0 Lk ul oj vl oj ul }c wl xl yl zl Al Q5 >8 Pk n8 Q5 >8 Ye Q5 Q5 o8 d9 n8 Vi n8 o8 K0 fd Bl Rc M9 Rc 8e c3 M} 8e Cl T3 i9 T3 S3 x/ u^ Dl d3 j9 U3 45 6< v[ El 34 34 .f .f 34 .f I| 9e ]k +{ 34 )2 7< J^ 7< J^ 7< C_ J^ C_ J^ 7< 3{ `^ `^ T] W5 `^ }_ 3{ W5 W5 }_ j/ 1c [} ~) y^ F1 r8 Y5 E_ y^ 74 y^ y^ @{ y^ @{ y^ :/ @{ Ud 2c @[ k/ u: [^ b] k' ] ] ] _~ _~ _~ ] _~ _~ _~ _~ ] _~ X] e~ ] ] -~ i! i! k^ .) g, #{ .) l' +! i, .) l' K> G* e= ^) e= K> G* G* ./ G* +) G* ^) u% )- k; Q, Q, H* *$ ;$ l+ n+ n+ h+ l+ n+ l+ l+ -$ l+ h+ m+ n+ l+ k+ =; o+ s+ '$ o+ o+ 8> )$ )$ x+ x+ Yi )$ Xi Fl Gl v: E+ E+ F+ D+ F+ n; E+ n; F+ D+ F+ G+ G+ sa G+ G+ 4c ^7 ^7 $g F% G% f) f) _{ _{ _{ p; _$ Hl _$ _$ _{ _{ _{ L| '; p; <~ #@ #@ #@ '; <~ %@ *@ &@ *@ v] &@ %@ #@ :- *@ #@ %@ B[ B[ M* Il .@ yg Jl Kl Ll Ml $j Nl bc Ol Pl sh Ql Rl 4i oh 6b ph l Ig Ig sh sh sh Kg sh 7i (f {f ^d {f .l Sl Kg sh sh 7i Cf ac Tl Ul Vl &l 4j hi )l [j _j _j _j _j 3g Wl Xl Yl Zl `l m .m Yg 'f je +m gb @m #m $m *@ 4@ $& e@ :; l@ N- -& d# {. >& >& u@ x@ $% z@ &. A$ 5# z@ E@ X T $> H G@ 7# T O= H@ A P@ E$ M q! P@ +% J ", +"R@ # $ ]& > . . + Z, . 1* ; T@ * ]& * R- ]& ; . Q$ = & - & . ^ ; . > Q$ N$ | . ' P$ & P$ P$ H= ; X@ H= ] - ## ] *# X@ ; N$ Q$ N$ 2 N$ X@ ~ { W@ / [ ) 2 / ~ ~ { X@ N$ X@ ( / ~ 4 6 } 6 Y@ %m => 1 [ &m H[ #( #( *m ( 7 d =m b} #( #( -m L= ~# a 8 a ;m >m ,m 'm #( #( )m !m ~m {m ,m ]m s> ~# 0- g K/ C; ]m ^m Yj H[ m( /m (m _m :m ]) ]) d+ G* ^) ^) K> i, %$ e= e= 0+ K& K> G* u% G* %$ S) Q, h, l+ ;$ l+ l+ ;$ n+ n+ l+ m+ h+ h+ ;$ l+ l+ h+ l+ m+ M& M& o+ '$ )$ 9> !$ 8> v+ 9> !$ )$ 8> v+ 9> v+ (i E+ G+ D+ D+ G+ G+ D+ F+ 4c G+ F+ G+ W2 Uc F+ W2 ^7 P9 W2 F% L| f) L| L| f) _{ _$ _$ Z+ Z+ L| _$ _{ p; _$ nf Z+ Z+ #@ %@ %@ <- <~ %@ '; *@ D- *@ S> &@ &@ &@ &@ %@ R> +^ @^ X+ X2 .n +n @n #n $n ^e %n &n *n =n -n ;n oh Rl 5i 5i 5k >n 7k 7k Ig &d Ig jc ]g ]g ^g ^g 7i 7i se #e jc sh sh ^g se Sl ]f wc ,n 'n )n &n ]j ii [j _j _j hi _j !n ~n {n ]n ^n /n Hj Nh (n _n Eg ^e ti `g :n ; . = ; > ]& $ > & $ # T@ + > . = X@ ] S$ . | & $ ; . Z! & %= ; ~ ( & %= & ; | %= { ; ; ~ ~ ~ ) ) [ ~ ~ ; { Z! Z! ; 2 X@ N$ 2 ( 1 ) } 6 a / 4 2 a }n #( #( |n 1n } 2n 3n #( #( X} 4n a e 6 M' j 5n #( #( #( #( #( #( #( #( #( #( 6n j g h Y$ 7n e5 |n #( #( #( #( #( #( #( ][ 8n 9n Z$ m 0n `$ x /# an bn #( #( #( #( #( #( #( cn dn L/ E$ I /# G w z ~& :* J E$ J Q@ |; H %> A M@ +i #( #( 5m 6m L J 4# I@ L@ L@ 0* d- 2# V X en #( #( W_ fn r9 . ={ .= H9 r5 L) gn O< #( #( #( #( #( #( #( i_ hn 9[ A0 A@ $. =. |h ~( in jn kn #( #( #( #( #( #( #( #( &: ln x4 mn r/ r/ nn *k #( (5 Ni B0 Bb B0 F3 F3 on pn h8 #( #( qn rn sn tn #( #( #( #( #( #( #( #( #( #( un Oc ma )i if M3 vn wn #( #( #( #( #( #( #( xn yn Pd Qd Lk zn Mm zn Mm An #( #( Bn Cn Dn En #( #( #( #( #( Fn Gn Hn o8 Z< J0 n8 Q5 n8 Ye o8 Vi In o8 bh Ye ]: Ze Zf Bl Bl d3 ch Jn h9 8e h9 d3 T3 S3 i9 >0 u^ U3 T3 Kn 34 6< 34 v[ `e .f v[ 6< 34 34 .f H| qa 55 Ln Mn J^ 7< J^ 9e 9e C_ C_ J^ e3 3{ J^ C_ `^ }_ j/ W5 3{ `^ `^ `^ `^ ^~ [_ }_ h^ @{ F] #g ~8 74 @{ B/ @{ t: @{ y^ @{ K{ B/ ~2 :/ U] Y: lf k/ j^ A) A) ] :~ _~ k' ] _~ ] `' _~ k' _~ _~ :~ k' e~ i! >] ] >- Z5 i! .) i! g, ]) l' >- a+ i, l' .) .) u~ e= >~ i, K> G* %$ G* G* )- G* e= G* %$ G* '- S) |' )- ;$ l+ ;$ l+ l+ ;$ m+ n+ h+ y- y- l+ n+ n+ h+ m+ q+ o+ '$ Nn )$ M& !- '$ )$ 8> 9> !$ )$ !$ v+ !$ 9> 0e C+ G+ F+ G+ G+ G+ G+ G+ G+ On G+ W2 `5 4c _i f) W2 W2 4c F% f) Y+ f) f) Y+ Z+ p; '; f) L| _$ Z+ p; L| '; <~ <~ #@ %@ +@ &@ &@ %@ &@ %@ m, >@ `& 7$ &@ &@ ~; &@ #@ M* 6/ g) Fc Pn Qn Rn Sn Tn 3f Ih Un Vn Wn Xn Yn Zn `n 5i Bh Ql o Rl 5k 6b 6b bb *j ab &d &d Ig sh ic .o Ig *j ab .o Ig &d sh /g fe td +o @o Vl |k #o _j (j _j (j $o %o &o *o =o gk ~n ^n -o ;o >o je +m ,o Z0 'o )o W+ |@ $* o$ :; -& a. u@ 5& ~. t@ {. !. {. p, z@ E@ $% B$ -. 6# z@ +. X }; G@ ` ` C, Z H A M D$ o> M Q@ E$ ", +"- $ Z, + 0' . $ k) $ 0' . S$ + $ . & Q$ U@ . + $ R@ o! Q$ ; ; $ }* . . [* . . | H= o! ] U@ & ] & N$ ; ; - *# 2 ; ^ ; Q$ H= o! ; =' & | ) ; - N$ 4 { ] 5 1 V~ Z@ ~ 2 <& ( ) 1 ( 1 } [ $# b 1 6- J= !o ~o #( #( _l 5 {o $( #( $( ]o =# ~# d o {# ~# 5n $( #( #( #( #( #( #( #( #( #( ^o g a C; /o (o #( #( #( #( #( #( #( #( #( #( _o :o m D m % m 8 Fb Q5 Q5 Q5 po Ye Vi Vi Vi o8 Ye Ye Td Rc Sd Cl qo `f K0 8e ro so to T3 d3 S3 S3 d3 45 uo j9 gd T3 U3 vo 34 R( V5 34 v[ V5 34 Rk <} wo 9e xo yo Sc J^ 7< C_ Z{ J^ Z{ C_ C_ }_ C_ 7< zo `^ `^ e3 T] }_ K^ }_ }_ }_ T] [_ j/ j/ Y5 [_ ~8 F] ~) @; y^ @{ ~) @{ @{ u: y^ y^ b] y^ u: S( :/ k/ A) b] A) k' _~ _~ k' k' ] k' _~ _~ _~ ] _~ X] g, g, ] w- +! >- g, .) #{ i! d] l' .) #{ G* l' l' i, ^) ^) G* L{ %$ G* u% G* G* u% ,- e= k; %$ G* e= Q, S) 0+ n+ n+ C) ;$ l+ l+ h+ h+ h+ n+ n+ n+ n+ r+ n+ n+ h+ n+ '$ s+ '$ =; h+ pj )$ o+ v+ 8> Ao o+ v+ 9> Xi v+ y+ n; E+ G+ (i F+ F+ F+ F+ F+ G+ W2 sa _i ^7 f) F% P9 4c G% L| L| L| F% Z+ Y+ Z+ Z+ Z+ _{ '; '; p; p; p; p; '; :- %@ &@ %@ S> %@ %@ %@ &@ p= %@ &@ S> *@ *@ &@ &@ *@ q; G' of Bo Co 'd Do Eo +m Ml Fo =n Go Ho Io Jo Ko Lo ud Ql Mo Ch ud 7k Xb 6b Xb Wb 6b 7k ph ph l 7k Dh 5k 6b 6b ab &d ]g ^g /g $e No Oo Lh |k Po Qo dk (j &l Ro So To gk Uo Vo Wo Xo Yo Zo `o p .p +p @p #p $p H' %p o$ i@ &p j@ u@ :. >& B= E~ ^. '. !. ). &. '. ). E@ z$ 0# z@ . V 5# 4# C$ P P H T J A S b- Q@ A z ", +"T@ $ L$ + = p9 > ]& ' $ . Q$ Z, ] > > . - . $= > = > > # Q$ ; # ] N$ > T@ & ; - $ Q$ . ' H= T@ - ; H= N$ Q$ ; W@ { ~ ) | V@ Z! X@ ~ { 2 X@ ~ / 2 , | W@ ( D, ~ d $# d /& ( 6 } [ 6 < ( ## Y@ !# 6 $# *p #( #( d< =p -p #( #( ;p >p j ~# } 7 a j ,p 'p )p !p #( #( ~p {p ]p ]p ^p /p m ~# `$ (p 7_ #( #( c} _p :p

M 3; J o^ I$ L bp #( #( wk 9 3# Q L@ J I@ O= J O= I@ r9 q9 cp dp #( #( ep O= O= q9 ja 5d fp 4: #( #( M2 gp hp ip jp kp lp #( #( m7 mp V^ =. /3 x5 np (( #( #( a[ op pp gm qp rp sp _( W_ tp r/ r/ r/ x4 up 4h #( (5 Ni f[ Jc =2 +: vp wp w( #( 4h xp 13 }e yp zp Ap Bp #( #( Cp Dp Dp Ep Fp Fp Gp H0 'i H0 Hp Ip #( #( ]_ Jp Kp Lp Mp Np *8 #( #( Op Pp Qd {i Qd A9 I0 Qp w( #( Rp Sp #( Tp Up Vp Wp Xp Yp #( #( Zp `p Pk o8 a3 ed a3 n8 o8 n8 Ye Ye n8 Ye Sd Rc Td Vi q Cl h9 .g q so .q h9 3| T3 d3 T3 j9 `e kf gd j9 q8 V5 34 34 V5 34 V5 .f v[ vo V5 Sc V4 +q yo ^1 J^ J^ Z{ 7< 7< 7< Z{ 7< J^ `^ 7< C_ }_ 3{ 3{ }_ ;] 3{ `^ W5 W5 [} j/ j/ [_ <^ <^ r8 @{ y^ @{ ~) Ud y^ @{ y^ t: h^ y^ Z: u: t: r{ :/ y^ [^ C/ b] k' _~ ] %, _~ _~ _~ k' _~ ] _~ k' X] g, e~ Z/ Y] ]{ >- +! N^ ]) -~ i! -~ .) .) i, i, t% .) G* G* e= e= %$ %$ e= 9+ h, %$ ,- ,- G* G* %$ 0+ Q, S) @q j+ n+ g+ l+ n+ l+ l+ n+ h+ l+ *$ ;$ h+ =; n+ n+ h+ n+ =; s+ ,$ '$ !- )$ )$ )$ 9> v+ #q Ao v+ Yi Yi v+ G+ D+ D+ G+ G+ G+ D+ W2 4c G+ W2 4c 4c $q P9 4c f) T& ^7 F% L| f) f) f) 5c _$ _$ p; p; p; Z+ p; <~ <~ <~ p; p; p; %@ &@ *@ #@ '; %@ &@ *@ >@ %@ &@ &@ %@ &@ %@ %@ +@ W+ %q /- &q *q =q -q sf ;q |f >q Wn ,q Ho 'q )q !q ~q Ja oh 4i Ql Dh 5k 5k Ql 5k 6k 5k 4i 5i 5i 5i 5i 5k 5i 5k 5k {q *j Ig se /g ^f ]q Tl ^q /q (q _q (j :q %o * a. l@ {* w$ C= >& %% (* +. z@ E@ 5# +. z@ $% &. .. +. +. 5# P M@ P@ K@ Y Q@ J S P@ @% P@ M 3# ", +"= = * $ T@ M$ & + * . . Q$ Q$ > ; & V@ $ o! & }* z] * - * . * > P$ ; ; - Q$ > # ; `@ *# X@ ~ Q$ [ | ] S$ N$ W@ 2 > N$ ~ V@ | 2 & ) { ^ | < / { ~ ~ W@ | | N$ Z@ *# 2 ( { ) < $# 1 6 } d [ 6 ,# aq bq #( #( cq #( #( d< dq 6 ,# j a 3* ~# ># ~# 0 j )h #( #( eq o 6! 6 [& n Y$ s> fq gq #( #( hq iq e ~# r s> |& c jq kq v6 p `$ D l< lq #( #( mq nq p B :# {& I oq y< #( #( pq qq w w M S K z M I H P@ n! M O@ d- M dj #( #( rq 6m M@ T G$ D$ P 58 4# T 4# O= P sq tq #( #( uq vq r4 ja ja G: wq #( #( xq yq ,. 6# .. $% $% zq Aq #( #( Bq Cq =. /3 b: Dq +_ #( 7o Eq Y6 b: <3 b: Y6 82 Fq Gq Hq A5 x4 ;1 L] Iq 4h #( (5 Jq =2 Q/ 3~ Kq Lq w( #( Mq Nq Oq [e [e [e 13 13 Pq #( #( jj Qq Wf Rq =i =i Sq )i Yf ma Tq #( #( +_ Uq Vq if >k a9 Wq Xq ]_ #( #( Yq {i Zq cd a9 }5 `q w( #( #( #( r .r rg t[ t[ >8 +r @r #( #( #r $r Q5 n8 n8 Q5 n8 o8 Ye Bl Bl %r Ye Vi Td `f Ye o8 c3 Rc .g `f i9 .g 8e T3 n kf El T3 j9 T3 gd El v[ v[ u^ 34 34 v[ 6< V5 V5 34 v[ <} !2 +{ 44 Ln J^ )2 Z{ J^ 7< J^ ]k C_ 7< `^ Z{ 7< }_ `^ T] f3 W5 `^ 64 W5 T] }_ [_ [_ K^ ^k ~8 G{ ^k (~ @{ @{ ~) r8 @{ y^ @{ @{ y^ u: c~ h^ c~ [^ k/ b] r{ b] N0 k' k' %, $[ :~ _~ ] _~ j^ ] k' B* d] i! e~ c] k' >- ]) i! #{ .) g, -~ -~ 7+ i, i, .) ]) e= e= %$ %$ G* G* G* 0+ e= e= |] ,- G* G* G* G* U; S) S) j+ l+ f= n+ n+ l+ n+ l+ l+ l; h+ n+ n+ h+ h+ =; k+ m+ =; o+ ,$ o+ o+ w+ o+ Xi v+ 9> v+ Yi v+ v+ 9> 9> 0e F+ G+ F+ E+ G+ G+ W2 W2 W2 G+ F+ G+ F+ 4c &r W2 _i V& L| L| F% f) F% _$ p; p; p; p; '; m, p; _$ p; '; p; p; %@ &@ %@ %@ %@ *@ wg <~ V, *@ >@ &@ %@ #@ %@ #@ #@ #@ @@ U+ *r =r 6j -r ;r >r ,r 'r )r !r ~r {r ]r ,q Xn ^r /r (r yj 5i 5i Ql 5k 5i _r _r :r !, + ]& Q$ . ~ & . > ; . . ; . # S$ + * #^ ; ~ =' ; U$ & . U@ | | H= H= & ] | - ; ; ; `@ ] ^& { X@ - } ( ~ ## 2 / { ~ W@ } / 2 [ 1 5! | [ 1 6 [ { < [ ^ V~ ) d a 6! 2d d ,# hr I1 #( #( #( #( ir _7 ~# ,# L= d d e e ,# c {# [l #( #( }l h h 0 c {# {# c jr #( #( d< kr g p L= _# A~ {# p ^# 2, l _# p Y$ lr c} #( 7_ mr G F= G /# A ~& N nr 7_ #( or pr M A S n! I P@ M@ S P@ 8* J J S :* H$ dj #( #( 5m qr M L@ d- 4# 4# P' G$ T L@ J L@ I@ rr #( #( sr tr q9 q9 r9 ur 8: #( 7_ vr ,. wr F^ 6# /3 =. A@ xr +_ #( yr zr =. A0 df -} #( #( Ar Z9 Br Y6 c[ >b >b >b 82 82 <3 82 J: r/ J: Iq 4h #( (5 Ni 2h Jc Cr Dr 7_ #( (5 Er F3 +: 13 6h 13 }e =i Oi #( #( Pi Qq Qq Rq s9 =i :c 8h ~b Fr Gr #( #( Hr Ir jf mj Jr *0 Ri Kr Lr #( #( Mr Nr Mm ad -8 {i lo w( #( #( Or Pr Qr 03 oj rg >/ Pk Rr w( #( Sr Tr a3 Z< a3 Q5 n8 n8 o8 o8 Bl %r Vi Vi Vi Rc `f Bl M9 h9 35 Ur 35 8e Vr >0 >0 n h9 S3 j9 __ >0 El U3 gd v[ 34 6< f 34 34 V5 V5 .f @g V4 9e {k <} ]k J^ J^ F{ J^ F{ J^ 7< J^ e3 C_ e3 }_ }_ `^ T] Y5 f3 `^ }_ T] }_ }_ r8 1c j/ W4 F] W4 ~8 G{ y^ y^ ~8 74 @{ y^ y^ V] k/ [^ y^ V] A) y^ T( [^ D' A) k' _~ j^ k' _~ k' ] _~ _~ _~ _~ Y] X] g, e~ w- ] V3 #{ i! g, l' #{ g, l' l' #{ e= i, l' K> G* U; e= G* i, G* k; ,- e= ,- 6> G* %$ f= u% %$ Q, S) g+ *$ l+ n+ w% m+ n+ '- C) h+ h+ h+ n+ M& h+ h+ h+ n+ !- x+ o+ o+ '$ x+ )$ o+ 8> Yi Yi v+ Wr Xr v+ Yr (i ~- F+ (i ~- G+ F+ F+ 3c 3c 4c W2 W2 G+ 4c W2 W2 W2 f) L| F% F% _{ L| nf L| nf _$ _$ p; '; p; _$ p; <~ p; '; &@ %@ *@ <~ %@ &@ <~ '; p' &@ &@ &@ &@ &@ &@ &@ @@ @@ +@ Zr `r s Mb .s Nj =f 6q +s @s #s $s 'q ,q %s Ho Io Yn &s *s 4i [r 4i 5i _r Lo [r xj =s Lo yj }r 5i -s Mo 6b 7k 7k Xb Ch ic &d #e ^d ;s yh >s rd rd ,s 's )s !s ]& L$ + > . + . X! Z, $ ; $ + T@ > [* > # # ^& S$ Q$ ; & > . > - Q$ . ) | X@ ] ; X@ | ] ; $ ; N$ - ) ) ( 2 > X@ ## - N$ ; | W@ 4 [ ( ## { R$ D, ] [ ( ( ## 5 6 $# [ ^ [ / < &# Y> Y> 9 J= :s p /8 #( #( |p 77 h D L= {# h ,# `$ C h h L= h % |s #( #( 1s 2s t w r G [# F= I 3s 4s #( $( 5s M z w I w P@ n! I O@ P@ #= J H >) >) dj #( #( wk 6s |# H ` J G$ r! Ld Y r! C$ L@ 7s 8s #( #( ._ 9s 7s r4 r4 0s #( #( as bs cs #. a* L) /3 $% =. ds es #( 7_ fs /3 A0 ~( gs #( #( ]5 t( gg t( Y6 >b ~9 ~9 82 Y6 >b >b J: r/ x4 Iq 4h #( (5 5h hs is js 7_ #( *8 ks yp 13 }e 13 F3 +: }e }e 63 #( #( Hk Wf Wf [e ls ms ns $0 )i os ]_ #( *8 ps qs rs ,2 qg !i 9h b/ ss ts #( w( us A9 {i Qd Qd lo w( #( #( vs Sm }c }c >8 oj Pk oj ws xs #( #( ys Pk a3 Q5 Ye o8 Vi o8 o8 o8 o8 Ye Ye Rd zs Rc Vi Rc c3 M9 Rc Rc Rc .g i9 S3 >0 .g d3 S3 45 j9 j9 45 El 34 V5 v[ f V5 V5 34 6< V5 ~k Sc J^ Z{ Ln N9 9e 7< F{ Z{ F{ J^ C_ 7< J^ C_ C_ C_ 3{ `^ [} H{ 3{ }_ }_ }_ }_ }_ ^k [} W4 [_ @{ F] b) As @{ y^ E_ J| y^ y^ t: t: P! i^ :/ L^ :/ c~ q{ b] [^ k' j^ k' _~ k' ] _~ :~ :~ ] _~ ] ] ] -~ w- i! 2_ Y] e~ i! i! .) l' 6+ #{ l' l' K> l' l' .) G* %$ G* G* e= G* j, +) %$ e= ,- u% G* |' *$ G* Q, w% n+ l+ l+ l+ w% ;$ n+ w% w% h+ -$ n+ h+ !- h+ h+ Bs h+ M& {$ )$ o+ )$ '$ o+ )$ )$ )$ Yi v+ Fl 9> Yi Yi v+ ~- G+ F+ W2 G+ E+ @f F+ W2 W2 4c W2 Cs sa 4c _i W2 _i F% f) Ds _{ _{ _{ _{ _{ p; ,; '; <~ '; Z+ '; nf Es p; <~ '; *@ &@ &@ *@ %@ '; %@ &@ %@ &@ *@ &@ %@ #@ #@ +@ +@ Il Fs Gs de Hs Is Js Ks Ls Ms Ns Os Ps Os 'q Qs Rs $s Ss Ts Us Vs oh 5i _r xj Ws Xs Ys 4i }r 5k Mo ph Ig &d jc jc 6b 7k 6b &d se {f Zs +l `s t .t +t @t )s )s !s #t To $t %t |j &t ]s &t *t =t -t /s $c /e ;t G% >t 6@ ,t && p@ o@ D= >& E7 ^. w$ ^. x@ 9# ). &. ]. A@ .= R .= 7# C$ H X E$ H P G@ Y M q! A H Q@ P@ M ", +"o! ; > & - $ ]& # # ]& J$ N$ * {c & %= $ $ V@ > > ; | & $ & > & $ ~ | H= ~ & Q$ ~ U@ & N$ & H= ~ > ~ H= - R$ ] R$ ^ *# | U$ ; V~ 4 | | & Y@ | N$ } 2 $# | %# , X@ ( { } } / 4 [ X@ [ 6 $# W@ 7 7 6 6- [ 't #( #( #( )t d ,# K= j 9 i 9 { e c Y> Y> [l #( #( }s } 0 L= a' o Y$ !t d< #( $( ~t !# 2, n n h _# 0- p ^# % `$ 4* $] h5 {t #( #( ]t w ~& D /# z ~& I 4* G ^t #( #( /t I E G N I H$ P@ z E$ 3& M n! H$ J >) dj #( #( 5m z6 |# T E$ U^ O= V O= O U r! n) O= (t #( #( '3 _t E@ ja :t b 82 ~9 x4 ;1 ;1 Ek 4h #( (5 4t 5t 8 &: #( +_ 6t 7t 13 +: on +: F3 13 13 }e Oi #( #( jj }e }e s9 8t Wf 9t 0t )i at #( #( bt ct L4 Kk if !i Jr >k dt et ft #( #( gt Qd tl Lk Mm lo w( #( ]_ ht Sm }c }c 03 oj >8 >8 >8 it #( #( jt Pk >8 o8 o8 o8 Q5 n8 n8 Ye bh Bl Vi sg Sd M9 Rc Cl 8e Rc .g kt .g i9 Rc d3 >0 .g j9 i9 x/ T3 d3 U3 v[ `e 34 34 __ vo V5 V5 .f V5 V5 @g U4 /1 7< <} lt ^1 7< e3 zo 7< C_ C_ e3 C_ Z{ C_ zo }_ }_ N! W5 W5 }_ `^ W5 1c r8 [_ T] [_ ~) y[ ~8 ^k r8 y^ F1 y^ @{ y^ {7 E_ t: J| c~ t: 2c [^ mt Ud b] b] j^ k' k' k' g3 ] ] %, Y# k' k' k' k' >- _~ g, c] ] ]{ -~ i! .) l' g, i! .) .) ;~ K> 7+ .) .) K> G* %$ G* G* i, G* G* e= ,- *$ G* 0+ ,- 0+ }' w% h+ j+ l+ l+ '- z- l+ f= w% n+ n+ n+ h+ h+ m+ h+ h+ q+ h+ q+ nt )$ )$ o+ v+ v+ '$ )$ v+ v+ x+ #q Yi Yr Yr ~- W2 F+ F+ 4c F+ G+ W2 W2 W2 W2 ot 3c _i sa 4c 4c P9 f) F% f) f) f) .^ L| $g _$ _$ p; p; <~ Z+ '; p; <~ <~ '; p; <~ %@ %@ %@ 4$ m, %@ &@ &@ %@ &@ %@ %@ #@ #@ @@ Z+ pt qt rt st tt ut vt wt xt yt Ms Qs Os Os Os Qs %s Ps zt At Bt `n Ja 5i 5i * ]& ]& * = $ $ = | | $ R- $ - . $ | . > Q$ ; Q$ $ ; # & T@ ] Q$ & ~ Z! ' 1 %= & P$ ) N$ Q$ N$ X@ 2 U@ 2 }* U@ *' =' Q$ T@ | ] ; { > 2] { | { W@ { 2 Y@ 2 } /& /& ,# } < 2 Y@ ( | 6 6 d 6 Mt Nt #( #( #( f6 Ot k 7 e 1 ,# 6 d V$ Y> 6! a .i #( #( Pt 9 g s> L= c Y$ Qt #( #( Rt St `$ D s> Z$ L= p r s> 4* Z$ n % b' Tt &3 #( 7_ Ut p F= m m p 4* t /# I Vt #( #( Wt z C G I ~& /# O@ P@ I O@ H$ M M L@ c' dj #( #( rq Xt G$ d- L@ T T Y T L@ 2# U V r9 Yt #( #( N_ Zt y@ ja `t 4: #( 7_ u r9 r5 =. $% .u $% =. $% $% -} #( #( +u /3 F^ =. @u &: #( +_ }t #u gg Y6 >b ;} 82 d[ `9 >b ef x4 J: ff Iq 4h #( (5 $u %u (5 #( w( &u *u 13 13 Se 13 }e Se Wf on Wf Oi #( #( jj =u Wf -u ;u 7h =u >u Yf ,u #( #( 'u hf jf qg qg jf *0 !i )u !u ~u #( #( {u ]u zn Mm Lk lo w( #( ^u /u {i oj (u _u oj oj Pk Zf :u #( #( 0 .g Jn j9 Cl |u d3 n >0 d3 __ 45 45 45 `e gd 34 .f v[ !k 34 V5 V5 34 V5 V5 44 Sc J^ Rk Mn !2 7< J^ C_ +f Z{ C_ C_ Z{ `^ 7< e3 C_ 1c [_ W5 1c r8 }_ 1c }_ zo S] r8 X5 74 r8 r8 ~8 1u ^k ~) @{ y^ y^ !/ t: J| h^ c~ '^ k/ Z: Y: k/ S( @[ b] A) _~ k' ] g3 _~ _~ ] _~ _~ _~ ] Y] Y] 6+ w- d= }^ 2u i! ]) ,] i; w- >- l' a+ G* G* .) l' a+ G* K> e= G* a+ %$ %$ G* ,- u% %$ %$ %$ G* %$ U; l+ g+ K& n+ u% f= h+ h+ -$ n+ k+ h+ l+ h+ m+ n+ h+ q+ M& =; )$ o+ '$ '$ !$ 8> '$ 8> v+ 9> 3u Ao Yi Yr Yi 9> G+ W2 F+ W2 F+ W2 W2 G+ W2 W2 G+ G+ 4c sa W2 P9 ^7 Q+ L| f) P9 F% L| P9 ot _$ @/ '; p; '; <~ '; p' <~ '; %@ '; p; %@ %@ *@ m, %@ p; &@ &@ &@ &@ &@ *@ 1] @@ @@ W+ R+ 4u 5u Qa 6u Hs 7u 8u *n 9u 0u au bu bu Ps Os Qs Os Ps Ps cu du eu fu 4i oh 4i _r ud ph Dh Ig ]g sh jc Kg ^g /g /g /g /g gu ^g Ng {f hu iu ju [q )s ku lu Et }q mu nu ~n nu |j ]n ou pu qu ;o ru su tu @p uu vu p= g$ n$ 1} o@ <. a. t@ m@ c# ~. {. ). ,& '. A@ V> =. ). 5# 7# L@ F@ V P &' T J 3# P@ H H H H P@ I A ", +"p9 p9 + $ # # - . 0' $ # [* ] & + . ] $ $ . . & Z! . Q$ ; ; - > - ]& . $ ; & *' V@ V@ (& > ~ & ] ; U@ Q$ U@ `@ & ] { V~ | N$ ] H= N$ J) H= N$ [ ) | { { 7 2 [ ( { Y@ I= ( 2 6 == d d a { } ( Y@ i p6 0j #( #( #( #( #( wu a e 6 d k o ~# d g ,# 9 )h #( #( eq a A~ L= ~# n 8 xu #( #( yu zu s> -) c C; h b' l !# r D |& b' t Au d< #( 7_ Bu Cu Cu Du Eu Fu Gu Hu Iu Ju )6 #( #( }2 Ku M Q@ {& P@ B M K N %> M 3; d{ P@ t> +i #( #( 5m Lu J U H L@ Q Y t> L' X 4; T X Mu #( #( M_ Nu Ou r9 Pu N_ #( 7_ d_ Qu Qu Ru Su Su Tu Uu Vu Wu Xu w( #( Yu Zu ,. $% `u v #( #( #( .v +v @v #v $v >b >b 82 82 9# B5 ;1 r/ up 4h #( (5 %v i[ #( 7_ &v *v Re Se W^ on =v Se Se Oq 13 }e Oi #( #( Hk Wf /c Qq =v -v =u ;v >v ,v #( #( 'v Jk if !i nl if )v !v Ri Pd ~v #( #( {v ]v ^v Qd Pc lo w( #( /v (v _v (u :v ] _~ :~ k' k' k' k' k' _~ d= g, g, i! ] s] g, +! g, l' 6+ i! l' l' K> i, .) l' ./ e= %$ G* ^) K> %$ ,- G* %$ +) f+ G* u% %$ e= &, g+ l+ 0+ l+ ;$ n+ l+ ;$ l+ l+ n+ m+ m+ h+ m+ n+ h+ m+ o+ o+ o+ M& '$ o+ x+ 8> )$ Xi 8> !$ )$ 8> 8> 9> 9> 9> G+ D+ ~- 4c G+ W2 G+ G+ W2 W2 W2 4c P9 4c On _i W2 f) V+ L| L| L| L| L| L| '; p; p; _$ p; p; 9v @/ '; <~ '; '; '; +@ #@ #@ +@ &@ %@ *@ &@ %@ &@ *@ &@ %@ +@ X+ U+ Fs 0v av bv cv dv ev fv #n >q 0u Qs Qs Os Qs Os Ps Os Os Os Ps gv hv iv jv xj _r Ql ud Ch Ig ]g Mg 7i (f /g 8k 7i ^f fe kv Cf lv $c mv nv ov pv qv ku rv * $ T@ ] $ }* - S$ . U$ S$ & Dv . * . . . Q$ S$ T@ Q$ $ $ ; N$ | H= & ' U@ | R$ ^ %= ~ ^& ~ Ev 2 N$ { ~ 2 1 N$ | 2 ~ 2 ~ [ ^ { 4 X@ d 1 ~ | ( /& b 7 V~ { $# 6 V~ 6 Di m( #( #( Fv #( #( Nt Gv ,# b 7 d a i d c 3] L= [l #( #( }s ~# A~ ~# o |& ~# Hv #( #( 3 V} r h 2, ~# `$ p Z$ 9- L= `$ r V| C J_ m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( q| qq F= M z I I G 8* I M P@ S E$ O@ a- +i #( #( rq z6 P@ d- 3d 4# d- Q 3; Q G$ d- L@ V Iv #( #( Jv Kv r4 O= Lv W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( Mv Zu ;' /3 /3 Nv !4 #( #( #( #( #( Ov Pv Qv Rv >b Y6 82 >b ff << Iq *k #( w( M2 #( w( Sv Tv W^ Re Se W^ on Se }e Uv on [e }e Oi #( #( Hk [e 8d Vv Qq =i =u Wv Xv Yv #( #( Zv ma jf >k Jr !i !i `v Pd }5 w w( #( .w +w {i {i Mk lo w( #( @w #w $w :v ul vl rg oj ul J0 %w En #( &w *w >8 'k n8 n8 Q5 Ye o8 Ye qo o8 Vi =w Vi qo 8e qo -w ;w kt >0 ch .g >0 ch kf Vr ch d3 gd j9 45 gd El El 34 .f V5 U3 V5 34 v[ V5 34 .f V5 <} Z{ Z{ >w >w Z{ C_ Z{ J^ 7< e3 e3 e3 7< 7< 7< 7< 3{ 3{ T] W5 }_ [} W5 }_ T] [} f3 W5 T] j/ C' 74 W4 ^k @{ ~) @{ @{ @{ y^ @{ y^ @{ '^ c~ B/ S( ,w 'w / [^ 2_ _~ _~ k' k' _~ ] _~ k' %, _~ ] b= _~ Y] i! g, _~ s] 5+ i! i! 7+ >- i! 7+ .) .) i, a+ l' 7+ G* ^) G* G* G* G* G* G* G* %$ f= f+ e= G* %$ %$ )w l+ g+ *$ l+ n+ n+ n+ l+ n+ h+ h+ m+ h+ m+ m+ h+ h+ M& '$ !w !- '$ )$ )$ 8> 8> o+ )$ Fl v+ Yr 9> Yi 9> 9> m9 F+ E+ G+ G+ F+ G+ W2 W2 W2 G+ 4c ^7 4c 4c _i 4c F% f) ~w L| P9 f) L| L| p; _$ p; '; p; nf {w p; '; '; '; p; <~ '; %@ #@ %@ +@ '; &@ %@ +@ +@ %@ %@ %@ +@ @@ .@ ]w ^w #b /w (w _w :w vt = + # ]& . > + Z, ]& L$ $ $ > - Z, . Q$ $ . & - Q$ & ; ; U$ . & 2 ] H= Q$ ^ ; H= { & Z! ; > S$ P$ 2 . ] | T- N$ ~ N$ %= ^ 2 W@ ~ | { U@ ; ) ~ N$ ] { d ## { V~ *# < /& [ ( 7- | / Y@ { a4 jw #( #( kw lw S} #( #( mw nw $# a ,# a e ># ~# c 0 [l #( #( eq 7 L= 7 0 L= |& ow #( #( pw p 2, h L= c `$ (# Y$ 1; p `$ Z$ 4* n qw m( #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( rw sw n! Q@ G I I J P@ F= D J H J 1& M c7 #( #( wk z6 M D$ 0* tw G$ L@ J 0* O= C$ O= uw vw #( #( ww xw r4 r4 yw W_ #( #( #( #( #( #( #( #( #( #( #( #( #( #( #( zw Aw :3 /3 A0 Bw Cw Dw W_ #( #( #( #( #( w( Ew Fw ~9 ~9 ~9 >b x4 Ek 4h #( #( 7_ #( #( Gw Hw x4 Iw Re W^ Oq on }e on 8t Oq 13 Pq #( #( jj =i =u Qq =i Qq Jw Kw Lw Mw #( #( Nw ma Jr if Ow dt ;k Pw na Qw Rw w( #( Sw Tw Mm Qd Lk Uw w( #( Bn Vw rg zn 0 .g .g >0 Rc ch ch i9 d3 T3 j9 gd j9 .x T3 6< f 6< v[ `e f V5 V5 v[ .f .f +x 7< Z{ +f !2 J^ 7< J^ F{ 7< J^ C_ C_ J^ }_ C_ C_ }_ 1c T] K^ }_ `^ 1c `^ K^ W5 65 T] W5 [} F] [} ^k W4 F] @{ y^ @{ @{ @{ y^ @{ y^ u: :/ t: @[ [^ t: S( b] b] ] ] 2_ k' _~ k' _~ _~ k' ] ] ] _~ _~ -~ g, _~ k' 7+ -~ e~ l' l' g, #{ 7+ ]) @$ u~ 7+ K> G* e= K> %$ G* b+ G* u% k; e= g+ ,- %$ %$ %$ G* H* v% '- *$ n+ k+ h+ l+ n+ n+ w% n+ n+ @q n+ @x q+ m+ =; o+ 8> !- )$ '$ o+ 8> x+ 8> 8> Xi v+ Yi Ao #x Yi 9> Yi m9 (i F+ E+ D+ G+ G+ 4c @f @f 4c P9 P9 5c 5c $g L| _{ _$ _$ nf L| nf Z+ p; '; _$ '; <~ _$ _{ :- p; ~w '; p; #@ %@ %@ &@ %@ %@ <~ &@ p' %@ &@ %@ &@ #@ #@ W+ X+ &g $x 8q Eo %x dv &x *x Qs Ns au Qs Os Qs Qs Qs Qs Qs Os Qs Os Os =x -x ;x >x ,x 'x )x !x ac {f /f ]f /f Af Df ~x {x ]x ^x /x Kf (x _x :x 7w ov le |q > ' ~ Z! ; ^ . o! Q$ ^ H= ] U$ Z! & *> N$ ; | - . | ] ! X@ N$ Q$ U@ H= T@ I= { } ) ] 2 } ) ^ +# 6 ( { / ( ) 1 & ~ ( Y@ $# { X@ 4x $( #( I1 5x a 6x #( #( e6 7x $# 0 &# $# 7 a' 8x a 0 [l #( #( eq n h !# n a' r 9x #( #( w2 0x Y$ e c h s> h m ^# `$ Y$ Z$ y L= ax m( #( d< bx cx mr mr mr dx mr ex ex fx fx gx gx hx x ^# F= #= w A H :* o^ M :* b >b ~9 `9 up 4h #( &: Ax w( #( 7_ Bx Li y4 ,b Re 13 +: F3 F3 F3 13 [e Oi #( #( Hk =u =i =u ;u Cx =u Yf Dx Ex #( #( Fx ma 3e if if qs rs qg %0 if w w( #( .w Gx Mm {i {i Hx w( #( @w Ix :v Jx >8 Pk Kx ul 0 >0 Vr n j9 T3 gd j9 El gd 34 34 V5 V5 v[ 34 V5 34 V5 V5 ~k Ux ]k ]k @g Vx ;] J^ 7< 7< e3 C_ Z{ C_ C_ C_ C_ C_ `^ }_ [_ W5 `^ }_ [} W5 }_ W5 [] [} @{ y^ y^ 8v W4 y^ @{ @{ 74 F1 @{ @{ t: y^ y^ t: t: B/ A) @[ k/ ~2 b] C/ j^ k' _~ ] k' k' %, _~ %, k' %, k' k' 5+ w- w- k' %, >- i! .) 7+ >- g, .) l' 5+ G* a+ l' 7+ G* a+ %$ %$ G* e= ,- ,- G* G* *$ 0+ G* G* G* Wx '- Q, U; j+ m+ -$ n+ h+ h+ h+ n+ q+ n+ q+ m+ h+ h+ m+ q+ )$ m+ o+ )$ o+ p+ nt 9> 8> Fl Xi v+ v+ 9> 9> Yr Yr Yi (i G+ G+ G+ G+ W2 W2 4c W2 W2 4c _i ^7 Xx _i _i L| P9 f) f) F% L| L| _{ _{ _{ Z+ _{ '; '; <~ _$ <~ m, m, '; <~ '; %@ %@ %@ p; p; m, '; *@ %@ +@ @@ +@ X+ U+ ta Yx Zx `x y .y +y :w @y Ns Ns Qs Qs Qs Qs Qs Os Qs Os Os Os Os #y cu $y %y &y *y =y -y _x ;y >y ak ,y 'y )y Hh >o qd le !y ~y ke p e 7w ov >o |j !s sv {y To sv ]y gk vv |j ^y /n /n /y 4f )j -f (y _y ge :y }$ n, 7@ *& =* O- = $ # = o! > $ [* [* ; > !, > > . - ; | & ] N$ U@ & . > N$ H= | - ; > . ^ ~ H= - $ Q$ P$ ^ | `@ P$ > N$ | ^ ^ ~ U@ | d ; 05 ; N$ ~ { ~ , / ~ 2 4 => ~ { { ) 4 ^ ) ) ~ d ( }y |y #( #( 1y 2y q> 3y Tj #( #( 4y 2n /& a 6 a e ~# ,# Y> [l #( #( }s n r s> 2, 7 q> xu #( #( Yj 5y n n !# c{ h Z$ -) h h L= }& Z$ E, 6y ][ #( m( 7y m 2; [# G 4* N /# 4* F= A 8* G F= G 8* Q@ I z N J P@ P@ U o> O@ O@ S E$ +i #( #( 5m 8y T J J t> T H t> U d- O= d- 9y 5[ #( #( 0y 58 r9 r9 ay .: #( W_ by y@ wr R{ al +. y0 %i bf cy B$ :3 F^ $% =. |h /3 =. /3 dy /3 dy /3 ey fy gy _( 7_ #( #( hy iy jy >b ky up 4h #( (5 ly my #( #( g: ny Iw Iw 8t Se F3 F3 +: 13 *_ }e =k #( #( oy Wf Wf =i [e =u Qq =i py qy #( #( ry sy ty ;k jf rs dt >k uy vy wy #( #( xy ]v Lk Lk Qd Hx w( #( yy zy Ay Ay By oj Ay (u [v oj Cy |v #( 1v Dy Zf Pk J0 Bl Ye Vi Vi Bl Bl Bl Vi Ey Bl Bl q q so 4v Bl 8e 8e 8e qo q q >0 gd |u ch kf gd gd El gd Fy T3 `e .f .f El tg 34 34 34 V5 .f Tc +x N9 !2 .f 7< 7< C_ 7< 7< J^ J^ C_ C_ 7< C_ J^ W5 3{ s~ K^ `^ W5 H{ }_ }_ f3 f3 _1 F1 @{ @{ <^ [_ J| y^ @{ @{ ~) Ud B/ t: y^ Ud t: t: @{ u: [^ V] u: [^ N0 _~ j^ k' k' k' _~ ] ] _~ _~ ] k' _~ >- c] g, u- k' .) >- e~ +! .) 6+ 7+ .) ]) ;~ i, 7+ l' b+ i, e= %$ %$ %$ e= G* G* G* ,- ,- G* G* u% ,- %$ Gy )w f+ -$ Q, h+ h+ k+ h+ n+ h+ m+ I* m+ h+ h+ h+ h+ !- !w '$ )$ o+ o+ 8> v+ Xi Fl Fl Yi Yi 9> #q 9> Yr Yi ~- F+ n; F+ W2 G+ W2 _i W2 W2 4c 4c W2 Hy _i L| ^7 _{ _{ f) L| L| _{ L| L| nf p; '; '; '; <~ _$ '; '; m, <~ <~ <~ *@ %@ %@ %@ <~ m, %@ *@ %@ &@ %@ #@ W+ ($ ta Iy Jy Ky Ly My &x Ny @s Qs Qs Qs Qs Os Qs Qs Qs Os Os Os Ps Qs Ps gv Oy Py %y %y Qy Ry !y 6g 6g Sy pv Ty Uy Ml 7w 7w Vy Wy Xy p je e Yy Zy Zy ni )s &o }q }q sv e @z #z <- :@ 0@ $z i@ l@ (. O- = t@ = {. 5& &. &. x@ !. &. E@ 5# @. .. @. .= +. R I@ Z H |# ` P@ P@ P@ A P@ A ", +"1* $ L$ ]& . V@ = $ * = $ & . . $ o! > $ Q$ $ > . - # [* $ & Q$ & N$ o! ; $ | $ ~ . 2) U$ - # ] & . & > & ; - & ~ ## R$ R$ S$ N$ | [ ] *# | N$ ~ | ] ## } } | { $# 6 2 ) [ 5 | { ( { } / %z #( #( -6 &z 6 6 6 *z $( #( $( =z 6 ~# a 6! e 5 j 7 -z #( #( eq k a Y$ ,# o ~# *z #( #( <7 St j L= c r p r n n p Y$ -) Z$ p +| or #( $( ;z p Y$ y t n^ ^# @= c m w {& A z F= A N >z I I O@ :* G |# I a- 3; J 3; +i #( #( wk z6 T O C, G$ T H T U I@ I@ U ,z #( #( 7_ 'z @. &k U^ )z !z #( 7_ ~z bf r5 cf a* {z y@ %i r4 /3 +. /3 .u df A0 /3 |h |h A0 |h x5 x5 |h Bw ]z ~9 ^z /z w( #( W_ (z >b >b ^5 up 4h #( (5 Ni _z :z #( #( r_ 0 ch kf n .q T3 j9 f !k gd Fy `e El V5 34 f 34 34 .f ~k V5 ~k Rk Ux N9 +f I| 34 J^ 7< J^ C_ J^ 7< e3 7< }_ C_ C_ zo }_ W5 i( }_ W5 s~ W5 1c W5 T] [_ F1 @{ @{ ~8 ^k F1 F1 ~) @{ @{ @{ @{ t: Ud Ud @{ 2c {7 u: [^ k/ M^ b] b] %, ] ] _~ _~ ] k' _~ _~ %, _~ k' k' >- 4/ B* -~ _~ l' .) i! 6+ l' 5+ i! .) l' #{ K> l' l' 7+ G* %$ G* e= G* b+ %$ G* G* K& f+ h, 0+ ,- u% n+ -$ h+ u% K& *; h+ l+ n+ m+ h+ h+ n+ m+ h+ h+ bz q+ q+ !- Fl 8> )$ 8> )$ m+ pj !$ 8> Xi 9> v+ Ao m9 cz dz cz (i G+ G+ G+ 4c W2 W2 W2 W2 W2 4c Ds _i ez 5c P9 fz L| nf nf L| L| Hl _{ _{ _{ '; '; Hl p; p; '; p; <~ m, m, m, <~ %@ &@ #@ >@ %@ <~ %@ #@ %@ #@ #@ #@ W+ S+ @f gz st hz iz My jz *x kz Qs Qs Ns Qs Ns Qs Qs Qs Qs Os Os Ps Ps Os lz mz Py %y %y nz |w oz pz qz rz sz tz uz Vy Vy vz wz wz wz je p /x xz wf 7w gi fk #t }q To ]y =o |j |j ^n yz cw dw zz 'l Az ^s d Bz b Cz Dz b$ h$ X* l@ l@ o@ q@ E~ w$ x$ ^. *. (* ). z@ A@ &. V .= 5# V J@ R V P P S J K@ J S J@ M H$ H$ N ", +"V@ 1* Z, = 0' V@ $ * . 0' * $ # . L$ . = . + S$ . = ; $ + . . H= ; & N$ Ez & T@ ; S$ . Q$ > | > ; H= . U@ | {c . ; U$ 2 ~ N$ X@ & U$ | 05 2 ~ H= ; [ { N$ [ W@ { X@ 1 1 I= 4 2 5 9 /& 5 [ W@ 7- Fz Gz #( #( Hz _7 V~ 7 k >p Iz #( #( -p Jz c i n ~# 7 {# ,# [l #( #( }s |& ~# c n ]c Q{ Kz d< #( $( :m 0- h h |& Y$ ~# Z$ Y$ Y$ ~# |& Y$ r Lz Mz #( #( Nz c m }# C G ^# r F= A G F= I N A N G O@ A I A c- z O@ G O@ Oz H O@ bp #( #( wk 8y T I H J |# G$ J J L@ G$ Pz Qz #( #( Rz Sz O= C$ I@ Tz Uz #( #( d_ y@ wr Ou al Vz . /3 Wz Xz /3 Yz F^ A0 =. /3 |h |h A0 /3 |h /3 Zz `z x5 Ck Br A .A #( #( +A @A ~9 7d Ek 4h #( (5 Fk 2h #A $A #( #( %A &A Li Re Se *A =v F3 Oq Uv ym #( #( Pi [e Wf Wf }e Qq Qq Qq =A -A #( #( ;A >A ,A 'A )u )A ;k !v ~i !A ~A #( #( {A ]A Mm {i {i lo w( #( ]_ ^A {i zn ul }c }c :v oj [v /A #( #( (A Ye _A Vi Ye =w Nx Q5 n8 Ye n8 Ye Ye Vi Vi Ye Ye Vi qo qo qo Cl 8e i9 35 Cl Jn 35 .x gd .q kf j9 j9 45 U3 gd .x El v[ V5 V5 f ~k 6v ~k ~k 34 Rk <} Vx 9e <} Vx J^ Z{ C_ 7< J^ 7< J^ J^ J^ C_ 7< C_ C_ }_ H{ }_ W5 T] W5 `^ }_ T] [_ T] [} J| y^ T] E_ @{ ~) ~) y^ @{ @{ t: E_ t: J| @[ t: B/ t: C/ Ud Ud [^ k' ] _~ _~ g3 _~ `' ] ] _~ k' k' _~ s] i! g, 6+ -~ _~ 5+ >- i; 7+ 5+ g, #{ 7+ l' :A K> 7+ 8+ a+ %$ G* e= %$ 0+ G* G* G* G* u% j+ %$ 0+ 0+ 0+ j+ m+ m+ i+ h+ y- L> h+ l+ k+ '- h+ m+ q+ m+ =; !- h+ =; o+ )$ !$ 8> o+ v+ Xi Xi 8> )$ Yi pj Xi )$ Yi Yi Yr Yr m9 W2 G+ W2 G+ 4c W2 4c 4c _i 4# V C$ @. P Y +% A J Y |; H A 8* 7* ", +"+ + + Z, = V@ > k3 $ !, $ $ = Z, $ > . + $ ^ [* $ V@ R$ $ . > & . . $ & ; ' | | ] ; H= > & Z! N$ X@ H= ## & ' N$ U@ ] ; U@ Z@ | ] ; X@ ~ 2 Z! ( 2 ; *# | W@ 1 %# 6- [ ~ J) N$ { ( d Y> ( { oA pA #( #( qA rA d W@ e 0 a sA d< #( #( 2} tA a 0 } e 3* {# uA #( #( eq e 0 ~# 8 e 0 U} -p #( #( eg #3 7 p q ~# k m p Y$ h % h vA Y$ wA #( #( xA yA % p (# D N `$ m I M /# z ~& m) n! I z )> Q@ z I z m) 3; M I S L c7 #( #( 5m 8y Oz n> T G$ L@ d- L@ T G$ zA AA #( #( #( K< 7s 58 q9 0* r9 BA #( #( CA DA bf EA wr r5 {z df Wz df ,. F^ A0 |h /3 /3 |h A0 A0 /3 /3 A0 |h |h A0 :3 Br Fq FA #( #( GA ~9 ~9 Y6 HA 4h #( (5 IA x4 r/ JA KA #( #( <| LA Re Se ms on Se on Iw Dp #( #( MA Qq =u Wf =u NA Qq Wv OA PA +_ #( En QA RA Pw SA !i >k !v >k TA ts #( w( UA VA WA Lk XA Uw w( #( #( YA Mm Lk :v A7 [v ul [v ZA `A #( #( B J0 J0 n8 J0 Ti Vi o8 Bl o8 Ye Ye o8 qo qo =w Ye Bl fd Rc q q `f ch to ch .g gd n T3 n j9 T3 gd j9 T3 j9 El gd V5 .f V5 V5 !k V5 V5 ~k .f ~k Ux I| Vx ^1 +f Z{ J^ J^ C_ J^ C_ J^ Z{ J^ ]k 7< 7< C_ `^ }_ }_ W5 }_ }_ `^ 1c [_ [_ [_ }_ G{ @{ o{ ^k r8 y^ @{ F] [_ y^ y^ @{ y^ {7 B/ y^ y^ y^ [^ lf Ud b] [^ k' _~ k' k' k' ] k' k' k' %, _~ _~ Y] e~ i! g, B* k' >- 5+ i! >- l' #{ >- l' .) +! K> a+ ]) G* G* ^) G* d+ 0+ G* %$ G* G* G* G* %$ 0+ d+ 0+ g+ n+ n+ i+ *$ h+ h+ n+ h+ n+ h+ ({ h+ m+ m+ l+ o+ q+ n+ Xi 8> 8> p+ )$ o+ )$ v+ )$ Fl !$ Yr v+ Xi 9> Yr Yr .B &r G+ m9 G+ W2 W2 G+ G+ 4c _i 4c $q P9 _{ 4c _i _i $g ~w _$ L| _{ L| nf p; '; <~ '; '; <~ '; _$ <~ '; <~ <~ <~ p; %@ ;@ %@ %@ +@ %@ m, %@ %@ +@ @@ V+ a> +B @B ]d #B iz $B %B &B Ns Ns *B =B bu bu Qs Qs Os Qs Os Os Os Os Os Ps -B mz %y nz nz nz nz nz ;B Wy wz xz >B ;B ;B &y nz nz &y &y eA wz wz !y ,B !g 'B To &o ^n nu gk nu vv [x hk 2q `y )B 1i !B ~B {B ]B 3b ^B /B (B l$ =* A= k> -& O- C= >& w$ !. +. A@ !. V> ). E@ .. .= X G@ 7# C$ D$ M@ 2# L@ O P@ ` A M I A P@ A ", +"L$ ]& R@ $ + > U@ . Y! ]& J$ = . > L$ Q$ o! + . $ $ $ * 0' M$ ; U@ H= Q$ ] ] *' (& $= N$ | N$ - N$ }* N$ U@ V@ Z@ H= & ~ X@ ; > ^& ( [ ## { 2 H= =' 2 ) ~ J] ] ## { ~ [ T- &= ) ) 1 4 [ 5 { ) ( ( _B H1 #( #( :B } &# d ,# 3* Y> .i #( #( }s $# {# Q{ c :& a h }B #( #( s< |B c s> ~# A~ Y$ s> y s> c{ ^# /# ,> s> 1B d< #( #( 2B /2 s> D N b' C F= M A A 3B L/ z z x O@ ^# M w z I w |# M I P@ U +i #( #( wk 7l J L 3# E$ O@ L@ L@ L@ 4B G2 7_ #( #( 5B =5 O= O= 6B 58 y0 7B N_ #( #( 8B 9B a* r4 H9 0B al !& G; ,. .. aB bB A0 dy F^ cB |h A0 dy dy df |h dB A0 eB fB gB #( #( hB 82 >b jy HA *k #( (5 $u ;1 2h 2h iB 46 #( #( jB kB Se on on }e F3 on lB #( #( >i Wf ;u Wf [e Wf =u Qq mB nB oB #( #( pB qB ,A qg if >k rB sB tB #( #( uB vB vy wB XA zn Hx w( #( #( xB yB zn zn zB Ay oj Jx AB w( #( Sr BB 'k 'k Pk Q5 'k Ye az Vi Ye o8 Bl Bl Bl `w CB q x x Cl Ye Bl q qo qo .g `m DB EB FB El ch kf j9 j9 Fy .x gd T3 V5 !k .f f El V5 v[ .f .f V5 Rk wo Mn 7< Sc +f 64 C_ e3 J^ J^ C_ C_ C_ C_ C_ 7< K^ }_ `^ i( GB 3{ }_ W5 1c [_ _1 [_ T] /~ F1 J| f3 ^k M^ y^ @{ 74 @{ y^ @{ @{ 75 O} :! M^ y^ c~ @[ y^ [^ C/ b] ] k' _~ _~ k' %, _~ _~ ] k' k' ]{ i! g, g, 5+ ] >- 7+ e~ i; l' g, e~ 7+ .) l' i, b+ l' %$ ^) 0+ G* e= G* G* %$ %$ 0+ G* ./ d+ %$ 0+ 0+ f+ h+ l+ n+ *$ h+ v% h+ h+ m+ h+ h+ -$ HB h+ =; 8> !- m+ !- )$ p+ 8> o+ 8> o+ 9> 9> 8> !w 9> Yr ~- Xi Yi 9> Yr G+ G+ G+ W2 G+ W2 4c _i W2 _i W2 4c 4c [A ,; _i P9 f) ~w Xx L| _{ _{ ~w _{ <~ '; p; <~ <~ p; p; '; <~ m, <~ m, '; '; &@ &@ #@ #@ #@ <~ &@ %@ #@ @@ T+ ^l IB JB =e KB LB MB vt >q NB kz au *B au NB Qs Qs Qs Os Os Os Os Os Os Ps OB 8A Py 0A nz nz nz nz nz PB &y nz &y eA 0A &y &y &y &y &y &y >B Wy /x (x wf QB ` A #= P@ I 2& H$ ", +"# = . # . # > . J$ + + . . - * 0' > U@ $ $ * = = . $ ; & . = # ) 5- %= + & > S$ %= Q$ Q$ V@ Q$ ' Q$ & Q$ . ] ) Q$ [ [ 2 ] ~ | %= ] { *# > | } *# O$ ## Z! *> { [ X@ ;# *# 8- X@ Y> } ) *# WB XB #( #( YB ZB 6 $# 6 < 6 $# } `B C #( #( .C } j a 6 e e [l #( #( eq ~# ]c X$ ~# ~# 0 q +C cq #( #( @C #C n s> n t 4* O' -3 $C v6 p Z$ p g4 %C #( #( ][ &C *C ^# >= D w 2; z +( =C -C ;C I I z K@ z q! M z |# I M c' T |# J `j #( #( wk 7l T L J J T J >C ,C 8m #( #( #( `| 'C 58 O= 58 7s r9 7s )C !C #( #( .: ~C bl r5 cf $i R{ {C ]C g_ ^C /C (C _C :C A0 - ]) i! >- l' .) +! 7+ 7+ 7+ G* i, i, 0+ e= %$ 0+ 0+ e+ %$ 0+ K& 0+ 0+ K& u% G* )w l+ *$ h+ y- -$ h+ ({ q+ h+ h+ *$ q+ m+ h+ !- q+ m+ bz !- ({ 8> 8> Xi 8> tC Fl 8> Yi 9> &r Fl G+ Yi Yr Yr Yr F+ W2 G+ F+ 4c G+ W2 W2 4c $q _i _i $g P9 uC L| _{ ,; L| L| L| L| ~w p; _{ nf p; '; '; <~ <~ p' '; nf <~ ~w <~ <~ >@ %@ *@ %@ +@ <~ _$ @@ Z+ R+ vC wC xC %c yC zC (w AC BC CC *B au *B *B bu Os Os Os Os Os Os Os bu *B *B DC EC FC %y nz nz PB &y &y &y %y nz GC HC *y PB PB PB &y &y &y PB PB Ry (x HC qd nu IC IC IC vv JC Nh pi {s `y pi KC ik LC Lh Pf MC kc Xd NC ;@ X% m$ -& {* {* ;& o@ :. a6 !. d# v{ >. *. 5# 5# &. 5# 5# V n) $> F@ T T 4# O @% O J@ P@ I P@ K@ I ", +"# . + # = = > . > Q$ $ ]& = > 0' + & & Q$ > > $ = $ ] & ; ] . # ; ^ S$ ; > & Q$ U@ Q$ ; ; - o! | N$ | . , ; |* /& ~ & S$ ) ] - - *# X@ > N$ N$ ~ ~ { V~ [ 6 2 [ ( 2 { ^ } } N$ ~ OC I1 #( $( PC ## 1 b d => Y> 6 ~# a QC #( #( H[ RC a 0 L= h i SC #( #( Pt ~# |& ~# b 8 ~# A~ n TC 7_ #( #( UC VC WC XC YC ZC 51 _o _o m< `$ p r `$ *3 `C #( #( 7_ D .D +D @D #D $D R[ S[ m( 5[ s6 N B z G O@ I z N M P@ >z E$ J M L dj #( #( %D &D k} *D =D -D ;D >D ,D 7_ #( #( #( M_ 'D n5 O= 58 6B ia 58 7s H9 )D 4: #( #( 7_ !D ~D {D fp ]D ^D /D (D W_ .: _D =. _C |h :D #( D3 b ~9 jy 3C 4h #( (5 Fk 5D 2h hs Iw 6D 7D +_ #( 7_ 8D 9D *A 13 Oq *A 0D Mq #( #( aD bD cD dD eD fD =u Qq NA gD hD #( #( En iD jD kD lD tB P: #( #( mD nD 5z 5z Qw zn Mm Uw w( #( oD Yp w( pD qD rD sD tD uD #( #( Sr vD >8 'k 'k Zf wD 3v Jx Zf =w o8 Ye %r Nx qo Ye qo Vi qo q q Bl q Bl qo x .g Vr kt Vr Vr |u xD yD n Fy j9 gd El gd gd !k 34 34 f !k 34 .f .f ~k .f V5 Mn ]k ]k zD AD C_ J^ 7< Z{ C_ J^ 7< e3 J^ C_ zo 1c }_ }_ j/ W5 }_ `^ j/ 1c W5 f3 W4 r8 r8 E_ !/ ~) y^ @{ y^ @{ ^k ~) @{ y^ @{ t: ~) :/ y^ @{ Z: A) q{ S( b] `' k' _~ k' k' k' _~ ] ] k' _~ b= d= k' k' A* ^{ k' B* +! g, i! .) >- w- .) t% 7+ l' l' 7+ l' K> b+ G* %$ %$ e= d+ %$ h, 0+ *$ G* %$ u% 0+ d+ Wx -$ h+ h+ n+ m+ h+ n+ n+ h+ h+ h+ m+ m+ q+ q+ m+ ({ m+ p+ q+ BD Xi Xi Xi CD 9> Xi 8> Yi 9> Yr D+ Yr 9> Yi Yr D+ G+ D+ G+ G+ W2 G+ W2 4c 4c 4c _i $g On _i $g f) f) L| _{ [A nf nf _{ nf p; p; p; L| <~ m, '; <~ <~ <~ p; p; %@ &@ +@ %@ %@ p; +@ _$ &@ Y+ T+ ]w DD Mb ED Is FD GD HD ID NB *B *B au *B NB *B bu bu bu bu NB bu bu *B *B JD EC mz 9A nz PB PB &y &y &y &y PB vz KD cA nz PB *y &y PB PB *y PB LD >B PB MD wv ]y sv ]y gk &t hk pu ND OD PD QD ;o RD :x SD Ac TD +a UD <~ VD Y% p@ x$ ^* :. q@ :. >& ^. =. $% V> 5# A@ (* 4& z@ 6# H@ }; M@ C$ P P 7# H K@ S H$ Q@ M@ Y Q@ A ", +"> Z, $ 1* T@ . Q$ > * $ + ]& ]& + $ $ $ . = Q$ $ > . Q$ Z, - & - Z, + $ | =' & 1) ] ; ; ' & . > ; o! ; N$ U@ X@ ] ] ; ^ ; ] U@ ~ 2 Y@ 2 ;# *# [ Z! | [ ~ /& | , [ ## ] Y@ } { 2 4 | WD XD #( #( YD ZD } Y@ , } x0 i j ( a `D j< #( #( E _7 /& ,# ~# $# [l #( #( .E ~# ~# L= 0 0 p e m +E @E #( #( #( #( #( #( #( #( #( #( v2 #E m Y$ ^# h p WC or #( #( #( #( #( #( #( #( #( #( #( ][ $E O@ E; A 8* j4 I G A |# O@ z o^ z Q@ d{ +i #( #( #( #( #( #( #( #( #( #( #( #( #( #( %E &E 58 58 4# O= O= ia 58 O= n) X *E !z #( #( #( #( #( #( #( #( #( #( #( .: _D A0 _C A0 :D #( #( #( #( #( #( #( #( #( #( #( =E -E jy ~9 ~9 ;E >E *k #( (5 Ni ff ;1 x4 ^5 =2 ,E 'E #( #( (5 )E on F3 on Se !E ~E #( #( #( #( #( #( #( {E ;v =i Wv ]E ^E /E #( #( #( #( #( #( #( #( #( N( (E _E :E 5z a+ c+ 7+ a+ G* G* ^i %$ K> 0+ %$ %$ %$ i+ u% G* f+ f+ d+ d+ l+ h+ *$ n+ m+ n+ m+ N& h+ l+ 5E ({ m+ ({ q+ q+ ({ h+ =; ({ ({ BD 8> 8> Fl 9> 9> 8> Fl Yr Yi Pn Yr Yr Yr cz G+ W2 W2 W2 On W2 _i On _i On _i 4c f) ,; Xx _i L| _{ _{ L| f) nf '; _{ _{ p; '; '; _{ 6E _{ p; '; ~w %g wg '; p; &@ *@ %@ #@ %@ p; _$ +@ Y+ U+ O+ 7E a 8E Is .y 9E HD NB 0E au *B au *B *B *B *B *B *B au *B *B *B *B *B bu DC aE Oy %y &y PB &y PB PB PB Yy >B MC *y *y *y PB PB PB PB *y PB nz PB Qy bE cE dE ]n gk IC ^n Wo ^y Kj eE Wg fE gE &l . > + = . S$ & T@ $ ]& V@ - # $ ; k) $ # $ V@ Q$ U@ & ] U@ ~ Z! & ] ] . & ; | { ~ Z! | ~ 4 ## { 1 ! | N$ 1 ( ## ~ { { ^ { 4 7 d N$ < D, *# *# Y@ 2 kE $( #( ][ lE 4 D, ( | ) } 4 6 [ d ## mE #( #( b} nE a i ,# 8 uA #( #( eq 6- C; 0 n ]# oE e r r pE qE b} #( #( #( #( #( #( #( m( rE sE D m /# q m Y$ tE uE #( #( #( #( #( #( #( #( #( s< vE wE /# I H$ F= m) %> xE E; E$ P@ h] 3# E$ P@ 3& bp #( #( #( #( #( #( #( #( #( #( #( -4 yE zE AE G$ BE O= O= P' T 58 r9 58 O= C$ r4 CE 88 #( #( #( #( #( #( #( #( #( w} DE EE F^ FE |h GE q1 7_ #( #( #( #( #( #( #( #( HE IE jy 82 82 >b ef hl *k #( (5 JE 2h KE r/ 2h LE Se om S< #( #( 4h ME on on 8C ;u NE qy &: #( #( #( #( #( OE =i NA Qq Qq -u PE QE #( #( #( #( #( #( #( Mr An RE SA _E vy SE TE UE VE w( #( WE XE YE |v #( #( #( #( #( Wm ZE `E Zf Zf J0 qt Xi %F 8> 8> Fl Yi Yr Ao Yi &r cz Yi &r W2 W2 W2 4c 4c W2 4c 4c 5c $g _i F ,F au *B *B *B *B *B *B *B *B bu *B JD JD *B *B JD DC 8A Py 0A PB PB *y PB PB *y 'F eA bA cA cA *y *y PB PB &y &y &y 0A )F At !F sv ou ^y sv gk bw ou `y ~F {F yv ]F (j ^F dc /F A@ ). -. &. 3^ z$ T E@ B$ !> V Z O J C$ T H M x M@ H S ", +". ]& Z, + = X! $ . # ]& + - + . $ . ' $ L$ ; $ V@ ] M$ + * $= . $= & $ . > % + & > ; ; ] ; Q$ }* ' * . S$ S$ %= ## N$ | X@ ~ P$ ] ) ~ ] %= 2 { X@ ( ; U@ ^ X@ ) 2 Z3 ## ~ [ $# /& 2 _F :F c L= s> {# L= h ~# ,# 4F ^o 5F H1 $( {[ 5F 6F 7F 8F s> }& h k `$ ]# ~# t 9F 0F aF bF d< #( s< o< cF dF eF M= E; o^ I 3# /# +% ^# F= z F= 3; P@ G n! z M fF gF hF iF iF iF hF jF kF lF mF nF oF L@ r! pF Y P' 58 7s 7s qF O= r9 58 58 O= q9 ja rF sF vw tF N_ #( M_ Aq uF vF wF |h _C ja ,. dy /3 xF ^D yF zF yr W_ +_ &2 AF BF CF eB ~9 b: 82 >b ~9 DF EF FF GF HF hs Qe << 2h hs Jc IF JF KF xm LF MF NF on 8t on *A OF PF QF ~E RF SF SF TF Qq NA OA Wv UF UF VF WF ;A XF w( YF ZF `F G .G ~i `v VA Qw +G WA vy @G w( #( WE #G $G %G &G *G +_ =G -G ;G >G [v 'k !w h+ h+ )$ 8> !w 8> 8> 8> Fl Yr 8> Fl Yi Yi 9> (i ~- Xr #x #x W2 F+ ~- W2 4c W2 W2 4c 4c On On '; _$ ^G ;@ #@ #@ p; Z+ T+ /G (G _G :G Is yC KB #n + Z, = . + $ M$ ; ]& # $ L$ . # = $ $ U@ . Dv & . > . > > # > . > 05 S$ & & & = & U@ ' Q$ ] X@ | > | ~ | ] 2 1 ; ~ U@ | ] ;# ~ ; ~ ; & - ~ N$ ) : &# ~ [ 5 ( 8- Z! ] ;# d [ e ( D, J= a !# 7 ( ( 7 ># ,# 7 0 8 8 6 M' a a i 6! e a 6 z: [& X$ c a h L= a' p `$ 0 r i ~[ 6G 7G 8G ~[ m L= m Z$ L= Z$ ^# 1; m Y$ `$ D /# 9G 0G aG bG cG dG eG w b' I x I $] M w z A P@ E; A :* J O@ O@ 3& P@ M A E$ U^ J E$ J O J P@ O J I@ L@ L' 0* I@ O= 58 58 G$ O= T n) O= r4 ja r9 r9 r4 58 fG gG hG iG jG kG lG =. R' ,. |h mG /3 A0 /3 A0 /3 |h nG oG pG qG rG sG Yz tG Br gg >b uG jy >b jy >b vG vG ;1 hs 2h @A x4 2h Jc LE x4 LE Se Uv Se Se 8t 8t Oq ;u Re }e [e [e =i Wf 8t =u NA NA Wv [e NA wG Wv ;v xG yG zG AG BG CG rB ml ~i ;k Qw DG EG :E FG Hx w( #( GG HG IG JG KG LG MG NG OG [v Jx PG 'k [v [v QG Nx - 7+ g, 5+ t% l' g, 7+ t% K> K> .) 7+ G* %$ %$ K> %$ i, G* G* 0+ 0+ K& *$ G* d+ 0+ d+ 0+ k+ h+ k+ -$ h+ n+ h+ m+ h+ ({ m+ m+ q+ q+ q+ !w BD m+ )$ )$ !w !- )$ Xi )$ Yi Xi Fl qt cz Yi (G #x &r m9 cz m9 G+ W2 4c _i 4c 4c _i 4c W2 _i L| uC P9 On ez nf _{ L| nf _{ f) F% L| nf ~w p; m, <~ '; m, '; <~ m, '; <~ '; '; ~w o= D- %@ +@ _$ _$ T+ Q& XG @B Da zC yC MC YG * ~* u@ -& ^. >& v@ '. x@ A@ -. z@ &. A@ +. @. ,= P D$ V P ` P@ I L@ 4, P@ +% A N@ |# Y ", +"= # $ Q$ > @ !, & $= & > L$ . + $ ]& + X! L$ = ]& V@ ] - l) > # Z, . ' % + & . & ; Q$ $ ] . Z@ ( W@ P$ Q$ Q$ =' . & f] | X@ > & | ^ S$ /& > ] ~ ^ { X@ } | &= 4 4 == } *# ## { 5 < ( ^ V~ ,# ## Y@ { d ## Y@ J] } 0 => U- [ ,# 6 7 b V$ 7 6 a e i ~# c k c a 0 a h c h 0 0 n n k h h |& q Y$ -) n p r h y % p Y$ Y$ w /# ^# ,> ^# 1; t t w ^# K /# ^# h t Q@ P@ F= M D z A G |# E$ P@ F= P@ a7 A J C, 3# Q@ M L L T P@ I T A: 3d r! tw 3d L U E^ E^ O= 7s 0* G$ V 58 r9 r9 r4 O= @. @. ja ja wr G; %H &H 0B %i $i Vz F^ F^ /3 /3 Ji A0 |h |h |h `z A0 dy *H Yz dy dy Br ~9 ~9 ~9 >b ~9 jy ~9 vG ~9 KE hs 2h KE =H Qe 2h Se hs ;u on ;u =v Oq 8t ms -H ms 13 bC 6h Qq -H Ik NA =u =u =i Wf ;v UF ;H >H ,H 'H )H !H ~H {H ]H ~H ^H /H (H FG _H :H %$ a+ G* G* f+ 0+ 0+ j+ d+ d+ f+ e+ d+ g+ k+ I* k+ m+ h+ m+ n+ k+ m+ -$ m+ h+ m+ m+ !w q+ =; !- Xi ({ !w Fl Fl Xi Yi Yi v+ Fl v+ Yi Xr n; Yr &r dz Yi W2 4c 4c _i _i W2 4c 4c 4c 4c P9 ^7 $g 5H 6H uC L| f) L| _{ _{ nf p; nf nf ~w '; _$ '; '; <~ <~ <~ p; m, <~ <~ +@ #@ :- &@ %@ '; Y+ L+ 7H 8H 9H 0H aH bH cH dH Rs [w =B }G eH au *B *B *B JD *B *B *B *B *B *B *B JD *B *B *B JD JD EC 8A Oy 9A nz PB *y *y fH `G `G `G PB PB nz %y 9A mz aE OB Ps Qs ]e bw sv |j ^n vv vv ^y gH wv hH 8w ri .z [j iH jH kH ui lH mH R> }@ =* nH j@ m@ 0& m ^# ,> s> L= ^# p /# 2; 2; I /# /# [& /# E I w A }# I I Q@ E$ K a- I O@ M J J H$ d- L M@ :* U L t> |# d- J |# |# 3& J T H I@ K) 0* qH O= O= O= 7s 4# H9 O= q9 @. rH q9 &H bf @. Ou sH $i cs W- |h L) ,. =. A0 F^ Xz /3 =. A0 Yz A0 Yz Zz Yz :C dy eB >b >b ~9 >b 82 jy tH ~9 tH vG x4 x4 2h uH 2h 2h LE IF LE vH 9C wH Se ;u 8t on on ms -H xH ;u =u yH zH =u [e =u AH BH OA OA fo CH DH EH 'A FH GH ~H HH CG IH RA !i .G Pd VA :E JH w( #( WE KH Zq XA zB JG zn zB XA - i! i! 7+ e~ 5+ t% 3+ 5+ K> 7+ 7+ %$ K> l' K> G* a+ %$ u% G* %$ f+ u% 0+ K& K& d+ Wx LH m+ i+ I* m+ m+ h+ m+ 5E 5E ({ q+ ({ m+ !w q+ q+ m+ !w ({ Fl 8> Xi Fl Fl Yi Yr MH Yi cz Yr @f NH Yr cz Yr &r G+ _i W2 _i 3c 4c _i 4c _i _i 4c _i $g ot P9 $g Dz _{ f) nf nf ~w ~w %g ~w <~ <~ '; nf ~w _$ m, S> <~ '; <~ #@ %@ [$ #@ #@ _$ V+ ta E% OH PH =e %x .y QH RH SH TH Ps UH VH *B *B *B *B *B *B *B *B JD *B JD *B *B *B *B *B *B JD JD |G 8A mz FC 9A 0A nz PB &y &y nz 0A 0A 9A FC WH XH DC Os Os Os su cw YH |j vv ZH tv `H 2G 2G xv I me .I _j Ih +I @I #I $I %I +@ V% 7@ >* p@ h# ^* _. :. v@ x$ E~ v@ .= ). x@ ). A@ 4) e- 5# G@ X J S +% ` P@ S J T Y E$ N Q@ ", +"$ ;b ]& R@ M$ ]& $ $ ]& $ & + ; V@ = > . > 0' = > = $= . k) > - Q$ Z, ; > Q$ Q$ > > + $= R$ N$ & Z, H= 2 N$ P$ S$ ^ ~ | ) ] ; & ] - | T$ ^ S$ |* # ) { ] ) X@ { ) ; { ) { [ Y@ [ X@ [ 4 4 7- 5 ( ## } 9 e $# d +# a 1 $# 3* $# 6 9 a e ># i ~# 6! ># c L= V) e a e &I ~# n Y$ h C; j h |& r `$ c s> !# ~# `$ ~# p p y C; ^# b' L= p m s> c I ,> Y$ D E N N w G w G E 5* I z I c- |# |# w F= P@ P@ z M A P@ ` m) H$ *I T H T M .~ r! r! Q J d{ V 0* tw =I E^ qH 58 58 58 58 ia -I 58 7s q9 rH 0* q9 ja Ou {z EA Wz Ou ;I A0 F^ >I ;' A0 |h ,I dy |h |h Yz |h dy dy *H Yz Yz 'I >b uH ~9 >b ~9 ~9 jy jy vG vG hs 2h y4 )I Qe hs hs ;1 !I ~I wH wH Uv 8t Oq Oq ms wG {I ]I ^I =u -H =u Ik NA OA /I NA /I Wv (I UF 'H )H rB _I :I - i! .) l' .) %$ b+ 7+ @$ 0+ K> b+ 0+ %$ %$ 0+ %$ %$ u% *$ %$ %$ f+ 0+ 0+ @q h+ h+ q+ h+ q+ m+ q+ m+ ({ ({ ({ ({ q+ ({ ({ q+ q+ ({ !w Xi 8> 8> Xi 8> cz Yr Yr Xi Yi cz Yi n; cz dz 4c 4I G+ W2 4c W2 4c _i _i _i _i P9 P9 On f) _i 5I nf 6I _{ L| 7I [A L| _{ nf nf <~ <~ '; <~ wg p; <~ m, <~ m, m, p; '; #@ +@ +@ Y+ Y+ P+ 8I 9I 0I mc ;r Is aI 7A bI cI #y bu CC CC *B *B *B *B *B *B *B JD JD *B au au *B *B *B *B JD JD JD |G XH aE mz Oy FC FC FC 9A 9A Oy Oy WH 8A EC DC JD bu Qs Qs )r dI Uo ^y bw cw ^y ]n cw 2G pu {F eI eI :q fI +m y 0b gI hI @@ N% X, U* >* -& w$ s@ <. /* /* {. '. &. $% *. A@ .= E@ #. B$ Y J #. M@ ` L@ J J J I Y H@ P@ #= ", +"0' ;b L$ L$ . = + # L$ ]& |* $ L$ ]& $ = V@ = 0' > & > ] - # o! & ' . ; - . . - > # 8- > V@ > > $ o! ; Q$ ~ 2 | N$ ; ~ N$ ^ ] ; N$ 1 ) , . - 2 2 Q$ U@ { -> *# V~ / | d 4 } 5 [ X@ X@ 5 4 1 ,# [ 7 1 b ( 6 e ,# $# d e 1 7 a k &# 7 0 0 ~# &# $# g ,# a e 7 D, ~# L= 0 ~# L= ~# p L= 0 r i [{ c [& n A~ n n^ -= p ,> m Y$ n D m Z$ y s> ^# N /# /# z G ^# G G A w E$ O@ c- H$ N I F= P@ J O@ F= 3& I 3# A E$ J iI E$ H U jI r! d- U Q H 0* H I@ tw tw tw 6B 58 E^ n) E^ q9 58 r9 rH 7s ja r9 1o Ou {z EA bf Wz kI lI =. _C mI Wz _C |h ,. dy A0 A0 dy |h A0 Zz nI dy dy oI pI jy 82 Y6 jy >b ~9 qI vG vG Ab 2h LE ;E wH x4 2h Li rI hs Re sI Uv *A on ms -H tI 8C -H 9C =u uI zH OA ;H UF Wv =u Wv =u vI wI ;v ;H ty >k VA 1z IH xI yI VA zI RA AI - g, 6+ 5+ l' 5+ i; t% t% b+ a+ @$ i; %$ 0+ 0+ 0+ G* a+ 0+ 0+ %$ e+ i+ f+ %$ f+ d+ d+ 5E m+ h+ -$ m+ m+ m+ m+ @x q+ ({ q+ q+ m+ q+ q+ !- q+ BD II Xi Xi Xi Fl Xi Xi Yr 9> Xi Fl Yr #q 3c m9 Yr @f &r 4c 4c _i 4c 4c On On On _i _$ L| _{ $g @/ On $g :- _{ _{ L| _{ _{ wg JI wg _$ '; p; p; ~w p; '; <~ S> '; <~ p; p; +@ Y3 +@ @@ Y+ xg o; KI LI MI (w bH NI Go OI PI QI -B RI VH *B JD JD JD JD *B *B *B JD *B JD JD *B *B *B *B JD *B JD JD JD DC EC EC XH 8A 8A 8A 8A aE XH EC DC JD *B *B bu Qs Qs Ny SI o@ <. C= >& 5# %% ^. ). z@ 4) 5# }; z$ D$ L@ F@ L@ Y P Y O H S S M I P@ A ", +"+ L$ L$ + = 0' # $ + > U@ $ & $= $= & > Y! + + X! $ & & ; ]& V@ # $= S$ = ; Q$ Q$ V@ U@ S$ H= V@ %= Q$ ) $= > 2 & N$ N$ | N$ > ^ & H= . ] | T- %# D, | - > | Q$ %= W@ ) N$ d d => ## W@ 1 } { } X@ <& 5 7- { X@ d $# b 6 ## 9 7 0 x0 8 d 6 $# 6 0 ( } 0 0 d e a : a e 0 a n [& a ~# L= i c h L= _# n ~# L= ~# |& h `$ q ^# Y$ L= r m h F ^# t 4* ^# @= z I 2; w w % 2; G N {& |# F= M F= A I I 1& a- m) G O@ F= a7 M h] J T L M J L H H T r! T U^ 3d E^ tw G$ I@ `I 0* `I 0* P' 58 58 58 7s r4 @. q9 q9 Ou J y0 cs .J +J G; ,. @J #J 5o Wz |h ,. cy dy dy Yz |h |C Yz Yz |h Zz Yz 9o $J eB ~9 ~9 ~9 jy @A jy tH @A ;1 =H r/ wH 2h IF wH Uv hs %J IF wH hs %J Se 8t Se {I ~I uI &J =i wG AH Wv Wv Qq OA /I wG OA OA ;H UF *J *J VA IH =J CG RA gC Qw FG VA :E -J JH w( #( ;J >J XA JG zB zB JG 1I 1I Ay CI qC ,J Ww ,G Nx Jx ,J -w qC -w 'J RG az Vi qo az q Ey qo q 3E Bl q x q qo q x )J x q HI ch x n ch n .q |u gd Fy !J gd gd kf n El 6v vo f 34 .f .f ~k ~k .f Mn Ux )2 Rk yo +x C_ C_ C_ C_ C_ C_ C_ C_ 7< 7< C_ C_ }_ }_ f3 W5 }_ W5 7< W5 f3 [_ [_ W5 F1 ~) ~) @{ W4 J| @{ t: y^ y^ ~) @{ :/ !/ B/ c~ M0 B/ A) y^ y^ [^ b] A) ] %, k' _~ _~ _~ ] k' l% k' _~ _~ ]{ 6+ u- w- 5+ i! t% g, g, l' 5+ 1+ 7+ 7+ a+ b+ 7+ 7+ b+ %$ e= 0+ 0+ G* e+ %$ %$ G* %$ *$ u% 0+ ~J 5E fh {J 5E m' I* m+ ]J m+ ({ ({ q+ q+ q+ q+ m+ ({ BD q+ ({ )$ )$ 8> Xi Fl Fl 8> 9> Fl Fl qt .B cz 3c II cz &r Yr W2 4c 4c 4c On W2 On _i On ot L| L| f) (B ~w 6I <~ <~ <~ <~ <~ m, %@ m, S> p; p; p; &@ +@ +@ _$ V+ vC ^J /J %a (J ;r _J 9E :J -B 6J ;* l@ *& q@ s@ x$ w$ !. d# -. ). e- . &. &. =. #. V B$ P X P P ` P P@ H K@ K@ P@ S E; ", +"# .( ]& . ]& 0' + = # ]& # S$ & ^ $ 0' R@ R@ * $ . & & . $= $ Q$ ] T- + = & $ ; [* V@ . H= ~ ~ | & & $ ! { R$ & S$ ; [* ^& $# ] ) %= S$ { : ) N$ R$ N$ ] ) ; /& 1 ( /& { ~ W@ /& ~ [ /& ( /& | ( { { ( b [ ## 6 5 6 Y> [ [ < 7 } 0 {# 5 } 0 i e o ,# X$ e 6 6 a F! e i e 6! ~# 0 A~ g i h n 0 a n ,> p `$ l t p h Y$ ,> 1; Z$ ^# /# t m h w m D G n D G E; {& z BD qt Fl Fl Yi dz Fl qt Yr Yi oJ pJ <~ <~ nf '; p; %@ m, S> S> '; m, '; #@ @@ V& Y+ vC qJ rJ sJ tJ uJ QH vJ Wn @s qb Aa $e wJ Ps CC *B *B *B *B *B *B JD JD DC DC JD JD JD JD JD *B JD JD JD JD JD JD *B JD JD *B JD *B *B *B *B *B *B *B *B *B NB Os yt xJ nu ]y IC nu yJ $t ou dw zJ 'l .I AJ BJ :x 3J =F Yb 0I CJ DJ *@ f$ 0@ t$ ;& x$ O- o@ w$ '& [, W> {. v{ 5# l> W~ . E@ #. R 2# 4# 2# $> ` Y ` M A G Q@ z Q@ ", +"# V@ M$ $ & ]& ]& + = p9 L$ > S$ + Q$ . V@ Q$ U@ - ' . `@ ]& ; %= - * T@ N$ # $ > & Q$ & & ; & # ; (& - . H= U$ U@ %= 8- H= N$ H= Q$ } J) { | U$ 1 d { ] ; | | H= N$ ~ ## $# ~ R$ | & ~ X@ Y@ 4 1 X@ ( } | 1 -> 7 6- ( Y> ,# 5 c D, { a 6 a 0 i 5 ( [& a 0 6 a 0 k ,# a c h 0 q> 6 L= {# 0 ~# ~# 0 e 0 1; c n r c{ w n^ `$ % L= f 0 Q{ ^# Y$ % m p 1; w m Y$ z w F= G F= E; N I F= 3# z Oz A O@ |# G A P@ E$ H$ T J E$ d{ +% T >) T J T 1# 3d G$ U^ tw 58 G$ 5, 4# I@ 3d `I 0* 7s 6B 7s 58 6B q9 r4 r9 rH @. Ou ja ja ja {z r9 cs F^ Ji Wz 5o |h :3 #J |h dy dy A0 EJ ]z Yz 9o :C tG Yz 8J jy 7d >b jy ~9 jy vG jy FJ ff GJ IF IF 5D Qe wH IF Iw hs IF wH HJ ~I ~I wG HJ tI zH zH tI &J IJ uI Qq Wv NA NA OA Wv JJ {H CG KJ Pw .G 1z =J Pw .G 1z LJ MJ :E }I =J (H @G w( #( NJ |I zn zB zn zn XA $w JG zB JG 0 |u |u j9 gd Fy Fy .x .x PJ f 34 V5 !k ~k .f 3H ~k ~k .f yo +g N9 AD yo ]k Z{ J^ 7< e3 C_ C_ C_ 7< W5 7< 7< T] 3{ `^ `^ W5 `^ `^ zo i( r8 [] X5 1c F] y^ @{ J| QJ W4 ~) @{ 8v @{ @{ h^ @{ V] @{ / 5| y^ 5> z[ r] k' b] A) _~ k' [^ _~ %, _~ %, d= d= %, _~ _~ g, k' ^{ 1+ 5+ 5+ 6+ @$ g, t% g, 6+ 7+ t% 0+ G* a+ c+ %$ e= b+ G* a+ t% 0+ 0+ 0+ 0+ d+ *$ F* 0+ RJ &$ 0+ m+ h+ m' m+ fh {J SJ q+ m+ q+ h+ ({ q+ q+ HB BD MH !w 8> 8> HB qt Xi Fl Yr Yi qt .B qt cz 9> .B TJ dz m9 NH W2 4c m9 4c _i _i 4c W2 On On 6I uC P9 _{ _i P9 On _{ _{ _{ nf ~w '; ~w nf m, m, '; <~ m, '; %@ <~ '; <~ '; '; %@ [$ Y3 F% T+ /- Gy UJ Ca VJ ti ~d YG WJ EC XJ YJ ZJ `J #y K *B au JD JD *B *B *B JD DC DC JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B *B *B *B *B *B JD *B au *B au au au bu yt .K ^n ]y nu ]n ^y tv ]n dw pu +K Zo @K #K $K %K ;r nc &K *K ^l > |@ e@ *& h@ l@ E7 d# d# w$ {. '. &. A@ -. 5# $% z$ .= G@ V .= |; H Y L@ L@ J N@ S +% S P@ K@ ", +";b ]& L$ 0' ]& ]& ]& = V@ L$ $ > + ]& = > $ & 5- > 0' ; ; Q$ . |* > $ ]& ] Q$ H= & H= $ Q$ Q$ > %= ; ~ ; T- O$ ; Z! ) Z! & ~ ; > X@ { X@ ^ 2 U@ O$ ~ ] N$ ; > . ^ | 8- , ## { ~ | [ { ) *# ## d I= } ~ /& 9 5 / U$ } 0 d d } ,# x0 } N' ># 9 ,# V) == e 6 L= j a' a c d ~# ~# A~ Q{ e a ~# c j [& c Q{ ~# 0 h L= % ]# ,! 2; Y$ o m 1; s> F n^ u p /# ^# G I t Z$ D z z B :# B I I M I N m) =K O@ M z M O@ M M E$ 3# P@ J h] S U E$ E$ >) t> E$ d- L@ G$ 3d 0* O T G$ T L ={ 58 C$ 58 6B 7s 58 qH q9 ja r4 ja Ou r9 ja Ou EA al &H -K _C lI #J Xz ;K Xz Wz Xz /3 |h .u A0 Yz Yz eB tG |C dy 7J Br 9J ~9 jy vG jy vG vG >K IF [z [z 4C ;E 9C ,K Iw vH 'K ~I 9C ]I yH *A *A {I 9C ]I Ik ^I NA BH )K OA Qq NA NA BH UF /I 'A !K ~K ~H JJ .G {K ]K bJ }I !u =J _H -J wB zy ^K /K 7z zB Lk 1I IG (K 1I Lk zB 1I 1I DI Jx qC _K EI qC qC qC QG qC qC Jx F QG wD :K -w x !G az Ey 'J q q x qo x 0+ a+ d+ 0+ %$ G* %$ 0+ d+ d+ j+ d+ d+ f+ -$ %$ '- f= i+ q+ q+ h+ HB m+ q+ $F k+ HB }K ({ q+ q+ HB ({ MH qt !w Fl Xi 8> |K |K Yr Yr cz 1K cz Yi 2K m9 4I _i 4c _i 4c 4c 4c $q On _i On On 3K _i _{ _{ ot On _i _{ nf _{ L| nf nf wg nf wg ~w '; '; '; '; '; %@ m, <~ Es p; <~ Z+ #@ V+ T+ a> 4K 5K [f aI hE 7f 7A [w 6K |G |G |G [w #y CC VH 7K *B *B JD *B JD JD JD JD DC JD DC JD *B JD JD JD *B JD *B JD JD JD *B *B *B *B *B *B *B *B JD JD *B *B *B au 8K 9K 0K ]n vv tv [x |j tv 2G pi ik ;o =t Ph 7w De aK _f a /a bK +^ 9$ o$ f@ cK o@ -& :. s@ {. {. !. &. C@ A@ +. 5# T R 2# A@ 4& T P O ` ` Q@ S J K@ P@ P@ M@ ", +"= ] + p9 .( R@ ]& * & $ ]& o! # V@ * . - %= = > = ] T- . > . . {c $ & ; *' ] # Ez | U$ ; S$ # o! > $ - ' H= & { H= & V@ V@ ; ~ ) 5- & | ; ] & N$ { 5- ; | & ; ( { { N$ 2] ~ 2 [ | / 7- ~ N$ 5 /& $# { 2 ) 5 } d d Y> 0 ,# 6 9 ,# } e k J] 7 +# 6 ~# L= a h a' 0 ~# 3] n e ~# 0 a L= ~# L= ~# e a n ]# `$ D ^# ^# _# n 4* :# % r Y$ L= p % ^# z w p r D }& F z w %> F= M A I A w M I A M P@ Q A: E$ ~& A: E$ T J L L :* L I@ L@ L =I G$ 3d O Q S G$ 0* I@ P G$ O= O= 58 58 6B 7s 6B &k q9 C$ q9 r4 ja r4 J r4 &H cf %i >I r5 dK 5o {C |h df :C dy |h A0 |h Bw Yz 9o eK dy fK |C Ck eB tH vG jy vG tH jy ~9 KE !I !I gK >K hK *A ~I iK 5D 'K wH ~I ms *A yH 9C ~I ]I jK kK NA Wv NA OA =u lK /I UF NA lK mK !K ,H EH nK ty ty !K oK }I .G pK 1z pK 1z 5z - d= %, ^{ 6+ s% 6+ g, 6+ ;- i; 6+ I& l' t% .) d+ t% $$ a+ d+ 0+ 0+ d+ d+ d+ 0+ d+ d+ K& f+ d+ d+ &$ e+ ~J bz m+ m+ m+ h+ q+ -$ h+ ]G ({ ({ ({ q+ h+ ({ ({ q+ !w Xi Fl qt Xi Fl 8> qt Yr Yi qt cz &r &r #x m9 &r uK @f W2 _i 4c _i 4c 3c _i _i NH ot On 7I f) On vK ot [A L| _{ _{ L| nf ~w _{ nf <~ <~ m, m, <~ ~w %@ '; p; p; _$ p; _$ p; Z+ V+ Q& wK PH xK 5A yK My l BK Yl [x pu wv 2j KC 'l QB >o %K yC rc CK DK EK FK U> 6@ X* X* -& F9 B= '& (. ^. x@ x@ )& !. &. 5# X G@ .= )& 7# @. C$ 2# Y Q@ H N@ K H@ #= I A ", +"p9 = V@ # 0' ]& ]& 0' # + = 0' = # V@ # V@ S$ . !, > # * k) o! $ . N$ @ Q$ . $ > S$ # $ ; # > Q$ & # N$ & - {c Q$ ~ $ N$ ] ; S$ ; | U@ | ^ `@ 2 N$ *# 2 2 T@ ~ 8- ~ S$ ~ < , } *# ) { Z@ { +# ( 1 7 } ( N$ 2 1 $# ( V$ 7 | J= &# 5 c ># -# 6 b 0 a k 0 ,# 7 a' X$ a Y> 7 ~# ]# V$ n L= ~# 0 h h l i c h 0 p `$ m h r Y$ `$ `$ ]# % ^# s> GK F= #| /# ^# 2; D I m F G w {& F= B A B E; ^# M O@ M I {& M M 8* M I 1& S S J O r! J G$ t> t> G$ G$ G$ J ` O tw qH 4# H O= @. O= 6B 7s 58 r9 58 ={ 58 @. ja rH Ou ja rH r9 cf .J HK 5o ,I IK dK ,. |h F^ cy |h dy %i Yz *H Yz Yz Zz Yz Yz Yz 8J JK jy ~9 uH tH uH tH jy KK hs LE uH 5D 0J wH hs LK 8C ~I IF ~I ~I 9C yH MK yH NK )K OK &J /I ;v PK =u OA UF OA OA ;H UF Pw ;H Pw QK Pw RK bJ 'A JJ IH 1z 1z IH 1z /H SK TK FG XA zB zB DI UK JG VK WK 1I XA JG Ww Ww 0 !J .q j9 gd Fy n T3 El Fy .x V5 V5 D9 !k V5 V5 V5 V5 ~k ZK Tc ~k +f +f !2 7< J^ 7< J^ 7< 7< 7< 7< e3 7< 7< C_ 1c W5 S] `K }_ K^ }_ }_ }_ i( W4 [} [} y^ y^ @{ 74 E_ @{ ~) y^ ~) !/ @{ ~) @{ y^ Z: y^ P! / u: Y/ D' [^ %, k' k' _~ j^ j^ |_ _~ %, b= %, _~ %, d= k' B* i! g, 6+ @$ g, i! .) 6+ 6+ i; t% 8+ d+ a+ t% c+ 0+ 0+ 0+ 0+ %$ %$ %$ G* d+ &$ m+ f+ 0+ f+ j; LH fh m+ ({ q+ h+ h+ ({ HB q+ q+ q+ ({ q+ h+ q+ q+ !w ({ Fl qt .B BD Xi Xi .B Yi dz qt Fl Yr Yr G+ L (i 1K &r _i W2 4c _i On _i G+ 4c ot ez 3K _{ P9 :- .L On P9 $g L| _{ ~w _{ v] wg nf ,; 6E '; <~ ~w ~w '; p; m, <~ <~ p; _$ (- Z+ S+ /- +L /e yK NI %c @L #L Ps Ps =B JD JD JD Os DC JD *B JD *B JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD JD *B *B JD *B *B *B *B *B *B *B JD *B *B *B *B $L %L 0K |j |j {n Ht &L [x *L Ro 1i xf =L ii |i -L .y ;L >L /b ,L `; U% 3@ ;* g@ -& q@ (. ,& q@ w$ )& =. z@ r4 &. z@ G@ .= P V P G@ L@ H P Q@ 8* A 1& J I I P@ ", +"0' = Y! + L$ # > .( R- > > ]& = # T@ Z, = + . $ > = $ = S$ U@ - & [* o! S$ > Q$ $ > # Ez $ P$ + ] ~ $ V@ H= & { | ; ' ' . & H= 2 P$ ~ ; { ) ] J) ~ N$ ~ | 4 ) { ~ ] 2 | ) T- ~ | 1 ,# | a ( /& 1 4 $# / ,# 6 6 6- $# e ( k !# D, j k ># ,# 0 !# 4 0 7 k a 7 c g i ,# n n g K= h 0 ~# L= ~# s Y$ Y$ h % n 2, 2, Z$ n /# 2; /# n^ /# Z$ m % C z w N t t y w C K }# Q@ w z z P@ O@ A z E$ M P@ P@ P@ :* |# M b- O@ L :* d- T E$ G$ T T 0* L@ T 3d 3d E^ BE 4# 0* G$ O= 7s 58 58 q9 58 7s q9 r9 Ou ja q9 ja Ou Ou Ou &H lI ;I Xz lI dK A0 |h A0 _C {C dB A0 Zz Zz |h :C Zz 9o fK fK GJ JK qI uH 'L jy vG tH )L qI )I 2h ;1 IF 5D wH ~I %J wH ]I {I ~I HJ !L zH 9C ~L {L {L zH zH ]L =u zH Wv Wv OA Wv /I UF OA !K !K ]K bJ ^L }I Pw !K /L IH -J LJ .G 1z pK (L _L :L Fl qt 9> cz 2L qt Fl W2 NH 3L 3c 4c NH 4c W2 4c On 4L 4c 4c _i On 4I 5H nf L| L| 5c On uC nf P9 wg m, wg nf _{ 5H _{ nf m, '; S> '; p; p; p; <~ o= _{ _$ Y+ G% S+ O+ 5L a 6L 7L 8L 9L ]r CC Os Ps =B JD *B bu Ps =B =B DC 0L DC DC *B JD JD JD JD JD JD *B JD JD JD JD JD JD JD JD *B *B JD *B *B JD *B *B *B *B *B *B *B JD JD JD Qs aL ^y bL |j bw RB yz [x cL 2k dL :q I eL |i fL Is gL hL iL jL U+ .* 3@ .& l@ l@ -& v@ c# (. ^. {. A@ ). ,. 5# +. X .= Y P T 1# C$ H$ O@ J J P@ S +% G A M@ ", +"]& J$ * # + = !, $ # % > $ = S$ & = 0' $ T@ = $= = $ > S$ & ; S$ ^ Q$ . ] & Z, = ]& . T@ $ ; {c > $ ' - ] N$ Q$ ~ & * > Q$ H= 2 @# ~ [ ; | ~ - ~ ^ ] X@ & { | ( ~ ] ~ R$ [ { [ { { Y> ( } 2 *# a [ 2 | 4 { W@ $# W$ 6 6 *# c ,# 9 i 3] ,# a L= ># a ,# kL L= L= ~# 6 a 0 e 6 L= o r X$ [& e L= h V$ ,# p m `$ q Y$ s> s> `$ ^# C m m K 4* ^# z 4* Z$ F Z$ /# w z I N /# I I m) z {& N O@ S E$ a7 N O@ P@ n! A M P@ Q T 3; d- T T 0* d- L Vf I T I@ L 4# tw ia 0* 58 C$ 58 58 q9 r9 lL 6B r9 mL r4 Ou q9 r4 ja nL {z HK Wz Bk `z &H HK #J _C A0 _C Wz tG dy Yz Zz |h Zz oL ]z |C |C 9J 82 ~9 jy <3 GJ jy jy pL vG ef @A KE 8C tH qL wH ;u IF ~I IF hK MK rL 9C MK yH ~I ]I PK HJ &J wG ;v OA ;H sL UF /I /I tL ;H sL ,H JJ ]K uL -J ]u JJ bJ GH 5# ). *. F, e- $% 5# 4) I@ P 1# S L L@ ` E$ S A H$ K@ S S ", +"k3 + ]& V@ * M$ = V@ R@ ]& # # + . ; = $ & - = . + * = = Q$ + . S$ > & U@ $ # * > * = ] # > & & ; ; ~ H= V@ ; $ Q$ . - X@ N$ > ~ 5 ) ] 1 | N$ Q$ ] ) ; ^& > ~ ;# | ] ## | W@ ~ N$ ~ d | < ## X@ 6 Y@ / &# 7 a Y@ 6 c < $# } o ~# Y@ 8 3] 0 7 7 a i a 0 k c ,# n ~# L= h 3* ~# n p j ~# r -) -) ~# 0 n u q _# u `$ `$ q m Y$ ^# p m C ^# {& :# `$ w `$ ^# w W) I %> 2; z c- P@ A A %> O@ J |# OL I ` E$ M I I >z A |# O@ P@ A: L@ t> E$ J U Q L d- G$ 4# 0* tw O= O= 58 7s qH 4# 58 q9 rH O= ja q9 ja ja ja J J PL sH QL PL ;I Wz lI QL 5o `z Yz dK dy dy dy Zz dy Zz Zz :C RL 9J eB SL vG vG tH vG tH TL uH UL ;E KE KK uH KK qL IF %J ~I ,K VL ]I ~I HJ WL 9C wH ~I ;v XL ;v yH -u NA tL UF ;H ;H NA ;H ;H ;H /I UF YL nK JJ oK [I QK nK ZL IH 1z TE ^H vL /H -J 1z yI XA zB DI `L CI DI JG 1I JG DI 1I M QG sK Jx ,G qC QG 'G 'G .M 'G qC rC :K :K +M @M xL :K Bl ;w q q #M -w q x CB rC `w x x Tx Tx $M sC Vr T3 kf gd T3 n El El Fy El Fy .f ~k .f !k .f ~k ~k .f .f Ux yo ~k ]k qa Rk ]k Z{ )2 J^ C_ Z{ e3 7< 7< e3 C_ e3 e3 1c W5 O~ }_ }_ W5 [} [_ _1 [_ 1c #g ~) ~) (~ E_ @{ ~) y^ B/ @{ C' ~) y^ V] V] i^ :/ ~) u: S( z[ / b] b] A) k' _~ %, b= _~ %, b= %, k' %, %, %, b= d= 6+ k' f, 3+ 6+ g, 5+ i; g, 5+ 8+ t% c+ l' t% j; 0+ 0+ d+ 0+ d+ b+ d+ d+ d+ e+ K& f+ e+ 0+ I* e+ ]J h+ $F &$ q+ m+ h+ h+ q+ ({ 5E HB HB ({ q+ MH ({ 1L qt Fl Xi Xi .B .B .B Fl dz |K Xi .B NH On pJ 3c NH 4c 4c W2 4c 4c _i On On ot _i On On uC L| uC @/ 5H 6I s0 L| '; ~w nf ~w nf nf '; '; '; m, m, m, '; #@ m, <~ <~ p; Z+ T+ Q& 1A %M &M aH *M =M -M #y [w Xn Os Ps *B *B JD [w Ps UH ;M Wn JD JD JD JD JD JD JD JD JD JD JD JD JD DC DC DC JD JD JD JD JD JD *B *B *B *B *B *B au au au *B >M Ls ,M 'M tv vv ^n ]y |j 2G )M 2j ND ;o Zo me Ph |k !M mk ~M {M iL ]M ^M +^ |@ /M W* W* -& (M (. '. u@ v@ A@ !. )& !. -. &. +. G@ +. C$ O H Y S 2# P@ S H$ K@ 1& H$ A ", +"L$ . L$ # + = L$ > 1) = # > > Z, > # S$ & $ X! = > = + ]& > . 5- > . o! Q$ ; & Q$ ; & S$ ] ; . N$ & U@ Q$ - ; | & V@ ] & & N$ | & ; 7- ; ] 1 ; ) ; ^ 1 , Q$ Z! X@ 2 ~ < ## 2 / ^ , J) [{ ;# 7- | 2 4 | d J) D, $# } J] e 6 } Y@ { } k N' ,# c [& 0- 6 7 a b k h h c h h 7 h L= L= `$ s> 0 L= h ~# r L= e /# Y$ m v h % (# p E, z 4* s> G ^# 1; n^ `$ Y$ ^# G z x `$ w D o^ A I G I S Q@ I H$ n! M P@ A D J H$ A: P@ T T Q U G$ H Q E^ 2# 3d 3d U^ 0* 3d P tw 0* O= tw qH _M tw rH 7s 6B O= :M rH q9 ja Ou {z PL PL sH sH 5o HK Vz y@ k' |_ %, k' %, k' A) .! _~ Y# b= b= %, B* 6+ u- d= ;- s% 6+ @$ 8+ @$ 6+ t% 7+ ;- b+ c+ c+ 0+ 0+ d+ 0+ d+ d+ d+ d+ d+ 0+ &$ Bs 0+ 0+ i+ &$ d+ 5E h+ I* q+ m+ HB }K q+ ({ }K HB 1L ({ HB ({ MH qt bM BD bM BD Gl qt Fl Fl cz Yi Fl Fl dz 1K M jM wv bL bw $t [x eE ^y Mh kM ik uj `o _n _n ,r lM mM nM oM 5G pM +^ '~ ;* A= m@ q@ v@ :. O- ^. {. A@ A@ +. 5# (* ,= E@ 4& R F@ Z 3; 1# P@ J }; H M A P@ Q@ Q@ ", +"+ # ]& + $ ]& 5_ & + $ > + = ; - > Q$ $ $ $ L$ . }* $ %= & ; . > & = # > - > U$ ' 2) Q$ ; . & - U@ X@ Q$ Q$ N$ | U$ > . & Z! N$ Z! ~ / . ; R$ 2 R$ ] 2 P$ ~ ' & | 7- ; *# /& 8- X@ < V~ == ~ } 4 < ( ) N$ Y@ ~ { 4 [ J= [{ : 7 6 a a i b e ~# ,# 8 8 {# ,# 6 ># a ~# 7 e c a j 6! A~ n n c 0 `$ 0- ,> l Y$ h % s> Z$ p t m {& qM :# t 1; p p 2, m ^# /# p N G G D A w o^ G I .~ P@ O@ A j4 m) O@ :* M z z M O@ O@ P@ Q T Q T t> |# d- pF I@ r! A: L I@ jI 3d 5, I@ E^ 0* 7s O= 7s mL 58 mL 58 7s {z @. Ou 7s ja sH J bf Ou rM sM EA &H tM Wz dK Ji |h Wz A0 A0 Zz |h dy |C Yz Bw eK Zz eK 'I vG vG uH jy vG tH vG vG uM KK uM !I 2M IF ~I ]I wH wH vM hK wM xM yM yH )K HJ yH yH lK zM ]L lK AM /I lK OA /I /I OA ;H UF ,H EH BM *J HH KH .G .G 1z ^H .G pK 1z G S ", +"R@ # $ pH > |* $ 0' & M$ # T@ # Z, $ . ; $ * M$ X! Z, $ . Q$ T@ & Gc [* # . $ ; > > T@ $= & > ] | ; Q$ V@ ; N$ U@ | S$ - ~ ; ] H= o! 2 %= ) S$ %= N$ P$ ~ ~ ; R$ 2 & } Z! { *# ) ;# d 2 ) ( ) 1 6 6 ( Y> 4 d q> V~ +# 1 } b a $# '# ,# ># q> b d e a a ~# 0 [& d $# $# a o 0 0 ~# L= ~# 2* h ~# L= Q{ {# `$ c h s s> ~# ^# m q t Y$ m `$ Y$ p t 2, % v p 2; Y$ D F= m w w G ^# G G {& G I I G N %> M m) M P@ I I A H n! Q A: P@ E$ 1# L 3) r! d- U^ S J r! r! A: @N #N 0* 4# 7s BE 58 E^ 58 7s 7s $N 58 r4 q9 Ou rH Ou Ou kI Ou .J %N &N sH Wz 0B &H #J _C |h @J Ji |h *N dy Ji Yz Yz 9o eK Yz RL =N vG >b vG tH uH tH tH tH uH 2M 2M rL 2M KK IF -N 9C ;N !L ]I yH PK >N ~I {L HJ ]I ]I uI wG )K /I aJ OA Wv UF Wv ;H UF ;H bJ JJ mK bJ ]K -J ;k 1z -J 1z (H IH fJ pK (H FG ,N .! f, 1+ 6+ i! 7+ ;- 3+ $$ t% b+ 0+ 8+ 8+ d+ 9+ 0+ d+ d+ 0+ d+ %$ 0+ e+ m' &$ F* m' m' F* {J ({ q+ I* ({ ({ n+ ({ q+ ({ q+ HB HB 1L ({ BD Xi Xi ({ HB Xi Xi qt qt bM .B dz Yr qt 2L cz 4I 4c pJ oJ On On 4c 4c ot 5H On On ot On ot ot 5H nf _{ @/ ot 5H $g L| [A L| ~w ~w nf ~w ~w <~ <~ '; <- S> m, Z+ p; '; _{ f) xg ^N /N (N 8L MC _N :N . 0# z@ )& &. B$ Ld 4# L@ L@ O Q@ H Y A J E$ A K @% ", +"L$ M$ ]& ]& + # + $ . # + # $ $ T@ $ A; ]& * R- + . [* V@ # Q$ ' $ . > U$ %= & ^ ; $ $= ' & | ; 2) =' & & & - - . Z@ ; > . > %= ] > ~ | | U@ *# { 4 ~ T- J= 7- X@ N$ *# N$ N$ 2 { ^ $# Y@ J= $# ( ( 1 7 4 ( 6 } ,# ( } N' } 0 7 ,# ,# B; b V$ ># a 0 7 $# b a' 8 6 a' 7 ,# {# c p 0 ~# e ,# ~# V$ ~# {# ,> % r o ~# n 2, ~# n h /# b' m `$ p q p! v c{ Y$ C D w D )> F= D w 2; I P@ 7s r9 rH 7s q9 7s @. ja {z E@ ja ja %i {z bf PL sH Vz Vz _C ,I >I 5N #J Yz Zz Yz dy Yz Yz |C Yz 6N |C 7N 8N qI tH vG 9N tH jy tH uH KK gK hs KK KK 4C ~I vH qL yM ]I 8C zH tI rI yH yH wG ~L BH 0N BH /I aJ aN /I BH ;H UF UF bJ JJ oK BM BM bN BM vI 1z RA .G :E .G /H CM ^H vL cN dN 7M eN fN WK 1I 1I 7M VK gN hN `L WK EI ,G rK iN sK QG 'G OJ 'G 'G :K jN :K :K 'G :K 'G #M @M .F `w kN `w x RG CB x x rC .F CB kt TG YK Tx lN Vr n Fy EB gd gd !k !k !k Fy .x Fy V5 .f V5 !k !k 34 AL ~k V5 6v Sc Vx J^ Rk mN 9e AD e3 e3 e3 C_ 7< Z{ e3 C_ e3 C_ C_ W5 S] nN e3 [] }_ 3{ i( K^ H{ T] r8 F1 ~) h^ 74 @{ U] @{ @{ y^ @{ ~) :/ y^ V] B' E_ V] `' `' K{ b= c~ D' A) k' k' l% b= %, %, }+ u- B) %, f, |+ s% g, 6+ f, .! @$ I& 6+ 7+ t% s% t% $$ a+ b+ 0+ t% oN d+ d+ d+ d+ d+ e+ &$ K& e+ K& i+ m' F* 5E &$ pN qN ({ 5E |L HB q+ }K ]G q+ MH ({ JM HB HB BD Fl bM bM 1L qt Xi qt Fl |K .B Yr cz qt |K .B NH On 2K 3c 4I 4I On _i On On ot $q 5H ot ot rN 6I uC uC Hl On ot 6I 6I _{ _{ <~ nf wg D- wg %g <~ <~ S> m, '; '; <~ p; L| G% /7 Q& sN #a tN vJ uN -q Vn Io Xn Os Qs wJ #y =B au *B JD =B JD JD |J >M DC *B DC |G |G |G DC JD DC JD DC JD DC JD DC JD JD JD JD JD DC DC DC DC DC JD JD JD *B *B JD JD vN wN xN JC JC Gt /n /n yN 2J 2J *t Zo +K uj `o Jf 1N cH kb %a zN AN Y+ 6$ |@ +& -& h# x$ s@ :. ^. ^. p, ). )& 4- .= (* z@ E@ E@ G@ E@ L X R M@ 3; Q@ E$ P@ K@ M G ", +"+ L$ ]& BN $ . ]& L$ L$ . $ $ # # $ > $ U@ . # . * M$ # * = $ $ k3 & U@ S$ [* & S$ & # ^ ' ; & Z@ 2 N$ |* $ * Q$ & & W@ Q$ | X@ *' . Z@ /& ) H= > ) X@ ( ^ ~ O$ CN | 7- } 2 N$ { %= & { ( [ { d 2 7- $# ,# 6- ~ [ /& $# { d $# J= 6! J= 6 ,# Y> 7 < ,# a $# b e 0 e ~# n q> } k {# n A~ n ,# k e c g {# n c a c 0- n C; K/ Y$ l Y$ % `$ q % ^# D 1; C w F= % m m 2; w 4* C w N N w A O@ z 2; Q@ F= I E; F= q! N I O@ Q 3; T Y L' T G$ U^ H G$ qF L H d- E^ T `I E^ O= DN EN 6B @N @N 58 7s 6B 7s 6B q9 @. r9 {z {z Ou {z Ou EA FN Ou .J nL >I GN ,I bf HN dy Vz IN 9o dy dy A0 Zz |C eK oL dy |C FJ JK tH pI JK tH 2M uH vG tH [z [z 2M 2M qL [z vH %J yM 9C JN wH ~I VL 9C HJ HJ zM zM Cx kK ,H dJ KJ sL Qq bJ ;H ~K ;H bJ JJ ;H nK bJ nK SA 1z eJ [I fJ 1z 1z 1z -J vL KN gN LN MN NN NN ON DI CI PN QN !N qK RN SN sK rK SN _K :K QG }L :K QG :K QG :K 'G 'G OJ }L F #M .F qo F ;w x kN <~ _$ _$ p; p; f) S+ E+ XN b YN ZN >e `N O .O 'q Os Qs Qs Ps [w JD *B JD Ps Ps RI *B =B DC JD DC EC XH EC DC JD DC DC DC JD JD JD JD JD JD JD JD JD JD DC DC JD JD *B JD *B JD JD JD JD CC yt yv Yo Yo [x ou dw 2G 2J +O Yg @O #O ;o Az $d $O tt %O &O *O =O ($ 4$ o$ m$ -O r$ O- >& c# v{ {. ). +. +. %. (* =. A@ R X V z$ X G@ S P J n! S J J E$ J ", +"L$ R@ + $ . + Z, L$ ;b $ . > }* > > . 1) U@ > }* - > Q$ ^& $ $ ' ] $ & $= U@ ' T@ | 2 ; > Q$ * # . T- N$ ; S$ & ' > # Q$ . = | - & H= X@ ~ %= > | { { ## /& | ^ - & X@ 2 ] { ] ~ [ ## : W@ : [ ~ ## == d ( 6 : ( ## 1 ( ,# D, 2 6 i $# 6 a 6 2* ,# i d &# ,# a k i i ~# 0 c i i ~# L= c p c X$ h Y$ r 0- Y$ c Q{ 7 (# G @= ^# p m ]c % 0- V| F G #] w :# {& :# 6* m Q@ B A A F= G A A I G z 3# P@ m) ;O H$ n! P@ L 3; T a- M >O U d- J 3d r! G$ J 0* 3d T pF 0* T 58 tw O= 6B EN 7s 7s 7s 6B 6B r9 Ou FN r4 ja {z Ou {z J PL {z &H &N EA Wz ,O dK Wz A0 'O )O Yz dy 9o |C dy |C Yz oI 6N 6N !O eB KK jy jy tH uH KK jy uM uH uM gK KE KK ~O !I 8C {O uM yH ]O wH 9C ^O yH HJ aJ xM {L OK )K OK /O BH Wv ~K UF (O bJ /I bJ bJ JJ ;H bJ {H .G 1z _O =J 1z -J -J LJ :O x$ q@ ^. c# !. p) ;. x@ z@ #% z@ z@ }; . &' #% .= T L@ P L@ A K@ S A M@ Q@ ", +"# ]& ]& ]& = Z, ]& ]& + > = o! T@ . Z, ]& $ . > = > > . - * {c & P$ . + > S$ > ' U$ ' Q$ > U@ & P$ ; %= > ] ~ $ + - & > > + N$ P$ > ; ~ X@ ~ Q$ ~ ; { ) } V~ 2 | ; ; N$ ## | ; { | 6 6 / { 4 1 2 } *# ( { | d [ 6 [ ,# d $# e b 9 d V$ d 9 } 0 ( a e 6 $# c L= r {# 6! *= M' n L= C; ~# n L= 0- Z$ ~# h p 0 n ]# 1; p ^# {& % `$ Z$ Y$ }& 4* z ^# m F G ^# b' N w N M c- I I F= x |# c- O@ A |# A A o^ O N@ I :* H 3; | + k) S$ & S$ ' . & S$ & $ . ' & *' %= ] ; . R$ %= Ez R$ | > Q$ * & ; U@ $ o! ] ; | N$ ; | { > Q$ | ) ~ ] ; +# { 4 ; P$ %= 7- < / ; | | { / 7- [ ~ ~ &# ( /& { N$ X@ d 7 b [ 9 0 a ,# 7 ,# c ,# k 6! ~# L= 6 i 0 9 i 8 j o a 6 o {# 2* 0 6 a *= 1, p n h {# n % Y$ n 2, o Z$ {& w q r `$ m 1; ~& G D /# {& % m C `$ $] A B M G 8* F= I M O@ E M d{ 1& O@ Oz J M d{ A: Q L ` SO *I T J H L@ U^ G$ L@ G$ G$ #N U D$ qH 58 tw O= 58 @N 6B 7s 7s 58 6B 6B 6B TO {z J UO Ou -I {z Ou wr #J EA I A0 Yz A0 Zz eK Yz VO 7N 5N |C !O tH >b tH tH KK uH tH uM uH uH 2M qO 4C WO uM 9C *A iK HJ ]I =v XO xM 'K XL zM HJ yH NK ~K Wq UF AH /I ]K ,H JJ ;H ;H nK ;H OA UF vO nK ^H vL YL wO wO 1z LJ YO vL pK YO ZO `O !N P .P DI qK +P VK qK !N DI `L DI qK 5O iN CI 'G 'G QG 'G OJ 'G QG .F :K 'G @P #P OJ ;w :K Bl .F CO `w CB P >e -F sf Kt HL #y Qs Qs Os =B =B Ps Ps JD JD JD *B =B Ps RI 'q DC JD JD JD JD JD *B *B JD JD *B au *B JD au au JD JD JD au 7K 7K 7K LO @y au JD JD JD *B JD *B NB yt ,P ]n [x ^y ou ]n tv ^y `y 'P jk )P !P me qd mh ~P =M Ca {P ]P #f <~ 4@ ,* i@ -& m@ -& v@ w$ = A@ A@ ). =. 4# 5# 4) E@ L@ .= G@ H H J@ }; S J T 1# N Q@ C, ", +"+ V@ + + $ $ + + = ]& $ = . X! - . $ & ^& k) * # |* Q$ . T@ $ ; . + ; - + . $ U@ ] $ N$ & & ' S$ & . . S$ H= * > . S$ . %= ; N$ X@ | - ^ 2 P$ %= N$ 4 2] Y@ d 1 N$ =' 8- %= 2 2 ) [ ## < } W@ ## W@ x0 { -> ## Y@ ## 5 } b 9 ( b / d -> b D, b 7 ~# 6 6 a e ## 7 $# 7 ># n a a p h ~# 0 L= L= p o ]# 3] ~# L= h p n 0 Y$ p ~# @= :# Y$ _# ^# m 4* b' Z$ 1; B G }# u w z z F Q@ I G F= n^ I N O@ c- O@ I O@ A M M Q J :* M :* T E$ Oz h] O@ L L@ tw #N 3d ^P 0* P' U U^ 4# 4# BE E^ &k 58 qH 58 58 7s 6B 7s 6B 6B :M Ou 6B rH J Ou {z Ou .J &N .J Wz sM Wz nO IN A0 {C dy dy Zz Zz Zz Zz |C *H Zz fK oI pL uH ~9 uH KK KK 2M KK 9N KK sO uM /P /P /P (P rL *A _P 'K {L )K yH {L )K HJ {L VL 9C tL )K sL tL dJ ;H bJ aJ :P Vw ]K ;H

6+ J> s% 5+ u- 6+ 6+ .) ;- 1+ I& l' 7+ %$ b+ 8+ 8+ ~J %$ e+ e+ e+ F* e+ d+ 0+ e+ RJ Bs e+ m' F* 8P pN q+ HB ({ q+ ({ ({ 1L BD 1L HB 1L HB MH MH Fl BD bM HB MH |K qt .B .B qt aO dz |K |K 4I 4c &r $q _i On UN On _i _i ot ot 5H ot On ot 5H On uC _{ $g JI LM JI nf _{ 7I wg nf nf wg nf 7I '; <~ '; '; _$ '; V+ /$ C- 9P 0P _N aP ;L bP ]r Ps Qs Qs Os Os Os Ps Ps =B =B JD JD JD =B #y UH JD JD JD JD DC DC DC DC DC DC DC JD JD JD au *B JD JD *B *B *B au au kz iM 7K ,F JD JD *B *B DC *B yt +e ]n ]n ^y dw gH ou dw 9r Oh cP +O UI .e 4j Fe dP eP fP gP hP iP +^ X% '* :; m@ j@ x$ w$ {. A@ x@ ). &. )& . .= *. @. D$ J@ =. }; G@ P S J P@ K@ ` J z M ", +"M$ # ]& $ > + ;b ]& V@ jP 0' M$ . + ]& . L$ ]& > 1* * > # . L$ ]& }* H= ]& R- $ & - > Q$ ' ] . & = & %= > !, . & Q$ ] ; A; . ' | N$ S$ N$ Z! ] & %= & X@ T- | 5- 1 6 2 { X@ X@ - | X@ 2 | 2 W@ 2 b{ < : 7 < / ## /& ~ /& 6 <& 6 < 5 [{ 6 e < a [ 4 0 6 J] } 3* 7 c *= 0 e h h c o 0 t' 6! a o e q> ~# c ~# X$ _# r K= Z$ j % m q % m % }& _# h 4* ^# p :# {& (# w C G z N b' x I A A F= I Q@ I B c- H$ I o> I M h] M P@ 3# O@ E$ S c' L :* 3& G$ L@ G$ 3d G$ kP r! d{ I@ 0* qH lP E^ qH 7s EN 7s 7s 58 58 58 $N 6B q9 y@ r4 HK {z r9 bf Ou &H ,I {z dK PL mP dK @J /3 >I oO Zz Yz Yz Zz 9o nP Bw |C |C oI oP uH jy vG KK tH uH tH uH uM 2M /P qO 2M /P 4C pP &J qP rP >N yH MK OK XL HJ HJ {L XO sP KJ 'H UF BH NA ;H tP QK 3M uP dJ vO BM ]K bJ ZL =J {K .G -J LJ -J CM 1z ~. ,. z@ E@ @. E@ L@ J@ P ` D$ H L@ Y M@ S z J I A ", +"S- ]& + R@ > $= J$ L$ M$ # . Z, Gc # Q$ - + p9 # S$ Q$ + $ $ M$ $ . p9 $ X! (& . & & # S$ ^ & > > & & * ; H= $ %= ^ | N$ ) | N$ %= Z! | { S$ ; Q$ P$ ~ X@ ~ - { [ - [ | N$ & & Q$ | ^ | Y@ 1 [ 6- 2 } < ) { d 2 ~ 7 [ $# == 6- 6 &# 7 7 a $# d c ,# ,# [& ,# a c c 0 ~# ~# 2, e 0 z: W$ n ~# K/ k i L= c z: p h Y$ h 4* Y$ V| n V| ^# % Z$ `$ ^# t D ^# ^# C /# o/ ^# m 4* m w w W) ^# A j4 N I w x z I P@ #] J A |# Q q! o> 3# o> 3; S r! A: S U DN L@ K) #N U^ =I tw 3d G$ tw #N #N `I BE 7s 6B O= 6B 58 7s 58 mL E^ 7s ja E@ -I Ou J ja Ou {z QL MP lI NP FN dK Wz |h |h OP 'O Zz |C Zz 7N |M fK RL Zz |C PP vG vG 1M |M 9N KK QP uH uM uH uM KK /P uM uM /P NK WO qP 4C ]I ]I {L {L ]I XL )K 0N RP tP aN >H wG cJ dJ Wq aJ 3M uP ;H cJ cJ ZL YL nK 5M 5M SP pK LJ vL -J LJ 1z o Jf =Q bH -Q &K ;Q >Q X+ ,@ .& g@ -O k> x$ h# v@ (. A@ &. z@ &. -. z@ .. .= V ` S ` 2# J H E$ M H H$ S |; A ", +"+ - + ]& $ + R@ L$ + # + 0' > p9 + U@ $ 0' #^ . ; $ $ > * * - H= & + ' . . ] o! ,Q - ^& H= $ > . # . & k) & > ]& & ] T@ & | # ; | ; =' N$ & N$ H= | %= | [ ] { %# 2 N$ ~ { W@ X@ 2 7- { [ |, ^ , ] ^ $# 2 d ~ 7- 6 ,# d [{ 5 ,# $# < e d 0 6 7 0 a 3* ,# ~# [& 8 9 i ,# a e n !# r ~# s> `$ n {# *= 2, h s> ^# r m _# |& }& 4* r % w % F u Y$ B [# m _# ^# I b' }# % n^ D m ~& w W) I m I x {& M A 8* O E$ Oz E$ G O@ O P@ |# L D$ J i5 P@ A: d- T 3d 3d G$ G$ L@ U^ 'Q )Q 3d !Q tw O= 58 O= mL O= 58 6B 7s E^ 6B Ou ja J q9 {z J Ou Ou HK QL S; k/ D' b] k' <' %, %, %, %, b= Y# f, A* %, k' 1+ i! s% s% }+ %, 2u 6+ 1+ +$ I& s% 1+ 3+ 8+ t% e+ J& t% e+ e+ e+ e+ d+ F* CP e+ 0+ d+ F* I* CP &$ HB ]G 2Q Q 5E HB 1L 1L HB }K ({ ({ HB JM 1L HB 1L qt .B HB MH |K |K |K aO .B |K aO 1K 1K |K On _i $q $q o$ -O l@ l@ :. ^. ,& >. x@ 5# .= ;. +. E@ +. z@ 4# H H$ L@ P@ P@ P@ Y H O@ S Q@ Q@ ", +"]& V@ + = 0' ]& Z, Z, ]& + ]& !, + + ]& ] ; pH .( - V@ X! ; T@ Q$ X! $ Q$ 0' ]& - $ & ^ U@ = {c & 5- ] Q$ > | 2 N$ Z! > ^ Z! & > ' > & H= U@ | X@ Q$ 5 N$ Z! { { N$ ^ ) ~ N$ N$ & . Z@ W@ [ N$ 2 { ## ~ [ d ) d q> } /& d ( d d ) ## ( 6 ~# ,# a 7 0 [ 7 c ># ~# ,# {# a X$ q> 7 0 0 -# c n r n c _# {# [& c *= r n `$ ~# V$ h !# p p n ^# #] /# t h m B w n h -) (# m /# N F= F= b' w I I 8* G I N w P@ z H$ O@ M 1& ~& M h] |# M A: 3& O S P@ U |# U^ Q U^ U^ G$ L@ 3d pF DN G$ Vf tw tw E^ 7s 7s mL 7s 58 6B mL mL mL 7s ja {z r9 {z J ja FN cQ dQ / d~ :/ r{ D' k' %, b= b= k' b= Y# d= B) %, b= 1+ s% 5+ 1+ g, 1+ 2u ;- s% $$ 7+ 3+ 1+ I& t% 8+ 0+ d+ J& d+ d+ d+ e+ d+ e+ e+ e+ F* d+ F* RJ CP F* ({ .Q qQ rQ ]G ({ ({ HB 1L q+ ({ bM BD HB 1L MH bM qt |K Fl qt .B .B bO dz Fl qt dz UN 1K sQ pJ 4c 4I _i tQ On _i On On On ot ot ot ot ot LM LM 5H dM nf _{ _{ HO LM LM ~w Es S> nf nf nf ~w '; '; S> <~ p; _{ F% P+ NH uQ vQ wQ xQ iE yQ zQ AQ Ps Xn Qs Qs Xn Ps Ps Ps #y #y bu *B *B =B Ps $s UH |J JD JD DC JD JD JD *B *B *B *B JD *B *B *B *B JD *B 7K au *B JD BQ au 7K 7K au 7K 7K + + + > . %= & o! Q$ $ = ] ; . ^& Q$ [* . - ; S$ Q$ ; ; S$ . N$ | H= > = T@ > Q$ T@ H= | X@ | N$ X@ S$ ~ { { ; ~ { ~ => | | ~ ] Z! { d { | d ~ 6 [ W@ X@ 1 ( X@ /& V~ | } ( &# 7 *# 7 $# } k ( 1 g n ,# 8 ~# ~# e 7 ~# L= ~# k L= c Y$ ~# s> i 0 C; {# L= r c{ {# :# r 0 `$ n Y$ p n Y$ h D y2 ^# ,> y2 t b' ^# ^# m `$ b' % ^# z 2; G c- M G C O D$ U^ tw 4# `I G$ qF 3d 0* qH 58 !Q qH 6B 7s TO 6B 7s 6B 7s rH @N r9 r4 {z Ou Ou FN {z {z HQ HK sM lI Wz eQ .J Wz dQ :C &N 'O |C Yz Zz dy Yz fK dy |h nP EJ fQ uH uH pL IQ JQ uH KK KQ tH gK uM uM hQ uM hQ LQ 'K hQ hQ iQ &J ]I ~L )K yH )K zM zM XL MQ uO mK OA ;H 3M ,H NQ JJ bJ #w nK OQ YL {K PQ pK ^H SP -J CM ^H M JD au au *B *B R 5Q au *x Az .R ou `l ou /n |N xv /n +R @R ar 5g Az #R MD EQ MC kb $R %R &R T+ L% 3@ 0@ ~* -& s@ w$ 7; A@ ^. ;. &. =. &. &. G@ C$ E@ V D$ T I O P@ S J J Q@ M J I ", +"J$ = $ V@ + # [* + $ $ + $ # E! = + . > P$ ' - . . . = Gc ; . }* Q$ = }* & + & ]& - > S$ ' $ ; $ Q$ ] k) 05 . ; + ; H= ; N$ | H= N$ ; %= > ; ~ ; ; | X@ ~ ) ( { ; { | 4 & 2 J) ; ) ) } [ ~ [ } } 4 ) 6 d 1 4 6 e ,# 7 ,# V~ vk 6 Y> k ~# 7 } e ~# k 7 h a 0 0 6- 8 e 6 f {# ,> p s> s> h r L= n t k l s> s> 2; `$ 2; l Y$ ]# t ;) 2; `$ m Y$ Z$ n % w m s> ^# G b' Q@ z w I z |# 8* 2; 1& F= c- F= M E$ d{ J A O@ L c- J C, Q E$ L c- r! 0* >O 3d 3d G$ DN tw tw O= O= `I @N 6B 58 58 *R 58 7s &k -I 6B 7s -I {z {z J ja J {z J MP kI Ou dK Wz cQ HN =R IN cy -R Zz Zz *H 5N Zz nP |h nP fK fK PP 1M ~9 pI ;R tH tH KQ 2M KK uM KK /P /P uM _P /P rL >R hQ ,R ^I &J 'R {L {L )K XL )K /O RP aN (O ~K aJ OA /I nK JJ ;H nK nK NQ bJ

05 | . $ . ] S$ N$ ) & N$ & ; 8- S$ ; N$ P$ [ | ] ## X@ ' N$ {c U@ [* ; 4 6R ~ ) { N$ ) & 1 ) ^& 1 ## O$ | ## ) / } < $# < < } 5 { 3] ,# : V~ i 8 5 [ ,# 8 0 c Y> 0 b 6 {# 6 7 0 [& e V) } ~# s> Q{ Y> h n p ~# {# `$ h Y$ `$ e Y$ `$ s> `$ 4* 2; h Z$ D m p t m {& Y$ y ^# 4* F= D w w ^# % G I z w z M I A 7R O@ d{ E$ M M E$ J O@ M O 3; 3; |# o> t> qF #N 3; L 'Q 'Q G$ G$ 0* 3d L@ I@ E^ BE !Q @N 7s mL 6B 7s 6B 7s rH 58 6B mL ja J ja ja {z cQ {z kI EA sH =R dK sM lI mI [M `z 8R {Q |C dy |C |C Zz 9R |M 0R 6N =N pL GJ aR oP tH KK uH !L uM >R /P qP /P uM hQ /P rI hQ hQ bR {L tP )K HJ XL zM RP )K MQ 9C aN aN CH aJ nK ~K ]u :P JJ vO nK vO YL

> |* Q$ = # $ Q$ }* > $ . ; . Q$ > T@ . ; ; . o! . > 2 & 2 Z! S$ *# & 2 N$ P$ | ] T@ N$ N$ ; & | ^& 4 Y@ ] 1 / 05 { ) ; - ( /& ] | [ ) `@ $# ~ a 6 ## } 6 | D, 5 ( d ( b $# 6! ,# / 1 6 d D, 7 ~# ,# ~# ,# 6 M' a e 0 ]# 0- 0 c n !# 0 |& L= h ]# s> h c 0 h p q D p (# m m t u 4* b' `$ G /# B ^# m N E; ^# w N /# Q@ A m z 1& >z A Q@ AR I M M d{ O@ H$ P@ M M r! L E$ M@ J *I O r! 3; #N I@ 3d G$ 0* d- DN 0* qH `I _M tw 6B 7s 6B ia 58 q9 -I 6B q9 rH Ou Ou {z {z {z cQ IK EA bf &H MP mP HN {z dK mP Zz BR CR dy dy fK Yz Yz DR fK ^Q |C EJ IQ 1M IQ oP uH uH vG 2M KK uM rO qP WO KK rO uM _P WO _P iQ ER yH XL zM ER )K XL zM MQ XL FR Wq ~K GR RP Wq ]K dJ Wq HR ]u IR JJ nK

M DC JD *B JD DC [w =B |J 5Q DC JD JD *B JD au au *B *B *B *B *B *B JD JD JD JD JD JD au JD JD JD au LO 7K LO 7K *x `R wv `y pu S KL pv .z .I uj uj @K me qd ^j fI !M .S sf +S fr @S Fc ,; y] o$ r$ t$ -& t@ d# :. ^. D! +. 5# !. V ,. F@ E@ L@ H 5# 4# D$ A H$ S M +% I O@ z ", +"]& #S ]& k) T@ # $ L$ M$ .( L$ = + 0' ]& # ]& ]& . S$ * & U@ > Q$ # ' Z, - ; |* Q$ ; # | ; & %= =' ^& $ . S$ ; . Q$ . $= =' Q$ . & ; P$ ; =' N$ > | $= o! P$ N$ H= ] *# Q$ ] 2 +# [ 4 4 X@ [ ( , X@ ## | ~ ~ N$ ~ } { N$ ( ) ## 2 ( ( ~# { 1 q> Y> } ~# k c 6 6 ># 6 a W$ *= z: e ~# k ~# ,# i c ~# ># a r 0 7 s> 0 0 _# r n h ~# n ;) s> `$ p m p `$ w n^ p 4* b' `$ V| p Z$ r 1& m :# C I 2; `$ 8* I $S 7R z Q@ }# T^ c- 8* E$ E$ P@ E$ i5 |# m) E$ Q M L T >O U d- pF 3d r! =I 0* 0* K) 3d #N 3d E^ tw tw 7s 7s 58 tw 7s 58 7s 6B 6B J J sH J FN Ou {z sM {z J dK %S &S *S QL eQ 8R 'O 5N =S dy Zz Zz |h 0R 6N |C -S ;S 0R >S /Q 2M 2M 2M 2M KK uM uM 2M qP WO WO vG aR uM WO uM qP ,S 'R 'S {L MQ HJ zM {L MQ RP MQ )S RP BH (O 3M uO NQ JJ PQ uP Vw QK YL vO nK vO (H /L YL (Q 1z vL _Q KN KN KN $r !S :Q ~S [Q 1I {S ]S AO zO qK nQ CI `L hN TQ _K 5P qK 5P ^S :K fR @P 'G #P /S OJ :K OJ fR 7O FI 'G az )J (S `w #M FI CB q q `w `w F %Q JD JD JD JD JD *B JD *B JD JD *B au 7K *B JD JD JD au *B *B *B JD *B JD 3S LO 7K au Ms 4S jA /n )B 5S ;o 4j |i 5q =t @K (n 4q 5g Az 7w .p 6S Kt YI Jl 7S pM #@ 4@ 3@ h@ -& u@ b# /* ^. !. x@ =. &. &. e- B$ G@ _* G@ L@ Y L@ O P@ M S I A A P@ b- ", +"# 0' ]& V@ + = #^ .( # # 8S .( > .( L$ . + . - & . ]& > . = = & *' Q$ ! . $ - & ; N$ ; | $ Q$ }* ; 2 > Q$ =' A; U@ & S$ ; U@ 9S | N$ ; ; { | S$ N$ | | { ^ | ] ^ /& / 6- ~ ) X@ N$ 5 X@ 2 2 | W@ ;# N$ ~ ) W@ { W@ } b } *# ( d Y> { 6 } $# 0 i a 6 7 b ># 6 a V~ 6 6 ~# q> 0 [{ 0 7 ~# n |& q ~# ,# n h ~# ~# b' n n Y$ ~# u Y$ p n p c r Z$ p `$ Z$ G D p :# M= w G m m F= z F= m 1& I z A F= ~& N@ A O@ 0S 8* 3# E$ |# H$ I a- 3& r! 3; T O A: Q 3d pF 0* C, =I `I 3d pF G$ ^P 3d 0* qH 6B @N 7s 58 7s $N 58 7s 7s q9 {z ja J {z J Ou Ou aS PL bS J dK cS Wz Wz sM ~Q >I 6N dS 8R *H dy 7N Zz |C |C fK pI nP ^Q fQ tH vG eS tH qP vG 2M vG uM 2M uM uH WO >R 2M {O hQ hQ hQ >N yH yH XL zM {L HJ RP fS XL XL AM mK aJ uO FR ]u cJ Vw uP cJ nK JJ JJ

G iS KR qK !N NN qK !N WK DI _K VK VK TQ TQ XP TQ _K jS }L iN iN }L OJ :K 'G |Q OJ }L }L #P ZP 'G rC (S kN `w #M `w x CB d fr uS vS Z+ 4@ wS :; ;& h# u@ v@ (. %% =. !. 6# A@ >. z@ .= X H Z 4# 2# E$ E$ P@ O@ +% ` M O z ", +"]& p9 0' !, ]& . ]& + + BN + - $ ]& ]& + + & # # L$ L$ . > o! & N$ & - ] $ . ] $ ~ %= U@ ; Q$ > o! & - > *' H= ; Q$ =' > ] ' Q$ ] Q$ . ~ & Q$ & & X@ | N$ W@ 2 b{ J= ~ < ~ X@ ] X@ 6 [ | ) [ W@ { { d / [ { < ( 1 X@ => $# xS d 5 } d } 6 } 0 W$ W$ d o ~# 6 e ,# 6 a ,# i k e a ,# o {# h h {# L= 6! Y> r p Y$ n ;= ,> c s `$ _# Z$ h ^# p 2, p `$ D m F= t w F % G `$ ^# w b' E; M z G z M O@ %> I E A M h] J n! n! J A: O 3# P@ O@ T C, |# qF pF G$ G$ ^P #N L@ tw pF yS zS 4# qH 58 ^P 7s 7s 58 6B TO 7s AS HQ HQ rH HQ Ou ja Ou -I BS {z %i CS Wz cQ &N Wz DS ~Q GN IN IN ~Q Zz 5N EJ |C nP 6N eK pL nP 7N =N KK ~9 9N uH ~O uH uM (P sO ES 9N 2M hQ /P rO _P hQ _P _P 'K ]I XL aN )K jQ FS GS AM ]I bN RP uP GR HS dJ IR FR aJ HR IS nK vO vO JJ [I JS CM wO vL KN q NB JD JD JD JD *B JD JD *B JD JD DC *B au au au >q BJ YS xv gO cw 1i yv ZS $j !P {F {F `S 4g .z )n 2f T .T xK oM +T @T P+ O% 9@ g@ p@ m@ t@ /. q@ T' A@ !. l> 5# 5# &. 5# 4# L@ H@ X P A Y ` b- Q@ M S M @% ", +"J$ L$ p9 J$ I/ + = . + ]& + # . I/ ]& $ = > S- + . ' U$ ; $ & - Q$ ' ^ & Z, ] o! ; > - > . . . & & & Q$ {c . #T Q$ S$ ] ; > `@ . U@ R$ - . > ~ 2 ; N$ J= N$ W@ & | { W@ { => | O$ { | ) 6 ;# ] ## V~ ~ %# 7- } N' 5 4 &# ( ( 8- d ## a d 6 b 0 0 ,# d c 6- 7 ,# a a q> c ~# 6 ~# a 9 o K/ ~# p Y$ `$ ,> e 1; r p s> ,> 4* p Z$ p Y$ s> h ^# q C Vj p Z$ ^# ^# D w % t w I q2 G Z$ $T w K {& z z z G >z n! I M M J T^ m) d{ #= J J 3# 3& d- J 3& L T G$ #N #N #N #N ^P 3d 'Q 3d `I qH 3d _M qH 58 $N $N 7s 6B mL $N mL $N -I Ou ja -I :M J {z {z J PL %T FN Wz DS eQ dK @J |C @J Zz 6N |C |C |C |C |C /Q nP 6N 6N pI jy vM 1M LQ 2M KK JQ {O gQ KK qP &T WO _P hQ iQ hQ hQ 'K ]I FS aN VL zM zM XL AM ER cJ :P aN Wq uP NQ #w QK bJ nK QK Vw

T _S qQ 1L 1L 1L HB HB HB ({ HB JM 1L 1L !- 1L JM JM nS Fl Fl |K |K |K .B |K aO aO |K |K ,T UN uK aO dz vK On 'T ot LM uK On ot LM 5H On LM ot 5H LM LM HO LM ~w ~w wg LM ot wg wg ~w S> ~w ~w ~w _{ f) .^ S+ )T !T ~T vt YR aI 1N Ho Qs Qs Qs Qs Rs NB *B *B Os bu bu JD *B Os #y #y JD JD JD Ps JD |J 5Q JD JD *B JD *B *B bu =B Ps Os {T BQ *B JD JD JD *B JD *B 7K au au JD *B *B 7K uR yt mi 0r |N {F |x ]T 8w )B XM pi qu zz iH fO ^T .( . ; L$ ]& = # + > $= . ' > T@ + $ > S$ Q$ ! ; ; > . S$ U@ ; > & Q$ ^ . Q$ ' ; . > ; Q$ $ ; | Q$ > N$ Q$ ] ; > (& | ; ~ N$ ; X@ 2 ^ 4 W@ ) /& { 2 *# , N$ # 8- | < Y@ 8- [ W@ 1 ( 5 ( /& 9 D, xS } 6 6 7 6 } c ~# d i ( a [ ]# ,# a V~ $# e ~# ,# 6! ~# a [& ~# Y@ Z$ 2, 2, ]# L= n h Z$ Y$ -) @= ]c `$ r 0 (# h p p y /# p q ^# :# F= p /# V| w w N w 5* F= $] M A F= G M 2; 1& M ^# K z z d{ |# |# 3# ` d{ Q |# r! T O M 3d ^P #N 3d #N 3d 3d G$ pF r! #N tw E^ EN 3d qH 6B 7s 58 $N mL $N $N 6B ja &k J ja 6B {z J {z FN cQ mP FN sM &S lI dK :T Yz 8R CR *H fK Zz fK Zz 6N nP |C nP fK oI tH gK KK KK 2M uH !L x$ w$ :. gT F, W> A@ A@ A@ >. -. .= .. V X J H S A %> P@ Y P@ I Q@ ", +"0' ]& # L$ ]& ]& ]& ]& # . > + + $= + L$ . X! . L$ R@ $ L$ ]& ^& $ $ > ; o! - ! - & & ^ ; U@ ] ; Q$ > $ Z, . ~ ~ ] [ N$ | ' ; & & %# . & T@ ' ' | & & & h) ) ~ $# [ 7- U$ 4 | X@ | 2 [ Z! 4 ~ ( $# 2 T$ # == W@ 6 6 { d | [ { J] c6 6 *= d a ~# D, 0 d 0 6 e J] ~# ~# ,# a 0 ~# {# h 0 a j e Y$ p ~# `$ L= 0 n l h n^ r q s> ^# ~# ]# h Z$ :# `$ t Y$ D C m m % ^# w G :# G N ^# N F= O@ M 8* w z M M P@ M Oz x Oz E$ 3# o^ O@ S 3; O 3# P@ O@ P@ A: 3d d- U^ 3d #N G$ tw tw 0* U^ tw tw qH _M 3d @N 7s 6B 6B 6B 6B 7s 6B 7s q9 hT :M Ou rH rH J FN Ou J R mT KK uM WO hQ /P {O uM qP 0N nT hQ /P 4C tP XL RP ER XL )K zM RP XL oT aJ IR AM uP Ix Vw pT Ix uP ]u nK YL

T 4T 4T }K ({ ({ JM HB Bs ({ 1L lS lS lS xT 1L ({ JM lS bM |K |K qt |K aO .B aO aO sQ |K |K |K yT sQ TS ^R ot _i ot ot UN LM 5H 5H LM 5H 5H 5H LM zT LM ot 6I ~w s0 wg s0 LM _{ _{ ~w '; ~w nf _{ L| f) o2 E+ AT BT @I CT _J DT jM )e $Q Qs Os bu Qs =B JD *B Os Os Qs bu JD Ps =B Ps Ps JD *B *B JD JD *B *B JD JD JD *B au *B =B Qs ET NB 7K *B DC JD JD DC JD JD JD JD JD JD bu JD *B bu Wn FT cw /n kh GT HT IT JT 'l /y KT LT 1j ,B QB ,f 3g MT MC kb Sh NT OT S+ S> |@ e@ ~* u@ {* t@ w$ ). '. 0# v{ .= .= z@ R @. 7# .= G@ #% C, H M M N@ S M@ P@ H ", +"0' #S R@ $ = ]& . $ ]& ]& $ 0' * ; $= = $ V@ . . . $ . * . T@ ]& o! $ o! $ ^& . > ]& $ T@ S$ R$ ; . ' - = & U@ N$ ; %# $ ; > > T@ . . > H= o! U@ ' N$ ; ' { ; | N$ { [ 1 U@ { ] | & - | | { R$ 2 $# ( ) | 5 < { [ ## 1 X@ } ~ q> J] ( ,# 5 d d 7 j 6 $# d ~# 7 e ~# ,# 7 e a k n L= a' h j |& p h 0 A~ X$ n `$ r s> q _# s> u ]# :# u 4* {& D p o m ^# /# 4* /# ^# ^# p Y$ D G m D 8* m M G 8* N T^ 3# I Q@ PT A A Q QT =K M M@ L :* i5 3# E$ n> O r! H qF 3d #N 3d RT G$ d- L@ #N K) qH 7s `I tw O= 7s @N 7s mL 7s $N $N $N AS 6B ja ja q9 FN J J {z FN bf ST R WT WO qP uM /P qP ~L pP WO pP [T {L XL )K MQ aN tP RP :P AM KJ Wq Wq AM Vw AM JJ ]K uO cJ Ix PQ XT vO YL hJ }P YT ZT vL KN /+ b= k' Y# b= %, k' ] k' u- b= Y# |+ u- %, s% s% |+ I& 3+ 3+ ;- $$ 8+ |+ $$ $$ .$ e+ $$ $$ _S CP F* F* _S _S _S m' qQ QS 8P kS RJ SR 1L lS 1L 1L 1L HB 1L 1L lS JM JM JM bM lS lS xT cO .B |K $U |K qt |K %U 1K bO |K aO bO aO sQ uK &U _i tQ oS &U ot ot ot 5H ot 5H 5H ot LM 5H LM 6H Es nf nf ~w *U LM ~w S> [A _{ nf _{ 7I ^7 W2 k= =U Ga Tn +s .y md @H -U ,q %s Qs Os bu *B *B JD JD Os Ps =B Ps Ps Ps Ps JD DC |G DC |G .H OB ;U [w |G |G bu |J DC *B @y >U `Q #s JD JD JD JD JD DC DC DC JD |J kz WJ DC DC DC $L 2g Mh =L ,U QD KC 'U DQ {F ]T KT )U 'P )j !U 4f fI ,r ~U =M {U %R ]U P+ =@ 4@ m$ o@ -& {* 4_ '. ). 5& A@ &. =. .= 4& 5# ^U E@ S D@ P L@ L@ J H G b- A K@ x ", +"0' 0' ]& ]& ;b R@ L$ . 1* $ # + # ]& + <{ J$ T@ + + > $ > 0' L$ + & $ - - = . > R$ $ $ & . ] . Z, [* P$ 5- Q$ > N$ ; | & & H= N$ $ ; $ ) { %= ] { 7- | H= ## | Q$ N$ Q$ ) ) ) W@ 1 | 2 X@ N$ - { X@ *# ~ { | ) ( [ 4 W@ W@ ## } ( } 4 B; } V$ $# 9 7 d Y@ 7 q> 3] c ~# 6 a Y> ,# 0 n ,# 3* a a a n {# L= h [& r |& ,> h W$ m p L= L= g r m m /# C W$ Y$ ^# 0- Z$ `$ ^# /U Y$ Y$ C t z m D w 8* w 1& G I ^# O@ z N 8* Oz T^ 8* 3# 8* c- O@ 8* SO c- *I J O T O *I O L 3d 0* T (U L@ G$ #N 3d 0* 3d qH qH _M qH mL 6B 7s $N mL 7s 6B -I 58 7s Ou {z Ou HQ FN FN J _U J cS DS HN GN %T HN 'O ^Q dS |C Yz Yz dy |C 6N fK /Q sO nP >S tH vG ~O TL uH ~O 9N X, 0@ j- u@ o@ >& >& !. d# *. -. (* A@ .= C$ J R H L@ Z ` P@ P@ 1# H A z N@ b- ", +"# 0' L$ R@ p9 L$ [* # * # $ + # L$ 0' $ $ = . ]& . Z, T@ + M$ Q$ T@ $ # + Q$ . S$ = L$ - > Z, ] & & ~ > N$ & ; ]& Q$ > ; & Z! | . Z, & | . | H= ; H= 05 X@ | ! | H= ~ ~ 4 ) ) 1 W@ V~ ] X@ Z! Z! ( 8- & 1 } / [ [ ( } 6 /& $# ,# ## 6 6 } &# 7 Y@ 7 c M' : ~# a 0 0- o W$ D, i c 6 L= W$ a 0 c {# 0 h c 2, {# n s> n p n c r ~# 4* m L= Z$ Y$ c L= Y$ 2, B ^# y2 2; r ^# z w w Z$ z b' z O@ z M c- G I 1& T^ G c- c- H$ P@ m) O |# E$ O Q O O@ O T T L i5 U hU iU ^P 3d G$ pF 3d #N G$ @N _M qH @N @N mL mL jU mL $N 7s 7s kU mL 6B BS HK :M mL AS BS J cQ PL q #s au vN iM QU DC *B `Q LO BQ au LO RU *B au au au *B 7K SU Xk TU TU Nf z WM eE /n jA UU kk ;o VU ,l WU Hj Jh +H EQ XU YU Zx ZU `U +^ n, X* -O ~* {* (. H! ). ,& z@ 5# +. @. .= .= i~ G$ V P 1# L@ J P@ A I H$ I Q@ z ", +"- = ]& J$ J$ ]& [* R@ L$ I/ ]& $ + J$ . 0' + $ $= Q$ k) . V@ # . $ $ S$ = # - 0' > T@ Q$ = Q$ Q$ Q$ ; > Q$ & - R$ N$ ; > X@ ~ N$ > ; . $ $ | ; & Q$ ; ] ~ ; X@ ~ ~ ^ 2 { ; ~ ~ | X@ ( ^ N$ | d | /& /& ^ 5 ( ] V~ [ , 6- -# } ) } d D, V~ ( 7 0 ># 1 a 0 n s> k g d c o } d o ~# ,# 0 e ># e h k n o p h s> Y$ 4* ]# l n n n^ w 5* {# Y$ h n h `$ #] z )> F= G w G G w m w a7 1& T^ G F= z N w N 1& V M M |# #= d{ O@ 3# |# 3; M c- P@ SO |# T r! T |# E$ L@ #N 3d 3d U^ 3d 3d #N G$ #N ^P 3d @N .V ^P mL 7s mL 6B 6B $N UO mL mL $N J J Ou ja FN J J {z dK J iT #J +V =S dK |C 'O 8R |C 6N fK 6N Yz @V fK ^Q pO #V 0R $V %V >R 2M sO KK KK 2M ~O VT mT _P J IR >V [P KN }P ,V !R 'V )V 1T QQ UP UP YO UP UP UP ~S !V ~V VP `T sU _K yO yO wU {S PN _K XP xU {V jS ^S }L OJ :K :K }L rC }L fR OJ }L ]V }L }L RG FI HM CB x ;w `w `w x `w `w x Cl yD CB ^V yD yD .x yD +F Fy Fy El !k .x /V Fy V5 V5 ~k V5 V5 .f .f UG 34 .f wo +f )2 {k Sc /1 J^ C_ Z{ J^ 7< 7< J^ 3{ C_ C_ 7< 3{ W5 `^ `^ }_ C_ `^ 3{ `^ ;] j/ i( ~) C' G{ C' @{ ~) @{ C' @; *+ C' ~) ~) `{ @; Q) C' g! Y# <' r] r] Y# /+ b= b= `' %, b= %, %, s% |+ _+ /+ A* s% 1+ |+ 1+ s% 1+ z* p% $$ t% $$ `# 4+ oN 8+ c+ F* 8+ $$ d+ CP CP F* F* CP CP CP _S pN 1L |L QS .Q HB 1L JM 1L lS lS 1L lS xT lS MH |K JM xT aO aO |K |K bO |K .B .B (V bO FU CL aO 3U UN _V |K UN uK ot oS 5H 5H ot ot ot 5H LM LM HO 5H LM LM LM LM uC nf ~w s0 6I ~w nf <~ '; nf _{ L| O> UR :V xe o .e .z -y 8V 6S eP /e 9V 0V 1] ^@ w; >* ~* D= q@ ,& ). ). !. &. &. e- R .= #. 5# H J |# P Y L@ S S A P@ I Q@ ", +"V@ + + M$ R@ # ]& ]& + # = & ]& L$ = ]& . ]& ]& + $ = ^& $ [* $ = - * 1) & + . Q$ . * > & + & T- Q$ =' 2) U$ ' O$ $ & ; |* # > & * ~ > ; > . [ | ' & 2 X@ 7- 2] ) | | | ## N$ 2 ) U$ | & /& ; | <& X@ } Y> 1 : < { 9 b } /& ( 0 5 X@ < Y@ 1 6- $# ,# i 6 0 < 6 } k $# ~# 0 {# i i k 7 n ~# m Y$ h r ,# n p n m p c{ Y$ ,> ;= 4* u t V| m n r -) s> p D {& 2; G {& D D T^ /# q I z ^# G z P@ x N z 3# M P@ V 1& J M 0S 3# h] P@ E$ r! aV A: P@ E$ G$ H L@ G$ ^P #N G$ U^ U^ G$ G$ 3d #N `I ^P `I bV lP 7s 7s mL 7s mL $N cV mL 7s 7s {z FN J -I aS J FN J IK &N IK #J MP %T dV IN A0 mP fK 6N nP fK fK 0R 0R fK nP 0R nP eV $V tH uH 2M fV vM /P /P >R gV hV iV uM ,S WO qP ER jV kV lV RP RP mV Vq aN RP GR RP GR Wq Wq uP HS uP Ix HR Vw Ix Vw KH [P nV #G

q@ O- :. v@ ,& {. e- )& z@ X 5# $% H@ 1# P H Y J n> K@ 2& A H G A ", +"+ M$ + p9 ]& 0' ;b L$ 0' ]& = $= = = + > $ $ . 1* 0' ]& o! * * . & ; + 5- V@ $ $ & Q$ ' |* - $ H= ~ ; S$ - . $ ; & %= N$ ] ] =' T@ Q$ ; ~ - - 2 %# 2) ' & | { ^ ] { X@ | | { ] ) N$ 2 { ] | Z! 1 *# [ ( Y> W@ 2 7- $# ## 5 } 7- B; } 5 { ,# ## d V~ ~# 5 ,# 2* 6- i 7 o ># L= ~# 7 a ,# [& n ~# 0 c 6! z: 0 Q{ o ,> 4* Y$ % L= c ^# :# /# p ;) % `$ a t :# 2; ^# w B w /# z 1; G N {& p }# B m 1& O@ x w A 8* N G M M n! A HV 3# 3# M E$ J M o^ L 3# d{ T K@ r! 3d L@ G$ 3d #N 3d ^P #N #N #N #N _M 3d _M tw @N 7s 58 6B 6B mL -I mL 7s 7s FN J :M AS aS {z ja _U kI eQ cQ GN HN iT dS dS Zz -R IV 6N 0R fK 6N pO fK jT 0R nP JV 9R QP KK TL KV pO LV R 2M hV >R kV &V _P MV ~L MQ RP NV XL XL MQ GR HS GR Wq OV pT =V Vw =V IS aN =V hJ HR YL PV pT YL QV RV KN SV ZT JR YO UP qT QQ !R QQ JR ~R ~S VP yO yO ~S +P +P ON zO +P VK TV OR yU jS qK iN :K OJ :K :K fR }L #P }L ]N OJ }L fR )J }L ]N qo kN CB q `w x W ,W -& h# = = /* &. {. &. E@ H@ @. 5# 9* T P V H@ T P@ S M #= H$ P@ A F= ", +"$ !, $ ]& ]& M$ ]& L$ 0' .( l) L$ $ [* + 0' - > ]& * . # . - Q$ $ + |* ! = > . Q$ = & Z, . $ # = & | & N$ ; U@ & %= (& N$ # Q$ | Q$ + ] ~ ; | 'W ~ ] Q$ ) N$ & Q$ N$ & ) %= > ] ~ ~ J= 4 S$ /& 4 | | 9 /& < [ d 2 } Y@ [ ~ $# ( } N' V~ Y@ %= d ,# ~# V~ e a 0 3* J] Y> L= c ~# 6 L= k c 6 h a 0 6! n c 0 ,# L= 7 Y$ h V| ]c ~# r `$ h /# 1; n p -) h ^# :# `$ n Y$ 4* {& :# G m ^# O@ ^# D {& % w f^ F= M I M P@ G I T^ 0S c- M O@ M U Q@ )W O Q E$ d{ E$ qF ` L |# qF Y d- G$ d- pF #N G$ ^P 3d #N lL G$ lP `I E^ @N mL EN 7s AS 6B mL O= $N BS rH ja hT HQ Ou FN FN BS !W cS sM dS sM dS =S 6N |C dS ~W |C |C nP jT fK #V pO lU JV {W IQ eS >S ]W ^W /W (W KK ~O _W mT 2M uM :W rP M |G RI 0L au *B yt Hj eE /n xv xv gW |N cU hW kh DQ +e 4f xf %l .e &n Ih nd Do _N ;a iW jW @@ 6$ o, kW x$ b& d# w$ :. !. A@ !. 0# +. 9* T X F@ R X C$ P P P@ J P@ H$ I H$ A ", +"= $ # L$ <{ V! ]& k) $ 0' T@ 0' M$ + = L$ !, V@ ]& 0' # $ ]& . ; > R@ ; > S$ > N$ o! = V@ ]& > . ; = N$ ] U@ . T@ ] * ] ; & [* ] ~ U$ > ; | Q$ ; | H= ] S$ X@ | 2 | N$ | U$ N$ R$ ) / & *# N' ) ] < 05 N$ 2 ( ## | [ /& 6 ) V~ } ## 9 d } a } { Y> b J] $# 7 0 n b 7 d 0 e ~# ~# n a c e n ,# 3* 0 h e 0 0 L= ~# L= Y$ p s> )# K= Y$ p `$ Z$ `$ Y$ |& u t 4* _# K/ -) 2, w 2; E `$ #] {& }# z m n^ G z D #] I G M I o^ o^ c- 3# T^ 3# 0S c- c- |# Oz 3# d{ J |# #N H c- G$ 'Q L@ C, G$ 3d tw pF U )Q _M #N pF #N 4# _M `I tw $N mL 6B mL 6B 6B TO mL $N 6B {z HQ mL J {z J _U cV DS DS CR CR _U Wz ~W fK dS mP |C Zz 0R nP fK nP pO lW pO 6N KV oP mW DR DR nW oW WT pP >R J *T (Q _Q qW nV 1T UP lQ _Q UP ~S 1T QQ lQ UP 2E yO yO 2U }U rW +U sW tW +U FM 5P PN jS xU yU yP }L :K yP @P OJ OJ }L yP }L OJ }L {N 7O .F 6O (S Y# b= b= %, Y# %, %, b= b= %, H& Z# A* %, |+ |+ |+ p% p% _+ .$ D* |+ 1+ D* #$ |+ J& CP F* F* CP *P _S CP _S CP CP CP e+ >T uW qJ SR JM XV pN JM HB JM 1L JM JM BU 1L JM 1L lS DU nS xT 7W :S aO |K qt .B aO aO aO aO bO 3U $q sQ ^R 3U bO bO uK 5H _i /R /R ot HO 5U HO 5H ot LM ot LM LM LM 5H s0 nf ~w nf @Q ot uC _{ f) _$ P9 k= vW Be Is wW WS yQ xW )r }V Os Xn Jo Yn ZJ YG yW YG 5V zW 4V AW 4V 5V -M BV 4V BW &x YG 4V #n 6f dW 4V 4V YG 4V 4V }R }R }R }R CW 4V 4V 4V 4V 4V #n YG BV jz W W Fo >M DC =B |J Ms dU /n jA /n jA WM JT 9T ju $W DW !P p :x ji #j $K EW FW GW XI `a %a HW g) IW 1@ e@ =& t@ :. (. ^. d# -. >. G! A@ 5# O= E@ H M J O 1# S M O H +% Q@ 8* 1& ", +"+ ]& + + <{ J$ + p9 + + R@ $ # S$ $ ]& > + . @ > . $ $= = . & . # $ > * $ * ] $ L$ ; ; ] N$ ~ > # $= & & N$ ; N$ . ; ; [* * ; N$ . $= P$ N$ U@ N$ X@ ; ; N$ 4 ] ~ ~ H= N$ { / [ 4 : { 7- *# 7- a V~ { ;# } 9 d Y@ Y@ } 6 /& } 2 *# X@ { 6 8 Y@ ,# $# g K/ ,# D, x0 e D, 9 e -# ~# c 6- {# L= k r o r L= ~# Y$ Y$ n 2, A~ c h L= 2, 4* ^# w _# |& ^# t C t h q q % w @= /# b' w 5* ~& {& x z JW B KW 8* #= O@ 8* 8* 8* A P@ 0S c- 8* 8* 8* 3# |# A 8* 3# LW *I E$ c- MW Vf G$ L@ 3d 3d 'Q d- r! G$ DN K) 3d NW #N $N 6B qH mL 6B 7s $N *R 58 mL hT 6B $N :M FN hT J J _U cQ J QL . 7# ,= 7# 5# 9* M@ L@ Z H H L@ P J@ I O@ H$ A N ", +"+ L$ ]& * ;b L$ M$ R@ L$ ]& + + + X! + . ;b $ > = J$ V@ * - ^& - ]& L$ . $ $ > # $ . ; ] S$ . . - . S$ $ *' ; | ' = ] N$ + ; ; Q$ *X . { | . ] o! $ ; & ] / H= 7- ] 2 *# ^ | | { | ~ X@ ~ 7- J) | { 2 X@ ~ ) 6 / d ,# ~ } ,# 9 { a } Y@ d $# 8 a a ~# D, ,# : 6 c ~# ,# +# c L= 8x ~# n ,# g h L= p n Q{ n ~# Y$ `$ tA K/ r u V| Y$ q Z$ 4* `$ ~# `$ q t 2, p t :# F t :# D /# N m p G A % G K #] z G G 8* n! O@ M M M n! =X 3# QT O@ 3& Q@ SO >z J |# P@ E$ E$ r! I@ G$ 3d tw U^ `I L@ pF `I G$ !Q #N qH _M E^ -X 7s $N $N $N tw $N mL 6B $N $N J $N $N {z J _U J cV MP lI mP &S iT ~Q CR Zz 'O IN fK |C fK fK 5N Zz ;X lU >X lW ^Q mU mU >S ,X DR /W rP ~O mU VT 'X )X ,S :W MV ER RP ,R zM XL Wq MQ XO GR zM Wq AM uP HS !X Vw nK uO RP Wq HR >J YL

J OQ OQ *T =T vL SP #G uL ~S QQ 1T 1T pV 1T ~S [U ~S qT UP +P `T MS {S +P NR +P @U +P +U ~X 5O iN xU XP ^S yP OJ {X }L OJ 'G }L :K fR :K OJ ]N OJ .F FI SG CB )J 7O FI x 0 n i9 xD Fy El `e .x El gd !k V5 .f .f !k .f ~k tg ~k V5 Mn Tc J^ /1 ^1 34 9) Z{ J^ 7< ^1 F{ Z{ Z{ 3{ 7< J^ 7< 7< `^ [] K^ ;] 3{ ]~ 3{ 3{ S] s~ O~ H{ ,^ z) C' C' C' @; @; @; @; C' @; 0= `{ Q) B' C' 4> ]X W# g! <' /+ b= Y# b= %, %, %, b= ) Z# c= ) |+ p% |+ `# p% |+ |+ .$ D* p% D* 3T .$ +$ CP CP CP d+ _S CP CP _S F* CP CP CP _S >T RJ CP }K ^X qJ IO JM HB CU 1L HB lS JM lS lS lS lS |K DU 7W 7W 7W |K bO aO aO bO bO 3U bO bO 4L /X aO ^R UN ,T _V &U vK /R /R 5H 4L LM /R vK tV tV HO HO LM 5H HO 5U s0 wg JI Es 5U oS $g L| ,; W3 Cs (X Yb _X 9U :X =. A@ z@ A@ &. B$ V Y P@ J H O H$ J H S F= M M@ ", +"]& ]& R@ = ]& ;b R@ L$ ;b + + # + L$ > + $ = # = $ + }* !, ]& $ Q$ ]& 0' V@ ; $ % # $ S$ > = $ & & $= | ; = . - U@ ; ; U@ Q$ . S$ $ ; ~ ; . > S$ Q$ H= W@ 2 | | H= | U@ N$ 4 ; 2 ^ N$ ~ Y@ { # 2 ] } 2 } 2 %= / 7- W@ d Y> $# } < ~ Y@ [{ d b B; < e !# 5 $# a ,# a 0 d ~# L= 0 ~# 0 L= *= 3] 0 E, q 0- n e tA c c ~# c 0 n u s p Y$ F Y$ p `$ ~# Z$ 8 Y$ c q 4* % m t w B I c- m #] w O@ n! w n! z w I n! O@ c- T^ M I O@ O@ V Oz U d{ >z A: c- A: E$ A: >O qF pF U^ G$ 3d ^P `I `I #N ^P 3d )Q )Q tw _M @N _M )Q E^ $N $N mL AS @N 9X 6B 0X 6B AS Ou J :M kI _U _U J J MP QL cQ ~Q iT HN dS 8R @V cy nP |C fK nP aX |C fK pO nP pO nP DR bX !O nW cX IQ /P 2M ~O PW gV ,S ,S hQ ,S ~L dX ER hV eX )S tP XL RP Ix HS AM GR oT HS :P Vw AM HR Ix Ix *T

Y# Y# q] ) /+ /+ b= k' Y# %, Y# b= ) 2+ p% <+ `# `# `# |+ `# `# `# `# RR `# RR D* RR `# .$ jX CP CP CP 4W *P CP CP QS _S CP _S QS _S QS .Q 1L XV kR BU kX 1L 1L 1L xT xT lS 1L lS JM :S bM lS CU xT aO |K |K bO |K aO aO |K 3U 3U FU 3U UN UN bO 3U lX LM 5H 5H 5H 5H LM LM LM 5H 5H 5H HO LM HO HO tV HO nf LM _{ s0 5H 6I _{ 94 G+ Yr mX _f nX XR oX xW eO $Q pX XR fW 2X +W BV YW fW jz -M -M dH BV @W fW jz 2X -M @W YG -M zW YG 5V zW 5V fW W 4V 4V cW 4V 5V 5V 4V }R 5V CW }R 4V 4V BV |X fW -M `W qX |X BV yW rX Ny sX /n jA xv eE pu )B jA Ro gW *t 2k 5g tX uX sz #d ke 7g vX -F Hd wX xX yX =@ 3@ 0@ :; l@ -& 4_ ~. ). -. ). e- z$ $% zX E@ .. 4# H@ O= >) D$ ` H P@ M@ P@ K@ Q@ ", +"]& + <{ # + ]& + ]& . # + V@ + M$ + > ]& # k) Q$ ]& - > ;b - > T@ 0' L$ ]& . - > . Q$ > # o! U@ P$ . & . * H= > & S$ $ S$ Q$ & N$ . & & ; 5- N$ ^& ^ Q$ ) { ) Q$ { ~ Z! ~ , X@ N$ W@ T- ; Y@ ; 2 < ] } Z! H= [ X@ } ;# { } W@ ,# a a /& X@ 7 ,# -# V$ 0 7 8 e a Y@ 1 a ~# ~# e e {# ,# i M' b k ~# b ~# ~# g C; 0 L= }{ c {# 0 ~# 1; `$ h h ;) y K/ w Y$ m `$ p `$ ^# u t t z #] z G #] I w w w 2; M O@ m N@ 8* JW n! A M N 8* 3# c- 3# O@ E$ 3# d{ d{ 3# L i5 aV Q A: AX *I BX G$ #N 3d #N MW #N #N ^P `I #N pF _M qH EN qH EN 6B 6B 6B jU 6B AS $N mL CX -I Ou {z HQ AS hT {z DX cS Wz ST EX dS dS EX [M |C mP ~W |C 6N nW nP fK @V DR 0R 0R pO oW mU mU DR >X FX WO ~O sO fV 'X qP hQ _P MV :W dX -V :W &V ~L dX {L GX Wq HS HS MQ GR oT =V HS HR HX IS pT IX IS =V IS pT

+ $ ]& ]& ]& > ]& R@ ]& Z, T@ $ # # V@ > * ^& # ]& = & o! $ . = . > > %= (& . = # ] Q$ & . $ ^ $ (& ~ ~ | ~ . & ) & { | N$ H= 1 *X X@ ~ / U$ ) Y@ [ 5 1 2 } } 2 V~ { 1 ,# d { / Y@ 7 ,# 6 4 $# 1 *# } ( 5 7 ## V~ a [ J] e L= a e 7 d i a' $# e L= 7 ~# t' ~# `$ X$ M' Y$ ~# p q g p r c q % t n `$ `$ p s> % /# G `$ 2; w /# 2; {& ~& /# /U z /# G t I /# 1& z G O@ G n! K a7 Q@ 3# |# |# 1& 0S J Q =X G A: Q SO 0S WX XX YX yS L@ r! #N tw E$ G$ )Q 3d pF 3d 0* ^P @N EN `I qH AS 6B mL $N kU hT mL :M HQ AS Ou BS CX UO ZX :M FN _U CR sM %T dS iT `X ~Q |C [M -R |C fK nP 0R 6N 6N 6N pO >X ^W cX LV LV IQ lU fV sO uM /P /W T VQ qJ JM SR 4T JM lS lS JM JM lS JM lS lS JM 7W .B aO lS xT aO aO 3U bO .B bO aO 3U -Y bO _V /X 3U ^R ^R ;Y ,T &U 5H &U 4L &U 5H vK 5H LM >Y 5H 5H HO LM HO LM ot 5H JI wg _{ dM uC _i ^7 ]7 ,Y 'Y 7f )Y ~P !Y 7T 7T ZQ ~Y cv +W {Y 2X +W ]Y jz fW jz fW +W ^Y fW fW W 2X {Y hM fW ZW -M ZW BV 2X -M zW 5V +y /Y +W -M zW AW YG #n dW 4V }R NU zW cW zW (Y 5V 2X fW FL fW -M W aI _Y GT JT jA $W Mh +K )B WM QD hO KC !P 5g $j :Y ^F 3g cr ]& = Q$ > . V@ + = > A; S$ = H= $ = & ! ~ $ . = . & > $ Q$ U@ ] ' N$ & ' | * ] & # U$ ) ' ~ Z! 'W W@ ; ; S$ N$ N$ 4 %= Y@ 2 D, W@ { 6- | 2 } Z@ Z! Z! ## & ) 2 { /& N$ 2 0 7 6 ## 5 $# ( e } } d j 6 [ 6- ,# e n n k ~# q> ,# c a d b c o !# 7 0 q `$ h L= ~# ~# r _# L= Y$ `$ r _# Z$ s> 1; u p 4* % 4* G `$ t p /# {& 1; {& F= G >= ^# G A m N 8* I a7 8* q! m) O@ M P@ 3# }Y /# c- T^ P@ O@ i5 d{ E$ M O@ d{ *I MW MW 3d L@ G$ .V #N U `I RT L@ G$ #N ^P qH -X -X `I 6B EN 7s mL $N TO mL $N AS J Ou ja aS AS CX aS AS HK |Y BR 1Y eQ dS CR 2Y HN =S |C dS kT fK fK DR nP nP pO nW FX lT pO nP sO fQ DR ^W DR 3Y 'X >R 'X gV mT _P hQ _P _P zM GS -V )K 4Y ^O GR XL GR Wq oT RP AM HS GR HS AM IS pT HR HR pT PV 5Y IS

J |T XT 6Y Y# Q~ /+ Y# /+ Y# /+ Y# (+ Y# Y# /+ G& p% _+ b= `# `# `# |+ aY p% `# oN p% aY bY D* |+ z* D* CP F* _S _S QS F* _S _S QS QS _S _S 6W NX CP cY GO dY TR JM 1L lS JM xT lS BU xT xT lS |K aO xT 7W bO aO |K aO bO aO ,T 3U ,T 3U ,T 4U bO 3U UN yT 3U ;Y On r0 'T /R 5H LM 5H LM HO >Y LM HO LM LM tV HO tV JI ~w wg Es 6H uC BL n2 8= eY VW fY gY hY ~e H= 2 ^ | 'W X@ 2 ~ 2 N$ ~ } [ V~ 4 X@ | *# { X@ 8- [ ( *# d ) a $# 6 < 6 $# 5 k q> { I= a $# ~# 2d $# ,# ,# e K/ Y> ~# e L= e ~# 6 c c L= 2, ~# ~# r Y$ {# _# n _# q n 2, u s> p /# B p u ^# n^ `$ :# B D :# t % z /# z G % x a7 z I D G I F= $T HV c- W) 8* 1& M |# JW |# c- >z M 3# S L Q@ U P@ i5 oY L #N G$ r! G$ DN #N U^ pF RT 3d ^P ^P #N ^P ^P @N 58 lL EN 7s $N TO 6B mL hT mL FN {z :M HQ FN AS CX FN cQ pY ST dK sM &S qY =S =R dS EJ oO BR nW nP 0R rY pO 0R 0R >X |M lW sY tY OW uY cX ^W vY wY (W cX 'X mT _P hQ xY MV yY zY GR dX nU {L AM {L .Y XL HS Wq OV HS MQ HX oT HR pT HR IS [W [W #G IS PQ >V [W nV [P F; -. 0# !. C$ @. G@ X T J P@ L@ Y 1# P@ z c- Q@ H x ", +"L$ . V@ $ L$ J$ R@ = = `Y $ ]& J$ $ ]& ]& # V@ $ X! . # L$ . . . X! > Z, X! o! > k) . $ > U@ & > & $ U@ . ; ; & ' $ & > ; > U@ N$ ; ^ S$ . ~ ) X@ ; ; I= & ~ H= ; & N$ ;# & ; N$ *# ] | 1 2 1 ) 4 ; ; 2 H= X@ 5 [ ## /& { 8 ( { /& b ( 7 ( d X@ 6 b V$ e a d 0 d d e 7 7 6 k ,# ~# ># r ~# L= ,# n L= {# n ]# Y$ h `$ r r h C; Z$ u 1; u :# ^# y m m ^# D 2; w w % #= z #] /# t :# F D z I w A #= Z c- w w M 7R I 8* x O@ M 8* M d{ QT 3& O SO SO E$ qF Q .Z D$ A: L@ ^P #N H 3d #N #N ^P +Z #N )Q BX EN C$ DN `I mL mL 6B 6B 6B $N rH {z ja cV mL BS BS AS FN kI |Y cQ J XT -Z [W =Z =T SW ;Z JX AY -Z qT pV >Z @; `) A! S# (+ b= {+ X# W# Y# b= Y# Y# (+ /+ ^+ c= _+ `# c= -- _+ p% s% `# o% #$ `# D* `# #$ D* D* p% 3T _S F* 5W _S 6W GY QS F* QS _S CP _S QS .Q _S pN JM lS kR BU 1L lS JM 7W xT !Z xT xT xT xT xT DU ~Z IY IY :S 3U bO |K aO aO 3U 3U UN 3U 3U JY ,T yT ,T ,T On {Z LM KY zT LM LM &U tV HO LM 5H tV LM LM &U 5H s0 wg wg ot Es On tQ Xr ]Z xa ^Z dc (w Vn CT @L aI 7L NI NI 7L Do 7L YR QY 1X 1X gY gY ^Y fW fW fW 1X yW +W 1X YR fW fW fW 2X fW fW -M -M -M |X fW YW BV 5V AW YW zW BV 5V YG #n 5V cW RH -M -M hM +W fW YR /Y /Z (Z _Z %W LT LT pu Ro 6V )B cU :Z ar ;o fE (j >f +H * u@ O- = {. '. '. -. 5# &. $> L@ }; C$ J@ L@ J L@ Z S L@ E$ M E$ H$ A ", +"L$ Z, V@ + L$ L$ R@ L$ L$ # # ]& ]& T@ + # > ; . L$ . V@ ]& = T@ T@ & U@ V@ + X! U@ . Q$ ]& $ $= $ ; ] Q$ ; [* - Q$ . . Q$ V@ ] ; o! ] P$ {c ^& . $ ~ N$ X@ & ] { X@ N$ ; S$ & [ 2 N$ | ) H= N$ U@ ) ~ [ 6- ( ; H= ~ { } 7- 2 W@ } } 2 ; 4 ( $# 9 b 7 Y> ( $# ( $# } 6- 5 Y> ,# d e ~# Y> ~# n k c ,# 0 ~# 8 k r Y$ K/ L= n |& c{ ,> h `$ 2, ~# t 4* 2, ,> q 1; p F= n^ $] q p G |Z 1Z ^# {& G E /# xE I G w I t O@ I F= n! z n! 2Z O@ I M 1& ~& |# 0S d{ n! S O@ Q d{ *I *I A: J BX 2# BX L r! qF H #N G$ 3d G$ 'Q ^P +Z ^P @N qH DN E^ AS mL 7s mL $N -I 6B $N mL hT AS FN BS CX AS _U 3Z cQ aS 4Z FN T QS 6W BU xT XV gZ JM lS lS lS 7W xT xT xT xT 7W IY bO nS xT 7W (V 3U bO |K ;Y bO bO 3U aO 3U 3U _V JY lX hZ 3U ^R lX 5H LM 4U LM HO r0 LM 5H LM HO tV 5H 5H HO 5H dM LM 6I nf nf $g sa L iZ jZ kZ lZ mZ [V PY nZ 6u @L NI NI /Y #Q NI gY 7L Do Kl 9L 7L Kl Kl YR fW yW 6A YR ^Y +W 1X {Y yW jz jz BV -M +W YW YW |X -M 2X -M -M -M @W dW BV -M #n cW cW CW BV 5V -M fW hM WS MC Bg Wg (j oZ %W KT /n /n LT |x 2J hO ar (Z :q ]j uX pZ qZ vX IU XI we za rZ d^ {; w; f@ m@ o@ d* {. 7; A@ [, A@ &. (* ^U F@ V E@ G@ 2# M@ M@ Y H P@ I I F= N@ ", +"]& L$ & . = k3 # ]& = E! + 0' = ]& # = . . > 0' # = $ 0' . > ; # # . L$ > . > $ . & . $= & > ] $ $ Q$ ] - k) & %= U@ + ^ ; & N$ ; ; N$ > ^ ~ H= . U@ & ; ## Q$ N$ H= N$ X@ N$ ; ; ~ ] { / 6- ~ ; X@ | { X@ 2 2 2 a ) ) / 6 ~ ) 6 5 <& /& /& ## ,# V$ a e 0 a ~# ,# ~# ~# Y> j o {# ~# e ~# h V$ a L= o n c g r o _# A~ _# p {# q -= h c vA 2, L= w ^# p :# B 4* 4* G /# w b' ^# w 4* G :# n! A a7 8* I ~& I M M 8* z A A c- H$ M O@ 3# E$ Q E$ }Y A: *I L A: J qF U^ G$ r! >O qF U^ #N 3d )Q G$ G$ )Q )Q RT 3d sZ EN qH EN EN 6B mL 6B mL *R mL $N hT CX 7s AS $N $N _U ST pY cQ ST cQ tZ HN |Y BR [M uZ vZ {Q |C fK 6N nP 6N nP DR nW ^W lT _W uY oW wZ nW _W vY pP &Z ^W xZ yZ hQ :W qP MV :U zZ 9Z *V 0N zM AM HS NV =V oT AM HX NV RP }T pT uP PV HR IS IS HX #G OQ PV AZ nV =Z XT gX qW nV $ $ R@ ]& + L$ 5_ $= V@ . S$ S$ ]& + L$ 0' . # U@ k) U@ U$ ]& L$ . . H= . |* Q$ S$ !, U@ ' & ; > . - ; H= Q$ T- . 2 2 H= . `@ %= > N$ [ ~ N$ - S$ ' . 2 ; N$ . %= & ) | H= & ~ /& | D, *# { ~ Z! X@ d { 6 [ : } d } ~ { 7 d 1 /& $# ( { } 5 Y@ d ~# 5 ,# a c a L= ,# a d 7 e 0 0 c c ~# h n a u 0 tA 2, 2, Q{ `$ ]# p ^# m Y$ ]# u `$ p -) 1; w {& p B /# p C ~& /# /# w w N O@ I T^ N z z A z ` Q A: L L L BX 3d pF oY 3d WX )Q #N #N )Q #N `I ^P 3d ^P mL E^ tw #N 7s $N mL mL $N rH AS $N AS AS AS .` AS hT hT FN +` FN aS mP _U ~Q ` OJ }L fR OJ fR :K OJ OJ :K RG fR 7O ;w x CB `w FI q +. E@ @. L@ L@ P S I I z %> Q@ B S ", +"# $ + # # L$ k) V@ > = L$ + M$ = $ & = * . > L$ . ]& ]& H= & # T@ - Q$ > $ - !, Q$ A; > 2) Q$ | H= & S$ ; Q$ - P$ N$ ' ~ ] & ; T@ H= ; ; > & =' ~ ; > ] | Q$ { X@ ] - N$ ] Z! ; 1 ; 2 T- 7- +# { V~ / %= ( &# 1 *# { $# 6 4 { [ ## [ [ 7 } } { &# V$ *# ( 7 6! ,# 6- a a V- 0 ,# 0- 7 {# c ~# {# K/ r ,> n n Y$ [{ c 5` ]# c r /# p ~# t p Y$ c `$ p r % Y$ p -) `$ w w t G p w /# F= m I ~& I D A %> I N b' T^ H$ A =K O@ A 8* V c- |# c- O c- 3& >z c- L L L 3; L T G$ 6` Q |# BX )Q 3d tw 3d ^P #N )Q )Q @N qH tw `I EN hT sZ $N mL 6B -I $N hT AS AS cV hT 7` cV -I CX cQ .` 8` tZ iT HN 2Y #Z 5Z @V @V =S nW nP pO jT nW pO 0R sO LV ^W oW ,X oW DR _W cX 9` ES FX 0` a` 8Z PW gV yZ eX &V :U :W b` FS c` OV d` e` HS =V }T oT AM HS HX PV IS HR pT HR [W PV |T nV nV XT pT f` gX aZ lQ (+ /+ /+ ~+ /+ =- (+ E* p% fZ #$ <+ C* `# p% i` `# :+ i` 3T z* :+ D* 3T i` jX CP CP F* 6W QS QS QS 6W _S _S _S QS j` j` dY NX BU CU k` CU qJ CU xT xT xT lS lS 7W 7W l` 3U m` 7W l` -Y |K aO ,T aO ,T bO hZ ,T ,T yT n` bO 3U yT 3U ,T MZ 5H 5H ^` o` HO LM 5H LM tV LM LM tV LM >Y LM tV HO nf L| L| W3 p` q` r` WU s` t` ,o [` u` |` aP aP 6u QH /Y aI aI @L NI NI (w (w PY 7L lM #Q NI NI 7L 7L NI #Q gY SY lM Kl 1X YR cv fW YR Kl 1X yW 2X -M zW 2X ZW YG -M YG -M BV ZW YW vt ZW fW -M +W OM v` ]j WY w` }j +R x` w` y` xv pu 2j *t lY !U dk gi 5q !l ZQ &x WS Kt Fa z` A` B` a@ t$ b. q@ (. (. 5& ). ;. ;. z@ z$ V 4# $> J P L@ T S S 3# K@ S G E; Q@ ", +"k) E! ]& + . ]& Gc = + . L$ # L$ = + # # + $ # + + + U@ $ = * T@ # ]& + & S$ - # + S$ $ $ > Z3 ] . > > U@ # ] U$ H= + R$ . & & H= =' > H= ; %= { ~ H= U@ & > ] ; =' U@ 4 X@ 2 | ^ ( { ; J) U$ U$ { ~ 2 ( ## 2 N$ } d d Y> V~ ) [ a 6 3] } ( *# N' <& 6 ,# -# k k e k ,# Y@ c } a' ~# z: ~# h s> n 0 c i o ,> ~# % ]# |& L= % K/ Y$ } Y$ :# o g _# `$ _# w 4* Y$ Z$ C` t p ^# :# C }# n! I W) m 8* G /# N 1& E; I $S n! C b' 3# JW 8* E$ E$ 1& M M E$ M HV L d{ M E$ A i5 L L@ 3d hU r! T BX RT `I G$ #N )Q 3d )Q 3d ^P )Q 7s `I _M $N EN mL $N mL 6B hT AS .` AS {z BS D` hT hT E` cQ +` _U mP |Y =S =S =S 5Z HN fK F` G` pO pO DR 0R pO pO pO pO oW nW DR H` cX oW ^W _W &Z gV 3Y &` 8Z gV 'X 0 +F EB .x El j9 El El El f f .f V5 gd f V5 .f V5 ~k ~k V5 V4 +{ +f <} C_ Z{ J^ Z{ Z{ Z{ J^ F{ J^ J^ Z{ J^ 3{ 3{ `^ ^~ ;] 3{ Y{ 3{ ]~ `^ H{ x^ }_ S] *+ @; C' @; @; *+ @; *+ *+ z) 3> *+ @; @; P~ *+ Q~ /+ /+ ~+ I> ~+ (+ Y# ~+ (+ X# (+ ~+ #$ :+ p% ~+ #$ `# p% p% :+ :+ :+ 3T jX `# z* oN FZ E* wT CP _S _S 6W QS j` j` QS QS j` j` S` k` QS VQ HZ lS qJ GZ BU xT xT 7W CU JZ 7W IY !Z 7W l` bO 7W IY IY ~` bO bO 3U bO 3U ,T ;Y 3U UN 3U 3U UN lX ;Y hZ ^R 5H 5H LZ o` tV LM ot LM LM LM ot LM LM LM 5H WN 5H nf L| f) ^- T` Cf U` V` W` * m@ b& C= >& gT -. A@ x@ (* z@ .= }; J P D$ S P O P@ E$ Q@ H Q@ x A ", +"]& 2^ ]& $ # + ]& $ = #^ k) # % + o! # - S$ . $ . * # V@ & = $ $ . $ > . > S$ > V@ $ # + 5_ & o! | $ & . & ] . S$ X! ! P$ * & H= $ ' ^ > Z! H= S$ ' { ; $ H= T- X@ Q$ | N$ ] ~ ~ 2 X@ { 2 1 ~ V~ | 2 2 X@ 4 { 7- 1 2 a ~ | 2 V~ *= Y> } &# } %m | d ,# ,# a ~# a k 0 0 h 0 0 c L= e r 6! a c n {# ~# V$ a c n k 0 p ~# ^# L= K/ u r p Y$ ^# b' ^# 2; Y$ 4* :# ^# w c{ 2; [# z F= z G p /U I n! w M I F= JW .JX aZ pV UP , .!V ~S ' .pV pV qT ) .! .cZ , .cZ cZ ) .cZ [U cZ MS XP {S {S 2U @U yU XP yU 5P XP }L yP :K #P fR fR OJ }L :K 6P }L rC ~ .fR 7P CO ;w `w HM #M x HM T ] .!Z xT IY 7W xT ^ .lS 7W IZ 7W 7W DU sV IY l` ~` aO bO 3U bO bO 3U ,T ;Y yT ,T ,T n` lX / .;Y JY LM LY HO LZ LM HO HO LM HO tV tV LM LM HO HO HO 5H f) L| F% F+ ( .xa Rh [V _ .: .< .tJ }` |` u` |` aP RZ nZ MC [ .QH aI (w NI (w (w (w NI (w @L NI 7L (w @L (w NI (w NI (w 7L 7L Kl Kl YR } .YR 1X YR 2X fW 2X fW fW -M -M fW YW vt 2X dH -M jz jz } .aI /Z _j &n .X ~B )n * `* E7 (. x@ -. x@ F, z@ E@ @. C$ T #% L' T P@ S 8* H H$ H$ 2& Q@ L@ I ", +"]& L$ L$ $ # . + <{ L$ ]& # L$ 5_ ]& 5_ V@ V@ + + # $ $ . ; $ $ U@ Gc > |* > $ + > S$ & . . & = > . = Q$ & . 5- > | & & > . 8- H= S$ ; ] ; %= & H= N$ Z! ^ ; ; ) N$ & ] H= N$ 2 | R$ 7- ## ~ 2 | 4 2 | /& { ( $# == <& } { R$ 1 6 Y@ ## 6 ,# N' &# 6 ( } ## b 7 ~# L= a a ,# W$ a tA e h ~# c a k ~# c n K/ 0- L= Y$ ~# h {# `$ n p L= n 0 h h #| % ,! h F p m u p N /# G 1; B `$ ^# G ^# $T 2; I b' G I x z I I Q@ E; c- A q! 8* I I O@ 5 .M SO 0S I E$ E$ Q P@ SO SO BX U^ *I qF 'Q DN ^P tw `I #N 3d 3d RT RT lP 7s -X tw #N $N mL 58 AS jU $N mL CX $N 0X hT :M $N CX aS BS 1Y 6 .7 .#Z sM #Z @Z dS CR jT nP 8 .nP 9 .0 .|C pO |M DR DR mW oW _W ,X nW a .^W oW bX J [P XT qW PV SW nV HG f .g .6Y h .1T 7Y i .qT qT ~V [U cZ cZ $Y ~V ~V $Y j .DZ sT sT OR sT EY jS jS jS 5P ^S @P }L :K @P yP }L :K }L fR @M RG CB xL FI }L 1Q q CB CB ;w q . > . ; S$ $ ] Z, $ S$ Q$ T@ > > ; ; P$ ] Q$ > ] $ ] =' & ^ & %= %= U@ ; > Q$ 2 2 & S$ ~ ~ ~ ] H= N$ 6 ) ] ) : .# /& X@ | ~ *# ## 6 ) ## 4 Y@ ## [{ / &# W@ 6 d 7- 2 1 } d $# $# 6 7 6 a c o k k 0- 0 L= a ,# j 7 0- 0 6- ~# q q Y$ a 6! }& n ~# n t Z$ /# 2, p ^# p q 4* ^# p Y$ D {& D Z$ z w z w {& z w .^# A I A z I $T z A o^ I A O@ 8* 3# M 1& x .y .=X 3# 3& z .3& A .L r! J qF 3# L pF #N DN =I 3d =I 3d 3d #N ^P RT )Q #N EN lP -X sZ AS $N AS $N mL AS hT AS 6B .` -I 3Z E` HQ _U J IK 4Z %T ST dQ ~Q =S $ .B .fK aX ~W 6N ;X pO 6N 6N _W C .pO ^W DR oW PW ^W ^W cX nW 3Y D .mT %Z E .hV 'X 8Z d .MV zY GR F .zY pW GR HS RP }T RP oT Ix }T G .}T }T HS L` [W [W JX JX [W pT nV nV nV nV -Z OQ AZ f` AY pV pV UP #Y UP !V pV qT 8Y [U cZ cZ cZ }U {S H .{S ,Z sT AO 2U +U jS 5P xU XP 5P yP 5O iN yP }L fR :K OJ fR OJ #P RG LX rC )J #M ;w CB #M x `w `w $ V@ $ + 1* + > ] Q$ 0' ]& 1) = ]& [* $ = * > |* $ ' Q$ = . > ' & }* z] & ~ W@ Q$ $ %= U$ . T@ & & & ] & Q$ | | & ^& ] & | ~ ; & | %= ' ; | > 2 +# | P$ | ^ Y@ D, ~ [ < < { /& &# : 9 d J= [ } { d d } } 1 == 5 3] e } 7 } N' ,# a 0 tA k g a ~# K/ h e c ,> 0 n 0- m h V) ]# ,> ~# 0 p :# m 4* % 2, w Y$ % y 2; :# q ^# B ;) Z$ N z {& I G z T^ c- z G q! O@ z F= M Q@ z .c- 3# 8* 8* c- >z L 3# r! 5 .J A: 3# 3d U^ G$ d- .V ^P bV #N ^P )Q ^P Z .)Q ^P @N 7s bV bV 6B $N mL $N 7s AS AS AS mL .` cV HQ CX {z ST :M #Z ` .MP ST sM ~Q .....5Z uZ pO CR aX jT nP pO fK +..@..DR DR nP wZ _W oW ^W oW nW #..PW RE xZ yZ & .yZ & .8Z )X -V $..4z 4z 4z oT oT %..&..AM PV HX AM HX HX }T HX }T IX IX JX pT PV JX PV qW nV qW *..gX gX AY oV f` pV qT !V BZ #Y qT ..(+ (+ =- /+ (+ Y# X# /+ |+ i` { .(+ C* p% `# :+ :+ p% p% i` k .:+ D* L .:+ QS CP _S VV QS QS ,..6W QS _S S` QS *Y 6W j` HZ GZ RS '` '..CU lS xT xT IY IY xT 7W IY )..l` (V (V !..l` IY aO 3U ,T 3U 3U 3U 3U 3U ,T ,T ;Y 3U n ./ .,T 4U 5H LM HO o` HO tV tV MZ tV tV LM LM ot LM LM ot ot Xx P9 )..~..ti ;r .S Bd {..$n ]..XI JP -r S .^..-r -r u` ;r aK -F -F -F MC nZ #B nZ aP nZ nZ nZ @L V .U .NI @L (w #Q NI NI 7L #Q 7L PY YR #Q YR 9E YR 1X 1X 1X 1X 1X +W Do 7u jz jz +W jz } .} .nZ /..(..3g 3g _..~B :..t ..X ]j ji w` kh !U dk [j Vl <..2 .[..} ._J }..#c bk |..1..V% 0@ s$ (. <. C= ). ). '. ,. =. *. . i~ V W |; X M@ H A S H$ A M A I ", +"]& L$ ;b + + ]& [* 0' + > = 0' + ]& = + . $ + . $ 0' V@ & $ = $ . . ; > Q$ & > . U@ & U$ $ & - ; = o! > 0' H= > > . > | & & U$ Q$ + | N$ & H= ; $ N$ ] > . U@ %= Q$ N$ 2 N$ | ~ | X@ | | ) ; ) { { ^ { [ 2 I= X@ } { 5 d { V~ W@ $# Y> } ## 6 4 /& ( J] q> a 6 7 6 ,# j e 0 a e 0 e n a ~# g a 0 6 h L= o h y2 n h n r #] p Z$ Z$ n^ w p m ^# w 4* :# /# B F= m /# )> z /# {& @= b' 7* I w 1& O@ I A j4 z G G n! 8* c- 3# 3# 3# M y .a7 |# Q 3& Q MW oY U YX r! qF G$ qF qF #N ^P ^P ^P ^P #N RT #N +Z #N .V EN @N !Q _M -X $N EN hT 6B AS $N $N $N hT $N $N hT $N aS 2..@Z 3..4..X ,X nW cX PW oW _W nW _W 6..7..8..0` 8Z yZ 8Z yZ -` -` 4z zY d` 4z -V ; .oT 9..HS oT 0..=V G .L` =V =V oT HX IS ;Z IS [W PV nV AZ qW qW qW f` > .|T lQ f` UP [U ~V BY [U [U !V a..BZ [U ~V ) .cZ rW }U U rW @U sW XP PN @U jS @U jS yU yU yP b..OJ +M 6P :K 'G xL }L OJ 'G )J Ey 'G rC RG `w q ;w `w CB CB CB qo q ..~+ ~+ /+ U# ^+ ^+ ~+ m% C* i` k .J .E* :+ p% ,` i` i` i` E* =Y :+ E* 3T bY k ._S 6W _S 6W S` jX QS 6W c..QS 6W 6W 6W '` 4u dY gZ JM qJ CU 7W !Z xT IY 7W xT IY !Z d..IY (V bO 3U !..l` ~` 3U ,T ,T 3U 3U 3U hZ 3U ,T e..JY ,T lX n .JY f..{Z HO o` o` HO LM &U tV LM LM HO HO 5H 5H LM On ez 94 g..h..FD SZ i..~P j..Ac k..zC lA S .JP S .S .-r u` -r l..m..Hs -F #B cH #B #B nZ nZ nZ 8g @L @L V .@X aI aI (w NI NI n..#Q PY (w YR 7L #Q Do } .cv cv +W 1X Kl cv TZ o..ZN p..Do p..q..r..#B s..^F &n )n & {. =. A@ ;. 4) E@ ,= 5# G@ T J@ S H H@ P@ O@ P@ +% K@ N ", +"]& 0' 0' + ]& ]& > $ + + }* - # # M$ Q$ > R@ V@ + + $ & . $ - # = 1* & $ Q$ > ]& > . ^& $ = ' & $ o! %= . N$ 0' > . & > k) > ~ P$ H= ] T@ & P$ | ; H= X@ U$ (& ; | 5- X@ | ; U@ X@ ( { X@ R$ *# J) { | ^ } ## ! | 1 4 1 ( X@ { < 6- /& 6 d 1 7 $# d $# == d d { Y> d 6 5 a Y> ~# d 0- c d e 0- 3] k ,# n 2* a' 0 n 0- `$ 0- q % L= `$ Y$ `$ ,> n y..Z$ Q{ s> Z$ V| `$ t /# Z$ ^# w b' z../# B B t w E G a7 I G A F= G A I 1& I c- O@ M >z |# c- S n! >z c- )W h] A..|# ` d{ B..L 3; *I G$ G$ ^P #N G$ ^P G$ ^P tw )Q ^P ^P #N .V 58 qH _M _M -X EN 6B AS 6B hT AS mL $N hT $N hT hT AS hT C..hT ` .4..&S pY D..dS #Z =S 5Z kT kT B .^Q pO aX +..0R jT nW pO FX nW tY ^W DR _W oW ^W cX & . @; @; *+ *+ *+ v& ~{ =+ 7= =+ D& *+ @; C' S# W# Y# <+ ~+ ~+ (+ (+ (+ (+ ~+ /+ H> z* :+ :+ J..J..:+ :+ :+ p% p% :+ { .jX { .,` 3T l .bY 4W _S 6W QS QS S` K..6W 6W QS j` 6W QS j` j` m .L..CU JZ HY M..!Z CU xT JM 7W IY 7W 7W xT IY ~` aO IY IY IY bO 3U ,T 3U ,T 3U ,T 3U ,T ]` ,T 3U ;Y n .lX lX HO LM LM 4U LM HO 5H HO HO tV LM HO ot 5H HO ot 4c @f N..O..Nj P..Q..R..Wk S..Kt ]..PM tJ p .[` p .S .S .}` }` }` 2x -F -F aP -F -q aP cH aP nZ @X @L NI @L tt @X PY NI q .NI NI U .PY #Q 7L 7L NI vJ SY 1` 7u 1X Do YR 7L ZN FL WS cv ZN ZN 7L aK T.. * + # * > . * + $ V@ ]& ]& Z, . R@ # Q$ . Z, k) $ . $ S$ > ; %= U@ %= N$ Q$ [* $= S$ ; ] . V@ }* & ; ] $ ; ; % ]& ' & . Q$ - O$ 2 { T- ] < | R$ 2 2 ~ Z! | N$ W@ =# / S$ U$ ) 2 ~ ( 8- 2 $# ## 6 ( : < ) ## a d X@ 5 D, 6- 0 i b e a e 6! d a k J] ~# h V) ,# n L= a c n 6 n 0- K/ vA p ~# ~# s> n ,> h :# `$ ,> % w y n D % % t ^# :# C B 1; N C Y..I n! z A ^# 2; I A M Q@ x O@ I O@ T^ 8* n! |# M c- PT 0S M z .Z..|# A: |# d{ 3; 3; L qF YX oY BX qF G$ 3d #N #N )Q ^P ^P #N ^P _M _M #N NW -X @N 6B hT 7s AS hT hT mL hT $N AS 0X CX hT BS :M 4Z pY ST #Z tM qY dS 5Z B .`..6N +.$Z 0R jT nP nP .+.DR ^W ^W nW lU _W cX cX oW nW ++.@+. .JX L` gX gX nV JX JX f` nV !V *..&+.f .6Y pV , .*+.[U [U ~V [U ~V cZ qT }U }U [U }U =+.+U +P dR 2U tT 5P 5P XP yU xU yP OJ @P jS @P 6P fR OJ fR }L #P .F {N }L x jJ SG ;w CB x q CB `w `w CB CB Tx ch TG CB Jn .q n n +F gd Fy El j9 j9 gd T3 `e V5 V5 U3 f .f 34 V5 .f V5 <} +g Rk Sc U4 F{ 9) Z{ 7< Z{ F{ F{ 7< F{ ;] Z{ 2{ Z{ ;] ]~ k9 `^ f; O! ;] f; ]~ s~ e! O! ,^ *+ 7= @; 7= @; *+ 7= *+ =+ =+ *+ @; _' 9= -+.7= a= (+ (+ k% ~+ (+ ~+ ~+ (+ ~+ ~+ (+ ^+ { .:+ :+ m% `# :+ i` i` ]R ,` z* jX FZ :+ p% jX { .{ .6W 6W VV QS 6W j` QS QS 6W QS j` j` j` j` qJ dY CU xT 4u L..xT xT xT 7W 7W IY 7W l` xT l` xT (V 7W l` l` %U ,T 3U ,T ;Y 3U ,T hZ ,T lX ,T ;Y hZ ^R yT e..&U LM HO o` KZ ot LM tV LM >Y HO tV LM zT 5H ot On ~- ;+.zf _J >+.~P @H /d Bz $n $n 7f 7f PM PM lA p .p .p .}` 2x }` -r ,+.u` '+.|` -F -q |` nZ nZ 6u NI tt 6u )+.NI @L nZ @L NI tt PY @X NI q .NI NI 7L 7L #Q #Q lM 7L 7L 7L WS TZ Do q..TZ 7L ;r iH )n !+.ji ji :Y dk :q hi .X ~+.~B {+._j !+.]+.Fe 2 .Gd ^+.%x Nj PM MI qb /+.(+.]; a@ xi m@ u@ v@ {. {. A@ ). )= G@ X B$ }; H T S T J +% |# H M G z #= ", +"]& L$ # + # $ ]& ]& . 0' + > V@ ]& + = + # Q$ - $ $ . ]& V@ + . 0' > [* ' > & = ]& V@ + . $ - ~ * ; V@ ' o! ]& Q$ > R$ | ]& Q$ > # & N$ > Q$ N$ ^ . H= > ~ N$ Q$ S$ & & U@ ; *# ~ | $ Z! P$ { Z! ] /& ~ [ & , [ X@ V~ { | { ~ ~ 5 1 [{ 3* J] $# 7 7 Y@ 6 ( d d ,# 6 7 ,# } a ,# 7 W$ ,# {# *= ,# a c 0 0 8 ~# 0 ~# ]# a `$ ]# Y$ #| c{ p n 4* Y$ p `$ p n^ `$ Y$ :# t m /# p u 4* N 2; B N #] G$ ^P )Q RT 3d ^P EN lP RT lP @N lP qH -X 7s CX 6B AS kU 9X $N $N AS CX CX .` AS 3Z HQ 3Z :+.pY dS cQ EX dS <+.5Z [+.6N kT }+.jT 6N 0R DR 0 .nP |+.pO nW DR _W C .^W ^W a .1+.2+.& .3+.4+.mT =` :U eX d .jV 9Z $..b` mV 0..J` }T 5+.6+.HX HX IX L` oT 7+.}T |T HX > .qW N` nV IX qW JX qW pT gX gX ;Z oV 8+.&+.9+.BZ , .lQ !R , .#Y ~V F> =+ ]+ /+ a= ]+ ~+ >..~+ (+ ^+ ^+ /+ ~+ a+.:+ :+ a+.(+ i` :+ p% b+.:+ :+ { .FZ bY i` c+.{ .d+.3T 6W =Y j` QS *Y j` j` _S 6W j` 4u j` k` j` m .e+.f+.g+.HZ CU 7W h+.IZ lS l` !Z l` 7W !Z IY DU DU IY IY (V (V ,T ;Y ;Y aO hZ ,T ;Y lX 3U JY i+.j+.yT hZ ]` >Y r0 HO 1..LM HO HO ot tV HO HO tV HO LM On On Xr k+.`c >+.l+.jY jY m+.n+.8E o+.,o 7f 7f 7f PM JP p+.[` JP }` q+.}` S .}` '+.|` Hs T .-q RZ nZ @L 6u aI aI @L aI nZ nZ nZ aI aI nZ aI tt @L NI @L PY PY aI 7L (w PY (w (w jY jY jY WS _ .tt >+.r+.&n &n )n s+._j &n :q dk [j hi .X t+.dk u+.Uy Lf .p Jt RH KB ]B zC tN Ff v+.w+.)@ 3@ X* ~* {= ~. {. !. A@ .. z$ G@ n) 4# T H }; E$ S 1# +% S H P@ Q@ x O@ ", +"+ R@ [* k) # L$ k) 0' V@ = ;b V@ # 0' 0' R@ L$ ]& # V@ > 5_ ]& # ]& $ > [* = . |* . Gc # > ; * V@ ' = * U@ Q$ P$ !, & =' $ - . # ^& Q$ 05 [* $ Q$ H= [* & > & !, ; 2 W@ N$ & & N$ > | ) P$ ; ~ ]& %= | | ] ^ 1 { 2 { D, J] { $# 2 ( ( 2 } $# /& J= W@ D, : ,# $# 5 } -# ,# } } {# 1 ~# 0 d d ~# a 0 ]c L= 6 a c L= L= 6 a 0 ,# ]# c k X$ a n ~# ~# r ^# t L= /# p m Y$ ,> p $S p F= % p w :# G 4* ^# B /# B z I I z @= w K z 1& O@ O@ A 8* 8* K 8* c- M }Y x+. V >z c- H$ QT E$ Q Q *I P@ y+.L G$ 3d qF tw pF pF ^P ^P 0* #N )Q _M r! +Z EN qH #N 9X 6B 6B $N AS 0X hT mL AS $N AS CX HQ AS BS .` 2..4Z z+.|Y 7 .4Z CR ...iT A+.kT fK `..;X pO nP nW jT 0R B+.OW nW nW C+.|+.oW _W ^W a .%Z gV 8Z D+.E+.& .8Z F+.0` E..=` zY 4z pU F+.K` e .G..F+.}T }T =V F..; .HX HR L` IX HS PV pT [W [W G+.nV PV nV f` f` H+.gX SV gX gX I+.h .UP !R [U ~V BY [U J+.qT cZ H..8Y H.. U 2U PN {S DZ K+.sT @U jS XP xU yP yU 5O yP XP #P #P fR }L ^S ^S fR 6P ZP 1Q )J 7O (S Ey `w #M `w rC `w `w CB `w `w q Tx kJ kJ to EB |u EB |u AP El El >0 T3 Fy j9 v[ V5 V5 f V5 v[ v[ 34 34 V5 44 V4 b^ <} <} Z{ Z{ J^ Z{ F{ Z{ F{ Z{ F{ F{ J^ Z{ Y{ f; [] s~ ;] f; f; ]~ D] P) N! N! ]~ y) C' 7= *+ b) *+ 7= =+ *+ 7= 7= *+ *+ {) 7= -+.S# d) ~+ g! ]+ ~+ ~+ ~+ L+.~+ ~+ ^+ ~+ ~+ z* :+ J..U# M+.:+ i` N+.i` :+ J..{ .3T i` d+.3T ,` S` _S 6W k` QS 6W 6W j` 6W k` O+.6W k` j` k` j` GZ IZ !Z L..e+.IY IY L..7W xT 7W 7W IY 7W l` 7W bO (V P+.!..~` ,T ,T ,T 3U ,T 3U ,T yT lX hZ hZ Q+.lX ^R n .tV lX HO KZ tV >Y MZ HO tV HO 5H HO tV HO ot 4c * t$ s@ d# '. B$ z@ +. 3^ r4 @. $> &' 1# H Z M@ J P@ M@ A P@ N@ N I ", +"+ # 1) ]& ]& J$ $ 0' ]& # = ]& # ]& 0' + + k3 $ T@ $ ; = . ]& * . # $ Q$ ^& $ Q$ . T@ ; + V@ A; [* # ; . P$ ] - & & . > > ^ R$ ] Q$ - # $ 5- ] ' S$ U$ & > & ^ | Z! *# ; ] ^ ; | { ; H= N$ ] Q$ ; ] { ] ^ ( { T- ## | { { } < $# ) / 1 6- Y> a ~ a 6 b e d } k 6 6 a 7 e ,# i 0 Vj 0 ~# ~# ~# 7 k 0 t' 0 0 o r X$ n Y$ 0 _# o ,> Z$ ^# s> Z$ p ;= ~# ^# |& m ^# n^ t t /# `$ F= Z$ Z$ ^# /# w I m 1& ^# n! }# C Z$ AR 8* I Q@ #] M 8* V I .@.=X V M M 3# AX z .oY SO A: A: d{ r! oY BX A: #N 3d 'Q `I 3d #N DN U^ E^ _M BX RT 9X EN 7s EN @N 6B AS mL $N AS $N cV $N $N hT hT hT +@.hT @@. J #@.$@.%@.|Y %T CR 7 .qY CR jT &@.$ .nP DR nW *N mU IQ pO DR ^W *@.^W ^W =@._W cX #..yZ 8Z -` E+.gV d .%+.& .%+.8Z -V oT e` -@.c` fS ;@.AM >@.}T HX HX oT IX }T IX IX HS pT IS ,@.[W PV JX nV qW AZ AZ *..gX gX AZ '@.gX AZ 7Y ~V , .[U 8Y ~S H..qT ~S H..cZ ~V 8Y H .iJ yO 2U sT yU P` @U XP {V yU 5P ^S yU #U fR fR fR OJ #P OJ }L OJ OJ )Z OJ }L FI CB x CB #M `w `w CB CB rC x x `w Vr XK i9 $P n El |u |u j9 El T3 gd Fy j9 f 34 V5 f `e 34 34 v[ V5 34 D9 <} 44 F{ U4 F{ )2 J^ 9) F{ F{ F{ J^ F{ Z{ Z{ F{ J^ 3{ `^ ;] ;] ;] ]~ ;] 3{ ^~ &~ N! ]~ 6= *+ ;+ h; j/ @; z) @; 7= =+ =+ 7= 7= _' {) x* 9= {+ (+ (+ ]+ ~+ (+ )@.(+ (+ ^+ ~+ (+ (+ !@.,` i` H> b+.i` _+ ,` i` i` :+ { .3T ,` :+ E* M .FZ QS QS QS QS j` j` 6W j` j` j` j` O+.j` k` j` NX L..gZ L..4u xT IZ e+.!Z xT 7W IY IY IY !Z !..,T (V l` P+.!..;Y e..;Y bO 3U ,T ,T ;Y hZ ;Y ;Y ;Y n .e..;Y ^` / .HO ^` LZ tV 5H LM LM HO tV LM LM LM 5H 4c ~@.{@.ti ]@.^@.tf tt ~U n+.Eo _N 8E Ac o+.7f 7f ]..PM PM PM tJ tJ tJ tJ S .}` ^..}` S .l..}` u` RZ nZ aP -F cH '+.aP aP nZ nZ nZ nZ 6u @X nZ nZ nZ aI @L nZ _ ._ .X+._ ./@._ .jY MC TZ _ .nZ (@.5w ii (j _j (j fE Wg w` dL Wg fE ]j Jh Lf &n iH lk Ee _@.Js tt dv iz 8E we :@.<@.r; f$ [@.X* x$ (. }@.x@ ,& ;. (* 4# V L@ H@ H H Z 3; E$ H J K@ I N H$ I ", +"R@ ]& L$ J$ + ]& I/ R@ R@ + .( ]& # = [* + R@ J$ . # . U@ + 1) + ]& M$ $ [* ]& > > $ & # = . . U@ N$ & ; . S$ o! ), o! = . N$ ^ > | ~ Q$ U@ & Q$ S$ ^ Q$ U@ . ] z] ~ ; N$ ; *# & N$ | { N$ ^ | .# N$ 2 ~ ~ X@ ~ } Y@ 7 5 [ 2 [ X@ 2 ~ Z! &# < } d [ 7 q> } [{ { N' ( 9 } ~# e a ~# k i c {# c n 0 n a L= 8 Y@ ~# L= ]# h 7 h {# c Z$ % n `$ h Z$ ,> p 1; r D c /# :# o `$ `$ u w w `$ w `$ F= w ~& F= z w I E; /# O@ D 1& AR n! AR JW N O@ >z O@ O@ c- c- c- AR c- >z QT 3# ` U A: qF L qF *I yS r! oY ^P ^P 3d 3d )Q )Q ^P BX `I )Q EN sZ sZ 58 |@.@N 7s mL mL 1@.2@.$N :M hT hT 3@.AS HQ CX CX _U kI tZ 4Z 4@.DS e@.,` i` i` i` :+ bY f@.fZ p% bY f@.i` =Y S` 6W 6W j` ,..6W 6W QS 6W 6W XV QS '` g@.HZ HZ L..sV h@.^ .7W g+.7W xT 7W BU !..!..IY !..l` bO l` l` i@.;Y ;Y ,T 3U ;Y ,T 3U ,T hZ n .hZ JY ,T n .;Y zT / .HO HO KY HO MZ HO HO HO HO HO LM ot _i W2 j@.k@.zC l@.0k m@.mk ZV ;c 8L tN _N _N _N n@.k..o+.]..PM 7f ,o lA tJ ,o XI JP S .JP bP V+.V+.u` u` RZ |` |` T .-F |` RZ #B aP aP nZ nZ nZ nZ nZ 6u #B MC 4G nZ 4G o@.4G _ .4G nZ .s _ ._ .#B p@.3g ]j &n _j hi q@.`` w` Wg Wg kY dk |k sz |i 5X ,r r@.s@.bb S..t@.LB 8E nc hL u@.%@ :@ A= j- w$ u@ x@ x@ )& A@ &. A$ @. O= M@ H@ 1# J S E= P@ Y S G Q@ I x ", +"], R@ <{ <{ J$ # 0' $ L$ > # L$ k) > [* + ;b $ 0' . U@ ' k) |* > = ' $= ;b L$ T@ $ X! > > > > > . }* ; T@ U$ - & R$ R$ > & & ; * ] ' Q$ # ; Q$ V@ . Z! > ] 2 2 & Z! N$ | U@ R$ { [ ~ N$ X@ 2 ] ~ [ <& /& < [ [ $# 4 J] [ ~ 2 ( | X@ ( ( 9 } : { 5 d ( d d : 6 5 6 Y> 6 Y> e d a a 0 L= K/ L= } ~# e j n a c n s> L= a 6! K= n s> t m u h 2, `$ t Z$ q D :# p <, t m t n `$ 1; B ^# t :# 1; D ^# G B 2; {& 1; a7 F= 1& a7 T^ I F= z O@ T^ .@.3# =X T^ v@.d{ d{ QT v@.y .i5 T J Q BX BX G$ qF BX ^P qF #N ^P ^P RT G$ )Q RT )Q .V sZ @N NW 1@.6B 6B 1@.hT w@.$N $N :M hT CX CX $N x@.$N CX y@.aS pY +` HN pY z@.CR D..qY @` DR BR ~W A@.6N pO oW nP B@.sY cX ^W nW oW %Z cX cX a .%Z &` & .C@.8Z 8Z D@.*Z d .* .8Z E@.d` -V E@.F@.M` zY HS K` }T =V }T IX }T }T HX Vw AM IX [W qW nV ,@.qW nV qW qW SW 9@.)V AZ @Y f .qW G@.! ., .H@.I@., .qT ) .~V BZ 2E {S cZ 8Y 2U ) .sW 2U rW +U 2U XP @P XP XP jS yU yP }L XP @P }L #P fR h` RG OJ }L )J fR )J 7P #M ;w CB Y tV LM 5H 5H ot #x N@.7a uJ YN O@._d X+.jY vV %c T+.P@.sf _N Q@.8E Kt 7f 7f 7f ,o PM PM lA lA ,o tJ [` S .[` S .S .R@.S@.-r }` l..-q u` RZ RZ 8g #B #B nZ nZ T@.6u MC nZ nZ nZ nZ nZ #B #B nZ MC KB MC #B ;r aK U@.3g ii ii (j Wg ii `` w` fE /y kh (j Ih &n 5X Lf MT V@.W@.X@.Bz aH }..MI mc Ma Y@.Z& 6$ .& {* [y 3. ^. {. z@ A@ B$ B$ .= V V Z@.V P H H A K@ P@ A Q@ b- H$ ", +"+ J$ ]& J$ R@ ]& = ]& # + ]& jP . ]& # + + $ 0' + . # = > # + $ $= L$ J$ + Q$ Q$ - ; > . + > > = U$ U$ ' ; b{ Q$ + ^ . ; & %= N$ H= ^ %= ~ & H= 2 ; [* & H= 2 & ] ] U@ H= %= ) X@ Q$ [ N$ 2 X@ ] [ `@.1 2 d _ , `@.## ] X@ 5 *# /& 6 } 6 [ / D, 2d 6- 4 Y@ $# X@ } } < {# 0 9 Y> } 6 z: ,# ]# ]# |& 0 ~# 0 a {# n e c `$ 2, c X$ L= c L= % ;) V| p 4* Y$ 2, ^# w V| :# h G {& m p p s> 4* Z$ w m w /# F= b' ^# I I z JW A $T {& #.O@ 3# P@ n! 3# a7 2Z 0S 8* |# 0S 5 .T^ QT Z..i5 Z..A: ` Q MW BX G$ r! L 3d #N #N )Q ^P )Q #N #N )Q `I #N ^P E^ bV +@.EN 6B jU AS AS $N 6B AS CX CX mL E` HQ $N .` |Y pY cQ @@.GN pY 9 .5Z qY =S dS vZ Zz 5Z 6Z uZ nW wZ uZ .#..+.cX DR B+.#.._W %Z oW *` *` PW = .8Z d .* .d .E..+#.& .+#. Y NV ;V E..@#.qU G..HR ##.L` HS L` G .IX }T L` }T }T }T qW qW PV > .nV PV qW gX AZ AZ f` nV BZ f` f` 9@.BZ J+.#Y $#.!V QQ [U ~V cZ ~S 2U 8Y %#.$Y &#.sT wU TW hX 2U g` XP xU OR xU xU #P yP iN @P OJ #P RG *#.#P }L rC rC }L OJ )J LX qo x HM x `w x `w x `w x x Tx `w CB Vr n Fy yD n gd j9 El f 45 El `e 34 .f V5 v[ 34 6< V5 V5 v[ 34 44 Ln !2 ^1 ^1 /1 F{ J^ Z{ F{ ^' Z{ 9) F{ ;] F{ J^ ;] ;] Y{ F{ f; 3{ O~ 3{ ;] f; N! Y{ s~ v& *+ =+ *+ *+ 7= 7= 7= 3> ;+ *+ 7= D& ! `) `) D& %; ~+ d@.]+ ^+ ^+ ^+ (+ (+ ~+ U# ~+ J .:+ i` J..G& i` i` ,` ,` :+ i` 3T 4W FZ K .jX M .f@.M .=Y 6W 6W 6W j` 6W k` k` k` O+.O+.k` k` O+.=#.-#.l` ;#.>#.d..l` 7W IY IY 7W l` l` l` IY !Z ~` 3U i@.h+.P+.3U bO ,T e..3U ,T 3U ;Y lX ;Y ,#.;Y / ./ .zT KY HO HO HO LM HO tV r0 {Z 5H HO LM ot _i W2 '#.)#.bH !#.~#.l@.{#./@.0k gb #c sf MI P@._N _N 8E Kt iz Kt 7f ]..PM PM PM PM tJ JP [` S .bP JP S .R@.R@.l..-r -r -r u` R@.R@.-r Hs aP RZ u` |` 8g aP KB -q KB #B aK #B |` KB |` ;r |` ]#.l+.Ed #W _j .X Wg `` MO `` `` dL oZ _Z dk li 3g ^#.+H v` ,B cr 1x ^Y y @I U+.>e Fa /#.^G S% .& p@ :. '. b# ). -. -. E@ P G@ . E@ P }; L@ T Y ` M #= z N@ E$ M ", +"= = # . R@ ]& E! ]& + # - # R@ ]& + 0' $ $ ]& #S ]& ]& . ' + . L$ 0' . # X! $ . $ + * V@ ]& # V@ ^& = |* R$ $ ; ^ S$ # ; . $= = | z] S$ ; U@ | & U@ o! & # & 7- 'W ; ] N$ & ; ; & ~ X@ N$ | %= P$ { Y@ { ~ ^ { [ W@ 1 4 ## 7- X@ ( 2 -> } 6 ~ ( [ ~ [ 7- ( { /& ,# 3* } a L= 8 6 6 !# i a 0 0 {# 0 ~# 0 c o Y$ !# c 2, L= K/ p |& Y$ s> |& % r `$ r c{ p `$ Z$ b' `$ D b' p Y$ C; ;) $S 2; ^# F m w B z z a7 z #= z z A A {& 8* z I N@ 8* c- $T 1& c- c- }Y PT (#.>z iI Q Z..=K 3# E$ 0S _#.:#.yS 3d BX 3d BX ^P ^P #N RT +Z ^P ^P RT YX Z .@N sZ <#._M $N $N mL $N $N $N AS CX .` $N 4..-I 3Z CX aS |Y FN @@.#Z 2Y [#.CR z@.~Q nO B .0R }+.pO aX %` $Z }#.;X wZ _W DR oW %Z nW a .C .=@.cX a .8Z & .gV 8Z d .%+.%+.xZ +#.nU |#.6+. .G .G .Vw }T JX qW nV qW IX [W nV I+.JX JX AZ JX I@.AZ JX )V 8+.Y LM 5H HO LM ot Ib 7#.*d 8#.}i 9#.l@.S+.0#.tf )d %c a#.MI P@.P@.U+.P@.P@.8E 7f 4A $n ]..PM ]..]..7f PM PM [` JP _w Tn }` S .}` S .}` }` -r }` u` -r b#.-r u` |` u` c#.]#.-q _J -q |` ;r -F KB ;r 2x c#.(@.R@.2x Ed d#._j :q `` =L %W kh fE WY }j MO e#.f#.g#.^e |g Ug ,r h#.)e 7L GW iz _N !d 0H xX L N% l$ >* -& {= :. ). *. A@ l> x@ z$ X .= L@ P $> 1# Y K@ 4, b- H$ M I N ", +"R@ 0' R@ L$ L$ L$ J$ 0' #^ .( + R@ ]& ;b + + ]& $ $ R@ ]& # V@ # + $= # . > + Z, L$ > $ Q$ > # $ # = V@ V@ = > > o! . ~ ' = Z, # > N$ S$ Q$ . | . = o! & & 1) ^ }* & & }* Q$ ; ] N$ > ] N$ i#.2 H= Z, 2 | X@ | [ ; { &# 8- | } 5 <& d $# 6 a [ 9 4 [{ $# } [ 7 $# 2 a ,# 5 6 a c6 } J= {# e i g ]# c } ~# n k h Y> ~# c k ,# 0 s> 2, p ~# L= ,! r % Y$ L= |& 1; ^# D L= Z$ :# m #] ^# 4* z G :# w D ^# B ~& z I z 1& q2 z w I I I z 8* I 8* V V c- >z 3# Oz PT v@.>z aV T^ SO J SO c- i5 YX j#.BX E^ U^ k#.k#.#N ^P G$ ^P RT )Q ^P )Q ^P )Q bV sZ # .)Q 6B AS $N hT AS AS $N CX CX hT CX AS #@.hT aS 4..:M #@.ST G` ` .l#.m#.pY CR =S kT ;X 6Z pO DR pO %Z DR $ .n#.pO _W oW _W _W a .a ._W &` gV 8Z yZ yZ o#.%+.* .a` %+.0` I` |#.QW p#.0..q#.}T HS >@.G .L` AM }T r#.L` G .IS Ix [W [W gX nV qW =V gX gX 9+.9+.f` JX qW @Y f` gX &+.aZ ~S ~S pV [U cZ }U }U cZ qT `T 8Y }U sU U 'Z eR CZ vU =..jS PN @U tW XP yP ^S :K :K OJ 'G OJ :K }L OJ RG xL FI #M OJ q RG q ;w 6O a= 7= C& e, S# x* ^+ $; ~+ ^+ ^+ ^+ ^+ U# ~+ ^+ ~+ L+.J .N+.M+.U# b+.f@.i` ,` ,` i` i` s#.QS K .jX M .N+.S` 6W j` 6W QS l .j` j` j` 6W XV k` c..6W k` k` HZ xT t#.HY IY 7W )..] .!..^ .P+.l` ^ .7W l` 3U ,T IY !..!..,T ,T ,T -Y ,T e..,T ,T hZ {Z KY hZ hZ u#.hZ 6#.v#.tV tV KY tV n .{Z LM LM 5H LM sa _i w#.Yb 8#.:b ^@.x#.x#.m@.y#.>e !d z#.ED ED sf P@.P@.U+.P@._N Kt 8E Kt 7f ]..7f ]..lA PM PM ]..PM zC tJ lA }` }` S .S .A#.}` }` }` }` S .-r 2x (@.l+.(@.u` GW 8#.S+.}` u` (@.p@.2x Is 2x 2x hz B#.tS _j fE +R LT WM cU LT GT C#.=L dk [j Mf Vg mi [j VZ .d D#.cv yC ,o ]..rc 1b E#.F#.1$ 7@ >* u@ 5& '& ). A@ .. .= =. C$ }; K@ 4# 4# M@ H H H$ Q@ ~& P@ J I I ", +"]& L$ = ]& L$ ;b $ # R@ = ]& $ + ;b > # L$ ]& . $ 0' + [* + # 0' ]& + $ + + $ . * !, & + & $ 0' Y! & [* & ^ S$ 0' `@ S$ k) $ = . . ' $ . ^ ; ' 2) > . . U$ ] { N$ > $ > W@ - & | X@ | ; N$ ^ | ~ [ d | 2 ) ~ - ~ X@ 1 { I= d 6 } : &# 6 } 6 3* J= ,# $# D, 7 6 ,# 3* Y> k e Y> ~# ~# &# n n 6 c a g h _# 0 n r n L= ># p n n Z$ ~# 4* `$ Y$ ;) `$ s> q n y p `$ G#.1; ,> % 2; {& `$ z D @= t G I E C D 1& 8* z /U z w z G A n! c- c- c- M P@ O@ :#.H#.d{ Q AR Q y .>z SO Q T _#.I#.qF 3d 3d BX (U #N 3d RT #N )Q )Q ^P ^P ^P 3d Z .)Q qH _M lP $N hT hT AS $N AS hT $N CX AS AS aS AS .` J#.FN K#.:+.ST tM ` .B ....D..=S @` pO L#.jT M#. +.vZ L#.N#.3Y nP _W ^W wZ oW *` *@.H` &` gV * .yZ & .d .%+.d .E..E..%+.E@.zY qU |#.-@.F .-V GR O#.HX HX }T HX IX }T }T IX P#.G .Q#.> .gX L` nV JX gX f` JX JX AZ JX f` R#.nV f` f .UP lQ qT qT [U S#.~V H..[U ~V U ,Z {S sT tW 2O ,Z T#.2W PN jS @P 5O 5P :K U#.@P @P #U :K fR 'G }L }L OJ 'G FI OJ fR .F ;w q CB i` M+.L+.V#.K .,` :+ :+ i` ,` 3T jX i` M .l .,` K..j` j` j` QS _S j` j` O+.6W 6W j` j` j` O+.h@.L..IZ !Z =#.W#.X#.l` Y#.l` l` l` l` IY 7W IY ~` bO Z#.l` Z#.~` bO ,T `#.;Y hZ ,T hZ hZ n .KZ hZ / .n ./ .;Y KZ LM tV KZ ^` n .tV HO LM 5H 5H _i uK $.&e ]B .$.+$.@$.U@.S+.Js !d rc zd [R [R 8L #$.Eo _N sf sf _N P@.Kt Kt $n 7f Kt ,o 7f PM PM ]..]..JP PM Tn S .[` XI S .hz S .S .}` S .2x Is 2x 2x 2x 2x S .S .A#.l+.2x 2x tu }` hz 2x *f ~#.$$..X dk `` 8w |N jA xv QD gW DQ `` ~+.ji . X! # }* . ]& T@ . Z, > T@ Q$ # ; U@ > {c > [* 0' U$ U$ > ]& & $ > /& | > & ^ ~ & ] ; ## H= ] R$ & ] ~ N$ ~ ) N$ ~ ~ o! o! X@ 2 ~ P$ ^ [ 2 : [ ) [ { ~ < [ ) -> < /& } { 6- Y> : ~# a 6 ># a ,# ( a i 7 V~ 3* 7 a 2d i ,# ;= n n c ~# ~# ~# ># a L= o _# 0 i k tA c{ Y$ o/ ^# h m s> n L= }& D q h 1; #] :# /U F= w p ^# /U G /# B {& G w G a7 G F= 8* O@ F= $.`I +Z _M EN <#.!Q AS $N mL AS $N CX hT hT +@.CX CX aS E` CX ,$.'$.DX BR 3Z CR ` .)$.EX #@.qY =S DR 0R B .$ .!$.M#.;X 0 .sY DR a .^W cX %Z a .yZ _W *` ~$.%+.gV ~$.& .* .{$.d .8Z E..F+.RE ; .pU zY qU J` }T }T ]$.r#.G .=V F..oT HX JX G .^$./$.> .G .JX gX PV nV JX PV AZ &+.f` gX gX JX bZ f .!V , .@Y 7Y 7= *+ O~ f% *+ =+ =+ g% e, (' $- =+ {+ 8= G> 7= D& j% ^+ Q# ~+ ^+ ^+ ~+ )@.^+ L+.~+ U# e@.i` ,` d@.!@.,` N+.d+.N+._$.:+ f@.l .:$.,` d+.L .<$.*Y j` =Y dY k` ,..j` O+.k` j` 4u =#.j` '` h@.-#.L..xT ^ .[$.IY IY Y#.l` l` l` l` l` !..l` !..~` -Y P+.!..i@.;Y 3U hZ ;Y ,T hZ hZ ;Y / .]` hZ j+.n .}$.;Y KZ HO tV ^` w../ .MZ LM LM HO ot @f |$.1$.yK 2$.3$.zc < .4$.m@.Pf ;c ze gb %c 5j a#.a#.#$.ED sf P@.P@._N sf Kt $n o+.Kt Kt ]..]..,o 7f ]..zC PM ,o [` [` PM _w lA [` [` Tn *f hz S .lA bP S .tu l@.=F hz 2x *f *f hz 2x Tn Tn Tn Ed _d .X :q kh DQ xv eE pu pu QD |N ni hW 5$.(j gi Wg ew ii Uy 6$.~Y KB zC 8E gb qb rb 7$.#@ g$ >* -& v@ '& F, ). !. &. )& V V U X H T J P O@ S M a- G A I ", +"5_ = 1) J$ k) + # k) + L$ + # ]& = & ]& k) # R@ L$ <{ # . $ # # Z, $ |* . = ' S$ X! # U$ $ Q$ ' |* # = & N$ ' > > T@ + $ ; ] Q$ 2 & > > & & ] U$ ] U@ | N$ N$ Z! & %= & ) X@ X@ ) & H= *# | N$ U@ & ) 4 { { { } $# ( } { 4 ## ## } d 2 *# 3* 7 ,# ,# 9 } } ( 4 d 5 2 4 0 6 6! 6! i i W$ c K/ tA 6! h n k a {# 0 ,> L= i e (# s> ^# Y$ L= Z$ 4* Z$ 4* 4* L= h h ~# s> 2; m t /U ^# Y$ :# n! G Y$ F= N a7 /U t /# 1& N= N ;O 8$.$T 8* I 8* T^ O@ T^ 3# 1& z JW Z..z v@.>z }Y Z..P@ |# iI aV Z..(U oY *I BX 3d ;$.pF #N #N #N Z .^P ^P ^P RT #N )Q 9$.EN -X 0$.RT mL AS 3@.$N AS CX $N D` 3@..` CX 3Z .` J#.+` aS pY @@.y@.cS a$.=S )$.#Z 0 .5Z DR ;X +.b$.0R nW aX c$.aX cX 0R *` #..C .xZ *@.d$.e$.d .8Z =` *Z d .E..%+.p#.C@.f$.* .6+.g$.b` mV h$.HX RW i$.i$.HX HS L` 5+.7@.Q#.HX > .> .L` f` gX JX > .AZ AZ ;Z j$.JX AZ k$.AZ f` f` nV , .w H| :^ F{ Z{ Z{ Z{ J^ F{ F{ Z{ Z^ ^' 3/ ;] ;] (! O~ ]~ Y{ M, Z{ Y{ Z{ S] Y{ M, N! ;+ ;+ $- 7= 7= ;+ =+ $- -+ g; ;+ D& !+ =+ r- {+ d) O, V# E& ^+ ~+ ~+ ^+ (+ ^+ ^+ U# U# b+.k .{ .M .b+.,` L .N+.,` l$.k .jX ,` i` c+.m$.,` K..O+.k` 6W k` n$.K..QS j` n$.k` HY j` 6W o$.L..] .IZ !Z O+.p$.l` IY l` IY P+.l` P+.P+.!..!..!..3U 5#.l` -Y -Y ,T hZ ,T ;Y hZ e..e..e..n .lX hZ M@.6#./ .e..yT >Y f..LM HO {Z HO LM WN /R c ~#.r$.s$.t$. - X! U$ . p9 L$ # * > . V@ ; = * . [* . & . $ > ' Q$ * T@ > ; | ; 2] N$ Z3 Q$ R$ ] & Q$ ^ > & N$ ; U$ X@ ) { R$ N$ T@ ' /& %m Z! 05 X@ T- 2 { { D, ( { [ U$ .# X@ 1 2 /& 1 ( 1 6- 5 7 7 9 { 6 a ## { *# 3* $# N' [ k c6 ># b ,# c a j L= c ,# !# ,# h [& o g {# i ~# y2 Y$ % n `$ ^# r u n ~# `$ o p m % ^# :# {& /# L= ^# F= w ^# G F A$.#] I ^# N a7 A n! $T I A 1& n! AR 2Z M o^ O@ T^ c- d{ d{ >z >z >z M 0S H$ }Y Q *I :#.B$.oY A: >$.r! (U .Z #N #N )Q )Q RT )Q RT )Q `I ^P EN -X 9X RT -X $N D` AS $N AS AS AS hT E` hT 3@.0X E` aS +` pY |Y y@.l#.C$.%T 5Z qY B .D..pO kT 0 .z@.uZ nW %` N#.6Z oW +..a .a .uY D$.E$.a .a .8Z 8Z d .& .d .-@.* .* .%+.%+.E..F$.-V f$.G$.F$.|#.H$.I$.G..HX > .Q#.HX =V HX L` G .L` qW gX [W gX gX J$.nV gX IS pT qW &+.9+.9+.f` f` qW [U h .! .K$.! .#Y 8Y [U =+ j% ^+ ^+ ]+ ~+ U# ^+ ~+ /+ U# L+.U# L+.e@.:+ i` L .M$.i` ]R ,` ,` ,` V#.jX V#.M .l .c+.:$.:$.6W k` j` 6W j` O+.O+.k` j` O+.j` O+.k` n$.h@.m .d..l` n$.p$.IZ IY IY ^ .h+.!..!..l` l` l` !..{` 3U P+.P+.-Y ,T 3U ,T ,T ,T e..e..e..lX e..hZ ^` 6#.n .hZ n .HO lX tV >Y tV tV tV LM On Hy N$.O$.(y >c 3$.>c P$.Q$.0#.R$.S$.Yb xe >e T$.~d %c a#.a#.T+.Eo sf MI MI sf P@._N 8E (J (J $n $n 4A 7f $n 7f 7f ]..PM ,o ]..VJ lA PM lA PM ,o < .,o lA lA l@.lA zC U$.lA *f lA ,o ,o ,o < .< .$n 4$.`` w` C#.DQ QD pu pu eE /n jA xv DQ GT fE `` dL w` `` 3g -L vX QH Hs ,o uN YI V$.ZI m, b$ -* N- x$ }@.). x@ &. . A$ G@ F@ D$ ` P |; |; S N@ M@ A Q@ A N O@ ", +"R@ R@ = = G= V@ L$ = = * ]& ]& + G= $ # = . R@ # + # # . ]& > . # = o! 5_ Z, 0' + - . 0' ; & * = ^ S$ $ & > Q$ | ^ S$ $ = $ ; & ; - *' { > N$ - U@ N$ & ] N$ P$ ] ] X@ ~ | | X@ O$ > .# & | H= U$ H= > I= | { ## Y@ 1 2 { 2 | .# d ## { ~ == ( } ) 5 $# a ,# 7 8 } 1 a ># Y@ g 7 7 V$ W$ a a ,# n ~# ~# a a ]# k e ,# L= K/ c 2, L= ]# Y$ 1; ,> 4* u Y$ L= Y$ D `$ b' t w 2; :# {& /# /# m m m 6* /# w 1Z @= m G N 1& n! T^ M 1& c- O@ n! n! I I O@ V =X z ..@._+.O@ Z..Oz y .O 3& O iI i5 iU aV A: )Q 3d *I BX W$.)Q )Q ^P RT Z ..V Z .^P #N EN EN 1@.9$.EN 9X Z .AS AS $N CX $N AS .` hT E` y@.aS aS pY ` .|Y '$.cS X$.D..Y$.[#.Z$.CR vZ aX $ .L#.pO nW sY +.`$.nW _W 1+.#..nW *` %.% .#..C@.xZ * .8Z 8Z d .d ..%.%+.E..-@.-@.qU f$.+%.G$.pU 7+.G..NV e .H$.Q#.=V }T IX L` G .> .G .Q#.L` qW Q#.[W f` qW QV PV pT JX 9+., .h .f` f ., .8Y f .@%.~V cZ [U cZ ~V $Y `T ~V #Y qT #Y OR %Y %Y xU ON _K XP 5P XP XP ^S yP OJ OJ }L }L :K :K OJ #P OJ }L CB }L OJ x SG x `w x rC x x q qo $%.D& %%.~+ j% ~+ ^+ ^+ %%.^+ ^+ ^+ ^+ U# ^+ e@.N+.M .b+.i` ,` i` i` i` ,` M .l .:$.i` :$.s#._$.K..O+.j` )T j` k` &%.j` n$.O+.OX j` k` O+.*%.=#.p$.l` !Z =%.[$.l` ^ .IY l` l` !..W#.P+.P+.l` i@.3U !..-%.i@.hZ ;Y ,T i@.hZ hZ e..u#./ .e../ .;%.>%.n .u#.e../ .6#.tV HO LM HO HO LM ot 3c ,%.'%.$B ]B )%.!%.~%.l@.{%.]%.^%.Zs mc #H -d $c %c %c %c #c /%.tN (%.ED 6L P@.P@.P@.U+.=M 8E XY Kt 4A (J iz $n k..PM ]..]..$n ]..,o ,o ,o ,o < .~#.lA < .,o ,o lA < .7f VJ < .~#.~#.< .< .7f Ac 4$.WY fE UY DQ )B pu jA xv )B WM JT _%.:q (j ii (j w$.ew :..]e :%.WS uJ @I ED TD rb <%.(B ~@ m$ -& m@ s@ ). ). %. +. z@ L@ P Z J J E$ K@ 8* 4, I Q@ S K Q@ x ", +"L$ % L$ L$ + ]& L$ L$ ]& + ]& + # V@ $ = + . . ]& V@ . $ . > # - + + # = > S$ ]& U@ $ # ]& . Q$ . o! - S$ & . . k) . Q$ [* & & $= | - ^ & $ > - S$ Q$ ; Q$ . U$ * . Q$ ] | Z! ) ) X@ | ] ~ | | { ~ 1 [ 7- { [ 4 [ Y@ ( ( [ Z! | { { ( $# ( < $# { { 2 d } &# ) b 0 2* ,# ># ~# 0 d j ,# ~# !# e ~# W$ a ,# i !# k ~# p c a L= p Vj h s> L= h ,> n^ Z$ q 4* ^# q t m 2; ^# <, t p Z$ :# w w w w N a7 n^ {& z QT y .SO Q A: iI *I Q oY *I *I BX `I U^ k#.[%.@N )Q )Q #N +Z ^P RT RT ^P -X sZ 1@.bV 0$.AS $N 0$.hT $N hT AS hT hT hT E` cV 3Z E` C.._U ` .7 .}%.#@.4Z Y$.Y$.EX CR G` nW jT 5Z |%.N#.sY sY <+.|+.^W *@.1%.cX #..*` E .2%.E$.E .d .d .& .8Z * .d .* .* .]$.-@.RE )X 3%.F$.5+.0..}T -V 4%.7+.^$.G .> .L` }T [W > .G .> .L` PV gX 5%.JX qW nV AZ J$.SV OQ g .6%.AY 1T 1T 7%.pV 8%.)V qT [U ~V 8Y `T }U cZ ) .sU $Y P` P` 2U +U %Y PN 9%.^S @P 5P yP OJ Q` OJ +M fR :K :K :K :K }L #P #M ;w OJ rC RG GI `w Px qo x Tx kt x TG kt kt Tx yD x kf ch j9 |u Vr n El gd gd j9 j9 gd U3 45 u^ 6< `e V5 34 V5 34 34 v[ I| )2 +{ I| Sc F{ F{ F{ 9) 9) ^' Z{ F{ Z{ 9) F{ q- -] f; 0) ]~ ]~ ;] F{ ]~ O~ e! &~ s~ =+ 7= =+ 7= =+ ;+ ;+ 6= 7= 7= =+ =+ 9= S# ;+ r- 9= !+ 3#.E& y* y* 0%.%%.(+ ~+ L+.s- ^+ L+.L+.b+.N+.d@.a%.,` ,` _$.N+.N+.L .bY { .N+.f@.l .M .b%.f@.c%.k` k` ,..c+.S` j` k` O+.j` O+.O+.*%.O+.L..IZ IY d%.h@.IY l` !Z !Z l` h+.l` l` !..!..e%.i@.5#.P+.-Y 5#.hZ i@.hZ ,T hZ `#.hZ lX u#.]` f..>%./ .u#.e..f%.6#.tV HO g%.MZ {Z HO 5H $g h%.(f fv i%.,c zc ,c _d j%.k%.l%.m%.vd rc gb !d ~d ~T !d z#.kb a#.a#.#$.MI 6L Bz MI sf 6L =M sf U+.8E 8E 8E 8E Kt $n ]..7f 8E R .7f 7f Kt < .< .< .n%.7f 7f 7f ,o o%.iz iz n%.7f < .$n iz Ac hE p%.`` fE %W KT WM WM KT QD q%.%W UY kY r%.Wg (j dk WM Yg rd lk [N ZN yC @I yK 0H Fa s%.7I V% m$ :; w$ w$ {. x@ !. *. X L@ @. G@ H S Q@ S 1# H$ Q@ N S Q@ G /# ", +"]& J$ # ]& ]& + ]& + 5_ 1) + + $ $ # L$ 1) . $ = # + L$ = # V@ V@ $ & . = ^& $= + o! $ # + $ U@ S$ A; + L$ . L$ V@ V@ = Q$ . $ . & ; T@ P$ > & Q$ ^ & H= | ; ' U@ ; [ . | | ( N$ { 4 ; 4 7- ~ | 2 ] /& ## } *# 4 <& ) ) 2 { Y@ | *# P$ | *# *# *# [ 7 [ 6 1 a b e D, 6 6 M' i i Y> ,# V) ,# ,# L= q> L= n 0 0 !# tA o Y$ L= n r ,> K/ t' 2, h p e n n ~# c |& 1; :# ^# 2; t {& 4* ^# D % t G ^# w $S G w K z D B 2; C G w z E; M A Q@ V Z T^ >z H$ c- 3# 8* >z V 5 .t%.A: H u%.t%.oY SO *I iU (U *I yS 3d k#.BX #N RT #N ^P )Q bV ^P ^P RT +Z -X -X $N bV -X $N D` CX 1@.AS AS .` hT E` E` HQ y@..` .` aS $@.pY ` .D..4Z ` .5Z #Z qY z@. +.jT z@.z@.v%.F` vZ $ .w%.x%.uY *` a .oW #..a .a .#..{$.{$.I` * .yZ d .+#.* .%+.+#.%+.p#.+#.F .G$.y%.f$.7+.1#.F@.HX =V > .G .IX L` H$.G+.IX > .IX nV pT qW AZ AZ JX f` 9+.8%.SW JX AY f` aZ f` BZ H..I@.G@.!V 8Y ~V ~V ~{ &+ =+ &+ =+ ;+ =+ =+ D& &- $%.&+ ,+ %%.%%.T# U# U# U# ~+ z%.U# L+.U# L+.L+.b+.N+.N+.U# i` ,` i` N+.N+.,` jX E* N+.N+.c+.c+.N+.A%.c%.k` j` K..&%.O+.O+.O+.k` O+.O+.k` O+.n$.] .B%.IY e+.OX )..C%.Y#.^ .h+.l` !..l` !..l` !..!..hZ l` P+.-%.hZ e..,T e..e..,T ;Y hZ e..n .hZ e..u#.|~ n .u#./ .MZ HO w..D%.HO ot On 4I E%.Yb F%.mk :b Ac tb G%.H%.I%.J%.K%.Tb nc nc rc -d L%.jb %c %c a#.%c tc T+.M%.#c tN P@.U+.MI sf sf _N _N P@._N o+._N _N o+.8E R .7f Ac Ac k..$n 7f iz 7f 7f $n < .>c 7f R .$n iz $n $n $n Ac sf p%.fE _%.UY y` %W y` UY y` UY ._%.MO `` (j ]j _j /y TI nv cr 1N 7L Tn LB N%.YI `b O%.nA [~ 0q m@ s@ B= c# ). +. 5# A@ #. 4# P V T Y H K@ +% I z P@ 1& #= F ", +"]& # # J$ L$ ]& R@ + = = ]& # = ]& + + L$ + ]& # V@ Z, k) + > . # & . . ]& # . X! = > Q$ > & > T@ + = T@ . Q$ U$ & ; & $= H= S$ | 5- S$ !, P$ 2 N$ ; N$ & `@ | & ; ~ H= 05 > X@ & ~ { & ^ N$ N$ ] 2 X@ 2 X@ 2 4 1 6 X@ / J= 2 } } ## 2 X@ ( { 2 V~ 4 d d 6 } *# ,# a 6 a ,# k 0 z: a a a 9 [& ,# n j L= k e a' z: c{ |& L= h h {# 0- q p 5* -) Y$ _# ,> r s> ^# V| Z$ t t Z$ h p 4* {& F= t 6* {& 2; 1; #] z Y ^` tV tV HO ot c o+.Ac Ac 7f hE _N 8E 8E $n $n YN YN _N S..n+.*&.:q _%.C#._Z C#._Z UY UY C#.%W C#.9T w` WY (j hi GT uj ,f IP md WS aH S .=&.Yb ~d -&.;&.>&.o$ u@ -& v@ d# ^. A@ E@ G@ G@ V }; I@ L@ 1# M@ +% S P@ A Q@ +% I F ", +"]& L$ L$ $ ]& R@ + ]& L$ + $ 2) L$ + . p9 # > I/ ]& + + . > }, # & > $ . + L$ |* > Z, V@ - P$ - . > . # # o! $ ~ > ; $ > & > 2 > { ; ; & =' & S$ > & ] . ' ; | ; U@ ) & 8- ^ & - ) P$ N$ { H= P$ 7- 2 7- d [ 2 4 J= 6 d } X@ 2 /& { 2 <& : 7 5 6 b } 4 0 q> } D, ## d 6! 6! [& W$ a ,# i ~# n o 7 a' c k L= g ~# L= o c n 2, h c `$ n {# K= ;= n `$ m p % Y$ $] V| ^# n :# w F= 1; m K D b' #] 4* z #] /# G z M= M I I Z z z 2Z ,&.F= M q! $T V '&.z . V V .@.c- Oz d{ z .*I A: *I A: A: B..k#.#N XX )&.oY )Q ^P #N yS )Q )Q ^P RT RT _M )Q `I !&.9$.0$.AS hT ~&.{&.0X AS 4...` E` hT 4..BS 4..AS E` ]&.|Y ]&.D..[#.^&.dS ^&.F` 5Z ;X aX z@.0 .0 .6Z /&.N#.w%._W _W a .cX #..%Z #.._W %Z 6@.{$.d .d .xZ {$.d .E..%+.RE (&.p#.@#.3%.]$.;V y%.r#.sP c` _&.G..L` IX IX L` HX > .IX > .IX qW f` gX gX gX f` &+.AZ JX gX 9+.aZ aZ aZ )V I@.) .[U Y HO 5H [&.}&.]B ZV |&.uJ !%.fw 1&.W@.s .)f 2&.;s /w nc nb nc rc -d #H ze ~d %c %c a#.a#.a#.M%.ED #$.ED #c 3&.6L _N sf sf sf S..YN tN sf =M YN }i sf Ac Ac Ac 8E Ac o+.Ac Ac _N YN _N =M sf S..sf sf }i vV 4&.^j `` +R UY 5&._%.6&._Z y` JT %W C#.r%.`` (j ii KT kM fE dU 3R ZM Is ,o Kt iE ~d zf 7&.O% 1@ j- :. O- 5& '. b# )= R V T O= $> Y H S H$ b- I I Q@ x I A ", +"L$ J$ J$ G= J$ = + k) ]& . ]& = ]& V@ # 0' p9 # . $ ]& ' $ ' - S$ . $ + L$ ;b ]& 1* $ . Q$ . S$ - > ] > > ; R$ S$ U@ > H= ; H= # Gc > | N$ ^ # $ # { Q$ & { P$ ~ ) Q$ S$ Z! | Z, X@ ~ U@ H= { ) N$ 2 %= ] Z! | %= 7- 1 [ 4 ) { 2 *# 2 X@ } { 2 d J= ) 6 { / a $# ( -> 5 1 ( 6 *# a' 0 7 Y> K/ ,# 0 a' c ,# 0 ~# b Y> n s> h n 2, 0 n^ c ~# h W$ p ~# 4* -) ,> /# ,> Y$ @= G ,! w p W$ ^# E t m w B Z$ w /U a7 A$.2; G A /# JW z F= 1& a7 a7 T^ Z a7 A T^ T^ V 1& V V O@ z ..@.|# A: 5 .iI A: 3; J 8&.aV SO BX .Z (U qF #N ^P )Q ^P +Z ^P 3d +Z +Z )Q EN 9X {&.<#.0$.6B $N 9&.0&.1@.~&.1@.CX CX .` a&.$N 4..hT y@.y@.pY |Y b&....4Z 5Z D..5Z 5Z c&.0 .$ .z@.}+.M#.=@.M#.w%._W ^W #..a .++._W 6@.*` #..a .{$.8Z d .%+.* .d&.* .* .%+.e&.- .-@.g$.+#.c` pU f&.r#.0..I$.IX HS > .H$.Q#.> .L` G .}T G .G .PV JX f` 9+.5%.9+.AZ JX AZ I+.lQ AZ 9+.'@.)V !V !V 7%.g&.~V [U qT cZ UP ~V qT cZ ~V H .dR ,Z ,Z tW yO dR hX @P TQ yU OJ }L fR :K :K 'G :K 'G OJ }L fR :K q #M 3I `w Px qo `w Bl q CB x q x qo x GI .g h&.Cl kt Vr j9 n j9 >0 j9 `e 6< j9 kf gd 45 V5 v[ v[ 34 34 v[ v[ 34 v[ !8 D9 b^ 9) :_ )2 F{ F{ F{ ^' +{ 9) F{ 9) ]~ ^' ^' 9) f; ]~ s~ ]~ 0) f; q- q- f; Y{ .; f% +; 7= ;+ =+ ;+ 7= =+ =+ =+ ;+ =+ &+ !+ D& ;+ r- Y' i&.U# T# U# ^+ ~+ U# ^+ y* j&.^+ ^+ ^+ L .Y%.N+.a%.N+.k&.l .N+.N+.,` _$.N+.,` K .Y%.l .M .l&.k` j` k` O+.O+.k` k` m&.k` OX OX n$.&%.O+.p$.p$.n&.IY OX [$.IY l` l` !..l` !..!..!..P+.!..`%.;Y :&.o&.-%.hZ e..u#.;Y e..hZ ;Y e..hZ e..e..u#.e..6#.u#.u#.>%.>Y D%.D%.>Y 5H UN p&.q&.VW yQ r&.4G !%.@$.|&.s&.t&.u&.v&.w&.Sb ve mc nb nc rc -d gb >e #H %c %c %c %c ED M%.#c ED %c T+.sf P@.MI MI S..MI tN T+.S..=M S..x&.3&.8E _N .T _N S.._N _N Ac YN sf sf S..~%.S..Bz y&.ti vV z&.ii :q kY }j A&.B&.C&.1 .kY JT %W C#.r%.D&.E&._j cU eE w` ^F $O ZV KB n%.eP 2N Oj V$.F&.(@ 9@ {* w$ v@ ). -. X +. E@ 7# J@ E@ Y P H Z +% Q@ P@ K@ G z M A ", +"% ]& R@ G= .( = + <{ J$ + ]& ]& . & V@ M$ + + . + L$ # . . > + + + . - > #^ . ^& + 0' - > %= |* . Q$ $ U@ . - $ ~ ] & . ; X@ . | =' Q$ T- U$ N$ V@ ] S$ Q$ R$ Q$ N$ ] [ { Z! 2 Q$ 5- } *# ; Z! ) U@ ~ X@ ;# ~ ~ ~ 7- 1 { W@ ~ ## ; V~ ( /& } [ ## 4 6 ) X@ D, _ V) 7 9 e 6 6 5 d a ( ,# ,# ( [& a ,# ~# q> e a' {# h 0 L= r ,> [& 2, n h ;= r n r ,> 0 ,> `$ Y$ ,> 1; V| p F ^# p u n^ ^# B m t B {& G E C` N 2; z I G /# 8* E z 1& 8* I T^ JW n! 8* M c- KW Z c- .@.O@ o^ t%.0S Q 5 .3# L SO B$.B$.B$.:#.k#.#N r! WX ^P ^P `I RT Z .Z ..V G&.RT ^P +Z H&.9X H&.+Z 9X w@.7` hT AS CX $N E` CX CX CX AS CX CX .` z+.|Y pY 4Z ..l#.B .B .l#.B .<+.F` jT <+. +.^&.I&.J&.K&.b$.a .a .uY L&.#..%Z xZ a .#..E$.gV & .* ..%.%+.o#.E..+#.]$.]$.+#.D@.c` - .NV 4%.M&.L` K` 9..}T IX M&.L` HX G .G .HS 7+.L` qW nV qW Q#.f` gX gX AZ N&.O&.nV lQ AZ gX HG !R 1T H+.)V P&.cZ qT cZ qT [U sU $Y cZ sT NR g` 2U 2W ON zO 5P 5P K+.XP TQ ^S fR 'G OJ OJ fR OJ OJ fR OJ :K rC #M :K qo #M RG qo qo q q x `w )J q `w x Tx ch q q Vr >0 T3 .g T3 gd gd `e gd T3 j9 T3 V5 6< 34 `e v[ v[ 34 v[ V5 v[ R( 06 F{ +[ 06 F{ 9) 9) ^' F{ 9) F{ ^' ;] Z{ ^' F{ f; q- f; ]~ f; (! q- ^' 9) f% u& +- .; 7= =+ ;+ *+ 7= ;+ ;+ ;+ =+ =+ ;+ 9= =+ ;+ r- &+ A& ^+ ^+ J@.^+ (+ ^+ U# ~+ U# U# L+.L+.e@.M+.,` a%.M+.N+._$.,` N+.,` _$.k&.i` Y%.K..:$.f@.f@.O+.O+.&%.O+.n$.O+.k` 6W k` O+.m&.O+.Q&.O+.[$.] .R&.Y#.[$.-#.!..!..l` l` !..l` P+.!..!..!..i@.e..i@.Z#.S&.i@.hZ hZ hZ hZ hZ hZ hZ u#.e..>%.u#.>%.u#./ .e..e..6#.HO HO /R 5H uK T&.U&.x$.V&.e Hd Aa =*..* 2@ l@ -& ~. ). x@ R A@ C$ &. V C$ }; 2# H M N@ +% H$ A P@ I M /# ", +"R@ + ]& 5_ + + $ ]& ]& ]& + + . + $ V@ # + + # # R@ # = R- % > > $ V@ > $ 5_ - > .( Z, . & # V@ > > Q$ * ] > $ |* = > > $ . . > $ . & ; Z, $ ^& | ; > & ; ; ; . | ~ . { [ Z! . ] *' Z! | N$ ; & N$ | N$ [ ~ [ 4 : { ] ( [ [ 2 /& d D, [{ ,# < } a e 6 < j } $# b $# ,# 0 :& ~# vk 7 ,# W$ ~# h ~# 0- ~# ,# o o 0 p q h K/ L= r % ]# p r c{ Y$ h 2, 1; n Y$ Z$ Y$ `$ /# Y$ D /# /# {& :# z F= 1& {& G z {& G z 1& 1& 4* w z B A 1& n! c- I =X K c- O@ 3# c- PT A..5 .y .-*.c- L ` ;*.-*.>*.iU I#.qF #N ;$.BX pF 'Q ^P ,*.,*.3d ^P >$.#N bV Z .sZ mL 0$.1@.0&.'*.D` +@.'*.CX CX AS hT )*.AS aS .` E` a$.pY #@.]&.7 .@Z tM B .l#.!$.F` !*.lU ~*.L#.aX A@.x%.{*.0 .%Z _W ++.U%.=@.a ..%.U%.#..6@.d&.yZ ~$.xZ ]$.F$.]*.+#.-@.E..E..@#.4Y p#.]$.^*.;@.G .y%.0..> .IX L` }T =V IX IX IX G .Q#.5%.PV pT [W 9+.JX f` &+./*.AZ AZ pV qW AZ AZ SW pV K$.7Y , .~V 8Y ~V 8Y [U 2U 2U 2U }Q {S @U sT NR jS +P (*.5P _K _K TQ yP fR iN OJ fR #P :K 'G OJ QG OJ .F q _*.QG q F 6O q qo #M q Tx x x qo q q kt ch HI YK kf j9 .q >0 gd j9 Kn uo T3 j9 `e U3 v[ 34 :*.U3 v[ v[ 6< 6< 34 +[ 34 b^ +{ +{ b^ 9) d; 9) d; 9) d; 9) ;] 9) 9) F{ 9) q- z& d% f; M, ;] q- t* u& /' +- M, $- ;+ =+ ;+ ;+ &+ &+ =+ 7= -+ -+ y& !+ !+ <*.'+ &+ L+.L+.J@.U# ^+ ~+ L+.L+.L+.L+.L+.L+.j&.[*._$.b+.}*.N+.|*.N+._$._$._$.1*.N+.s#.2*.M .c+.5T K..6W ,..k` n$.c%.O+.O+.O+.O+.n$.O+.n$.|$.|$.] .p$.)..^ .p$.h+.!..IY f+.!..l` P+.!..P+.!..-Y 5#.,T P+.3*.e..;Y ;Y e..u#.u#.e..n .;Y >%.>%.hZ e..e..6#.f..4*.<&.HO tV o` 5H UN 5*.;j o..6*.7*.Vk 8*.,g j%.s&.9*. *.0*.a*.b*.ye vd +c nb nc nc rc =d -d sc xK -d !d %c jZ tc a#.#c a#.a#.a#.a#.c*.c*.c*.n+.n+.ED S..d*.5j T+.T+.Ac sf sf Bz tN S..MI S..S..ti kH vV yK a#.e*.e*.f*.g*.hi Wg WY w` +R h*.i*.j*.8w JT JT 8w HP kh }j dL k*.tv cE l*.Ks /T p..dv 7f y$.1b La ML %@ X% i@ {* (. ). z@ +. (* G@ T P Y M@ O Y M P@ M S S m) @% I w ", +"# =[ I/ =[ # L$ + = + . ]& + [* + ]& ]& S$ . $ 0' !, ]& k) # # = + # . $ k) . V@ * # S$ $ Z, |* & Q$ > U@ S$ Q$ Q$ ] ] Q$ - = . - . ; $ ~ & - S$ $ Q$ > V@ > o! X@ 2 { { > H= | U$ ; ; ^ ] ] ~ ~ N$ X@ Q$ 2 Z! W@ | X@ } { 2 } / ~ ~ } ## | 8- [ 6 ( ( Y> ## ~# q> 6 ## < d 6 ( d b a K/ e e 0 ,# a m*.9 c ~# a' c z: e e ,# r v r n n h 0- `$ % L= `$ ^# m L= #] n^ q F 4* `$ w Y$ t }& 0- /# /# /# :# F= w {& $S ^# E G /# 1& N a7 8* ~& z..n*.T^ %.hZ >%.hZ e..e..i+.e..u#.6#.i+.;%.v#.>Y HO tV vK r0 D*.Df Q..bc E*.1&.S+.y#.R$.Y&.F*.G*.H*.I*.J*.Vb [f >d te +c +c mc nc rc )d rc -d >e gb gb %c %c tc %c %c #c [R 5j $c [R a#.[R [R kH ti [R 8L n+.YN S..tN Bz ED ti kH ti n+.[R [R [R [R a#.[R [R :f K*.]j :q fE w` L*.M*.N*.Qo O*.KT ni (Z +R }j dL +R P*.Q*.wv gE Kf 'r *n Is zC MI 1b Wa R*.6E c$ S*.(. d# &. -. A@ }; H@ Z D$ L@ P }; D$ H$ P@ P@ K@ G I @% Q@ G ", +"# K$ + + % # = 5_ R@ + L$ + ]& ]& ]& $ + 0' 0' + + 5_ ]& J$ L$ ]& # + T@ . $ |* [* L$ U@ $ T*.= = + $= & > 0' = & $ $ ; . Q$ U$ ] & & *# & P$ U@ ] Z! | ] > . |* & H= ; & ) %= ^& [ & & ^ & N$ ) | N$ ~ 1 2 7- ( [ /& ) | 2 ] ) } Y@ /& X@ ( ~ 5 6 3* q> ( a 6 $# -> { Y@ a j 9 ( $# Y> 0 8 ~# a M' K/ b V~ a 0 c{ 0- s> h n 0- W$ c ~# ,> s> L= 2, h s> ;= 1; c{ #| _# Y$ `$ :# @= 1; m :# 4* :# b' U*.F= {& B z w [# G a7 /# n! 1& z A I O@ O@ I T^ M T^ 1& #= T^ V AR V c- 3# V V (#.y .L |# L oY qF *I A: (U oY #N BX oY #N 'Q +Z RT )Q DN )Q G&.RT )Q RT +Z EN 9X 9$.bV 3@.hT D` 6B E` CX AS AS 4..hT CX :M 9&.a&.y@.pY pY |Y `X !*....$ .0 .5Z B .z@.N#.$ .s*.<+.V*.C ..#.W*./&.oW #..U%._W ++.*` ++.*` ++.d .]*.X*.C@.E..-@.x*.%+.%+.F$.+#.+#.Y*.D@.F$.Z*.e .;@.G$.[W 7+.HX H$.7+.L` Q#.L` nV > .> .X%.gX 8@.G+.AZ f` f` AZ f` &+.AZ AZ 9+.HG )V `*.S#.qT =.~V 8Y ! .) .~V cZ ~V O` sU U NR wU 2U NR VK +U TQ Q` 5O TQ 5P ^S yU jN OJ OJ }L }L }L }L :K OJ ;w FI ;w qo q F CB q x qo x `w q x q x qo .g I .DB Vr .g .q .g ch AP d3 45 T3 S3 T3 T3 u^ 6< 6< v[ =^ 34 v[ V5 !8 u^ 54 /1 9) A/ 54 F{ ^' 9) F{ d; F{ ^' d; 9) F{ 9) F{ 9) f; M, q- q- ]~ t* t* q- q- 0) @- R# ;+ &+ g% v& =+ &+ &+ &+ -+ &+ =+ =+ Y' Y' h; '+ h% E& a+.y* L+.L+.j&.L+.j&.j&.U# L+.L+.L+.M$._$.L .U# ,` i` N+.i` N+.k&.i` l .,` f@.c+.c+.k&.4#.O+.k` O+.n$.k` O+.OX OX n$.n$.k` OX n$.j@..=.L..P+.[$.Q&.] .!..!..!..7W !..P+.Z#.-%.P+.Z#.Z#.;Y S&.+=.Z#.hZ hZ hZ e..e..hZ hZ u#.e..u#.e..u#.e..@=.u#.#=.g%.tV tV KY zT $=.yh %=.&=.*=.==.,g -=.s&.;=.>=.G*.G*.,=.'=.)=.vd vd Ad vd +c {d mc nc nc rc rc gb rc #H ~d %c ~d $c %c [R %c 8L T$.T$.%c [R [R [R !=.5j [R [R n+.T+.[R [R n+.$c [R [R [R [R $c $c $c yh yh ~=.{=.]=..X ]j WY fE `` !n ^=.w` x` y` dL _Z kh w` `` MO dw [x eE QD xf MT Jt aI Is 8E YI 3b /=.f) }- e@ u@ D= ). ). !. 5# G@ Z 1# T H L@ Q@ 1# K@ Q@ M@ A M O@ S I ", +"0' # # J$ ], K$ ]& L$ + % ]& <{ J$ J$ + # [* = =$.# E! k) + . # . # V@ . + ]& V@ ; = > . $ = . $ ]& U$ ; ]& & & > - . U@ Q$ $ ^& $ o! & ; ; > ] & & ' - ; ; ; . . & ) & N$ 2 | | ) | o! [ { | ) { | X@ [ 2 ( Z! 4 `@.{ /& 6 d 4 2 } X@ { [ $# &# [ D, D, 7 $# 1 7 d 5 a } ( 6 Y> &# 6 N' g 0 Y> ~# e 0- ~# c e i ~# c !# c tA ~# Y$ 1; h _# ,> m ^# % % t Y$ t t t 2; 1; `$ /# /# 2; ^# F= :# D #] F= t {& E z G w 1& 8* O@ E; T^ I KW 1& .@.O@ 8* 1& 1& T^ V c- |# c- .@.5 .y .>z :#.L J SO iU oY aV SO 3d j#.k#.(=.#N )Q RT +Z _M #N _=.RT Z .RT Z .+Z AS +@.sZ CX sZ hT $N .` hT CX .` E` .` 4..AS :=.9&.4..3..tZ pY Y$.Y$.<=....B .B .<+.z@.$ .z@.[=..#.c$.sY V*.}=.|=.a .a .1+.a .cX ++.* .e$.#..++.& .E..d .* .G$.]$.d .* .F$.-@.+#.-@.]$.G$.1=.2=.G..(&.K` e .M&.H$.e .IX L` PV > .> .> .5%.I+.f` JX AZ AZ I+.9+.9+.JX f` 9+.AY &+.aZ )V UP , .K$.[U ~V ) .BY cZ ~V 8Y sU [U BY 1U 3=.P` MR 9%.DZ qK {V TQ jS ;T @P yP 'G :K 'G :K QG fR OJ OJ :K }L }L F #M az F q x ;w qo Bl `w q Cl q x x Td CB so Vr .g .g .g ch T3 4=.x/ __ d3 gd gd u^ v[ v[ v[ v[ V5 V5 54 !8 6< Sc d; /1 w^ +[ b^ ^' 9) F{ ^' 9) F{ d; ^' ^' ^' 9) 9) f; f; z& f; q- t* q- (! 0) d% u& v* ;+ =+ $- y& =+ ;+ -+ ;+ z& ;+ &+ g% =+ Q# =+ 5=.-+ 6=.U# E& T# L+.L+.U# L+.j&.j&.^+ L+.j&._$.k&.7=.L+.a%.1*._$.,` ,` _$.,` 8=.m$.V#.m$.4#.9=.m$.,..O+.k` )T O+.0=.n$.OX n$.O+.n$.n$.OX o$.o$.a=.P+.Y#.OX R&.Z%.Z#.l` P+.P+.P+.-%.Z#.Z#.S&.Z#.i@.5#.-%.:&.5#.,T e..,T u#.u#.>%.hZ >%.n .MZ |~ u#.@=./ .IW NL >Y MZ LM NZ b=.c=.d=.s .e=.Ag f=.g=.h=.i=.j=.j=.G*.>=.k=.Sa `b [f vd vd vd Ad l=.l=.wd nc rc =d >e gb >e ~d ~d gb %c yh %c vV jZ [R [R [R [R [R [R [R [R [R e*.e*.[R [R [R [R [R [R yh $c $c yh yh yh zh -d $e m=.dk dk fE `` !n MO kY r%.C#.C#.kh +R fE :q `` `` 2G /n 2G jA n=.:..YZ +y MC LB Yb Da o=.]- a{ >* ;& v@ ~. ;. 5# E@ X L@ H P S P@ J E$ M 7* P@ M I I G G ", +"J$ + # J$ )~ =[ 5_ 0' L$ R@ ]& L$ L$ 0' # = ]& $= # ]& = $ . ]& V@ ]& ' . . . + $ Q$ - + #^ P$ Q$ M$ $= - [* - ^ = & > . . + ; S$ S$ ] ; & 5! ] ; ; ! ; = & # ^& $ ^ > & ; ) & Z! 4 R$ | 2 N$ & N$ > P$ X@ %# H= { | ~ *# ; { ~ | | 1 W@ *# ~ Z@ ~ } 2 D, 4 { [ / ( 6 a { -# 9 9 ## 6 e a ~# 6 0 ,# 7 c c ,# e i o !# a ~# L= Y$ e 0 e z: p s> `$ u c{ _# p |& q L= % Z$ ;) `$ /# p #] q /# @= D {& B ^# {& 2; {& {& T^ F= @ .#= I A z G T^ 1& T^ '&. Z JW 8* AR c- V V 0S =X p=.d{ c- A: 8* 3& Oz 0S AX (U A: A: qF ^P B$.I#.I#.)Q RT )Q p*.YX q=.RT ^P Z .sZ H&.sZ 1@.bV 9X $N hT AS hT AS CX .` E` E` q*.AS |Y 9&.E` z+.|Y z+.pY ...r=....CR ` .<+.<+.8 .$ .$ .c$.v*.vZ %Z s=.t=.u*.1+.u=.*` *` *` E$.d&.6@.*` 6@.d .v=.E..%+.w=.C@.p#.-@.]$.+#.]$.%+.p#.;@.W%.r#.HS y%.7+.> .HX G..M&.}T L` Q#.> .X%.> .JX J$.JX X%.&+.x=.f` 9+.JX JX f` !V f` aZ AZ 7Y #Y y=.[U !V ~V cZ cZ qT cZ sT sT [U #Y {S 2U sW VK ,Z TV OR iJ 5O TQ _K #U :K iN 'G fR QG }L OJ 'G 'G |Q :K #M FI pC `w SG qo q F `w Bl x q q `w Tx `f x `f qo .g Vr j9 j9 .g j9 d3 T3 j9 T3 2H j9 45 v[ 6< v[ 34 34 6< 6< =^ 34 H| 06 <] z=.a^ 9) Z{ 9) ^' d; 9) ^' 1> 9) ^' F{ F{ q- q- s& F{ f; +- f; q- f; f; #+ .; @- R# &+ ;+ ;+ ;+ (' =+ &+ &+ ;+ &+ P# ,+ =+ <*.>+ J@.d@.U# z%.i&.~+ i&.L+.j&.j&.j&.L+.L+.A*.M$.N+.i` A=._$.N+.N+._$.k&.M$._$.k&.B=.b%.m$.8=.s#.C=.&%.O+.n$.O+.0=.Q&.n$.D=.n$.[&.n$.OX E=.>#.p$.R&.^ .^ .g+.R&.l` l` P+.Z#.P+.P+.P+.Z#.F=.Z#.;Y ;Y P+.:&.Z#.hZ ;Y hZ hZ e..hZ e..u#.>%.6#.6#.6#./ .@=./ .e..@=.v#.zT G=.PX _X s&.H=.I=.J=.K=.L=.;=.M=.j=.N=.O=.P=.Q=.|b R=.[f gc ,d S=.Ad Ad +c ;d nb T=.nc &&.rc rc gb )d jZ ~=.-d yh yh [R yh %c jZ yh %c [R [R e*.[R yh [R [R [R [R [R $c e*.yh yh jZ +l >e -d -d =d $e U=._j dk :q `` WY fE _Z y` y` .fE V=.&*.WY &W :q 1G W=.ou /n ew ov X=.=Q jz Is /w Y=.Z=.`=.W9 d@ s@ O- &. . A@ =. G@ X C$ Y J S H$ S P@ #= z I z z w G ", +"L$ =[ + + L$ K$ =[ 0' L$ L$ ]& ]& + # > # ]& V@ + ;b = $ $ = + + . k) $= # ]& $ . $= # . $ > T@ $ > ]& . > # . Q$ ; U@ S$ & & ; ; -.; Q$ ] ; S$ . ] 2 N$ ~ b{ $ | N$ Q$ N$ . | ~ [ R$ { X@ > W@ ; ~ N$ { { [ 2 7- { | J) [ 2 1 2 $# 2 [ ( *# ( 6 4 D, / &# => { D, $# $# { 6- b } } d 6 Y> k d Y@ b !# n ;= g i 0 6! e ># o ~# z: 9 0 ~# s> Y$ p L= h Y$ 0- r Y$ `$ q Y$ D :# C 2, Y$ t ;= D /# b' u #] w z F= b' G z I a7 z 1& #= .-.F= JW #= T^ ~& $T M AR AR 8* V c- .@.1& v@.HV 0S A: 0S ` v@.5 .AX A: *I *I BX +-.I#.+-.yS .Z ^P 3d )Q yS )Q +Z )Q R%.G&.@-._M !&.+@.RT -X 1@.CX .` # .hT .` 4..E` E` hT aS a&..` a&.E` ` .pY 4Z Y$. ..5Z D..M#.0 .$ .t*.#-.0 .#-.OW #...#.$-.t=.#..%Z %-.#..*` *` xZ a .E$.&-.d .E..%+.d .o#.E..p#.*-.]$.%+.+#.J` 1=.=-.F$.;@.oT 5+.}T IX HX IX G .HX G .--.Q#.G .[W qW AZ f` qW f` f` &+.f` 9+.9+.9+.f .8+.AZ AY lQ ~V ) .I@.a..#Y 8Y 8Y ~S ~S , .sT U .U +P +P sT 2U OR 2U AO yU iN @P TQ @P 'G 'G OJ fR QG OJ RG fR :K OJ :K RG |Q %r q 3I 3v Bl )J q x q qo q q q q kt kt `f ch Vr El j9 ch d3 j9 gd 4=.T3 gd j9 U3 v[ v[ 34 v[ 34 6< v[ 6< 6< H| D9 X/ A/ w[ ^' <] ^' 9) d; ^' F{ d; ^1 d; 9) ^' 9) ^' q- q- ]~ d; f; f; q- q- (! /' e; $- ;+ ;+ ;+ &+ &+ -+ -+ =+ &+ -+ -+ Y' >+ %- ;-.6=.A& L+.j&.>-.,-.U# ^+ L+.U# ^+ L+.j&.j&.b+.k&.,` a%.|*._$.N+.N+.'-.K@.N+._$._$.5T m$.4#.)-.V#.n$.n$.n$.0=.OX n$.O+.n$.O+.Q&.n$.n$.n$.n$.R&.p$.C%.!-.Y#.R&.!Z P+.~-.l` Z#.-%.P+.Z#.Z#.-%.e..e..:&.{-.Z#.hZ e..e..u#.e..e..u#.@=.e..6#.6#./ .6#.6#.u#.>%.@=.MZ &U ]-.^-./-.(-._-.:-.<-.[-.,y }-.|-.1-.2-.3-.4-.5-.6-.Be Sb ye S=.S=.Ad =e +c +c nb lc nc rc rc nc =d -d ub jZ -d +l $c yh yh T$.#H :f [R yh e*.e*.[R [R $c $c e*.%c $c $c #H yh #H #H =d =d rc nc wd Bf 7-.Wg :q `` .+R +R C#.C#.+R =L dL w` 8-.C&.fE dL $W 9-.ou zJ DQ _j Lf Gd dW (w >e 0-.|b a-.NL e@ s@ x@ o) x@ &. . B$ T L@ M@ S J N@ 1# A I A B P@ A G w ", +"R@ L$ !, K$ 5_ + K$ ]& <{ R@ R@ ]& 0' ]& V@ 1) + ]& # ]& $ + + ]& Q$ + & $ + V@ > $ . # Q$ Q$ - + $ ^& . . | S$ . = & T- - . # =' ; | ^ o! & $ | ] . ] S$ ' ; Q$ (& ~ . $ Q$ | { Z! { ~ S$ - { ; | R$ N$ S$ ~ { X@ &= H= 2 U@ ) *# 4 @# Y@ 7- *# | X@ [ ( 2 6- [ } { ,# 6 6- b ,# 6 a b Y@ 6 d d 0 b 3* !# 6 s> 3* a k L= 0 i L= ]# [& ~# ~# ~# K/ c h k q K= s> m o :# m p m m Z$ 4* % ^# % G F= /# 1; w G F z m /U a7 n! z C a7 K T^ z z 1& c- KW AR .@.8* O@ T^ V M .@.n! d{ c- Z..:#.b-.:#.o*.*I *I qF A: p*.I#.I#.BX c-.(=.YX ^P #N ^P RT )Q ^P Z .@-.G&.pF @-.d-.e-.-X sZ AS hT CX {&.E` 4..4..hT E` 4..E` f-..` E` 9&.4Z $@.pY Y$.!*.qY ...^&.B .g-.#-.$ .S%.$ .0 .aX [=.h-.i-.1+.=@.1%.*@.%Z xZ ^} E .j-.{$.o#.+#.%+.p#.k-.o#.* .-@.p#.X*.E..-@.eX F$.l-.6+.L` _&.h$.L` }T HX HX H$.Q#.Q#.X%.X%.}T 5%.[W [W > .5%.gX 9+.9+.AZ I+.I+.AZ +Y 9+.AZ 6%.H@.! .qT #Y cZ [U `T sU ~S qT {S [U cZ 1O $Y MR 2U jS hN yO XP sK jS XP rK 'G OJ yP :K rC }L }L fR :K OJ -w .F jJ Px q GI RG -w q ;w q Bl x `w q Cl qo .g Vr >0 d3 ch kf j9 Vr j9 j9 U3 n u^ j9 T3 u^ u^ v[ v[ 45 u^ 6< 6< 6< u^ +[ :_ u^ b^ 0] !{ 1> ^' d; ^' ^' ^' 9) ^' ^' ^' ^' ^' 9) t* q- F{ f; +- q- t* +- t* #+ .; g% (' =+ 7= =+ (' &+ ;+ ;+ &+ P# -+ B& A& g; m-.n-.A& d@.L+.y* L+.L+.j&.L+.o-.3#.L+.U# j&.|*.N+.k&.j&.a%.N+.,` k&.)-.k&.k&.k&.)-.N@.m$.4#.p-.9=.&%.&%.O+.O+.n$.0=.OX n$.n$.n$.n$.OX OX q-.OX ] .e%.P+.r-.s-.f+.l` P+.Z#.P+.P+.Z#.Z#.P+.P+.e..e..:&.-%.+=.hZ >%.e..e..e..e..>%.u#.u#./ .>%.>%./ .@=./ .e../ .f..^` t-.j*.u-.4-.v-.w-.x-.;=.|-.9*.y-. *.z-.A-.k%.B-.C-.Va D-.E-.Yb ob S=.ob pc pc +c yd nc nc nc nc nc =d rc =d =d -d jZ #H yh -d jZ -d e*.#H jZ yh $c $c #H #H $c [R ~=.-d jZ yh ub rc -d nc =d *e ve $e F-.:q fE kh kY _Z _Z _%._Z .w` Wg *l +R !n w` 8w aw tv |j Nh QD ne Ih cr 1N ZM 8L G-.Ma H-.6$ m$ m@ d# x@ &. .= E@ z$ T |; ` K@ H C, H J P@ Q@ x N z M w ", +"J$ #S + R@ L$ + jP 0' J$ L$ 1) = # L$ . + > # # L$ # ]& $ ]& + [* L$ + . ; . ' S$ $ . $= + > $ . k) > U$ & . . ; ; ; . ; o! & 2 ) N$ - S$ |* & ) ] Q$ ; & ' { ; & H= R$ ; ~ 4 | [ & [ & N$ | ~ N$ | 7- %= X@ | [ | $# 2 ( ## $# 6 $# 2] { R$ $# V~ /& { / B; 1 ~ 5 7 { ># 6 &# { 7 7 0 ~# 3* ,# 6! 3* ~# d ~# c{ L= e n h n Q{ L= g c h C; {# n h t' n `$ p |& q ^# `$ /# /# D s> 4* ,> /# G {& 4* w B G z G .[W JX X%.gX I+.f` X%.f` f` AZ BZ JX 9+.6%.7Y 7Y lQ 7%.[U ~V ~S [U ~V S#.2E sT }U 2O {S NR {S P` 3O NN 5P iJ :K 5P TQ 'G @P yU :K }L 'G :K OJ :K QG OJ #M F jJ 'G `w !G RG Vi RG RG Bl q Cl q qo q so 35 Cl so fd kf T3 to to d3 d3 Kn U3 j9 i9 kf `e 6< u^ gd U3 v[ 45 6< /! 6< R( /! D7 a^ <_ 2{ a^ ^' 9) ^' 9) F{ ^' ^' 9) 9) 9) f; t* f; +- f; f; t* t* s& q- q- 0) s& $- g% d% f% -+ &+ ;+ &+ )+ &+ -+ -+ Y' -+ -+ T-.U-.V-.U# V-.$; j&.j&.j&.j&.j&.y* A*.^+ j&.M$.N+.M$.A*.M$.k&.k&.)-.k&.1*.)-.m$.:$._$.8=.8=._$.W-.8=.O+.n$.n$.OX D=.OX OX OX n$.O+.n$.Q&.|$.Q&.n&.h+.!..F=.e%.P+.f+.!..P+.Z#.Z#.S&.!..P+.-%.-%.5#.-%.X-.-%.:&.e..>%.u#.e..hZ u#.>%.6#./ .6#.@=.e..6#.>%./ .MZ r0 Y-.Z-.`-. ;..;.+;.@;.#;.xJ $;.%;.&;.*;.=;.P=.-;.;;.>;.,;.Vb Ff [f ,d ,d ve =e ve nb nc mc mc wd =d =d -d =d +l -d -d yh #H -d +l #H +l +l yh $c #H T$.#H #H #H yh jZ $c #H ub =d rc =d =d nc nc Og wc li :q `` dL .w` w` w` dL kh `` ';.hi WY fE WY x` ^y |j ]n 3q XM );.4f )g De * . = > + Q$ = - k) $ & U@ Q$ $ # $ ; . - & N$ U@ ; H= Q$ > ] > > > $ ] ! & Q$ ] ; ] ; ~ ) Z! R$ ; S$ ; ^ U@ ; | & [ X@ ~ U@ ~ { ) 4 [ /& 6 [ W@ { | { Y@ { ~ { ( [ 3* d &# N' Y> } ,# k *# ~;.5 i } {;.q> 3* 0 a ~# a D, c n K/ o h {# >> {# 9 c s> n Q{ _# s> c{ Y$ L= 1; q p u s> t y..,> $] F % w y ,> % F= w G a7 C` F= B I w N G 4* x I F= z I V 5* JW /U HV ;O n! c- P@ $T 0S 3# M x .5 .oY aV *I Q :#.-*.SO iU iU ];.3d 3d BX .V +Z )Q )Q Z ._M ^P RT RT G&.RT bV _M ^;.RT AS $N $N 0X /;.CX a&.hT AS a&.AS .` 4..a&.4..K#.7 .pY #@.iT #@.<+.B .<+.F` c&.$ .6Z N#..#.0 .(;._;..#.H` D$.#..#..*` L&.++.& .*` {$..%.w=.%+.* .xZ %+.E..:;.E..+#.d .E..6+.+#.p#.+#.6+.1#.]$.9..}T HX IX }T =V > .}T L` L` 5%.G+.<;.gX JX AZ f` gX qW JX [;.AZ I+.9+.I+.gX @Y 8Y #Y };.[U [U [U rU qT 0 i9 S3 gd U3 T3 T3 T3 v[ v[ 6< =^ u^ 6< v[ u^ u^ 6< u^ o] 06 9) :_ X/ ^' 9) ^' d; ^' F{ ^' ^' ^' 9) 9) 9) q- q- c% f; t* t* t* f; t* t* .; #+ O# %- u& e; ;+ =+ ;+ -+ ;+ -+ -+ -+ &+ &+ -+ n-.<*.&+ A*.L+.1;.A*.L+.A*.U# L+.j&.B*.j&.L+.a%._$._$.B*.'-.b%.k&.)-.N+.k&.k&.m$.:$.2;.8=.C=.m$.k&.8=.&%.n$.k` n$.n$.Q&.O+.n$.Q&.n$.OX n$.|$.OX [$.n&.P+.)...=.!-.f+.h+.!..Z#.-%.Z#.S&.+=.-%.Z#.5#.5#.Z#.+=.:&.e..e..u#.>%.3;.>%.e..@=.6#.@=.u#.3;.6#.4;.v#.i+.lX 5;.6;.7;.8;.9;.0;.a;.b;.c;.d;.N=.G*.G*.e;.f;.*;. *.g;.Wb db Vb h;.i;.E-.ob =e pc te {l nc nc rc nc nc =d nc rc -d =d -d -d #H -d -d +l jZ #H $c zh #H -d ~=.#H +l #H ub -d =d =d nc *e we nc _f fe ue tS (j fE dL .kh fE WY :q w` _j X .ru (j Wg dk C&.j;.PD dw /n k;.KL (j fI MT JU #B xe 0H l;.]; & s@ v@ -. F@ 5# +. .= 2# 2# U E$ H +% N@ P@ Q@ Q@ %> w ^# D D ", +"`Y I/ I/ $ I/ $ L$ R@ + 0' L$ }, ]& L$ ]& .( # ]& # T@ o! ;b > + $ ' !, ]& $ V@ ' & Q$ ]& !, . . - %= ' & # & N$ > . !, - > A; $ ! & & M$ ; R$ o! > U$ & ; ^ ; & . X@ 2 | | S$ . ^ ( ;# ~ S$ ' ; | 2 P$ ~ | 4 / } ~ ) N$ ~ 2 ~ < d 1 1 ( ) N$ [ 2 ) 4 ( ## / 5 $# 0 ,# 2 ,# tA [ &# 3* b 0 ~ ,# W$ 0 tA d {# |& ~# 0 {# n !# n 0 n a K= h p c m ^# m s> ;= n Y$ K/ `$ p ^# 1; q Z$ D p F= :# t 1; {& m t w m z {& M= F= a7 /U z W) z w .Q#.Q#.PV f` gX qW JX 9+.gX f` f` AZ &+.AZ f` aZ #Y 0 x so .g .g S3 kf .g T3 j9 __ __ d3 j9 T4 6< 6< tg v[ u^ 6< 6< 6< 6< 6< o] B_ +{ :_ a^ b^ 1> d; d; ^' ^' ^' d; d; ^' !{ (! d; t* f; d% q- t* t* t* t* q- f% /' u& e; g% d% ;+ ;+ ;+ &+ &+ -+ &+ P# ;+ -+ Y' -+ T-.-+ x;.,-.y;.1;.U# j&.U# U# L+.L+.A*.A*.a%.,` 5T b+.z;.)-.)-.N+._$.)-.s#.W-.p-.W-.C=.C=.4#.m$.8=.l&.OX OX OX n$.D=.n$.n$.OX Q&.OX n$.Q&.Q&.Y#.p$.h+.~-.a=.f+.-%.P+.-%.-%.P+.-%.Z#.!..-%.A;.:&.hZ +=.+=.:&.u#.e..e..>%.>%.u#.u#.u#.@=.u#.i+.>%.3;.R* i+.e..o&.B;.C;.D;.E;.F;.G;.H;.I;.J;.K;.H=.xJ j=.D;.j=. *.L;.M;.N;.:g Vb Vb E-.Ub ob [f vd pc vd we ,e {d nc =d rc rc =d =d rc =d =d #H rc #H -d -d -d ub #H =d -d #H -d wh O;.=d =d nc =d =d Q$ ; - & Q$ > > U$ - U@ ; ' & ; | o! . > N$ Q$ ^ & Q$ [* ; & =' ^ . {c ] ~ & } ~ > | [ | ; | 1 ( X@ Z! 2 8- ) ~ 2 { Z! $# d : I= 7- 4 d ( N$ < 1 a a 1 ,# : < 5 6 [ Y> d ,# 0 b 6 ,# !# a L= 7 ~# !# i L= h a e L= n r ~# n n ^# k ~# o 1; o h k q Y$ s> r `$ m t m {& q :# % z b' 2, G :# :# F z F= z )> w a7 n! I x I O@ T^ .@.F= M c- #= H$ .@.O@ V Z V 3# .@.c- c- d{ SO y .i5 A: A: oY 0S U;.Q yS )Q y+.,*.(U +Z yS #N Z .^P )Q )Q _=.+Z 9$.1@.1@.<#.H&.9X V;.6B W;.<#.X;..` hT 4..E` E` 4..E` 9&.+` 4Z l#.` .f-.z@.4Z S%.Y$.s*.z@.Y;.F` M-.Z;.0 .K&.I&.I&.A@._;.@..1%.s;.L&.*` 6@.d .xZ E$.&-.o#.`;. >.E..+#.%+.G$.]$.]$..>.;V -V oU S-.y%.W%./$.l-.+>.H$.e .L` }T HX }T --.G .5%.pT G .[W f` @>.qW f` I+.9+.gX f` AZ AZ g .gX AZ &+.[U #>.BZ ) .[U qT ._K PN %Y TQ ]S iJ jS 5O yU XP :K OJ }L 'G 'G OJ 'G :K :K #P qC 3I Ey ;w |Q Bl 3I Px Bl Ey 3I qo `f q qo -w x >0 ch TG Jn i9 .g j9 kf .g kf S3 45 6< 45 d3 =^ x/ u^ u^ 45 v[ =^ v[ 6< 6< 6< +[ :_ <] +{ +[ a^ w^ d; d; F{ ^' 9) 9) ^' 9) d; z' 9) s& q- $+ 1> t* q- t* q- t* H# u& .; .; ;+ x& =+ ;+ -+ ;+ -+ $- g% P# %>.-+ !+ >+ &>.-+ *>.U# >-.1;.A*.A*.A*.B*.j&.j&.A*.=>.=>.[*.k&._$.[*.'-.k&._$._$.k&._$._$._$.b%.:$.->.8=.A%.m$.&%.n$.=#.n$.n$.D=.n$.n$.n$.n$.Y#.OX Q&.n$.OX p$.)..h+.F=.;>.e%.P+.P+.S&.P+.-%.Z#.>>.P+.-%.+=.hZ 5#.-%.+=.o&.e..>%.u#.u#.e..u#.|~ @=.6#.NL >%.u#.e..MZ ]` ,>.'>.Y&.G;.)>.!>.~>.{>.]>.^>.$b />.(>.G*._>.*;.*;.v&.Rg :>.<>.zf |b Vb Vb `b Yb gc Ad ve [f {l yd nc =d nc nc =d nc =d =d =d =d -d +l jZ -d -d #H jZ =d =d -d ub %e xe &e nc nc =d nc mc ue ue kc kc Tl :j :q dL dL +R _Z _Z %W UY UY kh +R !n Wg Wg WY GT ou [>.k*.J=.}>.ji =t .e :..|>.[X LB 1>.2>.3>.7@ ^* ^. A@ )& F@ X J P Y ` L@ A P@ b- 8* M C z {& A ~& z ", +"R@ K$ L$ 0' ]& ]& + ]& . J$ ]& @ ]& L$ . ]& Q$ ]& # ]& = . # = # ]& . . V@ $= > # - |* Q$ U@ - M$ L$ > - $ . E! = V@ U@ & ; | U$ - $ ' S$ . > ; ] U@ S$ . . H= ^ ] & { U$ (& R$ | Q$ | | ) P$ X@ ~ ; 2 { 2 [ { 2 2 { / ~ 8- } 5 Y> +# 1 2 1 } Y@ ## 2 } 5 V$ b ,# 6 a < 6 3* 5 ,# 2* 2d d ## 8x ,# q> b ,# ,# ~# ~# s> h Y> c c a r 0 ,# o n 0 ,# ~# n^ ,> Z$ c{ Y$ u s> _# q /# 4* Y$ q Y$ :# 2; w B /# @= w 4* {& w G {& z F= /U z F= I M w Z 1& I O@ A A O@ T^ c- c- c- V 5 .4>. V =X z .i5 B..>z ` hU oY *I (U *I #N )Q qF yS I#.iU +-..Z +Z @-.+Z RT q=.Z .RT 1@.9X hT bV G&.0&.UO 7` 3@.hT .` $N CX 5>.9&..` 0$.6>.E` ]&.a$.pY #@.^&. ..7>.5Z #@.B .8>.c$.!$.9>.0 ..#.0>.B+.P-.0>.|+.U%.a>.#..a .*` %+..%.&-.C@.C@.]$.`;.* .E..%+.E..-@.E..1=..>.G$.b>.R-.F .6+.N` 6+.+>.M&.7+.L` HX 7+.oT /$.Q#.5%.c>./$.JX f` JX qW JX gX f` AZ AZ --.nV oV h .HG 9+.' .cZ [U ~V qT [U cZ ~S UP UP {S $Y [U 8Y [O xU sT DI PN VK TQ 5P 5P _K sK }L :K 'G QG :K 8M :K 'G :K qC 3I q jJ wD qo 3E jJ qo RG q qo qo Vi q q Cl Cl .g Vr Cl T3 .g Vr T3 kf n S3 T3 T3 T3 3| __ __ u^ 6< v[ 34 6< 6< =^ 34 u^ +[ 44 <] 2{ /! +[ a^ d; d; d; d; ^' 1> ^' %~ 9) ^' ^' ^' s& t* f; q- c% t* ^' t* t* .; u& #+ R# &+ &+ -+ &+ P# P# P# P# -+ -+ -+ U-.Y' d>.e>.Y' z%.U# z%.j&.j&.A*.j&.A*.j&.j&.j&.j&.B*._$.)-.'-.|*.->.k&.K@.k&.N+._$.k&.f>.2;.2;.g>.C=.m$.h>.OX n$.OX OX OX Q&.[&.Q&.OX .=.Q&.O+.OX [&.a=.s-.h+.d..s-.i>.P+.!..l` Z#.-%.Z#.+=.-%.+=.-%.hZ hZ X-.j>.o&.hZ hZ u#.u#.e..hZ >%.3;.>%.,@ ,@ >%.6#./ .>%.k>.l>.m>.n>.o>.p>.q>.r>.s>.t>.u>.v>.w>.j=._>.j=.j=.*;.i=.x>.Sa pb Vb Vb Vb Ub gc gc [f Ad ve {l {l nc nc =d =d nc nc nc =d -d =d -d -d -d -d =d nc =d =d =d rc =d &e y>.y>.xe nc lc *e .|j [x zJ }x A>.jk eL >o B>._@.Is /%.C>.D>.a@ 0& F, -. +. >. C$ E@ V J@ }; ` J I S w I N 7* x 2; G F= ", +"+ # I/ 0' 5_ 1) + J$ ]& + + ]& R@ R@ ]& k) + [* BN R@ $ $ 0' # . ]& L$ ]& L$ > + + ]& . . # $ Q$ [* > $ = S$ = > - # $= ' !, . ; %= & & ; $ Q$ Q$ & . T@ S$ ; . | | ] . Z! ~ P$ N$ ~ ) | 5 | .# ; 2 X@ Z! ) | | 2 { ## ~ [ } /& d ( $# 6 [ 2 6 4 V~ 1 ( /& Y> 7 2* 5 1 9 Y> 6 $# d d } ## ,# 9 0 ~# 7 d 2* b k ~# ~# ]# d a n c n ~# i e ,> h p ~# v q ;) ~# 4* p Y$ `$ t V| [# `$ `$ p t w F= G b' #| t `$ 2; '&.B G E '&.1& 1& z F= z n! E JW c- G KW T^ O@ Q@ T^ 8* V c- V 0S .@..@.>z Z..aV z .b-.y .oY B$.I#.p*.aV E>.^P *I F>.iU RT zS RT RT 9$.RT RT #N ^P Z .H&.sZ H&.!&.w@.CX E` 0&.2@.$N AS .` E` 9&.,$.G>.9&.E` E` H>.4Z #@.|Y <+.z+.z@. ..~*.$ .$ .0 ..#.$ .v%.<+.pO I>.W*.D$.C+.6@.#..*` 6@.E .++.E$.j-.J>.X*.K>.d .L>.E..* .G$.E..D@.M>.N>.G$.F$.%+.b>.}T 1#.+>.H$.HX HX IX G..IX > .IX Q#.> .Q#.O>.f` X%.f` X%.AZ 9+.AZ f` JX nV AY +Y g .AY )V [U , .7Y BZ ) .UP qT qT [U ~V .ON ON XP 2U TQ _K TQ iN 5P iN /S ,J 'G :K }L 'G QG :K 3I 3I Ey ;w jJ 3v Bl x q qo 3I Bl qo qo qo n8 Bl q 8e Vr M9 i9 `f ch d3 ch i9 T3 T3 T3 45 j9 d3 =^ 34 6< 34 6< u^ u^ 6< =^ 6< u^ W/ w^ ^' _^ o] _^ ^' ^' d; ^' ^' 1> d; ^' ^' 1> 9) 9) d; q- t* t* d% c% q- s& $+ +- @- +- R# ;+ -+ &+ B& -+ -+ -+ ;+ 4= &+ &+ P# Q>.-+ 9= &+ 6=.U# z%.T# j&.j&.A*.B*.B*.j&.B*.B*.B*._$._$.'-.B*.'-._$.k&.->.k&.k&.)-.)-.)-.R>.)-.S>.T>.8=.n$.OX n$.n$.k` Q&.OX Q&.Q&.Q&.OX Q&.[&.Q&.n&.R&.C*.f+.;>.;>.Z#.-%.P+.-%.+=.+=.+=.Z#.Z#.U>.:&.u#.u#.U>.j>.>%.>%.{; >%.V>.e..3;.@=.3;.R* 9$ >t <&.n .v#.W>.X>.Y>.Z>.`>.q>. ,.q>..,.8;.+,.@,.4-.*;.e;.*;._>.#,.$,.%,.Sa fc |b Vb db Vb i;.[f [f ob +c Ad ve we mc nc nc nc nc rc =d =d -d =d -d -d =d rc ub =d =d =d =d nc nc nc &e xe nc mc :f ,.,,.',.h$ 3. w$ ). ). A@ E@ 2# P Y ` E$ K@ Q@ M A H$ +% I K G w B ", +"+ + 5_ J$ ;b + + ]& L$ # % J$ L$ R@ ]& ]& L$ + k) # 0' . . $ M$ # = ]& + + k) $ - . $= $= > - o! > U@ k) Q$ U@ & > & $ & o! $ # N$ & ; %= N$ > N$ > . ; - & ' N$ & H= 4 ) N$ 2 { ; N$ %= Z@ I= X@ N$ %= `@ [ X@ 4 / 2 ) } ( { N$ ) ~ 2 ## $# ## | 2 3* $# X@ 2 { 7 Y> V~ 7 0 /& : 1 ## ) 6 5 5 V$ 0 a ~# ~# k 6 6 ,# 6! 0 ~# s> 0- 0 n e {# t' n ~# L= b' 1; L= Y$ `$ 4* _# V| `$ n Y$ /# ^# 4* #] w F= % G F= {& w ),.:# Y$ G z w G ^# B a7 a7 n! w a7 z Z 8* T^ a7 =X !,.o^ O@ T^ |# 8* o^ V I-.x .t%.~,..@.SO Q y .|# aV I#.I#.iU B$.YX {,.j#.(U YX )Q #N )Q ],.`I ^P )Q RT )Q +Z q*._M +@.+@.bV AS J#.3@.1@.+@.CX AS CX 9&.E` :=.E` E` ^,.4..]&.4Z 3../,.s*.N-.~W z+.N#.z@.0 .M#.(,.T%.O-.mW _;.}#.@..Q-.1%.*` #..*` *` d&.L&.E$.E$.o#.w=.* ._,.* .p#.p#.+#.+#.- .RE F$.@#.1=.c` HX ^$.i$.J` RW r#.HX H$.7+.X%.M&.IX > .G+.HX L` qW AZ 9+.AZ :,.9+.AZ x=.-Z <,.9+.:,.[,.JR 7Y lQ +Y +Y pV ~V [U ~S ~V cZ VP $Y {S VP DY AO !N xU ON hN iJ SN fR TQ _K }L :K OJ 'G 'G 'G :K :K 'G PR 'G rC 3I 3I Bl 3I F q qo Bl qo qo },.Sd Vi q ch so Sx .g |,.Rc T3 T3 >0 T3 T3 T3 u^ d3 A_ 45 __ `e 6< 6< =^ u^ =^ 6< 34 v[ <_ /! X/ X/ v^ a^ 1> d; ^' ^' 9) .- d; F{ ^' b% ^' +- d; t* t* q- t* N# t* t* #- s& (! c% g; g% -+ O# x& &+ &+ &+ 4= u* P# h% P# >+ 1,.e>.<*.2,.L+.j&.3,.A=.U# L+.B*.A*.^+ j&.j&.j&.'-.k&.,` 4,.j&._$.k&.k&._$.k&.)-.k&.)-.b%.S>.8=.g>.S>.D=.5,.Q&.n$.n$.5,.n$.Q&.Q&.Q&./` .=.OX Q&.6,.R&.7,.-%.S&.;>.`%.Z#.+=.Z#.+=.-%.+=.Z#.Z#.-%.+=.o&.hZ -%.:&.:&.u#.>%.e..u#.u#.V>.u#.>%.u#.<&.8,.>%.6#.>%.9,.0,.a,.~>.o>.p>.b,.c,.d,.)>.e,.f,.N=.>=.j=.&;.=;..K xJ g,.h,.i,.pb |b Vb Vb E-.Yb [f ob Ad pc {=.Zs {l wd =d =d &e oc =d rc =d =d -d -d =d =d =d zh -d =d nc =d xe nc nc + <{ G= . $ 5_ Q$ + . + . - V@ # Gc $ %= & $ Q$ - [* # > U@ ; . + . . - ; ' . ^& + Q$ N$ U@ & P$ > =' & ~ ! N$ U@ ~ & X@ ( 2 H= %= Q$ ; Z! +# 2 8- ~ | X@ ( ; X@ X@ { [ 2 | $# $# $# ## <& } 7- *# Z! < } I= d V$ 6 4 } a a d 6- d 7 ,# 4 [{ e 9 7 W$ ,# N' b ,# e 0 0 c c h c c 0 0- `$ ,> m ,> p ,> n p -) Y$ `$ n^ #| % /# m q s> :# /# 2; G ]# 2; {& F= F= C` F= {& B z F= 1& z P%.z $T a7 1& I .@.M c- O@ H$ =X c- =X |# 5 .y ..@.m,.c- SO iU :#.}Y >*.iU SO AX B$.iU BX .Z qF yS .Z 9$.)Q G&.RT RT ^P ^P )Q )Q ^;.Z .$N H&.EN hT -X D` '*.n,.CX E` CX 4...` 9&.3Z a&.4..9&.4Z ` .z+.`X s*.)$.F` !*.z+.0 .z@.N#.o,.!$.7>..#.|+.n#..#.1+.2%.s;.U%.++.++..%.U2 %.&-.E..p#.+#. >.x*.p,.-@.E..+#.-@.]$.S-.F .3%.c` > .M&.G..c` G..c>.G .L` > .H$./$.> .X%.5%.Q#.IX nV gX f` AZ AZ 8%.AZ q,.gX k$.&+.9+.JX lQ g .UP r,.7Y pV ~V ~V YO [U ~V ~S s,.sU qT +P TQ VK ,Z dR +U FM DI rK XP _K 'G OJ 'G QG qC :K 'G QG }L 'G |Q :K az Bl q qo qo Bl Ye Bl qo qo `f o8 x q `f Cl },..g M9 i9 .g S3 i9 .g d3 S3 45 45 45 x/ U3 U3 u^ v[ 6< 6< =^ 6< v[ u^ v[ /! /! -^ @+ /! ^' ^' 9) ^' ^' F{ ^' d; ^' t* d; 1> q- t* t* t* +- t* t* b% s& t* +- #+ s& $- x& @- B& ;+ &+ &+ ;+ -+ ;+ -+ -+ -+ >+ &+ m-.P# z%.A*.z%.t,.A*.L+.z%.j&.A*.L+.B*.j&.A*.9=.k&.u,.v,.->.N+.)-.A%.->.)-._$.S>.S>.C=.S>.g>.)-.8=.Q&.n$.n$.OX OX OX n$.5,.n$.Q&.Q&.Q&.OX Y#.F=.w,.-%.Z#.r-.6,.!..Z#.+=.Z#.Z#.-%.-%.Z#.x,.Z#.+=.>%.Z#.x,.X-.u#./ .4;.3;.@=.4;.@=.>%.3;.@=.>%.>%.3;.f..y,.z,.A,.B,.C,.D,.E,.F,.G,.H,.I,.*;.d;.`&.v&.P=.-;.P=.J,.t&.K,.7U L,.:g |b Vb Vb {g Ub ob gc gc Ad vd +c wd nc nc =d nc rc nc =d nc -d -d =d =d -d =d -d =d nc nc nc &e nc mc *e _f _f fe vd ^f Yb zf M,.N,.`` _%.UY C#.UY UY KT WM DQ y` UY 9T 1k dL GT [x nu .P,.aV *I aV &{ iU oY L SO :#.p*.oY +Z yS oY Q,.G&.)Q ^P )Q RT RT RT RT RT R,.S,.sZ 0X bV sZ hT 0&.w@.0&..` E` CX CX .` 4..E` :=..` 4..a&.4Z M-.f-.<=.#@.8 .Y$.T,.N#.$ .!$.#-.c$.U,.v*.K&.V*.A@.w%.++.U%.s;.*@.++.6@.d .6@. %..%. %.o#.-@.C@.X*.+#.E..* .E..G$.p#.RE V,.mV W,.G .<;.I$.F$.IX IX IX 7+.L` c>.X,.Q#.5%.X%.G .qW JX X%.8@.aN JJ nV x=.0@.f` f` AY JX f .+Y YO pV 1T [U #Y 1T oC ~V cZ ~S +P {S VP yO EY qK ,Z VK PN hN DI rK iN _K 5O }L QG ,G :K qC :K :K OJ 'G 3I RG Zf Bl -w q Bl qo Bl Bl qo Vi Rc Bl 3I q .g `f Cl Vr 8e h9 Cl S3 T3 Vr d3 d3 T3 6< =^ u^ u^ U3 v[ u^ 6< =^ 6< u^ V5 6< 6< 6< :_ _^ d; o] -^ .- F{ 9) ^' ^' d; ^' ^' 1> 1> 1> 1> q- s& c% b% s& |> s& d; s& c% e; c% d% O# R# -+ &+ =+ %>.P# P# h% -+ -+ -+ P# -+ B& <*.*>.j&.j&.t,.A*.A*.j&.A*.v,.j&.B*.B*.v,.B*.A%.k&.A*.Y,.k&.->.)-.->.k&.->.)-.g>.m$.)-.Z,.T>.W-.D=.0=.n$.OX Q&.m&.Q&.OX n$.OX m&.[&.[&.Q&.[&.p$.Z%.-%.f+.`,.n&.-%.P+.-%.-%.P+.Z#.-%.-%.-%.+=.e..-%.+=.+=.X-.>%.>%.>%.@=.P* 9$ 3;.u#.|~ / .>%.3;.%p '.N=.F;..'.+'.@'.#'.$'.%'.&'.Dt *'.=;.`&. *.G*.>=.='.$l -'.;'.qh i,.b*.|b db Vb E-.ye [f Bf Ub gc $e {=.nc ue :f nc nc nc nc =d =d =d =d =d nc =d =d =d =d =d nc '.Wg w` kY UY %W y` DQ WM KT KT JT %W C#.kh =L $W To ,'.6r |q bw ]n ou oi eE @O k,.|i !M aI YN ''.=* k> '& l> E@ $% }; H@ D$ d- E$ S H 7* x P@ I M I F= N D 1; ", +"I/ I/ # % *) J$ 5_ ]& X! 0' # 1) ]& $ R@ + # k) = . + L$ # # $ = - . . > > $ . > # T@ $= S$ # = ]& . & Q$ ; & = $ * & . ]& . & = & > N$ N$ $= . o! & - Q$ P$ | ; =' N$ ^& > | ; ; N$ ; | Q$ ; U$ ~ X@ U@ & Z! ) ] 2 ( I= 1 ~ ~ ! | /& { <& [ 7 4 $# ) { ( 4 { 2 ( ,# 2d } 3* 6 6 a U- ,# 8 } e ~# 6! d e $# c e e 0- e h j c 0 L= c{ n h ~# r n h 0- ># Y$ 4* % ,> r Y$ `$ 1; /# % `$ :# b' [# `$ /# :# $S F= `$ z..G z z m $S z F= G 1& C G 1& G 1& c- Z 8* V O@ Z o^ z ..@.m;.(#.5 . V H#.0S H#.aV Z..o*.B$.*I p*.aV oY iU y+.yS oY *I .Z )Q )Q RT ^P RT +Z _M G&.#N R%.bV 6B 3@.sZ $N 0&.hT {&.n,..` E` E` E` 4..E` y@.J#.a&.9&.9&.z+.a$.L-.<=....z@.)'.[#.!$.T%.F` !'.7>.Y;.A@.sY A@.[=.~'.#..#..%-.*` L&.%+.{'.E$.d&.d&.X*.E..p#.* .- .%+.E..+#.p#.-@.p#.+>.-@.-@.NV IX G..F@.HX > .> .> .M&.G+./$.J$.G+.G .5%.f` f` gX I+.]'.;H bJ ;Z O&.[;.k$.f .AZ h .6Y 1T !V lQ 1T pV qT [U cZ qT ~S +P +P sU zO .U qK {S +P _K hN M rK QG qK rK :K :K 'G :K qC rK 'G :K :K NS Ey az q q QG az qo Vi Bl q q Cl `f q qo 8e fd kt kt `f Ze 8e .g T3 kf >0 d3 d3 __ R3 Q] ^'.45 u^ u^ Q] 34 u^ =^ 45 !8 6< =^ )/ _^ !{ w^ X/ d; d; 1> 1> ^' 9) 9) ^' d; d; d; d; ^' s& +- +- b% t* s& t* s& c% u& u& .; .; 4= &+ P# &+ -+ h% &+ &+ P# %>.P# /'.('.P# _'.*>.j&.B*.t,.x;.A*.j&.A*.L+.L+.v,.A*.B*.A*.=>.)-.Y,.B*.->.k&.k&.k&.)-.:'.->.W-.T>.f>.T>.C=.m$.T>.5,.n$.OX 5,.0=.5,.OX Q&.<'.<'.Q&.[&.j@.OX Q&.r-.f+.E=.R&.;>.['.!..+=.-%.+=.+=.+=.-%.}'.+=.:&.u#.3;.|'.X-.o&.3;.6#.6#.1'.4;.2'.3'.6#.6#.3;.6#.4'.5'.6'.7'.o>.8'.9'..,.0'.a'.b'.0;.c'.2&.L;.*;.d'.e'._>.f'.-;.g'.h,.4b fc pb Vb Vb Vb `b `b [f ob [f vd $e ve ve $e = > > $ # V@ - N$ |* $ > S$ 0' A; - $ $ - ; $ > & ; > > ] > . ; > . & & N$ ; U@ & ; ; S$ S$ > > $ $ k) S$ Q$ | & . 05 S$ Q$ X@ ] S$ N$ ] > N$ 2 < I= 2 ~ | N$ 9 2 4 k $# Y> 1 6 ( d D, J] d } -# Y@ ,# 7 6 4 q> 0 ># d ( ~# 5 q> a 7 ,# ,# 0 0 K/ a !# a } ;= o V| }& ;= p n ,> X$ 2, 0 Y$ ^# q 2, Z$ t Z$ q m t D m t D Z$ 1; a7 b' F= {& D F {& {& 4* z '&.F= ~& I z AR n! 2; Z 1& n! z T^ O@ M Q@ =X Z V 4>. V x .t%.(#. V i5 B..(#.v@.A: (U *I oY o'.SO p'.(=.yS [%.)Q >$.+Z RT )Q +Z G&.)Q +Z H&.bV EN '*.R%.G&.w@.AS 2@.{&.q'.CX .` .` .` E` E` ]&.a&.4Z .` pY <=.4Z $ .#@.Y$.)'.9D $ .S%.T,.r'.s'.t'.8>.u'.v'.M#.w'.x'.a .#..%-.++.#..x'._,. %.x'.-@.y'.p#.* .]$.z'.E..* .]$.+#.+#.+#.F$.e&.F$.mV P#..>.I$./$.X,.--.G+.G .IX X,.5%.L` A'.G .5%.AZ Q#.qW Ix YL nK f` ,@.9+.6%.1T 9+.rU +Y f .!V ~S QQ UP @Y qT ^' B_ w^ d; ^' 1> ^' ^' 1> 1> d; d; d; d; t* s& s& q- s& K# b% t* b% t* u& M# $+ -+ -+ -+ -+ P# -+ -+ B& P# h% P# B'.Q>.P# C'.-+ Q>.j&.z%.Q>.t,.A*.B*.A*.A*.B*.j&.j&.A*.u,.->.->.B*.k&.)-.V#.->.)-.->.)-.:'.2;.N@.p-.8=.T>.->.5,.n$.Q&.[&.D=.D=.[&.[&.[&.[&.Y#.D'.D'.E'.[&.n&.6,.Z#.r-.`,.C*.-%.+=.Z#.Z#.Z#.-%.-%.+=.Z#.Z#.o&.:&.F'.G'.o&.>%.6#.3;.@=.u#.6#.3;.>%.>%.|~ @=.H'.I'.J'.K'.p>.E,.L'.M'.N'.O'.P'.Q'.R'.H*. *.e;.8;.S'.D;.`&.=;.T'.U'.Ga fc pb =. 3^ 2# ` P J D$ H J D$ E$ 8* +% S 7* M Q@ w G B ", +"BN 0' = + # = L$ # K$ + J$ R@ }, $ = ]& + ]& L$ + [* # ]& > V@ . k) Q$ $ ]& $= + = # . |* & S$ $ . $ V@ = . . |* $= S$ - * . $ ] ; $ ] H= Z, $ . Q$ 2) . k) ; > ; S$ Z! ] U$ 5- . ~ 8- | ; [ Z! 2 ~ N$ ; ^& ; S$ { { [ $# ~ & Q$ ) ~ I= ~ } 4 2 6- `'.d | 7 < 2 { 4 } &# J] &# 9 ( 6- V~ D, 6 6 b b e { 6 3* } ># a L= c g ]# c W$ 0- p `! ,# Y$ c c n^ ~# n L= % ^# ;= m Z$ r y ^# /# h ^# {& 4* 2, #] :# m b' @= 4* :# t E F= a7 '&.F= ).I O@ a7 A T^ AR $T n! T^ $T n! HV Z o^ T^ V .@.c- 5 . Z .).(#.SO -*.:#.(U A: oY *I (U Q k#.^P +).(U XX 3d )Q )Q )Q +Z RT +Z )Q )Q @-.+Z sZ 1@.H&.R%.@).#).3@.$).%)..` 4..E` ^,.E` .` 3Z 4..9&.]&.a&.` .<=.4Z !*.#@.B ....&).b&.7>.!$.$ .U,.Y;..#.=@.#-.*).=).w*.1%.L&.++.a .1%.&-.-).;).{$.p#.+#.&-.X*.]$.p#.* .p#.E..E..p#.6+.-@.F$.-@.;@.IX ]$.7+.H$.c>.5%.M&.G .X,.5%.L` H$.^$.G+.gX G .G .,@.}T aJ x=.9+.x=.AY (Q ;Z qW >).@Y #Y 1> F{ v^ ^' d; ^' d; d; d; d; 1> d; s& 1> d; t* t* t* (! t* M# b% |> s& K# u& /' + )+ -+ -+ u* 4= &+ h% -+ h% -+ h% &+ P# ,)._'.P# P# L+.B*.').}*.A*.A*.v,.A*.A*.B*.A*.)).4,.k&.)-.Y,.!).)-.)-._$.)-.)-.->.->.:'.)-.->.8=.A%.~).5,.Q&.OX OX Q&.Q&.Q&.[&.Q&.OX [&.E'.[&.E'.[&.[&.['.-%.6,.;>.C*.+=.-%.-%.+=.+=.x,.+=.+=.x,.-%.o&.o&.X-.+=.u#.>%.u#.@=.|~ u#.>%.{; 3;.3;.|~ @=.{).]).^)..'./).()._).:).<).[).}).H,.*;.-;. *.e;.8;.8;.8;.|).G*.H*.1).`c Be pb zf Vb Vb Vb `b c Yb Zb ^f $e te {=.;d mc nc nc nc =d nc nc =d nc =d =d =d nc nc nc nc nc T=.kc ^f vd vd vd vd ^f Zb Yb #e 2r +e QB dL kY _%.UY 2).2k +K KL Zo Mj uj =t dL ^n To To Q$ - & Q$ - N$ Z! X@ ; | %= ; & & ; |* Gc N$ { N$ Z! ) [ ~ H= | ) N$ { | . < ; X@ { 2 ; ~ $= { ( 1 { [ 2 { [ 3* 2 D, ## Y@ N$ -# 6 } 6- 4 $# } /& &# ,# V) ,# ># 0 e <& L= q> b ># ,# E, a L= j n 3* a K/ -) n p n *= n n n n m (# b' p _# m C t 1; p F t |& p ^# % E F= t :# ^# ^# 1Z z /# I F= z 1& 1& {& I 1& z N JW c- 8* 8* JW P%.>z AR V (#. V T^ V (#.o*.aV ` (U BX *I aV A: oY 3& (U yS [%.(U k#.K-.R%.^P )Q 6).Z .RT Z .RT RT >$.0$.9X H&.Z .7).$).CX 8)./;.CX .` AS 4..0$.4..'$.:=.9&.y@.L-.:=.#@. ..B .:=.F` 8 .9).s*.)'.N#.v*.t'.T%.0>.|+.`$.K&.u*.w*.*@.s;.*` ++.^} %+. %.j-.* .C@.8Z * .%+.+#.%+.+#.+#.E..+#.p#.c` F$.+>.0).1#.G .F$.(&.c>.HX a).^$.X%.M&.> .--.Q#.X%.gX f` x=.JX 9+.:,.pT AZ AZ I+.gX >V 6Y I+.*+. ^' 1> .- H# d; d; .- ^' d; ^' q- t* s& +- s& d; s& s& s& $+ +- `. #+ P# -+ &+ B'.b).P# c).P# b).h% h% d).P# *>.P# m-.h% ').A*.=>.>-.B*.A*.B*.A*.v,.A*.v,.B*.[*.)-.->.)-.B*.e).->.:'.)-.)-.)-.:'.->.:'.->.W-.h>.p-.p-.Q&.OX f).Q&.[&.Q&.[&.Q&.Q&.[&.a=.[&.[&.[&.j@.-%.-%.i>.;>.7,.Z#.x,.+=.-%.+=.x,.X-.g).X-.+=.+=.a{ 4;.X-.>%.u#.{; 3'.3;.>%.3;.3;.@=.3;.6#.>%.h).i).j).b,.k).M'.l).m).m).n).o).p).q).r).j=.S'.G;.8;.8;.s).|).t).F*.u).Xb pb zf Tb db Vb Vb Zb `b Zb gc :f mc Og vd ve *e nc =d nc =d nc y>.y>.xe nc lc . ]& L$ # $ = ]& . $ . . - # $ $ . = > M$ . $ > $= P$ - | U@ $ | > | > > - N$ & { & . U@ | ~ T- ] ] H= . & N$ T- & $ ^ X@ `@ & | U$ /& 2 ~ ] 2 %# H= 8- ~ 2 *# N$ $# ( 6- X@ { ,# Y@ 2 Y@ { < } } 6 Y> $# { J] Y> 6- ,# ,# } ,# k ,# } a z: d 6 6 e $# e e ,# k c ~# n s> Y$ K/ s> n {# ~# q 1; 1; h h r q ]c Y$ ,> n^ `$ @= 4* 2; f^ /# 4* `$ ,> B <, n^ w w 2; F= a7 z z z z a7 z 1& 1& JW z G O@ c- JW 8* T^ Z T^ 1& 2Z 4>. Z V 3# B).C).>z M I-.oY A: oY *I *I oY aV U;.YX D).(U U;.c-.#N ^P RT )Q +Z Z .3d Z .+Z Z .-X H&.G&.+@.{&.3@.w@./;.^,.D` CX .` 4...` 4..` .E` 9&.f-.z+.z+.f-.E).4Z 6Z N#.#@.!$.N#.$ .7>.F).t'.U,.A@.v%.t*.A@.u=.a .1%.*` #..e$.e$.6@.j-.G).d .* .p#.& .* .p#.* .p#.+#.-@.+#.]$.Y*.-@.V,.V%.L` I$.1=.> .}T G .^$.HX L` 7+.X%.R#./$.L` gX JX qW 9+.JX AZ AZ f` [;.f` AZ ZT JX 6%.[W 0@.~S ~S qT QQ QQ LJ H).:Q KS I).+P VK MR DZ +U J).OR +U SN DI TQ qC rK SN QG 8M :K qC OJ az ,G QG Jx fR 3I qo Vi 3v Ey qo Vi Ye Vi Ey Vi qo Td Td qo Td M9 h9 8e 8e M} .g i9 j9 8e h9 S3 d3 __ Dl S3 =^ S3 6< =^ u^ =] u^ u^ u^ u^ =^ W/ /! =^ d; d; 1> d; 1> 1> d; 1> 1> .- 1> 1> d; H# q- t* q- c% s& t* s& s& w& t* t* +- c% K).4= d% @- #+ -+ h% -+ -+ h% P# c).P# h% ('.L).d>.c).M).A*.t,.x;.N).B*.j&.B*.A*.B*.v,.v,.O).=>.->.|*.)).:'.)-.k&.->.->.)-.)-.g>.W-.:'.g>.h>.->.C=.5,.[&..=.D=.D'.Q&.OX [&.Q&.[&.[&.[&.P).['.;>.Q).-%.P+.-%.-%.X-.S&.+=.X-.-%.-%.-%.+=.+=.A;.|~ }$.R).S).F'.3;.6#.@=.|~ 3;.{; 3;.>%.T).i+.U-.U).V).+'.W).X).Y).Z).`). !..!.+!.@!.s).#!.$!.%!.&!.*!.=!.w>.-!. *.>j ;!.}b b*.|b |b Vb db c `b Zb E-.^f vd ue _f ac :f nc nc &e y>.nc y>.y>.nc iE _f _f nc *e $e _f !.^F :q w` =L kh dL =L (Z 7V (Z ,!.'!.=t .I fE 8w gk ~n - . * $ ] . > ' ] .# ^ Q$ > ] & %= H= ] . S$ U@ Q$ X@ | ] U$ o! ^ - + | 2 Z! P$ T- 2 ; ; ; N$ =' ) ~ Z! [ | 8- ) { (& 7- { ~ 5 2 /& Y> } $# d D, == } < { [ 2 $# ,# 0 $# 0 } 6 1 ,# b ( 9 3] 7 d m*.6! a {# K/ a a a b 0 c h z: i Y$ 6! 0 0 ,> h n c y2 ,! Y$ Y$ p r m b' ,> b' `$ #] :# `$ w #] G /# F= E $S {& F= a7 z w '&..*` e$.(!.~'. %.&-.E$.%+.p#.* .* .p#.E..u;.E..-@.p#.+#.y%.+%.]$.G$.> .IX Y*.Z*.H$.H$.c>.G..> .H$.^$.X%.Q#.Q#.G+.f` f` JX gX JX 9+.f` JX k$.PV 6Y AZ qW AY +Y I@.JR QQ UP YO $r |P SK _!.cR +P w;.J).FM WK |O ON _K (u QG _K 5O rK DI sK 'G :K ,G QG Zf 'G QG qC }L Ey !G F _A GI Bl qo Bl qo Bl Ye Bl q qo az Vi 8e >0 8e .g 35 i9 >0 d3 >0 d3 S3 d3 __ Q] x/ __ x/ u^ =^ 6< 6< u^ =^ u^ =^ 6< Q] W/ ^! <] 1> 1> !{ d; d; 1> d; d; 1> 1> .- d; d; d; d; s& c% d% s& ++ s& .- H# s& M# `. s& O# z& `. +- &+ )+ P# d).h% P# P# c).P# ,).P# _'.c).:!.B*..)).e).->.)-.->.->.->.->.|!.h>.->.W-.g>.9=.W-.1!.[&.[&.[&.D'.Q&.[&.[&.[&.<'.Q&.E'.2!.{-./` ;>.-%.+=.g).7,.-%.['.3!.Z#.X-.+=.X-.-%.X-.x,.3;.>%.|'.X-.|'.A;.>%.@=.3'.|~ {; @=.>%.i+.3;.4!.5!.6!.7!.9'.l).X).8!.6{ 9!.0!.a!.b!.G;.$!.e,.w>.c!.d!.e!.f!. ;.g!.,y `c i,.}b |b TD Vb Vb c {g Zb Zb {g vd ^f ^f ue . 0' R@ + > ;b # S$ ; ' ' o! ;b > V@ * o! |* ] . . X@ > $ T@ & - $ & Q$ & V@ ; H= Q$ $ ! N$ Q$ ' ^ Z! $ O$ Q$ ) X@ 2) P$ R$ | > ; 2 | < /& 05 l!.N$ ^ P$ ~ N$ X@ 2 ] ~ *# { 4 I= [ { J] [ } { X@ { ( ,# $# 5 I= k 1 4 $# vk x0 6- ,# d b a L= a a ,# a c k ,# g c i h K/ L= t' 0 6! Y$ m h 2, h r ,> b' Y$ c{ r Z$ t p `$ `$ :# :# w F= % #] b' 1; w t G F= z z F= a7 z 8$.a7 C` A$.O@ n! 1& M T^ c- T^ O@ JW KW V c- V c- 5 .4>.v@.z .iI y .aV :#.*I *I (U p*.U;.(U I#.+-.F>.(=.3d RT RT )Q +Z RT Z .^P Z .G&.>$.Z .G&.'*.G&.7).{&.2@./;.$).4...` E` .` E` J#.]&.4..o;.a&.L-.:=.4Z a$.$ .^&.z@.$ .z+.o,.A@.#@.Y;.T,.m!.n!.n#.I&.W*.t=.Q-.*` a>.L&.++.++.;).o!.%-.yZ p#.p#.%+.d .d .p!.* .]$.-@.%+.+#.f$.3%.+#.l-.G$.r#.i$.F$.M&.e .Q#./$.G+.G .^$.AZ ^$.Q#.--.JX gX PV <;.AZ ;Z AZ > .gX nV f .gX O&.RV @Y }W !R UP !R UP !R wP [O 5z uU )N zO yO VK iJ hN }Q UK CI nQ QG rK QG DI iN :K qC qC QG az pC pC Nx -w Ye 3I -w 2#.wD Bl Vi qo Ye Bl Bl Bl Vi Cl Td Ye Bl 8e i9 ch 8e S3 8e M} j9 S3 3| T3 =] =^ =^ 3| 45 u^ =^ u^ u^ u^ Q] u^ =^ N~ u^ =^ :] 1> d; .- d! .- H# 1> _^ 1> d; 1> .- d; .- ^' d; f; b% #- 1> s& q- s& t* t* d% u& N# @- 4= q!.c% -+ -+ -+ &+ P# h% P# %>.P# r!.h% L).n-.Q>.A*.B*.s!.A*.A*.v,.A*.A*.v,.x;.B*.B*.z;.->._$.B*.u,.->.k&.:'.->.)-.->.A%.g>.)-.)-.W-.:'.t!.u!.D'.n$.Q&.D'.1!.[&.Q&.[&.[&.6,.[&.E'.P).E'.['.-%.+=.+=.g).-%.S&.+=.X-.|'.+=.x,.+=.X-.X-.v!.j>.3;.!@ 2'.2'.^@ 3;.|~ ^@ <@ |~ 3'.3;.o&.w!.x!.y!.r>.#'.P'.z!.A!.B!.C!.D!.E!.F!.G!..;.H!.I!.J!.K!.L!.w>.M!.e'.N!.!f Sa }b pb |b db Vb c Zb Zb Zb vd vd ^f kc H O A S I I @% G z N 7* G M= ", +";b ]& #S I/ 5_ # K$ + ]& 5_ 1) J$ 5_ R@ L$ 0' ]& $ + = * + ]& . $= . = $= > $ + R@ ]& . & $= U@ ; - . Z, Gc ; > $ S$ H= $ + ; ' P$ o! ] U@ $ & N$ H= S$ U@ & + & X@ ; U@ U@ & & > > X@ | | ] N$ ) 2 ; ] ) { & ) | 05 / H= 05 ] X@ | { R$ 2 <& < 6 ~ 1 1 6- T- { ( < 5! { 4 ,# ,# 1 i / 6 ~ Y@ J] 4 /& x0 a e k d a n i ~# K/ ~# n n ~# Y$ p L= ~# c k h Y$ |& ~# n a ;= _# % m ^# #] 2; 4* v p {& 6* 4* % 1Z {& G w /# :# F= E a7 /U z E a7 A$.a7 z I O@ 1& 1& O@ A $T $T AR JW U!.x+.=X >z V (#..@..@.PT 4>..@.iU B$.y .A: I#.-*.V!.W!.SO +-.p'.U;.+).X!.Z .6).RT )Q )Q +Z RT +Z )Q |@.Z .bV w@.G&.R%.1@..` +@.1@.Y!.4..E` a&.4..a&.9&.9&.L-.y@.y@.s*.#@.<+.)'.4Z !$.`X ~*.i-.M-.Z!.Y;.7>.Y;.n!.n!.`!.N#.}#.U%.r;.~'.-).++.6@.x'.&-. ~.C@.*Z K>.%+.d .d .C@.E..p#..~.-@.]$.Y*.]$.-@.3%.e .7+.i$.1#.G..F..> .> .L` H$.HX }T G+.> .G+.qW nV JX gX qW #G SV AZ AZ gX 7Y AY aZ f .&+.pV pV UP 1T _Q QQ oC eN QQ CI DM yO FM NR PN EY +~.qK VK +U qK ,G ,G _K QG :K ,G rK :K -w az QG 'G QG pC Ey _A !G )G Bl RG Bl qo Vi Vi Vi `f Rc Ye Cl M9 i9 >0 M9 Td h9 Rc >0 .[ 3| d3 d3 __ u^ x/ .[ d3 =^ @~.u^ a] =] u^ u^ u^ z/ )/ :] .- !{ H# x) R] 1> .- 1> 1> 1> 1> 1> 1> -] d; 1> 1> b% ++ s& M# s& M# s& s& 1> #+ c% 4= P# &+ d).-+ d).h% #~.h% h% c).P# h% ('.*>.$~.m-.h% ').B*.%~.N$.A*.B*.B*.A*.B*.B*.v,.B*.B*.e).->.k&.e).:'.->.->.)-.~).->.->.T>.&~.m&.g>.Z,.->.T>.OX [&.D'.Q&.*~.[&.Q&.Q&.[&.[&.Y#.[&.D'.=~.-%.>>.7,.-%.+=.X-.Z#.-%.+=.+=.X-.X-.x,.+=.X-.-~.;~.>%.a{ f%.f%.!@ 3;.3'.6#.|~ {; V>.>~.,~.'~.)~.!~.~~.L'.P'.{~.]~.^~./~.(~._~.:~.<~.<~.G;.[~.}~.|~.1~.2~.3~. ;._>.4~.3i 0c pb zf |b Vb .jA QD Ro @R VU ~j fL a~.W> ^. B$ Y E$ ` L@ Q@ O S O A A I m B G C G C 2; G ", +"R@ #S I/ =[ #S 5_ K$ K$ L$ 0' 1) + ]& ]& ]& # 0' 5_ % + ]& ;b Q$ $ + 1) $= # = . $= > $ = . . # . V@ $ . . > U@ U@ Q$ ]& * $ Q$ . U@ ; P$ U@ > - S$ N$ ; & T@ $ N$ R$ 2 & ] & & ; X@ ] H= Q$ - | N$ { | T@ U@ *# 2 H= ; ; H= .# { | ~ 2 Z! 7- 7- ] 2 7 : Y@ /& J= 5 6 /& 2 ( ( ( ( a d D, } 6- a : 1 Y@ Y> ( q> e a a 5 j g a' 6 0- z: ~# 0 z: L= }& L= h h h a c b~.~# c p L= r m #| q p :# t Z$ m t t t ^# F= {& q /# 4* Y$ w F= /U F= E z a7 n! a7 z $T 8* O@ 8$.'&.A z m;.KW n! H$ H$ c- V c- c- 5 . V 4>.4>.0S i5 W!..@.:#.-*.aV iU iU iU yS c~.I#.BX [%.9$.+Z G&.+Z #N RT RT Z .Z .+Z G&.lP 1@.G&.+@.{&.hT +@.<#.d~.hT 9&.E` .` a&.CX ]&.9&.H>.:=.<=.z+.#@.Y$.#@.<+.!*.e~.0 .)'.Y;.Y;.U,.U,.i-.`$.f~.n#.W*.L&.g~.et U%.++. %.J>.6@.6@.xZ & .d .d .%+.& .* .E..* .+#.E..-@.+%.h~.p#.3%.G$.7+.4z b>./$.e .L` Q#.M&.IX Q#.G .HX IX L` PV IS Q#.G .gX [W JX [W qW G+.6%.oV JX f` f .!R pV YO UP BZ QQ UP vL qT eN [Q }Q +P TW P` |O NN DI CI zO qK SN iN qK QG iN ,G 'G 'G 'G Jx ,G wD 'G Zf 3v Ey 3v Bl qo qo o8 Vi Vi Vi Vi qo c3 Sd Bl Cl 8e h9 8e `m h9 M9 Rc 3| d3 h9 3| d3 =^ .[ x/ __ u^ =^ Q] =] 34 =^ =^ =] =^ =^ W/ =^ <] ^' 0] a] .- .- 9) 1> 1> .- H# 1> d; .- 1> d; t* b% b% M# t* M# b% T. s& #- #+ u* -+ P# P# -+ c).P# P# P# -+ P# c).$~.h% i~.h% j~.h% k~.x;.A*.N$.A*.A*.B*.A*.B*.B*.B*.A*.B*.S>.->.:'.e).k&.)-.:'.:'.->.:'.e).)-.:'.|!.T>.g>.u!.->.*~.Q&.OX Q&.Q&.Q&.Q&.D'.D'.D'.[&.E'.[&.P).-%.6,.i>.-%.+=.X-.Z#.+=.-%.+=.G'.X-.X-.+=.x,.+=.x,.{; f%.X-.X-.2'.9$ |~ ^@ {; 9$ 9$ 6#.l~.m~.n~.@'.()._).o~.p~.q~.r~.r~.C!.s~.t~.u~.Z>.<~.v~.w~.x~.=;.S'.y~.8;.e;.z~.6b Be pb pb Ob se #e {g Yb Zb ^f vd vd :f xe yh +l rc nc nc nc ^# ^# ", +"G= p9 G= 0' 0' = + # = 0' + K$ + ;b R@ # 0' 0' ]& + # 0' ' $ ]& 0' + + 0' L$ $= . ]& + # $ $ + ]& # + > |* & $ - S$ . $ # # . - $ 2 ; T@ U$ | U@ ' 0' + V@ o! & - Q$ ; & ] ' Q$ ^ ~ $ > N$ 05 S$ ) * | ## : 8- ~ 2 { H= d ) | } N$ X@ X@ X@ | d ( 6 ( } ~ ( ( d 2 { 2 $# 2d j } 5 q> ,# J= &# 7 3] ,# 3] V) ,# 9 5 9 &# L= e b e n ~# W$ 0 {# c L= r 2, 2, s c L= a' ,> 4* L= r Y$ u ]# Y$ m 4* F= ^# G ^# {& ;) :# 4* {& z b' w 1Z F= $S F= '&.z z a7 a7 #.T^ c- T^ a7 H$ n! O@ 2Z n! 1& Z .@.M V >z v@.4>..@.I~.5 .Z..W!.I-.p=.aV A: oY A: A: *I y+.J~.(U u%.+Z Z .bV R%.)Q )Q +Z lP RT RT '*.G&.sZ e-.Z .n;.1@.hT {&.#).E` .` 6>.L-.9&.9&.4Z o;.a&.K~.f-.4Z s*.~W [#.!*.8 .s'.0 .z@.s*.U,.7>.U,.U,.Q-.P-.{*.K&.L~.a>.a>.L&. %.++.U%.{$.*` d&.d .M~.]*.E..* .p#.+#.p#.]$.I` @#.G$.+%.+#.-@.V%.|#.}T q#.c>.M&.IX N~.H$.HX M&.Q#.IX IX PV nV [W > .G .gX qW qW gX gX qW f` RV qW aZ oV ZT 1T 1T 0 .g h9 A_ h9 h9 A_ __ u^ Q] Q] __ 45 u^ Q] =^ u^ Q] 6< =^ =^ u^ 6< )/ w^ .- 0] 0] .- .- 1> .- .- .- d; .- F# t* 1> .- s& d! s& M# b% b% T. s& L# s& M# P# g; -+ &+ P# 4= #+ h% h% P# P# h% c).P# P~.Q~.R~.B& 3,.x;.B*.t,.j&.)).v,.B*.)).)).v,.A*.v,.e).!).:'.S~.u,.:'.~).->.->.:'.:'.:'.W-.p-.->.Z,.8=.:'.T~.[&.n$.Q&.[&.Q&.Q&.[&.[&.D'.OX D'.E'.[&.2!.U~.s-.-%.X-.X-.-%.+=.Z#.+=.+=.+=.2'.X-.X-.X-.X-.f%.{; f%.2'.H] 3'.{; 3;.{; 9$ H] V9 V~.W~.X~.@'.#'._).F,.p~.m).Y~.Z~.A!.[).`~. {.~>.<~._-.P=..{.+{.@{.#{.E;.D;.&;.${.Sa zf |b ^& . . - - . . > + . . - & N$ Q$ ; N$ | | & {c T@ + Q$ ; S$ & X@ N$ ] N$ 2 `@ ; 2 T- ] H= { > ~ 2 X@ 1 8- ) ) Q$ ^ ~ { ( | N$ | 2 W@ ( < ( } } : V~ $# d } $# ( 6 6 6 6 <& 3* 7 ,# 0 q> 6 a a Y> Y> i {# ,# c5 ,# d k 7 a n 0 K/ ~# c n L= Y$ % v r ),.p r q 1; ,> b' 1; h p r $S w q {& :# /U {& ;{.u w G 2; D ^# /# a7 #.G '&.z F= E $S '&.1& $T z K N V 1& AR n! 8* O@ c- 0S z . Z o*. V (#..@.P,._#.aV }Y L aV >{.*I E>.I#.oY {,.I#.k#.J-.G&.RT Z ..V RT #N RT R%.G&.9$.R%.lP +@.G&.+@.w@.3@.0&.$)..` .` 8).4..9&.d~.y@.:=.a&.4..,{.` .K#.r*.<+.^&.!$.S%.!$.N#.<+.v*.<+.t'.7>.U,.P-.|=.W*.|=.*@.U%.'{.*` U%.6@.u;.6@.~$.){.8Z d .b` =` d .+#.E..+#.b` ]$.]$.G$.+#.l-.]$.h$.'@.h$.+>.c>.M&.X,.^$.X%.G .,@.G .> .> .IX > .9+.AZ JX JX JX gX Q#.gX 9+.f .oV oV BZ rU @Y !R !R [U KN UP QQ oC lQ `T TV zO yO {S VK WK CI VK `L FM sK QG 'G Jx qC OJ Jx :K ,G 'k qC !{.Zf qC 3v 3v Zf Vi 3v }u Ye Bl o8 o8 )k Bl qo Rc Ye Vi 2#.Tx M9 .g i9 >0 8e x/ S3 Rc d3 x/ __ u^ =] Q] =^ Q] u^ =^ u^ =^ 6< =] b~ c! =^ /! -^ _^ x) a] _^ d; d; d; 1> 1> 1> .- d; 1> 1> 1> b% ++ ++ M# b% b% b% ++ b% .- .- #- E> 4= P# c).t& u* d).$~.h% P# P# h% P# P# h% c).~{.{{.,)..u,.S~.^{./{.~).Z,.:'.:'.T>.|!.:'.Z,.g>.:'.u!.*~.1!.Q&.E'.E'.D'.[&.[&.E'.D'.[&./` E'.2!.`,.s-.g).+=.({.-%.+=.+=.+=.x,.X-.X-.2'.F'.2'._{.3;.3;.a{ x,.4;.:{.{; T).{; |~ 3'.V9 <{.[{.}{.k).8'.|{.1{.2{.3{.Y).p~.4{.5{.[).6{.7{.8{.9{.0;._>.0{.3~.y~.$!.0;.I*.a{.7U Ig 0c zf Mg {g > = . . # - > $ V@ + $ * V@ * Q$ ; & Q$ $ & Q$ . *X > U@ [* > ; ' & ^& }* . S$ S$ & }* | H= P$ N$ N$ Q$ ; H= ; 2) - ] S$ X@ ~ ) H= ) [ J) { g{.X@ ) 2 1 / 4 +# | , [ 3* [ Y@ 1 &# /& ( 8- 4 6- < &# q> d ## i 0 a *# 6 ># i Y> ,# 3* a a 6 d ,# a 8x n ]# n 0 L= c y2 0 2, 0- c n^ h _# c{ ;= p m s> h `$ h w t 4* :# q w q :# {& z G /# ^# 2; F= F= t w ).z B a7 @ .a7 I 8* AR I E; p=.AR 8* z 8* .@..x ..@..@.4>.0S >z Z..I#.A: A: oY *I oY I#.oY ,*.y+.k#.+).RT ^P )Q #N RT )Q ^P +Z RT Z .Z .9X 7).H&.|@.{&.1@./!.{&.CX .` o;.4...` o;.a&.y@.4..E` 3..4Z ` .f-.h{.8 .` .0 .!$.)'.z@.v*.c&.7>.i{.m!.}#.n!.n#.j{.(!.++.-).*@.1+.*@.p!.8Z xZ K>.d .-@.* .8Z * .E..E..-@.* .E..* .G$.+#.k{.F$.1=.r#.^$.1#./$.M&.7+.r#.X,.> .L` 7+.> .G .L` Q#.AZ AZ PV 9+.nV JX PV qW JX PV ZT lQ +Y QQ lQ UP [U UP UP YO b! 1> H# F# 1> 1> %~ d; d; ++ t* b% K# N# ++ b% ++ b% ++ ++ + `. l{.h% h% -+ -+ P# h% h% h% h% h% -+ -+ P# ('._'.-+ ,).=>..S~.Y,./{.:'.~).Z,.~).:'.->.m{.Z,.:'.m{.n{.~).Z,.*~.[&.[&.Q&.D'.D'.D'.D'.D'.[&.o{.E'.p{.ha q{.3!.-%.X-.7,.r{.X-.U>.X-.x,.X-.X-.|'.A;.({.2'.a{ 3'.s{.<@ ;~.3;.9$ t{.u{.<@ !@ #; ^).v{.w{.8'.x{.o~.y{.z{.8'.A{.8!.B{.a'.(: C{.D{.0;.+{.e,..;.8;.G;.G;.0;.D;.E{.Nb Ig *d zf Ob xa # = # Q$ . $ # ]& $ $ V@ > # $ + = $ $= ; > $ $ $ > > %= ; & > . S$ S$ - U$ %= & ^& ' & Q$ U@ Z! b{ N$ Q$ N$ T- | N$ ^ . ; ~ N$ J) ( 2 2 Z! `@ | X@ ) { J) { N$ ( Z! 1 { | &# ) Y@ } &# *# *# X@ { $# /& } ( $# 6 } d } } 6! $# } a' a 6 6 : a {# 6! ~# j { i 0 0 0- k k ~# c _# o 2, 2* % s> Y$ ,> H{.2, `$ % h p ]# t m p 4* /# G Y$ {& $S |Z C ^# w F= '&.z F= /U B 1& z z z w 1& JW n! a7 #= n! c- I{.T^ Z .@.JW JW 1& .@.v@.Z..JW J{.5 .x .5 .iU B$.oY A: oY B$.W!.iU +-.BX K{.k#.^P ^P ^P G&.^P )Q +Z RT +Z G&.+Z Z .1@.w@.H&.0&.e-..` 0&.7` .` .` 4..9&.E` a&.+` :=.4..4..` .<=.#@.L-.E).<=.$ .r*.L{.z+.Z!.M{.U,.U,.N{.0>.t=.Y;.O{.L~.%Z #..Q-.L&.#..#..E .a .{$.M~.d .%+.8Z .%.+>.]$.X*.G$.F$.%+.p#.+#.4Y F$.h$.P#.=V r#.NV HX IX HX H$.L` HX ^$.L` H$.IX nV qW nV qW JX qW nV PV JX f` HG , .!R QV PV @Y UP YO ~S QQ YO 0 8e 35 35 35 S3 3| d3 T3 .[ S3 45 9~ u^ =^ u^ u^ u^ Q] =^ u^ Q] _/ /! 2{ s& 0] R] 1> .- d; .- 1> 1> y' ^' H# .- .- s& T. t* + b% ++ b% b% ++ b% `. I# O# h% h% P# -+ P# B'.-+ P# u* h% h% T&.P# *>.h% L).d>.').B*.M)..v,.S~.:'.~).Z,.:'.->.:'.S>.u!.:'.h>.g>.~).~).1!.[&.[&.[&.D'.D'.[&.E'.D'.E=.o{.2!.T~.=~.Q).3!.X-.X-.6,.Q).+=.+=.X-.-%.x,.x,.2'.ha }'.x,.X-.f%.f%.P{ Q{.f%.{; a{ x,.R* 3'.R{.S{.T{.().().M'.z!.z!.U{.P'.V{.`~.W{.X{.|! Y{.Z{.F;.0;.`{.G;.b!.9;..;.e,.2~. ]..].9b Lg zf /g Zb Zb Zb Zb ^f *e _f ue nc nc _f nc nc rc nc ub xe =d =d =d =d nc nc nc nc &&.nc {l lc # L$ > > . > + L$ + . ]& . 1* $ = > > . # T@ & > ] U) > ' . $ . # $ ; . = H= ; ~ > > X@ R$ ; & ] | U@ H= N$ } *# ~ N$ | | ~ /& Z! +# { 7- Z! X@ , | [ ## d $# } { Y@ 2 4 2 X@ ( } ,# 2 < $# 6 Y> 8 V~ V~ 6 7 ~# 6 ,# 0 8 V~ {# a j s> a $# 0 L= 0 e &].n n h ]# ,> Y$ r p p! s> p 2, ;= 4* ;= q `$ m G D `$ C ;) p Y$ E /U F= D @= C F= $S '&.*].z /U z {& /U .Y;.Y;.;].Y;.t*.>].,].{*.sY #..1+.*` L&.6@.a .*` L>.e$.& .d .& .d&.R-.E..p#.-@.-@.* .]$.-@.S-.G$.J` HS X%.F..9..M&.wl /$.H$.L` HS > .HX G .G .G .nV nV nV G .JX [W gX PV JX nV 1T H# H# H# .- .- 1> .- .- .- b% b% ++ s& ++ b% .- T. ++ L# M# N# E> 4= u* 4= l{.l{.P# c).h% h% c).c).h% ('.,).)].d>.,).v,..)-.!).!].->.->.A%.:'.~).->.:'.m{.Z,.|!.~].m{.u!.[&.D'.Q&.D'.p{.D'.D'.E'.{].=~.g).2!.E'.{].>>.Q).]].+=.-%.X-.X-.]].x,.-~.X-.R* G'.U9 a{ f%.A;.s{.^]./].(].|'.a{ 0$ ]; _].}- :].V).T{.<].9'.#'.[].}].|].1].1].h= 1].2].y% o+ 3].<~.<~.4].<~.D{.b!.n>..;.y~.J;.5]. l *d zf /g c Zb Zb ^f ue _f ^# G w ^# ", +"R@ I/ L$ I/ G= I/ I/ 5_ + K$ I/ L$ R@ 1) # ]& ]& = ]& k) % J$ = L$ + [* =' . $= }, + ]& > k) k) 5_ I/ . $= + > $= - $= S$ - . U$ - $ = > = Q$ ] & S$ * * & ' ] & P$ & ; ) ; U@ ~ & & & - X@ ] | P$ P$ | N$ { |* ; X@ | Q$ ' 2 +# $# [ [ ## < / |, X@ 2 d : /& X@ 1 { 6- `@ 6- D, *# ( 1 1 { [ $# 7 3* 3] d ,# 8 8 } ,# a 6 ,# a 5` 5 9 a k c k {# 0- c ]# c r L= r c L= Y$ ]# _# Y$ 2, p n `$ h ;= c s> y /# 1; t Z$ 4* 1; w *].G w t /# {& t 8$.z 4>..@.4>.B$.z .P,.5 .B$.:#.I-.y .c- _#.-*.0].BX oY (U )Q oY Q%.#N #N )Q )Q RT Z .+Z +Z RT Z .R%.G&.H&.G&.q*.|@.!&.D` R%.^,.4..4..9&.d~.o;.a&.9&.o;.9&.:=.pY a$.z+.<=.Y$.#@.!*.9).<=.S%.T,.<=.m!.Y;.i{.t*.B@.a].A@.Q-.#..*` _W %.#..#..%Z 6@.e$.b].d .8Z +#.p#.+#.p#.-@.]$.E..%+..~.p#.-@.]$.9..M&.V%.g$.G .G..c].=V L` G .L` pT L` /$.G+.PV nV gX AZ PV nV SW IS qW qW JX aZ JR pV JR vL YO JR .C'.('..t!.~).Z,.h>.~).Z,.m{.|!.D'.*~.[&.D'.D'.[&.D'.p{.2!.P).e].;>.E'.f].e].E'.x,.x,.}'.X-.X-.X-.x,.X-.-%.|'.2'.t{.a{ f%.f%.x,.}- a{ F'.R* g].9$ @=.P* %p h].i].+'.j].|{.k].l].m].n].V{.o].X{.7| h= p].E) q].r].s].t].<~.n>.<~.u].I!.H!.v].w].ic zf zf #e xa (f vd kc iE _f nc nc nc nc xe ub nc zh =d zh ub =d *e ub %e %e *e nc =d nc nc !.Qo 8w Gj x].DQ LT hW k;.'l &l y].TU 5g me me Az z].#t }q }q &o &o $].gk ]n `l OD A].}x B].KT JT kY ]j Dg C].{. R X P @% H S Q@ |; N@ @% S 8* G z N G ^# F= 1; 1; ", +"I/ BN I/ 0' I/ BN ]& ]& K$ # L$ L$ J$ # + ]& ]& + L$ = + # [* # p9 = + ]& k) + = ;b = > .( $ ]& = > > & ; . . [* U@ ' & |* . P$ - U@ N$ o! ] $= - * & . Q$ R$ U@ N$ $ R$ R$ S$ ; . S$ %= T- S$ U@ ; U$ S$ | =' ] ' X@ ~ & %= | %= ) { J) H= ~ W@ | } H= 2 $# { N' ( &# D, 5 +# 7 Y@ ## 2 } 3* [ 7- Y@ } ,# } d ,# ,# 9 0 a } 6 $# a k a 0 0 ~# !# 0 0 L= p h k K/ L= !# C; a' 0 *= h p 1; Y$ n t h {# 1; 4* p % -= b' r ^# /U ^# :# 2; 2; F= #] {& B z $] a7 a7 z ..@. V V (#..@.v@.t%.x .QT B$.y .z .D].oY E].-*.oY oY #N (=.*I #N #N RT RT ^P +Z RT +Z +Z G&.G&.G&.Z .R%.G&.Z .F].!&.!&.$)./!.4..4..E` 9&.E` 9&.4..4..a&.:+.#@.#@.z+.^&.^&.$ .s'.~*.N#.s*.T,.Y;.7>.G].v%.}#.g~.A@.K&.H].*` #..++.#..6@.#..++.++.*` * .d .d .~$.E..]$.p#.-@.+#.+#.]$.;@.f$.-@.V,.i$.7+.W,.HX IX G .L` L` HX HX IS Ix > .HX HX IX qW N` nV IS *T [P pT f` PV |I H# s& 1> ^' .- .- ++ ++ b% K# .- b% b% T. s& Y. K# %+ .+ .+ N# l{.5= l{.c).K].c).h% c).h% c).c).('.c).)].('.%~.)).B*.L].B*.v,.B*.A*.B*.B*.)).v,.v,.d].:'.:'.M].S~.->.->.->.~).~).)-.N].u!.:'.:'.g>.5,.D'.D'.Q&.D'.E'.E'.D'.E'.E'.E'.2!./` q{.2!.O].E'.X-.+=.g).x,.U9 x,.x,.x,.|'.x,.U9 2'.x,.v!.+=.V>.^@ !@ H] ;~.2'.A;.4;.H] P].Q].j].R].S].T]._).U].z!.V].4{.W].0!.5{.w+ i= `] P^ X].Y].Z].<~.7'.`].u]. ^..^.y~.+^.-j *d se .%e xe =d nc nc nc =d nc =d nc *e nc kc @^.ju #^.$^.Nf /y WM cE %^.Dt &^.Mj *^.;o UI UI =^.bL 5r 6r 5r 6r &o =o ~n ^n aw ou -^.;;.cU Jj y` dL _j ;^.>^.x$ F@ X L@ G@ J L@ S J A K@ O@ K Q@ 7* F G 1& /# t 4* ", +"jP ], ], <{ #S <{ J$ I/ ]& K$ 1) J$ jP ]& ]& + 0' R@ ]& ]& ]& J$ ]& = $ ]& V@ ]& $ V@ V@ = = V@ # $ R@ + + $= # V@ V@ E! S$ S$ $ = - U@ > !, > > X@ ] U@ ; $ * R$ *' ^& U$ H= . ^ Q$ Q$ > ^ > > U@ *' & ; U@ H= ; ; X@ ; { N$ | N$ ; X@ | ## g{.X@ ~ ## 2 Y@ X@ ~ /& ( $# O$ / 4 4 $# $# } < 8- ( /& 2 [ 5 e D, d ( a L= < d ,# ( < d ,# 7 a 0 8 n {# V- n 0- h r n r h r 0- ;= z: ]# q ,> 0- ^# -) h ^# W$ n t % ,^.p /# ^# t {& m F w w w q 2; F= w F= /U z z z AR ).F= AR F= Z 8$.n! JW z n! JW _+.>z V KW .@. V (#.5 .x ..@.z .'^.)^.:#.aV QT j#.MW ;*.B$.I#.(U .Z !^.(U _#.^P _M ^P )Q )Q ^P RT Z .G&.Z .7).+Z 3@.R%.G&.G&._=.+@.0&.^,.q*.E` 9&.9&..` 9&.y@.9&.E` ]&.b&.` .a$.r=.z+.<=.#@.<=.)'.#-.N#.#-.T,.t'.~^.K&.r;.}#..#.m!.%Z #..#..%Z 1+.++.6@.++.L&.d&.%+.K>.%+.* .E..* .w=.l-.p#.]$.]$.mV mV -@.3%.G .wl mV =V AM L` G .> .Q#.> .Q#.HX G .f` nV qW JX JX nV X%.>J |T PV SV _Q {^.}P }P |I _Q lQ ^ .- H# .- .- 1> K# s& s& K# R; T. T. b% T. M# b% `. `. + b).u* ^^.b).P# -+ h% c).w* $~.#~.c).('.h% /^.R~.k~.]{.B*.').B*.(^.)).v,.)).d].)).d].v,.v,.e).->.|*.!).:'.:'.t!.t!.~).->._^.:^.:^.u!.1!.m{.T~.Q&.n{.E'.D'.E'.2!.p{.E'.=~.E'.Q).ha E'.O].ha +=.}'.+=.]].<^.g).2'.X-.2'.X-.g).F'.2'.F'.e$ F'.F'.^@ :@ <@ b$ e$ a{ ]; [^.}^.|^.1^.2^.3^._).M'.X).U{.4^.[).5^.6^.B!.h= u+ 0!.7^.8^.9^.<~.Y].0^.u].a^.I!.G;.0;.b^.Ig {g Vb E-.Zb kc vd $e nc mc nc nc wd =d -d =d ub ub -d #H ub ub rc #H ub %e >e =d nc ub =d xe rc nc *e mc A~.c^.d^.=L e^.f^.$W i'.g^.h^.i^.j^.KL +O 'l +K +K AK lu k^.=o &o 6r To ]y nu ]n ^y dE l^.%&.xv kM UY kY _j vf m^.{. %. B$ D$ M@ Y T J H N@ z I N w w ^# P@ x t C t ", +"L$ =[ ], ]& 5_ ], #S 0' = X! * 5_ I/ ]& = * L$ 0' 5_ ]& 0' L$ ]& + ]& ]& ]& + + V@ . #^ L$ > H= o! % # ' V@ > & > . S$ ; ]& > . . z] & ' ] . > S$ U$ - . H= = U$ & . ~ - $ H= & . & ; > X@ ; ; Q$ X@ 2 ; ; X@ X@ %= U@ ; { | ~ - N$ | 2 [ ] & 8- H= Y@ : ( 1 $# Y> ( &# ## 6 [ 2 ## 9 ( <& 6 == d } &# ,# 6- 7- 0 q> 7 8 !# i # ,# 6 a L= 6 i ~# n W$ |& k C; z: n c{ n c{ `$ ^# c q Y$ p r L= n ,> -= 4* m V| 2, :# )> #] Y$ t $S w F= |Z /U #] z F= w G z a7 a7 a7 AR z I T^ n! O@ M M z .c- |# .@..@. V c- c- c- 5 ..@.4>.y .4>.*I aV SO oY B$.-*.B$.;*.:#.(U #N (U *I ^P 'Q ^P )Q RT )Q RT RT _=.+Z R%.e-.9X '*.H&.1@.{&.q*.7` 0&.4..9&.3@.4..CX 9&.9&.d~..` :=.a&.:=.` .o;. ..s*.T%.9 .U,.n^.T,.v*.N-.m!.G].0>..#.|=.t*.~^.%Z #..U%.++.*` % .{'.++.o^.E .%+.%+.* .8Z * .+#.E..v=.+#.F$.p#.p#.g$.p#.h$.HS M` 0..}T IX }T =V H$.--.> .e .L` IX nV IX gX [W !X OQ nV *T =Z [W *T ,V =Z HG AY #G KN QQ YO UP 0 Q] =^ d3 /] Q] =] =^ =^ Q] =] 9~ R] =^ =^ u^ u^ c! H# x) >^ H# .- F# H# 1> H# .- F# H# b% T. T. .- b% ++ + s& }> b% s* ++ t* K# K# s^.s* N# $~.h% h% c).P# c).h% h% $~.t& P# $~.T&.d>.t^.('.]{.u^.k~.v,.v^.v,.)).v,.)).v,.v,.)).e).~).w^.!].!).~).~).:'.~).~].n{.n{.1!.OX D'.1!.u!.T~.1!.D'.D'.E'.2!.x^.E'.P).R).+=.x,.D'.p{.{].2'.({./].X-.X-.y^.R* 2'.2'.x,.X-.x,.x,.;~.;~.H] b$ <@ 2'.<@ W% R* a{ !@ m$.z^.A^.<].().B^.|{.X).l].a'.C^.D^.l).y{.2].|! s+ 9!.E^.F^.G^.)>.8^.Z>.H^.I^.G*.J^.K^.L^.0c Bf E-.`b Zb iE iE ue $= # J$ V@ = $ $ > = # $ S$ $= . > > = - 1* $= = = ' N$ & - - i#.& ; N$ $ ^& ] T@ ; - ' > (& $ & R$ ; | S$ ] ; U@ H= P$ | { b{ | N$ }* ; | | ) 2] H= { ~ 2 R$ X@ Z! } ## [ | 6 d { $# < *# 4 { | 7- { N$ <& :& $# ,# 2* 3* Y> a 6 6 } V~ d } 6 ># tA *= 8 6- L= s> h ,# K/ k h n n^ h s> ]# _# n h c Y$ m `$ `$ 1; ^# b' 2; 1; ^# Y$ :# 2; /U p F m /U #] % w .4>..@.P^.p=.Q^.aV AX y .>*.p*.aV -*.B$.iU BX ^P oY k#.3d bV )Q RT +Z ^P +Z G&.R%.Z .Z .Z .hT H&.e-.{&.+@.hT 0&.3@.E` 9&.E` /!.E` 9&.4..o;.L-.a&.]&.z+.<=.!*.s'.S%.$ .s*.n^.7>.N-.#-.t=.U,.8>.W*.R^.K&.W*.1%.#.._W *` ++.xZ 8Z C@. %.d .* .8Z ~$.d .* .-@.p#.G$.8Z ]$.+#.F$.+#.p#.f$.K` 7+.nV F..}T Ix G .}T HX =V HS IX IX P#.JX 8@.IS HR KH pT >J >V ,V qW *+.AY YO JX {^.qT YO QQ ++ ++ b% b% ++ ++ s* K# b% T. .+ s& Y. Y. `. R; L# s* c).c).h% h% h% c).l{.c).c).c).c).c).h% h% t^.S^.v,.v,.T^.T^.)).d].v,.v,.)).v,.)).v,.M].t!.:'.:'.U^.~).:'.:'.~).~).m{.~].u!.E'.D'.Q&.5,.u!.n{.2!.E'.E'.2!.[&.2!.E'.V^.e].]].W^.2!.{].X-.X^.Q).+=.x,.s{.2'.X-.|'.@* X-.2'.R* 2'.R* R* R* f%.f%.<@ 3' 3' a{ f%.X# Y^.Z^.F!.`^.P'._).P'.y{.[). /.z% ./.'$ x+ !$ !$ y% '$ B^.`>.+/.@/.#/.7'.)>.e,..^.e,.$/.zf {g Yb {f %/./.~. +. i~ S M@ J M H$ I A G G z G N b' D :# M= m ", +"L$ ;b *) BN J$ 5_ .( I/ #S [n 1) K$ 0' J$ L$ 5_ K$ L$ J$ # = L$ J$ V@ V@ + ]& $ [* = # |* . L$ = . = # 1* > . # > |* & # > > o! & > Z, . . ]& ; S$ + Q$ . N$ ^& V@ - N$ ; P$ > - & $ $ S$ 2 2 > Ez ^ -.| | ) ; Z! { 1 N$ N$ ] ; 4 / ) N$ 4 [ X@ ; > { } *# 1 N' ~ ## ( ,# $# 2 d 6 ## *# a Z! 6 ( } ( ># 0 7 6- b ( a $# 6! ,# a q> !# g a 0 e |& n d ~# L= n 2, n^ Y$ h n^ h Z> 2, h ]# }& V| b' Y$ Y$ [# @= Y$ /# p /# #] 1Z '> G F= W) D m /# /U z $S w a7 ).z a7 z z a7 a7 8* T^ ,/.I 2Z 8$. Z O@ n! 8* .@. V .@.M 4>..)..@.(#.JW H#._#.aV _+.B$.-*.aV B$.-*.I#.yS '/.aV k#.oY )Q )Q +Z RT +Z )Q +Z R%.G&.+Z H&.9X w@.R%.<#.0&.hT 4..E` E` D` .` 4..E` o;.4..a&.a&.4Z :=.s*.#@.!*.~*.<=.z@.r*.#@.Y;.7>.7>.7>.8>.T,.#-.P-.u*.)/.x%.C .PW _W ++.#..*` {$. %.d .M~.d .b].%+.p!.E..d .E..]*.E..-@.p#.+#.mV ]$.Y*.(&.}T K` K` }T N~.IX HX =V }T IX IS HS IX IS pT PV N` wl PV =Z XT nV SV gX JR HG #G QQ ..'.1/.1/.0^.2/.2/.`].9;.3/.4/._b A~.Yb $e _f nc _f nc =d nc %e ub -d -d #H #H yh yh yh 'c )%.yh )%.yh )%.)%.)%.yh &/.#H jZ =d wh ub =d ^f 5/.ew 8w ni 7V 6/.Ro qu gO eE 7/.'B 1i ND [q #= N z 2; t ", +"R@ L$ <{ =[ G= ]& 0' I/ J$ <{ = # + I/ p9 + # + J$ # $ ;b + + ]& [* + [* . ]& $= V@ . + - $ + V@ $ ]& # . ; ; $ $ . = Q$ [* Q$ = L$ . 2) %= & * . & ] }* | | ; H= U@ R$ | . %= & ; ^ Q$ ; N$ ] ^ *' U$ %= ~ 2 2 2 %= & ~ N$ Z! ) ~ /& ) V~ ~ 2 ) ## Y@ ## ## 4 } *# [ &# ># B; ( } { 6 /& Y@ } a ,# d $# 6 6 7 6 3* ( 7 i e z: L= e n a k s> 0 n n !# s> c c n v n ;= `$ Y$ n m p Y$ `$ % 4* :# /# `$ m t F 4* D @= p 1; w ^# C z F= :# G G F= z z K 1& E E z '&.1& 8$.8* T^ Z V c- M V V c- Z V .@.4>..).t%.x .z .E>.aV L >*.B$.oY *I iU I#.(U yS J-.YX K-.a/.)Q RT RT Z .RT 'Q #N b/.+Z 9X sZ Z .R%.H&.{&.q*.^,./!.d~.CX CX hT .` 4..J#.3Z 9&.E` 4Z #@.z+.c/.h{.!'.#@.N#.9).s*.n^.U,.~*.t'.7>.T,..#._;.t=.i-.wZ a .C .E$. %.*` h2 K>.{$.* .%+.%+.E..* .& .d .%+.p#.-@.+#.b` |#. Y 1=.RW d/.IX HX oT 8@.2=.L` [W IX }T }T }T =V [W L` gX qW nV PV pT nV O&.nV qW PV PV oV }P ~S |I lQ 1T G UP LR 3P cN 1O 1I 1I CI 1I XA UK XA ,G JG Jx .- v) H# H# F# F# .- F# F# F# .- T. F# ++ Y. b% R; s* b% L# Y. ++ L# Q. K# .+ ^^.^^.R; .+ 5= c).#~.$~.$~.c).c).c).R~.Q~.f/.R~.R~.R~.v,.)).g/.^/.d].d].)).)).)).U^.d].v,.//.f>.~).h/.i/.t!.n{.~).t!.t!.j/.t!.n{.m{.1!.2!.D'.<'.E'.D'.k/.E'.E'.p{.E'.2!.2!.l/.x,.m/.p{.n/.R* s{.x,.X^./].2'.]].X-.x,.2'.R* R* x,.R* !@ @* <@ <@ !@ J- !@ 3'.4@ o/.p/.q/.p).r/.s/.x{.z!.t/.|! |! l+ 9> Fl Fl dz _i F+ F+ )$ u/.v/..'.w/.#/.<~.H^.0^.7'.G;.x/.}b ^f vd _f *e nc &e *e rc xe ub ub -d -d $c *e yh +l e*.)%.)%.)%.y/.'c ~=..$.e*.~=.yh ~=.=d ub #H ub =d {g z/.A/.w$.B/.#].7].7/.wv eE `y k;.C/.D/.2q E/.F/.#t #t #t To &o =o IC G/.0K aw RB eE eE |N |N JT 9T WY (j 3g NY H/.~. G@ ` S 1# S P@ +% z K@ M I C A G D t ~& D C ", +"V! <{ I/.s' 2^ 0' 0' I/ L$ R@ I/ 5_ =[ 5_ 0' ]& * + L$ 5_ + ]& #^ L$ R@ # + }, # ]& ]& . & & $ ; > # V@ J/.+ = S$ Q$ # # . $= . = - }* ' $ $ Q$ & - . * > - ; $ Z! V@ > $ ] %= > T- | & # T- R$ Q$ ~ |, & $ ] P$ H= ] [ ~ 2 ; H= N$ ~ 2 ## | | Z! /& 2 { Z! ( ## { } { } &# ,# D, d a ( } d 6 } ( 6 Y> d a a a /& 6! k j 7 -> } k L= c a 0 s> L= {# e K/ Vj e }& 0 r Y$ % K/ `$ K/.Vj h m `$ q q 4* D `$ m t w m `$ [# m s> w w :# $S E F= :# z a7 w z '&. #.$S 1& 1& 1& 1& L/.$T T^ m;.O@ n! V c- c- O@ JW c- .@..@.(#..@.4>.5 .iU aV A: ` :#.:#.oY *I oY (U yS K-.BX +-.+-.#N RT )Q _=.)Q +Z RT +Z Z .Z .-X R%.G&.+@.3@.3@.3@.0&.,$..` 4...` 9&.E` 9&.:=.E` 9&.y@.pY ` .b&.M/.M/. ..5Z Y;.......8 .N/.v%.S%.)'.0 .N-.N-.N#.M#.^W %Z 6@.*@.a .E .a .++.yZ d .'X gV * .E .% .d .]$.d&.& .O/.zY dX -V P/.d/.HX }T HS IS M` G..L` HX HX oT }T G .=V =V Ix HR pT pT nV PV 5Y pT qW ;Z nV HG XT Q/.#G !R .K'.)>.`].H^.H^.H^.+(.@(.]f Zb ^f ue (.,(.v@ G@ 9* Y T S M@ P@ B P@ I I I I D `$ G C 4* 4* ", +"BN <{ p9 ], =[ + I/ I/ ]& I/ 0' + K$ 5_ 0' ]& # # 5_ L$ 5_ L$ L$ = ]& R@ [* # > = $ S$ S$ $ . # # ]& V@ Q$ [* # > > = U@ # & ] . 2) U@ S$ Q$ * U$ Q$ ; %= ^ > ] > ^ X@ N$ S$ { |* =' U$ $ # ; Q$ ; N$ `@ | = N$ ' P$ ~ ~ ) *# , 2 R$ { ^ xS 7- < X@ H= ( 5 *# } } ( 4 1 ~ d $# 6 k 6 ( ( a 3* Y> 6 &# a 6 == 6 0 b ,# k ~# a ,# 3* 2* k a *= s> s> 6! !# 9 e Q{ n p r c Y$ s> 2, K/ ,> A~ h p n q m #| ^# Y$ |& t @= #| _# ^# /# ^# /# w C D /# u B F G /U w a7 G @= z w I I KW a7 8* =X .@.1& .@.1& V V 2Z V c- .).4>.v@.v@.AX 5 .J AX I-.aV MW *I '(.WX oY oY k#..V WX yS )Q )Q RT +Z RT +Z )Q Z .+Z G&.EN sZ w@.lP 9X hT hT +@./;.CX 0$.AS E` 9&.4..,$.3Z Y!.W;.` .:=.)(.M/.M/.s*.S%.<=.s'.N/.v%.c&.0 .0 .$ .c&.K&.@..#-.t*.I&.1+.U%.r;.*` ++.#.. %.d&.%+.K>.d .d .d .+#.* .+#.E..-@.]$.|#.; .3%.G$.e .5+.G..}T K` }T P#.=V G..IX HX > .HX Q#.PV Vw IS PV IS wl PV 5Y nV qW OQ PV HG UP }@ R* H] b$ !@ :@ :(.<(.[(.}(.|(.1(.2(.P'.z!.3(.y% s+ o+ dz 9> Fl 4(.On _i 3c L Xi 5(.n~..'.`>.w/.6(.`].0^.7(.x-.8(.^f P;.(g nc &e %e ~=.ub ~=.&/.yh yh yh )%.9(..$.$(..$.$(.:b :b :b 0(.e*.[R a(.:b .$.!=.)%.@^.3$.$c -d td H*.7V Jj b(.c(.~F wv eE 2G 2G `y ~F 2G d(.e(.f(.f(.l h(.WM KT JT QD %W }j `` dk ii ^F i(.j(.z@ ,= C$ P@ P@ U H$ I |{ N B N m `$ /# `$ t Z$ ^# t ", +"]^ #S jP J$ G= BN p9 I/ 0' I/ + R@ BN 1) 0' 0' # Z, K$ 0' + ]& ;b = ]& + # 5_ . > Q$ Q$ ' $= ]& L$ # * . V@ + Q$ . - S$ Y! ]& $ . k) & U$ - ,Q . ; = & & . P$ H= | X@ & | ] & + - ; ' ; N$ Ev U@ ^ | S$ ; ] Q$ ; U@ 2 ) T- ~ N$ X@ [ 2] ; # 2 P$ 1 [ | 4 => ( 7- ~ f] /& d 1 d $# 6- V~ d } 6 D, V~ [ 5 ( 3* 3] } $# 0 7 6 $# 9 q> 6 6 q> d ,# e 0 k 6! K/ 0 ~# ~# L= ,> W$ ~# n h n^ ,> `$ ~# n ,> ,! m /# p 1; n b' ,! /# m /# w $] xE w 2; 2; B C` $S z B '&.F= w w @ .F= z z A$. #.$T F= 8* V L/. Z 1& O@ M .@..@.4>._+.4>.5 .:#..@.3# Z..Q SO p*.MW iU aV k#.SO oY b-.,*.3d ;$.(U RT RT +Z )Q RT +Z RT Z .+Z G&.G&.Z .|@.<#.0$.+@.1@./!.w@.3@.CX /!.9&.L-.E` a&.a&.4..o;.f-.:=.9).=].c/.k(.l(.c/.k(.9).v%.M#.!$.7>.N-.s*.P-.x%..#.K&.L~.m(.%-.s;.n(.*` {$.d .o(.E$.E$.%+..%.L>.E..* .* .E..* .%+.p#.+#.g$.3%.c` F .G..e .y%.HX IS IX 7+.HX HX G .G .qW IX IS nV [W qW JX gX nV PV #G

J 5M -J 5M |I 8 o8 n8 Ye Vi Q5 o8 Ye a3 o8 o8 4v |c Td ]: Sd Td ]1 M} O~.R4 ,/ ,/ ,/ /] ,/ 9~ ,/ 3| /] =] r~ 9~ =^ Q] Q] =] =] Q] Q] D> D> =] Q] ]' .- H# y' H# v) H# F# 1> S. F# F# H# Y. T. F# F# .- ++ Y. L# ++ Y. Y. U. s^.Y. .+ T. Y. R; c).~/.$~.c).$~.$~.~/.l{.$~.#~.c).c).s(.c).t(.]/.L].d].T^.%~.v,.)).d].)).)).d].d].)).d].M].t!.n{.u!.u(.:^._^.n{._^._^.n{._^.v(.n{.E'.2!.E'.D'.p{.n/.2!.E'.p{.p{.2!.p{.P).t{.]]._/.p{.w(.y^.V/.R* 2'.ha ]; x,.J- v!.x(.H] v!.H] g> J- ]; R* s; s; b$ y(.z(.}(.A(.|(.B(.C(.o~.V].3(.D(.A- '$ 9> dz Fl bO .F(.6(.6(.2/.0^.)>.b!.h^.Zb vh 0' + > + # . > $ > . > + - & =' |* + $ o! | . > U$ N$ ; X@ %= U$ S$ S$ > %= o! & T- H= Q$ S$ | ; ) S$ ; $ ^ ] ~ 8- ~ N$ U@ 2 R$ 7- { [ xS [ W@ | ( ~ { 1 U@ 05 *# | ; /& Y@ $# 7 1 a' V~ 4 8 $# Y@ D, $# N' ,# 6 a 8- 0 ># q> 7 a Y> } a 7 ,# a q> 2* c z: ~# ~# 0- 0 ~# c &].n L= |& 2, Y$ A~ c i ,# ,> r n q Q(.Y$ Z$ b' s> /# 4* 4* q $S 4* 2; G /# t E /U F= G C` E t *].z C` z AR a7 1& x 8* a7 AR 2Z c- Z 2Z .@..@..@.t%. V .@..@.x . V =X p=.y .(U I-.H#.*I *I oY iU oY I#.k#.RT iU (U a/.)Q +Z )Q Z .+Z RT RT G&.+Z +Z 3@.Z .|@.R%.e-.{&./!.3@.{&.AS hT .` 5>.L-.4..,$.a&.o;.L-.:=.<+.r*.,{.k(.M-.T,.U,.R(.8>.i-.G].m!.U,.t'.>].w'.U,.}#.*` 1%.x'.S(.L&.++.{$.++.#.._W %+.C@.]$.E...%.E..8Z E..E..+#.* .p#.I` F .E..F .;V e .qU >@.HS ,@.=V =V L` G .HS HX r#.HX pT nV nV qW pT IS KH

H# ++ U. b% T. Y. F# T. Y. .+ .+ Y. + #~.T&.U(.c).$~.#~.#~.#~.U(.#~.#~.Q~.('.$~.V(.W(.i~.X(.}!.g/.v,.d].X(.d].d].)).U^.d].U^.//.:'.N].m{.Y(.t!.n{._^.Z(.n{._^.`(. _.E'.2!.2!.2!.2!.V^.O].E'.E'._/.2!.2!.V^.p{.t{.]].p{.2!.O].+=.R* 2'.2'./].V/.R* 2'.R* J- R* J- ((.R* J- :@ R* ]; !@ @* P# ._.r>.q/.+_.@_.#_.z!.$_.%_.s>.5^.s+ Xi Yr Yr UN ^R ot On 2K On v+ &_.*_.p>.F(.`>.`>.w/.K'.Z].=_.lv ub xe %e %e &/.xh yh )%.e*..$..$.:b 9(.:b x&.9(.H(.x&.9(.;c ,c H(.:b ~%.x&.H(.:b .$.)%..$.e*.@^.+l -_.;_.>_.,_.'_.)_.!_.~_.^y [x ou dw ou {_.]_.^_.9w 9w #t |* . S$ - > $ ^& S$ = N$ . S$ . | $ . . ^ T- ; > & Q$ X@ ] R$ ; ] & & ~ ^ N$ H= ; U) 2 ~ - 2 P$ ~ | 2 N$ U$ | ; U@ X@ N$ ] | *# [ [ | { ) ) D, 1 6 5 } } ># ( : d :_.## $# Y> $# :& ( ( ,# ,# b a ,# } ~# i 7 7 V) z: c 0 k k ~# 0- r !# 0 ~# ~# z: s> E, s> c h n `$ s> `$ Y$ q p `$ b' % `$ q s> p w u #] E /# % /# E 2; /U (# '&.F= a7 /U z a7 a7 z n! 1& JW z AR .@. Z O@ 1& V c- c- .@. V 4>..@..@.x .v@.v@.5 .*I Z..I#.i5 *I *I -*.*I <_.(U +-.[_.(=.,*.^P RT )Q RT RT ^P RT +Z Z .RT |@.G&.H&.'*.+Z e-.q'.CX $).AS /!..` CX 0$.9&.J#.a&.9&.X;.a$.r*.Y$.X;.}_.|_.r=.)'.9).Y;.t'.Y;.I>.1_.I>.2_.g~.m!.{*.U%.3_.L~.L&.*@.6@.++.%Z oW nW &` xZ %+.& .%+.* .E..-@.d .%+.E..-@.o#.jV pU b` 4z 0Z HR K` =V HR }T HS 0..}T }T =V M` =V !X PV nV IS pT [W HR =Z >V

V #G YO QQ LJ QQ S. S. F# H# F# F# F# O. H# Y. Q. F# H# T. W. R; Q. ++ F# Y. ~/.5_..+ R; U. $~.T&.$~.$~.K].$~.#~.$~.#~.$~.~/.#~.c).]/.6_.7_.8_.]{.U^.M).}!.)).)).)).v,.d].d].d].U^.M].9_.9_.t!.Y(.0_.a_.t!.t!.N]._^.`(.x^.2!.2!.E'.D'.2!.e].b_.c_.2!.2!.p{._/.V^.W/.n/.e].3!.e].t{.R* 2'.X-.R* H] R* x,.x,.2'.2'.@* 3' d_./; [/ 0$ n, R* 2'.4' :/ e_.7!.f_.g_.h_.x{.y{.i_.j_.k_.>$ 8> '$ qt cz .B bO $q ot 5H tQ On l_.m_.*_.F(.n_.o_.`>.7'.`].p_.,n ub %e ub ~=.'c yh .$.e*..$.:b :b :b ;c H(.,c }i _N Ac YN YN Ac tb }i ~%.x&.}i ,c :b !=.0(.e*.e*.q_.r_.s_.t_.R!.`y ]n u_.^y tv ^y [x ou vv v_.]_.w_.O(.O(.x_. - ^& = . - . $ ; > - & & ^ . > | Q$ . - N$ $ o! & # ; }* ] ; N$ ; - ~ | & Z! *# ~ Z! [ [ [ ; [ 8- X@ Z! [ N$ | { X@ ( } < } [ $# Y@ Y@ Y@ 3* [{ ( 6 1 } d $# 6 b d 6 9 < 6 6 k } e J= 6 k 7 3] c a 0 L= k h h n L= Q{ h Q{ n Y$ 0- n % s |& `$ c{ c q Y$ n^ u ,> v r ;) C {& ^# /# G D @= G F= t F= F= z F= #] a7 z a7 1& z I Z I KW ). V Z T^ a7 JW T^ JW c- t%.4>.4>.4>.0S v@.>z (#.B..aV iU *I d{ iI iU (U aV aV ^P .Z E>.yS ^P )Q )Q )Q +Z +Z +Z )Q G&.+Z 1@.G&.+Z 7)._=.R%.$).0X 3@.bV o;.CX .` d~.E` E` E` ]&.o;.f-.E_.#@.)(.X;.F_.X;.)$.i-.9D N{.!$.v*.m!.I>.1_.G_.u=.H_.j{.I_.et L&.L&.#..xZ _W _W DR *` 6@.8Z * .o#..%.%+.p#.%+.E..+#.E..mV -V pU Y J` oT M` NV 0..HS IS > .=V L` L` [W [W }T HX PQ KH pT }T IS PV JX *T

Y. T. W. L# Q. T. U. Y. Y. Y. Q. ~(.5_.J# .+ J# M_.$~.M_.s* l{.$~.$~.#~.$~.#~.~/.#~.t^.8_.V(.{/.T^.g/.)).)).N_.)).v,.d].d].d].U^.d].d].X(.t!.j/.~).N].~).O_.0_.(/.N].9_.`(.P_.x^.2!.1!.D'. _.1!.f].Q_.{]._/.{].p{.l/.n/.p{.n/./].@* ^].2'.@* :@ x,.2'.t{.2'.<@ e$ R* W% R* <@ W% W% W% }- P* g> n, R_.S_.T_.p).U_.V_.X).{~.$_.@) l; V; )$ 8> m9 pj cz .B 4I 4c On zT $q 8> T{..(.p>.`>.p>.o_.`>.F;.W_.X_.zh xh yh )%.!=..$.!=.Y_.:b :b x&.~%.~%.Z_.he Ac zc !%.$n >c $n >c !%.tb tb zc hE x&.`_. :.Y_.a(.3$..:.A/.6/.+:.@:.u_.^y #:.cw ^y AK tv fk $:.%:.&:.*:.=:.-:.`y bw ~n ;:.:.,:.'. +. X +% +% O@ I D G G D G /# C ,! m w 2; ,> ", +"L$ R@ R@ J$ L$ BN G= I/ I/ I/ G= 0' I/ I/ * =[ 5_ = 1) 1) ]& ]& V@ ]& L$ $ V@ ]& + * $ . . R@ |* 1* > $ V@ . ' V@ . ' ]& # = $ $ $= ' S$ > > + $ $= . $ }* U@ & > . # > Q$ ] ; P$ T@ ~ ^ o! | + U$ ) 1 U$ S$ . . =' & | ; ^ | ] & 2 2 [ R$ %# X@ H= | N$ { X@ ( 1 ## / < d 7 ( 1 -.( d { 6 ( { ( ,# <& 6 6! 6 &# 6 a b ,# 6 6 6! 3] Y> a 0 L= 8 0 n 7 L= 0 c ~# 0 e ~# ;= n 0 a o _# n 2, L= V| u ^# s> `$ q t s> D /# $S z C 2; E w G b' 1Z F= a7 G z /U F= z '&.'&.t K T^ a7 2Z a7 2Z a7 V T^ JW a7 JW .@.4>.J{.v@.2Z 4>. V M 4>.(#.4>.t%.x .5 .oY *I k#.*I (U *I XX y+.(U a/.)Q RT #N RT +Z RT ^P Z .RT Z .!&.G&.RT F].G&.':.+@.CX '*.E` hT CX 4...` E` .` +` o;.:=.#@.<=.)$.3..^&.M-.<=.):.<=.!$.B .t*.<=.t'.m!.2_.H_.f~.!:.t=.r;.*@.a .#..#..*@.nW DR _W {'.d .O/.%+.{$.X*.* .* .8Z p#.I` P/.RE 4Y I` @#.oT 7+.;V >@.HX ;@.HS HX }T }T }T =V }T M` HR HR AM HR PQ IR |T *T

.u].3:.td ;g [R .$.a(.;c $(.~%.H(.4:.!%.k..lA !%.!%.!%.>c >c Q$.@$.~#.< .o%.o%.Ac tb !%.Ac YN 5:.!#.:b 6:.7:.gE R!.xN 8:.u_.JC ]n ^y tv tv vv 9:.0:.a:.b:.`H c:.Fa _` )g 3j tv ^n uv vv [x ou eE pu |N KT $W .kh =t WY ~j +m _*.{. E@ E@ |; P@ S E= I C t N G C D t `$ /# m w ", +"*) G= BN 9| jP jP ]^ I/ 0' I/ I/ I/ 0' 0' + # ], ]& + # 5_ J$ # .( $ + 1) . . + . k) $ }, & . ' $= + + 0' V@ Q$ $ U@ . > $ # > . $ - * = Q$ # $ (& - U$ [* Q$ $= U@ > S$ ; N$ & W@ H= . ; ; ' | 4 %# > ~ { 2 N$ ~ | Q$ ; ^& { 2 | } ; ~ 2 H= X@ ; & ## { : ## I= *# d 6- / { 6 < d d 7 ## } } 7 } 7 7 7 $# 7 6 [{ b c6 7 n 5 6 a 0 0 b ~# L= L= 6! j L= k {# c 2, ,> ,> t' 0- n ~# p s> Y$ m Q(.`$ ;= s> % w 2, % 1Z C w C #] :# F= G :# E #] E .4>..@..@.e:.QT x .5 .AX iI oY iU I#.A: aV A: BX X!.I#.oY +-.G&.RT )Q )Q )Q )Q RT G&.Z .Z .G&.Z .R%.Z .e-.0&.hT 0&./!.q*.4..W;..` 4..a&.4...` 4..` .4Z `X ` .7 .B .#@.`X ~*.!*.N#.8 .S%.T,.T,.m!.f:.s;.g:.a].a>.a .*` *` *` _W cX +..cX #..{$.%+.p#.& .%+.* .K>.%+.* .p#.E..@#.-V p#.E..mV oT G .3%.i$.HX 0..AM AM HS HS GR Vw =V HR pT nV [W |T vO HR YL FR JJ

8 Q5 Ye n8 n8 n8 n8 Ye o8 n8 Q5 n8 n8 Sd R4 o8 Rd c3 |c M9 R4 M} K0 ]: 9~ ]! ]! y/ =] 9~ 9~ =] Z) 9~ 9~ ]! =] 0~ 9~ 0~ y' S. D> 9~ `= F# F# S. S. F# S. F# O. F# F# O. S. F# L# S. S. U. Y. Y. Y. Y. Y. T. h:.Y. J# r& p- 5_.~/.c).R/.t& #~.#~.R/.U(.#~.U(.#~.$~.i:.f/.j:.k:.]/.]{.U^.U^.u^.U^.d].U^.d].U^.X(.U^.(:.O_.9_.:^.Y(.l:.(/.a_.`(.:^.~).`(.n{.P_.x^.2!.p{.k/.p{.p{.E'.O].2!._/.2!._/.e].W/.m:.4'._].t{.t{.t{.x,.x,.t{.J- R* |- b$ H] !@ J- X% |@ !@ W% a{ @* H] &* n:.o:.T{.v{.7^.1(.X).z!. (.@) ;$ n+ y% y% z- qt UN hZ p:.-P j_.*_. ,.p>.*_.*_.F(.6(.q:.r:.L%..$..$..$.;c H(.x&.Ac Ac Ac o%.>c fw +$.s:.o%.~#.^@.l@.^@.l@.@$.@$.< .t:.>c o%.$n tb ~%.~%.!#.I(.u:.v:.7].w:.x:.y:.^y ]n |j ^y u_.i!.$:.z:.A:.N(.B:.C:.;c 4:.A/.AK cw |N gH |q nu 1q ^y AK .R S {F KT (Z KL dL ju D:.E:.A@ V C$ P E$ K@ Q@ A Q@ z #= /# 4* {& G m Z$ p % ", +"L$ J$ jP 9| I/ #S I/ R@ L$ ]& 5_ I/ I/ L$ 0' = + ]& ]& R@ + ]& @ # T@ L$ L$ Z, + $ $ $ = ]& - + ]& $ V@ $ Q$ & ' H= H= $ - . . & E! = > > > =' - & * + S$ }* + > - U@ N$ . $ o! J) ^ $= & N$ Q$ o! ) Q$ ' Z! ) ; ] | . Q$ 4 Z@ 2 4 | { ~ [ *# ; g{.{ Z! [ < /& F:.) : 7- 1 2 I= 6 +# d Y@ 1 8- X@ d ( ## 6 *# d /& $# 3] q> 7 a Y> 0 ,# a e 0 k 3* 0 |& ~# a n L= h |& 0n ,> h 0- 0 Y$ h q p 1; r Y$ 0 q m s> /# t p Y$ m /# w ;{.w /# /U :# G /# /U #] /U /U F= E '&.1& '&.a7 z I {& 1& 8* AR V 1& c- 8* T^ I 1& V O@ m;.4>. V c- .).v@.-*.SO A: SO iI y .G:.>*.SO p*.H:.I#.[_.zS (=.+-.^P R,.RT )Q )Q )Q )Q +Z Z .Z .G&.Z .+@.'*.3@.{&.+@.AS $).4..D` q*.E` .` 9&.}%.]&.+` ]&.z+.z+.` .9&.I:.<=.!*.9 . ..B .!$.S%.7>.T,.Y;.J:.>].w'.K:.a]._;.%Z a>.*` a .nW nW a .E .& .u;.8Z L:..%.E..8Z %+.d .E..c` p#.|#.p#.p#.mV L` L` -V |#.HX e .IX =V }T L` =V }T L` pT IX IX ]u HR IS HR IS YL cJ *T QV GH 1z _Q LJ YO .G :L }P !/.-J vL wL LR 8 'k n8 o8 Q5 n8 a3 n8 Q5 n8 o8 n8 Sd o8 S4 J_.o8 R4 Q4 A_ ,/ M} ,/ M} 9] ]! 9~ 9] ,/ =] 9~ =] M~ 9~ 9~ =] 9~ =] ]! 9~ (^ a~ H# D> H# F# D> F# S. F# a! H# Y. O. O. J. Q. R. - Q. S. W. Y. T. Z. L# Q. Q. Q. ~(.M:.X. + R/.R/.c).~/.K].N:.h% #~.U(.#~.M_.$~.s(.t^.s(.](.O:.]:.T^.d].P:.N_.U^.X(.U^.d].)).d].U^.Y(.Q:.a_.t!.9_.O_.0_.a_.~]._^.(/._^.n{._^.`(.2!.2!.E'.x^.k/.Q_.R:.2!.p{.l/.l/.e].g).W/.n/.n/.t{.U/.m:.::.W% t{.R* 2'.W% e$ H] R* !@ x= R* |@ J' d$ 4' e$ S:.T:.U:.A(.V:.k].W:.l).p~.t/.|^ t/.-$ =; >$ /: |K 3U aO X:.$q ot &r u+ )$ Xi Y:.C,.~>.*_.*_.D,.F(.Z:.`:..$.$(.Bz }i ,c tb zc zc !%.>c Q$.Q$.~#.~#.fw 9#.l@.l@.U@.p@.A#.0k U@.l@.~#.< .< .o%.+$.tb P$.~%.Y_. <.6].hW 8:.!_..<.tv ]n B:.dw kh +<.@<.#<.@<.$<.%<.&<.*<.=<.-<.;<.hA |j mu 6r mu ~n ^n Wo 3q eE DV )B /y 7V kh `` ><.,<.!. R D$ Z M@ M 4, Q@ N N M t `$ N N C Y$ D m ", +"R@ ]^ I/ BN #S #S I/ R@ R@ L$ I/ 0' 0' 5_ ]& * # 5_ p9 ]& # + + # + ]& ;b # # ]& ]& + + + # Q$ + = & & S$ ' S$ o! #^ . |* > > U@ U@ = + |* |* $ > - $ T@ U$ & > > R$ ; N$ U@ U$ (& H= Z3 - = & & U@ ] f] T@ | 2 | ' | %= Z! | N$ 2 ## 8- { | Q$ Y@ Z! N$ - | | N$ N$ ~ 2 ) [ X@ / $# } ( D, D, [ / d ( d 7 ( /& ~ D, V~ [& 7 ~# ,# ~# k V$ 5 0 ~# <& 0 g 0 !# i s> n n j k s> K= n n n V| c{ h 1; p q s> n y h 1; ;) `$ t p ^# 4* ;{.G `$ *].w @= F= z F= D F= /U :# F= F= ).a7 N 1& '&.1& N@ I V c- V $T 8$.c- V 2Z '&..@.t%.o^ T^ x .t%.z .AX B$.iU i5 4>.'<.B$.iU iU aV iU A: +-.k#.+-.,*.@-.+Z #N )Q )Q +Z Z .Z .RT R%.R%.R%.1@.G&.0&.0&.3@.'*./!.CX E` hT a&..` 9&.9&.4..9&.` .f-.#@.z+.)<....!*.B .$ ....z@.S%.)'.!$.)'.!<.t*.'{.m!.W*.@..a .C+.1%.++.nW _W a . %.d&.++.8Z d .& .%+.d .%+.%+.8Z * .p#.E..f$.f$.RE RP AM IS -V d/.=V oT IX > .=V HR HR [W HX ]u Ix Vw IS PV HR IS *T SV

c$ /<.(<._<.:<.U:.`^.W:.B{./~.<<.`/ E^.l; MH Fl 8> .B |K UN dz /X uK Yr 9> m9 On |^ m_.F(.D,.[<..(.*_.o_.}<.-_.zc Ac !%.!%.!%.Q$.< .< .@$.@$.U@.^@.U@.S+.U@.S+.S+.l+.aK >+.2x U@.p@.0k 8*.lA ~#.fw >c zc tb }i |<.B].1<.2<.3<.4<.]n |j ]n ~F 5<.6<.7<.8<.#<.$<.9<.0<.9w 0w a<.b<.!s #t * }* + Q$ # # Q$ = ]& $ & *' - > ' . > > o! Q$ ^ Q$ = U@ > Z, - . N$ $ > ; ' & U@ & H= > + . X@ ] & Q$ ] ] & ;# N$ & o! R$ U@ ; Z! | W@ N$ ) W@ X@ : - N$ 5! 2 | | N$ /& d X@ 4 { *# $# } 2d b 6- J] , 1 { 5 6 } -# 6 b Y> } 7 d ,# a k 9 b g q> 3* z: q> k {# 3* Y$ n a ~# k ~# h z: d<.,> e<.h l r h 1; 2, s> s `$ 1; y ^# /# m D 4* D y }& *].2; /U a7 G /# #] F= C` z G a7 '&.'&.a7 $T a7 a7 T^ c- T^ V H$ a7 Z V c- 4>..@.v@.(#.4>..@.t%..).x+.t%.(#.B..A: z .x .-*.I#.WX oY (U oY #N yS oY ^P ^P ^P ^P ^P ^P )Q +Z +Z Z .G&.+Z R%.'*.Z .!&.0&..` 1@.8).AS .` hT /!.o;.4..9&.4..E` a&.` .pY ` .f<.Y$.#@.......Y$.z@.z@.$ .g<.c&.1_.1_.T%.T%..#.w%.%Z a .%Z ++._W *` #..6@.++.% .& .8Z * .%+.* .8Z 8Z 8Z * .%+.* .p#.eX zY AM AM HS }T }T IX }T G .e .oT GR Ix pT }T Ix IS }T HR HR Ix IS XT [P OQ *T

8 J0 oj Pk J0 J0 Q5 n8 Z< Q5 n8 n8 Z< J].Q5 Q5 L9 a3 S4 R5 Q5 {b 0! 0! ,/ A_ 0! 0! <> 0~ 9~ q~ 9~ 9~ q~ =] ]! ]! {~ { 9~ {~ z! 9~ ]' F# F# H# D> S. .- O. O. F# S. J. F# F# O. S. T. F# S. Q. F# Q. Y. Q. R. Q. T. Z. W. R; h<.i<.^^.U(.#~.#~.~/.U(.j<.M_.#~.$~.#~.j<.k<.9,.i:.8_.](.l<.k:.X(.X(.)).m<.U^.U^.d].u^.d].U^.X(.n<.o<.:^.9_.~].n{.t!.0_._^.]<.p<.v(.`(._^. _.E'.p{.2!.E'.p{.l/._/._/._/._/.t{.U/.U/.:@ /].R* @* t{.R* q<.R* W/.e$ R* }@ J- b$ 3' W% :@ P* U9 d$ R* ^].c= r<.T{.s<.Z/.t<._).l).V].3(.3(.u<.=, y% BD Xi qt aO dz UN bO |K qt NH F+ @f v+ `^.k).k).q>.D,.C,.v<.w<.x<.!%.Q$.< .< .Q$.l@.0k U@.U@.U@.0k p@.m@.(@.y<.l+.m@.l+.aK 0#.y<.l+.l+.l+.$$.l@.@$.l@.< .t:.n%.tb z<.A<.}x 2G B<.C<.B:.vv .<.D<.E<.F<.8<.G<.H<.#<.I<.^_.ku J<.K<.rv # + $ > + $ . ]& = * P$ & V@ T@ . ' > ]& N$ > $ > > $ ; U@ & S$ ; ] ] . H= X@ | $= > Q$ ~;.' & N$ ~ > - ' | ^ | ~ N$ ; ~ ; 2 2 Z! | | 8- | { O<.X@ 2 X@ X@ { X@ 2 : { | $# $# ~ } 7 6 ( V~ d N' 9 3* ,# a 6 < 7 6! Y> 6 ~# 6! ,# 6 6- ,# 8 ~# ~# c a e e 0 ~# e h 0 L= c{ n^ `$ s> 2, t' K/ ]# b' b' 4* `$ /# 4* Q{ G#.~# u % 4* w :# :# w D D w G $S F= F= '&.'&.w C` P<.A$.'&.a7 1& AR JW N AR Z V $T T^ .@.O@ T^ 2Z 4>.4>.(#.4>.4>. V 4>.~,..@.C).*I B$.o*.-*.<_.:#.U;.B$.iU XX _#.I#.+-.+Z ^P RT RT RT ^P +Z G&.R%.+Z |@.G&.H&.+@.!&.0&.^,.CX 0&.0&.CX .` mL )*.J#.4..:=.+` 4..)(.]&.a$.f<.Y$.l#....5Z <+.z@.z@.^&.t*.^&.U,.Q<.t*.^W 0 .n#.*` 1%.%Z n(.a .++.& .% .++.C@.%+.%+.d .& .d .* .E..{$.8Z * .E..P/.J` E..; .5+.=V oT =V HS HS HS oT }T uP HS AM uP HR nV pT HR Vw Ix pT QV

J [P vL }P / &^ J0 >8 Q5 n8 Q5 Q5 n8 a3 Ye a3 a3 o8 L9 b3 ]: B9 d9 ,/ :} m{ 0! c3 m{ ,/ <> /] ]! 0~ 9~ 0~ 0~ 0~ ]! ]! z! ^! e/.9~ ]! ]! D> O. O. D> O. E# O. H# S. S. F# O. O. Y. S. ]' i' S. Y. T. S. R; W. .+ X. - Y. U. i<./<.R/.W. J# R/.U(.#~.#~.j<.M_.R<.#~.U(.U(.S<.U(.N:.T<.S^.U<.V<.(:.(:.^/.d].n<.X(.U^.U^.X(.X(.Y(.X(.Y(.Y(.a_.9_.a_.(/.9_.0_.(/.`(.`(. _.W<.X<.Y<.x^.x^.E'.p{.x^.p{.p{.p{.l/.n/.|- _]._{.n/.p{.l/.@* _].b$ b$ ]; !@ @* |- W% P{ |- d$ b$ 4@ P{ f$ Z<.e$ `<. [.3^.Z/..[.t<.[]._).y{.+[.;$ @) y- t+ h+ h+ o+ M& )$ bO UN ^R qt Xi Yi NH n; oJ Y{.k).s>.D,.D,.@[.#[.$[.%[.< .l@.l@.$$.S+.U@.S+.S+.>+.m@.(@.aK ]#.0#.]#.tf ]#.0#.4G &[.]#.#B aK m@.p@.$$.U@.l@.l@.fw < .>c *[.7].eE cw tv C<.yz ]n 0K =[.-[.;[.>[.A:.H<.0:.$:.,[.'[.)[.![.8~. V@ k) $ }* S$ *' # o! ;b [* & . Q$ $= > . $ H= N$ N$ Q$ ] N$ | . Z, P$ $ ; & ; Q$ 1* N$ o! Z3 > & ; V@ S$ 4 ~ ~ Z! | ~ | 05 U@ & Ez & [ 2 H= ] r2 S$ [ } 2] ~ ( 'W Z! 2 X@ | ( } /& /& : ## / < } d d d 2 } ## 6 x0 ( V~ 3* ,# 6 d b a M' } 7 k e 6 d *= 6 0 0 a n K/ c ~# 0- L= L= h r Y$ ,> 1; ;= % #| m 0- t ,> o/ q L= p q ;= t :# G w t :# 2; E 1Z #| '&./U /U a7 /U a7 z '&.T^ '&.P%.KW #= T^ ,/. Z !,.O@ c- .@.M n*.m;. V .@..@.{[.3# )^..@.PT v@. ` I-.(#.;*.-*.B$.(U -*.iI 5 .][.(U (=.^[.Z .+Z ^P )Q )Q RT +Z G&.Z .e-.Z .0$.+Z R%.R%./[.q*.^,.$).7` CX hT 4..5>.D` ]&.+` 4..o;.9&.` .z+.#@....` .Y$.B .z+.z@.S%.)'.6Z U,.t'.[=.vZ $ .N#.K&.w*.%Z s;.#..++.gV xZ #..*` %.8Z %+.%+.8Z & .%+.* .]*.%+.f$.qU 0..F .RE =V =V =V d` HS IS ; .oT IX HS HS Ix Vw HS }T [W HR HR [W Vw Ix vO YL uP SP ]! 9~ 8~ 0~ |= 9~ z! { =] ^! (^ y' a! S. M! { S. J. H# S. J. J. O. S. S. F# O. S. F# F# Y. - S. W. T. - R; Y. R. X. ~<.W. 5_._[.R/.U. I# .+ $~.R/.R<.R/.U(.T<.:[.U(.U(.S<.T<.f/.](.<[.[[.6_.X(.n<.X(.d].d].d].}[.X(.X(.Q:.Q:.n<.Y(.G=.0_._^.`(.`(._^.P_.^<.P_.P_.W<.P_.p{.p{.2!._/.2!._/.e].l/._].e$ t{.Y<.t{.L- ^].@* d$ P{ R* R* @* !@ <@ 4@ W% @* R* d$ }- }@ W% 2@ y] |@ |[.1[.E,.T{.2[.`^.|(.V].|^ n+ J* !w =; bz l; V; o+ qt Xi Yi UN aO .B Xi 4I -P $q bz E,.s>.[<.b,.3[.4[.e,.5[.l@.]@.6[.>+.>+.(@.c#.;r KB 4G r$.0#.r$._ .#B 7[._ .4G Vk _ .SZ _ .4G tf tf >+.(@.U@.0k U@./F zC j^.8[.=l [x |j 9[..<.bw |j 0[.a[.b[.b[.0:.#<.#<.0:.#<.$<.c[.d[.#t f f[.Oc 5# }; H@ H$ O@ M G z N= I F= G p z m ^# G `$ ", +"*) 2^ BN BN L$ I/ R@ I/ I/ J$ J$ ]& I/ I/ 0' #S R@ + ]& I/ = M$ + ]& $ + ]& $ = ]& + ]& L$ $ $ 0' ]& > # 1) . V@ = k) + + . 5_ # U@ - . + > . S$ ] ; ; > P$ $ & ] S$ %= > # Z3 # . S$ & ] ] . . > > o! ^ ; U@ H= ~ R$ S$ ~ U$ ; { 1 | & N$ { { X@ / X@ X@ 1 1 ;# ^ ( Z! 1 [ Y@ ( D, 1 Y> $# 7 Y> ( ( => i /& ( ( &# a k 1 0 Y> 7 9 b } 6 ~# V~ k tA ~# 0 n a 7 s> {# ~# ~# ,# g e h `$ {# n _# L= L= Y$ 4* q b' ^# s> ^# p -) `$ `$ t D y 1; m ;) /# F= G 2; {& B F= a7 .5 . Z .@.B).o*.(#.-*.0].aV B..p*.A: iU *I Z..J-..Z k#.BX Z .)Q 3d )Q +Z G&.Z .R%.Z .R%.-X sZ G&.G&.G&.R%._=.G&.'*.7` hT CX hT ~&..` G>.9&.CX 9&.y@.` .` .f<.l#....[#.z@.)$.z@.T%.U,.T,.T,.U,.t=.#-.M#.c&.K&.*@.#..1+.*@.6@.=@.E .1%.m(.++.& .%+.* .8Z 8Z %+.p#.d .E .E..|#.zY fS oT 4z oT oT 0..RP HS GR HS }T qU =V =V pT =V HS IS nV IS IS HR IR uP nK *T *T nK -J -J 1z -J 1z -J LJ }P LJ :L ^H BI BI _H fJ `L zn Lk JG XA XA Lk XA XA zB Ay oj ul [v 8 J0 >8 J0 Q5 Pk Q5 n8 a3 n8 n8 a3 a3 Q5 n8 n8 Q5 ): 25 ,/ I^ E1 g9 R4 ]: ,/ m{ ,/ 0! 9] 9~ 0~ ,/ 9] 0~ 0~ ]! 5% P] 9~ 0~ 9~ ]! C> (^ O. O. S. c, S. L. S. O. O. D> S. O. S. S. J. S. S. H# Q. Y. T. ~<.T. R. Q. Y. Y. W. i<.Y. i[.j[.r& J# ~<.#~.#~.#~./:.#~.R/.$~.#~.~/.j<.k[.:[.s(.^:.l[.k:.m[.U^.n<.n[.X(.X(.n<.X(.Y(.Q:.u(.o[.l:.~].P_.G=.p<._^.n{.P_.P_.W<.x^.^<.W<._^.2!.2!.p{.m:.2!._/.4'._/._/./].t{.n/.@* m:.m:.((./].n, @> ((.W% e$ R* J- @> d$ n, _].R* }@ W% ((.p[.p[.q[.r[.v{.<].s[.t[.u[.+[.3(.!- FO RS .B @) j_.r+ aO .B Xi 3U 1K Xi V; u+ x+ m9 Ib cz h_.m_.q>.v[.w[.w/.F;.Q=.l+.;r l+.(y o@.r$.4G 4G 4G 4G _ .X+.y#./@._ .=f /@.mk =f /@./@._ .mk SZ X+.l+.tf y<.6[.S+.p@.]@.x[.,_.y[..<.vv 9[.z[.z[.X'.A[.n0 B[.H<.7<.G<.C[.0:.8<.D[.,[.E[.F[.#t ", +";b *) 2! L$ I/ I/ ]^ 0' <{ J$ 2^ L$ R@ G= ]& J$ # $ + ]& 0' Z, # K$ ]& L$ ), + # # ]& k) * # $ ' > # & ]& = $= ]& L$ V@ > $ # > U@ > $ - - 2) > U@ =' ]& > = + $ ; & & ; ! > ; R$ > ] ~ ; X@ | > ; N$ ~ & o! > | U@ Z! N$ Z! 2 [ | ; | | { 2 | ) /& ~ N$ ) N$ 1 ) 'W { 2 5 6 U- J] 1 $# d 6- { d == 1 $# 5 j 6 4 6- 6 } e 7 q> ,# /& 6 a a k L= g h {# j 3] n h e 6 n Y$ c % }& s> h c n |& m p #| ^# p b' /# /# Y$ m 4* ^# ^# :# % ,> D /# <, #] /U G .I-.4>.t%.{[.4>.I-.B$.oY t%.K{.oY -*.BX SO (=.J[.(U oY ,*._M #N )Q yS Z .RT G&.G&.+Z Z .bV G&.7).e-.G&.q*.0$.0&.^,.4...` E` $N 4..9&.z+.a&.4..4..]&.Y$.:=.K[.EX 4Z 5Z c&.!$.!$.U,.U,.7>.m!.9).K&.x%.T%.#-.C .a .1%.L[.*@.++.M[.#..#..++.8Z b].& .& .%+.d .%+.* .* .8Z b` RE pW AM P/.GR AM N[.IS oT oT oT AM OV IX L` }T HR =V IS Vw Wq Vw JJ YL pT YL [P nK vO KH }P 8 Pk Z< Pk J0 &^ Z< Z< a3 Q5 Q5 Z< Q5 ed Rd d9 Sd m{ b3 E1 R5 R4 ,/ 0! A> m{ m{ 0~ 0~ /] (/ 0~ ]! ]! ]! /] 0~ ]! 0~ 8~ 0~ ]! M! ]' S. O. J. S. O. S. S. O. O. Z. O. Q. R. O. S. Q. Y. Q. O. 3= S. T. Y. X. p- P[.Q[.M:.R[.X. Z. ~<.U(.U(.j<.U(.S[.l<.j<.#~.h).h).j<.U(.](.U(.8_.](.k:.N_.u(.d].n<.n[.X(.X(.X(.0_.u(.T[.0_.9_.9_._^.P_.`(.`(.`(.`(.`(.`(._^.P_.X<.P_._/._/.2!.n/._/.p{.^<.l/.l/.U[.U/.m:._].%p n/.@* n, _(.v= W% ${ e$ e$ :@ ]; d$ e$ V[.n, [@ f$ 3' 2@ W[.X[.Y[.T{.Y^.Z[.`[. }.G,.t/.6> .}.+}.AU n+ m+ 8> bO UN bO ,T .B cz Nn w+ N> x+ o+ v+ t/.E!.@}.#}.$}.w[.%}.&}.&[.4G 4G o@.SZ _ .Vk _ .Q . d *}.=}.} .NO -}.=}. d W` W` kA W` X+.mk =f _ .4G 0#.4G &[.m@.c#.A#.;}.,_.>}.9[.bw ,}.uv ^n hA '}.)}.!}.iP ~}.!}.{}.H<.b[.8<.0:.0<.J<.lu [q #t 5r &o .wv xv QD LT Zo UI `o ^}./}.)& @. S S I A Q@ w #= G N N C Z$ ^# % p c{ ", +"(}.J$ *) BN #S BN BN BN #S J$ J$ I/ I/ 0' I/ 0' 0' + * I/ I/ = # T@ ]& k3 + + ]& + # + # # ' ' S$ ' ' . # + 2) > . #^ 2) S$ ; U@ > > > $ . ] [* $ . & & S$ }* N$ H= ; T- ~ P$ ; U@ H= | . S$ ; H= N$ ; { X@ ~ 05 > S$ ~ ^ ; ~ U@ R$ [ H= N$ ^ U@ ] 2 J) <& | S$ ~ [ ~ 2 [ Y@ } ( 7 5 2 Y@ N' Y> } 5 7 7 D, 2 3] [ 7- V~ 3* k !# &# d k 6 d ,# ,# 8 Y> ,# 0 L= e n n ]# r r L= 2, h ;= h % {# p o K/ Y$ b' 4* 4* 1; 4* ^# w 1; @= 6* ,> w u /# p :# w t a7 /U F= /# E '&./# /U /U a7 A$.a7 AR z _}.JW 1& '&.A$.O@ ;O M m;..@.T^ p=.:}._+.(#.4>.AX 4>.(#.4>.SO :#.C).x .-*.iU oY oY *I p*.BX p*.(=.)Q BX #N RT R%.RT RT Z .G&.Z .+Z +Z 9X '*.e-.1@.$).3@.#).{&.E` E` hT AS AS .` Y!.+` <}.4..4Z y@.z+.3..`X [#.G` c&.M/.7>.a$.2_.U,.7>.7>.U,.I&.t'.[=.}#.*@.a .#..a .*` a .d&.M[.++.8Z d&.& .%+.* .E..yZ C@.%+.8Z %+.RP zY b` fS J` &..; .=V jV HR AM }T IX =V =V HR :P HX =V HR Wq IS IS pT [W KH vO PQ YL OQ ^H LJ {K 5M {K LJ LJ pK .G 8 }c Pk >8 Fb n8 Q5 a3 &^ Z< n8 Z< a3 n8 a3 u[ ;0 z_ ): n8 e9 K0 O] 0! ]: 0! m{ ,/ m{ ]: ') O; ]! 9~ 9~ 0~ 0~ |= C> 0~ 0~ 0~ q~ ]! ]! 5% M! O. S. D> O. O. O. O. O. O. S. O. J. Q. S. i' Q. Q. R. Q. Y. Y. Z. O. Z. i<.P[.i<.~<.J# X. S. R[.U(.[}.U(.#~.j<.:[.:[.U(.j<.}}.S<.i[.j<.N_.s(.](.T<.(:.8_.X(.n<.|}.n<.X(.U^.l:.G=.n<.1}.0_.2}.a_.P_.P_.`(.`(.`(.P_.P_.W<._^.`(.Y<.W<.R:.p{.4'.l/._/.n/.m:._/.n/.e$ l/.l/.4'.t{.t{.%p x,.e$ |- @* :@ 1- 3}.1- e$ _].2@ e$ 4@ 6J <@ |@ m<.4}.5}.o:.z^.6}.7}.8}.$_. (.t<.9}.0}.j_.!w Xi a> n}.o}.;[.o}.0:.b[.!}.8<.E/.&<.p}.;l lu fk To 6r 6r q}.vX F%.r}.7Q ,l @O +O s}.. .s@.t}.A@ E@ P J z Q@ x /# w C b' m % Z$ ^# D ,> `$ ", +"<{ J$ ], J$ BN L$ L$ 2^ #S I/ 2^ BN #S p9 I/ 0' 0' 0' 1) # + = + = 1) + ]& Z, # = + . + 0' . + + [* $= V@ L$ + V@ [* S$ . ]& L$ + = . > > $= & . (& U$ U@ > 0' ; Q$ | ; ' *' $ U@ P$ H= Z! ; S$ . - { 05 Q$ ; N$ 5- ! [ N$ ~ |, N$ 5- W@ [ X@ R$ | H= ~ | { N$ ^ [ xS ) | 2 | 2 'W *# X@ / Z! ( [ d [ < 3* d $# ( ,# d < 7 8 } /& 6 7 a 0 i tA 7 [{ 3* 0 ,# a K/ 6 C; 0 c s> {# n h s> c Y$ ~# j `$ |& ,> n Y$ h `$ q b' p 2, s> ;) ,> t C 4* /# <, G 4* C F @= B F= F= m a7 {& E /U F= z z a7 C` F= Z 8* $T A$. Z c- c- c- =X .@. V V 2Z m;..@.8* 4>.4>..).4>.SO SO A: *I iU A: oY oY L (U (U ,*.k#.yS +-.^P RT Z .+Z +Z RT +Z Z .+Z Z .R%.G&.{&.R%.'*.3@.CX {&.7` E` hT AS hT E` a&.9&.L-.E` ` .pY @@.4Z l#.` .|Y $ .)'.!$.t'.7>.Y;.Y;.M-.n!.0 .t=.[=..#./&.a .*` #..%Z 6@.*` 1+.a .*` {$.* .yZ %+.& .d .d .8Z d .* ..Y O/.oT F+.b` AM }T RP NV u}.oT oT RW oT oT HS Wq uP uP uP HR pT Vw Ix Vw Ix nK vO bJ hJ GH 1z wO wO v}.LJ .G -J TE CM HH 8 Pk >/ Fb Ti >/ >8 a3 n8 a3 Fb Ti a3 dd O4 O4 n8 Q5 o8 Q4 ]: m{ A_ m{ 0! 0! 0! L} ,/ 0! 9] 0~ 0~ ]! 0~ q~ 9~ 9~ ]! 0~ O; z! 9~ C> O; E# O. F# D> J. O. O. F# O. J. P. J. S. O. J. Q. R. Y. R. Y. Q. w}.X. Y. Z. p- X. X. Q. i<.h<.Q. r& /<.[}.j<.#~.N:.#~.N:.U(.U(.S<.j:.N:.x}.y}.6_.O:.l<.^(.z}.m[.X(.X(.X(.U^.X(.n[.9_.n<.X(.0_.o[.G=.`(.`(.A}.P_.X<._^.`(._^.x^.`(._/.W<.^<._/.p{._/.4'.l/._/.n/.4'.4'.m:.e].m:._]._].m:.e$ J- d$ d$ 4@ d$ m:.B}.B}.[@ /; d$ b$ J- P{ P{ AL C}.D}.E}.F}.G}.H}.k_.3(.|^ l+ w% bz I}.q+ BD 3U ,T nt cM x+ Ao Ao K}.L}.q>.D,.[<.C,.M}.x).-}.R..f}.-U .S .S .S ^+.+z hY j..j..vX N}.vX RX kZ O}.RX {r ~P .S f}.dP d d /@.|&.Vk P}.tf Q}.R}.!_.S}.B:.|j ^n hA T}.~}.vC a> vC ^l ^l U}.H<.;[.;[.7<.V}.W}.d[.&o & H= U@ S$ P$ N$ N$ Q$ N$ ; Q$ %= ^& - ] P$ X@ X@ ; N$ R$ =' = ; N$ T- | ) P$ | [ - . ~ | ~ N$ H= ~ 7- N$ [ H= ] [ 2 Z! | 7- { ~ 4 N$ < ## / ( 6 d D, +# 6 d $# ## 4 ## 6 Y> 3] U- d ,# a a 7 e 0 0 Y> ,# 6! ~# c tA 7 j ~# 0 n 0- L= }& s> {# _# h s> h 0 ,> p K/ L= p p 4* p t ,> 4* @= w )> b' t ^# D 1; #] #] '> #] /U #] w 2; a7 '&.z F= F= H[.AR A$.'&. ).KW a7 H[.T^ JW .@.A T^ '&.2Z KW .@.I[..@..@.x .x .z .t%.iU '(.aV aV (U *I oY B$.I#.oY *I +-.y+.(U #N #N RT +Z R%.+Z +Z RT G&.+Z G&.0$.G&.w@.1@.3@.'*.4..2@./;.+@.E` hT hT hT o;.a&.f-.a&.E` z+.4Z |Y 4Z `X 4Z B .z@.<=.9).T,.7>.Y;.7>.c&.N#.I&.0>.A@.[=.C+._W r;._W %Z a .&` nW a .1+.8Z 8Z d .8Z 8Z yZ %+.d .8Z MV pU OV mV O/.N[.GR AM AM MQ AM AM AM oT AM uP Wq Vw HS GR Vw HR dJ Ix uP Vw

8 'k >8 t[ oj a3 >8 _u a3 &^ Z< a3 b3 Q5 J].u[ Q5 b3 z_ u[ A_ E1 u[ 0! ,/ m{ m{ 0! 0! m{ m{ <> ]! ]! 9] 0~ 8~ ]! 0~ 0~ 6% 6% M! 0~ 8~ E# O. J. p& O. J. O. S. O. O. J. L. J. i' R. L. #|.L. R. Y. Q. R. - Q[.i' - X. X. d, R. i[./<.P[.j[.i[.U(.U(.N:.j<.#~.#~.U(./<.U(.9,.$|.N:.O:.%|.V<.k:.m[.&|.n[.X(.n<.n<.n<.n<.0_.~].~].p<.p<.0_.9_.*|.0_.`(.P_.P_.`(.=|.(/.X<.-|.;|._/.2!._/.2!.l/.l/.p{.t{.4'.4'.4'.b$ W/.m:._].e$ _].x,.d$ 2@ 1- P{ ${ |@ b$ J- W% i$ R* S* f$ L- >|.,|.]).'|.Z/.)|.!|.E(.|^ l; C) M& (: E^.;$ qN :S e..(V FU ,T ~|.{|.L{ aO Nn 8> cz Ib 4c ]|.E,.k).m_.*_.p>.^|.==. 4* G ;) n `$ -= ", +"I/.jP J$ BN 9| BN BN R@ I/ 0' I/ ]& J$ J$ L$ L$ 0' ]& # 1) # + J$ ]& # # ]& * Z, #^ = + . [* $= Q$ * & > 0' Gc & + . ' $= ]& [* ; A; }, & > 05 ; N$ . # o! N$ 5- Q$ $ . $ ; (& - Q$ 5- 8- ] =' N$ U$ =' Q$ & ; - > S$ ~ N$ 7- ~ ; ] | ' & | ; X@ 8- 2 ; 2 } | ] ## | X@ 5 { D, 2 [ 6 5 $# &# D, j $# /& +# 7- { { ,# 6 ,# 6 7 ,# i 0 Y> a 0 3] 0 $# ,# L= ~# 3* k e c L= Y$ X$ ~# c L= ~# Y$ p 2, h n [& L= _# h h h b' Y$ t 1; #| /# w *].`$ b' b' y w s> )> w w z #] F= w F= A$.z /# z 6|.AR ).'&.z 1& 8* T^ 1& c- T^ Z 2Z n! P%. V .@.p=. V 4>..@.I-.4>.t%.7|.B).aV B..SO iU :#.B$.aV *I (U yS +).*I iU +-.+Z c-.^!.+Z Z .)Q d-.RT G&.R%.9X 9X |@.R%.7).3@.1@.#).'*.4..CX hT hT .` o;.@@.H>.9&.|Y z+.pY ` .`X [#.z+.5Z r=.Z!.v%.z@.8>.8|.t=.N#..#.v%.t=.A@.9|.%Z %Z 1+.%Z #..&` ^W _W 6@.d&.E@.& .yZ 8Z 8Z d .*Z )X * .F+.FS )S 4z 0|.OV OV RP GR NV :P AM MQ MQ :P Wq Ix uP uP Vw Ix Wq Ix HR PQ uP QK NQ nK ]u wO a|.gJ ZL 2P IH -J -J ^H eC (H / Pk >8 >8 >8 Q5 a3 Q5 a3 Z< a3 a3 Z< a3 P3 u[ Q4 J_.b3 E1 0! m{ ,/ ') ') 0! 0! <> q~ 0~ K~ ]! ]! 0~ ]! 0~ 8~ O; `= D> O; n& b~ b|.F# O. a! F# x' S. O. O. O. J. J. R. J. S. Q. Q. Q. Y. R. Y. ~<.Q. U. X. U. T. ~<.M:.9,.i<.c|.l[.#~.j<.~/.j<.j<.j<.[}.d|.j<.9,.d|.j<.e|.f|.<[.g|.X(.e|.n<.d].X(.<[.X(.o[.0_.9_.G=.h|.Y(.=|.p<.]<.0_.=|.p<.G=.P_.X<.`(.W<.P].P_.Y<.p{.^<.4'.l/.%p ^<.i|.e$ 4'._].|- n/.%p 2'.@* v!._].n, [@ 2@ f$ }@ 6@ 1- ((.W% |@ /; X, |@ L- j|.k|.l|.m|.:<.#'.n|.|^ o|.l; n+ h+ l; G,.s{ g+ f= p|.q|.r|.h0 s|.7-.t|.u|.v|.w|.Xi NH [).#q x|.@'.8'.y|.p>.z|.A|.: ./|.j%.V&.: .N}.N}.Rh (|.(|.Rh (|.N}.Rh Rh (|.B|.C|.D|.Sn XW N}.RX +z Wk f}.-}.@H /@./@.P}.E|.xN D<.C<.|j vv hA F|.G|./- O+ a> vC ^l n}.iP {}.#f !}.H|.#<.^_.ku rv F/.I|.d[.}q J|.I|.lu V}.iA dw HT ND JL SB ;o 5q i).!> 2# }; L A I z S z ^# B b' /# w ^# h r h ", +"]& jP L$ G= 9| ]^ 0' R@ G= 0' I/ BN R@ BN jP R@ ]& = + + K$ + I/ ]& # + L$ $ + $ = R@ ]& k) # + # + > # . + = + # + & > $ ' U@ U@ S$ . . A; . U@ > . .# ' | Q$ . - . - Q$ & U@ | H= ; %= N$ ] | ; Q$ ~ U@ H= ; | ~ | ] H= | { X@ | ) { ) X@ { ; ~ /& ) 05 { { { { 8- *# 2 < $# / 4 } { Y@ &# } Y> < J= ( ,# 0 a' ,# 6 6 k a ,# ,# ,# a d => 9 {# 0 6 0 2* h 0 L= ~# q> n h h |& r r ]# o {# 0- ]# c{ ~# Z$ 1; 1; q r s> h :# F= q /# @= :# $] p t C m [# G E {& z F= E B 2; z C).4>.B$.B$.I-.7|.iU -*.iU A: A: (U y+.+-.aV yS +Z )Q Z .RT RT )Q R%.)Q Z .+Z G&.sZ '*.+Z !&.G&.D` +@.0&.E` E` .` .` $N H>.:=.a&.a&.o;.4Z f<.` .` .D..<=.z@.6Z K|.N#.N#.M#.7>.n!.#-.#-.!$.t=.#-.|+.1%.a .1+.a .%Z a .oW _W E .& . %.xZ d .%+.%+.d .E..& .yZ 8Z .Y RP MQ |#.$..GR AM AM GR RP AM HS AM uP Wq HS Vw HS Vw IS Wq uP :P vO 0Z

/ >8 rg >/ >8 &^ a3 >/ >8 a3 Z< Q5 Z< Z< a3 Fb a3 Q5 Q5 S5 Q4 R4 R5 Q( 0! m{ m{ ') L} ') L} (/ )) ]! <> 0~ ]! k2 q~ q~ 0~ O; {~ |= H. 6% |= e/.a! J. S. 2= O. p& S. L. O. q& J. J. S. J. O. R. Y. - Y. R. X. ; R. L|.J# ~<.J# P[.N:.M:.M|.i[.U(.#~.U(.:[.N|.j:.N:.k<.x}.O|.i[.j<.P|.n[.e|.](.n<.n<.n<.n<.n[.n<.n<.Q|.J}.n<.*|.}[.P_.p<.p<.A}.S:._^._^.X<.X<.X<.X<.X<.P_.P_.`(._/._/._/._/.p{.Y<.l/.P{ 4'.%p ${ m:.n, W% /; 4' _].}@ d$ [@ 4@ _@ 2@ 2@ d$ |@ R|.<: X, :@ GV S|.T|.U|._<.V|.W|.y{.@) l; l+ m+ m+ l; t/.|^ 3(.X|.Y|.Z|.`|. 1..1.6!.H}.p_.;;.+1.Yi 4I Xr ^J @1.T{.k).y|.n_.7'.R$.K=.(|.t` K=.K=.Rh Rh +I +I +I #1.#1.+I +I #1.#1.+I $1.%1.B|.(|.N}.vX kZ RX 6f .S d /@.e}.X+.&1.*1.3<.C<.Y'.^n l}.T}..N Q& `U P+ a> a> vC o}.iP #f iP o}.b[.b[.=1.rv ku E[.-1.9w E/.;1.~s ;:.>1.tv BK It 2j ik Zo ke ,1.'1.I@ J S {& z K I N G D :# C G t _# Z$ r ", +"J$ jP p9 jP G= J$ L$ I/ L$ #S <{ BN I/ 5_ 5_ I/ G= J$ L$ 5_ =[ % 5_ I/ 5_ 1) 5_ ]& + = = + # . . % . X! V@ > = 0' V@ + > S$ . $ . > > V@ [* V@ ]& .( > & H= [* . $ & > H= Q$ . V@ ^ Q$ ; . =' & & & ; ; ] U@ N$ ~ ; Q$ ] | ~ X@ W@ Q$ X@ Z@ 2 ; 7- 2 4 [ { ~;.; | ( . X@ Y@ [ /& [ | ( < [ Y> q> a 3* 6 d d /& 7 6 { ## ># )1.a k q> 7 d 6! 7 6 0 e b !# M' g a 6! a ># L= ]# n L= h n ~# e {# 0 n c ]# p V| ,> ,> m 2, n^ q #] 4* % :# 4* t #] 4* F m $S F /U G /U {& F= G B z a7 z '&.a7 1& T^ 8* n! c- $T #= a7 ,/.c- V !1.c- V c- .@.(#.0S z .J{.I-..).-*.AX 4>.aV -*.I#.A: I#.-*.BX oY (U yS Z .)Q Z .+Z +Z +Z Z .RT +Z +Z !&.H&.CX +@.G&./!.#)..` 0&.n,.CX AS CX 0X AS o;.3..a&.a&.4..:+.D..7 .I:.!*.)$.0 .!*.S%.N#.S%.T%.#-.0 ..#.N#.t*..#.W*.%-._W #..a .1+./&.^W ^W #..d&.d .8Z * .8Z %+.%+.gV d .-` & .:W -` RP E@.AM oT AM AM RP RP RP AM AM AM GR RP AM MQ aN uP Wq HR IS PQ IR IR #w uP NQ

/ >/ Fb >/ >8 a3 &^ Q5 Q5 &^ a3 Z< Z< Q5 a3 h( I^ Q4 5< h( m{ ') ') 0! I^ ') ,/ (/ q~ q~ ~1.K~ q~ #, q~ 0~ ]! |= H. )) 5% G. M. z! c, c, O. S. J. J. S. J. L. O. L. O. Q. L. O. Q[.R. - P[.{1.P[.i<.X. - i<.X. i<.X. j[.j<.X. ~<.j<.i[.j<.]1.:[.^1.c|.j<.]1.y}.^1.^:.l[.}}.n[./1.1}.n<.V<.n[.n<.<[.n<.n<.<[.X(.u(.(1.h|.=|.=|.X<.X<.G=.`(.p[.X<.X<.P_.W<.4'.Y<.P].W<.2!.4'.P{ l/._1.2@ 4'._/.'~ v= e$ J- J- t{.b$ J- /].4@ l$ 9@ 2@ 4@ _].d$ ((.d$ |- :1.!@ $z <1.[1._<.}1.V|.M'.U{.;$ q+ m+ HB n+ n+ `/ z- h+ |1.11.21.31.41.51.61.h+ E(.=, X:.#x NH uK CL 71.81.k).1^.n_.H^.&=.+I K=.91.01.{B a1.TB #1.b1.01.bc #1.c1.c1.Pf d1.TB +I %1./s (|.(|.N}.[V u .u .RX .S R.. d xc e1.1<.!_.y:.C<.^n %t f1.O+ Q& n}./- P+ E% vC g1.^l {}.h1.iP ;[.;[.8<.D[.D[.D[.,[.=1.-1.0w i1.1|.y_.ou Yo Kj KC SB qi j1.WI x! B$ K@ H$ N 1& w N w N G F= ^# w t n^ _# ^# ", +"2^ <{ l) R@ L$ BN G= I/ I/ ]^ *) #S I/ I/ L$ BN I/ L$ L$ I/ ]& + + 0' = V@ % ]& ]& # L$ ;b ]& . + + $ + Z, ]& + |* + L$ ]& # = = & > . + V@ . o! $ $= > $ - > 2) k) $= + ; . . ; & > R$ Q$ & > Q$ & ~ P$ o! ' ] | ~ ) ] N$ ; > | 2 | N$ N$ ; ~ | X@ | | | N$ ) N$ ; N$ ## 2 ~ ; 2 } { { [ [ /& $# &# q> D, 5 d J] 6 6 5 d [{ 6 N' } ,# a d Y> 3* ,# d ,# g ~# 0 W$ b ~# 0- Y$ r L= p o Y$ h c e h 0 Y$ n Q(.Y$ Y$ Y$ L= q ,> n^ ;) #] Y$ q 4* V| p :# % #] {& w G /# 1; :# E z /# /U /U 2; a7 L/.1& 1& AR JW 8$.2Z z $T JW Z P%. V k1.4>.x+. V V .).QT J{..@.4>.J{.B$.I-.I-.>*.B$.aV E>.aV aV l1.MW p*.+-.RT RT lP )Q R,.)Q +Z )Q +Z )Q G&.+Z 9X {&.G&.7).'*.CX /!.{&.CX hT hT hT mL CX 9&.]&.E` E` ]&.`X 7 .K[.`X <=.S%.S%.[#.m1.S%.v*.0 .N#.N#.N#.I&.n!.b$.|=.d$.a .1+.C+.%Z %Z oW #..xZ E .yZ & .{$.)X n1.8Z 8Z -` d .9Z .Y 4z RP RE oT GR oT AM AM RP AM GR MQ GR RP AM oT :P Vw uP pT pT Wq nK Wq ;H UF YL

/ >8 J0 }c }c >8 t[ Z< >8 >8 a3 Z< Q5 Z< Q5 Z< a3 n8 ): Z< Z< ]1 R5 Q4 h( E1 7~ L} ,/ m{ 7~ ') m{ <> K~ ]! a, <> K~ ]! q~ C> q~ 8~ n& c, M. H. {' a! J. S. L. O. L. J. P. J. J. L. S. ; ; J. d, p1.Z. X. ~<.i<.X. i<.Z. d, r& q1./<.M|.j<.~<.L|.j[.i[.i[.j:.i[.]1.l<.l[.l<./:.]1.l[.O:.%|.X(.n[.<[.n[.V<.<[.n[.n[.n[.l:.n[.Y(.0_.G=.p<.=|.{).P_.X<.r1.*|.X<.P_.P].P_.^<.l/.l/.W<.Y<.l/.l/.l/._/.^<.s1.m:.m:.%p ::.J- @* %p W% }@ b$ |- J- |- b$ t{.S* 2@ X% `% B}.2@ 9@ x= t1.u1.v1.w1.x1.h_.l).t/.;$ q+ 1L ({ h+ m+ A- t+ bM bM bM %$ -%.~` .y1.z1.H;.s&.01.01.}k 01.Pf A1.B1.}k C1.D1.E1.E1.F1.G1.E1.H1.D1.A1.H1.I1.+I Yd Rh B|.[V J1.+y +z } .@H mk K1.8[.!_.j}.Y'.^n L1.M1.Kb /- vC vC a> vC ^l o}.Kb Kd $) Zi /- ^l !}.;[.G<.8<.$<.$<.^_.E/.ku F/.;l N1.Xl #:.]s *t kk `S bU O1.!. L@ H Q@ {& A A )> /# t D m m `$ q m t ", +"2^ 2^ J$ R@ R@ R@ BN 0' I/ G= BN I/ ]& ]& 0' L$ I/ I/ 0' I/ [n # * 0' 0' # # + J$ =[ 5_ ]& # R@ + ]& = + = . 0' V@ V@ ]& ]& > $ + > S$ ' ' - & ' $= - S$ |* & %= |* S$ U@ & S$ . U@ %= ; Q$ & ] Q$ %= & | ; - & Z! | > Q$ R$ { P$ Q$ & X@ 8- & W@ X@ ; [ W@ Z! { | > ~ { 2 J) [ 2 4 6 X@ [ { < { ( : $# V~ < d J] ( ( ( 7 1 6 6 c5 &# a &# 2* ># : ,# {# 5 0 ~# 6 c5 ,# a W$ L= ,# c 0- ~# _# Y$ L= r [& ;= o ~# n^ ]# ,! L= 2, d<.|& ,> q Y$ v /# /# 4* D w t G /# :# 1Z F= C` E .4>.o*.AX AX :#.(U -*.iU iU A: A: yS 3d (U (=.+-.)Q Z .RT Z .Z .Z .^P Z .RT RT Z .9X +@.3@.Z .w@.+@.hT 0&.E` q*.CX AS hT CX E` o;.4..4..4Z pY |Y y@.!*.<=.r*.$ .<+.z@.$ .N#.0 .0 .0 .N#.#-.@..V*.b$._W #..#..w'._W %Z oW _W a .*` E .yZ @+.& .8Z * .& .d .]*.-` fS zY )S D@.XL AM RP RP :P uP oT RP zM AM GR HR HR :P GR IS uP uP QK nK Ix NQ uO QK JJ JJ GH eC Pw 1z 1z RA -J 1z IH IH .G .G 1z / Z< Z< Pk >/ &^ Ti Z< a3 a3 Z< Z< Q( Z< Z< t^ a3 O~.L} S5 p~ ') ') ') 0! 0! 0! 0! K~ <> 0~ q~ q~ 0~ C> P; C> 0~ G. O; 6% 6% c, J. J. O. F# J. L. J. J. J. J. J. L. L. R. L. L. ; Q. Y. i<.q1.X. P[.Q1.3= i<.i<./<.Q1.M:.9,.Q[.^1.O|.j<.j<.U(.l<.:[.x}.7_.l<.]1.R1.e|.n<.X(.n<.n<.n<.X(.<[.X(.n<.n[.S1.n<.(1.9_.Y(.A}.*|.*|.A}.P_.S:.3>.P].T1.P_.X<.W<.l/.-|.P_.U1.Y<._/._/._/.l/.l/._].t{./].U/.|- _{.V1.'~ P{ i|.d$ e$ n, 2@ |@ X% b$ |@ 2@ X% d$ j$ d$ -+ W1.X1.w1.x{.Y1.z!.3(.q+ BD 1L ]G q+ m+ l+ X:.Z1.xT `1. 2..2.+2.n` |K bO bO ^R sQ DU ^R _i tQ @2.6{.#2.$2.%2.&2.*2.G1.F1.F1.F1.F1.F1.=2.F1.F1.-2.-2.;2.>2.=2.G1.,2.D1.G1.'2.)2.!2.#1.Rh (|.[V ~2.vX ^+.f}.{2. d ]2.b(.D<.4<.Y'.hA -[.^2.g1./- P+ P+ n}.iP H<.8<./2.P+ Fc Zi h1.n}.<|.pM !}.$:.%:.^_.O(.J|.E[.I|.p}.*o (2.W}.Ht KC _2.^T :2.<2.=. G@ I A I z N@ ^# ,> w ^# N ^# :# w ^# ^# ", +"J$ 2^ J$ <{ R@ ]& BN R@ ]& L$ BN I/ <{ p9 0' I/ I/ I/ BN I/ 0' + + # 0' 5_ # [n ]& ]& }, # ]& J$ V@ S$ ' V@ $ & [* $ V@ # # ]& # ]& . # . & [* > . . # # 2) ; U@ > & U@ X@ & %= U@ H= - . U@ ] H= 2] > |* ; [* & | & ; . U$ R$ ^ $ H= b{ X@ ; ] X@ N$ { ) | X@ { ; X@ ## ~ | [ ~ 2 2 ) 2 ( 1 Y@ | [ 1 ,# ( ( 3* 6 V$ d 6 *# : 5 < D, 6 b i d 3* 6! a } 6 a 6 a !# 0 !# K/ !# e K/ 0- c h n {# ,# _# ,# ]# Vj p K/ L= ,> q r p ^# b' 1; w /# `$ m :# Z$ 1Z D :# $S z /# E a7 $S $S ).1; a7 E C` A$.a7 W) E 1& [2.KW c- KW '&.$T T^ V T^ T^ c- 4>..@.c- _+. V V .@.(#.x .AX QT QT (=.I#.-*.iU iU aV oY A: YX }2.F>.^P )Q Z .RT +Z G&.RT )Q +Z G&.+Z 0$.1@.1@.|@.':.$).hT 8).3@..` .` .` CX hT AS 9&.H>.9&.y@.pY 4Z !*.<=.)$.!*.5Z !$.S%.0 .$ .0 .0 .$ .|2.0 .sY )'.#-.v*.%Z *` %Z /&.#.._W cX a .#..% .% .8Z %+.gV 8Z hQ ;` d .8Z -` zY -` &V RP AM RP RP RP pW AM MQ GR AM =V Wq Wq RP AM NQ ;H JJ {K :P bJ bJ bJ JJ YL JJ oK .G IH LJ 1z ]K 1z .G eC IH 1z eC IH /H [H {i Mm Lk Mm zn Lk Lk zn Lk Qd zB Mm }c }c ul >/ }c d/ >/ rg Pk >8 Z< >8 d/ >/ Q5 `~ &^ a3 Z< Q5 J].2| a3 [ a3 a3 ') Q3 O] 0! 0! A> ') A> ') m- K~ q~ q~ <> )) ]! C> C> 8~ q~ G. O; O; 8~ G. 2= 12.J. J. L. L. J. J. O. J. p& q& p1.R. ; J. ; R. Q. ~<.22.i<.i<. - i<.P[.P[.q1.!) P[./<.32.j<.j<.j<.j<.c|.i[.i[.42.y}.]1.l<.y}.n[.e|.n<.X(.n<.n<.n[.n<.n[.n<.n<.52.n[.J}.S1.o[.O_.=|.~].3>.P_.X<.U1.P_.X<.P_.X<.P_.W<._/.Y<.r1.W<._/.p{.62.l/.4'.P{ b$ |- 4'._].d$ b$ V1.<: K- b$ 72.e$ 1- 4@ f$ L- 9@ 8@ X% 1@ 9@ i$ 82.92.o:.02.u[.H}.a2.n+ 1L nS xT 1L }K q+ n+ DU }$.cY b2.]..c2.d2.|K |K aO ,T yT qt aO r0 oS ot L E^.e2.f2.g2.h2.i2.F1.=2.j2.=2.=2.j2.j2.k2.F1.;2.;2.l2.j2.=2.,2.;2.-2.,2.D1.m2.)2.n2.+I Rh Sn o2.vR p2.f}.-}.{2.q2.B/.r2.9[.s2.hA f1.~}.{- S+ /- ^l pM ^l ^l b[.A:.a> Fc #f h1.H<.t2.u2.;[.b[.H<.7<.D[.$<.9w ku I|.v2.A[.W}.2q ]s Lj @K 2` w2.+. J M@ S I N )> I w D p y n^ 1; /# t Y$ ", +"BN BN BN <{ J$ R@ G= BN #S R@ ], jP #S I/ L$ I/ 0' I/ G= I/ I/ 5_ 5_ $ = 0' }, # 0' p9 `Y $ 0' ]& V@ $= V@ . > . (& = + + = $ $= ]& 0' # . . 5_ . V@ |* H= - S$ H= > - Q$ & $= %= > > & S$ ; N$ ; U@ N$ N$ %= & ] | .# S$ ; . > | O$ P$ H= b{ T- %= & ] N$ ;# ~ { N$ U@ S$ N$ /& 2 2 R$ ~ X@ { &# ## d 6 => /& $# *# Y@ 1 [ $# ( ( D, ># 6 6 { J] ) < d N' 7 k 6 ,# a 6 a d Y> 0 6! e n 0 6! a 0 6! !# tA {# c Y$ L= }& n p r ,> ]# ,> ,> V| D Z$ ,> t t p ^# /# q /# w m $S |Z w z F= F= F= '&.F= E z '&./# z z G a7 F= a7 $T ,/.m;.AR Z Z V c- V V .@.c- 4>..@.4>.4>.(#.B..B$.SO :#.B..aV B$.B$.iU ;*.p*.iU BX _#.l1.^P )Q +Z +Z +Z G&.+Z +Z RT +Z RT D` 1@.{&.G&.1@.'*.1@.3@.3@.E` CX .` E` CX .` AS +` E` 9&._U z+. ..z+.#@.^&.l#.z@.<+.M#.p;.$ .}+.M#.):.!$.L#.T%.S%.!$._W %Z C .cX %Z %Z U%.*` a .d$.a .% .%+.& .E@.0` -` F+.%+.O/.O/.b` QW fS oT GR FS AM RP uP GR AM N[.zY uP N[.RP XL dJ bJ nK 'H BH sL BM JJ JJ BM JJ EH *J RA KN IH *J IH RA 1z 1z )H fJ MJ _H :E ]A Qd Qd Mm Mm Lk Mm Lk {i zn zn zn rg ul 03 We ul rg t[ >8 }c >8 Z< Z< t[ t[ &^ &^ `~ Z< &^ &^ Z< o~ a3 a3 Z< b3 (] O] h( ') A> A> ') m- ') m- a, q~ q~ ]! y! q~ n& 5% C> )) 5% 6% 0~ e/.O; n& S. 8% J. O. J. J. J. L. N. p& d, 3= Z. R. L. J. {1. ; - Z. 22.P[.d, {1.i<.3= q1.Q[.<{.i[.i[.x2.p&.i[.9,.^1.j<.x2.c|.y2.]1.R1.]1.y}.2}.n<.n<.X(.z2.Q|.n<.n<.U^.n[.z2.X(.J}.n[.0_.2}.A}.A2.*|.P_.X<.B2.X<.X<.X<.X<.X<.P].X<.s1.P].Y<.4'.l/.P{ 4'.4'.4'.%p 3}.n, d$ d$ 3}.P{ d$ C2.[@ e$ b$ b$ 8@ 8@ |@ f$ 8@ l$ 2@ L- X% D2.E2.p/.F2.k_.<<.j_.q+ JM nS GO q+ .Q ]G k+ ,T Q+.-Y +$ G2.H2.I2.|K 2.R2.S2.T2.R2.D1.U2.'2.V2.6*.B|.o2.FW u .W2.i.. d 'e B/.X2.Y2.z[.Z2.`2.{- o}.S+ S+ R+ Q& E% a> vC /- P+ a> Fc Zi .N I<..N !}.b[.h1.b[.@<.D[.^_. 3.Et }q .3.W}.hk .m *t ;o +3.@3.@. H@ Y I z G ,> I y D Y$ n^ `$ G w p g ", +"L$ R@ L$ p9 <{ J$ jP *) jP ;b BN 9| I/ I/ I/ G= L$ I/ I/ I/ I/ ]& X! % X! I/ + Z, 0' 0' # 1) $ + # # . . # . . Q$ V@ $= = $= . 0' # # L$ + + U@ ; $= $= ; H= $ ; h) H= o! & V@ . . $ > & A; ! $ | | . N$ U$ S$ . > ] ^& H= ] ^ X@ R$ ) ~ N$ ^ ; X@ { ) ] N$ N$ 7- N$ 2 1 X@ [ ## D, } ( ( } ## { 7- } 6 <& [ $# { d *# } 6 7 } ,# < -> k ,# 6 6! ~# a 8 6 ( ~# q> L= J] L= t' a 0- a K= W$ n E, n c{ _# 2, Y$ ,> s> h q p n ,> 2, 6* /# h '> m t :# t D ,> F= :# 2; $S ^# b' F= @= 1Z #] z a7 z '&.P<.n! a7 a7 8$.AR O@ KW Z '&.T^ Z .@.c- HV c- 4>..@.c- .@.v@. Z I-.t%.z .<_. V B$.I-.iI oY *I L iU ;*.A: yS y+.K{.I#.)Q RT +Z +Z Z .RT RT +Z Z .^P +Z R%.G&.G&.G&.7).0$..` '*./!.4..CX E` .` .` AS ZX CX CX ST pY 2Y <=.K[.[#.E_.qY ...)$.8 .T,.6Z 0 .!$.S%.v%.N#.`$.#-.|+._W cX 1%.|+.%Z %Z %Z _W %Z a .cX gV xY 8Z gV 8Z d .& .& .& .$...Y -` O/.GR FS jQ RP AM RP XL Wq MQ AM tP Wq (O dJ ;H ,H uO PQ bJ bJ #w {K }I bJ }I 1z .G IH rB *J RA :H 1z GH RA }I :E vy :E WA WA Mm XA Qd Lk {i {i Mk Lk Lk }c rg rg }c Qr >8 rg >/ >8 }c >/ d/ Z< d/ >8 a3 &^ Z< &^ Z< a3 Z< [ 8] `~ `~ [ #3.I^ g/ A> A> 0! A> ') 0! A> 0! q~ q~ K~ q~ #, <> )) C> )) q~ O; n& 9% G. G. L. J. N. J. N. L. 8% J. N. J. J. L. J. Z. p1.N. R. R. Z. P[. ; i<.i<.R. q1.3= !) $3.i[.i[.j<.[}.42.O|.9,.j[.O|.i[.42.]1.l<.}}.V<.e|.n<.l<.}}.<[.n[.z2.n[.z2.n<.n[.n<.Q|.<[.<[.%3.=|.A}.A}.G=.S:.`(.X<.P].P].P].P].X<.P].Y<.W<.X<.62.4'.l/.m:.l/.e].Y<.62.62.4' U/.%p b$ 4@ [@ &3.*3.L- X% P{ v; 4' 9@ f$ 9@ l$ b$ X% (; =3.-3.;3.:~.>3.k_./) HB lS ~` hZ l` !..n+ k+ 3U lX / .u#.p{ ,3.N+.FU cz qt |K Y{.qN .B .B l].().e_.'3.yf k2.k2.k2.)3.k2.)3.O2.)3.O2.!3.P2.~3.~3.k2.k2.;2.S2.{3.S2.R2.H1.-2.]3.^3.Rh C|./3.kZ +z ~U kA W` y~.(3.3<.9[._3.:3.u2./- U+ T+ V+ P+ pM vC vC ^l vC /- Fc of #f o}.;[.;[.B[.<3.N(.,[.D[.9w 3..3.[3.;1.[|.;(.&t It 'l Kf }3.8# C$ Q@ Q@ A I N {& G Y$ p ,! }& p r `$ h ", +";b R@ R@ L$ <{ R@ ]^ *) R@ J$ J$ 2^ BN I/ I/ BN J$ I/ I/ I/ I/ L$ + + + 0' ]& 5_ 5_ ]& J$ ]& #^ ]& # + V@ + # = # . |* # ;b V@ S$ o! P$ > + $ + & & V@ & [* + $ > - H= =' & V@ o! ] = & 2) > $ > > ] & & ) ; %= N$ | ; | R$ | P$ S$ ! & ~;.S$ & (& ~ U$ X@ I= %= | N$ { U@ X@ N$ /& ( < Y@ /& 2 1 W@ { 9 } d 1 $# d k Y@ 2 } ( J] 1 $# # $# 0 6 k ,# N' i k J] 6 k ~# !# z: W$ c ]c L= n n n -) y2 6! _# Y$ A~ o ~# h z: 1; Y$ b' `$ % q cj h ,> n^ /# F [# Y$ 1Z )> :# 4* D b' z w '> [# .!$.$ .0 .S%.s*.}+.$` N#.A@.oW oW _W #..%Z %Z _W _W 7Z %Z PW & .[T *Z & ./ rg >8 d/ t[ d/ Pk &^ a3 Z< Z< Z< Z< a3 {1 ): t^ Z< h( 5< G| G| Q3 ') A> N) ') A> A> ') )) )) <> 0~ 0~ 5% )) )) H. q~ 4% H. G. 6% D. I. J. L. L. L. L. L. N. L. N. L. N. J. ; d, 53.q& N. ; i<.q1.22.q1.q1.q1.53.P[.q1.i[.i[.<{.[}.P[.j<.i[.63.j<.O|.i[.j<.l<.n[.n[.V<.V<.n<.n[.<[.n[.z2.n[.<[.n[.n[.<[.n[.z2.<[.S:.73.G=.X<.S:.X<.]<.P].83.P].P].P].X<.P_.62.X<.62.P].P{ 4'.W<.[@ i|.l/.62.<: b$ }@ n, 93.x= /; /; X, |@ W% 03.4@ X% |@ 9@ ^; 4@ 2@ P{ -* a3.b3.%_.c3.|^ t/.f= 1L lS 7W -Y C%.CU IZ I}.hZ lX }$.hZ d3.e3.i! SS Yi aO aO VN bO UN aO /X 5H LM _i 71.()..(.f3.g3.k2.O2.O2.)3.)3.)3.h3.)3.)3.)3.~3.~3.~3.k2.k2.i3.;2.S2.S2.R2.-2.m2.j3.n2.91.D|.C|./3.^+.f}.{%.Vk D;.k3.Y2.B:.l3..N n0 E% /- T+ R+ E% DL Q& u2.o}.pM 6c m3.A:.<|.n3.o3.!}.o}.p3.@<.8<.G<.D[.w_.^_.9w -(.q3.r3.s3.It 1j mi t3.A0 O S K@ ~& z 2; w w ^# m ^# ^# ^# 4* Z$ p ", +"8S L$ J$ 9| <{ <{ 2^ 9| R@ R@ I/ 2^ G= L$ ]& BN L$ 0' J$ R@ I/ J$ R@ L$ K$ 0' 0' 0' K$ 1) Z, M$ = = = + = & ]& . # . $ # 1* ]& 0' - & ]& # V@ =' P$ [* S$ & Q$ & # & S$ U@ & $ > ; ; H= ^& . ; > ^& ; o! . $= . > U$ Q$ N$ N$ & ; S$ U@ S$ ] ^ ; [ | H= 7- /& ~ ~ & ~ N$ 4 ) | X@ 1 2 I= 2 8- 2 X@ } ) 1 [ < 1 5 /& [ 5 6- ( } 6 a } j $# $# 0 a 6 a 7 ,# ,# ,# 6 a 5 Y> 0 0 7 a Y> 0 ~# 0- Y$ L= 0- t' 0- 0 ]# 2, ]# c{ xE 2, xE m 2, t 4* b~.p ,> /# ;{.4* 4* `$ ^# :# w 2; F= E C F= $S a7 '&.'&.{& a7 A$.a7 a7 '&.'&.a7 a7 8* AR AR c- Z Z HV $T T^ (#..@.c- o^ c- (#. Z PT n! B.. ` SO SO I#.;*.oY aV B$.:#.-*.XX l1.(=.u3.+-.Z .Z .Z .RT +Z Z .9$.RT +Z Z .^!.|@.3@.Z .'*.D` n,.w@.E` hT a&.E` 4...` 9&.3Z CX 4..]&.:=.l#.z+.......#@.~W r*.4Z ~*.6Z 0 .6Z N-.T,.M#.nW 6Z v3.^W H` D$._W _W %Z #..a .w3.*` 3Y &Z &Z 6..% .hV / >/ >/ t[ >/ t[ t[ t[ a3 Z< G~ a3 `~ &^ a3 Q( f( a3 h( k{ A> 0! 7] m- A> ') m- ') A> m- <> q~ q~ q~ ]! 4% q~ P; D. )) 4% G. 2= 12.D. G. L. L. J. L. 8% y3.N. L. J. L. N. N. L. d, r& !) - z3.22.i<.22.i<.P[.X. _[.P[.P[.$3.j[.A3.i[.B3.M|.i[.O|.P|.p&.C3.U(.D3.R1.]1.]1.E3.<[.<[.<[.z2.<[.n[.<[.<[.z2.z2.z2.<[.F3.z2.]<.G=.]<.P_.P].*|.T1.P].U1.P].P_.X<.P].T1.G3.l/.P{ P{ l/.l/.62.l/.W<.V1.^; m:.|@ n, 4@ d$ 2@ |@ |- 6J d$ X% 8@ X% H3.9@ 6@ [@ 6@ d$ I3.J3.K3.L3.M3.j_.j_.*$ 1L 7W N3.O3.1L xT (V 7W 5#.hZ hZ P3.,T Z%.i@.bO ^R 3U 7<.lu Et X3.0:.,[.b[.iP <|.h1.Y3.H<.!}.#<.^_.9w 9w Z3.`3.s3.KC It 4..4.(4 E@ P@ P@ Q@ z I 4* {& ^# ^# p -) ^# h p Y$ ", +"<{ <{ *) ]^ J$ <{ <{ ], BN 9| I/ 2^ BN L$ #S jP G= I/ I/ I/ L$ ]& = 5_ K$ K$ I/ #S % + # * # + L$ $ 1* . .( ]& .( + ]& [* # = + . Q$ $= +4.. H= T@ N$ S$ H= - & ; H= $= . - + . ; . N$ & + & R$ U@ U@ . ] Q$ $ ~ ~ N$ %= ] %= S$ ^ Q$ Q$ H= { ~ U$ ^ Z! X@ ^ N$ ) ; 2 ~ Z! ) Y@ ( 2 Q$ N$ [ [ Y@ { [ / $# : [ 7 } &# 4 6 } ~ } k ,# ~# d } ,# k 3* ># k $# 6! [{ ( ~# L= ,# ,# 0 a 0- Y> L= |& h h ,> |& 7 n L= ]# r ;= s> `$ m 1; 4* t b' ,> s> m t 4* D Q(.`$ D C {& #] D Z$ 2; w G F #.F= /U z z '&.'&.'&.a7 '&.A$..t%..@.t%.I-.AX i5 |# H#.0].W!.U;.oY *I -*.oY yS y+.+-.oY .V +Z +Z RT +Z +Z RT +Z G&.Z .D` +Z {&.R%.3@.{&./!.+@.$).+@.CX o;.E` .` E` 4..3Z 4..9&.L-.K#.<=.o;.~W #@.S%.z@.#@.~*.9 .$ .!$.!$.S%.N#.tY [=.#-.oW oW _W oW cX %Z _W a .cX a .$+./ t[ d/ t[ t[ >8 t[ d/ >/ `~ G~ I~ C{ a3 `~ `~ 8] `~ f( 8] b3 L} :} E{ ') 0! A> ') A> 0! m- a, )) )) #, K~ #, 5% G. 6% q~ G. D. )) 6% G. L. N. L. L. 2= 2= {1.12.2= N. L. L. L. {1.d, p1.$4.q1.d, i<.P[.L|.q1.q1.53.Q1.!) P[.q1.q1.%4.M:.q1.9,.c|.]1.R1.p&.l[.E3.R1.n[.R1.E3.&4.z2.<[.n[.z2.<[.<[.<[.z2.n[.*4.<[.z2.z2.k>.*|.*|.U1.3>.]<.X<.P].3>.S:.T1.P].P]._/.<: 62.4'.4'.4'.P{ 4'.4'.b$ c$ f$ ,~.|@ @* @* b$ d$ i$ ** /; 3@ l$ 4@ 1@ |@ X% o, `% R|.f$ P. =4.-4.2[.;4. (.j_.>4.k+ xT IY lS qN JM l` ,4.'4.u#.n .,T 3U ;Y 3U 1K yT ^R bO 3U 3L |K dz /.U H J F= z I w Z$ m 6* `$ h Z$ ,> Y$ n ", +"J$ <{ <{ 2^ 2^ <{ L$ <{ *) ]^ I/ I/ L$ L$ jP BN BN I/ I/ I/ J$ I/ I/ I/ K$ 1) I/ ;b $ + # # K$ + 0' = # ]& 0' $ ]& 1) L$ > - Q$ = V@ T@ > $= $= $ = ' |* $ . . . ' Q$ ; Q$ Q$ - S$ $ > & S$ ; & R$ Q$ Q$ . ] Z! 2 H= N$ . ' ~ | > U@ %= P$ ^ ^ P$ %= 2 X@ H= ; R$ N$ *# } 4 ~ : 7- { ) | 5 2 2 { ~ ; } 5 ( $# d / } $# 6 } ( 6 2 Y@ a 6- 3* 1 Y> V$ 6- e 6! tA $# ,# !# a !# K] n 7 {# 8x s> -) {# r r s> 2, n L= r V| 2, r % xE V| V| 4* p vA 4* t C #] /# % }4.[# w w F $S t 2; G 2; /U /U C` a7 z z E '&.AR '&.a7 a7 $T HV AR AR T^ 4>.T^ HV V c- (#.1& p=.4>..@.t%.e:.k1.|4.AX ` 3# Z..iI B$.-*.:#.A: oY (U qF XX (U ];.^P )Q ^P RT RT +Z +Z +Z +Z +Z Z .sZ +@.e-.G&.{&.3@.CX {&.CX hT a&.4..9&.E` .` y@.E` 4..9&.:=.#@.` .4Z ...!$.B .` .)$.Y$.<+.z@.$ .N#.0 ..+.#-.#-.N#.7Z _W cX cX a .C .%Z oW cX _W 3Y 'X @+.E .d .%+.&V nU gV &V Vq GS GR nU RP )K XL GR 4z Wq KJ KJ HR RP MQ Wq dJ cJ pW GR OV uP Wq bJ bJ UF )H EH EH *J eJ *J ]K RA eJ >k vy :I IH HH ~i Qd 14.vy _E Lk {i Mm Mm Lk A9 Qd A9 Lk Lk 24.Qc Xe Mk 0h ]i t[ t[ >/ >8 C{ t[ Z< t[ d/ `~ Q5 Z< ;8 {1 &^ `~ Y^ *^ `~ ~! i2 5< A> H~ A> 0! ') m- m- m- A> a, )) 0~ #, X' #, n] P; G. q~ G. G. 6% G. D. 9% N. L. 12.O. J. N. L. N. J. J. N. L. h:.N. 8% q& !) 22.q1.P[.d, i<.Q1.3= q1.Q1.Q1.$4.32.i[.O|.34.44.P|.l[.c|.i[.[}.x}.D3.T[.E3.R1.R1.&4.54.}}.<[.z2.<[.n[.64.z2.74.<[.z2.<[.z2.G=.*|.3>.3>.G=.X<.P].84.P].T1.P].T1.W<.T1.P{ p[.T1.X<._/.P{ 4'.4@ |@ P{ i$ e$ H3.c$ H3._{.^; _].b$ 2@ 8@ |@ 8@ 9@ 94.X% l$ 2@ 04.a4.]).b4.c4.d4.e4.f4.k! HB lS xT JZ 1L (V IY ,4.g4.3*.UN UN bO |K 3U 3U bO bO ,T 3U q0 |K UN dz aO UN uK .B u/.b,.h4.K!.h3.h3.~4.~4.i4.i4.~4.~4.~4.i4.~4.S3.j4.~3.!3.O2.j2.P2.l2.;2.k4.D1.)2.j3.A1.(|.Sn /3./3.RX W2.R..5[.l4.E<.>Q m4.n}.~}.n}.E% T+ V+ T+ P+ P+ Q& ^l n}./- pM vC #f n4.H<.D[.D[.I<.-1.o4.$<.8<.$<.-1.^_.f(.E/.p4.W}.#:.#:.ne q4.s[ #% 8* A 2; x G G :# D `$ 4* c `$ ,> u `$ ", +"<{ *) <{ 2^ J$ r4.*) <{ ], 2! J$ I/ ], L$ 2^ 0' I/ G= G= 5_ L$ ]& I/ 0' K$ # % <{ ]& # K$ I/ # # p9 1) + . $ # # + # $ S$ > . . > > # + ; & . $= U@ N$ > H= P$ o! X! > - Q$ . + . S$ ; . - [* ] ] > M$ & N$ N$ ~ 2 ; U@ o! $ ; ) ~ N$ N$ ) & /& ] ~ ; 2 ) X@ 2 | <& X@ | ~ 8- 1 , ## ## d d { ) ## ## 4 { 3* / ,# V) [{ } 6 7 } 7 J] 0 7 k /& d {# i b k i ,# 0 k a 0 L= t' ~# z: ,# [& L= !# Y$ K] {# L= 0 2, ,> n^ L= g % ,> h p b' C n^ L= /# `$ ^# 4* m t :# w F= P<.{& F= G F #] /U F= '&.a7 '&.E a7 a7 AR a7 8$.AR $T T^ '&.A T^ .@. V c- c- V T^ V .@. V V s4.4>.|4..@.y .Z..)^.A: SO iU B$.aV *I *I qF XX I#.oY yS >$.RT )Q )Q +Z RT )Q Z .Z .R%.G&.Z .1@.G&.+@./;.3@.n,.^,..` E` E` L-.4..q*.9&.]&.9&.` .:=.` .4Z f-.Y$.^&.qY S%.)$.!$.$ ....s'.M#.$ .$ .sY `$.N#.#-.^W wZ oW cX cX cX nW cX _W 9` gQ t4.vY 2+.hV eX yZ 8Z xY MV &V QW Q( @, O] I^ [= A> ') A> a, P; J~ 5% n& ') C> )) #, q~ #, G. G. 4% F. D. {1.v4.K. N. N. K. N. L. 8% w4.N. x4.22.Q. 22.x4.!) y4.q1.P[.{1.Q1.P[.q1.!) Q1.q1.Q1.Q1.t1.O|.A3.z4.x}.i[.i[.i[.x2.x}.l[.y(.y}.&4.R1.54.E3.R1.z2.n<.<[.n[.<[.z2.74.n[.z2.n<.z2.z2.3>.84.A4.3>.P_.P_.P].P].T1.T1.T1.P{ 62.|@ f$ Y<.L- W<._{._].<: x= 4@ v; d$ x= |@ _].d$ <: b$ 1@ f$ x= f$ X, 3@ 8@ l$ 3@ h$ `% B4.C4.D4.E4.F4.+[.V].)- lS xT JM xT HB nS xT IZ G4.H4.3U 3U ,T bO aO bO .B 3U bO 3U . . $ . # Q$ S$ ; . $ ]& M$ = Q$ . > & Q$ U@ # + > . . . & & & $ > > . S$ U$ & ; & U$ R$ | U$ H= & > ; ; & > N$ | X@ R$ > S$ Z3 N$ H= U@ & N$ { Y@ ; (& X@ ) | 2 %# 7- | { 4 X@ W@ } [ { *# /& 2 *# 6 } Y@ k V~ ( 6 a' 2 D, 2 1 7 b d $# } $# a 6! 3* d k Y> a ~# 6! 6! 6 n k a 0 ~# r a L= Y$ }& [& c n s> ~# ~# `$ 4* ,> 4* 4* @= y2 ^# m 2; '> 2; 2; /# E :# @= F= #] w F /U G w W) a7 I K '&.z '&.F= '&.'&.$T 8* $T c- c- V I{.N@ >z M m;. V m;.$T c- I-.4>.~,.v@.c- E$ I#.}Y L p*.B$.B$.iU iU p*.)Q 3d yS W4.RT lP +Z Z .Z .+Z RT ],.Z .Z .!&.Z .!&.Z .G&.CX 0$..` $).3@.E` D` a&.9&..` E` ]&.9&.+` ` .:=.`X z+.Y$.` .2Y z@.^&.S%.$ .0 .!$.N#.0 .)'.X4.3Y M#.N#.C+.oW ^W _W oW %Z oW oW _W cX DR >R VT mT yZ 'X 0` / rg t[ }c d/ X: d/ t[ t[ &^ `~ >/ `~ Q5 G~ {1 [ ~! {1 t^ Z4.Z4.6~ k{ [= `4.m- ') A> m- 0! )) ') A> )) 7~ 4% )) q~ )) K~ n- $, H. G. D. D. N. 8% L. 8% N. 22.J. 5.N. J. L. !) 22.{1.8% 3= 53.3= !) P[.p1.q1.P[.$4.Q1.P[.q1.q1.Q1.<{.D3..5.+5.i[.x2.D3.42.c|.l<.+5.P|.64.&4.E3.R1.@5.z2.n[.64.z2.<[.z2.z2.F3.n[.n[.S:.52.3>.#5.3>.P].U1.X<.P].T1.P].p[.p[.T1.Y<.P{ <: 62.4@ Y<.T1.62.3}.b$ _].<: |@ [@ 2@ _{.b$ p[.3@ R9 4' 8@ $5.2@ 2@ $* 3@ f$ 9@ w; %5.&5.*5.=5.-5.;5.>5.,5.*5.{2 xT JM 1L nS aO IY (V IY aO ,T .B %U hZ ,T bO bO bO ;Y 3U .B dz Yi Yr Fl 9> s+ '5.)5.!5.'j ~5.{5.i4.i4.i4.i4.i4.i4.i4.~4.~4.{4.j4.M4.~3.!3.O2.i3.;2.SD D:.B1.b1.m2.m2.]5.Rh Sn u .RX .S dP ^5./5.(5._5.Q4.n}.vC /- E% O+ /$ L+ V+ :5.<5.u2./- a> L+ X+ of {}.!}.8<.[5.tN }5.z:.|5.,[.$<.o4.-1.-1.9w E/.d[.0w E/.R}.3g 15.T K@ P@ D {& G G :# G c{ Y$ m D h c 1, ", +"9| J$ <{ <{ 2^ ]^ .( I/.|1 ]^ 9| 2^ I/ R@ <{ J$ p9 I/ R@ ]& ]& G= 0' I/ 0' % K$ ]& I/ # # # $ Q$ ]& + # V@ + Z, # $ # . 2) S$ 2) Q$ & Q$ ]& L$ V@ . V@ H= - > = |* S$ ' Q$ U@ > = ; ] > & ; S$ N$ . $= ; ; U@ ~ %= $ ; ; Gc - ; 2 S$ & P$ %= S$ > X@ ~ | & N$ / ^ S$ | ~ | 4 [ { N$ ;# X@ Z! ~ { 2 & <& } ( *# $# ## 2 1 6 J] $# d 6 a 4 6 6- ,# tA a ,# a < 6 V~ 6! a a q> 0 a k g j n c Q{ &].h c !# 0- _# K/ c s> Y$ c{ p s> p Y$ m b' ^# 1; 4* ^# |Z 1; w {& /# 4* :# /# F= u /U w /U G a7 '&.a7 z :# w A A$.a7 $T $T #] U!.I O@ .@. V V c- V =X K Z JW m;. V .@..@.4>.(#..@.d{ p*.aV *I aV :#.-*.-*.:#.p*.#N 3d +-.F>.RT ^P RT Z .)Q +Z RT Z .Z .+Z G&.R%.0$.RT +Z 7)..` /!.$).'*.d~..` E` o;.J#..` .` y@..` b&.]&.f-.#@.r*.<+.)$.B .25.<+.B .z@.z@.$ .$ .N-.N#..+.<=.M#.x%.pO cX cX oW oW oW oW cX cX oW FX VT 'X wY yZ hV gV k vy 9h {i vy 2I zn Lk Lk Mm 0h cd Lk {i Mm 0h 6e rg 03 Si We >/ F~ c9 c9 C{ C{ t[ `~ V{ &^ &^ X: &^ Z< &^ &^ b3 H~ Z< i2 O] G| `4.O] p~ m- z. [= A> m- 35.y! y! y! a, c; m- a, q~ )) G. G. H. G. 5% 6% G. K. N. N. L. L. N. 8% N. 8% N. L. y4.L. {1.y3.!) 53.53.q1.q1.45.B3.q1.34.Q1.Q1.Q1.34.B3.A3.A3.D3.55.65.x2.D3.p&.C3.O|.y}.P|.z2.64.@5.@5.75.64.z2.64.64.<[.85.<[.n[.64.85.64.<[.95.A2.P].05.]<.#5.{).p[.P].P].P].p[.P].4'.P{ P{ 4'.s1.62.T1._1.P{ <: b$ L- 9@ 2@ f$ L- 8@ |@ y= 8@ 9@ j$ |@ i$ a@ 8@ X, X% -* a5.b5.c5.d5.e5.f5.g5.h5.T:.i5.|L xT HB h+ :S lS xT l` IY -Y 3U hZ e..aO nS bO |K 1K aO )$ Xi v+ 8> '$ s+ g= j5.k5.l5.i4.i4.~4.K!.K!.K!.K!.i4.i4.~4.i4.~4.~4.E|.M4.S3.!3.O2.T3.l2.l2.S2.,2.U3.m2.]5.n2.Rh N}.Dd +y Wk .S m5.n5.yb o5.() p5.o}.vC L+ Q+ S+ T+ R+ S+ g1.{- Q& vC o}./- /- of U}.;[.q5.r5.s5.t5.@<.,[.,[.8<.^_.O(.e(.e(.e(.-1.O(.Wo k,.u5.H$ J Q@ G D w @= ^# D (# o (# `$ n c _# ", +"9| J$ ;b jP <{ R@ .( ;b I/ R@ R@ ]^ 0' G= 9| #S #S I/ J$ jP I/ BN G= ]& 0' 5_ # # 5_ 0' K$ # + + # # = = }, . % L$ > V@ # * . # > ' > # # . R- # 2) - > > P$ & . + N$ A; ] & ] $ = > = > 2) . ; %= H= X@ %= = ! | | | %= I= | S$ U$ S$ & ^& ~ N$ X@ X@ ~ ~ U@ ; 8- 5 ~ X@ { : ~ ~ [ Y@ 2 ## 6 Z! $# *# { 1 { d d : ,# V) } /& 7 3] Y> <& d : v5.w5.,# /& $# d k 6! K/ a k e 6 ,# a 3* e c L= c W$ j k L= o Y$ c g L= 0- ,> ;= e h p! x5.[# /# y2 /# t n^ ^# Y$ 2; F= F 2, |Z w $S G w ).F= z a7 z b' a7 [2.a7 z n! '&.C` U!.JW 8$. Z >z c- c- V c- :}..@.2Z 2Z z .4>.5 .x .H#.p=.Q aV MW 0S iI :#.-*.B$.-*.iU *I #N +-.(U I#.^P RT G&.G&.Z .Z .Z .+Z +Z lP bV D` w@.R%.e-.0&.0$.#).$).n,.CX .` 4..9&.E` E` pY J#.a&.3..o;.#Z z+.~W <+.[#.5Z #@....z@.z@.#-.z@.$ .B .0 .B@.N#.T%.C+.^W oW oW ^W ^W _W _W _W ^W ^W WT &Z gV 0` :W gV n1. 6~ m- m- m- #, y! a, X' t) )) #, J~ C. D. F. F. G. D. F. u) 8% w4.w4.N. 8% N. w4.N. L. 8% w4.!) p1.d, !) !) C5.P[.53.L|.B3.P[.Q1.Q1.q1.Q1.D5.$3.!) <{.x}.E5.O|.O|.D3.E3.F5.j[.G5.p&.H5.<[.54.E3.@5.54.<[.85.<[.n[.z2.z2.S1.S1.I5.k>.z2.J5.*|.A2.p[.{).*|.{).p[.P].A4.p[.T1.p[.4'.P{ 62.l/.X, <: P{ |@ ^; 2@ X, |@ 8@ `<.n, }@ l$ u; 2@ 4@ 6@ X% 1@ T* ** 5@ X% `<.K5.L5.M5.N5.L3.O5.P5.Q5.^) }.R5.-$ q+ q+ m+ n+ h+ m+ l` ^ .:S 3U ,T ,T bO Xi qt Xi 9> .B Fl p+ u+ N> y% |! 6{ Y).S5.T5.U5.~4.i4.K!.K!.U5.i4.~4.K!.i4.i4.h3.~4.E|.~3.P2.~3.k2.j2.;2.-2.T2.G1.b1.j3.)2.(|.Rh N}.vX RX ~U Bd V5.S}.W5.<5.X5.() t2.a> /- {- S+ V+ P+ R+ Q+ E% a> vC ~}.u2.n}.b[.h1.Zi 7<.)] o}.Y5.B[.7<.]_.$<.D[.#<.o4.9w E[.=1.O(.d[.0K Z5.1# 3# A x G }# w :# Z$ /# ^# Z$ r h h C; ", +"J$ 9| J$ <{ <{ J$ ]^ 9| <{ 9| 2^ BN I/ R@ ]^ 2^ #S I/ ]^ J$ I/ I/ L$ + L$ ]& K$ # 5_ + # # Z, Z, + L$ = # > V@ + + + # + # . $ = $= S$ + + > ]& k) V@ . # $ Q$ |* $ ; ; & Gc = > o! U@ & = > ; U$ > $ | | $ Q$ ~ ] & ; Z! | . N$ ~ H= ; ^ & ; ) N$ | ) H= Z@ ; { 2 X@ +# 2 05 2 7- 7- 7- ( d J) $# Y@ d } 6 7- d b k 4 2 d k 6 6 Y> +# 6 J] ~# q> e Y@ 5 k L= g ,# a ,# e L= ~# a L= n j ,# c a Q{ W$ r K/ c ~# Y$ ]# L= ,> Y$ E, Y$ ^# ^# G#.^# ^# t u `$ ^# /# D :# 1; D t |Z F z ^# K a7 a7 /U z )./U A$.{& A$.$T AR c- 8$.,/.:}.F= Z M #= T^ .@.4>. V t%..)..@..@.(#.`5.y .t%.B..:#.*I aV iI iU I#.*I qF BX #N k#.BX ^P .V RT +Z +Z RT G&.Z .RT G&.9$.H&.H&.0&.Z .{&.3@.9X F]..` CX .` E` 4..E` 4..3Z y@.4..@@.9&.2Y 4Z [#.<+.<=.5Z )$.Y$.p;. 6.nP 8 .$ .$ .N#.wZ N-.S%..#.cX oW nW cX oW _W _W C ._W ^W fV yZ %Z &` hV A> A> K~ y! 7~ A> y! P; #, #, n- 4% )) H. H. G. D. K. N. +6.5% D. D. 8% 8% O. 8% L. N. y3.8% z3.q& 53.$4.Q1.q1.q1.L|.34.q1.3= Q1.q1.Q1.32.A3.M|.D3.$3.@6.42.C3.x}.+5.%4.R1.R1.R1.64.54.R1.#6.@5.64.<[.85.85.64.64.$6.$6.k>.%6.64.z2.3>.r1.3>.C2.84.84.{).Y<.|@ p[.T1.p[.62.^; L- -|.1@ <: &6.|@ <: 3}.8@ u; 9@ 2@ 9@ 1@ 8@ 2@ i$ j$ 3@ X% 9@ 3@ 1@ 1@ 5@ l$ *6.=6.-6.L3.;6.>6.6| S) |' ({ .Q ({ q+ ({ q+ HB n+ l+ ({ TR HB 3U ,T .B |K cO BD MH ({ Xi '$ t+ i= M& y% |! 71.6{.f2.,6.'6.i4.i4.K!.i4.i4.K!.K!.K!.i4.i4.~4.h3.)6.O2.~3.S3.P2.i3.>2.R2.G1.b1.c1.n2.%1.!6.(|.vX vX :w .S dP ~6.{6.]6.^6./6.^N B[.{- vC E% Q& vC pM L+ a> n}.S+ E% g1.S+ /- a> $) vC 7<.n}.iP ;[.#<.D[.D[.#<.o4.,[.,[.$<.O(.(6.^_._6.:6.<6.Q@ K@ A p G /# /# G w % ^# h p c ~# r ", +"<{ J$ J$ 9| 9| J$ R@ |1 8S <{ BN R@ G= I/ G= V! G= I/ G= R@ L$ 0' I/ I/ 5_ L$ ]& K$ + 0' ]& K$ # ]& ;b % # ]& # # . 0' J$ ]& V@ > . $= . #^ . H= $ + 1* ,Q 9S Q$ ; & N$ > S$ > H= H= - . 0' ] > . %= ; Q$ $= $ = Q$ Q$ [* & = N$ ~ z] ; & ] ] U@ U@ = X@ / > ; ~ 2 Z! { | ) | X@ | N$ | | | 7- 1 7- ~ W@ ( ## Y@ $# 5 } / Y> Y> < 7 5 } ## Y@ X@ 7- j /& &# q> 0 Q{ {# ~# $# $# V) 6 ( e e ,# a ># !# K/ L= o a K/ {# {# b h ,> ~# 0 L= 0- n r }& 0- r % `$ $] % ,> ,> m u 4* ^# w w m t w 2; F= {& F= G z C` #] z AR ..@..@.c- .).v@.(#.:#.aV AX A: *I A: iU oY oY *I yS G$ oY (U #N )Q )Q RT Z .RT ^P Z .RT +Z 1@.Z .Z .<#.Z .+@.+@.0$.D` D` .` E` .` 9&.4..E` E` 4..E` a&.o;.` .` .4Z Y$.<=.qY S%.#@.B .5Z uZ ;X }6.$ .N-.B+.)'.0 .M#.^W ^W ^W ^W oW cX %Z cX cX oW FX gV &` 9` a` xY yZ gV gV hQ ^O ER _P bR jQ )K KJ zM )K zM )K XL GR BH XL tP ,H tP dJ UF /I /I bJ UF Wv ^L RA bJ CG Pw CG |6.rB :I dt 16.~i )u >k !i 9h {i WA {i Pc ^v A9 {i Mm Qd A9 Qd ad I0 6e O3 rg ul Ok W: c9 t[ C{ C{ d/ C{ C{ t[ d/ &^ Z< `~ t^ `~ `~ Z< &^ &^ a3 f( t^ 26.[= H~ E{ A> A> A> A> [= z. y! O) m- [= #, 4% )) #, 4% D. #, F. C. F. F. 9% N. G. v4.8% N. w4.w4.12.N. L. 8% N. 8% z3.z3.y4.22.55.z3.q1.34.p1.q1.q1.Q1.Q1.53.Q1.A3.36.46.+5.56.66.76.86.E3.C3.+5.R1.]1.&4.54.E3.E3.E3.z2.96.z2.64.n[.z2.64.96.F3.{).*4.*4.S1.3>.r1.3>.{).#5.84.P].62.p[.P].[@ <: G3.^; /; |@ 2@ T1.X% /; d$ 1- c$ 4@ x= 06.f$ x= b$ $5.8@ 9@ X% 8@ a@ 1@ U~ `% H3.a6.m|.8}.L3.b6.>~ c6.>~ g+ HB JM JM ]G 1L JM ({ q+ -$ Bs lS l` i@.;Y qt Xi !- m+ !- ({ 8> )$ |! t+ l; G/ 1].E^.z{.1^.d6.~4.i4.~4.i4.i4.K!.K!.K!.i4.~4.~4.h3.h3./Z )3.~3.l2.l2.i3.>2.R2.G1.b1.)!.n2.e6.C|.%1.f6.kZ +z .S -U |&.g6.h6.i6.i6.j6.~}.B[.u2.pM u2.k6.l6.n0 ~}./- L+ O+ a> P+ T+ T+ Fc ]w ]w T+ ^l iP ;[.H<.H<.;[.v_.0:.#<.#<.^_.m6.=1.n6.o6.]}.3d S Q@ C I F {& D t q Y$ p r c _# ]# ", +"<{ J$ ]^ 9| <{ I/.R@ 9| <{ ;b BN R@ ]^ G= G= I/ I/ BN I/ k3 I/ I/ 0' L$ |1 #S o! # # = 0' I/ * + 0' % + J$ 0' 1) $= . ]& [* . # ]& $ + + #^ S$ & . $= R@ 2) [* > S$ P$ . > ' ]& Q$ > P$ + V@ U@ > . | S$ & . ; ] Z! X@ S$ H= J) { U@ ' U$ X@ R$ ; S$ T@ . W@ ) H= X@ 7- { X@ 2 [ | 2 [ | | { | 8- 1 [ ~ { ## /& 4 D, } ( ## } } [ ( 6 <& 4 8- 2 } &# } $# ,# 0 a L= v5.i q> 6- 6! k 7 K/ K/ 0 0 a {# 0 K/ c !# }& c {# h r {# ~# 2, h }& 4* 2, K/ p G#.4* v s> 2, t w t m ^# b' ,> 2; p G t F= $S z G w /U C` F= p6.G a7 [2.n! P<.T^ 8$.O@ JW H[.O@ Z c- T^ T^ V c- .@..@. V .@.c- 4>..@.4>.B$.SO iU SO A: (U iU A: *I :#.(U qF K-.k#.iU 6).^P RT )Q Z .9$.)Q )Q RT RT |@.Z .'*.1@.Z .7).0$.D` 3@.CX 9&.hT 9&.CX E` E` 3Z 4..4..o;.4Z #@.` .2Y ...Y$.qY r*.Y$.Z$.kT jT L#.5Z !$.pO 6Z 0 .$ .^W ^W nW cX _W cX %Z C+.cX oW cX oW wY 7Z 3Y [T &Z &Z 'X *Z :W zM ,S &V GS .Y XL {L {L zM )K Wq RP zM 0N 0N 3M OA aJ /I bJ /I ;H UF UF OA !K UF !K Pw eJ RA Kk eJ vI *J CG CG >k jf 9h 9h 9h >k ~i ]A A9 {i {i Mm A9 {i A9 cd =0 rg vl >/ 03 rg c9 W: d/ d/ O3 C{ C{ G~ d/ C{ G~ d/ 7] &^ W{ {1 &^ `~ `~ Z< t^ 96 `4.E{ *^ 6~ A> z. `4.A> N; [= y! A# m- y! A> y! C. H. D. #, q6.G. D. C. F. C. 5.L. w4.8% r6.8% 8% 8% 7% N. N. 8% y4.p1.y3.N. 45.y4.34.s6.q1.P[.34.$4.t6.34.s6.Q1.36.u6.+5.s6.v6.i[.86.+5.O|.86.D3.E3.R1.E3.@5.@5.@5.85.<[.z2.z2.z2.z2.<[.*4.64.S:.85.74.64.%6.3>.#5.w6.r1.x6.x= p[.v; X<.y6.|@ <: X% f$ V1.C2.^; 2@ 9@ }@ 9@ 03.1@ z6.d$ f$ *3.<: l~.9@ `<.7@ 3@ o$ 3@ 3@ 2@ a@ A6.B6.8}.c6.C6.6| c6.D6.-$ xT !Z l` xT 1L 7W HB ({ nS IZ lS xT qN bM ({ !w ({ m+ n+ n+ N& 1].t+ y% =, `/ 1].G,.z{.f2.E6.i4.i4.i4.F6.i4.i4.i4.K!.i4.h3.~4.h3.)3.h3.O2.~3.l2.;2.i3.=2.F1.G1.b1.c1.{B G6.$1.Sn N}.Wk .S H6.I6._ .J6.K6.L6.M6.^6.N6.O6.u2.n}.~}.g1.`U n0 ~}.{- vC {- /- S+ R+ S+ be &g ta P6.Q6.iP b[.!}.H<.8<.8<.$<.O(.=1.9w o4.,[.R6.S6.RB (4 2& A x D t D :# w w u % ^# p ~# e ", +"9| J$ <{ *) *) <{ R@ *) jP <{ jP BN R@ BN I/ G= ]& L$ #S R@ I/ 0' ]& G= L$ L$ ]& + # + 0' L$ # # $ ]& # J$ 0' $ k) o! $ . ' # + > + 0' + > $ S$ . . > ' & . V@ > U@ E! o! - ' $ > S$ Q$ = U@ & & > ] }, U@ =' U@ X@ | ~ ) ; 2 ; ~ ; R$ > > *# | H= & ) 2 ~ ~ 2 | 2 2 [ Z! ) | X@ U$ [ 4 ## [ X@ J) ~ / } 1 ## Y@ } W@ ># ,# 6 7- *# $# $# 1 ( b 0 Y> 0 L= 0 ~# k z: {# q> 0 e L= Y> 8 z: {# ~# n ~# 6! r h 0- Y$ L= 0- 2, n^ h p r n b' % m b' 1; 4* ^# t t [# /# 1Z w w 4* {& G /U C $S F= w F= P<.G a7 z ..@.>z c- c- 5 ..@.4>.t%.SO r! aV y .v@.I#.oY iU I#.aV (U XX +).k#.RT )Q +Z +Z RT +Z RT RT +Z ^P +Z 9$.Z .{&.+Z e-.D` 0$.$).7` 4..CX E` 9&.E` .` 9&.3Z .` 9&.` .7 .4Z z+.Y$.#@.Y$.z@.4Z z@.$ .DR pO (,.<+.OW aX )'..#./&.^W _W ^W ^W cX oW _W oW oW cX oW 'X ES &T A> N; z. [= A. M; m- m- N; D# F. D. n- n- G. D. +6.C. C. y3.w4.N. 8% U6.w4.w4.8% 8% w4.8% y4.$4.y4.22.y3.$4.y4.Q1.$4.V6.q1.q1.q1.t6.s6.34.34.W6.y4.X6.$3.t6.C3.76.75.@5.86.@5.@5.@5.54.#6.75.E3.64.64.z2.64.z2.z2.z2.85.85.]<.%6.z2.85.64.3>.{).A4.84.#5.Y6.T1.^; p[.^; T1.<: 84.p[.4@ X% 9@ 2@ X% X, <: 2@ 9@ 1@ [@ T* (; v; 2@ H3.y] 7@ 1@ 9@ a@ l$ 6J nH Z6.`6.%_. 7.+) D6.;4.2[.}K 7W 7W !..!..!..({ HB 1L bM lS lS HB }K m+ q+ =; h+ ({ h+ ;$ M& @) u<..7.u<.3(.+7.V].z!.j].@7.~4.i4.K!.F6.i4.K!.i4.K!.K!.~4.i4.)3.)3.)3.O2.T3.i3.l2.k4.F1.F1.#7.$7.+I Rh f6.vX aW ^+.+z dP -}.Q .%7.D;.&7.*7.=7.-7.;7.>7.i6.B[.u2.B[.g1.^l {- g1.o}.,7.P+ /- g1.;[.'7./- )7.!7.~7.B[.{7.]7.!}.b[.!}.D[.$:.E/.-(.o4.f(.^7./7.Nh s[ I N= /# {& w D M= D u D 4* /# r [& o ", +"9| <{ 2^ ]^ <{ |1 J$ J$ 9| <{ <{ #S ]^ G= I/ I/ R@ 0' I/ I/ I/ I/ I/ I/ G= ]& 5_ = # K$ 0' 0' + 5_ ]& ]& V@ + $ k) R@ ]& L$ + T@ . # ]& > !, ]& = > Q$ $= U@ & . > $ + - ; U@ ' N$ ' A; * = > Q$ U@ U@ - P$ S$ > ^& A; $ V@ U$ H= Q$ > . ; %= N$ %= ~ ; | N$ ) ] ; ] 2 =' X@ O$ 2 P$ { *# 2 ~ | I= I= ^ I= | / 7- ~ { [ 7 => *# d x0 7 } d $# *# { /& [{ 9 V) 4 V~ k ,# $# 6 $# 0 3] ~# a a a 8 a a e K/ e t' ;= z: c n L= p 2, p p {# Q{ u q 0- % 1; 1; 4* Q(.t d<.p m % 4* b' 2; t t #] /# 2; F= a7 F= z B '&.G F= *].a7 a7 z /U AR AR (7.a7 1& AR H$ M .@. Z 8$.c- (#..). V .@. V 0S 0S v@..@.AX aV AX I-.I-.aV A: B$. ` J *I _#.J-.k#.)Q +Z +Z RT Z .+Z RT +Z Z .Z .+Z +Z Z .R%.H&.Z .R%.R%.3@.'*..` E` .` 4..4...` 4..y@.d~.E` ]&.:=.4Z 4Z EX E_....B .Y$.~W B .DR DR L#.L#.L#.nW N#.0 .X4.aX oW uY ^W nW oW nW oW cX cX oW &Z 'X bX {O gV _P ,S nU _P :W hV ,S hQ XL {L &J )K )K )K XL zM )K {L {L KJ aN 3M aN /I Wv OA OA bJ ;H ^L IH /I EH DH rB rB CG )H sy !i >k >k !i ~i ~i Ri {i )v A9 {i {i {i {i Qd Qd ad -8 cd V: u4.I0 c9 rg W: O3 }c V{ t[ V{ V{ G~ d/ F~ C{ `~ `~ W{ `~ d/ `~ W{ l- *^ &^ l- H~ X= L} ~! A> m- m- A> z. m- [= [= m- [= N; m- M; F. D. D# }= D. B. y3.+6.F. q6.8% 8% v4.q6.w4.r6.N. 8% w4.w4.y4.$4.w4._7.53.$4.y4.53.34.55.Q1.q1.Q1.34.34.34.Q1.Q1.Q1.t6.%4.t1.:7.C3.D5.@5.<7.75.@5.[7.}7.E3.<[.E3.#6.z2.85.85.|7.|7.85.85.85.F3.64.74.64.z2.r1.I5.p[.^; r1.p[.G3.p[.p[.^; 9@ ,~.p[.<: _{.x= <: x= &* 3}.P{ _{.`<.9@ 17.i$ f$ X% %* 6@ 7@ Y, 7@ g$ 7@ i$ 6@ e@ 27.37.C6.47.,- ^) k! q+ lS JM q+ q+ .Q 1L HB xT xT 1L 1L 1L HB m+ h+ q+ M& ({ )- |^ @) r+ u] (.X{.[).+[.G,.{~.P'.j].57.~4.~4.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.O2.k2.O2.j2.=2.>2.,2.F1.G1.b1.]3.Rh (|.N}.RX RX .S ~P -}.@H 0#.67.77.87.97.07.a7.b7./6.c7.d7.t2.LP o}.iP ^l g1.~}.n}.n}.vC a> Zi p5.e7.Zi pM Kd f7.g7.h7.i7.j7.h1.k7.!}.9w x_.^_.rv E[.AK ]s vo b- N N }& r `$ G ^# N O' `$ e h h 4* ", +"<{ <{ (}.9| <{ <{ R@ 2^ 9| ;b <{ <{ J$ ]^ G= #S 2^ I/ 0' I/ ]& I/ I/ 0' R@ ]& 0' 0' + # + 0' + 5_ + ]& # K$ 0' = 1) }, $ + V@ # Z, ' > . Dv > U@ . k) - + . S$ M$ # S$ . $= . $ U$ S$ Q$ $ |* & * > ; > > | ] H= & U$ ; %= ~ ; {c Q$ S$ . > N$ ~ . *# ~ ; & U$ Q$ ] R$ 2 { 5 d < N$ [ 2 ## ## | ) 1 $# 4 ] X@ 2 5 1 $# J] d 7 d ( d 6 ## d ## 3* a $# J] ,# q> } ~# 7 {# 0 !# [{ d 0 0 ,# 5 c L= 0 ~# c t' n L= h 0 L= p r {# r p n #| 2, Y$ % t 1; V| Z$ m t C C :# w F F= F= #] /U /U F= F= F= |Z 1Z z a7 n! '&._}..)Q +Z RT )Q Z .+Z )Q Z .RT RT R%.Z .9X AS 1@.R%.R%.3@.0&.#).d~.E` CX CX 4..E` +` E` .` 3Z 4..4Z z+.pY 25.#@.z@.5Z [#.m7.z@.pO +.jT OW z@.^W aX +.%` ^W ^W oW cX nW nW ^W ^W _W oW 9` gV ES ,X $ . > . [* # + $ S$ + V@ %= & 1* > = # + . J$ . = $ ; S$ & > V@ ; N$ & . - & N$ %= o! ' ; ; { | ) & N$ ] & Z! ^ ] ; = | ~ X@ [ / J) [ ) I= *# +# 2 ~ [ 6 d *# X@ ( d $# $# d e 6 / [{ 7 6 6 q> a 0 6 k {# k d 3* 7 K] 5` q> &# a 7 6 c a 0- ~# !# 3] k n W$ {# s> (# h n Y$ h h q n ;= p q 1; d<.4* &].m `$ t /# ^# 2; {& {& F w $S {& /U F= z..E $S p6.a7 z z @ .'&.a7 '&.1& 1& _}.z '&.8* c- a7 V 1& HV V V M c- T^ .@.5 ..@. V .@.(#.O B$.iU r! aV -*.iU SO I#.(U M7._#.I#.+-.+Z RT #N >$.Z .+Z )Q RT G&.RT +Z sZ 9X 1@.0$.R%.E` +@.+@.#)..` 0$.E` CX .` +` 9&.9&.9&.:=.y@.2Y DX Y$.)$.D.....2Y S%.!$.nW L#.0 .aX `$.pO pO OW 8 ._W cX cX uY cX oW ^W ^W cX cX bX gV &Z $+.@+.,S [T qP rP ,S pP = .GX hQ kV )K )K XL )K XL XO )K BH XL GX BH aJ BH KJ tL ;H ;H /I UF OA /I (I sL /I 'A |6.rs Kk rB Ow VA !i !i jf ~i ]A ]A }5 >k 9h A9 Mm Qd A9 Ri B7 A7 ^] -8 A7 H, M4 ,k 0h V: 0^ d/ C{ W: C{ C{ G~ G~ C{ F~ s[ d/ W{ G~ 8) I~ Y^ 7] *^ l] p* l- N) N) 8] X= [= N) z. z. z. m- z. z# z. A. M; #, F. D# D. n- m& }= I. F. N7.D. F. D. U6.o- O7.w4.N. 8% $4.w4.y4.y3.y3.y4.U6.C5.C5.$4.P7.34.Q1.Q1.C5.55.s6.Q1.34.E5.Q7.E3.R7.E5.t1.S7.S7.E3.T7.75.@5.75.U7.#6.54.@5.V7.75.85.64.85.85.85.z2.64.A4.y6.W7.85.X7.#5.f$ {).L- #5.{).&3.^; <: [@ [@ T1.2- X% p[.X% 3@ 9@ 0@ X% 3@ f$ l$ f$ l$ a@ ** y= 6J 6@ 3@ 6@ a@ 6@ 7@ %* F3.Y7.x7.R! >6.f+ ./ QS BU G4.l` IY !` lS TN lS xT 1L q+ m+ q+ m+ ({ ({ k+ G/ ;$ =; h+ n+ =; l+ u<.71.9!.G,.U{.y{.U].=O K!.~4.~4.i4.~4.i4.~4.~4.h3.h3.)3.h3.O2.k2.k2.j2.N2.s$.F1.b1.c1.a1.Rh (|.vX vX RH ^+.kA d _ .&[.{#.]@.,y Z7.`7.W5. 8.^6.B7./6.-7.:3.^6.A:.B[.t2..N g1.~}.n}.n}.a> ^l a> S& O6.of iP {}.;[.u2.~}..8.b[.{}.+8.H<.G<.x_.d[.!s . 0' = V@ [* o! $ # . . + R- S$ S$ |* A; [* V@ |* > . Q$ S$ V@ & # o! . Q$ ] > H= U$ U@ + R$ T- & R$ { N$ U@ ] T- Z! X@ ~ ] H= ~ .# X@ g{.Y@ ~ ~ /& < [ ( ( { I= } 2 <& X@ | 2 N$ [ [ 5 6 } 6 d } ( 7 $# ## 9 5 k a d q> 7 [{ D, a &# a 0 V) d b 9 $# ~# 0 a !# |& !# n |& c 0- |& h ]# 2, 1; h h % V| 1; ),._# % `$ p! h p :# :# :# t {& t D G s> F= {& z {& {& b' D F= /U '&.z z B z F= '&.a7 1& $T 1& T^ 2Z $T Z :}.JW V c- V V z _+..@.4>..@.4>.4>.4>.aV B$.iU AX :#.*I QT *I k#.oY k#.oY y+.RT RT ^P +Z +Z +Z RT ^P RT G&.1@.sZ +@.e-.Z .w@.#).hT 4..$).CX CX hT .` .` .` CX E` 9&.:=.a&.4Z 4Z `X ..` ./,.2Y Y$.B .rY 0R B .z@..+.pO nW aX 0 .%` DR uY %8.cX oW ^W nW ^W oW _W (W 'X bX ES a` rP hQ rP _P pP ^O zM kV kV KJ )K tP 'R {L ^O XL 'R )K jK XL lK OA BH bN OA ;v /I OA OA UF ^L )H /I 'A CG Kk Kk Jk Kk dt !i >k !i !i >k }5 Ri >k Ri A9 A9 A9 Ri {i A9 A9 Qd nj A9 w/ l8 C{ &8.0^ O3 W: C{ C{ C{ V{ t[ V{ V{ r) W{ G~ W{ `~ '{ s) `~ I~ m] *^ *^ W= {! `- W= j& z. z. *8.35.m- s. m- Z= A# z. X= z# D# C. C. F. C. m& m& F. m& F. F. 7% w4.8% =8.8% 8% 8% $4.-8.w4.U6.$4.C5.53.C5.$4.;8.;8.$4.C5.;8.Q1.34.;8.s6.y4.34.s6.>8.%4.,8.t6.F5.'8.75.@5.75.@5.)8.!8.)8.~8.)8.75.{8.]8.z2.64.64.64.64.&3.u7.W7.y6.85.64.3>.#5.L- ^; A4.3>.p[.2@ y= x= 6@ X% L- <: 9@ 2@ K- z6.8@ c$ 7@ 3@ 6@ f$ `% 5@ h$ a@ f$ 7@ ** GV `<.g$ 6@ g$ !{ ^8./8. }.^) +) *P k` L..xT xT TR ]G HB I* q+ I* j+ h+ l+ m+ h+ m+ ({ h+ (.@) r+ n+ n+ ;$ |^ (8.u<.9!.4^.z!.z!.(~._8.U5.~4.~4.~4.i4.:8.:8.h3.h3.h3.)3.)3.O2.k2.j2.=2.K1.s$.G1.b1.91.Rh Rh N}.RX *n Wk kA d Q .0#.<8.]#._d iu I%.[8.}8.4N |8.c7.c7.j6.-7.7<.18.7<.B[.~}.vC g1.^l 28.38.B[.48.^l H<.<|.o}.<|.o}.;[.iP G<.G<.iP <3.7<.58.68..3.78.9w d{.4S 88.1# S I C w F /# `$ % `$ ,! 9- p Y$ K= ", +"R@ R@ J$ 98.<{ <{ jP 8S ]^ G= #S <{ <{ R@ BN R@ #S L$ R@ #S |1 I/ I/ I/ G= 5_ I/ 0' 0' =[ # # ]& 5_ $ =[ L$ 0' V@ L$ 0' $ + + k) + # M$ 1) Q$ V@ ]& M$ + # [* $= V@ $ Q$ . . > S$ & A; > ]& $ - ' = U@ P$ = > ! Q$ o! > N$ . Q$ ^& !, o! ^ U@ U@ & ; > > ; R$ | | ; R$ | ~ Z! Z! ~ X@ ## ~ | X@ Z! [ ~ 7- ) , ) [ ## X@ *# 7- %# 6 *# ) 4 / $# 5 b $# < d 7 ># d ,# 7 0 b a i 6 b {# {# W$ a a a L= A~ L= 3* c z: {# W$ a' g k &].p n n c p 1; h b' p ,> ,> 1; t 2, L= 2, 1; `$ m n^ :# :# :# u F G {& C` z z..P<.z a7 a7 '&.'&.z '&.z '&.8$.a7 KW K F= n! c- AR 2Z V V V V .@.AR c- V 5 .4>.{[.v@.x .A: iU B$.:#.B$.(U *I oY *I oY yS YX oY .Z +Z ^P _M Z .Z .)Q ^P +Z R%.RT lP 1@.|@.0$.$N hT hT .` 0&.+@.CX CX E` 9&.E` CX 3Z .` f-.]&.:=.b&.4Z ~W l#.qY D..l#.5Z @` DR z@.B .;X rY DR vZ %` nW oW nW ^W oW _W cX ^W ^W mW 7Z WO t4.bX bX k !i a9 ~i Ri jf ]A a9 {i Qd a9 Qd nj Qd A9 Qd !1 We 0h C1 M4 w/ W: C{ r) V{ d/ d/ F~ G~ F~ C{ d/ l] '{ `~ '{ `~ f( m] l- ,{ l- W= 35.z> W= z. z. s. z. [= [= [= [= [= m- M; A# 3% n- F. C. o- F. C. D. F. F. C. N. r6.w4.7% q6.r6.8% V6.-8.r6.y3.;8.;8.C5.C5.;8.a8.;8.53.P7.;8.Q1.34.;8.34._7.Q1.b8.c8.S7.p7.34.d8.'8.E3.)8.75.e8.<7.<7.{8.|7.#6.{8.{8.)8.|7.<[.|7.|7.<[.*4.u7.85.|7.|7.&3.{).r1.L- A4.L- r1.y6.2@ p[.9@ x= C2.<: L- g$ T* x= 9@ U~ X% X, 03.3@ X% %* 8@ 5@ a@ 6@ 8@ $5.3@ 7@ a@ ** g$ f8.g8.h8.6| D6.G* I* qJ [$.~Z lS xT lS q+ h+ &$ h+ l+ |' l+ /) |^ l+ @) l+ I}.l; =, l; ;$ @) `/ (.u<.o].+[.y{.P'.L'.i8..4.h3.~4.~4.i4.~4.~4.h3.h3.O2.)3.O2.O2.k2.=2.=2.K1.F1.b1.]3.+I Rh (|.N}.RX ^+.dP R..Q .=f _ .]#.2x Cj j8.k8.l8.m8.h6.n8.o8.B7./6.B7.:3.p8.q8.7<.B[.u2.B[.n}.A:.m0 ^2.r8.^l n}.pM !}.{}.Y3.!}.H<.s8.8<.!}.m8.t8.#<.W}.;1.V}.u8.J<.+O v8.` @% x D t m w 4* ,! m t' ~# n r c ", +"R@ J$ J$ <{ ^, <{ 8S <{ <{ ]^ BN 9| 9| J$ jP V! <{ 0' G= V! <{ #S #S R@ J$ L$ <{ ]& J$ L$ # # ]& 0' X! # ]& L$ # # ]& J$ # . # + # o! > k) . > ]& & > (& $ . [* ; S$ > > $= & ' $ =' . | [* ' Q$ - ; . ; U) Q$ & | R$ ; R$ | .# | `@ - . ^ $ Q$ N$ | & & > ^& | Z! 2 | ~ ) - Z! ( | 8- 2 U$ 2 Z! ) *# < O$ { $# 2 , < x0 J= / 2 / / 6 6 *# 5 6 q> ,# / } 2 5 ,# e 0 6 6 7 ~# a a ,# e !# 0 8 6! K] ~# L= 0 K= K/ n p! ]# 2, h c % L= r E, 2, 1; 2, Y$ D % s> b' m b' t {& w8.G {& F= #] 2; z a7 /# C` A$.A$.z K z a7 a7 z z 1& a7 $T E AR AR a7 1& T^ .@.KW c- 4>.4>.4>. V =X 5 .5 ..@..@.x8.oY iU aV iU -*.-*.aV <_.*I *I qF c~._#.J~.^P ^P RT ^P Z .)Q )Q +Z +Z +Z bV -X {&.R%.+@.H&.+@.CX 0&.$).E` hT .` 9&.E` E` y@.4..G>.+` 4..:=.pY tM EX !*.B .7 ....z@.jT aX z@.%` L#.DR DR lU DR DR nW +..nW oW DR ^W oW %` sO KQ fV UT ,X PW &Z _P xY qP qP qP _P qP yM zM XL tP zM )K zM XL jK {L XL zM aN kK OA DH OA OA /I OA =u Wv ^L Pw ]E ]L rB Kk !v Kk CG if dt )v jf Ow *0 *0 Ri a9 Pd >k a9 a9 A9 Qd Qd -8 -8 }5 ad z7 V: P5 C1 w/ O3 O3 V{ d/ F~ F~ C1 V{ W' F~ F~ d/ 8) W= I~ G~ G~ I~ h' W= '{ l- H~ [= `- H~ N) z. z. N) z. [= m- z. _> m- [= y8.O) z8.F. F. A8.O) C. C. C. C. F. =8.w4.w4.U6.m& m& w4.w4.C5.r6.B8._7.P7.C5._7.C8.V6.$4.D8.;8.P7.34.s6.s6.,8.34.a8.56.$3.t1.T7.E8.p7.C3.G5.75.T7.'8.T7.'8.75.~8.75.75.{8.~8.64.|7.85.|7.|7.|7.85.|7.|7.|7.|7.|7.#5.#5.r1.v; A4.8@ C2.p[.j$ ,~.l$ l$ |@ 1@ C2.}Z f$ 2@ :1.9@ *3.7@ `% F8.3@ 04 ** 0q a@ Y% h$ ** h$ a@ b@ G8.H8.I8.J8.K8.b6.L8.)` VV }K lS /) 6> g+ k; >~ l+ l+ *, f= ;$ l; ;$ @) @) j_.;$ =, `/ @) 3(.i_.`/ t/.4^.V].z{.P'.W|.M8.Q3.TY ^q ~4.~4.~4.~4.h3.)3.)3.)3.O2.k2.=2.=2.=2.G1.01.N8.Yd (|.(|.N}.vX Wk -}.-}.e}.Vk tf y<.l+.< .O8.P8.Q8.R8.S8.^6.G|.|8.B7./6.-7./6.T8./6.s8.7<.B[.u2.n}.u2.pM n}.o}.n}.n}.H<.8<.H<.h1.o}.;[.H<.iP h1.;[.X3.Y3.%<.U8.V8.-1.v2.A[.W8.4# S z u :# w ]# p % C; h r o c *= ", +"<{ 2^ J$ <{ 9| J$ <{ 9| J$ R@ R@ L$ <{ J$ ]^ ]^ 9| #S R@ J$ BN I/ I/ I/ L$ 0' I/ 0' ]& 0' 0' # 0' + # + J$ # + = * # # [* # $ # ' $ + - $ . $ =' . # V@ & > . . V@ . H= > ; ' > > . o! U@ & . %= Q$ S$ %= - > S$ | 8- %= . . . P$ ~ - ; O$ ; ] %= & - & H= ] | X@ { { ; ] | | | U$ X@ ( < 2 | /& X@ 2 2 J= } } 6 : d 6 < 6- 3* d -# /& ( 6 5 /& ## 6 a 3] ,# 7 q> Y> 0 0 7 i 6! a L= 8 ,# z: a n n Y$ h c s> h ;= 2, h ,> Y$ ,> m ,> 4* p |& q p q /# b' 2; $S #] #] {& w {& w t z a7 E b' F= a7 W) t F= '&.z w .x .AX oY I#.5 .B$.B$.oY iU oY (U (U )Q yS qF ^P )Q )Q ^P Z .+Z +Z +Z Z .+Z Z .-X +Z |@.G&.|@.{&.d~.'*.$)..` .` E` E` .` .` +` ]&.4..E` pY y@.|Y a&.2Y 4Z z@.9 .2Y z@. +.TT 9 .jT jT vZ DR $ .jT pO nW DR ^W nW ^W nW oW ^W DR nW gQ UT H4 Z8.UT >R /P qP _P hQ _P pP _P [T {L {L )K )K )K zM {L HJ lK )K 'R Ik OA MQ OA sL NA wG =i OA OA UF Jk ]L 08.Jk ol CG Dm rs Kk `8.!v ml !i *0 Qd a9 9.A9 9h A9 b/ A9 Qd a9 Qd Qd nj }5 !1 F~ M4 O3 C{ C{ w/ O3 r) 0^ w/ V{ C{ C{ F~ V{ W{ W{ W{ V{ h' W' h' l- *^ l- m] j& z. l- l- s. s. s. z. z. [= z. s. y. ~~ [= X= F. C. C. }= O) F. F. }= D. m& .9.F. +9.r6.o- m& w4.w4.r6.o7.r6.w4.;8._7._7.P7.;8.s6.a8.34.s6.s6.s6.a8.s6.s6.s6.s6.34.@9.t7.#9.s6.S7.'8.X6.S7.'8.{8.E3.)8.75.)8.{8.75.)8.)8.$9.85.u7.&3.|7.|7.64.|7.85.85.$6.u7.#5.^; X% X% 9@ 8@ 2@ 8@ X% 8@ %9.|@ 3@ 62.8@ i$ h> X% l$ 3@ c$ 6@ GV GV l$ &9.r' f$ 6@ U* 94.8@ .& *9.21.=9.-9.;9.>9.b6.&$ *$ ,- ^) k; 6> s{ ,9.|^ 6| j_. (.n+ j+ ({ f= #F ;$ /) n+ j+ k! @) }} '9.)9.3(.l_.!9.~9.z!.l).x{. !.{9.:8.~4.~4.~4.~4.h3.h3.)3.O2.O2.]9.j2.F1.F1.G1.]3.n2.+I (|.(|.vX RX +z dP d /@._ .aK ]#.S+.hz ~%.^9./9.Q8.&;.(9.4N ^6.G|.B7.B7.j6.c7.c7.B7.:3.^2.B[.g1.g1.pM -7.:4.b[.b[.n}.a> ;[.U}.<|.h1._9.:9.g1.D[.<9.8<.z:.w_.So =1.o4.-1.d[.Z2.1( H A D z D Y$ p t n m (# ~# Z$ n ", +"98.9| J$ <{ 9| J$ <{ <{ *) R@ R@ jP #S J$ R@ R@ BN L$ I/ I/ L$ I/ 0' R@ R@ 5_ #S + + I/ 0' # % 0' p9 5_ K$ # + + # X! $ # * + $ . . # 1* L$ = = . > L$ > V@ =' & . . $ . # & S$ & ; ' Q$ ; > S$ H= ; . > > T@ R$ P$ U$ }* . > & ] & ] N$ | %= N$ W@ U@ ] A; 5- - ; ~ X@ N$ N$ X@ U$ ~ 2] T- W@ 4 *# { | => 2 2 ( => $# 5 `@.[ i 3* $# 7 ,# 6 -# $# ( a 6 J] 6 7 3] 6 $# 2* 6! ~# ,# tA 3* 0 0- B; ]c 0 0 0 0 h h s> K= h |& ,> h ]# ~# 0 L= t' 1; % h 0- 2, 4* q p 4* /# b' % w 1Z b' t t {& G G G C F= /U b' /# K . V .@. V 4>..).(#..@.v@.*I iU >*.(#.;*.*I (U I#.iU iU J[.[%.(U +-.RT RT +Z )Q RT )Q RT +Z +Z +Z 9X -X 9$.e-.H&.n;.0&.~&.0&.3@.AS hT CX E` .` .` aS 9&.hT 3Z y@.4Z ST tM #Z EX B .......z@.uZ pO z@.nP 0R DR aX pO 0R 5@.nW DR DR ^W oW ^W nW [9.FX >R 2M {O /W UT {O qP WO WO _P hQ iQ }9.hQ ^O HJ zM zM {L zM )K XL ER {L tL BH aN DH Wv NA =u Wv OA Wv Wv OA 'A Kk OA )H Kk eJ eJ rB 'A rs rs :I >k qs Ow Ri >k *0 }5 A9 A9 A9 a9 A9 Qd Qd B1 Qd ~1 |5 -8 C1 b9 r) w/ C{ C{ F~ r) V{ F~ F~ K! V{ F~ F~ W' 8) W{ X: G~ D{ L! s) p* W= s. j& H~ z> v. [= z. [= s. z. z. s. |9.s. B# A. }= J~ N7.m& }= C. }= F. 19.C. B8.=8..9..9.C. -8.8% 29.39.29.39.C5._7.s6.C5.;8.a8.s6.s6.34.s6.34.34.34.56.56.34.;8.P7.A3.t1.49.59.'8.59.R7.@5.R7.)8.75.~8.~8.69.79.{8.89.]8.|7.85.85.54.|7.&3.|7.85.%9.99.,~.i$ X% `% `% ,~.09.%9.9@ y= 2@ a9.2@ C2.z6.&3.j$ 3@ 3@ 2@ X, f$ 6@ 7@ l$ H3.Y% 8@ 1@ n$ h$ j$ y= a@ b9.c9.31.d9.e9. }.;6.e= >3. 7.l^ ;6.f9.g9.Q5.3(.k; 6> k! n+ HB HB HB HB h+ f= ;$ 3(. (.|^ l; /) Y{.3(.t/.0!.+[.z!.x{.x{.h9.m=.m=.~4.h3.h3.h3.h3.h3.O2.k2.F1.i9.=2.s$.B1.A1.j9.j%.(|.(|.XW ^+..S ~P q../@.&[.&[.m@.l+.S+.8*.:b k9.lh l9.m9.n9.i6.^6.n8.n8.B7./6.-7./6.18.Q4.t2.^2.^2.7<.s8.j6.o9..N ~}.p9.iP o}.s8.H<.0:.q9.r9.s9.k6.t9.8<.0:.u9.58.G<.C[.X3.v9.VY B1 S z I C {& D `$ 4* % r r ]# o r ", +"9| w9.], 9| <{ <{ <{ <{ I/.<{ ], 9| <{ L$ J$ 2^ 9| jP I/ G= 2^ I/ 0' ]& I/ I/ L$ L$ 0' 0' 0' # # ]& I/ 1) + 1) # # # = # # $ . $ * & Q$ + V@ # + 0' V@ > ]& > # . + # [* > V@ . ] S$ ; $= - o! > & > & > . > U$ ; S$ R$ U$ X@ 9S p9 ! > Q$ X@ ) S$ | R$ ^ Q$ ; ] *X Q$ W@ | 7- Q$ | [ X@ *# { 2 : [ ~ 2 N$ Z! N$ /& ~ 4 ( D, Z! 4 ,# Y> 6 [{ a ( *# } ( } } a a N' V) 7 a [{ 6! q> 6! 0 d 7 {# } tA 0 6! 0 ~# c s> 0- x9.c c{ n r p c Y$ ;= p 4* 4* h ~# q ,> _# Y$ b' Z$ 1Z % m ^# /# {& :# #] G w F= z F= /U F= G I a7 '&./U C a7 z '&.~& a7 H$ Q@ $T M G JW V Z 1& k1.U!.c- .@..@..@.z .4>. V .@. ` A: iU .).B..L oY B$.:#.p*..Z #N oY (U ^P _M +Z RT ^P `I +Z )Q +Z RT +Z sZ H&.'*.-X '*.0&.CX $).0&..` CX CX CX E` .` cQ 9&.4..a&.9&.pY 4Z !*.5Z l#.=S ...Y$.qY B .pO G` jT pO L#.DR ^W DR #V DR nW nW DR nW DR ]W $` ^W $` KQ !L IQ fV rO _P _P [T _P 2+.qP >N hQ hQ 'K {L y9.{L )K )K zM )K )K )K ;v KJ =u HJ >H NA Wv OA Wv Wv Wv z9.Kk UF Wv sy !v rB Jk ma Kk nl {H %0 if if 9h a9 a9 a9 a9 a9 }5 A9 Qd }5 A9 B7 l8 B7 V: V{ r) F~ w/ V{ w/ V{ O3 V{ V{ V{ W' l* F~ H, F~ h' b; H, W' A9.W' p* `~ l] (% B9.s. $~ (% [= s. z. z# <% s. z. s. |9.z. s. k& C9.D9.C9.C. A8.C. F. C. m& m& w4.r6.C. r6.m& o7.y4.w4.r6.E9.r6.C5._7.V6.D8.P7.;8.P7.C5.s6.Q1.s6.34.a8.Q7.Q7.F9.F9.c8.t1.S7.a8.W[.S7.S7.75.75.r7.75.75.G9.~8.~8.75.{8.)8.89.85.|7.H9.99.&3.|7.|7.&3.|7.I9.H3.&3.^; p[.^; x= 9@ 6@ H3.l$ X% 5@ a@ &* 04 8@ Y, (; l$ y] X% 8@ 2- 5@ `% h$ a@ .& GV #* e@ o$ w; 0@ J9.K9.L9.M9.N9.C6.O9.C6.P9.>6.Q9.D6.y7.R9.S9.T9.6| >~ I* g+ i_.l; l+ @) n+ g+ l+ |' 3(.3(.`/ a!.U9.$_.G,.$_. {.P'.V9.#'.W9.X9.F6.~4.~4.~4.)3.)3.h3.O2.k2.=2.Y9.F1.R$.TB #1.Z9.K=.{..N}.RX `9.kA e}./@.r$.]#.m@.l+.S+.^@. 0.fw lh Q8.l9.NY .0.+0.4N n8.|8.G|.-7.j6.-7.@0.Q4.^2.B[.B[.$:.#0.-7.$0.B[.n}.B[.u2.o9.iP !}.vS %0.:w &0.*0.=0.t8.-0.;0.:4.U}.<|.#<.a[.jA M4 K@ D G Z$ Y$ r }& t % r Z$ h o h ", +"<{ 9| 2^ 9| <{ I/.<{ l) .( J$ L$ *) 2^ ;b L$ 2^ jP R@ BN I/ J$ jP p9 I/ I/ I/ #S J$ R@ = I/ 0' 1) #S L$ ]& # + * + + + ]& $ # = . = # S$ [* Q$ > $= ]& # ^& $ ' V@ $ $ Q$ + ; P$ + > . Z, # . ; Q$ ; |* + > ; > *' > ] %= P$ R$ - . %= ] $= & ] ~ | 2 { N$ H= | W@ N$ 2 N$ | | | 2 N$ ) 2 xS | & Z! | 1 ## X@ { ( } 6- } 4 [ < ,# d } 7 ># 9 7 V~ *# d /& ## $# b ># 7 Y@ J] } a 3* ~# c ~# 6 ~# ~# L= n n 5` i s> r n n L= p n -) `$ n Y$ % 4* 2, n^ % % /# ,! `$ q t 4* 4* #] /# C )> w w F= 1Z F /U {& )> G F= C` F= F= 0.(=.'Q (U (U [_.[%.)Q {,.+Z RT +Z RT +Z +Z Z .bV 9X {&.|@._=.~&.'*.+@.w@.#)..` CX CX E` E` hT aS CX +` a&.|Y pY ` .CR a$.l#.5Z is 5Z CR DR +.{Q nP uZ DR nW ;X 0R pO DR DR >X oW nW /W ^W ^W cX vY &Z !L ~O qP ,0.pP &Z ES WO bR kV _P hQ qP 0N &J {L ^O yH HJ {L tP HJ uI tP lK AH tP OA NA 3M NA OA Wv =u /I sy sy Jk Kk '0.Jk Jk Jk dt jf jf %0 *0 *0 Qd }5 a9 }5 tl }5 a9 }5 A9 B7 }5 }5 14 A9 14 P5 F~ -0 B] F~ w/ F~ K! V{ r) F~ F~ C{ F~ V{ d/ W{ W' p* )' W' l- l* I~ ,) l- `- k& p* v. v. t. z. s. w. v. v. J~ m- X= v. O) z8.)0.19.C9.C. C. N7.m& C. !0.w4.O7.29.=8.C. O7.C8.r6.r6.29.29.r6..9.;8.P7.P7.s6.@9.34.a8.a8.s6.;8.s6.a8.a8.a8.a8.P7.c8.q7.b8.}7.}7.R7.)8.S7.S7.75.{8.75.~0.{8.)8.{8.{8.]8.&3.99.`% |7.99.$6.99.`% y6.C2.{0.,~.T1.X7.9@ L- ,~.9@ x= 9@ X% $5.7@ 6@ Y, 2@ X% 6@ ]0.`% a@ 04 `% h$ j$ 79.^0.6@ 0@ .& 5@ -* a@ /0.(0._0.:0.<0.[0.L3.}0.c6.{2 u] >~ G* >~ >~ c6.|0.10.k; |L t/.j( /) ;$ '] .] |' |^ t/.$_.3(.M3.20.(8.G,.+[.&_.|{.81._).30.x[.:8.~4.40.50.)3.O2.O2.k2.k2.=2.=2.s$.TB TB Rh (|.j%.V&.V&.RX f}.*}.=f o@.G%.]#.S+.l@.~#.!%.x&.60.70.80.90.zv 00.a0.K6.n8.G|.o8.^6.j6..N /6.Q4.Q4.Q4.v9.7<.b[.b[.b0.B[.B[.H<.s5.c0.g1.U}.]w d0.e0.f0.u2.a> g0.B[.g1.h0.Kb Oe 8<.i0.7Q j0.P@ D G m m ^# _# `$ (# _# h ,> n n ", +"9| *) 2^ <{ <{ <{ <{ <{ L$ <{ <{ 2^ G= ;b <{ J$ jP BN 9| #S R@ I/ 0' I/ ]^ ]^ L$ 0' I/ 0' I/ 0' # ]& I/ 0' + X! * # ]& + . = ]& + + [* [* . . . V@ . $ L$ # $ = # . & o! [* ; S$ > $ Q$ + 0' . ; $ S$ U$ | . S$ %= ; =' | ] H= | Q$ H= & W@ ] - Q$ ; ] N$ ] N$ N$ ] R$ %= N$ ! | N$ { { Z@ | N$ 4 N$ T- { X@ } { { ~ X@ 2 I= X@ Y@ { d 6 9 } 6 Y> m*.( X@ 1 d ,# k ( e $# 6 6! 3] ,# a 5 ,# 3] 3* a 0 a' |& a ;= L= 9- h h k0.x9.]# r -) p h r Y$ n^ p Y$ L= n^ 1; m t m t q ^# t w F= {& F )> 1; /# m b' D $S 1; z ^# F= z '&.#] A$.a7 z '&.n! T^ Z '&.a7 H$ c- M V Z 2Z )^. V T^ I[.c- JW Z..4>.P,..@.B..oY B$.Z..-*.B$.-*.B$.-*.iU oY +-.(U zS M7.)Q K-.+Z RT ^P 9$.)Q +Z RT bV lP H&.<#.G&.hT ~&.D` +@.2@.CX E` E` 4...` E` E` aS x@.E` 4Z |Y ` .4Z tM pY EX ^&.qY 5Z +.DR B .;X 0R pO DR 0R 0R DR ^W pO 0R 0R cX nW nW DR oW fV VT VT ~O eS /P {O {O hQ uM qP qP hQ qP WO HJ {L l0.xM tP {L kK kK HJ OK lK kK wG HJ wG NA =u OA NA BH Wv NA Jk m0.Kk sy Jk ,A rB ma jf qs qg %0 %0 a9 oa }5 a9 *0 A9 }5 A9 }5 Qd A9 }5 b/ 14 z7 |5 l8 V{ F~ F~ V{ F~ V{ r) r) r) F~ W' F~ l* W' H, ,) W' W{ D{ W' (% W= '{ )' p* `- `- W= `- z. z. s. s. B# s. s. |9.s. z. k& }= n0.o0.19.p0.C. F. m& C. C. C# o7.r6.29.r6.-8.+9.8% r6.8% V~.29.29.q0.-8.P7.P7.D8.@9.s6.@9.P7.;8.34.a8.a8.s6.@9.@9.r0.s0.75.56.X6.t0.'8.75.75.'8.u0.)8.u0.v0.)8.89.{8.$5.$5.8@ &3.&3.|7.85.&3.y6.,~.9@ H3.]8.8@ x= ^; 8@ ^; x= 3@ 1@ T* 2@ 6@ 8@ #* ** 7@ o, a@ 1@ H3.6@ h$ ** ** ,~.#* 5@ 2- w0.$* ,* m$ =* x0.y0.z0.g8.A0.B0.C0.c6.C6.{2 c6.S9.D0.E0.G* @! F0.F0.G0.|^ {2 H0.(8.|^ Y{.H0.s{ 3(.3(.10.t/.+[.M3.I0.J0.z{.o~._).#'._).K0.L0.6~.~4.h3.TY M0.)3.O2.O2.j2.=2.F1.TB 2S H%.(|.N}.j..c zc Y_.N0.O0.P0.Q0.1N 6!.R0.h6.i6.4N K6.^6./6.m4.-7.S0.T0.-7.$:.t2.H<.#<.p9.B[.B[.;[.'7.U0.vC n}.!}.:e u2.g1.u2.Q& iP .N V0.k7.#f k7.$<.W0.Ro .}.O x |{ Z$ G ^# `$ Z$ r C; 9- D n g ", +"<{ <{ <{ ]^ J$ <{ <{ <{ J$ <{ 8S <{ BN <{ R@ <{ jP L$ <{ jP G= I/ 0' 0' I/ R@ =[ 5_ 0' 0' I/ [n # K$ $ X! = # # 0' 5_ + V@ 0' $ }, + $= 1) ]& # * . $= `Y $ = & 0' . # U@ *' P$ & & ] . P$ S$ $ > U@ $ = . P$ > $ ; Z, . S$ R$ U@ N$ ^ Q$ & ] ~ | ~ T- X@ R$ U$ | Z! | $= ; 2 ] U@ ; N$ H= 2] X@ X@ X@ 8- ~ 1 H= 5 $# *# { { ~ } [ | == Y@ V~ ( } e q> 1 ## } 5 d d X0.a a Y> 5 q> e ~# } 3* 6! a d 0 W$ {# L= L= n n Y0.0- e r }& A~ L= c n^ L= Y$ s> 1; q q n^ L= p `$ ,> t /# p p m C D /# w :# )> 2; {& F= D F F= /U 2; B a7 P<./U a7 a7 z '&.T^ @= A$.8* AR JW c- M c- 1& ;O P%.5 .z :}.3# c- 3# V (#.t%.4>.*I B$.AX E].:#.;*.-*.U;.;*.iU yS (U k#.M7.)Q )Q RT +Z G&.+Z lP +@.RT +Z H&.sZ {&.sZ sZ hT AS $N {&./!.9X hT E` E` E` 4..+` 4..3Z 9&..` pY <=.qY ` .Y$.5Z 4Z N/.$ .IQ ;X jT pO pO jT 0R 0R pO fV pO pO >X pO nW vZ /W nW gK sO >R aR oW fV ES hQ uM /P !L hQ ]I qP hQ ER 'K &J kK jK yH &J {L &J yH NK )K Wv HJ =u =u =u BH NA NA Wv =u rB Dm Kk rB Kk sy CG Jk jf jf dt mj jf b/ o[ a9 a9 jf *0 tl a9 A9 a9 a9 b/ b/ O5 I0 !1 }| r) C{ ;/ r) F~ C{ C{ F~ F~ F~ H, W{ r) r) l* b; H, H, ,) h' W= n* D{ D{ K; Z0.v. (% (% X= v. s. z. X= X= z. y8.z. z. w. E. C# m& C. C# m& 19.19.F. C. 19.19.O7.r6.29.r6.!0.C8.29.r6.-8.C8.29.;8.w4.;8.;8.;8.@9.a8.34.`0.P7.34.s6.s6.a8.s6.56. a..a.'8.75. a.q7.59.'8.)8.e8.r7.69.R7.+a.&3.75.)8.~8.89.]8.|7.&3.|7.&3.04 I9.]8.7@ 79.`% #* ** 8@ Y, 6@ f$ X% 9@ 7@ ]0.Y% `% 5@ w; 6@ 3@ 8@ `<.l$ 2- }Z a@ @a.a@ .& =* o$ $* 7@ ** o$ 0@ #a.$a.%a.g8.&a.A0.*a.{2 C6.6| 6| b6.S9.c6.c6.^) ]/ =a.}0.u] -a.;a.s{ `/ >a.,a.I}.l; 3(.'a.=a.V].z{.)a.l_.o~.o~.#'.#'.k].!a.~a.6~.~4.h3.^q {a.O2.j2.k2.=2.R$.A1.TB K=.j9.(|.vX RX Bd W` R../@.4G m@.]a.U@.0k ~#.>c !%.~%.3$.^a./a.(a._a.:a. n}.]7.{}.h1.<|.U}.3a.O(.x:.4a.` I w I 2; ,> W$ `$ h m 0 h c c ", +"w9.<{ <{ 9| 2^ 9| jP <{ <{ <{ ;b <{ jP L$ <{ <{ ;b L$ R@ BN G= G= L$ 0' 0' G= 5_ 0' L$ R@ jP I/ ]& V@ K$ X! p9 I/ # # 0' + $ pH 5a.# > . V@ # > . # > [* + $ S$ > $ $ > X! ' ; > . $ ' Z, & ; - ; . Q$ |* - > - - > N$ - ; . > ; ' . ; (& ; H= S$ 7- Z! Q$ ] N$ ; | 2 ; ; N$ P$ { ^ I= { N$ 2 4 { > => { X@ ( ~ | 7- X@ X@ } N$ : ( /& Y@ 7 d ,# } 7 V~ 9 k k a' a 6 6 5 v5.3* 7 3] a e D, 0 a k k e a [& n a' Y$ c -) n p }& 0- h r h e 1; b' 1; 1; 1; 1; 4* 1; t p 4* D /# @= /# $S $S |Z 2; F= w z /U F= 2, 1Z /U '&./U a7 a7 z z $T 1& P%.1& O@ Z M c- V Z T^ T^ c- c- V z . V .@.5 .4>.I~.)^.iU YX B..`5.B$.-*.B$.iU W!.;*.k#.#N BX +).+-.^P )Q +Z a/.+Z RT H&.+Z RT Z .sZ 0$.sZ Z .{&.+@.0$.jU $).D` 9&.CX 3@.hT hT +` y@.E` .` ]&.ST 4Z 6a.2Y [#.A+.l#.B .qY kT 6N 9 .L#.L#.0R 0R DR DR LV pO nW $Z OW mU eS KQ ~O 7a.IQ >R {O IQ FX uM qP uM qP qP /P HJ /P hQ ^O )K &J yH 9C ^I xM HJ yH {L HJ kK 8a.Wv Cx Wv Wv OA Qq NA OA Wv Kw Wv Jk ty )i ol ,A Jk ma ma `8.Od !i ,2 K9 a9 b/ a9 }5 A9 A9 }5 }5 a9 a9 Qd z7 !1 !1 P5 ,k 0^ h. B] C1 r) r) r) F~ 0^ H, W' r) F~ W' V{ b; W' ,{ p* K; )' (% W' (> (% t. z> 5~ w. [= s. t. v. _> s. |9.s. s. _> y. }% 19.C. 9a.o0.z8.m& C. m& 9a.m& !0.w4.29.29.)0.!0.0a.29.;8.29.29.29.29.V6.;8.D8.a8.a8.C5.aa._7.C5.a8.s6.Q7.ba.b8.ca.d8.d8.75.da..a.59.59.@5.)8.{8.)8.R7.K5.|7.{8.69.l~.89.{8.&3.99.&3.]8.99.u0.`% ** `% X% ** 8@ 1@ i$ h$ v; *3.`% 5@ (; 5@ 5@ X% `% 6@ 3@ $* w; 6@ o$ Z% r' %* a@ a@ 9@ >* 0@ 6@ .& =* ea.fa.ga.ha.ia.37.ja.ka.la.D0. }.;6.;6.;6.C6.R9.ma.}0.na.10.>4.oa.f= k+ @! H}.Q5.j( I}. (.I}.pa.G,.y{.I0.qa.EK W:.G}.#'.q/.ra.6~.X9.:8.~4.sa.e{.h'.j2.j2.ta.ua.va.:` [i : .: .dr Wk -U R..=f Vk tf y<.^@.l@.~#.o%.!%.tb Y_.+l 3|.wa.xa._a.:a.ya.+0.[a.K6.G|.B7.18./6.q8.G|.S0.za./2.Aa.ou tv ^y Y'.,}.Ba.s8..N iP vC vC ;[.;[.k7.LP Ca.+8.7<.-1.Y3.V0.U}.U}.Da.=1.l}.Ea.LW P@ N :# 4* p f f h r Z$ n e r ", +"*) 9| ;b <{ J$ 9| 9| <{ ], 2^ 9| <{ 9| ]^ ]^ <{ L$ BN R@ jP J$ I/ ]& I/ L$ 9| I/ I/ I/ BN L$ 0' 0' Z, # $ 0' I/ # # # # + # $ + + = + = . > * > > # 0' . + . $ V@ > [* S$ S$ T@ + S$ U@ > $ # ^& > N$ & Q$ * > ; * Q$ . U@ ; & ; [* N$ ; > ; ; T- R$ ~ N$ ) | 8- ~ ) | U$ N$ ~ 2 N$ ) J) R$ 2 ~ ## 2 | 5 : } 2 [ 7- 4 { 5 } 7- 7 Y> M' i ># 7 } < [ Y> ,# k 0 V$ k ,# a 8x z: ,# 6! k ,# ( 0 j A~ 0 n !# |& e 6! ;= ~# }& ~# L= p p ;= -) Y$ L= ,> ,> n h G#.4* t m @= D 4* 1; C /# b' *].y b' m u 4* w $S F= m /# /U #.'&.F= a7 z .4>.{[.(#..@.o*.;*.-*.I-.;*.B$.>*.-*.-*.-*.(=.#N #N (=.)Q RT )Q )Q RT )Q )Q +Z +Z )Q +Z G&.G&.1@.RT e-.+@.q*.AS hT CX J#..` .` CX .` .` y@.E` /!.+` ST pY 2Y tM %@.CR qY l#.Y$.&@.nP G` z@.jT 0R 0R 0R pO pO nW nW nW nP DR DR FX nW fV UT rO UT >R /W /P WO mT qP WO WO rI !L }9.}9.iQ )K kK &J {L {L )K )K yH HJ HJ kK Wv Cx Wv NA Wv Wv NA OA =u NA NA (I 'A ma lj ll rB Jk ma ma qs if nl Kk oa }5 A9 }5 }5 }5 a9 A9 a9 }5 a9 B1 O5 O5 r) r) V{ ^> O3 F~ r) r) r) F~ r) r) r) r) V{ B] F~ U= W' W' h' K; ,{ (% H, ,) W= [% z. (% (% s. s. v. v. v. s. v. v. y8.y8.v. B# p0.m& N7.C. 19.19.}= m& C. C. C. +9.29.C8.m& q0.q0.w4.V~.P7.29.V~.C8.29.V~.V~.P7.@9.D8.@9.@9.P7.s6.b8. a.Fa.b8.b8.a8.Fa.89.G9.@9.59.'8.{8.)8.89.89.)8.Ga.89.89.{8.#6.I9.H9.~8.|7.85.Ha.`% `% |7.&3.8@ 9@ 04 6@ T* y6.C2.8@ 9@ 8@ T* 8@ y] l$ 7@ a@ 94.a9.-* a@ a@ Ia.$* y= 0@ h$ .& ** ** l~.o$ ;* .& Ja.Ka.La.Ma.*a.Na.e9.P5.;4.}0. }.L3.R9.37.Oa.,5.Pa.Qa.Ra.Ra.6| M{ @) @) Sa./) Q5.Ta.U; 3(.Y{.20.e4.z!.z!.2(.b'.s/.Ua.#'.Va.Wa.X9.5[.Xa.~4.^q O2.O2.j2.=2.ta.va.E*.Zg [i {..j..(d dP R..=f _ ..s ]a.l@.~#.@$.>c !%.Ke :b $(.=d Ya.(a.Za.Za.:a.`a. b.a0.[a.i6.^6.G|./6./2.-7.j6..N :3.Y'.ou ^y ]n .<.C<..<..b.^2.b[.b[.!}.!}.H<.H<.+b.@b.7<.$<.^_.0:.,[.Da.8<.0:.^_.n6.w` #b.z N ^# /# Z$ vA ^# `$ ,> e $b.,# n ", +"9| ^, |1 jP <{ 2^ <{ <{ J$ J$ l) J$ <{ ], J$ 2^ L$ 2^ <{ J$ L$ I/ ]& L$ I/ ;b I/ I/ 0' 0' I/ 0' 0' Dv # # I/ #S + # # # % # p9 = K$ # & $ + * . $ $= # p9 0' & $= ' > - # # > $ # P$ P$ ; |* T@ O$ ; S$ H= %= U$ & > ; > $ ^& - H= U@ |* & ' ^ ~ N$ ~ ; * %= & & 7- { 2 N$ ) ^ N$ Q$ | [ J) X@ 2 X@ X@ W@ *# => 2 2 { +# 7- 5 2 $# / <& ,# 6 M' 6 9 Y> 3* [ 6 ,# $# d d k } ,# 3* 6 ,# d Y> d [{ ~# e 6 ~# ~# L= a c i d L= 0 ~# n h h Y$ -) ]# Y$ Y$ r n^ % % m ,> #| `$ p /# D t t )> t 2; {& t b' E z F= C /U F= ^# /# *].P<.F= /U z a7 A$.1& $T 1& M 1& '&.AR V T^ 2Z V M c- V 4>..@. V c- QT HV >z x .B$.aV (#.:#.B$.B$.-*.B$.-*.k#.yS G$ k#.BX ^P )Q )Q RT ,*.+Z +Z RT )Q Z .RT G&.+@.H&.sZ e-.7` ~&.CX E` AS CX CX hT .` J#.|Y y@.E` +` y@.4Z |Y D..EX D..5Z ` .#Z CR &@.6N B .$Z nP DR 0R 0R pO 0R >X FX pO ^W nW nW nW nW FX /W 2M UT /W WO 2M /P uM /P /P !L WO rL uM qP jK VL &J >N yH ]I HJ yH yH NK yH =u =i OA Qq NA /I Qq uI Qq Wv OA (I Wv (I Jk rB Kk Kk ll J9 &0 nl ;k rs %0 }5 }5 }5 A9 o[ a9 A9 a9 a9 a9 B1 !1 O5 V: B] K! B] F~ 0^ r) r) h. K! V{ F~ H, F~ V{ H, F~ s) W' W{ `~ b; H, (> p* b; (% (% l& <% (% [% v. t. z. s. v. v. v. y. v. x# s. |9.%b.%b.9a.C. )0.19.m& m& 19.m& m& q0.r6.m& 39.29.29.C8.-8.39.V~.&b.39.C8.*b.39.D8.b8.a8.b8.D8.34.a8.=b.a8.b8.@9.b8.-b.;b.v0.@9.s0.{8.u0.89.)8.79.75.89.{8.]8.{8.89.$5.89.75.&3.{8.8@ I9.&3.H9.&3.04 9@ 7@ a@ H3.v; ,~.04 9@ 2@ 8@ 6@ 04 &* a@ o$ l$ m$ w; y= 7@ o$ '* ;* 0@ >b.#* -* a@ n$ h$ X% h$ ,b.'b.)b.d9.e9.!b.x7.~b.{b.b6.b6.c6.;6.{b.]b.O9.^b.L3./b.|0.6| 7.m+ l+ /b.>4.R9.(b.U; l+ j_.'9.>a.y{.X)._b.:b.81.:b.)4.+.p@.@$.4$.7f !%.Ac :b !=.1b._g 2b.Za.3b.4b.5b.X>.6b.7b.[a.i6.i6.n8.B7./2.8b.9b.:3.6b.y:.^y ^y ^y [x vj y:.`H `2.$:.]7.!}.G<.#<.G<.z:.|5.s8.$:.0:.D[.o4.D[.8<.^2.,[.0b.Q!.ab.S {& D m ,> r 1; :# h a a' ~# V$ ", +"z~ *) <{ $8.9| 2^ <{ J$ <{ 9| <{ J$ <{ J$ L$ R@ ;b 2^ 2^ 2^ BN L$ I/ I/ I/ 0' ]& I/ 0' L$ I/ 0' 0' 0' + # 5_ p9 L$ $ + ]& + # p9 0' L$ ]& $ $ + $ ' > # & > ]& ' & $= $= 1* $ [* %= - U@ P$ ; [* . $ N$ > S$ $ ^& $ %= O$ N$ ; o! Z3 & ; > | N$ N$ ~ U$ *' +|.] N$ | { ~ Z! ; 2 N$ N$ | /& N$ R$ U$ N$ *# / Y@ X@ ~ U@ 7- ~ { | 1 { ~ 5 a [ <& 6 < d d &# d 3* 2 D, ( [{ q> V~ $# 7 ,# 3] a k e W$ J] 3] !# K/ 0 2* 0 tA ~# ]# !# a L= L= -) p n {# h L= h p 2, ,> ,> b' `! Y$ m t t m '> bb.,! q D b' t {& {& m E G F= E /U $S w z z a7 '&.a7 '&./U 8$.cb.a7 A A n! ,/.AR c- Z M V .@.c- .@. V .@..@. V y .0S _+.x .B$.MW -*.aV *I iU iU -*.B$.(U BX zS l1.yS #N RT RT K-.a/.+Z RT +Z +Z +Z sZ H&.lP 1@.R%.|@.AS hT #).1@.CX hT .` .` hT 4..3Z 9&..` +` 3Z |Y ST ^&.@Z 2Y ~W ~W [#.CR @` pO L#.L#.0R eV pO DR DR pO LV DR DR DR 0R DR pO oP eS IQ rO db.LV >S sO 2M 2M /P /P uM rI yH WO WO yM HJ ^I >N 'K PK )K ~I ]I ]I -H ;v Cx NA wG NA =u NA NA NA uI ;v NA Wv =A ml Kk qs hf hf ma &0 qs ol jf mj *0 o[ }5 b/ b/ a9 }5 b/ b/ }5 B7 }| O5 z7 O3 0^ 0^ 0^ w/ r) h. K! F~ F~ K! F~ r) F~ g& F~ || W' H, H, V= V= V= o. H, p* (% eb.s. t. <% 35.z. s. s. t. 1% 1% y. w. s. w. _> fb.)0.o0.9a.C9.p0.9a.gb.19.m& 19.O7.0a.q0.29.O7.0a.0a.C8.39.29.V6.-8.V6.V6.hb.;8.@9.@9.a8.@9.P7._7.D8.@9.s6.b8.b8.b8.-b.59.ib.-b.jb.kb.v0.69.59.69.{8.da.lb.]8.79.89.89.{8.Ia.Ia.99.89.8@ `% `% Y, 9@ `% Ia.6@ 9@ ^; ,~.X% y= 04 5@ h$ o$ I9.H3.Ia.C2.a@ 1@ o$ ** `% Q9 8@ g@ =* 0@ w; m$ m$ Ia.h$ 34 mb.H8.nb.B0.Qa.;6.ob.~b.6| c6.pb.qb.l^ rb.na.b6.6| pb.b6.6| g+ ;$ `/ (8.Ra.}} f= ra sb.`/ M3.V_.I0.o~.u[.-4.Y:.V9.u/.tb.ub.K!.X9.5[.^q )3.vb.}b.|~.G1.wb.xb.U` t` YQ dr ZM -}.mk P}.,g >+.l+.0k o%.o%.,c Ac ~%.yb.!=.zb.ac Ab.xa.xW Bb.Cb.Db.Eb.*7.a0.4N h6.i6.m8.$m Fb.Gb.Hb.z[.x:.vj 2G vj wv wv vj vj S8.B[.;[..N o}.;[.;[.Ib.28.^2./2.A:.,[.=1.Jb.Kb.#<.Lb.Mb.Nl XP A G w :# p Z$ h p s> g c K= c ", +"*) z~ 9| 9| 9| 2^ <{ L$ <{ <{ <{ jP ;b R@ ]^ <{ (}.J$ R@ I/ I/ 0' 0' L$ I/ 0' L$ BN L$ R@ 0' ]& I/ I/ = # + 0' 0' * # + = # + = ]& # + [* * * $= # Q$ S$ S$ = =' > > . }* T@ . . $= 1* V@ + Q$ & $ - |* & Q$ |* > . U@ - P$ U@ & Q$ . N$ T- & = - %= H= Q$ X@ ~ %= | { 4 X@ ] N$ 2 | 2 { | 2 { *# d / 2 2 ~ %= X@ [ [ 2 | X@ *# Y@ d 6 <& ~ d i Y@ a Y> 9 d 9 } d a ># 7 a m*.8 0 k a 8x tA q> L= 2* ~# L= |& 6! K/ !# L= 0- h n ;= n {# }& Y$ 1; r 2, ),.`$ 1; h l _# b' G#.b' % ^# D w q Y$ % F= E )> w {& F= D /U t :# B F= z a7 F= z a7 '&.P<.8$.,/.JW O@ AR Z m;. V c- V V V .@.4>. Z .@.c- .@.5 ..@..).:#.A: -*.iU *I *I aV oY I#.oY (U yS XX F>.^P #N Z .RT RT RT RT ^P )Q ^P Z .G&.9X 1@.+@.H&.2@.2@.CX 0&.+@.CX hT hT CX hT 4..]&.E` +` ]&.|Y |Y ` .2Y [#.z+.CR [#.qY Nb.uZ jT `..0R DR 6N 0R pO pO nW DR pO %` LV pO DR DR ^W /W FX UT UT IQ fV /P /P WO uM >R /P 'K 'K WO }9.9C ^I ]I >N yH kK NK yH xM wG PK =u =u -u =u Qq =u NA =i wG OA =u zH /I z9.Dm mj Jk hf hf %0 qg 'i %0 ,2 na }5 }5 b/ }5 }5 b/ b/ a9 na ~1 4~ }| }5 B1 0^ 0^ 0^ w/ w/ r) K! K! l* r) 0^ F~ l* W' V: C{ F~ g& H, s) 8) l* K; p* n* p* (% v. v. [% u. l& v. v. s. u. t. y# v. t. v. }% }% n0.C9.p0.19.19.m& p0.19.19.19.B8.Ob.29.39.O7.q0.0a.0a.29.29.D8.P7.$4.D8.Pb.`0.@9.D8.@9.b8.D8.&b.P7.@9.Q7.=b.b8.=b.=b.49.49.Qb.;b.R7.W[.kb.j$ 59.{8.94.h$ 89.5@ 79.99.`% ^0.&3.l~.Rb.~0.Y, a@ i$ l$ 04 6@ 9@ Sb.U~ j$ I9.** 99.$5.6@ ;* Rb.** h$ X* X* l$ /M o$ a@ h$ 0@ .& ** o$ ;* -* .& X* 0@ As Tb.`6.*a.ja.Ub.{b.oa.Vb.>~ C6.Wb.b6.6| >~ C6.D6.6| c6.S9. }.(8.>6.@) Xb.Yb.20.3(.Sa.Zb.J0.H}.L3.C(.z!.W|.A(.`b.(<. c.c}..c.U5.K!.F6.F6.)3.vb.Q2.+c.@c.#c.]2.[i : .dr i..{2.Y+.SZ .s l+.:d ]@.^@.o%.Ac Ke :b a(. :.'c xh td $c.(a.%c.3b.5b.W@.&c.*c.=c.-c.h6.a0.4N ;c.>c.,c.'c.)c.8:.xN 2<.7/.2G eE x:.!c.b0.~}.]_.H<.8<..N iP ~c.{c.48.]c.p3.=1.O(.rv f(.w_.0:.^c.kM /c.I C m Z$ p ^# Y$ C; }& *= h c g ", +"<{ 2! 9| 9| <{ 9| ], J$ I/.<{ <{ I/.(c.l) ]^ 2^ ]& J$ 9| J$ 2^ 2^ I/ G= L$ 0' 0' BN R@ 0' 0' G= I/ 0' 0' + # X! 0' V@ K$ # + # * L$ + ]& + [* ' # . $ o! ' S$ ]& ]& ]& # . $ - + $ . S$ & # . & > T@ - }* . Q$ ; Z, Q$ U@ . - %= > & Q$ $ > o! & Z3 ~ ^ ~ | ] N$ ~ /& | | %# /& ~ | X@ Z! X@ 2 P$ { & ~ X@ } ) Z! [ } 2 [ 2 2 *# [ } <& => Y@ d $# V~ Y> ,# 7 3* 6 a 8 b 7 a k q> 6! 0 6 d {# 0 0 0 _c.6! L= {# W$ 0 E, c ]# s> 2, h {# t' c{ L= p p s> Y$ q ,> n^ p #| b' G#.@= @= D 4* 1; D 1Z ^# C C w w E $S f^ F= /# 2; F= F= a7 F= z '&.C` '&.'&.AR AR H$ $T $T !,.c- c- M V c- V .@.=X V V V x . V v@.4>.Z..SO AX (U oY aV A: oY *I aV k#.RT k#.+-.BX lP RT +Z Z .+Z RT RT RT RT bV 9X D` 0&.G&.e-.7` hT '*.7` AS hT CX .` hT .` 3Z 3Z 4..+` y@.]&.ST `X CR pY qY qY ~W 5Z +.0R &@.0R 0R 0R DR pO pO 0R nW nW nP :c.nP pO FX nW oW nW mU &Z mU vY VT WO /P /P WO qP aR >N /P }9.tI HJ HJ LQ ]I &J ]I Ik yH {I zH 8a.NA uI =u =u =u =u =u NA NA 8a.Wv NA ]E Kk lj Jk ma ma %0 qs ml if &0 ,2 o[ o[ b/ }5 b/ b/ }5 H^ b/ b/ k] 0^ B] /} B] c ,c Z_..$.0(.fc.xh gc.td hc.2b.ic.Bb.TH jc.kc.87.lc.mc.a0.*7.nc.[a.B7.}8.j}.9[.x:.xN (3.i}.eE ~F 8:.oc.pc.`] H|.8<.0:.H<.^_.qc.W5.z:.]_.0:.=1.-1. Q$ + k) ; V@ = ]& |* . $ # V@ Q$ + 1* > |* = & ' ; |* > & Q$ > . Q$ & U@ . > o! 5- ~ . ^ Z! & U@ & Q$ X@ ; N$ # ] N$ ) N$ 4 ] J) [ 2 4 } ~ /& 2 ] { | 1 [ xS *# J= ( ## { } $# /& ( 4 [ [ Y@ 6 ~ Y> 2d 6 6 6 } } ,# ,# 6 ,# k 3* D, 6 N' ,# k 6! e |& {# {# z: ~# c ~# a ~# L= n e 0- A~ h s> n -) y2 `$ `$ `$ #| Y$ ,> 4* V| q s> $] 5* @= :# |Z t G :# w /U $S $S q a7 w a7 z F= a7 $.+Z 9$.<#.Z .H&.|@.H&.AS hT +@.'*.AS .` E` AS .` .` aS aS E` +` +` 4..|Y %@.qY pY #Z 5Z tM D..&@.0R uZ 0R kT pO uZ 0R #V 0R pO pO pO pO OW LV IQ mU pO FX mU sO KQ nW WT WO WO /P >R /P /P rI WO WO !L 9C yH 4C ]I HJ ]I NK wG {L NK wG ;v -H -H Qq =i NA =i =u =u =u (I NA sc.hf Yf J9 ma ll Ve %0 J9 3e %0 &0 a9 o[ H^ b/ na b/ b/ o[ }5 }5 -8 k] |4 z9 }| h. h. x! B{ K! r) B] h. r) r) K! l* l* K! H, g& l* W' x! s) l* tc.i& n* uc.(% n* (% r. y> y> v. v. t. t. y# v. v. v. q* u. |% fb.vc.x. fb.wc.gb.19.gb.19.19.9a.xc.C8.0a.0a.}c.xc.0a.39.xc.C8.yc.P7.zc.`0.V~._7.a8.P7.b8.&b.D8.b8.@9.b8.b8.b8.=b.Qb.Fa.e8.Ac.Bc.Cc.I3.e8.89.69.69.u0.$5.89.]8.Ga.99.79.99.h$ 6@ 6@ 06.lb.$5.8@ &3.y= 5@ ** 79.a@ `% `% a@ l$ $5.y] o$ Z% ** Rb.$* 6@ Y% a@ o$ .& =* n$ o$ e@ .& o$ )* Y% =* A= Dc.Ec.Fc.!b.6| Gc.Hc.}0.>~ e= 6| 6| ]/ R5.D6.>~ C6.C6.C6.g9.C6.Q, Ic.Jc.10.,9.10.g9.Kc.^b.q].u[.[].|/.'5.'5.b'.Z^.5(.tb.ac.Lc.X9.i4.:8.j^.j^.Mc.Nc.Oc.E*.Zg M0.YQ (d Q..{2.4G $$.VW x#.^@.~#.fw Pc.tb ~%.:b !=.zb.Qc.Rc.vh kH Sc.Tc.Uc.7T cI ^Z q>.Vc.Wc.}a.R0.Xc.Yc.>[.o5.Zc.h6.`c.8:.xN +:.R!.P*.P*.2G }a.51. d..d..N ^2.G<.!}.o}.b[.3a.%:.+d.o0 '[.@d. 3.9w o4.#d.+K $d.K@ G F= % t `$ Y$ p n 2* 2* g c ", +"], ^, 9| 9| <{ <{ *) 2^ <{ 8S <{ 9| <{ =$.jP 2^ R@ <{ I/.jP J$ 9| G= [n ]& R@ p9 I/ ]& I/ 0' L$ I/ I/ 0' 0' # # I/ I/ + 1) # [* ]& + * k) V@ ]& }, 0' # ]& V@ $ {c > + p9 # ; $ = - $ 2) ]& > P$ S$ > H= S$ > + ; > . ; N$ Q$ > & $= H= ] N$ U@ S$ N$ o! . & R$ & | ; S$ 2 { X@ ## N$ *# ; 8- ) Q$ 7- } /& ] /& +# 2 2 W@ < 8- < 6 ( } 4 /& 6- } ( ( ( ( ,# ( ,# tA Y> } 7 2 J] 5 a a /& k &# 0 0 b 6! 0 K] 6 a e c 6! 0 c L= 0 z: L= L= h A~ s> h r n p p! s> %d.p 1; 2, ,> 4* m ^# $] G#.m b' ^# {& 2; :# /# G /# )> {& /# B 2; F= a7 F= C a7 E /U [2.z a7 a7 A$.n*.A $T z KW V ;O T^ .@.M A m;.c- (#.4>..@.(#.4>.4>.o*.aV oY aV *I I#.-*.aV *I L aV oY M7.(U .Z #N )Q )Q )Q +Z +Z RT RT lP RT sZ 0$.|@.H&.9X AS /!.3@.1@.3@.CX AS hT CX 9&.CX FN CX CX +` E` |Y ST EX pY &S CR CR tM 5Z lT &d.jT ~W pO 6N nP fK 0R 0R DR DR nW pO pO pO IQ eS 9N /W >R rO uM gK rO uM uM WO /P /P >N }9./P qP yH PK 9C ]I yH 9C 9C wG HJ zH {I HJ ms ^I wG NA =u =u zH Qq 8a.Kk ls *d.08.hf ma qg ma Jk L4 ol ol %0 &0 y9 b/ b/ }5 a9 b/ }5 }5 o[ a9 O5 // ^] N] U/ K! h. K! h. h. K! K! K! h. h. K! f. x> '{ H, l* l* f. =d.g& /% 8) n* w# /% -d.(% (> v. r. z> v. t. t. t. := q* x# }% u. ;d.x. y. 19.19.fb.o0.%b.9a.9a.19.>d.9a.q0.r6.C8.0a.0a.zc.0a.0a.V~.0a.C8.&b.D8.&b.Ob.V~.b8.D8.=b.Pb.aa.Pb.=b.b8.@9.b8.Pb.Qb.=b.Fa.,d..a.;b.{8.W[.)8.I3.I3.{8.)8.u0.89.89.W[.j$ 6@ $5.H3.`% 5@ 89.99.Y, 6@ 3@ Ia.9@ H3.6@ w; T9 k$ o$ &9.8@ e@ Y% 6@ 5@ .& .& e@ ^0.0@ n$ Y% o$ ;* ;* 0@ o$ =* 0@ m$ 'd.)d.B0.!d.~d.6| <:.~b.l^ G* C6.l^ l^ D6.>~ L{ G* l^ C6.6| b6.c6.Z] Q5.{d.I}.G,.=a.Pa.]d.Z^.^d.V9.u[.Pa./d.(d._d._d.]d.:d. # S$ > U@ > . k3 - $= . o! > U@ %= & %= > . R$ U@ %= U@ |* S$ =' T- | . U$ R$ T- & ; f] | X@ { %= %= U$ J) /& { | 2 { 2 ) I= ( { <& { } d 2 } $# V~ *# : 5 d _ 9 k 7 ,# k ( 7 G9 ,# } d a } $# Y> 7 vk [& a {# 0 ~# d d *= ,# k L= e a 0- n -) n n s> |& p r n % n^ 1; /# 4* 2, ;= #| Y$ D b' b' D 4* Y$ `$ % 4* w w /# {& F= F= {& G F= a7 F= E '&.a7 A$.a7 a7 '&.a7 '&.'&..-.JW 1& HV Z c- T^ KW Z .@..@.c- V V V 4>..@. V 0S AX A: *I oY A: B$.I#.iU *I A: oY XX y+.yS )Q )Q RT RT RT RT RT ^P RT +Z +Z Z .G&.w@.+@.AS 1@.+@.1@.'*.CX hT CX .` CX hT CX 3Z CX CX y@.DX y@.tZ qY 2Y EX qY dS ed.`..uZ 6N 5Z 0R 6N fK DR VO DR DR nP pO pO DR IQ 2M KK sO pO lU uM 9N 2M KK 2M /P /P /P /P yM 4C uM WO 9C ]I )K ]I rI ~I ]I ]I HJ xH ]I ^I NA zH -u Qq =u =u =u NA NA *d.(I ls =u hf Dm 3e Dm (I qg Od fd.%0 %0 &0 na o[ b/ }5 b/ b/ a9 o[ b/ X~ -/ B1 14 A1 4~ r) K! r) h. K! Z- F~ K! K! F~ l* H, H, l* l* l* H, l* l* v# J; gd.n* <= j. K; )' t. <= w# t. t. v. t. x# x# t. x. hd.u. |% hd.gb.m& m& 9a.o0.9a.9a.gb.m& >d.q0.C8.0a.0a.29.id.C8.Ob.`0.D8.C8.&b.&b.jd.Pb.`0.&b.b8.=b.D8.&b.D8.b8.b8.b8.=b.=b.D8.Pb.=b.ca.Ac.kd.Cc.79.75.89.69.94.89.89.89.** 99.{8.{8.79.&* {8.j$ $5.5@ ]0.&3.6@ `% &* Ia.$* y= %* &* k$ 6@ h$ a@ ;* m$ Y% 5@ %* X* o$ h$ g@ z= 5@ =* y; h$ X* >* t$ e@ }= B0.+! a+ 7+ u~ Qa.)d.l^ F* d+ F* i, l^ ^) rb.O9.e= D6.D6.c6.ld.)- Q, }' g+ 3(.ma.md.^d.T:.&'.x1.`^.%_.nd.od.pd.C{.GQ qd.rd.t3.sd.i4.)3.td.Mc.ud.}d.dc.==.t` YQ vd.wd.Y+.SZ .s l+.U@.~#.< .!%.tb S.. :. :.'c yh yh yh %e xe Y_.X=.xd.yd.Bb.xW HL zd.Ad.Bd. b.R0.R0.&7.[a.c7./6./6.X5.Cd.;7.Dd.Ed.]n 1a.s8.;[.pM Fd.O+ pM ^l n}.;[.n}.U}.;[.H<.`] Gd.Hd.Id.Jd.[q ku d(.Kd.Ld.H G `$ `$ `$ `$ 8 Y$ v *= e e K= ", +"^, *) *) 9| <{ 9| <{ J$ J$ <{ <{ J$ J$ L$ I/.J$ R@ R@ ;b J$ J$ J$ ]^ I/ I/ ]& ]& 0' 0' 0' I/ I/ L$ L$ I/ K$ I/ 5_ 1) = 0' $ # L$ + ]& $ ]& = + . # + + > > = > . o! # $= . Q$ . . o! L$ + ; A; P$ > - > N$ ] 5! N$ + |* & ; ~ > S$ & N$ %= S$ U@ > U@ & ] & | H= > ; Z! ) W@ Z! ; ] Z! N$ { ~ X@ X@ { 2 4 1 2 2 / { { < < D, ;# 4 1 2 9 ~ => 7 7 a 7 a c6 &# ( $# 6 } $# 6- [ Y@ 4 6 a k $# ~# 6 ,# 9 d 6 e 0 3] i 0 ~# L= s> n h ~# y2 E, E, c s> % 1; ,> q 2, p #| Y$ t ^# Y$ Md.D m m 1; /# @= F {& 2; :# E {& E /U /U a7 G F= a7 P<.F= F= '&.[2.A$.a7 a7 KW $T 1& T^ 0S A I T^ Z T^ M V c- .@.z .0S v@.~,.I-.Nd.3& -*.iU B$.:#.I#.*I (U A: )Q .Z k#.+-.)Q RT +Z ^P )Q )Q )Q Z .+Z RT bV 9X 0X w@.-X hT w@.2@.hT AS AS hT AS CX .` CX BS .` .` 3Z aS pY DX #Z @Z tM CR 2Y EX qY qY nP `..5N 0R 0R nP nP lW pO $Z lT 0R %` lU ;E LV FX sO 2M uM vM KK uH 2M /P uM 2M rO !L rI yM gQ yH >N yH hK tI *A Od.tI ]I ]I NK ^I -u Ik xH =i =i =i =u NA =u -u Kw fo =i (I ma ~b lj Pd.ll %0 Qd.&0 &0 L4 ,2 o[ b/ b/ na }5 H^ }5 b/ U/ 14 |4 z{ A1 V: K! K! K! B] r) B{ K! r) r) F~ K! i. l* g& K! x! x> i& gd.T= n* =d.w# K; 8) l. w# t. q* o. x# t. l& := t. t. t. s. w. x# u. hd.}% 9a.o0.9a.Rd.>d.gb.9a.9a.gb.9a.Sd.9a.id.0a.0a.29.0a.C8.D8.zc.`0.&b.&b.=b.D8.D8.b8.ib.&b.&b.Td.b8.@9.b8.b8.b8.Td.Td.@9.06.,d. a.Ud.{8.Cc.{8.&* 94.u0.u0.89.$5.79.** #* h$ ** 8@ 6@ $5.8@ `% l$ a@ 6@ o$ a@ ;* y= h$ 3@ 5@ l$ Z% h$ .& o$ >* .& 0@ ]0.,* 6@ z= e@ 0@ e@ )* =* >* =* e@ g@ c! Vd.e+ R! 7+ J& K> b+ K..m&.4u _S 6W VV d+ ^) c6.j; e= l^ 6| j+ .Q *, n+ &, k! f9.c5.Z^.T:.^d.F!.2:.[].Wd.9c.2(.Xd.Yd.Zd.`d.,|.sd.h3.O2.td.ud. e..e.+e.M0.@e.YQ vd.R../@.SZ tf p@.l@.o%.o%.!%.~%.#e.$e. :.xh yh #H #H #H &e ti Q0.'q Bb.%e.cI TM w/.&e.Bd.*e.7b.=e.R0.h6.:3.Q4.-7./6.X5.>7.-e./6.q8.m4.~}.pM b[.d7.p9.)}.^2.o}.o}.n}.U}.G<.,[.^l p5.f(.'[.E[.x_.;e.V0.O(.v_.V Z$ r b' % `$ g e 0 e c W$ o ", +"9| 9| <{ 9| *) 2! jP J$ J$ 9| 9| 9| ]^ <{ (}.<{ J$ 2^ BN J$ .( R@ G= ], BN R@ J$ BN ]& ]& G= I/ ]& ]& L$ I/ 0' + # $ 5_ + # # ]& ]& V@ * Z, }, #^ $ $= # & [* =' + > [* . + $= S$ Q$ $= N$ $ > > S$ U@ > S$ > ,Q U$ . S$ = & U@ Q$ > ; > = U@ X@ > $= | S$ Z! ~ ; S$ # f] { | [ /& 7- & `@ S$ & ] [ H= R$ U$ ) } ~ ( Z! T- { X@ ( ~ ## /& { Y> $# $# 4 d M' 6 / c6 &# ,# 3* d | 6- } } d ,# 7 Y> 0 c6 L= Y> !# {# k 6 ,# 0 e ,# Q{ ~# o L= c >e.n &].n K] Vj Y$ p Y$ % 1; n r n ,> ,> 4* 4* D ),.#| G#.1Z t t Q(.#] E G t {& w {& {& F= /# a7 F= z a7 '&.'&.'&.z AR 8$.AR z 8* M (e.bY _e.:e.k^ @$ #.5E F* CP d+ RJ BU BU JM q+ G0.}0.+1.}e.|e.[(.Ua.Pa.q].w|.G}.2(.1e.2e.3e.4e.5e.6e.7e.j^.Mc.Mc.oR va.8e.==.9e.wQ ~U d =f SZ VW c#.U@.fw < .Ac Ac 0e.0e.$e.1b.yh yh #H wh ub xe !#.ae.Za.rR %e.cI be.)>.ce.de.ee.{6.fe.[a.i6./2.c7.F<.ge.c7.j6.;c./6.he.:3.ie.je.;[.ke.!}.s8.!}.#<.!}.;[.!}.,[.e(.G<..N |5.rv 8~.e[.le.+8.=1.~}.;. m D G Z$ p o p g Y$ h e e ", +"9| 9| 9| <{ 9| q, jP J$ 2^ 9| 9| <{ J$ <{ 8S <{ <{ 2^ L$ l) .( BN G= <{ <{ I/ 9| 9| BN I/ BN L$ 0' L$ 0' 0' p9 ]& # * 5_ 0' # K$ # R@ # * ]& #^ # [* + . 2) # # . S$ . k) $ S$ ' $ . Q$ $ S$ # ; S$ P$ S$ $ T@ . U$ S$ = . ] & . U$ ' L$ 05 R$ X@ U@ R$ U@ > %= ; ! N$ ] ~ Q$ ] Q$ 'W & R$ | ; 2 # N$ 2 { 4 /& } 2 ~ ~ %# /& { 2 : < { ) ## < == 1 ># $# Y> D, Y@ 4 3* [ %m *# 6 5 6 Y> 7 1 ,# &# q> 0 7 6! 3] 6! 0 !# c b 0 !# e e ,# n 6! L= p r ;= }& % % o `$ c _# o h ~# q m ^# 1Z $] G#./# t Md.4* b' t w ^# {& w /# /U z w F= E z z '&.z a7 a7 $T a7 E z 8* Q@ T^ O@ V M >z c- Z Z c- V V V KW c- 5 ..@.z .z .L *I iU i5 A: *I A: *I -*.:#.y+.yS (U A: #N RT RT #N RT Z .)Q R%.RT Z .lP sZ <#.9$.@N hT AS hT {&.3@.hT hT .` hT hT hT +` .` .` 3Z _U pY |Y %T %@.pY dS ST #Z qY 'O 0R ~W fK pO VO fK fK nP nP ^Q 0R pO 0R pO >X lU KK KK 2M WO 2M 2M uM 2M /P LQ >R WO /P rI LQ /P 9C ~I {L ]I 9C 9C ~I tI yH ]I -H 9C ;u Wf 8t Cx Qq Qq Qq Qq Qq =i Qq Qq Qq =u H0 H0 hf hf H0 %0 qg M3 &0 %0 b/ b/ o[ b/ b/ o[ H^ j{ b/ b/ -/ B] X~ c/ 4~ K! K! K! K! h. h. r) K! K! K! f. l* l* g& h. g& l* g& x> j. l. u# n. n. x> o. o. <= x# q. t. x# x# x# x# t. t. !e.x# t. s. := me.ne.o0.hd.~e.19.9a.19.gb.gb.gb.>d.0a.id.0a.0a.id.29.0a.Pb.id.0a.Pb.yc.`0.&b.D8.Pb.&b.Pb.Pb.D8.D8.b8.b8.oe.&b.aa.-b.=b.b8.69.Td.Bc.89.]0.$5.79.j$ pe.qe.** Y% lb.89.** ]0.** 8@ h$ Y% 5@ 7@ &9.h$ a@ Rb.Ia.6@ -* .& Y% 06.3@ & k$ ** o$ ** =* W* h$ h$ e@ g@ o$ k@ ,* +& +& h@ .& :; [.re.9=.se.te.ue.ve.we.xe.ye.ze.F=.1!.T* %6.p{.E=.^ .h+.!Z S&.[$.h@..Q ({ @F P5.i5.Ae.Be.Ua.md.)a.|1.Y{.(8.Ce.De.Ee.Fe.Ge.5e.Y}.He.z-.Ie.}d.Je.dc.8e.Ke.%0.Q..~U q.._ .m@.S+.tu @$.o%.!%.~%.~%.yb.yb.0(.0(.~T #H #H wh %e ub 5j P0.4b.3b.TH cI +z J6.2a.Le. b.Wc.7b.[a.4N Q4.q8./2.Me.B% u2.u2.t2./2.Ne.Oe.Pe.'7.H|.!}.^2.7<.b[.G<.G<.H<.#<.^_.D[.iP s8.n3.&<.*7.Qe.nc.G<.Re.a. I % m ^# `$ % c o p g c a ", +"9| <{ 9| <{ 9| <{ <{ J$ J$ 9| <{ jP J$ J$ I/.<{ J$ 2^ jP <{ J$ BN I/ I/ L$ 0' R@ I/ I/ I/ G= L$ L$ J$ R@ ]& BN L$ + * 5_ I/ $ # # # R@ # #^ L$ ]& + . ]& o! # # + [* V@ & = 2) S$ + Q$ > > . > U@ ' . - > . = & ] $ ]& - ' H= > - . P$ U@ > . S$ - Q$ | ) R$ ; ~ ; ] N$ ; R$ S$ & | ) ; { | 2 | ( | I= | | R$ W@ <& | ( d : d | 7- V~ 4 } Y> /& { d J= d Y@ { { ( ( 1 6 k ,# 6 5 a b a 0 ,# 6! k 2* !# !# ~# e ,# t' e a 0 a 0 n r h h h p! Y$ ]# i p h _# |& L= ^# /# 1Z 4* 4* p b' ^# ^# w D w w m w C z F= E 2; C z z a7 w F= a7 1& /U .}Y (#.5 .SO x .v@.B..SO oY aV (U aV (U 3d ,*.k#.^P )Q RT #N )Q )Q ^P +Z ^P Z .<#.-X bV '*.1@.CX .` hT 0X 0&.AS CX .` CX hT CX BS 3Z E` +` HQ |Y |Y 4@.BR pY =S pY tM CR @V }M |C IV TT nP 0R nP 6N 0R pO lU nP nP eS 2M 0R sO uM pO eS uM uH 2M KK KQ rP uM uM 2M >N WO uM 9C 9C HJ yH 9C 9C ~I 9C =v ]I -H zH [e ms ms Qq Qq =u Qq Wf =v Wf ,e.=u Qq Se.Kw 2e H0 H0 ng &0 lj Yf &0 M3 K9 o[ Te.H^ ,2 }5 b/ H^ }5 na -/ ^] 4~ A1 ]] r) h. Z- 0^ r) r) K! h. r) h. h. l* l* Ue.K! g& f. U= /% J; n* v# x# q. V= (% o. i& t. i& Ve.t. y# t. x# x. Ve.t. hd.h& We.!e.x# x. 9a.Xe.n0.ne.9a.Ye.9a.Ze.>d.9a.id.id.id.Xe.Sd.`e.29.&b.]e.C8.&b.id.hb.aa.D8.Pb.Pb.Pb.&b.&b.&b.@9.=b.Fa.Td.Pb.-b.=b.Td.u0. f.Fa.$5.j$ Td.h$ 94.lb.Ga.&* lb.** &* Y% .& p$ 06.`% Y% o$ 6@ 6@ ** _; 5@ h$ a@ .& %* ** h$ e@ Y% m$ h$ 0q .& d@ e@ o$ +& e@ m$ k@ m$ k@ y; .f.g@ =* W* +f.5/ ,..@f.#f.~d.u- $f.X/.%f.&f.*f.=f.-f.;f.>f./].84.t{.&* 9@ l~.T1.e].S&.CU ~Z 8P rb.,f.'f.M3.j( Q, &, l; 10.)f.!f.~f.{f.]f.^f.z-.z-.Nc.Je./f.dc.(f._f.G%.=}.{2.jY 4G m@.p@.U@.< .k..Ac YN :.$e.1b.$c e*.'c #H yh ub ub y>.#H :f.4b.3b.3b.,q ^l ;[.;[.@<.t2./- a> o4.'[.nc.A[.mu !}.G<.2f.w `$ D `$ C; h V$ Y$ r '# n 0 ", +"*) <{ 9| <{ 9| 9| <{ |1 J$ 2^ 2^ <{ 9| J$ <{ <{ <{ J$ R@ R@ ;b ;b L$ R@ I/ I/ I/ ;b I/ #S #S BN I/ I/ 0' 0' = = ]& # # 0' $ # # + ]& # + = 0' V@ 2) # . $ # . ' $= $= 0' = & ' = 1* $ + = - U@ > & U@ . = . A; Q$ Q$ ' S$ P$ > $ $ {c Z! - T- X@ ; { | R$ U$ %= U@ ~ U@ U$ ; ; | H= ~ %= Q$ ] %= R$ | /& | X@ X@ # /& { } 8- .# ## < Y@ 2 $# 6 $# / 6 d J= d } 7 5 d } 7 Y> { 6- 6 5 ,# z: 3* j ,# 6! 3] 0 0 0 a d ,# 8 ~# ~# e L= 0 {# n c ]# ~# 0 n L= ]# 2, ;= 0- o ,> C; 2, m 1; b' 1; b' :# 2; s> /# 1; 2; ;{.;{.M= 2; :# /U F= w #| z E z L/.F= /U /U '&.C` E G AR 1& H$ T^ 1& O@ $T V c- T^ $T V z .c- =X c- .@.0S v@.(#.x .A: oY I-.o*.iU *I aV -*.-*.oY XX .Z (U k#.)Q +-.^P RT RT )Q RT ^P )Q +Z 9X EN 0X w@.1@.+@.3@.AS CX CX hT E` hT hT hT CX +` E` .` aS E` ST 3Z 4@.@Z pY =S EX EX CR kT jT CR 6N nP nP nP nP nP pO lU 0R pO %` >S sO FX fQ gK KK /P KK 2M KK uM uM 2M uM 2M WO rL WO uM /P 9C xH ~I ~I Ik ]I 8C xH 9C *A ~I =i Wf [e Wf 8t 8t ms =u =i Qq =u Pd.Qq Yf ma 'i 'i hf ~b 8^ K9 L4 &0 L4 b/ o[ H^ b/ o[ ,2 }5 b/ b/ ~1 A1 j{ X~ N] 8! K! Z- r) K! {% r) h. r) x! ^> r) g& /% l* l* l* T= /% g& v# v# V= l. w# o. n* w# t. <= n. t. t. x# x# x# |% t. x. hd.q* u. 3f.4f.me.ne.gb.gb.9a.gb.9a.9a.gb.9a.}c.C8.id.yc.gb.5f.id.xc.Pb.C8.id.Pb.&b.D8.&b.&b.aa.b8.=b.Td.=b.b8.b8.=b.^0.Td.-b.Td.l~.k$ Ac.Bc.Bc.06.6f.W[.7f.e8.l~.89.&* $* 89.lb.$5.l~.** a@ _; nH _; l$ h$ ** h$ o$ h$ #* 8f.#* .f.n$ o$ w; ** h$ X* 0@ 0@ z= e@ p@ m$ *& d@ & kW *& ;* 0@ 9f.27.N^ S` 0f.D/ ve.w- af.bf.cf.df.ef.ff.gf.hf.if.jf.kf.o$ m$ o$ =* d@ o$ 3@ A4.CU !Z g+.h@.TR HB 5E @! '] /) lf./b.mf.H=.{f.nf.z-.Mc.Ie.Ie.Je.dc.M0.of.pf.i..{2.q..SZ VW U@.^@.^@.>c !%.#e.hE yb.5j vV #H #H #H #H ub &/.#H =d ub qf.4b.4b.3b.%e.rf.t>.*7.R0.+0.i6.^6.G|.p5..N Q4..N iP {- u2.X5.~}.n}.Q& a> R+ Y+ L+ T+ O+ iP ^l n}.a> 7<.n4.;[.h1.of f) _5.&:.0b.1|.W5.{}.sf.!)./# /# ,> `$ n r o (# _# c f f ", +"*) *) 9| 9| 9| 9| 9| *) <{ ], 9| 9| <{ <{ <{ <{ <{ 9| 2^ ]^ L$ <{ 9| 9| I/ BN BN 9| jP 9| L$ I/ I/ 0' 0' I/ 0' 0' 0' 5_ # ]& [n = # # + # # 0' ]& + # !, * k) V@ # V@ > ; . Z, > & * Q$ ; > = }* S$ H= S$ H= |* $= & U$ | S$ & > > & > |* U@ S$ # ^ | & - S$ S$ ] & o! . . R$ | 2 J) 05 ; ~ X@ { 2 | | { | ( <& U@ ~ 8- / <& 2 ) 4 ( 2 $# 6 8- } 7 i $# b } =# } D, Y> 6- d ( $# ,# e 6 q> 3] ~# a 3] e ~# {# 0 ,# ,# g b {# {# L= s> {# n n 0- h h 0- n^ C; 2, m r [& ~# p Y$ p `$ n^ p Z$ 4* 2; b' Y$ t /# /# )> )> )> D {& F= w F $S C` z z /U $T /U /U a7 P<.'&.'&.'&.AR U!.O@ AR $T 2Z V M .@. V .@..@. V V V c- I-..@.(#.5 .aV A: B$.:#.I#.(U A: *I aV iU yS XX (U (U #N RT )Q RT )Q +Z RT RT RT )Q sZ sZ $N H&.H&.H&.AS 2..H&.w@.hT AS hT hT AS .` CX .` CX E` .` |Y ST |Y dQ pY =S %T =S ~Q -R fK qY @V 6N nP 6N 0R nP pO nP 0R pO 0R OW (P WT ~O 2M uH KK 2M uH 2M KK KK 2M 2M 2M uM tI %J tf.~O ~I Od.%J %J hK wH LE 8t ]I ]I *A Qq 8t =i Wf Wf [e =i Wf Qq =i =u Ue Qq og 2e H0 'i hf H0 L4 &0 M3 %0 &0 j{ a9 H^ o[ o[ H^ H^ o[ j{ H^ o[ }5 N3 A1 U/ K! K! K! h. h. h. K! Z- B{ h. h. K! l* l* f. l* H, g& l* x> n* g& x# _% (% uf.:= u. t. w# vf.t. q* t. t. x# t. t. hd.x# t. wf.~e.gb.xf.>d.gb.>d.gb.>d.9a.>d.gb.Sd.id.Xe.id.5f.yf.zf.C8.Pb.zc.hb.Pb.aa.&b.aa.aa.aa.=b.=b.b8.b8.=b.b8.=b.=b.06.Af.Af.Td.Bc.** -b.lb.lb.^0.Ud.$5.79.h$ 94.6@ ** 5@ ^0.Y% ^0.$5.m$ h$ h$ ** h$ n$ h$ g@ Y% o$ .& p$ j$ w; o$ .& o$ h$ Y% e@ 6@ o$ X* k@ )* e@ o$ a@ e@ j- e@ w; '* Z0.Bf.f, *P Cf.Df.Ef.Ff.Gf.s/ Hf.If.Jf.h/.f).`: E* Kf.Lf.z3.f@ >* ** Y% Mf.Z% l$ 93._{.!..t#.g).s{.5#.DU sV TR 5E Nf.Of.Pf.Qf.Rf.Ie.Ie.Nc.}d.Je.ec.M0.Sf.mZ W` =f _ .4G GW U@.@$.< .o%.tb T$.yb.1b.'c $c #H wh wh $c ub >e xe *e =d Tf.3b.3b.TH 4d.Uf.Vf.:|.:|.K6.4N c7.N6.g1.S& g1.vC P+ O6.pc.{- /- /- G% R+ P+ V+ R+ R+ /- P+ #) S+ /- pM {- H<.G<.<|.Wf.Xd.9w 's ;(.O(.h1.b[.e|.M Y$ r ,> h h p p h n o e ", +"<{ 9| <{ 9| 9| Xf.*) <{ 9| ^, <{ 9| <{ <{ *) J$ J$ *) 9| BN BN <{ I/.L$ R@ R@ 5_ ], jP I/ p9 BN I/ 0' + I/ L$ 0' 0' 0' # + 0' 0' * # # 0' + $ * + Q$ }, # & ' > k) S$ S$ = # . + & # . Q$ * - U@ U@ $ |* . Q$ > A; $ . - Q$ > $ U@ - S$ U@ & U@ o! ~ Z! ; ; & Q$ Q$ ] ] | R$ ] ) N$ W@ X@ | | %= X@ [ P$ ] /& ~ %= X@ /& / 1 2 ( 1 $# { d 7 5 $# 2 d &# 6 ,# &# 6 Y> 4 $# b 6 3 6 ,# $# d ,# ,# 0 a 9 ~# ]c ~# 6 L= 7 g k ~# n !# e ~# s> 2, h 2, Y$ n s> Y$ e {# h p Y$ s> p ^# p w b' xE 4* D t :# /# /# M= w o/ #] 2; {& F= 2; }4.F= n! /# C` /U /U w a7 a7 '&.AR AR JW KW n*.w c- V c- c- M $T V V .@.4>..@.x ..@.4>.v@.Q *I iU AX E].aV oY A: (U SO yS ^P _#.k#.3d ^P )Q )Q RT ^P RT ^P RT )Q +Z lP EN ~&.1@.0$.hT CX AS hT AS hT hT AS 0$.CX AS CX CX aS x@.|Y |Y '$.%T 2Y #Z [+.EX =S =S fK @V @` |C |C nP nP fK pO nP lT ;S LV pO JQ tH lU KK uH 2M uH KK uM KK uM uM /P 2M KK LE Yf.8C uM rL hK 9C 9C ~I ~I 8t *A ]I ]I {I [e Wf Cx Wf Wf [e Wf Qq Qq =i =i J9 =i Pd.H0 Dm Yf Dm hf M3 if Od &0 &0 L4 H^ y{ H^ ,2 H^ y{ o[ y{ H^ H^ j{ w> N] A{ ^] h. K! h. Z- h. h. h. h. K! K! h. g& f. h. x> g& g& w# l* o. U= o* o* v# Zf.x# [% x# q. w# x# x# x# x# x# hd.x# )e.:= t. !e.~e.wf.19.9a.gb.gb.9a.gb.]e.Ob.gb.gb.Xe.`f.Ob.gb.gb.5f.D8.id.zc.id.hb.aa.aa.Af.aa.aa.aa.06.=b.=b.b8.=b.Td.Td. g..g.Af.-b.^0.u0.Bc.Bc.l~.Ac.94.59.#* ** ^0.** ** ]0.h$ .& 5@ .& 5@ 6@ o$ ** g@ ;* l$ .& n$ h$ 0@ =* e@ w; w; m$ =* 8f.h@ e@ o$ nH m$ ,* kW h@ -O :; )* ,* h@ +& .& 94.&g.g; a. ,W 8@ %* p[.Y% =* 3@ F3.;|._/.2'.x,.*g.M).sV SS 9=.=g.;~ [~.-g.Qf.;g.}d.Nc.Je.#c.dc.M0.1d.3).i..wd.=f 4G KB p@.l@.o%.!%.Ac Ac x&.0(.0(.>g.$c ~d %e O;.#H ub #H -d wd wd IL Za.3b.4b.Ho ,g.'g.87.*7.K6.B7.() B% E% E% L+ Q+ O+ {- M+ G% )g.W2 ^N N+ a> L+ R+ a> g1.T+ R+ S+ /- a> u2.H<.,[.:4.!g.~g.t8.{g.]g.,[.Zi ,[.e+.m N 4* r >> h c r 7 j X$ c ", +"e^ *) 9| 9| w9.w9.98.9| 9| *) *) ^, <{ <{ 9| 9| J$ <{ J$ <{ *) <{ <{ ;b J$ *) BN #S BN BN I/ I/ R@ L$ + ]& G= k3 0' 0' # K$ X! 0' = # # + L$ * V@ = + $ V@ Q$ [* $= . [* |* - k) p9 V@ ' # . % $ $ + T@ S$ =' & |* - & > V@ . & U$ & & T- S$ . . | X@ H= N$ R$ ; N$ T- ] ; ; & ; X@ - U$ $ { W@ X@ U@ ~ | 05 ) | [ Z! 2 2 ## ~ 5 X@ Y@ 1 | ~ [ Z! 4 ## { d ( &# *# [{ 5 } x0 : ,# } $# d ,# } 6- Y> $# 7 6 a k 0 6 e 3] a ~# ~# E, 3* n ~# 6! n r -) L= s> h h V| Y$ !# p (# 2, p 1; m 1; ^# ^# xE Q(.[# @= 2; b' % #] /# w #] G F= F= G F= a7 B w z a7 a7 I F= B '&.'&.'&.$T .@.A$.a7 M O@ Z Z c- 2Z 2Z V c- V c- V 4>.4>.>z 4>.Z..:#.d{ y .oY A: A: A: *I oY _#.J-.(U yS +).^P )Q ^P ^P RT )Q RT RT RT bV sZ -X 1@.9X 1@.mL hT $N $N AS AS AS .` AS AS BS aS CX BS 4..pY ^g.|Y %T 4Z CR tM EX =S 5N 6N /g.@V 6N 0R 0R DR nP 6N fK |C nP |M 9N uH $V KK 9N uM KK 2M 2M sO uM 2M uH 2M uM /P rI wH LK ~I 8C yH 9C rL 9C 9C ~I ~I 9C *A [e Wf =i [e [e =i =i Wf [e =i =i Kw ls =u fo 2e ng Oc >2 ~b L4 S: 'i &0 [c 'i S: y{ o[ j{ H^ b/ j{ H^ H^ X~ 8! w> // /} h. k] Z- h. Z- h. {% f. Z- h. Z- (g._g.f. f. g& f. T= l* g& :% J; o* q. q* <= o. q* q* q. x# q* q* x# x# t. )e.t. hd.t. 4f.ne.4f.o0.o0.9a.>d.>d.>d.]e.Sd.gb.gb.>d.gb.`f.gb.9a.:g.0a.id.]e.hb.Ob.aa.Pb.aa.aa.aa.&b.Af.&b.06.=b.Td.Td.Td.Td.-b.=b.06.=b.^0.5@ Y% lb.h$ h$ $* 79.5@ Rb.}Z w; &* h$ Y% 5@ h$ ** Y% o$ b@ h$ Y% -* e@ e@ .& h$ _; 7@ X* 0@ o$ g@ +& && j@ d@ '* ,* f@ g@ 6@ n$ m$ ,* )* j@ )* X* * v) 2g.64.l$ g$ w; 3g.4g.ha ;Y _S 5g.G* 6g.$/.7g.8g.9g.0g.#c.ag.ec.bg.cg.{%.-U @H SZ VW 2x l@.@$.o%.tb hE !#.$(.e*.yh yh $c wh O;.ub %e #H -d zh =d *e lZ _a.3b.4b.dg.eg.fg.gg.=e.`2.N6.() N6.hg.ig.Q+ V+ L+ ^l L+ Y+ Ca.jg._$ V+ P+ /- a> ]w ^l ~@.]- Q& X2 E% #<.D[.8<.U}._9.R4.e(.kg.lg.o4.t2.mg.Xr K G ~# :# c *= o n ~# j a a ", +"98.<{ 9| <{ 9| 9| 9| 9| <{ <{ *) *) 9| 9| <{ 2^ 9| I/.;b <{ J$ l) <{ <{ <{ z~ *) I/ BN I/ I/ 0' G= R@ = 0' 0' 0' 0' I/ ]& # K$ p9 = # # ]& ]& # + 0' # K$ . ' # # . o! S$ & . = - . ' P$ V@ & . . $ - - $ ; & * ; A; }* > A; . > $ > U@ S$ U@ U$ & & T- N$ Z! ] N$ Q$ ' ] | N$ ^& { N$ X@ U$ R$ U@ ] Q$ H= { { ~ N$ ^ [ | ; [ I= *# $# [ 2 R$ X@ } *# ( ( ( < Y> 6 7 $# 6 e 7 d &# 5 d d 8 Y> Y> a d 6! 7 6! v5.a ~# W$ a z: A~ E, z: ~# ~# !# }& }& `! b~.`! p n L= p r p! c % s> K/.h m p ^# 1; m t t m t b' C F F= w F= F= B F= /U /U {& z '&.z /U z a7 '&.a7 AR '&.8* M AR $T JW M c- T^ n! 8$. Z c- c- V c- V .@..@. V Z..A: y .SO A: A: A: *I *I aV iU #N r! oY y+.)Q ^P )Q )Q ^P RT RT RT +Z +Z EN -X '*.Z .-X AS $N $N hT hT AS hT hT hT CX :M $N hT hT aS ST ST ST %T |Y #Z @Z tM CR &@.nP kT @V 6N 0R nP 6N nP nP 6N 0R pO 0R lW KK 1M uH ~O ~O KK uM KK eS uM uH KK uM uM qP vM wH 4C ~I wH 9C vH *A wH 8C wH 8t ~I wH Ik Wf Wf zH NA Wf Wf Qq Wf =i Wf =i Pd.Qq z9.Pd.H0 Oc H0 hf 9d &0 Ve =/ x1 M3 S: j{ H^ b/ o[ H^ H^ o[ b/ A1 B] B{ q) m~ #~ r) Z- c. Z- c. h. Z- h. K! Z- i. i. g& g& f. l* f. g& g& l. s# n. Ve.ng.i& w# q* x# x# x# t. x# x# q* x# q* x# og.x. t. pg.ne.!e.!e.Xe.gb.gb.>d.Xe.>d.>d.qg.qg.>d.{e.rg.>d.5f.0a.id. f.`e.Ob.aa.Af..g.aa.Pb.Af.Af.Pb.Td.Td.&b.=b.=b.=b.l~.Td. f.m$ 06.l~.^0.94.Bc.#* Rb.79.Rb.** h$ l~.^0.d@ h$ Y% h$ 5@ 94.Y% m$ ^0.a@ e@ m$ h$ .& h$ h$ ;* o$ r' 94.sg.h@ 8f.x; 0@ >* q$ e@ h@ )* ;* h$ )* =* =* =* >* tg.ug.p% -~ $$ -~ )T t{.vg.3@ X* +& c@ `% wg.B2.a@ l$ |@ 9@ #* p$ b$ 7@ c@ p$ U] w^.2@ o$ 6@ P_.xg.q] `%.>%.t#..Q u~ yg.zg.Ag.Bg..e.Cg.Dg.Eg.Fg.pf.QZ -}.q..Y+._ .m@.U@.0k < .k..tb Gg.!#.!=.e*.[R yh O;.ub y>.%e y>.ub ub xe xe we U` (a.3b.4b.Cd Hg.Rg Ig.=e.B7.X5.hg.B+ A+ U& T+ L| F% S+ S+ @/ Ds k6.G% G% Q+ #) {- #f DL Jg.Kg.Q& Q+ r8.pM b[.$<.8<.]w Kb G<.0<.Lg.rv #<.0:.Q4.S m h `$ Y$ o l r o g d a ", +"<{ <{ w9.*) 9| *) 9| 9| <{ <{ <{ ]^ <{ <{ <{ <{ 9| I/.;b l) R@ L$ <{ I/.R@ L$ 9| #S I/ k3 L$ L$ J$ *) L$ [n 0' 0' 0' 0' [n # `Y # = # # = 0' # 0' # K$ V@ # ]& & + # ' ; . $ [* V@ # $ V@ + 0' [* > . > . & . > = A; S$ ] > # . . ^& = ' %= %= ; = %= N$ ; X@ ~ . Z, Q$ P$ Z! 2 ) 2 05 2 %= 2 R$ ; ( { R$ ## { N$ | 2 | ( ( H= 5 X@ } ## ( Y> /& &# $# N' $# i ># ,# i ,# a 6 7 B; 6 } D, 7 ,# 0 a' L= 3* &# V) |& 0 e 6! a 6! L= {# >> L= K/ 0- r -) p Y$ A~ Y$ r ,> l n 0- ]# Q{ n^ 1; 0- ,> % 1; % 1; ;) 1; Z$ t ,> t F F F= w F= w F= {& F= :# #] a7 z F= z 1& '&.z a7 a7 8$.KW 2Z AR c- c- c- z :}.a7 V >z V V c- V 4>.4>.4>.0S J A: x .<_.aV oY *I *I (U aV (U 3d k#.*I ^P ^P )Q )Q 3d )Q )Q )Q RT RT sZ -X 0X H&.+Z AS $N mL $N AS AS hT hT hT AS AS HQ .` hT aS aS q) B{ h. Z- h. Z- h. h. h. K! K! h. {% {% g& K! f. i. i. f. l* /% l. n. x# Ve.Zf.<= m. Ve.q* v. q* q* x# q* Ng.'e.q* x# := )e.4f.We.x# ne.me.me.Og.gb.>d.qg.>d.qg.qg.gb.Ob.v7.>d.Pg.aa.0a.id.aa.id.hb.aa.aa.Af.&b.Pb.Pb.Af.aa.Td.aa.06.06.hb.Y% Qg.06.Y% Bc.l~.x; 0@ lb.Y% ** $5.=* .& ** 94.Z% m$ Y% 8f.]0.a@ p$ &9.+] h$ k$ _; Y% #* m$ 94.#* k$ .f..& #* n$ nH k$ =* =* U* =* p$ X* m$ *& =* )* p$ =* l@ b. Rg.]{ RR 3+ C=.J& ^<.{].n<.Sg.A= -& 9& j@ a9.&6.i$ Tg.[@ 9@ Y% 6@ X% Ug.`% a@ Vg.7,.dY Ac.=Y [@ 7@ _].:&.hZ DU qN oa.Wg.Xg.Yg.Zg.#c.#c.Eg.`g. h.QZ NO R..@H SZ (y p@.l@.@$.o%.!%..h.~%.!#.vV [R #H yh #H %e %e y>.xe y>.y>.T=.nc we Bt P0.Za.4b.Cd TH +h.@h.Eb.n9.j6.w~ A+ E+ ta E% C- ^ t{ /- p; wg X; L+ g1.S, /- T! O+ {- #h.$h.Cs n}.vC n}.^l iP |5./- V& U}.<3.%h.0:.w_.D[.Q4.#. n h h o !# e 9- j ~# *= ## ", +"2! *) )~ *) 9| |1 9| 9| <{ 9| )~ 2^ V! J$ I/.<{ 2^ *) I/.J$ .( R@ L$ <{ R@ BN <{ BN L$ ]& J$ BN p9 R@ L$ I/ 0' I/ I/ 0' ]& = + }, I/ ]& K$ # = # ]& 0' J$ + = k) . . !, . E! 1* . $ # > . ]& 1* . # # S$ & > $ U@ ; Q$ ; ; N$ Q$ S$ Q$ > ] & $= Q$ ; N$ ] | & > *' T- N$ o! > U@ ; Q$ T- %= X@ X@ ^ ] 2 X@ | 2 ~ | | J) 2 } ~ : 4 ~ } &# } } 2 d 5 $# Y@ 6 ,# i V~ a' $# x0 6- a $# a ,# a' ,# 0 V$ ,# k 0 0 ~# a {# a' } 7 0 ,# a K/ i ~# 0 L= Y$ K/ y2 ;= `! h e ~# o % 2, ,> t m 1; m L= 4* ^# Q(.xE ^# G#.4* 2; m t G F B t /U w w F= B z d.>d.>d.qg.;h.gb.>d.Pg.>d.qg.Sd.Pg.rg.id.>d.>h.39.Ob.]e.Af.,h.Af.aa.aa.Af.aa.aa.Pb.aa.Pb.Af.aa.aa.=b.Td.#* f.'h.Y% /M w; h$ kd.Y% )h.h$ 79.#* h$ 79.lb.n$ #* e@ o$ Y% b@ ^0.0@ >* =* a@ =* h$ j$ m$ m$ p$ r' 6@ =* a@ w; q$ f@ e@ 0@ >* p$ >* g@ >* t$ p@ o$ 0@ A= a& !h.d+.wT bY 2!.'` w6.62.#* && s@ {* h# q@ s@ j@ 0@ 8@ ~h.6@ .& ,* e@ {h.]h.o$ ** E=.^h.c^ W<.e$ f$ J- 2'./h.(V 1L (h.e0._h.:h.3|.==.ag.Fg.`g. - $ S$ ; # Q$ > > $ > $= Q$ T@ S$ ; |* U@ }, S$ > M$ > #^ ^& U@ ] > Q$ H= & ] N$ ^& N$ P$ X@ ^ S$ & ^& | U) ] { *# X@ ] ~ X@ 2 ; { 2 1 } H= [ ] 2 | [ ) *# ## ( d 1 Y@ *# 1 { $# V~ $# 6 k &# d q> D, [ b d ,# V) a V$ a k ~# a' 0 7 a' a ,# ,# j 0 7 K/ ]# c {# L= n !# K] W$ ;= h W$ Y$ 0 h n V| ,> r 2, Y$ 1; |& Z$ D V| ),.D t /# t t t /U $S `$ /# $S G {& F= w F= a7 F= a7 /U F= AR n! z z I 8* #= O@ c- c- I V 8* c- 1& H$ O@ 8$.M M V .@.c- v@.AX AX SO :#.aV AX L aV *I *I *I c~.BX (U )Q RT RT ^P )Q _M #N ^P )Q ^P +Z sZ sZ bV 9$.sZ $N $N AS $N AS hT AS AS AS AS AS CX BS aS CX BS |Y y@.EX pY %T =S BR ~Q =S EJ @V =S 5N 6N 6N nP nP 6N nP PP |M -S 6N tH tH uH tH KK uH WT 9N KK uH 2M LE hs !I hs ]I ]I 9C hs Uv 8t ~I 9C 6h Uv ~I 8t ;u ~I {I xH =i Oq Wf [e Wf Wf Wf Wf Wf =u =i G0 bh.~b E0 Oc Yf ~b 9d 8^ d.>d.>d.qg.>d.9a.gb.v7.5f.>d.Pg.rg.yf.5f.Sd.`e.,h.Ob.v7.hb.0a.Pb.Af.&b.Pb.aa.aa.b8.Td.=b.Td.Af.Af.aa.Af.Af. f.n$ Af./M 8f.h$ 06.^0.#* n$ /M ** x; k$ Y% o$ ^0.o$ wS k$ h$ Y% e@ #* p$ p$ 0@ Y% >* .& +& ** >* .& w; X* & 0@ h@ h@ r$ l@ =* p$ g@ f@ X* p@ g@ :; l@ >% eh.J .d+.{ .b%.wT 42.d@ N- o$ fh.>* m@ >% [y j@ X* a@ h$ ,* k@ p@ gh.hh.ih.0q 6@ X^.J> qQ g+.ha n, H] x,.P+.lS ({ jh.kh.lh.Xg.'e ag.Fg.`g. h..nc nc nc nc nc nc #H :f mh.-f 4d.Za.Ho xW ~r nh.oh.ph.n8.-7.B+ C+ P> T+ V+ N+ G% S~ /$ X; N6.qh.{- O+ V+ R+ T+ X+ be B% rh.O+ P+ /- S+ T+ S+ S+ iP h1.O(.p3.~}.iP sh.th.uh.D t c r L= g e n ~# V$ 6 ", +"vh.$8.*) e^ e^ z~ *) jP 9| <{ 9| I/.*) w9.<{ $8.|1 J$ <{ <{ <{ 2^ 9| jP 0' ], 2^ R@ L$ I/ G= I/ L$ ;b 0' I/ 0' 0' R@ 0' 0' I/ ]& # Z, = + # = 0' # # = = R@ ]& # #^ o! }, Q$ H= > > ' & V@ . $ - > $ . . $ V@ + & > & Q$ + > [* . * $ ; O$ & | *' ; | Q$ > %= P$ Z! *# U$ ; Q$ & ~ z] | U@ X@ [ R$ 7- F:.wh./& X@ [ ( X@ X@ ] 2 P$ ] 2 /& d ) 4 1 <& | d 1 $# 2 &# / Y> 6 7 k 7 6- == 5 c5 ,# 0 a' 0 ,# a 8 3] ~# ~# a ># a a tA 6 j n e 0 z: L= !# ]# h 0 s> h r s> r r ),.`$ Y$ 1; L= 1; p h r m % t m w /# t {& w {& xE F= {& w :# G 1; :# /U F= a7 a7 /# $S a7 z '&.O@ 1& X8. Z AR c- $T $T n*. Z n! c- V V V c- c- V V H#.I#.-*.A: aV aV aV L oY iU iU B$.#N zS oY BX ^P RT RT RT #N ^P #N )Q ^P +Z RT -X bV NW sZ 1@.$N CX AS $N mL CX hT hT hT AS aS AS CX aS aS _U ST IK IK iT =S CR %T ~Q -R fK &@.kT nP nP nP nP EJ 6N |M pO pO oP TL 2M KK KK uH KK KK sO KK uH 2M %J IF qL hs hs wH ~I 8C 5D on 9C wH Oq 9C !I on %J ~I 8C hK =i }e Wf [e =i }e 8t =i Qq [e Wf E0 og =i Pd.$0 K4 >2 Oc L5 K4 Nd L4 L4 y{ H^ y{ L4 S: H^ j{ o[ H^ H^ i] !! ^] q) ]> Z- h. Z- h. {% {% Z- i. {% i. {% f. q# h. Z- i. q# j. J; i. l. v# m. h& o. _% q* q* q* Ve.:= Ve.q* x# Ng.Ve.q* Rd.qg.`f.!e.>d.>d.gb.qg.qg.qg.>d.>d.x; ]e.qg.Sd.}c.rg.`f.Ob.id.5f.m$ id.`e.yc. f.o$ Af.Pb.&b.Af.Pb.Td.06.Td.Pb.Pb.Pb.,h.06.6f.06.6f.k$ ,h.pe.o$ Y% lb.p$ Y% .& .& o$ lb.-* m$ $& d@ e@ Y% =* wS m$ h$ =* r' m$ o$ p$ nH p$ m$ 0@ =* n$ :; )* :; h@ -& A= =* =* l@ f@ :; y; X* *& j@ Y~ xh.p% k&..) u- yh.zh.p$ )* g|.l<.p@ ,& h# h# -& l@ <7.'h.e# >* =* 8@ +a.e@ k@ p[._{.ha :&.62.]].@* 2'.g).!..CU IZ Ah.Bh.Ch.~g Ke.Dh.Fg.`g. h.Eh.wd.mk Y+.KB GW l@.l@.< .!%.Ac tb 0e.kH vV $c $c ub nc y>.nc (g *e =d nc nc nc jZ :f Fh.X=.Gd 4b.Ho xW ic.Gh.Hh.97.n8.-7.B% E+ ^$ 9{ g1.S+ o2 Ih.K+ 6h._5.m4.O+ S+ p; Y+ [$ %@ Q+ ($ G% a> /- P+ Y+ T+ S+ n}.#f #f <|.U}.^l B[.Jh.Kh.=8.^# 4* L= o o e 6 c 7 e 6 ", +"98.vh.|1 )~ 2! q, ^, ^, 2^ 9| *) *) <{ 2^ <{ <{ <{ <{ <{ <{ I/.J$ N<.2^ J$ J$ R@ R@ L$ L$ ], ]^ L$ BN X! I/ ]& 0' I/ 0' 0' 0' = # + I/ I/ # + + p9 # Z, 5_ J$ R@ # > . ' ' ' * - V@ [* S$ S$ o! $ # . o! $ ; > T@ & . H= $ - ^& Q$ S$ > Z, & > S$ ; 05 ; - X@ > ; U@ S$ S$ ] ; ; . | ; ) 2 | N$ { 2 X@ /& 2 N$ I= 1 { 2 ~ X@ ; f] [ <& 2 [ 7- } 9 6 4 } 6 } d W@ 6 4 8 d 4 ># ## 3* 7 ( d ,# [{ ># d e a d 7 a ,# a 0 A~ ~# L= ,# K/ 6 L= 0 Vj n c ~# y2 8x Y$ -) ]# ]# 2, n^ r 4* s> r q ,> `$ `$ m h ^# w 1Z t w m :# ^# cb.w @= )> w /U {& F= z B C` F= F= A$.'&.a7 z z _}.8* n! O@ 8* $T O@ HV V M M V .@. V .@.c- c- |# iI SO *I :#.:#.aV *I oY *I aV B$.oY zS YX BX #N #N ^P )Q )Q ^P ^P ^P +Z +Z +Z bV sZ bV bV -X mL mL AS hT mL $N AS AS CX CX HQ HQ CX BS HQ aS :+.BS )O ST EX =S tM dS 5..RL 5N dS kT fK 0R 6N |M 6N 0R 6N 6N lU lU 9N gK uH 2M uH uH tH KK KK tH (P qL KK (P LE IF ~I 4C qL Oq yH =v on ~I ~I Oq 6h Oq ;u Uv [e 13 =i ms =i Qq s9 Qq Qq Wf Wf g& t# v# =h.h& V= s# x# q* Ve.q. _% x# x# x# pg.Ve.)e.Ng.pg.Lh.!e.qg.gb.>d.qg.>d.Lh.qg.gb.Mh.Sd.5f.5f.rg.v7.id.Ob.Pg.`f.aa.Ob.Nh.Oh.x; id.Af.Af.aa.Af.aa.Af.Td.Td.06.Af.aa. f.m$ p$ f.x; l~.#* ,h.n$ Ph.94.x; a@ k$ a@ h$ a@ m$ .& 5@ k$ Y% o$ 8f.h$ .& =* h$ o$ >* Z% 7@ .& 0@ >* a@ -* 0@ kW )* k@ p@ b& k@ ]* u$ ,* h@ r$ i> e@ sg.u$ Qh.Rh.FZ :'.s#.p-.e~ Sh.$5.*& b& {* {. 4_ ,& {. v@ ;& e@ :. i@ =* 0@ y= &3.e@ -* |@ ,~.,~.s{.t{.x,.4@ U9 Th.1L @) qQ Uh.Vh.Wh.Xh.Ke.3|.Fg. h.Eh.Yh.@H q..o@.o@.Nj $$.^@.!%.tb Ac x&.S..!=.$c +l #H %e xe &e nc P+ {- ^l of Oe {}.o}.~}.H<..i.^/.C `$ h ~# e c o ~# o a g ", +"*) 2! )~ |1 *) 2! 9| w9.9| 9| 9| 9| <{ 9| 9| 9| <{ <{ J$ <{ I/.R@ R@ 2^ <{ J$ J$ ]^ R@ BN jP BN G= 0' 0' ], L$ 0' p9 0' 0' 0' 0' + K$ R@ p9 + K$ =[ jP # + #S L$ + # > + [* [* [* $ }, > CN Q$ S$ S$ Q$ # 1* S$ 2) > |* ; k) k) # + Z, T@ > ' & |* |* ' +i.. 2) o! Z! ] | ] | H= . T- & ' U@ - | S$ 2] ] 8- `@ ## 7- [ ~ 2 U@ U$ ; - [ [ 5 { R$ ( J) ## ~ I= D, 1 D, d 1 ( 1 6 B; Y> 3* a k 7 d } 2d ,# N' D, a 0 3] ># a' ,# ( Y> 0 0 6 0- 0 0 a L= c L= K/ 6! 6! L= h s> s> ]# h n a }& e<._# Vj m r ,> 1; b' m h Q(.Z$ :# G 4* 1Z :# $S :# w w F= /# G {& G /U /U /# C` {& F= a7 a7 a7 a7 K I 8* $T 1& c- c- V V V V c- V Z .@.4>.4>.4>. V z .0S i5 oY B$.*I A: oY L *I I#.A: MW XX (U +-..Z ^P `I ^P )Q #N 3d +Z RT RT )Q -X -X bV -X mL $N AS AS mL mL $N hT $N .` hT HK CX .` HQ BS cQ _U cQ ST |Y =R #Z iT ed.[M Zz =S nP 6N Zz 6N fK 6N nP |M fK ;S 6N 7J 1M uH tH tH JQ KK uH /P vG 2M qL IF hs KK LE wH ;N LE Iw Se 8C 6h on 8C 8t Oq Se 8t F3 =i Wf [e [e Wf [e [e =i [e [e [e u9 }e [e x1 8h K4 E0 ~b ~b 6^ M3 K4 =/ $0 =/ j{ v' y{ H^ j{ j{ H^ H^ H^ i] w> V' q) B{ {% Z- {% {% Z- h. Z- {% {% {% _g.i. i. f. Z- f. m* f. q# S= l. S= @i.o. K; Ve.Ve.q* q* Ve.q* x# q* 4f.4f.h& og.pg.>d.pg.me.qg.Lh.>d.qg.>d.qg.qg.>d.id.`e.#i.rg.Ob.v7.v7.rg.id.v7.Ob.v7. f. f.]e.Af.,h.x; k$ k$ f.aa.Af..g.`e.,h.k$ e@ -* Af. f.06.k$ h$ m$ m$ l~.#* Y% Y% 8f.Y% Y% h$ Y% h$ a@ Rb.nH .& ~h.d@ )* >* o$ 0q o$ =* e@ 0@ .& k$ m$ o$ k@ p$ X* l@ p@ $i.X* -& *& *& -& !* >* {* t$ #i.%i.*Y 1!.x^.P_.`# M+.i@ t$ {* O- ~. a. u@ t@ l@ l@ 0q -& E9 o@ 7@ 4@ n$ d@ )* l$ h$ ** L- G'.R* J- g).Z#.IY |' '..&i.~a.Wh.*i. h.Eg.=i.-i.Yh.;i.R..[ ._ .~#.U@.^@.@$.o%.!%.x&.Ke ti c*.[R jZ ub %e %e =d *e i.7T ,i.'i.87.)i.b7.!i./6.B- A+ B- M+ L* ^ b0.R4.V+ S+ E% {- g1.S+ R+ Y+ X; s8.Q+ R+ N+ ta R+ P+ X+ ta Q+ a> ^l C[.b[.n4.+8.t8.~i.^1.Q@ `$ c n 9- W$ e V$ c a j ", +"*) ^, ah.9| 9| 9| w9.9| 9| 9| 98.w9.<{ 9| 9| 9| <{ <{ <{ 9| <{ L$ R@ 2^ 2^ <{ J$ ]^ J$ 2^ 0' l) G= I/ 0' ], BN 0' p9 0' 0' 0' 0' + K$ + 0' 0' Z, K$ ]& 1) # = 0' p9 % [* # Q$ o! (& & # P$ ' ]& ]& V@ > . V@ o! ; L$ $= U@ > > S$ $= > T@ ] $ * - . $ > (& & H= ] > U@ S$ ) Z! N$ W@ ^ ; & & | N$ ] N$ 8- N$ ~ ) 2 W@ ) %= N$ b{ ~ 2 [ ( | ~ ) | } | B; < 1 5 Y@ ## *# { V~ 7 5 ,# 6 )1.J] [{ } 6 <& } d a d 4 0 a q> 6 !# q> 0 b ># L= c 6 e !# 0 K/ ~# h |& |& c Y$ 0- r |& ~# r 1; Y$ p Y$ n `$ @= b' b' p 2, ^# /# w u t :# D /# /# ,! ^# G /U G {& '&.w {& F= z a7 a7 a7 1& K a7 1& $T a7 '&.m;.c- c- c- c- c- .@. V O@ c- V V V c- v@.M }Y 3& B$.oY *I aV *I oY U;.*I WX 3d oY y+.BX )Q )Q RT #N )Q ^P ^P ^P lP +Z @N qH bV bV -X hT AS $N $N mL CX AS hT CX hT AS CX AS hT aS ST FN _U tZ |Y #Z qY tM dS CR 6N kT @V fK fK nP 6N |C {i.-S fK 6N JV }M qI tH KK uH uH tH 2M uH vG uH !I hs hs KK !I IF !I hs 8C Re Oq 8C LE Jc Iw on on ;u Oq Oq [e [e }e =i =i }e Wf Wf }e }e 9t Te G0 Mc og 1e E0 ~b J4 t/ 'i M3 =/ =/ M3 S: j{ H^ H^ j{ H^ j{ H^ j{ i] X~ #~ m~ c/ k] Z- Z- Z- Z- Z- h. Z- Z- {% Z- Z- Z- f. i. q# ]i.g& g& J; l. l. t# l. ]i.l. 2f.Ve.2f.Ve.q* q* h& q* Og.dh.:= Ng.pg.>d.qg.>d.>d.Lh.>d.>d.>d.qg.>d.Lh.]e.Nh.>d.>d.`e.v7.n$ Ob.Ob.x; Ob.`e.,h.v7. f.x; n$ Af.k$ k$ x; k$ aa.Af.Af.^0..& w; ~h.Af.Af.Y% Y% e@ k$ m$ Y% Bc.#* m$ o$ k$ m$ $5.w; 0@ =* 6@ d@ 0@ >* h@ =* ,W ,* h$ *& ,* ^i.,* p$ e@ kW e@ X* d@ m$ ,* u$ /i.)* X* f@ g@ l@ k@ <. l@ (i. ] C=.1!.h>.n{._i.&; `% 9& ^. x$ j- -& (. ). o@ c@ 09.p@ u$ i@ ** :i..& m$ e@ r' 7@ #* j$ 3}.|'.6J /].-%.xT f= c zc S..}i S..[R e*.jZ #H #H &e nc nc nc nc nc *e _f nc nc mc y$.3i.Jt 3R 4i.Ho {r 1^.Vc.h6.B7.-7.X5.)] B- B- B% P> {- O+ 6h.T+ P+ 5i.)] Q& R+ 6i.R+ V+ n}.T+ $) L* Fs ]w ($ U+ U+ R+ Q& of U}.#<.7<.iP 7i.0h.8i.D ^# h m r o ]# g g V$ e ", +"e^ *) 2! $8.9i.*) <{ 9| 9| 2^ 9| *) *) <{ <{ 2^ <{ jP 9| 9| <{ L$ L$ *) R@ J$ <{ BN G= BN k3 T*.R@ p9 0' J$ 0' L$ 0' p9 L$ 0' 0' ]& # V@ X! 0' # # # $ ]& $ $ = K$ + [* k) }, & > . & > ]& $ # $ . . > Q$ . . +|.$ ]& > & Q$ $ |* T@ o! H= [* $ - [* Q$ N$ . - > Q$ ] & ' $= |* ' $ . U@ > ; > ~ I= O$ U@ | 2 ^ | ~ [ W@ ( { ( 2 ~ / ) ( < [ } [ I= $# 1 W@ $# Ev 4 $# d ( d ,# d ( 6 5 } 6 ,# 7 d k e ~# 0i.7 a 0 ~# a i 3] c tA 3] t' n z: L= ,# n )# ]# ]# ,> ~# ,> p! `! !# 2, p % Y$ q 4* xE 2; `$ xE /# ^# t t /# w F= {& $] D F= {& G a7 /U {& C z W) B F= a7 a7 z 1& F= I JW V V c- c- c- c- c- c- c- M c- V =X c- x .)W >z V |# L <_.m,.y .Q oY y .*I I#.BX c~.(U oY #N )Q )Q ^P RT 'Q ^P ^P )Q )Q -X EN $N <#.EN 6B $N mL hT $N .` $N +@.hT $N hT aS CX CX aS MP DS aS %T _U iT CR @Z IV ~Q BR }M CR |C |C |C fK fK fK |C lT ;S 9R 6N 1M uH tH uH tH jy KK tH vG uH KE =H %J [z KE IF IF Uv LE 2h on ~I LE LE %J Oq ;u 6h 8t Se [e Wf }e =i [e }e .8 _4 ;u }e 9t ai.Pd.bi.=i E0 Nd ~b ~b K4 x1 8^ =/ 8^ M3 T/ 0d 4< j{ j{ y{ y{ i] j{ H^ m~ V' ci.N] m~ #~ Z- c. {% {% {% {% c. Z- Z- Z- f. f. /> q# m* /> q# _g.m* l. r# J, Ve.l. di.Ve.Ve.Ve.Ve.2f.2f.Ve.Ng.ei.:= di.pg.Mh.Xe.>d.qg.qg.qg.qg.Lh.>d.>d.Lh.5f.Xe.qg.rg.v7.v7.n$ -* v7.x; n$ Ob.m$ x; ,h.Af.x; Af.x; `e.x; 06.k$ 06.o$ Y% Td.;* o$ Bc.Af./M p$ =* 7@ o$ p$ h$ o$ m$ )h.h$ 5@ Y% o$ ;* a@ m$ >* A= *& g@ f@ i@ p@ r$ y; X* h@ f@ h@ 0@ o$ -& u$ b. *& h@ l@ -& -& f@ F9 p@ >* j@ fi./i.q* gi.u!.Y<.~].g>.:~ -~ hi.h# ii.c_.2@ j- {. B= k@ i@ d@ -& e@ X* o$ ,* {].d@ e@ /M 3@ p$ $5.84.:@ ${ m:.-%.xT qN ji.ki.li.mi.ni.Fg.`g.1i.Eh.NO W` Q .SZ tf GW U@.l@.oi.!%.k..YN .$.5j [R [R -d ~d #H ub rc nc *e nc nc nc nc nc nc nc we +I De ,q >i.'q :w pi.qi.b7.ri.si.m4.B[.B+ w~ B- )] g1.O+ /$ V+ /$ +/ C- _5.ti.6i.R+ Y+ L+ X; X2 O+ rN g1./- R+ @@ R+ /- o}.Oe ui..N iP vi.wi.yf.^# D ^# Y$ o g g o a j 2* ", +"*[ )~ 98.xi.98.*) *) z~ <{ *) 2! <{ <{ I/.)~ *) *) <{ <{ <{ R@ J$ =$.J$ ]^ l) <{ R@ I/ L$ R@ [n BN 9| 0' 0' I/ G= ]& k3 0' L$ L$ + X! V@ Dv + # # # = # # * . # ]& # Q$ > . . # . |* # o! . > $ . ; . ' H= ; > * > 9S ' Gc |* ^& Q$ S$ A; N$ & U@ S$ > $ > # > ; R$ U$ Q$ ^& N$ ; > . & & | %= J) ; h) ; | [ <& ~ [ Z! { } *# ~ Z! : : X@ ## } $# 5 *# 6 d ; { V~ ,# J= `@ ^ [ 3] } } ( } b } ,# 7 :& a x0 7 e 6! V$ 0 0 a 6 ,# k A~ k a e k e a e n }& ]# s> r 1; n ,> K/. % p D 1; cj ,> 4* 4* 4* yi.b' ^# C :# {& 1Z w C /# {& G b' )> z /U G :# B z F= /U n! a7 a7 '&.K B $T T^ n! T^ 1& .@..@.M c- c- M c- M c- M .@.c- V 8* E$ i5 :#.SO aV QT AX aV *I A: BX +-.U;.BX ^P )Q ^P ^P RT )Q ^P ^P +Z ^P RT EN sZ NW RT EN mL $N hT AS hT AS AS AS AS AS AS cV hT aS aS 3Z |Y `X dS |Y qY =S #Z ~Q {Q fK &@.G` 6N fK nP 6N fK |C Yz 9J |C 7N 9R jy jy uH tH vG tH vG jy KK =H Yf.IF uH uM vH hs hs IF wH *A wH LE Oq %J Uv %J %J %J zH }e =i on [e [e =v }e :4 [e la 13 [e ai.ai.Qq Yf J4 [| J4 [| [| x1 =/ K4 Oc >2 S: j{ y{ j{ j{ y{ y{ j{ y{ i] i{ ]] m~ !! ]] Z- Z- Z- {% c. e. {% {% {% {% Z- g. q# q# f. i. q# i. q# m. r# ]i.zi.l. t. Ai.q* Ve.Ve.Ai.q* 2f.Ve.q* )e.Bi.2f.Lh.qg.-h.qg.gb.Lh.>d.Lh.Lh.qg.Lh.qg.Pg.v7.Mh.Ze.v7.n$ v7.0@ 0@ e@ `e.0@ Nh.]e.Pb.hi.,h.Af.`e.Y% Y% x; -b.k$ x; Ph.o$ Q9 m$ hb.Af.o$ =* #* w; e@ m$ c@ ,h.d@ o$ =* n$ m$ d@ e@ p@ :; u$ ,W Y% ;* A= ,* 0@ m$ A= z= j@ >* >* 0@ +& cK W* f@ r$ p@ u$ D= ~* ~* b. x$ h@ o@ ~> q* Ci.:^.P].Di.s#.&%.1!.a@ k$ $5.P].0@ -& t@ q@ k@ e@ ^0.j$ -O 8& r@ %& l$ p@ t$ .& d@ p@ 6@ R* K' }@ %p !..RS AU Ei.Fi.Gi.lh. h.(f.`g.+.l+.]@.9#.Q$.!%.Ac #e.MI .$.e*.[R #H #H y>.y>.xe *e _f Hi.nc T=.nc rc =d uc Oj Ii.$O Cd Ho Ji.xt y1.gg.b7.^6./6./6.w~ B% w~ `] `U pM S& Q+ Y+ G% T+ L+ `2.Ig.`U vC V+ +/ 5i.Ki.Li.Mi.A` vC be P+ a> ^l iP {}.Kd Ni.]7.]7.Oi.-h.D p h p ~# g c n 7 9- 9- ", +")~ Pi.^, $8.2! 5' 2! *) 9| 9| 9| 9| 9| <{ <{ *) <{ <{ ;b J$ 9| <{ =$.*) 2^ BN 8S J$ R@ ]^ BN 0' G= ]^ I/ 0' 0' G= + [n R@ J$ ]& ]& # # ]& Dv # # $ 0' + !, # k) # $ # # + & & = |* S$ Q$ = T@ > [* # > & . $ & ' S$ > ] S$ k) U@ - ' U$ U$ . & A; * [* U@ = S$ X@ R$ U@ & 2) ) N$ =' ~ U@ .# 2 2 2 N$ 7- J) H= ~ X@ X@ X@ ) ( 8- 2 { ) 8- Y@ 5 N$ +# /& } U$ ~ 1 2 : } 5 $# [ 5 Y@ 7 1 3* 7 9 5 ( N' ,# 8 q> Y> d 4 ,# 8 ~# 6! k 6 b a' c z: L= ~# |& 0 c ~# ~# }& p z: _# 2, 2, Y$ s> ~# h h p Y$ h `$ G#./# @= ^# _# 1Z G#.:# :# ,> C G F= F= F= F= C E F= a7 a7 a7 a7 F= C` A$.'&.$S O@ $T 8* _}.'&.8* M o^ .@. V .@.c- H$ c- c- V V 0S Qi.Ri.>z SO Ri.QT AX iU A: 3; L *I oY oY oY BX qF #N _M ^P #N #N ^P `I )Q RT #N )Q -X -X 9$.lP bV -X AS AS $N $N hT mL AS AS $N AS AS hT hT cQ ST cQ _U &S ST dS ~Q #Z dS =S 7N 5N =S fK fK fK nP 0R |C Zz lT nP fK oL tH tH tH vG uH tH tH vG KK 5D 5D LE LE Qe KE wH IF IF 2h wH Iw Uv 9C qL 6h 6h wH 9C wH Oq ms [e }e [e [e }e [e Wf }e 13 13 Te E0 Wf u9 >2 8^ 8^ 8^ 8^ 8^ 6^ 8^ 8^ M3 v/ y{ y{ %^ H^ H^ y{ j{ j{ y{ y{ A{ m~ !! m~ {% c. {% c. c. Z- h. {% c. e. {% i. i. Z- g& i. q# /> f. m. k. f. [c.x# Si.[c.Ve.A= Ve.2f.Ve.Ve.2f.2f.2f.di.di.Ti.Lh.;h.Mh.qg.Lh.qg.qg.qg.Mh.Lh.Ui.Pg.n$ qg.qg.Vi.Ob.v7.v7.v7.,h.06.x; Mh.(i.Sg.x; k$ ,h.p$ k$ =* #* ,h.Af. f.06.Af.q$ h@ o$ #* .& =* '* h$ Y% 0@ q$ x; #* &9.p$ k$ >* 0@ o$ o$ =* k@ >* ,* g@ p@ m$ u$ X* a@ e@ p@ p@ :; >* X* cK :; i@ )* h@ j@ t$ t$ j- l@ k@ l@ r$ )* q. Wi.Xi.-|.R:.*~.N+.R:.,h.A= -|.-& E9 {* -& x@ 55.F9 8@ 93.e@ v0 j@ m$ '* kW p@ j@ h$ .& .& 7@ P* J- 2'.^ .N} Yi.Zi.kh.`i. j.mZ `g.c !%.Ac YN tN e*.$c [R $c -d ub O;.%e =d [* ]& ]& T@ V@ + Q$ $ S$ & + + + + = > S$ & + }* $ = ; > N$ H= | & & | & S$ U@ Z@ R$ ; ] X@ Q$ & 2 U$ U@ ; ~ N$ ; ~ N$ Z! N$ { ] U@ W@ ~ 4 < /& ~ 4 | U@ g{.4 d N$ ^ $# <& ~ 8- < V~ } J= 6 ,# 4 6 D, 6- 1 } a d 5 [ $# 3* 7 7 ,# $# 0 k 7 7 a {# a ~# s> e {# {# 6! {# ]c 0 ~# 0 n r n s> h `! -) s> 0- m m m 2, $] l n^ t b' $] G#./# b' D w 2; G /U /# :# /# F= <, a7 F= z z z a7 /U w /U a7 a7 a7 a7 '&.JW JW HV a7 c- c- c- c- c- JW V c- KW V 0S 0S V )W 5 .i5 iI iU A: A: L J A: 3; I#.*I 3d yS BX #N ^P #N )Q )Q #N #N ^P ^P ^P RT EN -X <#.+Z mL $N mL $N AS hT AS AS hT AS hT ZX aS .` 3Z cQ FN %S sM DS sM HN dS dS dS {Q |C CR |C :C |C fK fK 6N 6N 6N -S 6N -S FJ tH tH tH tH uH tH tH uM tH qL 5D 2h IF LE hs hs Qe LE wH %J IF ~I IF Se *A wH on ~I ms on [e 13 Wf }e }e 13 [e [e kj 13 Xf ]} [e *j.=/ T2 _| t/ K4 [c 8^ 8^ =/ M3 [c 1{ 1{ s^ j{ y{ H^ j{ H^ j{ i] !! w> q) z{ {% {% c. c. {% {% {% Z- ]> Z- c. Z- q# Z- i. i. Z- r# r# r# ]i.f. =j.2f._% @i.q* 2f.2f.2f.Ve.-j.Ve.dh.;j.di.di.!e.qg.=* Sg.Lh.qg.qg.qg.Lh.qg.Lh.Mh.#i.Ob.Lh.Ze.v7.=* v7.v7.n$ f.#i.m$ k$ `e.Nh. f.`e.aa.Af..& x; -* o$ ,h.m$ k$ k$ m$ .& m$ x; =* =* ,* h$ =* o$ 8f.g@ .& ** d@ o$ ^0.'* kW o$ j@ p@ :; c@ >* && e@ =* X* >* p$ W* f@ X* =* >* r$ >* >j.X* p@ l@ b. {* o@ i@ ,j.r$ t$ f@ 8! 'j.N].R:.^<.Y,.)j.g>.B2.>* !j.r@ Ug.x$ ~. s@ zi.(. Pg.X<.b@ ]0.~* ~* g@ >j.A= p@ 0@ o$ a@ j$ H3.P+.l` Q&.~j.{j.]j.^j./j.(j.mZ h.c ,c ~%.~%.kH [R $c $c $c -d nc nc =d =d P+ a> V& U& Q+ 6i./- o}.!}.s8.s8.<|.k7.G<.V0.iP 39.^# t 1, o ~# r c X$ o a } ", +"$8.9| e^ |1 |1 9| <{ 9| 9| 9| <{ 9| 9| <{ 9| <{ 2^ <{ <{ |j.9| <{ $8.jP R@ ]^ R@ J$ l) R@ ]^ .( I/ I/ ]& I/ 0' I/ R@ L$ I/ 0' L$ I/ 0' + K$ # 0' 0' # # 1) p9 + . $ 0' % k) # $ . = + V@ - [* o! & ' . + > Q$ Q$ - ; > $ 2) - = S$ S$ > = ; N$ P$ U$ R$ N$ o! ; - . * %= > ; U$ U$ X@ N$ ~ xS Q$ ] | X@ =' > - Q$ [ X@ ; X@ ~ { 4 { | 2 < ( X@ X@ [ 7- 1 < 5 /& ## 7 a J] < j $# 8 D, B; a' ,# d 6 <& 7 ,# 8 0 k 0 3] Y> } 9 e q> ,# ~# 6! {# 0 j c Vj {# h 0 0- ]# L= z: p h h p n^ 4* % b' n p q 0- ]# b' b' D `$ p 4* t `$ `$ )> 2; /# E #] z /U z F= z {& z /U z z a7 /U a7 B '&.1& 1& AR /U 1& M V c- M KW 1& c- c- M V c- .@.>z M V 1& :#.SO oY Q B$.*I *I *I *I #N 3d (U ^P ^P ^P ^P ^P ^P #N #N #N ^P RT _M EN jU H&.6B mL mL $N AS $N -I AS hT hT AS $N BS AS AS CX BS FN cQ &S FN DS ed.tZ dK nO 'O IN dS Zz fK Zz Zz |C fK 6N EJ |C |C }M QP $J uH KK 1M tH ;E 5D tH [z 2h [z hs (P wH 2h hs Re !I qL Oq IF Oq Re Oq LE %J Jc on Oq Wf Wf Oq }e }e }e 13 13 }e [e 9t :c d.Lh.Lh.Lh.Pg.qg.5f.`e.v7.;h.Lh.n$ Ob.v7.n$ x; e@ o$ `e.6j.x; hi.x; Af.,h.k$ wS -* .& Y% o$ =* o$ d@ ,h.k$ #* q$ m$ ,* o$ m$ Y% -* X* h$ o$ Y% d@ k$ )* && ,* e@ d@ >* >* d@ 0@ *& j@ ~* l@ && =* ^* t$ f@ h@ 7j.r$ :; :; 8j.u@ o@ p@ <. u$ ,j.-& u@ -& 9j.0j.(/.^<.^<.n{.&%.Q_.[@ +] j$ && -O y= -& -& u$ ~* +& $* %& +& ~* A= l$ ,~.:; e@ j@ y; 7@ 62.w6.X-.]G qN aj.bj.cj.dj.ej.fj.mZ _X c Ac ~%.~%.c*..$.e*.$c yh #H rc nc y>.rc _f T=.*e nc nc ue vV T=.kc y$.gj.su Ho Ho hj.B,.ij. i.B7.c7.j6.X5.jj.4h.X5.-7.T! Q+ O+ G% G% G% B[.O6./$ o}.#) g1.Q+ R+ L+ Q& U+ a> vC pM S+ vC vC {- G<.of U}.{}.b[.o}.{e.5* 1; 1, h a h 9- $# j a 6 ", +"98.98.^, z~ |1 *) 9| w9.9| w9.9| 9| 9| <{ 9| <{ J$ w9.<{ I/.9| J$ <{ <{ 9| ]^ BN <{ *) J$ R@ R@ I/ 0' I/ I/ I/ I/ I/ I/ 0' 0' ]& ]& I/ ]& # # # [n = # =[ #S + * $ = # $ [* =' k) # + # $ V@ * $ T@ . $ # $= # . > # S$ Q$ # & - $ |* > Q$ > U$ $ [* R$ X@ > & - ; Q$ ~ X@ N$ | ) ; ~;.%= { %= ; | X@ N$ & N$ R$ U$ ; [ ## [ d } 5 [ } F:.{ H= 2 4 } d J= } [ } / : d $# 9 d q> } 5 d 6 7 0 5 /& k b q> 3* 6 a 0 {# 0 {# {# 0 e 9 b ,# e e Y0.L= }& |& ;= n ~# s> Y$ r s> Y$ s> k0.v ,> n^ s> ^# L= ,> b' m p! D `$ u t p t #] G F= t F= w :# {& W) G z 1; z z '&.'&.a7 z kj.w n! #= P%.T^ c- c- c- c- ;O V 8* c- c- c- c- JW AX V c- 5 .d{ z .aV oY *I B$.B$.B$.*I *I qF G$ A: yS #N #N #N )Q #N #N #N #N 3d )Q RT lP H&.lP bV $N $N mL $N hT mL mL AS AS AS CX hT ~&.CX hT cQ 1Y cQ _U iT ST =S BR dQ CR -R |C ~Q 5N fK Zz Yz |C Zz Zz 6N |M |C fK >X 7a.vG uH tH KK uH uH vG tH TL IF sI hs hs hs 2h Li wH 2h Se %J wH Oq Re +: Se }e Se Se 13 F3 13 F3 13 }e }e }e }e }e 8d :9 og [e bi.D4 [| E0 E0 t/ 6^ 6^ s^ M3 =/ s^ y{ j{ y{ 1{ v/ j{ j{ H^ j{ m~ c. k] !! V' B{ Z- c. {% c. d. d. c. Z- Z- {% q# q# i. i. i. q# i. g. lj.]i.t# Ve.2f._% di.Ai.dh.Ve.uh.2f.2f.mj.)e.Ng.dh.nj.zf.>d.(i.zf.Lh.Lh.Mh.Lh.qg.Lh.qg.>d.Ze.e@ oj.qg.v7.v7.n$ n$ k$ p$ m$ v7.b@ hi.v7.x; m$ o$ 6j.b@ 06.k$ 06.06.,h.#i.m$ =* o$ ^0.Y% q$ 0@ =* ,h..& =* ,W A= h@ i@ k@ ,* p@ =* A= l@ )* ,W j@ l@ =* p@ -& A= a. =* j@ p@ m@ r$ F9 @& i@ k@ pj.t$ r$ j@ h@ p@ p@ xi t$ u@ -& S= qj.T>.(/.R:.4#.4#.-|.,~.L- ** h@ %9.y= i@ c@ i@ r' ** _].8@ >* h$ `% p[.,~.9@ +] h$ 0@ y= Y% R:.`,.-Y ]J ^i rj.1h.Vh.Gi.;n ;i.sj.;i.@H jY o@.o@.GW 2x $$.tj.o%.>c k..!%.x&.~%.5j [R [R $c yh #H nc nc #H rc nc =d nc *e nc :f Zs mc ,e we uj.vj.N}.Ho wj.xj.yj.zj.b7.Zc.Aj.Bj.Cj.Dj.ge.b7.3h.S& Ej.k= F% S+ Q& u2.DL O+ Q+ L+ /- /- S+ P+ R+ /- o}.!}.n}./- S+ vC n}.a> iP <|.Y3.!}.,).^# q Y$ *= j c o )# e V- g ", +"9| xi.e^ 2! xi.9| |1 w9.9| 9| 9| <{ 9| <{ <{ <{ <{ <{ J$ <{ <{ <{ l) ;b <{ <{ 2^ <{ ;b <{ ]^ R@ G= I/ I/ I/ BN #S I/ ]^ L$ 0' ]& G= I/ 0' + # # 0' ]& # + ]& 0' K$ + k) . V@ 2) k) = + ]& + $ # V@ 0' 0' $= ]& 0' |* # = S$ + Q$ & . 5! > Q$ ; - N$ X! ; > > R$ P$ & X! > R$ > ; R$ ] 05 ~ U$ | ~;.U@ ; | ] { 2 N$ `@ | N$ 4 xS ~ 2 ) 1 <& { 2 /& ~ W@ 2 N$ [ 2 /& } | 2 4 7 6 <& 4 1 Y> 7 k x0 ( ># q> 6 /& ,# 6 e ~# ,# i ># 6! 2* 3] ,# ( a k 6 i !# ~# o Vj E, E, a n _# h -) }& s> 0- ]# z: h 4* G#. % 4* 1; % p ^# p Z$ m % Z$ s> b' t 4* #] t G w :# E |Z /U z z G z a7 I K 1& z a7 n! A 1& Fj. Z c- V V V =X c- AR O@ =X V z Z.. V B).4>.0S i5 Z..B$.:#.:#.B$.SO A: A: oY 3d BX (U y+.^P )Q ^P )Q #N #N #N ^P ^P RT !Q EN '*.bV $N $N mL mL AS $N mL AS AS $N AS hT aS .` hT _U DX &S BS =S cQ sM GN DS [M IV fK oO ~Q Zz Yz Yz fK eK Zz Zz Gj.fK fK nP Hj.jy vG vG jy vG vG jy jy KK KE KE IF Qe y4 IF wH Uv 0J on B0 LE on Re Oq LE Oq Se on 13 [e /c Cb 13 F3 13 [e 13 13 }e v9 .8 13 F0 1e ~b >2 E0 t/ 6^ 8^ %^ 8^ M3 %^ j{ {> 1{ y{ y{ @~ y{ j{ H^ y{ V' e. M) !! #~ {% c. c. c. e. {% e. e. d. _g.i. q# d& q# q# i. q# q# /> ]i.]i.2f.Ai.Ij.Jj.Ai.2f.Ve.-j.2f.Ai.di.2f.Ng.Qh.zi.nH Sg.>d.(i.zf.Lh.Mh.Lh.Lh.Sg.Lh.#& Lh.Ob.Mh.#i.v7.v7.Ob.v7.x; e@ p$ v7.o$ =* =* Y% aa.`e.=* Af.x; k$ o$ m$ o$ x; 6j.o$ m$ =* && X* A= :; =* Y% ,W i@ e@ =* nH =* >* h$ h@ d@ j- ii.j@ u$ W* *& ,* m@ j- j@ m@ -O f@ r$ A= r$ u$ F9 l@ kW ~* k@ 7j.b. t$ E7 p@ F9 q@ ~* w' Kj.Lj.Mj.n{.}*. < _.Nj.&6.n{.n$ 94.[@ h@ o@ t@ q$ 0q <: >* +& )* k@ sg.6@ y= X* ,W &* 2@ A4.93.p{.C%.xT Oj.Pj.Qj.Rj.Gi.Sj.sj.W` W` [ .SZ m@.>+.Nj p@.^@.< .>c $n tb ~%.H(.S...$.$c $c $c yh #H rc nc rc *e nc we {l we nc :f we Tj.lc c Uj.yd.wt Cd &x Vj.j].Wj.Xj.K6.ge.Aj.h3 I7.ge.Yj.Ao C+ `U E% Q+ G% R+ ^l /$ Q+ G% T+ T+ T+ P+ a> S+ S+ a> vC a> N+ /- g1.n}.a> h1.<|.h1.o}.xc.D -) n e g r c f o a 2* ", +"q, ah.|1 e^ *) 9| |1 |1 9| 9| 9| <{ *) 9| 9| 9| <{ ], ]^ <{ <{ 9| J$ I/.L$ R@ 2^ 2^ I/.L$ ]^ R@ ], I/ #S I/ L$ #S #S G= 0' 0' 5_ I/ 0' 0' 0' Z, # + p9 Z, # ]& Z, + # = Q$ > # # $ $ ' . = . Q$ =' $ > Q$ Z, V@ |* = . # Q$ N$ $= > $ = > U$ A; X! > - $ & U$ ; P$ & Z3 | > | > > & ~ & N$ ] Z! ] { 2 2 Z! | X@ & ~ { ~ 2 2 ~ ) 2 ~ ~ S$ [ { 7- { { /& 4 [ ~ ## 2 : 7- 6- k 6- => ,# ## 1 ## 1 } 7 7 a 0 a 9 7 6! 6! a 7 d a 9 ~# ,# 6! ~# {# 7 n Q{ 0- Q{ [& o -) |& n ~# ;= r h 0n 2, Y$ Y$ 1; 4* 4* 2, D^ xE /# V| :# ^# 4* 4* F= 2; w w C #] G #.1; :# w B z F= '&.I 1& F= a7 a7 I z JW T^ T^ c- HV HV c- V c- Z V =X V 8* 0S v@.o^ z .I{.Z..SO x .QT aV SO A: L A: aV BX yS (U zS ^P ^P ^P )Q ^P ^P )Q )Q ^P #N ^P qH lP <#.lP mL 6B mL AS $N :M HQ rH AS $N hT AS Zj.HQ cQ :M _U FN -I QL sM dK lI dK ~Q IN Yz HN [M Zz dy |C fK -S 7N eK `j.0R |C oL vG jy uH vG uH vG tH tH ;E @A 2h 2h KE vG hs 2h Qe hs IF on Yf. k.Se Se on on on on Se }e /c [e [e 13 [e }e 13 }e 13 F3 _c .k.9t +0 Eb s/ 6^ :5 =/ 8^ 8^ S{ 8^ 6^ U' ^= {> 1{ {> {> i{ y{ 1{ j{ q) e. ]> !! !! #~ {% c. Z- c. c. e. c. c. c. c. e. q# f. c. g& f. lj.3j.g. t# i. [c.[c.r# *h.=j.2f.Ve.=j.Ai.Ve.q* Ai.Ve.Bi.mj.mj.Mh.(i.Mh.Mh.Ti.Mh.Nh.5j.b@ Ti.Pg.v7.Nh.#i.hi.A= b@ x; v7.#i.k$ m$ =* =* m$ n$ Af.x; k$ x; d@ 0@ 06.,* =* p@ =* ,* #* =* o$ d@ m$ #& Af.m$ +k.A= p@ g@ sg.A= p@ ,* Y% 0@ f@ -O :; t$ ~> Y* :; W* u$ u$ t$ p@ ,j.l@ k@ i@ h@ -& k@ t$ F9 l@ /i.~> t$ D= j- !* t$ j- uh.@k.E* 8=.vg.z* `: :+ P).#k.85.6@ H3.w6.j@ -O =* h$ o$ -|.2@ $& r' w; j@ =* e@ }Z wS ^0.9@ b$ g).e= g+.$k.CP %k.&k.*k.=k.-k.@H d @H [ ..s >+.tu tu /F 9#.o%.o%.!%.Ac ~%.YN _N 3&.MI $c e*.yh #H ub nc =d nc *e Zs ve nc mc nc nc {d rc ye ;k.>k.3R ,q &x ,k.'k.)k.!k.si.j6.~k.{k.Yj.N6.]k.^k./k.bK /$ P> A:./- V+ Q+ G% G% R+ /$ P+ T+ V+ T+ Fc S+ R+ T+ R+ P+ (k.iP Zi iP {}.X3._k.`f.C p % e h [& o Y$ 7 X$ a ", +"q, 2! xi.e^ e^ 98.xi.z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ R@ 2^ <{ <{ J$ <{ ;b <{ <{ *) J$ <{ J$ R@ R@ R@ R@ R@ L$ 0' 0' L$ BN I/ 5_ L$ 0' 0' 0' 0' Z, # 0' ]& Dv + ]& + # I/ + }, % $ {c o! # # $ + S$ |* . > V@ # . > S$ . > & > V@ ]& > Q$ . |* > Q$ Gc U@ %= N$ N$ . | P$ ] - > P$ ; %= & T- & . 2 | ] =' & ) R$ P$ ~ ] P$ [ J) ( H= X@ ~ { 2 { { 1 { N$ ^ 2 [ 6 } { $# 1 ( 6 d d , 6 a [ k ( -# ( d 6 7 3* =# 5 == 6 {# < k 0 6! } 0 6! 7 ~# ~# !# 0- 0 c n L= t' h -) -) h n^ L= Y$ V| n^ }& p 1; cj 1; xE -) ,! 1; y t @= @= 4* p /U w $S 2; F= F= {& B #] w G z B a7 a7 1& $T a7 '&. Z A$.8* 8* AR T^ JW c- c- c- .@.M M M c- c- c- 0S 3# =K V 0S Q iU *I L A: A: *I *I aV iU zS p*.qF 3d ^P ^P ^P #N _M ^P #N )Q )Q ^P )Q bV !Q _M $N mL 6B mL AS AS $N HK AS mL :M FN J J HQ BS FN _U HK d.Mh.Mh.Lh.#i.Lh.Lh.Mh.Lh.v7.n$ 5j.`f. & A= hi.n$ 0@ ,h.)* e@ Af.p$ ,h.=* p$ 0@ =* x; z= * >* sg.e@ e@ i@ >* h@ p@ n$ >* p@ i@ e@ ;* && =* m$ +& t$ j@ j@ ,j.j@ Z* kW u$ ,W a. m@ t$ m@ $i.u$ -& E9 l@ n@ ~* l@ ;& ~* o@ ]* ~> ;& {* [k.}k.h/.3T &P V# #$ #$ wg.<: Ga.6@ 62.u,.=* 0@ ** 5@ t$ 5@ l$ 5@ P{ 2@ /M q$ i$ V1.l$ Z<.b$ ,~.n, Z#.^ ..Q dY |k.1k.2k.3k.X+.@H q..=f o@._J l+.U@.$$.^@.4$.!%.Ac tb YN _N _N YN .$.$(.[R 3$.#H #H #H =d wd lc *e we nc :f *e lc 7<.~}.n}.;[.Oe g0.U}.D8.^# p p `$ ~# r p X$ o o &# ", +"*[ 2! 98.*) e^ &[ q, 2! <{ *) 9| *) *) 9| 9| 9| <{ <{ 2^ <{ I/.I/.J$ 2^ <{ <{ <{ <{ J$ jP l) R@ V! 2^ L$ BN R@ ]& 0' I/ R@ L$ ;b 0' I/ 0' I/ # # 5_ 0' = ]& ]& 5_ $ # = # 1* V@ & $ > 2) }, $ S$ |* = $ - . ' R- ' $ . > U@ > + . . $= $ # $= X! > |* |* $ - H= U@ | ] U$ ; & 2 'W J) { ] | ; - 2 %= X@ J) S$ { 2 ~ | ~ /& X@ Z! | { [ 1 ( ( } g{.N$ $# } 5 d ~ -> 4 } ~ B; { 2 ,# &# /& a /& b d ## 3* &# < 7 a d J] ]c ~# 0 e tA i ~# ># a 0 k z: t' ~# [& K/ |& |& ,> h s> r ]# r r h Vj h ,! V| 2, 1; #| % ^# #| p ^# /# t /# p! 2; $] {& /# /U G /U #.F= {& {& z {& z #] z z a7 z a7 z 1& U!.~& z V O@ Z M V c- >z c- Z c- M V 0S AR >z 5 .QT Q Q Oz d{ SO Z..aV SO aV y+..Z (U XX )Q #N ^P RT +Z ^P ^P )Q ^P )Q +Z @N tw )Q EN mL mL 6B $N mL AS :M mL hT AS HQ FN BS AS _U ST cQ FN GN ST #Z HN iT HN ~Q 'O |h &N Zz fK |C Zz |C 6N Yz EJ IN *N RL !O uH jy jy vG ~9 jy )I vG vG hs 2h 2h JK 2h IF 2h Iw 2h 2h Se Yf.(9 Re Se F3 Se on on +: 13 [e F3 }e }e [e }e [e [e [e v9 6^ J4 )b w9 8^ t/ G0 1e >2 8^ 6^ =/ 6^ L4 s^ @~ 1{ a; v' 1{ y{ 1{ !! y{ i] 1{ ak.6. i* c. c. c. e. {% e. e. Z- c. e. c. q# q# d. '' g. 3j.t# r# lj.&h.m. t# uh.bk.ck.dk.Ai.Ai.-j.-j.-j.Ai.2f.-j.Ai.mj.(i.wS zf.Mh.Lh.Mh.d@ wS Lh.hi.Lh.Lh.b@ >* k@ d@ e@ n$ n$ m$ m$ >* ,h.v7.p$ ,h.hi.:; d@ e@ sg.u$ h@ 0@ m$ m$ h@ ,* m$ U* %& m$ ,* :; %& e@ z= i@ wS =* :; p@ p$ :; d@ &p X* j@ j@ ek.l@ m@ %& j@ j@ t$ h@ cK m@ ~* s@ t$ t$ o@ ~> p@ !* ~* :. -& ~* t@ cK ~> 0& o@ fk.gk.A%.m$.u,.$; M .A%._/._].1!._/.Di.A%.hk.[@ o$ j@ e@ 99.H3.[@ W/.-|.,~.:i.94.S9 2'.d$ |@ #5.^].h+.IY 8P ik.jk.kk.lk.mk._ .Y+.jY 4G ]#.l+.p@.$$.~#.~#.< .o%.Ac k.._N _N sf S..;c [R R;.+l $c -d jZ =d f*.oc . (& = & [* . $= S$ Z, > & # > & ' - > S$ > - . Q$ U$ Q$ H= U$ S$ Q$ X@ 2 | & H= Z@ H= Z! | 2 | R$ N$ R$ ] 2 ~ | ~ ~ 2 | *# 2 | | < 7- 2 ( ( ( B; 5 4 | 2 ~ $# 6 $# 2 7 : x0 V~ / d 5 i 3* ,# 6 $# < 2 } J] 6! e 0 6! k 0 q> 7 uk.X0.a ~# ~# 0 k z: K/ 3] ~# L= |& n c c |& s> Y$ -) r h |& 2, r `$ ,> 4* 4* #| b' m 1; ,! #] 2; m 2; 2; w F= #] $S N 2; G F= 2; z E z a7 z O 3d qF (U BX ^P ^P #N )Q )Q )Q #N )Q ^P )Q @N `I _M +Z -X $N $N 6B $N $N :M 6B AS hT AS {z $N jU :M cQ FN cQ MP iT sM &S GN iT =S mP Zz 8R ~Q dy Yz Yz Zz Yz dy Yz RL Yz *H 'I jy ~9 vG vG 1M ~9 >K vG tH qO ;1 hs KE x4 2h 2h Qe %J IF Re Jc << Re +: on Se F3 13 F3 13 13 13 13 F3 13 [e [e 13 ka 13 S{ R: S{ @0 _c +8 D4 I4 u/ 6^ 8^ h{ I! I! s^ 1{ y{ @~ ^= 1{ m~ a; a; @~ a; {> 1{ )! A{ 8! c. e. e. e. c. c. e. c. 8! e. vk.g. '' o# i. w' e& wk.w' :k.bk.xk.2f.Ij.m. Ai.2f.-j.Ai.2f.2f.2f.Ai.2f.Ai.A= ;j.Mh.d@ yk.hi.qg.d@ Lh.wS wS #i.Lh.p$ ,* p$ i@ V* =* e@ =* >* ~h.=* >* b@ #i.Nh.=* d@ .& h@ =* i@ m$ o$ sg.c@ +& 0@ .& b. u$ >* ,W &p u$ t$ t$ A= p$ o@ n@ j@ X* -& '* m$ o@ m@ F9 u$ b. a. p@ r$ ~> >* l@ {* ~* >j.h@ F9 ~* o@ zk.m@ ~* -& -& s@ o@ v$ {* l@ q@ 1. UV d+.|!.:^.7= H> Ak.x^.3}.99.Bk.1!.<: 6@ l/.Q9 ~* &9.e$ {).e].I9.i$ 4'.B2.2@ |@ W% K- 2'.m:.{].^ .7W QS Ck.Dk.Ek.Fk.Gk.Vk SZ P}.;r l+.2x /F /F @$.~#.Q$.>c !%.8E _N _N _N YN ;c [R 5j T$.yh -d -d -d :f oc nc *e nc ve $e :f we >d /w ve TD Hk.4d.7T [..Ik.Le.N'.Jk.Kk.3h.B7.c7.j6.() `U B% D+ F) p9.K+ E% G% Y+ vC E% V+ O+ a> P+ S+ Q+ L+ ($ T+ R+ Q+ P+ !i.Lk.;,.Mk.o}.^l #f ,[.v* p C; X$ X$ h j Q{ r d d } ", +"*[ z~ xi.xi.9i.*) w9.9| [) z~ z~ *) *) 9| *) 2! 9| <{ <{ <{ 9| <{ 9| J$ <{ <{ <{ R@ 2^ J$ <{ I/.G= J$ <{ G= I/ R@ ]& I/ I/ I/ I/ I/ L$ BN 0' = 0' # K$ p9 p9 5_ * Z, J$ # = = Q$ [* ]& # R@ $ > # + # S$ $ k) $= & . + + + ' $= # - ' U@ . = & U@ S$ U@ Q$ ' Q$ P$ ~ X@ %= | ] U@ N$ ] ] N$ S$ X@ N$ | ; & | 7- S$ X@ Z! ) ] .# | I= ] ~ [ 2 & 4 d { /& : { 7- ( /& ## 9 Z@ { < ## ># Y> 6 d ,# b ># )1.6 -# 6 d 7 d ,# 9 6! tA q> 0 x0 i k 3] 6! ,# ,# 0 a 0 0 L= ~# ~# ]# Y$ n^ r [& s> -) }& % `$ ,> ]# r ^# 1; #| b' 4* b' 4* @= b' #] t /# 1Z F= /# {& m m ^# ^# :# B /# F= G F= z /U C` a7 a7 /U a7 a7 ).@ .P%.a7 O@ 8* O@ >z V c- M c- V V c- V V 5 ..@.(#.y .L AX Z..A: U iU iU A: *I r! ^P BX (U oY )Q ^P #N ^P )Q ^P #N #N ^P )Q )Q EN mL ^P 7s $N $N $N mL $N AS $N hT AS $N J AS AS AS aS _U %S 3Z .J J cQ ~Q sM HN HN Yz 'O ~Q cy Zz Zz eK 6N 5N Yz oL Zz Yz eK ~9 >b uH tH jy ~9 pL tH jy jy ;1 ;1 ;1 hs ;1 hs 2h Li KE Li Se +: F3 B0 +: W^ +: 13 F3 }e +: 13 +: F3 F3 13 F3 .8 F0 }e S{ 6^ t/ v9 [| S{ 6^ I! 6^ 8^ , f' 8^ 6^ I! y{ 7) 1{ g' n# ^= a; ^= ^= a; ^= 7) i* !! i* e. e. c. e. w' e. c. {% c. c. c. g. g. q# '' g. g. :k./> k. ]i.Nk.Ai.2f.uh.Ok.Ai.-j.Ai.Ve.Ai.-j.Qh.Ai.+k.mj.$z Sg.Lh.nH wS Sg.+k.Mh.Mh.wS p$ wS Pk.m$ e@ Pk.b@ p$ nH #& h@ x; d@ m$ e@ Sg.h@ p$ =* =* p@ ,h.o$ 0@ c@ ,* >* p@ =* m$ d@ i@ +& z= >* u$ $i.j@ i@ =* F9 l@ j@ f@ f@ -& -& p@ j@ W* F9 m@ o@ t$ -& m@ -& F9 t$ s$ m@ x$ -& t$ s$ W* ^* l@ ~> o@ -& ~> O- m@ s@ Y* t@ 4,.Qk.N].`(.=>.e@.{<.p{.1- U[.R:.F3.[7.>* 3@ 1@ .& Rk.(; GY FZ 8@ L- _{.8@ 4@ 2@ 9@ y] 3}.84.)..IY pN ]/ Sk.Tk.Ek.Uk.Vk.MC X+.4G l+._d p@.=F /F 4$.< .t:.7f $n k..8E _N YN sf tN n+.[R $c yh Wk.~=.-d wd :f =d nc nc $e Zs _f ve gc Bf vd 0b Xk.(a.4b.Yk.Zk.Ad.Bd.`k. l.}8.-7.c7.N6.hg.-7.N6.`] i3 94 G% /$ O+ E% pM n}.O+ S+ a> vC S+ R+ Y+ F% Z+ P+ E% vC $:..0..l.0<.n}.~}.n}.v_./] ^# o c h 0 e a c e $# o ", +"z~ z~ |1 $8.*) e^ )~ 9| |1 <{ 9| <{ 9| *) 9| 9| <{ *) <{ 9| 9| <{ <{ <{ 2^ <{ I/.J$ 2^ 2^ jP 8S 9| 9| ;b I/ I/ R@ 2^ 0' 0' I/ G= #S 0' J$ I/ 0' K$ 1) + + Z, 5_ # # + # # . k) + ]& . + + . $ # $= # . # $= $ !, % $= S$ [* V@ > U@ . . & U@ U@ S$ (& > S$ ]& & P$ ; & N$ N$ ; - N$ U@ N$ S$ , 4 .# R$ | 2 Z! U$ X@ J) ~ ; ~ ; W@ P$ ; ~ { ; { d [ ## { 2 7- { %# 2 9 ( { /& $# J= Y> d d 3* J= 0 Y> d 3* a 6 D, i ,# 6 3] 3* ,# 0 k g } 0 K/ e D, ~# !# 6! 6! z: n z: n ~# s> n Y$ Y0.-) l 2, p 2, n n m b' 4* ),.b' b' 4* b' +l.m `$ b' /# {& 1Z #] {& t ^# D 2; z E /U B F= F= F= /U '&.'&.a7 a7 '&.a7 N X8.a7 O@ A G 8* JW A V JW c- V c- c- .@. V >z .@.QT Q L QT 3; d{ SO *I L *I Q BX ^P oY *I XX #N )Q ^P 3d ^P )Q )Q ^P ^P ^P @N @N 7s tw 6B mL $N $N mL $N $N $N AS UO HQ :M hT $N hT aS ST sM MP %T sM K @A x4 2h hs x4 IF B0 LE ;1 Re Re }e B0 Re F3 +: 13 +: F3 13 }e }e 13 13 13 13 D4 .8 C0 :4 =/ S{ -k :9 8^ 6^ I! 8^ 6^ 6^ 9; t/ 6^ =/ 7) ^= f' 7) 6. ^= a; !! ^= a; ^= U' V' h* d. 2j.d. d. d. e. e. d. d. e. c. '' '' q# q# d. e. q# e& 3j.r# ck.xk.p@ -j.xk.ck.Ai.-j.Ai.+k.2f.Ai.zi.Ai.Ai.sg.mj.Sg.wS nH Sg.Pk.qg.Lh.Mh.Mh.Lh.Mh.Sg.#i.b@ i@ m$ v7.m$ =* d@ ,W :; ,* X* '* d@ p@ i@ sg.Y% #i.e@ b@ d@ i@ '* g@ e@ X* y; '* p$ i@ j@ l@ -& t$ f@ b. A= )* && *& t$ t$ j@ W* f@ W* t$ && j- l@ t$ E9 ~* F9 j- t$ t$ o@ <. <. -& t$ y; -& -& E7 u@ 3. F9 q@ 8j.(. t@ P:.m{. _.X<.9= W# B2.@l.2!.i$ :1.wg.5,.$5.99.i|.B2.#l.$l.a@ 0@ =* o$ l$ ** 9@ &6.2@ 4'.+=.C*.g+.kR SR %l.&l.1k.*l.=l.-l.SZ SZ .s l+.:d *f l@./F < .o%.>c >c k..o+.Ac _N S..YN ED .$..$.$c 3$.-d zh -d =d =d =d *e nc Zs pc ue l.k).,l.}f._~.*0.j6.Cd.w~ >7.w~ h3 A% C+ ]7 a> Q+ /$ {- {- {- P+ L+ T+ T+ /- /- S+ P+ T+ Q+ vC vC .N 7<.O+ 7<.pM .N ,7.9h.l* D _# c [& tA ~# 6 b V$ b c ", +"|1 *[ 9i.*) xi.9i.z~ ah.2! |1 )~ 2! 2! w9.9| 9| 9| *) <{ 9| J$ 9| J$ ;b J$ J$ l) ;b R@ 2^ 9| <{ ;b 9| 2^ L$ p9 BN <{ 0' I/ ]& L$ .( I/ I/ I/ ]& 0' I/ + Z, L$ 5_ + $ * L$ 1) . + # o! . . . ' S$ + > V@ ]& + V@ = $ V@ $ [* . ]& - $= & V@ + = - ] Q$ Q$ |* T@ . & | U@ U$ | U$ > Q$ | 2 P$ | b{ H= H= ) { xS 2 `@ U$ H= | - Q$ | { Z! /& ( { X@ [ 4 4 ( [ *# | ~ $# 2 { J) 4 } ( 7 ( 9 ,# 5 &# ## V) J] 8- 5 ,# ( 7 3] 6 7 7 6 0 a 6 ,# q> W$ ,# 6! K/ 6! ,# 6 a 0- 0 ~# K/ 0- ~# S^ 2, r s> ,> n r % m '> #| r yi.b' q ^# r m w 4* /# 2; /# w C 2; G )> w F= z F= F= z B a7 /# z a7 F= z '&.z I $T 8* n! 1& 1& c- c- JW $T /U V >z V V T^ 0S z ..@.d{ 0S B..aV 3& E$ aV L &{ oY A: qF 3d qF (U c~.#N 3d #N pF #N ^P #N ^P ^P #N ^P )Q # .lP @N mL EN $N 6B $N :M :M mL $N AS -I aS cV :M HQ J lI 2..eQ DS DS HN iT dK =S kT -R {Q RL Yz Zz Yz Yz |C Zz 'I 7J tG oL >b ~9 >b 1M qI jy >b vG jy jy >K ;1 x4 r/ Qe 2h 2h Se 2h Iw y4 y4 Re Re F3 +: +: W^ 13 F3 F3 F3 +: F3 F3 A} _| .8 Mc D4 .0 'l.:4 t/ '! I! 6^ I! '! , )l.t/ l~ M5 9; ]= g' 1{ a; ^= ^= 6. ^= ]= {> !l.i* 9. g' Y~ 2j.e. d. e. d. e. e. d. e. ~l.,' ,' d& '' e. g. m* g. {l.ck.&h.]l.-j.Ij.@i.2f.=j.Ai.+k.2f.-j.A= -j.;j.dk.dk.Qh.wS Qh.Ti.Pk.+k.^l.Mh.Sg.d@ =* Mh.,* sg.>* m$ m$ =* d@ e@ d@ e@ d@ 0@ >* e@ ,* p$ wS f@ A= #& /l.i@ m$ d@ e@ =* '* sg.t$ j- t$ -& ,W A= F9 o@ ~* &p l@ ~* F9 h@ '* f@ l@ o@ h# a. ~* -& -& ~> m@ ~* F9 r$ r$ ~> o@ s@ {* u@ l@ p2 l@ b& `* v0 o@ s@ h# =& 2. (. (l._^.C2.^; _l.:l. $ $ . > - . ; . $= U@ - - $= Q$ U$ > S$ U$ U@ & 2 ! R$ o! R$ ] 2 2 ) ~ Z! 1 ( N$ $ ~ { ~ ~ 1 Z! 5 W@ { X@ $# { { 6 6 => 9 5 4 == } $# `@.d } d 6- q> x0 J] 7 7 k ( } tA a ,# c6 0 ,# i tA 7 {# L= e b 6! {# K/ 0 !# tA 0 c |& -) ~# s> o/ Y$ }& n^ Y$ c L= 0- ,> 2, 1; m b' `$ ^# 1; 4* /# p! 4* q p G u {& xE w8.z F= F B :# G z a7 #] F= F= z F= z z n! F= N@ AR a7 JW 8* T^ c- KW 8$.JW c- c- 3# AR _+.O :}.PT V .@.d{ iU L aV *I aV SO *I oY 3d G$ *I qF #N 3d #N _M ^P `I #N ^P ^P ^P lP RT -X ^P @N 6B mL $N $N $N -I mL 6B UO BS {z {z HQ :M HQ FN J FN aS dS _U ~Q &S ~Q ~Q 8R dy dK [M dy oL |C Zz dy |C ]Q 9o Zz dy ]z jy jy vG jy >b ~9 jy jy jy Ab 2h 2h ;1 =H k.x4 ;1 2h ;1 B0 2h Iw Re 13 F3 F3 13 Uv on }e 13 13 13 A} 2~ (9 (9 C0 2~ s/ 6^ u/ .k.I! S{ '! I! '! I! , 0, g# I! l~ f' g' f' U' a; a; g' g' 1{ 1{ a; 0. V' !! Y~ d. d. 9. d. o# d. d. d. d. e. e. e. {l.bk.d. '' g. ,' '' m* e& g. dk.A= =j.{l.bl.A= ,W Ai.Ai.sg.A= Ai.=j.cl.+k.Sg.dl.Mh.;j.+k.%& Mh.d@ wS '* j@ wS p$ x; b@ ,W `e.=* && p$ 0@ && A= g@ d@ =* p$ =* :; l@ f@ >* d@ j@ sg.,* d@ ek.>* j@ l@ xi l@ ~* =* f@ >* j@ A= $i.~* j@ p@ *& r$ && l@ m@ a. l@ o@ `* N- l@ ^* u@ R= s@ -& m@ =& l@ o@ F9 F9 E7 -& -& -& u@ ~. ;& x$ t@ h# 32.`(.C2.C2.el.fl.gl.hl.a@ 89.l~.x= #k.&* 83.m$ )* 79.$z :; +& )* 6@ 9@ 7@ K- il.<2.jl.r-.['.!.._S UQ kl.2k.4l.1k.ll. y o@.P}.KB ;r tu p@.lA ~#.~#.< .k..k..Ac Ac _N _N _N _N Bz n+.[R [R [R $c #H -d -d =d yd {l nc *e we =e =e vd [f Ff |b wd dc 4b.3b.vt h4.ml.*c.nl.@h.ol.^6.Bj.pl.hg.`U B- A+ A+ D+ Q+ O+ Ej.~}.~}.o}.R+ L+ Q& O+ Q& 7H Q& L+ Kb a> P+ L+ n}.K6.!c.0<.b[.^l (i O@ n h _# 2, h 0 e 8 a } c ", +"vh.ql.z~ *[ vh.xi.rl.)~ $8.sl.9| 9| 9| 9| 9| *) w9.<{ 9| <{ J$ <{ R@ <{ <{ <{ 9| <{ .( R@ BN J$ I/.l) BN ]^ 2^ I/.;b 2^ L$ 0' G= ]^ I/ 0' [n R@ 0' 5_ 0' 5_ 0' 0' + # # + L$ % + + + # # # Q$ V@ # ]& + [* > = # 1) ' = - $= + $ |* & N$ [* |* U@ > & R$ . ' N$ $= P$ %= ] & S$ > . > ; - | *X %= T- | X@ U$ | /& ~ 2 N$ X@ ^& ~ N$ N$ ) ;# ## [ 2 I= <& 5 ~ / /& N' <& $# 5 } d /& $# 7- 2 X@ 5 [ Y> d $# Y@ ,# ># 6 3] $# e ,# ,# /& 0 D, a 6 a 6 0 q> 6! !# [& {# a 0 0 0- L= ~# |& h K/ Y$ |& r r n^ ,> r 2, r p tl.xE % r p q m ]c b' t w /# 4* t C :# Z$ 1; {& F= B a7 % D a7 a7 a7 z a7 '&.a7 K a7 a7 z I 1& AR c- M JW V M O@ c- M V V V KW AX z .p=. V .@.L :#.QT E$ L SO Q L A: BX 3d qF (U yS 3d RT ^P )Q )Q ^P ^P ^P ^P lP lP @N lP lP $N 6B $N mL mL $N 7s mL mL :M J Ou HQ mL CX _U J FN cQ iT .J dK HN QL ~Q Wz dy Yz 8R |C dy Yz dy Zz |h dy Yz |C Bw nI tH vG jy ~9 jy vG tH vG ul.>K x4 hs ;1 Ab x4 r/ ;1 Li ;1 6h Jc k.Se W^ +: B0 +: F3 +: +: W^ +: F3 F3 F3 F3 S{ b* _4 _| S/ F0 (c 6^ D4 J4 I! I! I! I! 0, f' h{ I! 0, f' {> k# a; 6. g' 1{ 1{ a; a; 0. d. a; ^= Y~ d. e. d. d. e. 9. e. d. d. 2j.k* m# g. g. d. g. q# vl.bk.wl.{l.wk.=j.Ok.'' bl.zi.-j.-j.-j.,W -j.mj.A= Qh.#& >* Mh.Sg.Sg.+k.^l.Mh.wS Sg.+k.'* i@ %& e@ #& xl.=* r$ i@ ,* >* =* l@ y; &p d@ d@ b. h@ h@ A= A= A= g@ i@ =* d@ u$ F9 j@ j@ n@ $i.m@ &p && n@ m@ j@ t$ l@ p@ '* o@ u@ Y* -& {* u$ N- ~* l@ s@ a& t$ o@ u$ u$ o@ F9 f* ^* j@ ~* s@ s@ m@ 2. a. v@ ,% ~* =& q@ {= 39.d+.94.H3.il.Gf.{).`% 3}.2@ l$ 6@ P].wg.#* c@ 7@ *& S1.k$ &6.z= 9@ i$ |- v!.]].9@ 4@ `,.r-.[$.5W yl.zl.2k.5l.Al.Bl.IU o@.KB .s ]#.p@.p@.lA @$.< .,o ,o !%.Ac >c YN hE YN S..S..;c n+.e*.yh yh $c -d =d =d =d :f & > . $ & ; ] }* k) U@ & =' | ) ~ | ~ ] ~ N$ | *# I= R$ ~ N$ U@ ( ~ ( { 2 { /& { *# J) } { { ( 6 ( } { 1 } d 6- J] &# a' 6- D, 7 i M' 1 } } Y> 3* k a ~# k e ~# ># ~# k a !# 0 ~# {# 6! 0 {# K/ L= ~# n n Y$ 2, c ;= n^ x9.s> c{ r Y$ Y$ p n^ 2, x9.t b' D n^ 4* D m /# 5* ^# t F= w s> F= 2; {& F= G ^# a7 z a7 G /U z K 1& ).'&.#] K JW AR O@ O@ a7 Z .@.M c- Q@ H$ Z c- 1& V d{ z .c- y .Q QT 0S L A: *I A: L Q oY .Z Vf iU p*.yS )Q #N ^P #N ^P #N ^P ^P ^P _M EN lP bV lP 6B mL mL mL $N TO mL $N :M :M Ou Ou -I $N FN FN Jl.:M BS EA QL Wz sM ~Q Wz :C Yz =R RL dy Zz Zz dy Yz Yz |C Yz Zz /Q 'I jy jy ~9 ~9 jy ~9 KE tH >K =H hs |3 Qe Ab r/ 2h B0 ;1 x4 B0 hs Se B0 Se Re F3 13 +: F3 F3 A} F3 +: mg 13 S{ Kl..8 g{ +0 'l.I! , I! 8^ '! , P= '! 0, g# 0, I! 6^ s^ ^= ;% a; 6. ]= 1{ {> a; 8. ^= Y- @~ a; {> 9. 9. e. c. 9. e. e. e. e. c. Ll.m# Ml.~l.Nl.q# g. e& k* k. k. e& Ok.-j.Ok.Ol.=j.mj.Ai.Ok.&& A= 9f.Ti.&& dk.&& Ti.i@ dh.sg.wS d@ wS i@ Pl.hi.h@ p$ hi.wS #i. & p$ i@ A= d@ p$ && h@ sg.sg.=* j@ i@ h@ X* d@ j@ xi X* i@ i@ d@ ~> ~* )* i@ u$ l@ A= m@ ~* u$ t$ R= :; l@ m@ t$ t$ l@ $i.l@ o@ m@ u$ 8j.~* t$ j- <. r$ d* p@ o@ o@ o@ F9 ~> s@ ~> {* Ql.o@ h# o@ 1. h# (. {= ]l.E* hb.w; Ze.Rl.Cc.Q9 5@ -* 0@ ,* ** 9@ G3._; i@ 0q #* 8@ 6@ e@ f@ Nj.n/./].e]./]._].`,.p$.XV 4T Sl.Tl.Ul.Vl.*l.Wl.tf ;r o@.tf m@.l+.]@.^@.~#.lA ,o Ed Ac k..Ac _N _N _N YN sf Bz n+.[R $c e*.yh -d =d =d =d *e nc *e mc ve {l Ad ,d c Hd mc Xl.Za.4b.&x Z{.D!.Eb.)i.El._~.*0.G|.j6.() X5.~}.B% {k.C+ D+ S& Q& Q& B[.^l O+ n}.C- Yl.Q& L* Zl.`l.cM n}..N ]7.4<.t_.gE 6b.{}.g0. m.r q h r c g ,# [& 7 6 c ,# ", +"9i.vh.9i.z~ |1 xi.|1 e^ ^, xi.*) <{ <{ *) 9| 9| *) 9| w9.9| jP 2^ 2^ J$ 9| <{ 2^ <{ J$ r4.J$ I/ .( <{ .( L$ 2^ BN I/ I/ ], BN p9 L$ G= 0' 0' L$ 0' 0' 0' $ # Z, 0' 0' # # + L$ + = + + % V@ ' # # V@ & . $= V@ . S$ > [* > + = = $ U@ U@ . > S$ > > T@ A; = $ & - o! > ] ' S$ U@ %= X@ %= ~ Z! H= Z3 Z! X@ ~ ~ ) [ ; { F:.X@ ~ P$ ] W@ N$ ) ) { ~ ) ( W@ X@ $# $# /& 8- b ( } ,# ( X@ { / J] 6 $# /& 5 a ,# ,# 6- a -> 6- k d 7 a k tA 7 ># M' 7 0 a a 0 z: 0 a k ~# K/ 0- C; a K/ 2, r |& n p h a' }& ;= 2, n m .m.V| m 1; 2, 4* s> 4* p s> p t 4* w {& n^ $S /# U*.F= F= #] t F= F F= '> '&.A z F= z a7 a7 1& $T w M c- M c- n! Z 8* JW c- c- V c- c- V M .@.O@ 3& L L d{ SO A: 3; A: iU qF 3d r! oY oY pF ^P )Q #N ^P #N )Q 3d #N #N qH @N .V qH 6B mL mL 7s 58 $N 6B $N mL $N {z Ou FN :M J J J cQ FN sM cQ b jy jy ky x4 x4 ;1 x4 ;1 2h y4 Re hs Re ;1 F3 Re B0 +: +: W^ w{ W^ +: F3 +: W^ F3 13 66 k~ F3 Lc =_ S{ I! '! _9 I! I! 6^ '! )l.6^ 0, 9; I! , 9; 6. n# f# ^= f# ^= ^= ^= ]= ^= a; ak.h* @~ d. 9. e. d. e. e. e. 9. d. d. m# +m.d. o# k* ,' ,' '' '' d& :k.]i.9f.-j.Ai.=j.Ai.A= ;j.+k.,W ,W +k.d@ Ai.,W Qh.Qh.sg.d@ d@ '* @m.>* =* d@ A= =* h@ A= p@ && i@ && t$ x; d@ d@ i@ A= e@ d@ && t$ u@ j@ f@ >* u$ e@ l@ b. ~* ~* k@ u$ u$ F9 /l.xi j@ ~* ek.i@ m@ _s l@ ~* s@ u$ l@ &p h@ u@ s@ -& a. j- m@ h# u@ [y ~* a. k> l@ q@ s@ M- l@ t$ s@ 3. 1. h# :. s@ h# 2. = x$ a& L+.3@ m$ m$ #m.v6.h@ &9.o$ l@ j@ &p 69.i$ $m.05.Y, i$ 8@ &6.k@ a@ 9@ 9@ @* 4'.X-.R:.Q&.Q&.TR CP Df.%m.&m.*m.=m..j.8#.>+.o@..s l+.$$.U@.lA lA lA lA >c o+.k..Ac Ac _N _N YN YN S..kH e*.[R e*.+l -d |r ub rc Zs :f _f mc kc pc ob Yb c `b Tb -m.su Cd {r W9.@j.Jk. i.;m.Z).C!.c7.N6.B% hg.P& bK B- C+ A+ `U E% pM pM pM ^l |f.]k.>m.K* N+ ,m.'m.)m.pM ;[.7<.C<.!m.*1.}|.o}.&g [c.`$ h g >> e 7 &# M' b 6 &# X$ ", +"9i.vh.ah.*[ 2! xi.&[ e^ *[ *) 9| |1 <{ 9| 9| 9| 9| 9| *) *) 9| $8.V! I/.<{ I/.<{ <{ R@ ;b J$ G= R@ <{ R@ 9| 9| ]^ R@ I/ L$ G= p9 jP G= 0' 0' L$ I/ 0' 0' 0' + + I/ 5_ + # + $ V@ # = = # 1) 2) ' > !, [* =' > = ' H= o! ' $= Q$ . Q$ & |* > $= S$ > S$ Q$ 05 & * ; . ; R$ %= P$ H= X@ %= ; ~ N$ N$ & . ) . & ~ ] U@ T@ U$ /& Z! 2 |, N$ U$ | { | %= 2 | | ## 2 { $# { 4 $# 2 2 } { ( | | 2 /& [{ 6 i $# Y> c6 6 ,# $# ># 7 V) 3] 6 :& c6 V$ 0 k i ~# 0 ,# a ~# 6! [& n ,# ~# n n Y$ 6! 0 h W$ 0 `$ h ~# p n Y$ p `$ ,> K/.4* ;= m /# 4* t b' 4* /# 4* 4* w F #] % w /# ^# F= F= /U F= F= a7 p F= /U a7 w a7 z z z A AR 8$.M c- V c- c- 8$.1& 8* V c- c- .@. V c- z .3# A: SO AX V SO A: A: A: SO aV #N 3d oY WX ^P ^P #N ^P ^P )Q 3d #N ^P #N #N @N _M `I @N mL 6B 6B mL mL 6B $N AS 6B J J {z HQ J FN sH FN J Wz FN &N Wz ~Q nO HN oO Yz dK *H Yz Yz Yz Yz dy Yz 9o eK 7J eK |M eB ~9 ~9 jy vG jy jy jy `9 A5 r/ x4 ;1 2h 2h x4 Jc Ab =2 B0 Re +: B0 W^ +: F3 +: +: +: W^ W^ w{ +: +: 2~ _| 5^ I! A] =_ 6^ , '! I! I! '! I! 6^ I! l~ g# h{ 0, f' f# n# n# g' k# ^= ^= 6. 6. a; ^= 0; i* ^= p# d. e. d. d. 9. c. 9. 9. k* m# 9. ,' ~l.{l.,' g. '' g. w' ]i.:k.=j.-j.Ai.Ml.dk.xi && -j.zi.fk.+k.xi ;j.Ok.~* f@ Pk.wS Sg.nj.#& h@ =* =* ~m.p@ Pk.-& b@ xi && A= l@ j@ A= j@ )* +k.t$ -O && A= h@ e@ :; h@ ~* ~* :; f@ u$ W* N- >* && $i.>* ~* t$ ~* j@ t$ m@ o@ j@ l@ t$ j@ u$ i@ u$ u@ -& h# <. -& ~> k> h# >& u@ o@ h# x$ t@ 9& {* d* u@ 3. 1. u@ s@ |. t@ u@ *% s@ q@ q@ b) 86.i@ i@ {m.]m.h@ '. -& x$ E9 :. p@ X% -|.C2.** ^; l$ _{.^m._].9@ |@ a@ 3@ Q&.[&.'` VV i; VV /m.3l.(m._m.:m.P..VW tf KB VW m@.(@.p@.]@.lA lA ~#.< .>c k..k..k.._N _N YN S..S..ED [R e*.[R yh +l nc =d =d wd te $e {l /w kc vd [f gc `b 5b 'e su o F! W$ o 7 ,# k }{ o g ", +"z~ ah.ah.z~ *[ 2! vh.*) *) <{ 9| xi.<{ 9| 9| 9| <{ <{ 9| 2! ^, 2! J$ ], ]^ <{ <{ J$ J$ jP <{ 2^ J$ J$ R@ J$ L$ G= R@ 0' I/ L$ I/ 0' I/ I/ 0' 0' L$ [n K$ 0' = # # = 0' # # $ M$ # J$ Z, k) T@ Ez 2) . * [* & . $= . 0' . - . $ ^& $ $ # - %= U@ & . - Q$ ; U$ & Q$ > R$ H= N$ N$ . Q$ ; ; U@ %= P$ U@ & | ^ ' %= ] N$ 2 { ) N$ { [ ] U@ U$ ( 2 { [ 7- 7- ( d *# 5 } 2 ( Y@ } /& ## 6 J) $# ~ 2 d m*.d 3* $# 4 Y> a 6 6 ,# a 8m.a a a 9 ,# {# 0 a tA } a' a tA ~# ,# ,# 8 c n ~# 0 ~# s> !# {# h r a n V| 2, ,> p `$ 2, p V| 4* 4* 1; 4* y 2; t :# ;) w F w /# ^# ^# 4* :# 2; F= {& z c- c- c- M V .@.5 .A: SO :#.Q A: *I A: *I d{ Q G$ Vf j#.oY |3.3d #N 3d ^P 3d #N )Q #N ^P DN @N @N lL #N mL mL mL mL mL mL $N AS 6B {z J J J J J Ou FN J ,I .J J @J dK DS Wz cy Yz dK [M Yz Yz Yz Zz |h Zz *H Zz $J eK &i Br 82 ~9 >b jy ~9 vG vG jy ~9 ff x4 x4 2h ;1 ;1 L] ^5 x4 =2 r/ =2 B0 =2 W^ w{ W^ W^ +: F3 W^ +: F3 +: F3 5^ 9m.Md _9 S{ I! g{ S{ , I! , I! '! I! I! ., f' l~ 6) h{ @~ g' {> U' 8. 7. ~= 7. k# 6. 0; Y~ 0m.p# d. m# 9. 9. m# 9. 9. d. am.d. o# ,' d& Ml.'' g. '' fk.*9.ck.ck.]l.A= Ok.d. -j.bm.A= i@ ,W ,W Ok.&& A= sg.sg.Qh.sg.&& #& Pk.Sg.&& '* i@ sg.d@ d@ ,W hi.k@ sg.&& X* && )* u$ p@ sg.f@ A= '* u$ u$ i@ ,W +& )* j- -& l@ xi u$ u$ :; p$ A= -& ~* j@ F9 -& F9 r$ u@ b. s$ ~* j@ ~* ,j.l@ t@ Z* ~* -& m@ :. m@ s@ ~* q@ (. 9& q@ q@ m@ s@ (. o@ o@ s@ ;& 3. h# q@ 5& *% h# >& ^. o8 R[.'* Mf.cm.dm.'* :. 8f.)* i@ {* ~> H3.a@ a@ &* 62.Z% em.:' P).V^.<: |@ :(.p[.w(.E'.m&.)j.FZ fm.Ul.(m.gm.=l.=F m@.>+.SZ hm.>+.$$.$$.Tn hz lA < .< .,o Ed k..Ac Ac Ac _N _N S..kH [R [R $c yh #H oc oc =d =d X@.ue mc ,e we >d Ff Yb Ff {M im.SX 4b.`W jm.km.lm.`k.n8._~.0!.mm./6.j6.B+ A+ w~ C- A+ G+ tk.Ej.O+ g1.{- Q& nm.Q4.Q& vC 6i..N om.B[.mg.pm.qm.qv Ro w$.rm./- cO N 2, 1, p 8 a g 7 b 7 7 o [{ ", +"z~ 9i.Il.&[ *[ z~ xi.*) z~ *) 98.xi.9| <{ *) *) 9| 9| w9.9| 9| <{ <{ 2^ R@ l) <{ 9| J$ I/.I/.l) R@ R@ <{ R@ R@ BN BN ;b I/ 0' R@ 0' L$ I/ I/ L$ J$ 1) + 0' 0' # ]& 0' 0' # `Y = L$ R@ * * . {c [* > . 2) k) $ 5_ > - + . S$ T@ [* > > Q$ . S$ > |* ' > ; U@ . S$ P$ $ S$ R$ Z! %= ' ; Q$ & | $= %= U$ ' X@ | | R$ X@ ] H= & 2 2 ; Z! U@ N$ Z! ) ( 2 ~ ~ 2 5 < 5 2 5 1 /& 1 $# } < ## I= 4 ,# ~ 4 D, ,# -> 7 / <& ,# 6 *# -# ,# 5 } /& ( 7 ,# 7 0 {# 6 {# 6 9 9 5 ,# i 6 !# W$ !# E, Q{ n y2 0- K/ s> -) ]# K/ 2, 2, 2, 0- ,> 1; K/ p h r 4* 4* 4* ^# 4* @= :# w F= /U C 4* t w w :# D C w a7 /# AR z '&.1& z z '&.F= $T Z sm.T^ c- V c- M >z H$ V c- 8$. V V V c- 0S QT Q L Q -$.A: SO A: SO A: t> MW #N MW (U yS #N ^P 3d ^P #N ^P ^P ^P #N 'Q 'Q qH bV !Q @N 7s 7s 6B 6B 6B $N hT 6B mL mL HQ J $N $N HK FN FN lI eQ b ~9 vG ky `9 r/ r/ ;1 KE ff |3 r/ f[ ^5 x4 =2 ;1 Se ~] w{ W^ =2 +: +: w{ W^ +: ^^ W^ *_ q^ I9 66 t9 :5 u/ %] M] '! , P= e# , X^ I! R: ;% 0, I! 6^ ;% g' f' k# k# 9; 6. 6. 6. ^= 7. i- )% 6. p# 9. m# m# d. 9. 9. m# am.k* d. d. '' Pl.~l.,' bm.,' wl.g. bm.wk.bm.=j.:k.+k.A= ck.-j.,j.Ok.Ok.sg.i@ A= d@ /l.2f.A= '* u$ j@ && d@ A= sg.Qh.d@ wS %& wm.A= i@ X* ek.f@ ~* %& a. u$ i@ i@ ,W i@ l@ -& X* u$ #& {* h@ i@ u$ l@ :; $i.j@ l@ >* && N- -& 0& u$ t$ o@ ~* -& n@ o@ j@ /i.o@ s@ s@ m@ ~* ~> h# _. s@ {* {* u@ t@ x$ ~* -& Q- s@ <. :. 5& _. |. o@ h# u@ {. >& q@ j- xm. & ym.zm.Am.y6.,d.`f.5@ /e.)* A= C2.a@ $6.Bm.Cm.Y<.,).:'.Q&.O+.:+ a@ y6.]<.S<.Dm.=Y K..J> Em.4l.Fm.Gm.Hm.$$.aK y<.VW (y p@.p@.Tn dv /F lA Im.,o < .7f Ac k..Ac _N _N S..S..ti [R [R $c $c yh kH Bz >e =d mc Zs we lc + V@ # S$ $ & $ U@ | . ' S$ U@ P$ & - Z! Q$ %= U$ ~ U@ R$ ; X@ R$ ] ; ~ 4 { b{ 2 H= N$ %= ~ X@ | ( ## N$ / | { 1 x0 *# 2 Y@ { I= 1 ( { [ X@ X@ V~ &# ( d 4 ( J] 6- 3* a 6 b N' ,# V) ,# B; [{ $# 0 &# a k 6 d a' 7 e q> 0 e !# k 7 L= h n h |& h ~# ~# &].p |& |& }& ~# Y$ p! 1; n^ 2, `$ #| D #| 1; /# oE w t t t F= :# $S $S F= b' G D F= G a7 F= F= G z a7 z ~& z z H$ T^ T^ V c- 3# V .@..@.O SO V y .Oz Q J 3& SO r! o^ jI D$ BX (U ^P ^P #N #N #N #N 3d ^P 3d #N ^P -X _M _M E^ 6B 6B 6B mL 7s AS $N $N $N 6B Ou {z {z {z J PL {z {z PL dK lI NP #J eQ *S dK |h {C Xz A0 Yz A0 dy dy Zz *H dy Yz :C ]Q ~5 ef ~9 vG vG >b >b Y6 >b =H x4 x4 ^5 A5 << r/ x4 ;1 x4 f[ hs w{ ~] =2 W^ w{ ]4 +: F3 F3 Md ]4 W^ 3~ w{ 5^ I9 *_ , '! I! 6^ '! '! '! j# I! , '! e# 0, l~ Tm.6^ 4. 7. f' f' f' 7) 7. ^= 6. 7. ^= Um.F9 a; i- 9. 9. 9. e. 9. d. 9. Ll.p# d. d. '' $i.Vm.,' bm.bm.bk.wl.Pl.c& Ol.Ol.ck.Ol.-j.Pl.A= +k.&& A= Qh.j@ j@ i@ u$ ,W p@ +k.u$ n@ j@ && Sg.d@ F9 j@ i@ && u$ h@ ~* $i.b. -& p@ :; i@ o@ l@ r$ F9 j@ l@ o@ && k@ :; F9 ,j.i@ :; xi l@ l@ ~* W* l@ :; t$ ~> && u$ :; t$ t$ {* l@ (. ^* k> E7 s$ {* q@ k> u@ -& q@ d* <. w$ *% d* (. :. {= <. q@ /* ~> s@ h# =% h# t@ ^. t@ s@ {. {. Wm.E3.(' Xm.Ym.7% i! }^ g>. ) V# 05.m$ (; 2@ ** X(.f].p{.[&.u!.m&.:'.4'.W7.^i d+.Zm.5c.`m. n..n.+n.@n.@n.#n.tu >+.>+..s %x c#.p@./F =F Tn l@.4$.>c < .7f Ac o+.Ac Ac _N YN sf Bz 8L [R %c yh yh -d )d nc =d *e ve +c lc = . E! $ $ . $ V@ . P$ U@ > ' ; ] . ' %= ' Q$ P$ Q$ & 05 | S$ X@ %= R$ > & ; - > 2 %= ] ~ ~ ~ ~ N$ [ { | ) *# 2 ~ { ~ d 2 ( ## 2 1 X@ [ [ Y@ N$ W@ ~ 2 Y@ 1 5 /& ## 6 ,# } >n.( ,# d } ,# [{ a 6 $# i ,# 8 ~# e ,# ,# ># i 2* L= d [& 3] a' E, c |& L= ~# n Y$ n L= o 0- K] c{ h V| v % L= _# p Y$ ^# 1; o/ 1Z t t 1Z 4* :# ^# ^# t 2; F= F= ^# B 2; {& F= W) a7 a7 2; F= A$.a7 a7 z /U $T 8* n! O@ z T^ 8* 8* c- V c- c- T^ V c- M 8* M V d{ 0S y .AX A: 3# E$ 0S r! MW qF BX BX (U 3d ^P #N 3d #N #N 3d )Q ^P #N #N qH 3d pF `I 6B 58 7s 6B 6B 6B mL 6B 6B 6B rH {z FN J {z {z J FN sM dK sM dK QL HK NP dK |h Yz dK *H Yz |h A0 |h dy |h :C Yz Bw Yz 7J gg >b ~9 ~9 1h `9 82 >b ^5 J: J: J: ky f[ r/ r/ ^5 J: f[ f[ f[ B0 Re Re +: +: +: W^ +: +: W^ w{ W^ Re (9 'b Q< E4 , '! '! , I! P= 0, '! '! P= e# I! '! '! I! a& 8. n# f' f' k# 6. ^= a; 6. ^= 4. R= >% l# 9. 9. m# d. m# c& d. m# d. 9. d. d. c& $i.,n.'n.Pl.Ml.bm.&p &p wk.,W && Ol./l.bm.,W u$ i> ,W @m.t$ xi >* /l.+k.#& ,W ,W sg.&p ,W :; j@ xi zk.h@ =* '* )* l@ $i.l@ :; /l.j@ t$ t$ i> )n.$i.+k.u$ l@ ek.&& u$ ~* :; m@ ~* ~* j- Y* i> o@ t$ ~* t$ j@ ~* b& -& l@ m@ u@ q@ ^* -& [y h# o@ m@ {* u@ 3. ~* s@ {* {* m@ q@ {= v@ t@ h# t@ p2 ~> o@ h# ~> :. v@ v@ w$ {* ;& k> ^. !n.~n.83.S1.{n.]n.P_.}7.*4.]/.^n.T1./n.,h._+ 94.S` _.a=.k` FZ #{ J@.(n.p% h@.rQ ./ Hc._n.:n.Fm.gm. . ]& . S$ Q$ $ }* > ' . . = . . > S$ > U@ $ & & > U$ $ ; |* & Q$ Q$ H= P$ *' | & S$ > . . ~ U$ S$ Z! ~ | N$ 2 ] ~ | | N$ N$ | 2 Z! 2 | ( 4 X@ ~ { 2 } *# 2 ( N' ) d ( 1 V~ $# &# *# ) 6 fn.[ ># ,# d 7 6 Y> ,# ,# 3] e 6 a 0 ~# ]c a ># k a 0 L= 6! 6 !# {# o L= gn.n h y2 h p n n W$ L= p r Y$ ,> e<.2, p 1; V| Y$ b' K/. % u 4* $] ;) 2; w m t :# w {& {& E #] #] w z W) z z z a7 G z '&.I z 1& n! z 1& JW 8* I I O@ c- .@.c- c- |# I{. V c- 3# 3# 3; a- Q E$ 3# Q L *I *I r! #N _#.oY G$ ^P 'Q 3d tw U^ #N 3d #N #N 3d DN E^ 7s _M @N 6B 7s @N 7s 7s 6B 7s 6B mL mL J cQ J :M J J J J PL #J FN eQ lI QL HN @J |h >I FE A0 |h dy Bw ]z |h RL dy Zz dy RL ~9 >b SL eB ~9 {9 >b vG ef x4 1( x4 r/ 0/ f[ ;1 ^5 0/ r/ f[ Jc Jc B0 =2 +: 13 w{ 5] w{ w{ w{ B0 +: 13 +: Eb k~ Q< ~= ~= '! P= 5) , '! P= P= I! 0, l~ j# 0, I! g# 8. f# 9; ^= 7. 6. 8. ^= 6. 6. ^= )% d. 8. ~% 9. ~% -& m# 9. b. e. Ll._s 9. 9. c& m@ bm.~m.hn.$i./l.u$ ~l.u$ Pl.Ol.>% j- >% Ok.&p -& in.,W Ok.u$ ,W Ai.,W a. ~* j@ h@ && +k.in.Sg.>* i@ t$ >* p@ *& u$ Y* ,j.~* l@ -& u$ j@ u$ m@ !* l@ u@ o@ F9 i@ l@ b. s$ Y* j@ ~* j- h@ ~* ~* l@ {* ~* j- ~* h# o@ ~* b. k> -& q@ s@ -& s@ o@ h# m@ ~> s@ =& t@ q@ o@ u@ q@ s@ t@ w$ h# u@ u@ {= u@ ~. h# :. d# t@ v@ t@ {. ^. B@ >% jn.o$ (:.kn.ln.|!.u(. f.54.l@ i@ k@ $& il.m$ ]8._{.x,./].OX e~ mn.nn.on.O+.Zb.pn.o% qn.rn.3l.sn.tn.un.=F vn.p@.l+.l+.P..tu $$.S .hz /F Tn wn.fw ~#.Ed k..k..$n $n YN he }i Q@.Bz [R 5j 3$.$c ~=.-d =d wd wd wd nb wd ve ,e /w Bf >d Hd Q Fn.Sm.|_ :^ Gn.y4 Hn.%# L$ L$ = 7 !# j ~# V$ ~# j &# &# 7 < -# &# ", +"*[ *[ *[ ah.vh.*[ *[ 9i.ah.9| e^ )~ 9| $8.9| 9| *) 9| 9| 9| <{ <{ 9| <{ 9| R@ J$ <{ <{ J$ .( R@ <{ J$ R@ R@ J$ I/.G= I/ R@ p9 I/ ]^ ]& 0' 0' R@ 0' 0' 0' I/ 0' 0' Z, # = 0' + K$ K$ = # # # k) [* # $ . . $ T@ . $ S$ =' ]& . # . ]& $ ]& [* V@ - !, > & $ > $ $ U@ > o! U@ N$ U@ ; & P$ N$ H= ; ] N$ & ; Z! ; J) | Z! { T- | ] U@ & R$ ) ~ 2 { | ( ## In.7- ## ~ { 7- Y@ { X@ ( [ X@ [ ## ## ( } 2 d ># &# 6 ( ># V) Y> a ,# ,# j 6 } d a 6! ,# 3* 6! i a _c.># Y> ,# 0 A~ a 3] c c |& {# L= K] s> s> h 2, h L= 0- }& |& n p n^ 0- b' @= ,! p ^# n^ /# D ;{.D t n^ ^# m F= F= w :# D {& /U /U z z a7 F= z z a7 z '&.I AR #= c- n! K #= Z 8* $T O@ M M M M c- c- c- P@ Ri.>z 0S 3# 3& 1& 3& d{ L@ E$ d{ c- qF Vf qF 3d G$ #N `I ^P ^P ^P #N 3d 3d ^P !Q 0* ^P DN `I EN 6B `I @N @N 7s $N $N $N HQ {z Ou {z :M J Ou FN ]C bS 5o PL %i Xz cQ Wz @J Yz FE >I dy dy |h |h Yz Yz |h A0 A0 |h nI SL 82 Y6 >b 82 82 1h >b ~9 A5 J: x4 x4 r/ r/ r/ L] a: J: L] ^5 << =2 =2 +: +: &% 3~ W^ W^ 3~ w{ w{ W^ w{ 5^ k~ 7! ~= )l. , '! -% , P= '! , '! P= , g# 9; e# g# k# 7. k# ;% 8. 7. 8. 8. ^= 7. 7. i- b. ~% 8. b. 9. m# m# b. b. m# in.8j.m# c& ~* b. ~l.bm.@m.i> $i.Pl.bm.ck.bm.j@ ,W u$ in.$i.u$ u$ u$ && /l.$i.l@ m@ && /l.W* l@ && {* j@ && xi sg.f@ R= h@ ,j.,n.k@ ,W ,j.i> $i.:; f@ p@ in.:; r$ l@ && u$ $i.~* s$ l@ {* -& p@ j- -& l@ -& a. =& u@ m@ ~* m@ -& u@ ~* ~* ~* 3. [y v@ ~* {* j> u@ u@ 3. <. s@ w$ :. O- h# O- 0& 9& v@ O- t@ {* :. s@ a6 v@ d* :. ). (. '. ,& 5& := Jn.Kn.Ln.i&.`) Mn.Nn. ] o<.hk.%& (. W* b. ~* g@ |7.T1.8@ l$ _{.x^.l&.W^.<'.6W Oj.On.Pn.Qn.Rn.Rn.Sn.Tn.Un.]B ]@.]@.:d :d tu =F S .hz Tn $$.Tn Vn.lA lA < .,o >c iz $n YN YN YN ti ti [R 6:.+l T$.#H yh -d =d rc *e wd {l kc # ,# J] d 3 , 3* 7 q> tA 0 0 z: q> 0 3* J] a a ~# e ,# E, g A~ E, h z: h ]# K/ n r s> ]c }& x9.r o p r % 4* 4* t _# p! 2, b' 4* :# y 2, D /# {& F= ;{.{& 2; C {& F= z G z F= F= a7 z z C` I z JW 1& n! z 1& 1& c- a7 %> V V c- M c- M M z .=X M 8* |# A: >z E$ A: L@ d{ Z..3# Q qF *I WX T #N 3d 3d 3d ^P ^P `I #N ^P tw BE qH 7s lL E^ 6B -X 6B qH 6B mL mL $N $N ja ja {z FN J {z J bS {z ,I eQ lI Wz lI QL >I dy dy Wz |h |h A0 Yz |h |h |h dy dy |h 9o ]z 82 ~9 >b 82 ~9 >b >b ~9 jy J: r/ X) r/ ;1 u! x4 =2 0/ L] ^^ << w{ ^^ ^^ 3~ 3~ &% w{ W^ W^ w{ W^ w{ 3~ e' 5^ 5^ 9, , e* , M] g{ , , , P= P= e# j# a& g# 4. f' '% ;% ;% 7. ^= 7. 7. 6. 6. 6. 6. b. ~% '% )% 9. m# m# b. b. b. b. @o.in.m# in.~* bm.#o.fk.@m.$i.@m.$o.bm.Pl.@m./l.~* @m.$i.u$ n@ p@ dk.u$ l@ #& u$ ~* /l.A= n@ W* ,j.:; t$ j@ -& t$ cl.cK j@ j@ j@ t$ ~* *& >* b& j@ j- t$ F9 W* m@ b. S*.o@ -& t$ {* ~* F9 -& [y -& s@ o@ o@ u$ m@ o@ s$ ~* {* -& v@ O- -& v@ m@ {* ~> s@ s@ s@ :. <. (. w$ q@ x$ '. :. w$ u@ s@ -& ;& 1. 1. 4_ o) /. ~. t@ v@ &. ). b# '. ;. eb.y^ %o.&o.*o.=o.-o.;o.d= >o.V#.p[.y6.** %9.aa.** q$ 04 a@ `% ha W<.[&.o{.n$.n$..$ b+ #{ ,o.'o.)o.!o.(m.~o.{o.]B $$.$$.p@.l@.Tn *f ]B < .VJ 7f Ac Ac Ac Ac Ac }i tN kH 5j a#.[R $c y$.oc mc Zs ^f Yb Tb 0H 1b Be Wb 4b rb 3i ]o.hL ^o./o.WR +b PM (o._o.:o. 2o.(g.A] L) F@ 3o.4o.^ X! g~ R@ ]& ;b *) ]& |1 q, `, %{ +' e^ 3_ 6' *) &[ $# [& n m c } 7 8 X$ 5 < 6 ># ( ", +"z~ *[ 5o.z~ Il.vh.9i.2! ah.*) vh.)~ 2! 98.9| |1 *) 9| <{ 9| <{ 9| <{ 9| <{ J$ J$ l) <{ <{ ], R@ J$ *) ], R@ J$ ;b <{ 9| BN p9 0' R@ 0' k3 0' I/ I/ [n L$ L$ I/ 0' I/ X! # + 0' R@ # . # # # # . V@ T@ V@ # . V@ #^ = 2) =' . Z, > ; $ + . Q$ $ + # Z@ l!.& S$ . = ; > . . ; .# U@ ; ; ; X@ 2 ; ] | & S$ .# T- ] ^ > 2 Z@ %= { H= ] 2 ~ 5 N$ G9 N$ 2 | [ ~ 5 } ) N$ d 1 ( } } | 4 } } Y> Y@ Y@ ( 6 b d 9 6 6o.J] 6 { ( 3* 7- } ,# } 0 q> e {# 6! a k a' ~# ~# 0 K] L= W$ ~# a n |& n n p Y$ K/ n }& p p q p ,> r ^# ;= 1; m m ,^.s> ,> ^# q 1Z 2, % _# 6* F F= :# `$ w ^# ^# w a7 w z 5 .>z 3& o> L Q SO A: SO A: SO G$ H MW r! #N #N #N `I `I )Q G$ ^P #N #N #N `I 7s _M `I qH 7s 58 7s 58 7s BE mL mL rH ja ja Ou ja {z Ou ja PL sH Wz cs #J dK QL Wz @J |h cy @J dy 9o dy x5 |C |h A0 t( |h |h =N 82 >b ~9 82 <3 82 82 82 {9 B5 0/ 0/ J: A5 J: 1( Ab a: r/ ~] ^^ W^ ^^ ~] w{ 3~ 3~ w{ W^ W^ w{ +: w{ w{ w{ e{ 7! 7o.u' k~ '! '! u/ '! g{ P= j# h# j# , g# a& 4. k# }. }. 9; f# 9; U' k# ^= 6. 7. ;% R= ~% 5. F9 >% 9. fk.m# b. m# a. in.i- b. _s Pl.in.ck.-& in.$i.~l.$o.fk.Pl.~* @m.@m.-& u$ ,W Ok.A= bl.j@ ~* i@ Ok.A= j@ l@ ~* u$ $i.~* ~* $i.~* t$ l@ j@ j@ ~* ]* l@ ~> u@ r$ l@ l@ b. t$ j- u@ a. o@ F9 j@ b. b& m@ s$ $i.-& R= o@ a. 8o.-& u$ {* (. o@ ~* :. ;& u@ m@ s@ 3. j> :. -& -& q@ u@ s@ (. s@ {= -& v@ q@ Q- t@ :. v@ t@ :. :. t@ t@ 3. ^. p, v@ ^. v@ =% ~. &. ^. z 5* 9o.B5 8d :E 0o.j0.x[ W(.N, ao.<[.<[.Y,.Xi.bo.^<.Th.co.^<.3!.j@.5,.,..rQ 6W t] {d.do.eo.fo.go.ho.io.&d Wb sb xa xa Zb *d |b Hd 9b Be #I Ma ya Ga Ka 5b rb ~f ya 5b Sa V$.jo.Aa 3A gw (r ko.lo.^B mo.no.oo.po.qo.ro.so.to.uo.vo.wo.xo.yo.zo.Ao.Bo.Co.Do.Eo.Fo.u! @. #= (# 0 $# O$ $ . R@ # ]& J$ ]& L$ R@ V! L$ |1 *) J$ `, J$ *) e^ 5' q, q, ^, <{ 5' *) R@ a r o n g h a i [& a d $# e ># ", +"z~ *[ 9i.9i.*[ ah.Il.z~ e^ 9| 98.*) )~ *) ah.ah.<{ 9| w9.*) <{ <{ <{ <{ <{ <{ J$ J$ <{ <{ <{ 9| <{ 9| @ .( J$ ;b ;b 9| *) G= ]& R@ ]^ L$ 0' ]& I/ I/ I/ L$ L$ 0' 0' 0' K$ # + 0' * Z, * $ * Z, = + }, - [* o! $ # . Gc S$ S$ = ]& > o! $ ; . . S$ $= U@ ] U@ ; . * %= ~ ; Q$ ^& ] U$ & - V@ Z! ; ; U@ | R$ & Q$ N$ ) ] 05 { X@ ] X@ 4 X@ N$ W@ W@ Q$ %= X@ N$ J) ~ ( { < ( %= Go.} <& ( : ~ ( | 2 ( <& < b ,# 6 ## ,# [ ~ V) 7 6 ># / 6- d 5 1 3] ,# q> v5.~# ,# 2* a a a 0 W$ L= !# n 0 L= Y$ n r n c !# E, r p K/ ]# Y$ V| q Z$ K/.n c Y$ ^# p % t r m `$ #| Z$ w 4* {& /U w 1; w B t $S z t z z a7 z N@ /# z I n! 1& I 1& I W) M A 1& c- M 8* c- a7 V 2Z c- O >z 0S 0S a- S QT M C, E$ L A: SO 3# T E$ A: 3d .Z #N 3d pF #N G$ #N 3d ^P #N `I @N qH tw @N EN 7s 6B 7s 6B 7s mL $N $N J Ou ja J J {z cQ &N {z #J GN FE A0 EA NP Wz dy /3 cy F^ A0 A0 A0 A0 |h |h 9o A0 A0 ~( >b >b eB ~9 <3 82 82 82 Y6 82 >b A5 << d[ ff L] r/ 1~ J: r/ 0/ f[ ~] w{ 3~ W^ w{ w{ W^ w{ +: W^ w{ 3~ W^ 0 q^ w{ Q< 7! '! '! ,% , u/ P= P= '! 0, e# g# a& ~> ;% a& f# ;% g# a& g# k# 7. 6. ]= g# Z* F9 5. ~% ~> 6. Y- m# b. b. b. fk.m# c& ~* ,n.~* $i.Vm.~* Pl.Pl./l.,' bm.u$ ~* Pl.)% ~l./l./l.,W j@ && i> xi u$ t$ s$ _s A= j- ~* >* l@ && F9 l@ p@ ~> l@ t$ i> b. ~* a. u@ l@ l@ l@ ~* j@ u$ {* ]* o@ -& -& l@ -& xi 2. {* [y k> l@ x$ f@ ~* l@ a. t@ b& ~* l@ b& s@ k> u$ h# h# {* 9& k> -& u@ t@ x$ E7 h# (. p@ v@ v@ [y 8& {= h# ^. 1. {= 5& (. d# -. {. H! {. {. {. v@ U ,# X@ ; *) V! [) &[ + Ho.Io.Jo.Ko.Lo.Z> <, Mo.No.Oo.4, Z 4& A0 r^ T2 L5 Po.Qo.gd.~1.Ro.So.To.Uo.Vo.Wo.Xo.Yo.Zo.`o. p..p.+p.@p.#p.$p.%p.&p.*p.=p.-p.;p.>p.,p.'p.)p.!p.~p.{p.]p.^p./p.(p._p.:p. + = * + + L$ V! J$ e^ *) L$ V! J$ ], z~ *) [) %{ 2! e^ z~ q, q, 6' 5' [) 5' V@ L= 0 g e c r 7 9 o a b 7 *= 5 ", +"*[ z~ 2! 2! z~ ah.vh.z~ z~ 98.&[ 2! Pi.5' ah.vh.|1 9| w9.9| 9| <{ 9| *) <{ <{ J$ <{ <{ I/.<{ <{ R@ ;b <{ J$ R@ R@ ;b R@ I/ BN <{ ]& ]^ G= 0' I/ ]^ I/ 0' 0' I/ 0' 0' 0' # * + # + # # 0' # * + = + T@ # V@ = + o! o! [* > = Gc & > & & - $= S$ - > A; ' H= T@ - ' ; ; & Z! U$ N$ ; U@ . . & > %= - | ] o! N$ { X@ Z! Z! H= |, { | N$ N$ /& | 2 I= ] P$ { ~ { ~ J) ~ ## ( [ ## 5 6 { { { { V~ 1 2 b < ( N' 3* 7 ( 3* 6- 6 q> 3* 4 6- B; d 0 0 6 6! {# a 3* 6 k /& ~# ~# c ~# |& 0 e |& 0 0- ~# L= p s> k0.h n o L= Y$ ,> `$ q s> % c{ p y xE 1; D^ Y$ m Q(.`$ #] /# :# $S w D |Z G t 2; z ~& G G z w n! x w I z a7 I A$.'&.z A c- c- 8* z M T^ 1& T^ M T^ 3# 8* V c- |# J V c- M H Q J J >z >O Q qF BX zS 'Q #N ^P #N 3d 3d 3d #N 3d #N @N EN lP @N 58 7s 58 6B 7s mL 6B 6B mL $N rH Ou J J J J QL FN .J #J EA &N QL eQ _C Xz A0 |h _C A0 A0 A0 A0 A0 A0 /3 |h Yz `z Ic Y6 gg ~9 82 82 >b {9 b: 82 Y6 r/ r/ q/ A5 J: r/ L] X) J: f[ f[ 1~ ~] ~] w{ w{ 3~ +: =2 ~] W^ w{ W^ W^ W^ b* 5& 3~ u' -% , P= '! , , {= j# '! '! j# a& g# '% 2. 4. '% g# g# g# f' 8. 8. 7. l# b. R= l# )% b. b. m# b. -& 9. ~* fk.9. ,n.-& )% c& j- in.~* o@ Pl.r@ in.$i.cl.,j.s$ -& t$ $i.$i.j@ $i.l@ r@ o@ /i.n@ l@ && ~* m@ ~* A= ~> @m.l@ l@ s$ :; F9 l@ s@ n@ j@ j- u$ :; m@ :; {* k@ F9 Y* o@ u@ s@ q@ ~* ~* l@ s@ o@ t$ = o@ 3. 8o.h# h# ~* :. 9& :. o@ u@ m@ <. :. q@ q@ q@ x$ :. w$ 5& :. 6; v@ _. {= t@ '& (. 5& ^. {. &% t@ /* Q= w$ (. d* ^. :. ~. ^. !. x@ 1. Q' 6 ] + M$ g~ ], *) 5' ], *) 5' v, 5' g] =) v, q, <{ 3_ ^, v, q, ^, g~ g~ @ M$ (& < X$ O' 5* N= 8* $] N= 7p.7p.U zX zX B$ . !> 8p.F@ G@ ;' 9p.E[ ;! b# 1. 3- N- '& p2 ^* -O p2 j- 0p.ap.kW *& nH f@ bp.*& X* d@ w; X* b. u@ N- N- >& >& $. d- Q@ D ~# b $# ^ # & - = + + p9 R@ R@ !, J$ L$ *) e^ L$ @ ], e^ e^ q, q, v, [) v, [) ^, ^, s, v, 5' @] O$ a' a a f 7 7 j V$ &# j a b 9 $# ", +"q, q, z~ z~ 2! ql.vh.9i.*[ ah.|1 9| )~ )~ $8.|1 ah.9| 9| 9| *) <{ <{ 9| <{ 9| J$ 2^ cp.], *) J$ <{ <{ <{ L$ R@ ], <{ .( L$ L$ L$ 0' ]& L$ ]& #S R@ ]& I/ 0' k3 L$ 0' I/ + $ dp.# L$ $ V@ # L$ + ]& = 0' # # ' $ # # & $ - # $ Q$ > > $ V@ $ $ Q$ + - . o! > > + > |* + = > Q$ & > ; ; & N$ | R$ ; U$ | ; T- ~ Q$ . ; ] { 2 ~ | X@ ) 5 { 2 Z! Z! *# ) X@ ; ~ ~ { # ] ( ( 1 1 } D, { 4 X@ ( ( 6 U- D, a < 6 )1.e d Z! } ,# 6 ,# Y@ j ,# 7 a J] a 6! b ,# z: a ,# 3] K/ n !# W$ ,# k |& ~# ~# s> s> 0- r a' r n^ 2, q 4* 2, ,> h m `$ p! p ;) 4* Y$ ^# 4* t 1; w ^# 2; /# U*.$S F= @= G G C` G {& F= F= F= I F= a7 z N I n! I A I O@ a7 M T^ V 8* 8* M n! 8* V 2Z >z QT J 3# o^ i5 J O O d{ A: aV Z r! >O hU #N 'Q G$ tw 3d r! ^P 3d L@ #N `I @N _M _M qH 7s _M @N 7s 58 7s 6B 7s &k -I Ou {z :M H9 {z bf 0B bf eQ PL QL &N bS |h {C FE Xz @J /3 A0 /3 |h |h =. A0 |h Bw x5 x5 Z9 82 82 c[ 82 b: 7, Y6 Y6 d[ u! Ab J: X) 0/ L] a: ^5 a: ^^ /. 3~ w{ D~ 3~ 3~ +: w{ W^ 3~ w{ &% w{ b* 3~ w{ 5^ w{ u' B} P= 8; P= P= -% 3. j# 9, e# a& ;% s@ f# e# s@ ep.5. b& 4. ;% l# 7. 6. l# ~% 4. f# i- }. >% ~* ~% b. >% @o.b. m# _s k* b& ~% in.R= ~* s$ i> )% /l.b& @m.@m.l@ /l.~* o@ $i.j@ Y* t$ l@ u$ u$ _s m@ u$ a. ^* l@ b. l@ ~* j@ j- Z* i@ u$ b. n@ u$ u@ -& F9 ~* && t$ a. o@ b& t@ j@ u$ t$ =& s@ {* u$ l@ >& k> t@ u@ ~> @& o@ :. u@ x$ t@ -& =& u@ v@ (. = =& :. :. {. u@ :. t@ :. ^. (. >& {. /* t@ (. ~> d# x@ h# h# ,& {. s@ =% v@ d* ~. -. '. A@ b# ^. %. l Q$ M$ `, q, `, 2! s, v, r, s, v, [) q, =) r, v, r, r, =) x, q, r, r, @] *) J$ $ ; { $# g f n p! `$ N= x I A I ` O@ |# J D$ 2# H G$ .= X I@ C$ V fp.y@ A@ E@ E@ 4) y@ L) $% A@ &. =. .= #. (* L) 4# E@ z$ 7# V J@ .= D$ P@ M /# s> X$ -# &# | & O$ $ # L$ ]& L$ #S BN e^ *) q, *) *) e^ *) ^, z~ e^ ^, q, g~ q, ^, q, 6' r, ^, 5' `, z~ *) / k L= }& h f 6 } 7 V- < 6 $# } b ", +"q, z~ z~ *[ z~ z~ |1 ah.*[ z~ 2! 9| *) e^ *) 9| |1 <{ <{ 9| <{ <{ *) 9| <{ <{ J$ 2^ <{ <{ I/.J$ 9| I/.;b ;b ]^ 2^ ;b .( l) L$ ]& L$ I/ BN R@ 0' L$ R@ 5_ 1) [n 0' [n [n 0' = # # [n 5_ # # ;b # # $ 0' # # $= $ ]& # ]& L$ # > . 0' $ ; > . - S$ H= R@ > S$ . S$ & (& $ A; $ 0' ; %= Z! (& | N$ > | X@ R$ H= T- & (& H= - $ * ; %= 2 X@ ; ] ;# | 2 (& | ~ X@ | | %= ; N$ / { X@ / 1 8- / X@ /& $# [ ( 7- } : Y@ d 5 } } 6 6- J] $# 1 a [{ ,# 0 $# [{ $# q> 6! ~# ~# 0 J= 6 J] a ~# 6 K/ L= E, n {# L= Y0.~# L= h n 2, K= % `$ ]# s> ]# r ,> 1; ,> e<.`$ y p 1; ^# t w 2; 1; F /# 1Z /# w 1; t F= F= {& z /U F= E z F= G {& /# a7 AR w z z G I I z A 8* o^ M M c- M HV V |# 8* >z 3# E$ L Q Nd.L T T L 3; T T L@ E$ A: D$ qF #N pF 'Q L@ T 4# G$ 3d @N qH 4# `I tw 7s 6B qH 6B 58 7s BE 7s r4 ja ja Ou -I Ou {z r4 bf ja sH EA Ou F^ =. |h |h :3 /3 6# =. /3 |h A0 A0 /3 dy Bw ~( dB dy Bw Y6 Y6 Ic b: 82 Y6 >b Y6 Y6 q/ J: J: J: B5 1~ J: r/ r/ /. ~] w{ w{ =2 ~] =2 W^ w{ w{ 3~ w{ W^ w{ w{ w{ 3~ q^ p^ u' 1. P= , '! , `> ,% 0& {= ~= e# {= 2. g# 0, g# h# '% b& f# '% 8. R= 7. 8. 5. R= b. b. f# l# 5. 2. ~% gp.)% ~l.$i.in._s 4. @o.fk.~* a. @o.R= $i.in.$i.xi $i.s$ o@ ~* Ol.u$ u$ p@ l@ F9 ~* j@ Y* &p && i> ~* l@ u$ ,j.p@ ,j.u$ l@ u$ l@ ]* b& s@ Ql.t$ :. u@ u@ d# {* h# u@ o@ m@ hp.s@ {* w$ q@ F9 x$ O- _s {* E7 ~* s@ >% o@ s@ q@ u@ {= -& 8& c# (. q@ {. :. :. s@ <. 5& (. v@ ;& :. d# ^. H! C@ b# !. %% W> t@ v@ %. {. ). /* -. 1. !. %% !. %% !. *. {. O `@ = R@ J$ 2! z~ 5' ^, 6' +' %{ }) x, s, u, 6' x, =) v, @] v, r, r, v, [) @] 5' R@ L$ + ] ] ;# < *# / W@ 1 X$ r ~# r -) Y$ e p 2, h ^# 6* :# `$ D G Q@ O@ G I I M= I z @% C J #= n! S Q@ S I N@ A I M= I A N Y$ c c 6 ( $# ;# > ]& = # Z, Z, R@ L$ ]& ]& R@ *) 5' *) J$ <{ <{ ]^ 2! 2! e^ q, 6' ^, q, 6' 5' v, 5' q, ^, 2! ]& 8 c ># h n K/ g $# 8 7 < ( 8 7 a ", +"z~ z~ z~ *[ z~ 9i.9i.|1 9i.*[ 9i.9| *) e^ e^ <{ <{ 9| *) w9.<{ <{ 9| *) <{ <{ 2^ w9.9| <{ <{ <{ 9| .( l) <{ 2^ G= 0' I/.J$ R@ L$ I/ I/ R@ 9| BN I/ G= I/ I/ 0' 0' 0' 0' I/ R@ K$ # 0' 0' $ # L$ X! # + 0' $ # # + = # ]& # # |* ' $ $ H= $ S$ $= # > ' |* S$ S$ > S$ > Q$ & O$ o! ; > ; }* & X@ =' S$ N$ N$ & U@ U$ ' S$ U$ N$ U@ H= | | %= , ] *' P$ ) 2 7- ; N$ N$ 2 ~ N$ ] { [ 7- 2 } } 1 W@ 2 X@ 2 ( 1 6 7 Y> ,# 6 J] $# 6 d N' 9 V~ ( 6 d $# 9 [{ 0 ~# 0 a 0 a Y> {# ,# a 0 a q> 7 ~# Q{ {# i L= h 0 ~# s> n p Y$ % ,> n n `$ m ip.p p t ,> % 4* C ;{.y..q h :# :# `$ 4* @= w 2; w G {& F= G D G a7 a7 A z I z o^ M M 8* z . V KW c- M 3& J Z..H SO O 8* 3# U J n> 3; Oz MW tw ^P 3d pF 3d 3d 'Q qH qH #N `I E^ 7s `I @N 6B 58 7s 7s 6B 7s 6B E@ Ou r5 r4 Ou {z Ou Ou {z J Ou QL .J -K =. mG _C :3 |h /3 A0 A0 |h R' |h /3 /3 |h Ic x5 A0 A0 Y6 Y6 82 ~9 >b 82 82 >b Y6 ~9 L] x4 J: '= %% jp.X) J: r/ '= '= L] 3~ ~] ^^ W^ w{ 3~ W^ 3~ 3~ 3~ $^ w{ 3~ >' >& *% -% {= , '! 1. , P= e# {= e# a& P= a& 8o.'% 5. g# f# a& 7. 8. '% 7. 7. 8. 4. g# -& o@ 2. f# >% R= >% >% )% {= m# >% ~* b. ~* F9 -& ~* R= $i.)% >% ~* ,n.$i.,n.m@ pj.u$ Y* i> F9 ~* /i.s@ xi u$ kp.l@ l@ ~* r$ -& b. -& b. j@ @& h@ {* ~* u$ ,j.o@ {* ~* $i.~* t$ j- m@ -& {* ~* {* {* 0& 3- o@ -& j- q@ o@ :. u@ s@ F9 u@ {* u@ q@ P- :. ~> c# q@ u@ O- >& <. u@ u@ C= /* o@ (. :. s@ '& !. t@ 9# ^. %% v@ {. (. o) A@ &. p) (. x@ ^. ^. ). ). x@ !. $. -. C$ 4 $= J$ ], e^ *) *) %{ g] s, x, H) x, H) =) [) H) 7' s, r, H) s, s, =) q, [) [) <{ J$ ], J$ R@ L$ . > U@ ; ( ## b ,# d e Y> } 7 0 V$ [& 7 '# V- e c r r h q p W$ o c Y$ h C; 4* m |& h `$ c n `$ u % h g h 0 6 ( / [ | & . = pH > ]& ]& ]^ L$ R@ J$ R@ R@ *) 6' ], R@ ], ], *) 6' e^ ^, v, x, [) q, q, v, v, [) 6' [: U) e r h 0 ,# c 7 } b [ 6 $# i _ 6 ", +"*[ z~ *[ z~ z~ 2! q, Il.vh.z~ e^ |1 9| e^ Pi.*) 9| $8.<{ ^, 2! 9| 9| <{ <{ <{ $8.<{ J$ 9| I/.<{ ], R@ J$ <{ <{ V! BN ;b <{ 9| 2^ R@ I/ I/ R@ G= 5_ 0' L$ 0' I/ 0' I/ J$ 0' 5_ + # 0' = * # # L$ . = 0' = . . ' . V@ [* . $ $= & $ = S$ > P$ S$ > & & & S$ S$ # $= > - . > ] S$ & R$ ] P$ R$ H= ' & ; ; . U$ S$ H= S$ ^ & | ~ R$ N$ ; 2 2] X@ U$ ; N$ R$ 2 X@ | %# { ( 2 5 [ X@ { G9 ## { 4 Y@ 8- ( ( 5 } ( } 5 d 3* k 3* V) d 5 4 V) 6 6 6 8 q> 6 7 k 3* ~# k {# 6! 0 0 ~# e ~# ,# e K/ {# a z: ~# c c {# 2, c ~# r Y$ 2, r ~# ,> ,> Y$ 4* `$ q t /# b' p ^# p t D q :# ^# ^# :# :# F t /# w w C a7 a7 a7 a7 B z w 1& I G I I I #= I z 8$.z H$ A V 8* n! c- 3# c- =X |# |# Q 0S O@ Q Q c- i5 d{ Q qF r! r! oY 3d K) G$ #N #N 3d `I tw #N 3d `I E^ `I lL qH E^ 58 7s 7s 6B 58 58 ja rH rH r4 {z J {z {z BS bS cs &H ,I Xz =. lp./3 /3 A0 :C >I A0 /3 Ji /3 |h /3 Yz Ic x5 |h |h Ic Y6 Y6 Y6 82 82 82 Y6 8N jy q/ X) J: ;} %% 1( %% 1~ /. '= D~ 1~ w{ ~] =2 W^ w{ &% 3~ 3~ w{ p^ mp.(| 6& e' e{ u' 7& , P= -% H; -% {= *% *% }. e# _. e# a& h# }. 2. s@ 8. g# f# '% >% b. 8. 8. ~% 2. ~% >% 5. b& o@ -& b. ~* 4. >% F9 o@ m@ q@ ]* {* l@ o@ in.Z* ~> &p ~* -& u$ `* o@ j@ &p F9 $i.u$ Y* ,j.&p -& ~* i@ s$ $i.l@ N- m@ a. -& o@ -& l@ F9 v> o@ {* h# l@ 3. b& ~> t@ q@ j@ q@ -& o@ u$ -& ~* x$ :. s@ F9 q@ E7 ~> o@ x$ x$ C= o@ t@ t@ >& v@ -& <. {. 1. s@ u@ u@ t@ (. = :. 1. w$ (. 8& t@ !. q@ ^. ,& b# 9# ). ). ). ). A@ x@ z@ ,& -. v@ ). ). p, ;. =. A@ (* ^# & R@ e^ *) z~ [) +' 5' v, s, s, v, A, s, s, =) s, x, v, H) v, v, r, q, 6' q, g~ ], <{ L$ L$ #S V@ = > . | ] ) U@ ] { ^ ~ 2 ~ H= 2 ( :& < } 6 e g $# e g c h e ~# ~# 7 e ~# X$ 0 7 6 7 ~# *= i ,# } b < ) | | | W@ ] . $ + = $ ], R@ V! g~ z~ ], ], @ 6' J$ *) *) e^ *) [) ^, 5' =) 6' H) 6' ^, 6' @] v, )~ *) , 8 ~# c ~# ~# J= a 8 ,# i 6 6 8 [ $# ", +"q, q, z~ z~ *[ q, z~ z~ Il.z~ 9i.Il.$8.|1 Pi.<{ 9| vh.vh.5' *) 2^ <{ <{ <{ 9| 9| <{ <{ 9| <{ <{ *) 9| L$ l) ], R@ ]^ <{ <{ J$ G= BN G= L$ R@ jP L$ 0' L$ I/ 0' 0' I/ np.0' 0' = * + [n * # `Y = . # z] o! $ # . & ' [* > + > [* $= & $= S$ - . # . S$ Q$ & ; & Q$ U@ U@ =' %= A; * P$ op.T@ ; |* R$ (& * ; %= U@ & %= S$ - 2 - .# %= ~ 2 g{.) &= %= ; ^ ; N$ 5 2 X@ { ## / 2 } } 1 N' B; 2 < T- 1 } d d [ W@ 6 5 ( Y@ 6- 6 / d ># pp.} 9 6 6 k 2* 8 d ,# 7 q> 3* q> z: 3] !# a a L= 6! a W$ n E, tA L= n s> ~# 0- Y$ h L= ;= t' {# n c r 2, Y$ ,> r 2, t 4* ^# b' ^# $] Z$ F :# Z$ t @= /U {& :# m n^ G G /# E 2; G a7 N n! a7 C {& B n! z z O@ O@ #= 8* G M I $T KW >z E$ 3# c- c- 5 .|# Q d{ 3& E$ J J T A: MW A: SO r! r! qF 3d G$ G$ G$ #N G$ 3d U^ 3d tw qH E^ DN pF qH 7s 6B 58 mL E^ 6B 6B mL rH ja wr {z {z Ou Ou ja cs r5 $i bf {C /3 ;' !& ;' A0 Xz oO A0 |h |h |h /3 A0 ~( Ji |h |h &i Y6 qp.Y6 >b Br 82 Y6 Y6 Y6 82 b: u! a: x4 J: X) a: D~ %% /. D~ 3~ ~] L] 3~ &% 3~ 3~ 3~ &% 3~ 5] 3~ (| (| >' 9& 6& Q= >& *% -% P= , 8; e# X- ~= 1. j# }. }. h# 2. E7 8. >% }. 8. u@ b. ~> o@ f# i- }. q@ _s >% -& b. 2. o@ 8j.o@ in.$i._s ~* 4. F9 x$ 8j.'% o@ l@ c& u$ ~* a& l@ u$ _s ~* ~* 8j.~* ~* F9 o@ m@ o@ Pl.p@ ]* l@ @& F9 l@ t$ 9& ~* j@ l@ ~> l@ k> O- u@ m@ u$ ~* ~* <. -& o@ s@ ~* F9 =& ~> h# d# t@ t@ d# ^. :. 8o.P- C= s@ 1. s@ o@ ;! <. 1. :. h# s@ x$ O- q@ 9& = w$ (. 5& = 9& N- t@ ~. ^. W> ~. >& v@ A@ &. -. -. A@ !. !. 5& z@ 0# ,& &. !. .= A@ z$ [, A ; R@ 2! *) z~ q, 6' 5' s, v, s, 8' =) H) v, s, s, 6' r, v, q, +' v, q, [) v, 2! 2! )~ s' *) <{ R@ 2^ R@ L$ = + * # # > & ; | [ | | ~ | ~ ( } %# @# ) ( 6 $# } } _ ( < 7 == -# 9 } } b 7 } Y@ < X@ ~ N$ ; > > ] - * 0' ]& l) 0' 0' <{ ;b *) e^ z~ )~ 5' e^ 5' 6' q, J$ z~ r, [) v, q, 8' 6' v, v, u, r, q, s, i) R@ [ c 8 b 6 b 8 W$ 9- 7 6 8 $# == ( $# ", +"z~ z~ z~ z~ z~ *[ *[ z~ rp.vh.ah.z~ |1 $8.*[ )~ 9| xi.$8.)~ 9| <{ *) <{ 9| 9| 9| 9| <{ *) 9| 9| <{ <{ <{ 9| <{ J$ R@ #S <{ J$ J$ ]^ ]^ L$ L$ 2! 2^ I/ L$ I/ 0' 0' 0' 0' 0' I/ 0' * * ]& 0' # K$ = = + $ k) 2) ), + $ k) # # . ]& =' & ' . + # + . [* > ' > S$ - . $= U@ o! & U@ . H= & . S$ P$ ^& & . | ; ; J) R$ ^ H= ; ] | %= A; | *# | ~ 2 o! ~ ~ %= X@ | 2 2 } 4 4 5 $# { ~ } 8- 2 ## 7- $# *# 5 B; d +# [ ,# ( d 5 } 8 3] 6 b 6 Y> 9 5 k 7 Y@ k 7 7 a' ,# 6! ,# c 0 k 6! a a i !# L= |& a 2, L= h s> Y$ r -) L= h L= 2, ,> n^ 2, `$ q h `$ d<.m 1; t w 4* /# :# ^# :# `$ w w G #] G b' 2; {& p F= G 2; z C G B w F= '&.M O@ O@ A M I A F= 8* H$ |# Z |# Q@ M S 3; A: d{ O@ Q L A: r! G$ M r! O qF #N d- G$ 3d 3d 3d `I G$ G$ O= qH 58 lL qH 6B 58 6B 7s 58 q9 7s 7s 7s rH H9 ja Ou Ou Ou Ou ja ja $i bf ,I =. ;' >I Bw |h A0 dy |h |h |h |h A0 /3 dy x5 |h dy c[ Y6 Y6 Y6 Y6 82 82 Y6 <3 82 Y6 9# X) J: J: %% %% r/ ^^ '= X) ~] =2 ^^ %% 1~ 3~ w{ &% 3~ 3~ &% &% w{ (| 3~ q^ B= w{ sp.R/ e* 5) , g{ 7& {= {= P= ,% /* e# g# 3. 2. ~> a& {= x$ 7. b& R= 4. '% >% R= F9 >% >% '% m# b. b. m@ {* t@ b& F9 ~> )% >% R= o@ >% F9 l@ $i.F9 F9 ~* o@ s@ m@ F9 u$ Z* -& F9 u@ l@ o@ -& ~> ~> ~* u$ 2. ^* o@ u@ u$ m@ ~* u@ j@ x$ r@ {* E7 -& -& = F9 {* Q- q@ ~* {* -& :. x$ x$ d* w@ :. /. ~. (. 9& :. u@ u@ w$ t@ :. 1. t@ = {. (. h# q@ ~. u@ o) '. :. <. d# (. ^. x@ (. {. w$ ). {. A@ $. ). ^. '& #> {. =% d# ,& 5& x@ -. (* &. !. ). x@ 6# !. ,= a J$ J$ z~ 6' q, [) s, s, v, H) v, x, 7' s, 8' v, s, x, s, s, x, t, 6' 6' q, 6' z~ q, ^, <{ ;b L$ <{ ]& L$ ;b G= + $ # + & > > ; ; > Q$ > ; N$ S$ | ; & ~ | , N$ 2 | H= ) ( H= ~ ~ { W@ , U@ ) | ] ^ & S$ . Q$ S$ $ M$ 0' L$ J$ ]& R@ ], R@ )~ q, 2! [) %{ ^, 5' [) ], ^, z~ ^, M| 6' e^ v, v, e^ [) v, s, [) 5' H) - 7 e &# j 6 a 7 e 6 6 $# W@ } d == } ", +"z~ z~ *[ z~ z~ *[ *[ z~ Il.ah.z~ *[ 9i.$8.z~ Pi.98.xi.9| *) 9| *) 9| 2! 9| 9| 9| <{ <{ <{ 9| *) <{ <{ <{ J$ L$ I/.R@ 2^ 9| J$ J$ J$ BN J$ 0' J$ R@ <{ 0' I/ I/ ]& I/ 0' 0' 0' 0' + # # 0' 0' # * $ # = o! + 5_ ]& #^ k) . 2) & = S$ . # = $ # $ L$ + $ + . $= U@ N$ . U@ . X! & U@ = Q$ U@ R$ H= ~ %= $= & %= N$ Q$ & - | & ~ | | N$ | Q$ ; ) X@ X@ 7- | { 2 tp.( | [ Y@ { I= ## P$ H= ~ ## 2 1 ( } 4 [ { {;.} D, Y@ d 6 *# 5 7 )1.># } 9 6 3* 5 D, a q> c6 3] ,# 3* 7 c } 6 d 8 n 0 L= k 7 a n n n h Y$ h s> |& Y$ n p r Y$ r p m `$ 2, r ;= ;) b' 2, Y$ 4* /# w :# D {& p `$ w C {& {& {& {& ^# 4* G F :# F= a7 F= #] a7 /U z 1& w A I M M M F= M &> N c- T^ T^ M P@ F= O@ >z >z Q J E$ L 3# :* T |# O J Q d{ G$ G$ pF 3d ^P #N 3d 3d G$ 3d 3d `I 58 E^ `I tw 7s 6B 7s 7s 6B 6B 58 7s EN EN q9 ja Ou r4 Ou J EA Ou &H up._C =. C@ EA /3 FE A0 :3 A0 =. |h `z /3 /3 |h `z |h A0 vp.9/ b: Y6 b: 82 Y6 Y6 a: b: >b 82 '& '& %% 7, %% J: q/ '= r/ ^^ ^^ =2 D~ ^^ D~ 3~ w{ w{ 3~ 3~ 3~ */ w{ w{ 6& |. p^ ,% ,% e* -% |. e' {= e* s@ *% t@ -% a& 4. i# e# f* g# a& s@ 2. e# o@ j# >% wp.s@ [y h# u@ R= b. b. R= b. q@ )% 5. F9 in.F9 i- @m.s@ m# ~* $i.$i.R= Y* ~* F9 ~> -& l@ u$ a. o@ 8j.s$ Y* -& r@ i> u@ {* p@ E7 F9 t$ q@ u@ a. -& 2. $i.~> u@ Q- m@ ~> = -& o@ ~> t$ {* [y u@ q@ u@ v@ w@ q@ >& {* 9& v@ s@ v@ 1. v@ u@ :. u@ a. ~> ~* s@ %% _. :. '. x@ ~. ^. ). v@ x@ d# ). ). {. v@ ~. {. x@ !. x@ !. )& &. ;. &. -. ~. {. %% ~. -. -. ). ). {. ). )& A@ +. W p & + ^, q, z~ q, =) v, x, H) v, w, v, s, s, x, s, =) }) v, s, +' @] 6' 5' r, 5' q, 2! J$ <{ e^ )~ *) `, R@ R@ L$ l) J$ = J$ + M$ + + + $ & . Q$ ] ] %= ; ; & U@ > | ; P$ U@ (& ; | N$ . > ; S$ S$ ; S$ |* - . Q$ L$ L$ $ $ > 0' L$ J$ J$ <{ *) ], )~ ], 2^ J$ *) J$ e^ g~ +' *) *) *) q, q, ^, g] 5' q, x, s, v, 8' +' 2! | ~# a 7 =# ,# {# k 7 g $# } < ( $# ## X@ ", +"z~ z~ z~ z~ z~ z~ *[ z~ 2! vh.ql.*[ z~ *) *) e^ e^ 9| 98.$8.<{ <{ 9| 9| <{ 9| 9| q, 9i.;b J$ ], R@ <{ <{ R@ L$ =$.J$ 9| <{ I/..( R@ R@ R@ I/ L$ *) *) =$.I/ ]& R@ I/ 0' 0' 0' 0' = # $ 0' 0' # # ]& I/ $ = L$ % # Q$ [* S$ Q$ [* ' $ ' 0' # - N$ . > & *' U@ |* . > & U@ |* . . | H= P$ |* ; ] H= ] # N$ R$ ; ; | & Q$ R$ | U$ *' ; 2 . & O$ X@ I= 5- `@ & X@ N' ~ [ { { N$ 05 2 [ ## X@ } } /& < /& I= { 2 /& 5 $# 5 6- { 6 Y> 7 5 ># 7 d d 3] q> 3] 6 a 0 k c5 q> k ( ,# ~# } $# J] ~# 0 k j f h c c L= 0 W$ |& L= }& {# p p L= % `$ c{ % `$ r Y$ Y$ q m t 4* @= #| ^# % :# B :# t w w 2; 2; t #] ^# t G {& D F= B D a7 N F= 1& w z I AR 1& 8* I A O@ 1& O@ 8* 8* A 3# I & u' &% (. P= |. 9, P= -% :. e* ~= (. :. v> ~> {= h# s@ a& ~> 4. f# l# a& u@ i# ~% 2. o@ -& -& _s ~* o@ u@ b. R= ~> b& h# u@ Z* ~> ~> u@ -& R= q@ ~> o@ >% a. ~> Y* l@ ~> h# m@ ~> m@ ^* s@ F9 R= s@ o@ s$ F9 s@ m@ u@ t$ t$ ;& s@ s@ -& m@ :. d# s@ ~. q@ {. o@ x$ (. x$ = u@ = |. {* = 8& q@ :. 1. :. s@ v@ u@ t@ C= :. :. x$ :. v@ a6 v@ h# d# {. c# t@ {. &. 1. q@ '. (. {. 1. b# ;' (. '. {. ). {. /. A@ ). ). b# !. ;. ;. A@ -. ). &. *. 5# .= &. A@ +. S | R@ 5' 5' *) q, z~ v, s, x, =) v, r, v, v, r, s, x, s, [) v, q, v, s, 6' v, @] 6' +' v, 5' q, ], g~ 5' z~ s' )~ ], J$ ]& L$ ]& L$ # # 0' + 2) & > . . > $ $= L$ . ; & ; & - . $ ; ; & & {c ' > $ Q$ + $ $ $ p9 p9 J$ = + <{ L$ *) ], J$ z~ q, z~ *) ]^ g~ e^ e^ *) @] z~ 6' q, q, q, +' q, 6' 5' ^, r, H) v, +' ], 1 a =# a :& -# b ># ,# $# e $# $# 7 d -> { ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ |1 Il.z~ z~ 2! $8.|1 e^ 9| 9| 9| 9| *) *) <{ <{ 9| 9| *) <{ <{ J$ <{ J$ I/.<{ 9| <{ <{ <{ R@ 2^ l) l) R@ R@ R@ I/ ]& R@ I/ I/ I/ I/ I/ I/ 0' 0' I/ 0' I/ $ L$ I/ #S # + ]& = $ + X! ]& V@ . S$ [* . Q$ [* # # Q$ + = $= & ' > V@ Q$ $ ' . # & S$ U@ N$ $ - Q$ =' ; U@ %= ' - N$ 2) (& ; - & %= H= & # | | Gc U$ U$ | H= ] ; 'W *# `@ /& { | | [ 2 | 05 2 ] | ~ ^ ~ 7- 6 ( /& 2 { /& /& { < 2d d :& c6 U- G9 { d } == 6 6 d } 7 a tA a 7 {# ># e [& 6 b ,# a' !# c L= !# Y$ L= b ~# 0- c Y$ &].s> r L= _# L= Y$ p 2, 1; Y$ `$ Z$ Z$ 0< v ;= ,> h p ;) 1; `$ /# {& @= w {& G {& F 2; G G F w {& :# G z n! F G z A F= F= W) E; O@ T^ 8* O@ n! M O@ I M c- P@ I c- |# >z }Y 3# |# A..J O@ aV *I T T L qF D$ T U^ E^ r! G$ 3d 3d L@ 3d #N 'Q 3d O= 58 4# 7s 6B 58 7s 6B 58 7s r9 7s q9 r4 H9 Ou qH xp.cf ja ja r5 r5 L) Xz C@ . =. =. =. =. /3 =. =. /3 A0 =. A0 R' t( dy df Ic b: b: b: Y6 Y6 9# b: Y6 82 q/ %% J: X) q/ X) X) %% 0/ %% a: 3~ 3~ D~ &% 3~ &% &% &% 3~ 3~ +~ >' W^ ^^ -{ &% >' '. |. e' d* t@ `> P= = v@ {= 7& ^. 0, >& h# a& a& s@ '% q@ 8. 2. o@ -& 8& h# s@ ~> -& x$ 2. o@ ~* o@ s@ b. F9 F9 -& Y* F9 o@ ~> ~> m@ {= {= ]* F9 s@ -& -& o@ -& ~> ~* o@ {* o@ o@ s@ F9 s@ a& b& {* ~> v! {* o@ s@ {* O- <. u@ a. ~* d* u@ ~* h# O- q@ ;& o@ o@ 8o.q@ (. q@ :. :. E~ ~. {. o@ >& w$ u@ 9& (. >& (. w$ <. (. v@ :. x@ !. A@ ^. :. 8& C= ~. B@ 5& ^. [, -. *. &. (. (. [, e- z@ ). ). v@ x@ &. 0# +. A@ x@ {. -. ). ). &. )& *. l> (* ]. A@ .= [ !, *) 3_ r, q, s, s, s, s, s, x, v, s, v, v, =) u, s, t, u, v, u, s, |) v, s, @] [) +' q, ^, [) q, q, ], ], *) *) J$ <{ J$ *) J$ J$ M$ S- J$ ]& = . 0' + 5_ # = . # . = V@ = . $ $ 5_ = $ V@ . X! & > . M$ 0' 0' I/ # 0' L$ 0' *) L$ <{ R@ ], ], ], 9i.g~ *) `, <{ e^ V! ^, z~ =) ^, z~ g] q, v, s, A, q, s, r, v, v, v, g~ }* k {# ~# J] V- a 0 0 0 ,# 6 *# ## $# d &# $# ", +"q, z~ z~ *[ z~ z~ z~ z~ 2! 2! |1 q, z~ 9i.vh.xi.*) *) 9| $8.98.98.9| 9| <{ 9| 9| <{ 9| <{ J$ J$ jP 2^ <{ <{ <{ ;b <{ 2^ R@ .( <{ <{ <{ J$ G= I/ I/ R@ ]& 0' X! k3 I/ 0' I/ 0' 0' p9 = + 0' 0' ]& # $ # # M$ = k) $ # > V@ $ > [* 2) = V@ + o! S$ |* [* + V@ - $= [* - 1* S$ H= H= - Q$ ; U$ & ' U@ . | > U@ > U@ U@ ~ ; {c R$ | Q$ & b{ U$ | | H= | ; R$ &= [ 2 %= | X@ | 2 < -> 2 Z! 5! ## 5 [ 1 2 d 5 5 5 { 5 ( 6 b ( d &# d a V$ d 3* 6 } $# I= ( d $# $# a 8x 0 3] a' 2* ,# 0 6 e ~# e 7 a 0 !# ~# i s> L= 0 -) 0- |& V| s> Y$ h c n ,> d<.K/.p ,> 2, vA q Y$ 4* y t Z$ t t p ^# /# t t ^# w B Y$ G B F= G /U C` G N E; z n! I m) a7 E$ 8* Ri.z .Z..3& Q c- 3# O A: aV Q E$ E$ J L@ L L@ d- L@ 3d 3d 3d Vf qF 3d #N ^P qH E^ tw E^ 58 58 O= 7s O= 6B 6B q9 BE tw 58 C$ wr 7s ja r5 wr r5 ja $i .u F^ F^ L) /3 A0 ;' A0 /3 A0 /3 ~( ;' A0 /3 A0 Z9 A0 vp.6d b: b: t( b: b: Y6 b# b# b: <3 %% J: %% X) /. '& %% /. X) ^^ '= u! J: 1~ 1~ &% &% &% +~ &% ,& >' w{ 3~ -{ mp./* H; |. /* t@ ~. H; {= ~. c# v@ e# 8& /* :. u@ a& s@ 8o.2. 8o.s@ }. R= b. >% '% r@ ~> s@ -& Y* F9 ~> [y ~* -& h# o@ o@ u@ ~> j- o@ ~> o@ h# o@ 8j.-& (. u@ u@ q@ {* {* F9 u@ Z* ~> Y* o@ u@ t@ {* ~> 1. s@ m@ s@ -& t@ q@ -& x$ 3. P- s@ w$ :. E7 h# ). q@ t@ 1. q@ P- >& q@ s@ t@ <. P- q@ w$ <. -& 1. C= v@ {. 9& w$ ^. =% O- x@ != {. ^. w$ u@ 9& c# ]. !. v@ '. &. !. v@ x@ !. ^. ). ). ). ). {. !. 4) H! =. x@ &. A@ z@ !. z@ 5# *{ )& &. &. ). .= E@ !. e- W$ ] g~ [) z~ 6' s, s, 8' s, v, v, x, u, s, v, x, x, x, ' s, v, z, r, 6' r, %{ 6' x, q, ^, q, z~ q, 2! e^ <{ <{ J$ `, L$ q, ], V! L$ <{ ], 0' J$ L$ k3 !, L$ + + X! p9 0' 0' * $ # # + # L$ J$ )~ L$ + . ]& $ ]& 0' ]& ]& L$ p9 ]& ]& J$ L$ <{ J$ <{ e^ <{ ], L$ e^ ], J$ q, <{ yp.@] 6' z~ z~ 6' ^, v, [) v, [) r, q, r, x, q, s' ; {# ~# 0 &# 7 7 a a ,# ## 6 j $# 9 { $# / ", +"*[ z~ z~ z~ z~ z~ *[ *[ z~ 2! Il.2! z~ z~ *) 9| 9i.e^ 98.2! 98.9| 9| <{ <{ 9| 9| <{ 9| 9| <{ <{ J$ J$ #S 9| *) r4.<{ ], R@ R@ 8S I/.J$ 2^ ]^ G= I/ G= 0' 0' L$ BN I/ 0' 0' 0' 0' 0' ]& # $ [n 0' + V@ + Gc # $ k) # 1) # $ . k) . V@ ' # V@ . Gc # S$ + # V@ $ $ > & S$ U@ > > S$ & ; & $ > S$ | %= - | o! # T- Z! Q$ | U@ | > ^& H= ; | R$ ~ ; ^ %= %= [ ( ) Z! ## ~ 2) ) ~ | | Y@ 2 X@ [ 7- ( 2 ~ /& 1 6 ( Y> } } <& } 3* 5 7 V) 3] 3* 5 } $# d ,# 0 $# a 3] 3* ~# k [{ a vk Y> 7 ,# !# } 7 n ~# s> k -) n -) h Y$ |& ~# h 2, ;= Y$ L= h ,> h p s> s> Y$ ;) 1; s> D ,> `$ q :# /# `$ ^# b' 4* q % G {& F= w w z F= . /3 =. =. A@ A@ ;. 9# 9# b: 9# Y6 b: H! !. c[ d[ $. q/ 7, X) q/ u! '. %% *. H! 1~ 5& ~] &% D~ ~. v@ 3~ &% ~. &% d* &% '. |. 9& e' g- *% 8& t@ (. `> 9& ,% >' t@ :. /* (. t@ s@ {= :. b& a. i# {= r@ o@ b& a& ~> u@ s@ {* o@ ~> {* s@ Q- >% F9 -& ]* Y* 3. o@ ~> {= s@ u@ -& m@ o@ ]* o@ Q- s@ s@ E7 l@ o@ <. h# 3. {* h# ,% o@ -& s@ u@ -& :. s@ a. q@ u@ w$ ,% ~> u@ = /* = o@ 1. {= o@ '& {* x$ w$ d# <. q@ (. C= O- u@ %% w$ 4_ <. x$ =% d# 1. (. v@ F9 '& gT {. w$ 9# v@ d# '. ^. ~. %% '. {. b# {. '. ^. !. 0# '. x@ +. 5# gT !. !. ;. ). 5# !. z@ z@ &. -. &. !. -. ;. x@ z@ .. z@ .= S ^ J$ <{ ], q, 5' s, v, 6' r, v, x, H) s, t, v, v, s, t, +' v, g] s, r, q, v, 6' +' 6' q, q, e^ e^ q, ^, e^ ^, e^ e^ e^ J$ *) e^ J$ I/.J$ J$ *) L$ <{ L$ ]& X! !, R@ R@ L$ ]& 0' > = = $ R@ J$ L$ ]& ]& L$ R@ L$ + L$ R@ R@ <{ J$ R@ ]& .( J$ L$ J$ q, ^, ], <{ e^ ], *) 2! q, ^, ], q, q, r, [) ^, [) z~ 6' v, =) [) s, s, 6' r, 2! g~ | 6 {# k e b -# 6 6 2 9 < 2 6 d ~ / } ", +"z~ z~ q, z~ q, z~ z~ q, z~ *[ ah.xi.z~ rl.*) 9| xi.9i.)~ vh.|1 9| <{ 9| *) 9| <{ <{ 9| 9| <{ <{ R@ R@ l) <{ J$ <{ <{ l) .( ]^ ;b <{ .( J$ R@ G= I/ G= I/ 0' ;b ], I/ 0' [n 0' 0' ]& =[ =[ K$ # 0' 0' * # $ + % $ = * 1* . $ Q$ $= + ' > V@ > = [* . + L$ # # . $ ] > > = > . = # - T@ $ ] & > U@ ^& & * ] ^ N$ N$ 2 2 ' ] - ; U@ | ; ] ) %= | Z! ## ~ { ~ H= > | ~ | Z! ~ ) X@ ~ } *# ;# | 2 Y> N' ## } d *# => } ,# 6 6 &# ,# 6 $# ,# B; a' < ,# 3* 7 ## 3] 2* ]c ,# a _c.0 V$ !# a a 3] L= 9- h s> L= K/ E, `! r ;= 0 c Y$ r r s> s> c 1; n s> Q(.zp.q q Y$ D m 4* ^# 2; /# `$ :# :# {& t ^# G w 4* /# G B a7 B G }# K #= {& {& w N= G U*.1& #= $T 8* n! w X8.M .@.O@ 1& F= z E$ o^ M c- 3# 3# 3& L 3; |# :* L :* U r! L U^ r! jI tw 0* T U^ G$ O pF t> 0* 58 O= pF _M 58 58 58 58 58 7s r9 r9 6B 6B ja ja ja {z Ou ja H9 bf bf R{ .u =. 5# %i a* F^ =. =. =. =. ,. ;. &. ]. =. &. ~( $. Z9 9# 9# t( 5; b: t( b: b# b# Y6 b: ;} 5; H! ;} 7, /. ). b# H! X) {. 5& D~ /. {. {. D~ ~] X) &% ~. d* 3~ 9& 5& ~. v@ 6& D~ e{ 1. ~= Q= Q= /* /* v@ 9& :. t@ e# t@ Q= 0& 0& s@ :. s@ t@ o@ o@ u@ q@ E7 b& 3. = 9& {= u@ 2. a& o@ q@ s@ [y ]* s@ o@ o@ o@ o@ -& o@ -& -& h# ]* -& 9& E7 m@ :. u@ u@ h# <. ]* m@ s@ u@ u@ l@ D= u@ q@ -& s@ ~* ;& u@ w@ O- O- q@ w$ u@ (. q@ N- :. >& w$ >& = (. w$ C= C= w@ O- (. (. !. ~. q@ v@ '. =% B= ^. o@ ^. ). v@ /* v@ ~. {. 5# !. {. ;! ). v@ '. x@ ;. (. )& &. v@ '. &. gT A@ $. 5# !. ;. x@ =. &. ). &. ;. b# v{ .= +. z@ A@ .= z@ )= z$ a $ R@ 2^ 6' s, r, r, v, v, v, v, s, s, y, v, u, u, s, s, x, s, s, s, s, s, v, v, 6' [) +' v, ' 6' ^, ^, e^ 5' %{ `, 5' *) q, e^ l) J$ i) J$ L$ ;b L$ <{ l) J$ ]& R@ R@ <{ J$ R@ <{ J$ J$ g~ s' p9 <{ )~ *) J$ ], )~ <{ L$ BN ], ;b *) J$ ], 9i.I/.e^ g~ J$ J$ z~ e^ z~ 2! 6' 5' q, ^, 5' q, q, g] @] z~ r, v, @] s, s, s, s, v, v, s, s' $# e n ># 6 6 a 3* &# Y> a &# { V$ b } ~# < ", +"z~ z~ z~ z~ q, z~ z~ *[ z~ *[ z~ vh.9i.*[ *) 2! vh.*[ Pi.|1 |1 98.|1 9| 9| 9| *) 9| 9| 9| <{ I/.R@ R@ J$ <{ J$ <{ <{ ;b L$ J$ J$ R@ I/.BN G= R@ #S L$ J$ jP ;b 0' G= 0' L$ 0' 0' ]& I/ L$ # K$ X! 0' Z, 5_ ]& L$ # k) # ), % + # . * . o! 1* ; . $ . # k) [* $= $ = . . > = |* > & # > > > V@ V@ > T@ S$ 2 %= N$ N$ |* Q$ - .# ; 2 | N$ *' ] . Q$ ; U@ 2 H= & [ 2 5- ] ] N$ %= X@ *# [ R$ } $# [ 2 2 / ~ 2 &# /& { D, 4 5 Y> Y@ 1 V~ 8 } x0 q> d *# k q> 6- [ ) 5 ( 6 a ># ~# ,# 0 q> ~# 6 [{ ~# 0 ~# j 0 i o n L= h L= L= a h c C; n^ s> vA _# h n^ 4* #| ^# 4* V| u :# p ,> % ^# :# 2; :# /# t F #] G w 2; B F= z B F= ^# /# B F= }# F= E }# ^# n! G E; O@ {& G 1& 8* n! O@ A V N K@ 1& #= 3# E$ Q J c- |# P@ 3; Q E$ H J 3# c' H r! L@ 3) 0* d- L J L@ T tw 4# G$ 0* `I E^ E^ I@ 58 6B O= r9 O= 7s 7s r4 ja ja ja r9 ja H9 PL ja Ap.-K L) =. al bf F^ /3 $% R' A@ /3 ,. 5; /3 /3 :3 x5 ,. ~( =. t( 9/ >. Ic ;. b: b: 5; Y6 5; ;' ;. 7, 9# H! u! X) D~ a: /. ). X) 5; ;} ~. %% /. &% {. &% 3~ +~ /. ~. b# D~ |. t@ Bp.8& *% Cp.<. |. v@ k~ 5& :. ~. d* '. h# s@ kp.Q- ~. 3. w$ h# {= 4. e# h# :. >% |. :. <. *% (. a& F9 {* Z* o@ = ~* 2. F9 2. 2. s@ h# u@ {* s@ u@ {* -& q@ h# l@ 8& s@ u@ 3. u@ x$ w$ >& u@ ,j.t$ s@ o@ o@ t@ s@ u@ B= (. q@ /* x$ -& t@ q@ :. ^. 4_ q@ v@ w$ d# (. ). E~ B= x@ = x@ &. o) ;. >. ^. :. {. t@ w$ ^. {. ^. &. '. d# w$ 5& !. /. !. &. '. !. =% !. A@ '. S' A@ 6, (. l> x@ !. =. ~. >. A@ ). 5# z@ &. '. (* !. +. 4& .= )= z@ z@ [, )= +. z@ _# & + S- 2! q, ^, 6' v, v, w, s, v, 8' y, s, z, s, 8' s, u, s, s, s, 8' @] v, s, =) Dp.s, s, s, 6' 6' q, 5' ^, e^ `, ^, <{ ], *) s' ;b L$ <{ J$ s' g~ J$ ;b s' )~ J$ e^ L$ R@ L$ L$ L$ p9 L$ ], ;b ;b g~ s' *) *) V! J$ L$ ]& L$ L$ ;b *) *) z~ e^ )~ <{ 5' @] q, g~ q, e^ 2! 5' q, z~ ^, e^ ], 6' q, v, [) v, =) r, v, s, v, v, s, +' z~ + j ~# n ,# a 7 3] o &# N' k 6 ## 2 } } [ : ", +"*[ z~ z~ z~ q, z~ q, *[ ql.9i.z~ 9i.|1 z~ z~ 2! xi.2! e^ 2! 98.*) *) <{ 9| 9| *) 9| 9| 9| <{ I/.J$ 2^ J$ I/.<{ J$ 9| ;b ;b 2^ BN J$ <{ R@ G= R@ BN ]& <{ <{ <{ I/ I/ I/ I/ I/ I/ L$ I/ I/ 0' * + 0' # + # ]& R@ # . o! $ ]& . $ # Q$ + . > > $ . . ]& + V@ > V@ ]& V@ + . . # . Q$ V@ - & . ; N$ ] - & - N$ ; ] | H= }* ; Q$ ! U@ N$ 'W ; Q$ ~ U$ ) Q$ Q$ [ P$ S$ | ) N$ | { 1 => ] ) | 9 ( H= { 1 I= 4 4 ~ } /& &# } 6 / 6- [{ 6 J] J] $# } d ># } } d 7 0 Y> 7 tA ~# a k ~# vk 6 } $# ,# J] ~# a ># n n ~# L= c |& q> )# Y$ 0- o ,> -) 2, 2, ;= ;= m % Ep.n^ `$ @= @= q m t p q ;) n^ n^ 4* m F F= D G 2; {& 2; F= W) G a7 /# G #] n! w A G G B w w I O@ O@ T^ M O@ I M |# |# |# M n! c- 3# |# H P@ L H E$ |# A: C, L@ Q ` E$ L' L@ U^ r! T L@ d- ^P U^ 4# L@ 0* G$ @N @N qH 58 58 ={ C$ 58 6B r9 n) q9 ja r4 r4 Ou bf r5 H9 F^ +. /3 ,. df =. /3 =. =. ;' A@ =. ~( ,. x5 :3 x5 ,. ;' $. $. Ki gg b: t( Z9 ;} <3 Y6 Y6 d[ '= !. 7, q/ [. /. x@ ;} ). b# ). x@ &% =% /. != '. ~. =% 6& 1~ b# /. 9& `> |. 9& != e' :. {= 8& >& r^ ~. v@ _. ~. _. 7; a& {. e# h# s@ '% x$ a& s@ u@ ^. h# s@ u@ ~> s@ q@ h# b& ~> F9 s@ k> F9 -& =& :. :. u@ u@ ~> -& u@ 1. w$ Y* v@ l@ h# h# :. t@ h# a. w$ r@ Z* s@ :. w$ m@ -& Q- [y ^. w$ u$ d# :. q@ :. o@ (. ^. :. (. (. (. w$ = u@ '& w$ !. C@ W> v@ '. /* w$ = 5& E[ 9# v@ q@ d# 5& ^. ). v@ :. ^. A@ !. x@ ). =. v@ {. B@ !. !. =. !. -. x@ &. &. B$ ). -. d# (* +. A@ z@ 5# A@ E@ D@ -. ;. G@ A@ )& ;! &. &. x@ .= #. F; &. .= Q@ - ]& e^ 6' ^, r, s, r, v, }) s, }) s, s, s, s, s, s, x, x, s, +' v, s, v, v, s, +' =) s, s, 8' =) 7' 6' 6' q, q, q, s' ], <{ <{ `, ], ^, ^, *) ], 5' <{ <{ J$ )~ <{ s' R@ <{ R@ <{ J$ J$ *) <{ <{ <{ s' ^, J$ )~ <{ J$ J$ L$ R@ ]& *) e^ z~ e^ ], J$ ], q, 6' z~ z~ 2! e^ q, ^, *) 2! r, [) 6' v, q, v, s, ' 6' v, r, y: 6' s, s, x, *) f] Y@ 7 vk /& a 6 == 7 V$ 6 k ># { 2 ## $# ## ) ", +"q, z~ z~ z~ z~ z~ q, z~ ql.q, ql.*[ vh.9i.z~ 9i.2! xi.*) Pi.|1 <{ vh.e^ *) <{ I/.<{ 9| 9| <{ <{ <{ 9| ]^ <{ <{ J$ <{ 9| <{ J$ 9| 9| <{ R@ R@ R@ ]& I/ *) <{ p9 ;b BN L$ 0' I/ ]& 0' 0' [n 0' # K$ 0' 0' 1) # $ + K$ # k) 0' $ . # k) * > S$ > V@ V@ = S$ $= $ # ]& S$ = & Q$ - . |* . %= U@ +i.> o! ;# - Q$ U@ R$ . U@ . |* ^& & U@ Q$ $ l!.~ R$ H= N$ ~ ] > N$ | & 2 { *' ) | N$ [ { { 2 ~ } ~ 4 / ~ ## < } [ 2 } ( 4 } ## k } ## ( &# D, 6 J= /& } d 6 7 } 8 6 a d L= 0 6 a a' 6! a ~# L= 2* ># 0 L= !# a c q> ~# r h 0 ~# -) ]# r h L= h 2, e n ,> s> Y$ (# s> xE 1; m w :# ,> t ;{.w p n^ % t t ;= (# {& {& F= {& 2; {& 2; B 2; z z x A I z O@ T^ a7 A F= z T^ a7 M c- O@ P@ :* |# Oz M V J >z 1& H$ 8* O J |# J C, L@ T H P@ T H >O U^ L@ O J G$ d- 0* 4# =I 3d 4# 58 O= 7s 58 O= 58 r9 7s 58 58 58 Ou q9 r9 r4 E^ 8# Vz cf cs ,. $% 5# L) =. $% =. =. =. =. $% Fp.,. $. ;. r5 Z9 dB gg b: ;. ~( b: t( Y6 b: b: b: 7, %% '= '= %% '. ). ). F, =. %% '. u! X) /. p) 9# w{ &% Gp.&% ^. &% =% {. =% '. 8& v@ {. 5& v@ *% ^. `> 6& 8o.Q= 9& h# 9& {= ^. {= {= (. 1. 9& t@ h# d* h# :. s@ o@ h# <. ~. t@ S' :. -& F9 o@ F9 -& ]* :. s@ -& {= :. s@ s@ o@ C= ~> :. u@ x$ s@ ~> s@ :. :. u@ h# ~. s@ <. (. u@ u@ v@ x$ {. s@ (. s@ C= # 6 ( { ## 2 { ", +"z~ z~ z~ z~ z~ z~ z~ 9i.2! [) ql.*[ vh.Il.z~ *[ z~ <{ *) e^ 2! ah.ah.9i.9| 9| 9| <{ <{ 9| 9| <{ <{ <{ R@ <{ <{ 9| 9| <{ <{ I/.V! J$ J$ l) R@ R@ R@ 0' ;b BN L$ jP 0' G= 0' 0' 0' 0' [n X! I/ ]& # $ 0' + # $ = $ * $ 0' # # ' $= = S$ [* [* ' |* > [* . $= $ Q$ + $= > o! > . U@ U@ > P$ S$ N$ U@ . ; |* > U$ ] & Z! S$ | ~ %= X@ R$ | N$ T- N$ ~ N$ &= 2 S$ O$ X@ Z! | 2 ) 2 ( 7- ~ `@ / N$ 2 { ) 8- $# { X@ < 1 } { 2 [ 2 } 6- 2 $# 7 { $# 7 ## 5 $# } 5 ## $# k 7 7 k a a j e ,# N' ,# 9 0 K/ a e a e 0 j 6! {# e 6! h {# 8 o h j n 2, r 1; 2, s> Z$ p L= y % 4* 1; ;= w :# /# @= :# w :# D ^# b' :# D m N F= z {& z z..z :# b' z z z N z B z N z A H$ n! M O@ c- I I I A A z P@ P@ 3; 8* J P@ O 3# Q Q H U r! T C, L@ r! D$ pF tw pF L Q Vf L@ U^ E^ #N U^ L@ tw `I O= 58 7s O= H9 @. 7s rH q9 r4 E@ 58 r4 {z 5d ja r5 $i Bk $% 5# L) =. L) =. =. A@ ;' +. 5# 5# $. A@ G; 6# 4- =. c[ ~( &. V^ ;' b: b: b: b: b: 9# q/ X) ). H! !. '= H! $. a: '. w{ %% !. ;. 5& '= &% &% /. p) 5& }@./. x@ x@ d# ~. ~. ~. ^. {= :. c* 7& (. |. (. t@ '& ~. '. v@ t@ 3. 8o.q@ v@ {= u@ b& s@ s@ 5& {* 9& >& q@ s@ q@ s@ s@ -& s@ v@ 2. q@ {* o@ -& {= 1. 8& v@ :. s@ v@ v@ {* s@ E7 -& -& 8& v@ :. s@ s@ q@ >& s@ q@ '. x$ u@ t@ -& w$ v@ c# q@ w$ w$ (. ^. :. /. d# v@ C= w@ '. !. c# q@ x$ E~ t@ B= 5& d# A@ '. ^. ^. 9& v@ /* )& ;. ^. !. ^. A@ b# (. x@ ,& ]. ^. !. A@ +. x@ !. ;. *. e- ). x@ F; x@ z@ ). ). %. &. b# A@ $% &. E@ z@ L) .= 4- $% F@ z@ E@ F@ z@ z@ &. V L@ _# & s' V! ^, =) x, +' q, z~ s, v, v, u, H) s, s, x, s, x, s, u, v, =) v, v, v, s, v, v, v, s, v, 6' q, ^, *) z~ 5' [) 3_ v, q, q, v, ^, *) J$ e^ <{ *) 2! e^ ], e^ *) *) 5' *) ;b L$ ], ^, ^, I/ <{ e^ <{ L$ J$ *) <{ *) z~ [) ], *) e^ *) V! e^ *) *) ^, q, *) *) ^, *) 5' [) q, q, %{ [) ^, q, q, =) v, =) [) v, v, s, A, s, q, *) R@ Y> j ,# ,# a D, $# a -# &# 6 d $# ,# } 2 / $# V$ ", +"q, z~ *[ z~ q, z~ z~ z~ 9i.ql.z~ z~ ql.vh.&[ z~ e^ *) 98.5' 2! 98.2! |1 <{ 9| 2^ 9| 9| 9| 9| <{ <{ <{ J$ 2^ 9| <{ <{ J$ 8S <{ BN *) |1 jP J$ R@ R@ 0' ;b I/ <{ BN [n 0' 0' 0' 0' 0' ]& 0' I/ I/ # * L$ = + Z, I/ ]& # T@ 0' =$.}, $ k) [* > 1* # + V@ ; = # S$ # o! $ . U@ + $ . . U$ & S$ $ S$ ^& > $ U@ $= Gc ; | %= $ ] ~ N$ N$ N$ | & ; ) 2 ~;.| 2 | 2 N$ X@ 2 / 1 | [ ## & | N$ & 2 W@ { X@ -> / N$ Z! : } | X@ N$ ( $# Y@ ) { } 1 5 6- a 6 6 1 $# /& 7 ,# ># $# 6! 3] b 0 k ># 0 k == 7 ~# L= ~# X0.c ~# 6! ~# ~# !# k 2, h s> r 0 K/ `! p o/ `$ 1; C; `$ h 0 u ,> V| ^# % m Z$ b' 2; t 2; t ,> p s> ,! {& w q D F {& G {& t GK /# I ^# z N m w z z N B G O@ A H$ I S c- K K@ O W) 3# c- c- I$ E$ M 3& c- J 3; J c- P@ T H H L Q fp.pF kP t> O Vf 0* T E^ tw C$ d- U I@ 4# O= 0* ia C$ @. @. y@ H9 E@ r4 7s ja r4 r9 r4 . cf G; L) .. . .= . /3 $% =. e- A@ ~( ;' =. )& ;. .. /3 A@ ;. b: b: $% ;} Y6 b# H! ;} 9# ~( 9# a: A@ '= H! '= X) '. H! .= ). '& {. +~ /. /. ~. 1~ '. h- &% 6& =% '& %. != ^. '. =% /* {. 9& {. g- e' 8& w$ {= _. v@ t@ ,% &. ~. j> 2. :. ~> 2. :. ~. [y h# 4. 1. v@ w$ {= ,% 0& d* 4. {* a& h# 1. h# t@ m@ v@ h# Q- =& d# ~> :. q@ s@ /* :. *% Z* h# c# x$ ~. p) q@ :. (. c# x$ v@ :. v@ h# D= >& t@ q@ ). ^. = x$ _. ^. E~ (. t@ d# ~. =% ^. d# O- w$ '& C= {. ^. w$ ~. (. ^. t@ ). !. +. ^. &. !. #> -. 5# '. [, -. 6# o) x@ '. !. ). &. !. A@ 5# &. -. %% ). z@ *. B$ 5# 0# #. -. A@ A@ z$ )& . 7# $% 5# +. V> E@ z@ 5# 5# F@ .= V N > # [) 5' [) s, 6' v, [) y: s, s, x, s, v, s, x, y, u, x, v, v, A, A, x, x, H) s, s, s, 8' H) v, *) q, v, s, @] +' v, q, q, |1 2! q, r, e^ 5' z~ z~ *) ], 5' 2! ], 2! 5' ], V! *) z~ <{ ], ], z~ l) ], <{ *) ^, ^, *) [) @] z~ ^, q, z~ q, 5' q, *) 2! v, 8' ^, 6' q, g~ r, [) v, s, [) 2! &[ q, s, x, }) v, q, v, r, s, v, H) ^, # a ,# 7 6 a $# a' Y> 6 ~# 8 ( } 5 $# $# { [ d ", +"z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ Il.vh.z~ 5' 2! 98.^, )~ ^, $8.xi.<{ z~ 9| 9| <{ 9| 9| 9| 9| 9| <{ ]^ <{ <{ 2^ <{ 8S <{ .( ], ], <{ I/.R@ J$ ;b <{ 0' L$ J$ p9 I/ G= 0' 0' p9 J$ 0' 0' 0' ]& # X! 0' = * + 0' 1) # = $ * + 2) 2) $ $= > [* & > # L$ $= M$ ]& [* |* $ + . > |* U@ Z! - Q$ S$ ^& A; Q$ & $= $ %= U$ U@ S$ ; U$ | & X@ R$ T@ P$ | 7- | ' & U$ R$ U$ { H= N$ ) ) { 2 { { { [ ) 2 ) ## ; { => Z! N' 4 { 4 X@ ( /& *# 4 F:.d ,# k N' d d ,# 6 -> d Y> } 0 2* a k a' e Q{ a ~# k 6! ,# ,# !# g |& 0 c c |& i K/ {# ~# c s> L= c L= s> Y$ 0 h _# ,> 4* r s> t Z> Y$ s> v `$ `$ 4* m #] _# 4* % p p m m t p 1; /# D w 2; m w G F= W) m 1& 1& I O@ z G O@ A O@ & 8& {* :. h# o@ t@ -& x$ B= 2. q@ v> 1. (. ^. t@ t@ q@ o@ {. q@ 3. t@ x$ s@ 3. q@ w$ 0& E[ :. (. h# q@ u@ {. w$ u@ q@ d# A@ v@ ,& >& :. w$ ^. ^. t@ (. $. )& &. (* &. {. '. !. {. (. 9& a# #> (. &. ^. b# ;! ;. A@ {. *. A@ d# p, ). ;. C@ !. -. ,. .. *. 5# &. %% A@ -. ). A@ ;. l> 0# e- A@ &. )& $. =. A@ )& )= +. $> )= e- X I@ B$ !> E@ )= #. @. F$ ) ]& )~ e^ v, s, 6' v, 8' v, 7' u, s, v, 6' 8' s, y: s, s, s, x, x, x, s, u, x, s, s, s, s, s, x, 5' 6' s, v, q, s, r, z~ q, 2! e^ v, v, z~ e^ 6' q, *) g~ 2! ], *) e^ ^, 5' q, 5' ], )~ e^ 5' q, ^, *) L$ *) s' 5' z~ ^, e^ e^ q, q, [) g] ^, %{ [) v, r, v, [) r, [) 5' r, v, 5' v, s, 6' q, v, v, A, s, s, 6' +' +' =) x, +' J$ ) 7 i e b _ ( i b e &# $# X@ 7 / 2 *# 5 } < ", +"z~ q, *[ *[ z~ z~ z~ z~ z~ z~ z~ *[ z~ Ip.vh.9i.5' z~ 9| |1 9i.Pi.ah.vh.vh.)~ 9| <{ <{ 9| <{ <{ <{ 9| l) R@ <{ <{ 9| *) R@ <{ J$ L$ J$ *) <{ J$ J$ G= G= I/ I/ R@ #S L$ I/ L$ 5_ 0' R@ [n 0' 0' + 0' 0' Z, !, R@ R@ L$ # + + # # Q$ Ez !, . . ' S$ > $ 0' = $= . {c V@ # & H= > - > U@ ; ; =' P$ A; > {c U@ $ N$ | | (& ; 2 ; ; Q$ ; T- 2 ~ ) ] N$ ; ; { ] ] J) .# / ~ =' [ ; *# ( 2 { /& [ 2 4 ~ } H= { 1 [ x0 5 [ V~ d 6 /& { $# 6 [{ < a 6 6 < 6 V) ## d q> b k c6 } 6! a 5 6 ,# Y> 6 ~# 7 0 K] c n K/ 0 ~# k c Q{ `! 0 h h Y$ -) L= n c ,> _# 0- n ,> `$ o s> u h `$ /# m m u r @= w D m q {& w u ^# t w :# ^# /# B B G 1& z P@ J E$ d{ J P@ E$ H$ J H M@ J H 3d G$ T L@ D$ D$ #N 3d O= L' `I tw 7s O= @. O= C$ 58 @. 58 0* r9 7s r4 @. @. r9 8# E@ 8# H9 r9 r5 =. =. ;I @. a* =. .= =. $% 5# A@ 8# /3 A@ &. ;. ;. )& =. t( 9# b: $. A@ ;. ). $. )& 5; e- b# !. F, &. {. ). S' ). b# '= {. '. =% /. '& !. '= D~ D~ &. /. /. /. ~. v@ d* e' &% ~. ^. 9& {. B@ d# E~ ^. b# %% ~. (. 4_ {. t@ d# 8& w$ q@ 2. Q- h# q@ ~. 8, (. :. x$ t@ :. h# :. q@ s@ w$ :. w$ s@ 8, Z* o@ h# (. a& t@ s@ s@ 5& Q- (. ~. q@ u@ ~. -& :. (. 3. = ^. ^. (. C= '. nY q@ =% d# H! ^. ,& !. ,& w$ l> ). ^. ;! 8& {. B= t@ ). {. '. -. {. &. ). ). d# ). C@ -. x@ )& d# ). '. '. &. -. v@ ,& )& b# '. {. $% ;. &. !. =. +. &. 5# =. +. 0# A@ &. B$ &. ). A@ #. &. B$ &. m> =. 4& .= )= C$ .. 4- @. P V G@ T B$ V E@ X r . ;b 2! q, s, s, z, x, H) u, z, y, u, x, 8' s, q, v, =) =) x, s, s, x, u, u, s, 8' s, s, z, q, s, s, v, g] q, 5' A, q, 6' q, ^, z~ q, q, *) z~ *) e^ ^, ^, 2! *) ], q, ^, 2! q, Jp.*) e^ e^ [) q, e^ 3_ 5' )~ e^ 5' z~ q, q, q, q, *) ^, 6' q, q, [) [) @] [) q, r, [) r, x, 6' q, =) g] =) s, =) s, v, 6' x, x, z, v, @] H) e^ d 7 i ,# V$ 7 $# ( 9 == 6 j ( 1 } ( ;# d V~ } ", +"q, q, z~ z~ z~ z~ z~ *[ q, z~ z~ z~ z~ *[ ah.ah.e^ 9i.*) <{ 9| )~ |1 |1 |1 9| 2! 9| *) <{ 9| <{ <{ <{ 9| 2^ <{ I/.I/.<{ J$ jP 9| <{ <{ L$ J$ I/.2^ 2^ R@ 0' I/ J$ I/ I/ L$ ]^ I/ 0' L$ T*.[n 0' = R@ K$ X! 0' $ Z, ]& ]& # Z, ]& 0' + + Q$ o! $ 2) Q$ # # + $ = ' > $ > - > [* > - ; S$ > > . & U@ U@ k) S$ $ S$ %= R$ & & | %= X@ Q$ 5- ^ Z@ S$ ) (& & | &= { T- P$ 2 Z! ) | | { ] | X@ 2 ) | 2 { 2 | $# ( X@ $# } [ { G9 d [ Y@ X@ V~ 6 $# ( -# d 7 6 } d Y> ( $# k 6 a q> a M' a a a {# Y> ,# ~# 0 $# ~# V) c L= {# a k ,# h s> |& n s> {# c s> % p Y$ Y$ L= 2, 1; 4* p K/ q ^# ,> `$ 1; `$ b' w p q Z$ G m w @= D t F= D F= w /U I '&.z a7 I a7 I w ~& B z z A O@ F= Q@ I Q@ 8* M N N@ I I Q@ I z n! [# QT M 3# M P@ O@ 3; L iI C, d- Q U t> qF 3& L |# T 3d `I 58 O= 3d 4# tw O= C$ C$ O= r9 rH d- 58 58 Ou E@ O= q9 W r9 r4 y@ R{ EA G; )= +. .. ,. A0 A@ ,. 5# +. =. =. ;' =. A@ t( =. e- G; t( b: 9# ;. &. =. $. b# 7, !. -. 9# =. ~( '= v{ H! b# E@ !. b# %% ;. =% {. x@ T' '. {. '. /. `> =% ^. ;. v@ 8, {. &% d# /* t@ {. 9& x@ ^. v@ =% ). *. 9# &. -' {. {. {. &% v@ s@ {. w$ t@ u@ :. v@ Kp.:. (. 1. :. w$ 1. x$ ^. s@ {= u@ o@ q@ ^. :. x@ ,& ). (. /* d# q@ h# {. ;. E~ :. {= = s@ T' w$ (. s@ >& >& {. c# w$ /. 5& d# {. w$ b# -. x@ x@ x@ '. +. W> {. ^. ). '. d# /* (. ). )& ;! 5# !. = !. &. x@ ;. !. &. C@ '. &. A@ ;. ). !. ). !. ^. -. 5# x@ &. &. ,. A@ z@ ;. -. z@ {. +. &. {. z@ 4) 5# V R X 5# +. B$ C$ #. E@ z@ 4& 4# T z@ D$ L@ C$ 5# V P G ; R@ *) z~ s, w, y, x, s, u, y, x, x, u, z, u, x, -! z, x, u, y, x, x, v, s, x, s, u, s, s, v, s, q, r, q, ^, v, v, +' u, 6' 6' [) [) g] q, [) ^, *) 6' g] q, z~ 6' ^, ^, )~ q, [) r, r, 6' ^, [) q, z~ *) *) D[ z~ 5' q, q, q, q, ^, q, 8' q, 6' *) v, 6' [) q, q, g] ^, v, r, 6' 6' v, H) [) s, ' u, v, v, s, v, q, r, v, G= [ V$ a -# -# V$ ## 6 J] [ } } 9 ## { a Y@ d 1 < ", +"@] 5o.z~ q, q, z~ z~ *[ z~ z~ 6' z~ *[ *[ 9i.vh.z~ *[ z~ |1 $8.9i.*) 2! ah.<{ 9| 9| 9| 9| <{ 9| 9| <{ 9| J$ R@ 9| jP <{ J$ <{ <{ jP l) R@ J$ <{ L$ 2^ BN R@ I/ ]& I/ I/ L$ G= G= 0' 0' 0' I/ p9 [n Z, # = 0' Z, # # = # + $ $ L$ $ . + $ ' + ]& V@ > 0' + > Q$ $ # 0' L$ . |* & > . & !, 0' & > $ L$ k) ; > U@ U@ Q$ =' %= R$ N$ > ! ; ~ ! ] & Q$ R$ R$ ] U$ 8- /& ~ W@ 8- | U$ ] | } ~ { J) 5 } { [ } { { [ { ( d D, ) } / $# $# { 5 D, a 6 i 6 7 ( ## 7 Y> } # 4 6! ># i 6 N' ,# 6- a 7 L= a a ,# 0 0 0 n e d {# h L= 0 p h X$ Y$ s> h p _# Y$ Y$ ;) n ;) 2, p p }& 1; p 1; #] 4* :# % p /# /# z z m /# t ^# G % w z G w 2; w z }# z F= G G I B N A z |# z G A G P@ M h] O@ Q@ I 0S M L Q |# Q E$ H L P@ E$ E$ U r! T H J J P@ H >) G$ 0* Vf 4# d- E^ 4# 58 O= 58 O= E^ E^ r9 r9 C$ 58 r4 @. 58 r4 !> r4 r4 ja y0 5# !& .= r4 !& 8# z@ G; /3 e- ,. $. ,. )= =. +. . A@ $. $. !& A@ W- =. t( 9/ e- ;. A@ )& F, b# ). ;. &. H! 7, R' o) b# %. -. =. !. ;. ). '. o) .. '. &% {. ^. p) b# z@ T' A@ b# /* |. 9& A@ {. {. /* d* ;' &. !. 8, ~. 9# '. T' ~. v@ (. v@ t@ _. _. {= q@ d* (. :. %% >& w$ ~. 8, 9& 1. /* {= (. ). t@ t@ v@ (. s@ 8& :. :. (. 3. d# (. q@ :. t@ w$ '. v@ w$ q@ w$ >& u@ ,& &. x@ ). A@ W> W> ). x@ '. '. (. q@ ^. ^. d# -. ]. :. %. ). x@ {. !. !. !. ;. ,. ^. &. !. -. ). c# ,& A@ ). l> x@ -. ). &. *. b# -. z@ =. ). >. A@ '. &. v{ b# -. %. A@ -. x@ B$ -. B$ +. ,= 4# T 4# .= @. .= +. W G@ V 5# C$ (* +. X E@ I@ }; 2# L@ Z! ]& ^, r, z~ [) x, x, v, v, u, v, x, s, z, x, x, v, +' s, x, x, s, s, s, x, g] s, u, s, x, s, v, v, q, 6' s, e^ +' v, s, [) x, ^, s, s, q, v, 5' q, s, s' )~ r, H) q, r, q, q, [) z~ z~ 8' q, x, s, g~ i) q, [) ^, q, q, [) q, q, [: ^, v, q, v, r, s, [) e^ ^, q, 6' q, }) 6' v, 5' 2! Lp.r, v, v, 8' s, v, x, v, -! 8' e^ + a a 6 : 7 ~# ( 6 W@ } ~ { $# { / d < : *# `@ ", +"6' 5' rl.*[ q, z~ *[ z~ z~ z~ z~ *[ z~ z~ 2! vh.|1 *[ z~ *) vh.)~ )~ |1 vh.<{ )~ 9| 9| 9| 9| 9| 9| 9| *) <{ ]^ 2^ <{ <{ I/.<{ ;b <{ l) R@ <{ <{ L$ ]& G= R@ I/ R@ G= I/ L$ L$ R@ I/ 0' 0' 0' 0' T*.0' K$ # # Z, # # # # % # 0' J$ + = . # . }, = [* > $ 0' V@ ]& . . # =' - # > $= 2) > > . [* |* (& . ; | |* %= U@ . V@ P$ | U$ ; R$ ~ H= - & & Q$ ] N$ R$ 2 ## =' H= ) *# { Z! ^ 2 <& ~ X@ Z! 2 2 2 , [ { *# : } Y@ ## d $# { [ d %m } 6 V) Y> [ 1 6 7 N' a 6 $# Y@ 6- D, d 6 a a' ( ,# a Q{ a 6 N' 7 k ~# e a n !# 0 {# h o a' ~# p n p ~# n m `$ g h ]# h `$ ^# y2 q `$ m /# 4* n^ ;= :# w p! m t t 2; 2; ^# w ^# G D ^# @= G G N G 1& z #= {& K Q@ w F A #] O@ M W) I 8* I M I |# a- P@ M 3# q! M P@ 3# E$ 3; L L S H Oz Y r! T Y d- L@ D$ 3d T G$ U E$ H 58 G$ P tw 58 4# E^ I@ L@ 4# 0* 58 C$ @. O= O= @. r9 ja E@ r4 E@ 8# ,. .. 7# R{ R' =. &. 6# >. L) 6# ;. ,. =. z@ e- )& V^ $. 5# )& =. ,. (* t( &. '. ;. ;. ). b# ). ). &. z@ &. !. ;. *. !. '. S' . ). {. {. {. F, x@ {. B@ p, A@ V^ v@ 9& ^. != (. ^. v@ ^. &. ;. %% ^. ). -. !. v@ ^. 5& 9& ). 9& ^. d# 9& !. _. w$ (. 9& w$ (. {. h# 5& ^. ,% s@ (. 0& 8& ^. w$ 9& u@ 3. t@ (. s@ ^. x@ :. v@ {. {. ~> v@ q@ w$ v@ :. %% x@ O- E[ W> = E~ x@ ^. c# t@ {. l> x@ ,& t@ '. *. ^. ^. H! c# F, '& d# =. !. =. A@ &. {. t@ x@ (. A@ x@ )& %% v{ -. x@ z@ '. =. &. &. ). l> ). !. 4- 5# =. )& F, @. L) . . E@ A@ &. A@ 4& 5# A@ z@ z$ B$ X E@ C$ G@ . +. F, (* 5# 5# P C$ )= 9* z$ . +. C$ P 4# .= 7 ]& <{ 5' z~ +' =) s, s, z, =) v, x, z, z, x, s, s, s, u, u, s, u, x, u, u, x, x, v, r, v, v, s, s, 6' s, 6' ^, 6' @] +' y: v, s, s, s, +' q, z~ 8' g] q, q, 6' q, z~ q, q, q, z~ q, q, r, r, 6' 5' [) [) %{ z~ [) e^ *) [) *) ^, q, `, z~ ^, 5' [) q, 6' 6' ^, 6' q, s, @] s, v, H) [) =) x, s, t, s, v, [) =) H) v, v, ^, > 4 7 ,# V~ 6 6 V- ( V~ $# ## { < == ) Z! ~ ## ## N$ ", +"8' 5' z~ *[ z~ q, z~ z~ *[ *[ z~ z~ z~ z~ 9i.vh.vh.z~ z~ 9i.9| *) Pi.*) 9| 9| vh.<{ 9| <{ 9| <{ <{ <{ 9| 9| *) R@ <{ <{ I/.2^ J$ ;b J$ J$ 9| <{ k3 L$ ], R@ G= X! I/ L$ ]& L$ R@ 0' 0' I/ I/ 0' 0' [n ]& # + T*.+ # + J$ # + 0' L$ 0' 1) = Q$ + # }, . . ; Q$ = > T@ . . ] # . = U@ 05 $= N$ U@ . > N$ V@ + > . # . ; & N$ Z! %= X@ H= %= Z! . Q$ |* Q$ U@ .# ] | 2 ~ { J) N$ U@ ] o! ~ N$ N$ [ ~ & Z! 4 ~ 2 %# [ 8- 4 Y@ /& < X@ ~ ## Y@ } ( < ( 6 d 6- ,# a 8 } &# $# d 6 6 q> 3] q> ,# k q> $# ,# {# !# 6 Y> ,# i {# e L= L= 0 0 {# n !# |& 0 L= h ;= c L= ]# r h ]# ~# % Y$ g [& n Y$ 4* 2, `$ (# V| ^# ,> n D m m y m m ^# 4* B }# :# w D G t D G I x w 2; }# G F= I A O@ G z z G H$ E$ x M 3# c- n! P@ 3; 3; T^ S 3; J J L U L E$ J G$ ` D$ ` L d- T r! G$ 4# 4# r! 4# 0* @. r9 C$ @. n) C$ O= Q' @. O= ja E@ r4 r4 r9 %i #. a* r5 W- G; .= L) =. . =. A@ C@ ,. 4- %. >. ;. )= /3 A@ *. ;. *. 9# 6# &. !. 9# !. F, B@ ;. F, &. ). b# !. ). ). $. =. &. '. ). ~. !. -. !. ~. ^. {. !. '. '. 4_ ^. '. =% x@ 8, ). =% b# |. 9& {. 9# {. '. !. ^. =% '. x@ H! d# '. v@ v@ (. (. :. t@ }@.&. ,& %% 5& t@ p) :. ~. ). v@ >& t@ t@ v@ ~. v@ x$ ~. 0# s@ x@ ). ^. :. :. d# :. t@ w$ A@ c# !. c# ,& (. d# {. (. '& %% {. x@ d# !. ,& x@ x@ E~ !. x@ -. d# ). ;. )& +. '. z@ &. x@ !. !. ;. &. -. ;. ). !. 5# ). F, =. . ). z@ !. !. (* !. (* =. )& A@ !. z@ !. #. &. @. +. =% +. A@ #. +. !. {. (* ,. E@ E@ 5# A@ C$ L@ }; F@ 5# T }; B$ z@ }; L@ V r! I@ C$ O s Q$ R@ e^ q, 6' s, u, s, u, v, v, v, x, z, y, u, s, x, x, H) z, u, x, s, x, x, v, v, v, v, s, r, ' v, ^, 6' A, %{ r, v, v, 6' =) v, =) s, r, r, q, v, s, s, z~ z~ r, z~ s, s, q, [) z~ 5' q, z~ 2! [) q, 9i.e^ q, 5' *) =) *) 6' q, 6' 6' 6' %{ [) 5' 6' v, q, 6' v, s, q, s, q, +' s, s, s, s, s, s, x, s, z, u, x, s, ^, N$ 2 a X$ == ## ## $# $# a' 5 9 d V$ ) -# $# N' [ &# Y@ ", +"s, Mp.z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ ql.9i.*[ *[ rp.vh.9i.9i.vh.vh.e^ Pi.2! 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| 9| 9| *) <{ <{ <{ <{ <{ *) J$ ]^ 2^ J$ .( ]^ R@ G= [n ]& R@ 2^ I/ L$ L$ 0' 5_ I/ 0' 1) [n ]& K$ G= J$ 0' 5_ + R@ X! K$ + L$ + K$ . H= $ J$ # Q$ $ |* S$ $ $ U@ $ 0' # $= . Q$ > - . S$ S$ U@ Q$ > & $= S$ ] N$ Q$ | U@ | ; H= N$ ~ H= & U@ & %= ] ] Q$ ~ .# X@ U@ U@ N$ & b{ ~ 2 N$ X@ ~ X@ ~ 7- F:./& | ( 2 [ 2 1 ) Y@ X@ 4 J) 6 Y> 6 1 d } ># ( } D, d i $# ( } 5 d Y> d q> vk 7 tA 0 q> a 0 a a L= {# a 6! 6 c h vk a a n Y$ 0- Y$ ~# 0 2, c{ r ;= r m s> h ,> V| ,> Y$ V| q _# p q t h u t m `$ 2, p D D @= ^# ^# {& w t {& /# {& :# w I F= ~& D W) z I w N M c- 8* O@ c- E; G O@ c- |# O@ A P@ E; Q@ E$ E$ P@ A %> P@ H$ |# E$ J T T L' T r! L' 3& O P@ L@ P@ 3# t> H T 4# 4# E^ 7s 0* T n) 58 V @. J O= . r9 4d V E@ &H G; y@ 0* bf . 4) lp.G; ,. +. $% 5# $% =. +. #. /3 .= 4& z$ +. A@ $. %. ;. &. )& ;. &. !. z@ y@ &. ). H! .= x@ =. B@ -. >. F, ). b# x@ !. >. A@ b# [. =. p, ;. &% b# F, {. '. b# {. '. C~ ). o) 7; !. ;. {. ,& !. A@ ^. |. {. v@ '. !. b# '. '. ). {. ). v@ v@ E7 t@ ~. '. -. {. 9& ^. w$ {= (. ~. d* (. w$ ,& d# [y _. -. l> ). ^. q@ {. >& (. 5& 1. q@ ). v@ F, ^. #> d# :. ^. t! &. =. w$ ^. '. #> &. !. {. 5# ). ^. -. ). =. !. ). x@ x@ ,. r5 5# &. &. &. W> !. A@ A@ ). A@ -. ). )= =. x@ =. -. x@ {. !. *. A@ &. ;' ). z@ $% *. A@ 7# =. &. .= &. (* A@ +. -. G@ 7# ,= E@ D$ z$ 5# X +. U D$ 1# 3& P@ ` P E@ G@ H 2# T I@ L@ L@ I O$ J$ e^ 6' ^, v, 8' r, v, y, v, s, x, x, z, z, v, x, s, x, u, y, s, s, s, s, x, u, s, x, u, v, v, s, 6' s, z, @] s, s, v, q, q, v, [) s, s, s, q, v, =) =) s, s, 6' z~ [) q, [) q, q, z~ q, e^ 6' 6' s, q, r, ^, q, 6' 6' q, q, 5' ^, ^, r, q, s, r, q, s, r, s, s, s, 6' H) 6' v, z, v, v, s, v, r, y, z, x, s, 6' [) q, < 0 e a =# 9 ( 6 < 4 < Y@ ,# } 1 [ $# [ 2 1 < ", +"s, Np.*[ z~ z~ z~ *[ *[ z~ z~ z~ *[ 9i.9i.z~ *[ vh.ah.z~ *[ 9i.xi.*) Pi.9i.|1 |1 9| <{ <{ 9| <{ <{ 9| )~ *) <{ <{ <{ <{ I/.<{ 9| <{ ;b $8.J$ 9| <{ <{ I/ R@ J$ BN I/ ]& R@ 0' I/ L$ I/ 0' 0' 0' ]& 0' [n $ # = I/ J$ # # + ]& # k) # # > S$ > $ > . $ J$ ' $ = . # = . . Q$ = . > - & S$ V@ . & > N$ = Q$ U$ $ S$ A; & & o! |* U@ & R$ ~ U$ . ^ & & 2 X@ .# *' Z3 N$ . T- ; { ; ] N$ P$ [ ) 4 ( ] ] { %# ( $# 1 [ | 2 X@ 2 2 6 / $# ## d ,# $# i ( 9 $# 6 D, d 6 3* 8 6 8x 7 $# a a b q> ,# e {# 0 ~# L= a 7 d k C; ~# 0 h c L= ~# c ( K= n ~# e r h ]# c m r q s> |& p m t p c % Z$ ^# b' r t 4* Z$ % t y m #] m B m G /# m y 2; D `$ D t N G ~& A z #] H$ 1& T^ O@ I z T^ z z O@ z 8* N P@ 3# E$ P@ h] P@ :* E$ J P@ :* U d- U^ Q U^ 3; L@ T d- E$ I@ 3d r! 0* `I BE I@ Y G$ G$ T P G$ @. O= I@ r9 r4 H9 @. @. G; cf 58 y@ . y@ 4# O= #. =. . =. =. A0 6# ,. ,. . &. %. ;. $% )& )& z@ )& =. .= )= =. 4& . ;. -. ). z@ -. $% e- !. &. '. A@ !. x@ ). !. !. A@ -. '. ). D~ 5& ). 5# ). &. !. x@ 5; '. &. z@ ~. ). }@.{. d# '. ). x@ b# /. v@ ^. b# 9& %% b# T' '. F, t@ (. (. v@ ~. x@ ). &. 4) _. x@ !. w$ ;& v@ ). {. {. A@ (. {. x@ x@ T' {. ,& l> x@ ,& 5& '& d# {. !. w$ v@ {. d# ^. &. A@ !. ,. ^. ^. )& ,& A@ ,. -. p, p, p, ^. &. ,& !. &. '. -. &. &. !. !. 5; %. e- &. &. A@ ). '. &. x@ y@ !. )& A@ &. (* 7# 5# -. ;. &. ;. 5# =. )& .= y@ O= )= E@ A@ z@ B$ L@ =. .= #. +. 5# Z +. .. 4& E@ @. S I@ C$ V L@ P J .. F@ H@ T z$ .. V P E$ 7 ]& ^, q, v, s, s, v, 6' u, x, u, y, x, s, s, s, y, H) s, 8' 7' u, s, s, s, x, x, s, z, u, H) =) H) ^, +' s, v, s, s, s, s, +' s, s, 6' s, v, r, %{ v, v, g] 5' [) q, q, 6' v, q, ^, q, q, ^, ^, [) u, s, v, r, z~ 6' v, ^, q, +' r, 6' x, s, H) r, H) H) s, 6' s, x, x, [) q, r, s, ^, r, v, x, @] x, r, s, s, @] @] s' < 6 { _ -# _ 9 $# &# } { *# < ~ : 1 4 ## ~ / / ", +"X( Op.z~ *[ z~ z~ z~ z~ q, z~ q, *[ 2! ql.z~ *[ 2! |1 *[ *[ 9i.xi.9| e^ e^ xi.|1 9| 9| <{ 9| <{ <{ 9| 9| *) <{ jP <{ 9| <{ <{ <{ 9| |j.(}.R@ ]^ R@ J$ l) R@ ], J$ I/ L$ ]& L$ 2^ L$ I/ L$ I/ I/ 0' 0' 0' + # = 0' = + # $ = * Z, # * V@ k) # + ' ' . = . $= Gc $ $= . S$ > > *' $ - & & Q$ > + = - U) . $ A; %= ] - U@ & %= > S$ N$ *' ; H= Q$ ) | & 2 2 X@ 'W ) ( & 2 ] ] N$ ~ | Z! ; { { 2 1 2 { | { /& } { N$ 4 } J) X@ 4 [ 5 d $# k ,# 6 `@.d d 6- $# d &# [ N' { 0 a 7 a x0 V~ 0 0 6 b i e ,# z: 2* k a' 0 c h c 6! 6! 0- v ;= h t' ~# a ~# n p h q #| t 4* s> u p p h Y$ |& c{ r t 2; 2, Y$ u t 1; ^# ^# ^# m #] C N 2; m 1; F 2; G A N I M= I w A F= z A I 8* 8* I I M 8* M S |# H$ O@ |# 3; O@ d{ J J L H E$ |# S C, L |# U^ r! J L M M J 3# E$ P' Q L@ I@ O 0* L@ L@ C$ r9 r9 V O= I@ r9 G$ X X . @. Q' Pp.r5 a* L) G; E@ W +. z$ $% =. ,. 4- z@ Q' 5# z0 >. )& A@ 4- &. Qp.&. X ;. )& $% -. ,. !. *. e- x@ 6, (* -. x@ =. ;. *. !. &. >. 5# A@ z@ !. ). b# ;. '& z@ A@ {. F, !. O= !. $. b# ^. ). x@ 9# B@ x@ d# '& ~. =. )& &. 8& =. ^. =% {. A@ {= %% l> '. ^. (. !. ). ). '. 7; F, c* ). :. ). A@ {. v@ ;! v@ !. ). 5# l> x@ x@ l> d# x@ (. '. /* (. o) w$ [, x@ c# (. (. &. ,& {. x@ <. {. ). {. v{ !. x@ -. ). x@ ). F, ^. W~ &. ;. x@ ,. 5# ). A@ '& {. 5# x@ $. 5# A$ L) 5# A@ A@ .. 6# 7# =. C@ V 5# -. A@ F, =. [, E@ 4& +. G@ O= z@ . +. 4) G@ z$ C$ !> 5# ,= )& C$ 2# V V G@ U L 4# H J O J 9* +. F@ U P (* I@ E$ T v ]& ], ], z~ q, v, x, x, 8' y, x, #' z, x, s, s, y, v, v, x, z, u, s, x, s, s, x, s, H) s, r, r, v, 6' x, H) s, z, 7' s, x, q, v, s, 6' s, v, v, 6' [) [) v, 5' ^, ^, q, v, v, @] v, v, 6' @] 6' v, 8' s, *) *) ^, 6' +' q, q, 5' 3_ =) v, 6' s, v, v, v, s, 6' |) s, s, q, s, s, u, v, v, v, u, s, v, v, v, v, z, [) . $# &# b < { 7 e a +# ) 1 { V~ 2 ) ## X@ { ) 4 2 ", +"X( [: 6' [: z~ q, z~ z~ *[ z~ z~ *[ *[ 9i.z~ *[ z~ Il.Il.*[ z~ *) 9| )~ Ip.*) |1 <{ 9| <{ 9| <{ <{ 9| |1 *) 9| <{ <{ ], I/.8S I/.<{ |1 (}.L$ .( BN L$ l) ]^ ]^ R@ I/ L$ G= #S jP 0' 0' L$ 0' 0' [n 0' 0' = 1) Z, ]& ]& X! * $ + # 1) > 0' + $ k) $ $ . # ]& . S$ Q$ Q$ & . > P$ V@ > > ; - ] N$ S$ * $ S$ ; R$ & U@ - P$ S$ ; & %= T@ - | Q$ | ) H= Z! ^ Q$ Z! N$ N$ | N$ ] R$ X@ ^ ^ ; ; 2 2 ~ [ | %= N$ 1 ( X@ ) { 2 [ 2 I= } } 4 d 6 D, Y> Y@ => J] 6- 7 6- Y@ ( 1 } $# 2 d q> 7 ,# q> 3* 0 6 0 a k ( a a k ~# ~# t' 6! e a n ~# c 6 A~ 2, n ]# c !# n K= h n^ L= n Y$ e a |& n^ q n ~# s> b' n p t 1; ,> p s> B m q w Z$ D m 2; G D w p N /# O@ G /# w I %> N O@ n! O@ %> I z M O@ z M M O@ I I I P@ O@ P@ n! O@ I 8* P@ P@ A M M M L S A: L +% L@ E$ L E$ d- L H T T L@ 3d L T L@ 58 E^ E^ V I@ 4# y@ C$ P' @. 4d )= @. H9 4# . E@ Q' +. +. =. =. $% =. =. =. e- ,. +. A$ =. >. A@ $% B$ 5# 5# #. =. !. A@ A@ #. ,. ;. +. =. ;. 5# R (* +. ;. W~ b# l> 0# -. 9# ;. -. +. -. ). {. x@ =% )& ;. b# ). ;' =. &% v@ =. l> =% ;. ,& b# }@.[, b# b# !. {. ;. x@ x@ ~. -. H! v@ {. !. &. 5& {. ;! '. l> p) +. -. &. d# %% -. x@ ,& '. !. x@ ;. x@ ). &. !. x@ '. ~. :. {. -. w$ >& ). -. x@ {. ,& p) &. x@ ). {. #> !. ). A@ !. x@ x@ !. &. =. ). [, $. V> !. a* {. ). )& A@ V ,& ;. 5# =. =. 3^ A@ +. B$ +. ,. !. =. z$ P &. !. &. ). 5# 5# !. W~ @. G@ 7# E@ . 7# 4# .= +. (* C$ C$ +. .= 9* &. #. L@ G$ z@ G@ @. 3& L@ Y C$ 4# 2# S 2# ` Y I@ T L@ H Y `$ ]& g~ q, v, v, x, -! x, s, z, =) v, u, u, s, x, x, s, v, t, s, s, x, A, s, =) }) v, x, s, z, s, s, +' t, s, s, s, r, v, s, v, x, z, [) x, r, q, s, +' s, z~ *) q, q, @] 6' r, s, s, 6' r, q, +' s, r, =) =) v, @] s, 6' q, v, s, q, =) q, r, 6' s, s, q, s, x, s, =) v, 6' s, s, s, x, z, v, x, s, 8' s, x, u, 8' r, # b &# -# } ## 7 ## ( [ +# } ## { ) @# ( X@ ~ ) H= { ", +"s, [: Mp.q, *[ z~ z~ z~ *[ z~ z~ z~ q, z~ z~ z~ z~ ah.vh.z~ Rp.|1 9| *) Pi.e^ 9| <{ 9| <{ *) 9| ], 9| 2! I/.98.I/.<{ 2^ <{ <{ <{ 9| 9| <{ 9| R@ J$ <{ r4..( .( I/ BN 0' I/ ]& L$ 0' I/ I/ 0' 0' [n 0' I/ 0' I/ + + 0' 0' # + 0' 1) ), ;b $ $ V@ > & [* 5_ $ Q$ > ' $ Z, + > T@ ' V@ $ & ]& R- V@ # * . $= & > |* ' ' ^& > > ] | Q$ |* ] & ; S$ & P$ > ^& R$ ' . ~ ] R$ S$ T- N$ .# [ N$ N$ W@ X@ 2 *# 1 | ~ / 4 X@ [ ~ X@ F:.( 2 W@ V~ Z! Z! 5 /& => d $# 1 d &# => 4 &# 6 6 /& 7 Y> } ( k ,# 6 6 V~ $# a Y> a $# fn.!# !# ,# e ~# ~# ,# K/ h L= |& 0 ]c 7 K/ o C; 0 n Y$ _# Y$ a' ,> tA h ,> s> 0- L= a L= 1; 1; 4* u q Y$ ^# m :# t Y$ t m Y$ 2; t m t w p D u G N ^# n G W) 2; w z 2; A O@ T^ M z n! O 8* a- M A A 3# d{ 8* M T O L Q 4# L U T C$ 4# 0* I@ P' C$ t> D$ 58 E^ r4 @. C$ O= G; r5 @. E@ y@ E@ C$ .= +. $% .. z@ .. E@ a* ,. )& e- +. A@ +. 7# A@ ]. =. ;. ;. t( e- $% .. $% ]. >. 4- %. $. >. A@ &. 5# &. =. )& +. . &. ;. =. z@ H! !. *. '. +. .= =. +. x@ 5; =% -. 5# ;. ;. ). {. x@ !. {. ;! &. !. &. A@ A@ !. ;. B$ A@ -. &. A@ ). &. %% d# t@ %% x@ {. &. {. &. V> '. :. x@ gT !. >& ^. *. ,& ). ~. -. x@ ~. {. {. t@ ;& ~. .= x@ x@ &. z@ ~. {. #> !. 5& A@ &. 5# ). ). t@ ). Sp.A@ =. ;. &. !. x@ *. ). %. ,& &. =. x@ =. !. 0# =. !. #> +. A@ ). ;. &. 7# E@ #. E@ G@ L@ )= +. #. @. #. _* $% A@ A@ @. @. A@ &. +. 5# +. .= T E@ .= z$ z@ 7# E@ R z@ R 1# #. 4# 2# D$ K@ H 5# d- H O T R V O= H T L@ I@ P@ ^ J$ 2! =) r, v, 8' @] v, s, x, 8' s, s, t, y, u, z, u, y, t, r, A, A, y, u, s, s, x, z, x, v, 6' s, s, s, A, s, s, x, =) #' v, +' 5' q, q, 6' t, r, x, [) s, s, s, v, @] q, q, ^, 6' v, +' s, v, 6' s, =) s, x, [) s, u, u, s, v, 6' v, s, v, s, v, r, =) z, s, v, r, 6' x, s, s, 8' z, z, x, s, s, x, x, z, v, ], { d a /& } < 6 $# d { < $# < d *# d Z@ / ~ | 1 ># ", +"x, [: +' [: z~ q, q, *[ q, z~ z~ *[ z~ z~ z~ *[ *[ Il.Tp.|1 z~ |1 vh.ah.2! Pi.<{ <{ 9| e^ *) <{ |1 *) )~ )~ 98.<{ <{ J$ 9| <{ 9| <{ <{ I/.<{ J$ R@ J$ L$ I/.R@ 2^ 9| G= I/ R@ L$ J$ L$ I/ 5_ 0' I/ I/ I/ 0' 5_ # # X! [n # # [* k) K$ $ # # # = [* . # R@ R@ S$ > = 0' $= # + ]& 2) Up.& . S$ - & . [* S$ . U@ & & $ & . > | & - $ > ; . | 2 S$ & 2 R$ ; | ] %= U@ b{ & H= ] R$ X@ 2 ^ H= | { / ~ { { & [ [ ( F:.6 D, /& $# 5 *# => } < } /& } <& d V~ 3* V~ < d d i d $# ,# a V) 6 6 [& -> ,# D, $# $# 2d ,# a 7 ,# q> a L= ~# 3] d 0 ~# Y$ n ~# ,# !# 0- n ~# X$ 0 0 L= Y$ n p ,> y2 Y$ s> r t 4* ;) Z$ ^# s> u 2; :# :# n^ ),.G m W) {& :# b' B /# 2; }# #] C x z ^# G :# G G w z G I z M G A M@ 3# a- G O@ z A G A E$ :* z I 1& M H P@ M H L@ L@ C, t> ` K@ O D$ G$ tw Ld J L 3d O= O= E^ tw E^ P 58 I@ O= @. n) V C$ @. E@ @. a* @. r9 +. #. @. B$ W z$ .. ^3 +. L) A@ !& $% =. y@ (* 5# ;. B~ .. A@ =. >. @. !. >. (* =. ,. &. A@ 7# e- =. F, z@ ;. !. ]. %. %. '. %% ,. !. -. -. A@ A@ $. H! A@ R' z@ >. 5# ;. ). !. '. 7; >& =. .. '. x@ A@ &. &. b# b# A@ ;. H! z@ *. {. '. {. ~. !. x@ t@ H! ^. -. 4& {. ;. '. &. ). A@ d* &. =% ). ). {. '. ). -. ). v{ A@ ;! x@ o) ,& A@ !. 0# 6, ). ,& !. ). z@ . )& A@ (. A@ &. p, +. x@ (* ,& l> ,. x@ &. ). [, ;. =. X . l> &. 5# $% %. z@ >. 5# +. =. -. e- Q' &. &. $% =. P @. )= *. #. A@ &. .= +. V> . =. G@ X @. B$ 4- R }; U X 7# C$ H@ R z$ .= D$ D$ J J J L@ D$ L@ m> I@ 4# $> H @. P T G$ C, 3) d- D$ 6 = J$ q, s, v, s, x, s, s, y, u, x, x, y, x, x, u, y, y, y, s, s, v, z, x, s, x, x, }) x, ' @] v, s, u, v, u, z, 8' v, s, s, t, s, v, q, q, s, q, s, [) x, s, 6' q, v, v, 6' q, 6' 8' s, 6' r, v, s, g] =) s, s, s, s, |) s, z, s, s, v, 6' v, v, s, v, s, g] s, ' v, s, v, s, s, s, H) s, z, x, v, x, v, r, V! ## } ,# $# 1 W@ $# b &# 9 $# < *# $# ## 6 ) &# : 1 $# ( ", +"x, Vp.Mp.Mp.[: z~ z~ z~ z~ z~ z~ q, z~ z~ q, *[ z~ 9i.Il.|1 z~ *[ ah.xi.vh.)~ e^ |1 |1 ^, *) 9| <{ *) *) 2! *) 98.<{ J$ 2^ J$ J$ I/.<{ l) ;b <{ V! ], jP 8S L$ BN BN BN ;b ]& I/ L$ L$ I/ X! 5_ ]& I/ ]& ]& 0' + * # 0' = # # # I/ . ]& 0' + + ]& $ . E! # . > V@ $ np.$ V@ + $ Wp.. !, . [* > > Q$ & . . N$ | =' & N$ H= P$ U@ S$ . & ~ 2 > Q$ [* o! & `@ X@ N$ & | ; ] %= ; P$ 2 ) { 2] ^ 7- ## ] 2 ( X@ { ; X@ < 2 N$ ~ ) 2 [ d V~ } ( } ,# a 6- } 6 $# $# } $# ( $# ,# [{ Y> 5 e ,# Y> $# J] 7 J] a Y> ## d a 3* } [{ g 6 ~# 3* a a a ,# 0 s> 2, ~# vk c ]# 0 p ,> r ]# m 1; u h `$ `$ c{ n 2, s> m D p m D q `$ C 4* _# F u Z$ ^# 4* G F {& m :# ^# w K :# t G G m Q@ I '> I 8* 2; }# G I <# I O@ Q@ O@ A 8* =K J M E I :* :* L n> L' a- H$ T L G$ L t> L U Q r! U E$ Y L U H E^ 0* 4# Q d- C$ I@ ={ d- P' P 2# @. X @. . E@ W E@ C$ 7# C$ R C$ G; =. $% a* 8# +. 6# X a* @. E@ a* . =. !. A@ )& +. ;. &. G$ 5; )& z$ z$ -. &. A@ )& .. $% +. =. *. A@ z@ ,. R' A@ z@ {. .= +. ,. F, z@ %. 5# A@ &. A@ ;. !. )& &. {. ^. ;. )& -. A@ ). '. A@ 5; A@ (* *. ). ). >. ^. &. !. v@ ^. t@ ^. x@ '. ). &. &. ). p, &. 5# {. '. x@ ^. *. &. 5# ). -. (* {. b# (* (* C@ v@ %% A@ -. ). ). l> x@ . <; z@ p, !. +. -. ;. x@ 5# +. ,& &. ). A@ !. (* -. x@ D! 5# z@ . A@ A@ I@ +. (* A@ z@ &. !. =. A@ &. .. 5# E@ )& 5# z@ $. +. '. =. +. 5# 5# +. #. B$ }; 7# .= +. L@ 4# E@ X I@ P G@ V L@ J@ @. C$ L@ L@ X I@ T 3# H I@ }; T d- Y $> L H ` I@ P I@ E$ J 5* o! L$ 2! ^, x, v, x, s, s, u, u, z, u, z, s, s, s, z, x, u, x, x, s, u, s, s, v, x, x, v, s, s, v, s, y, s, r, s, s, s, =) s, u, x, v, 8' v, |) r, v, s, 6' v, s, s, s, s, v, +' v, r, x, ' v, s, s, s, z, x, v, v, s, s, v, s, s, s, s, x, v, v, x, s, 8' v, s, s, u, u, H) 7' x, u, s, x, y, x, s, x, H) `, ]& D, ## ## g 9 ## } $# 8 d $# $# &# 2 ( < { ( 9 &# *# *# ", +"s, Vp.+' 8' [: z~ z~ *[ z~ z~ z~ *[ *[ *[ z~ z~ z~ *[ Xp.ah.2! *[ *[ Il.rp.9| e^ 2! xi.$8.*) 9| <{ <{ 9| *) *) 98.9| <{ R@ R@ R@ <{ *) ], 8S ;b R@ ]^ R@ I/.l) ;b G= BN jP l) BN I/ I/ BN BN # [n I/ I/ 0' 0' 0' # K$ 0' Z, # # + L$ + ]& p9 L$ R@ # $= + $ . + > 1* |* o! = - + # # Q$ + o! [* $ $ . ; ; $ & ] . $ N$ $ - - %= > ; > %= U$ Q$ ~ | H= X@ 2 N$ P$ ) U@ ~ xS N$ ~ | X@ / J) ; ] | | N$ X@ 2 ) N$ ~ ~ [ 2 ~ { } } 4 X@ 2 2 W@ W@ ( ## { ,# 6- ( 6 7 b < F:.( d q> J] 6 ,# 7 e Y> q> d ,# ,# $# 9 i ,# !# a' c g ~# 3] ~# ,# o e ~# h a 0- h ># q> r h L= h n |& n m L= |& n n ,> s> q Y$ Z$ n h m `$ y ^# /# {& {& `$ (# ,> V| D 2; t /# }# {& (# C 2; N ^# w N N G A I z O@ Q@ |# M P@ M P@ P@ E$ P@ |# E$ A I 8* I M h] A M 3; A H O@ M@ 3& T O@ E$ d{ H Y o^ G$ L T L@ O= 2# 4# T C$ X O= 4# T L@ J V r9 O= 4d P $> y0 t> E@ . E@ G; . L@ +. E@ )= 5# H@ .. z@ . .. +. )= $% =. +. ,. e- &. >. A@ df e- &. >. ;. !. )& z@ ;. z@ 3^ (* ;. z@ #. 5# )& b# $% z@ !. >. p, 5# +. x@ o) >. !. 5# )& e- ;. ;. 4- 4- ;. ). x@ e- ). -. x@ !. &. !. &. !. ). &. -. F; +. !. *. {. &. &. ). &. !. 0# !. ). -. x@ ,& -. ~. ). =. &. -. {. x@ ). ^. l> G; -. x@ x@ A@ &. C@ A@ &. z$ D! +. =. -. x@ l> >. !. {. C@ 6# 5# $. !. )& x@ z@ !. !. >. (* !. . +. z@ L) &. . )= +. !. A@ 4- A@ !. . 4& B$ @. !. +. O= 5# +. G$ >. +. @. A@ z$ E@ A@ E@ 7# 0* .. 5# G$ I@ 2# S U T B$ P F@ T Y L' P $> $% 4# z$ J P@ H 2# V L@ C$ }; H 2# }; L@ C$ T 2# |# G ) + e^ q, v, =) z, s, x, v, s, s, u, u, y, u, s, s, x, y, u, y, x, x, s, y, s, s, s, v, A, x, t, s, x, s, x, 8' u, Yp.t, t, |) s, x, v, v, =) v, v, =) r, s, 6' v, s, s, x, s, @] u, s, u, y, A, 5' v, s, +' 5' v, 8' 8' s, s, s, s, =) +' v, s, 8' x, s, A, s, v, }) x, r, x, s, s, q, x, s, u, u, z, s, 6' Q$ } } : 7 -# } 7 :& $# : ## [ D, W@ ~ X@ 1 ## ~ *# ) < ", +"}) Vp.+' Mp.q, *[ z~ z~ z~ z~ *[ z~ *[ *[ *[ *[ *[ z~ z~ 2! vh.z~ z~ z~ xi.9| e^ <{ $8.vh.9| 9| <{ 9| 9| 9| 9| <{ 9| <{ R@ .( J$ <{ <{ *) <{ L$ I/.R@ R@ <{ ;b ;b 2^ 2^ J$ I/ I/ L$ BN 0' G= R@ 0' I/ BN I/ 0' 5_ + # 0' 0' $ # # 5_ # + + + # Q$ 0' 2) # ]& . . & +|.& [* ' S$ > > $ $ . $= . M$ > S$ U@ S$ ] S$ $ ' 1* $= P$ ~ & H= U@ | ~ . ; | R$ ; ] & ; P$ N$ & & ) 2 & ] T- { | ) Z! =' 5 { { 1 4 | Z! < 2 2 < ## 2 2 X@ Y@ 'W ) [ I= 2 2 3* J= a } } $# 6 V$ &# ( /& } ( 3] ( 7 6 q> 6 3] 5 K/ $# Y> 3* a L= $# 3* ~# e ~# z: n ,# [& 0 a h L= ~# L= 6! c6 0 n Y$ v L= (# Y$ Vj }& L= s> u @= 4* 2; q n /# `$ m y ^# p t m m @= h % ^# Z$ % G F= w K D 4* 4* M= m M= G #| O@ #| z I O@ I A z A M @% z A J I H$ z M G D P@ O@ E$ J E$ d- T H H J H 3# M O Oz A L@ T J G$ 3d T T T L@ P 0* O= T t> L@ C$ ={ y@ }; H V X . 4# a* )= .. W d- d- G$ R V .. _* . y@ 5# E@ $% $% >. )= 5# &. Q' )& .. A@ &. &. A@ z@ $% -. z$ .. $% )& #. 5# (* a# ;. )& ;. z@ $% z@ &. &. $. '. ). ;. p, 4) '. &. F, !. 5# ). =. &. ,. !. .= =. A@ A@ .= z@ &. x@ !. ;. -. '. &. b# &. ). .. &. x@ x@ =. !. %% A@ T' ). &. z@ &. %% -. l> ,& 6, l> ). x@ E~ l> (* e- &. l> ,& -. !. 4- x@ !. l> =. =. d# z@ 5# 7# A$ =. ). &. 0# C$ l> !. =. 5# &. ,. @. z@ z@ A@ .= ,. ). &. ;. C@ -. 5# A@ h~ 5# . $% B$ +. =. 5# =. .= R .= )& G@ C$ 5# }; #. 4# .. E@ @. C$ E@ y@ 5# @. X X 4# D$ V . E@ Z L@ L@ R #. 7# .= H H D$ U L@ T T H H P T T P H Z P@ S [ X! *) @] s, s, }) }) y, r, H) u, y, x, y, v, x, u, u, y, z, x, v, y, u, y, z, x, H) s, u, s, x, x, x, s, v, x, s, +' x, }) s, =) s, }) x, s, v, r, v, t, +' 6' v, s, s, s, v, H) r, s, s, x, 8' x, u, s, s, +' x, s, s, u, x, s, x, 8' y: t, =) s, 7' s, s, s, A, s, y, s, z, v, s, v, +' r, u, x, s, s, q, ~ [ 8 $# ) } { } ~ 2 ( $# J= ^ ;# 1 +# { 2 | 2 U@ N$ ", +"x, *[ Mp.Mp.Mp.[: 5o.q, z~ *[ *[ q, z~ *[ *[ *[ z~ *[ z~ *[ vh.|1 *[ *[ 98.9| e^ )~ 9| $8.|1 9| *) 9| *) I/.*) *) 9| <{ J$ J$ ], 8S 8S <{ J$ L$ l) R@ J$ <{ k3 ;b *) 2! 2^ J$ L$ BN BN #S I/ BN 0' 0' L$ L$ p9 L$ = # ]& 0' 0' # + # ]& V@ + 2) 2) # Z, $ # $ + [* - & =' . > $ p9 J$ $= S$ P$ > # $ . > . . O$ R$ ] ]& # # > U@ S$ Q$ S$ T- ; S$ & ; ; U$ ; ~ | U@ N$ 2] ~ ; ~ 2] Z! ) | N$ ~ X@ 05 ## X@ ~ 2 } ## ; 2 } Z! 2 ) ( 7- 8- } 4 } $# } { | d 1 6 W@ D, 6 5 } ,# ,# d d '# V~ e 6 a 6 d a <& 7 4 q> a a {# X$ c {# Y> ~# ~# 0- t' M' ~# 2* d a o L= ~# f c n ,> h K] _# r n c X$ K/ ,> ,> 1; :# D Y$ #] :# 1; t Y$ z: 0- /# b' {& 2; F= G D 4* ^# [# 2; K D #| m /# w N w w ^# `$ I A I 1& x w F= E; A M N G z E$ z P@ I w N P@ o> d{ J J E$ C, |# L A P@ A H$ T J Y T T H T E$ L L T H 4# T J T H L@ 4# L@ 4# O= X @. n) J R @. 4# #. Q' X E@ al y@ ,= X $% ,. 4# z$ >. A@ =. @. . >. =. . &. z$ &. .= . E@ 4# +. F, %. $% A@ &. !& -. =. =. z@ A@ (* ;. R z$ ,= !. $% V> &. V -. R' F, !. +. =. A@ ). x@ -. A@ )& ;. ). +. !. =. ;. x@ ). ;. ). !. 6, ). !. 5# !. p) x@ 8, &. '. &. ). !. '. A@ ^. -. ). '. ,& ,& =. 4- &. 5# &. +. ,. $% '. ;! &. x@ {. x@ ). z@ -. p, &. =. Zp.!. z$ &. 4- =. .= ). ,. 6# &. &. o) A@ ). L) $% F, z@ z@ .. +. v{ B@ A@ E@ A@ +. A@ +. 4- 4) 4& 5# I@ E@ .= V C$ +. W ,. .= I@ . . 9* 5# B$ E@ +. E@ 5# X 4# V 4# O T 2# 2# .= #. #. E@ H P L@ E$ H P O H X> H L@ J +% H H Y L 3; :* P@ S e = L$ q, v, v, s, s, s, =) s, x, y, x, y, x, u, u, v, x, v, x, s, x, s, u, y, y: s, r, x, t, =) H) A, u, x, s, s, s, x, s, s, s, v, t, v, x, x, u, y, x, s, x, s, x, s, x, r, =) s, %{ x, u, v, s, A, v, 5' s, v, @] v, v, s, r, v, v, s, s, v, x, x, x, x, s, v, v, s, u, u, s, u, u, s, =) u, v, s, s, *) ## $# ,# e } 8 : $# ) ## ) ( X@ X@ < { X@ Z@ - *# *# ~ ~ ", +"x, *[ Mp.+' +' 8' 6' q, q, z~ *[ *[ *[ z~ *[ *[ z~ *[ z~ z~ ql.vh.z~ z~ *) 9| ^, e^ *) *) xi.<{ *) <{ 9| <{ 9| 9| 9| <{ *) 9| ^, <{ <{ J$ J$ I/.<{ R@ 2^ L$ ;b L$ L$ jP I/ G= L$ ]^ R@ ]& 0' L$ L$ 0' 0' ]& 1) = 0' # + 5_ 0' + K$ # + # % . $ % V@ Z, = ]& Q$ V@ [* > $ $ 5_ > T@ 0' ]& [* ' $= S$ U@ S$ # . - > & U$ U@ H= U@ ] $ > - %= . | ~ ~ U@ U@ ^ & H= %= & Q$ Z! H= ; ] ~ %= ; U@ 7- ~ | ] ; N$ | ~ ) 2 Z! ~ N$ *# ^ %= W@ } 2 T- < 7- ) ## ~ 5 } d ( Y@ &# 3* k 7- : 8 6 ( k 2* Y@ d D, Y@ a' 6 e k a *# 6 0 ,# ,# L= e c k 7 0 L= L= L= z: L= h 0- e K/ L= g `$ L= h ~# {# ,> q s> L= c c{ q ,> m t p c Y$ q `$ t F m Q{ q ]# 2; w G {& N C 2; 2; % Y$ :# :# )> z '. A@ *. 5# W> v@ 5# -. '. -. #> A@ ). -. ). A@ z@ &. >. z@ !. 5# &. z@ z@ !. 5# &. 5# )= z@ -. -. ). z@ ,& v{ z@ &. z@ @. &. E@ L) l> $% A@ -. E@ =. &. 5# 7# -. 4) V E@ . l> z@ E@ )= s! O= z@ !> V V +. G@ 7# O= E@ #. G@ 1# 4# .= @. O= G$ Y 2# +. E$ P V 2# z$ X H V D$ 2# E$ J 2# Q P@ O @. C$ J O S H T J P@ |# S _# $ ;b q, %{ v, s, s, s, A, u, s, y, y, z, y, y, y, y, y, x, v, s, s, u, x, y, y, u, u, v, z, s, u, x, s, u, x, 7' g] s, s, v, s, 6' x, s, x, s, x, s, s, s, s, 6' r, s, 7' v, u, u, =) s, v, 6' x, s, x, q, s, s, s, x, x, s, x, H) =) v, x, x, H) x, s, s, s, s, 8' s, s, y, x, u, x, x, t, x, x, u, s, ~, { { /& { ## ( 8- $# { ) &# d d [ *# 2 ## ) %= 2 ~ ) X@ ", +"w, z~ Vp.Mp.Mp.Mp.Op.*[ z~ q, q, z~ q, z~ z~ z~ *[ z~ z~ *[ 2! `p.*[ *[ )~ 9| *) e^ <{ |1 $8.2! *) *) 9| <{ 9| <{ 9| <{ <{ 9| 2^ <{ <{ (c.<{ <{ <{ J$ <{ L$ ;b l) p9 I/ I/ R@ 0' R@ L$ 0' 0' 0' R@ I/ I/ <{ + G= 0' Z, # 5_ [n = # V@ + + # * # * # [* ' $ . # Z, ]& V@ $= ' $ $= $ $ }, $= 5_ ' $ ; & & . $= & A; - ; *' %= N$ S$ U@ g{.U$ ; ; & U@ S$ T- U@ Q$ ! ^ ~ 2 ; ] | ~ X@ ; Z! 4 X@ I= 2 | { 4 [ ) Z! 2 2 P$ N$ | | { ( { 7- I= } 1 | { d 6 : b 3* 6 ,# V) ># $# Y@ 6 ( $# a Y@ 7 k a 3] 3* q> vk d 7 / {# 6! 8 ># W$ 6! d 9 6! {# 6 } ~# L= 0- Q{ 0 h ,> e h 3* ;= n K/ L= v s L= `$ Y$ p r Y$ % ^# `$ ,! n c ,> w `$ % 1, 4* G F :# :# Y$ {& ^# ^# u 4* F 1; p w w w G w {& B W) {& {& q! I G G 1& %> M G D z M I A Q@ I A t> O O@ 3& H M :* E$ M K O@ I J Y L' L O@ L L@ L T X L@ |# C$ L@ H d- J L@ E$ C$ L T C$ d- R H T )= X U )= l1 .. .. 7# 4; @. 0* #. X y@ C$ i~ L@ $% E@ .. E@ z@ 7# G@ #. 6# B$ ). !. G@ .= #. V A@ 5# +. z@ >. &. &. $% (* C$ E@ E@ z@ A@ E@ ,. 5# .= &. >. )& $% 5# )& *. )& %. )= z@ 0# ~. b# $% 5# '. >. =. ;. -. '. ;. !. ,. !. A@ (* -. (* %% =. !. ;. .= z@ 5# z$ &. &. A@ ,= -. {. ;! &. C@ z@ ). !. &. &. z$ e- -. +. x@ A@ .. ). A@ ;. *. z@ +. 5# z@ L) &. &. z@ A@ 5# *. E@ &. &. =. -. &. E@ )& !. 5# ;. *. 5# .. 7# +. z@ 5# +. 7# C$ E@ 5# .= (* (* E@ .= ;. +. z@ z$ #. C$ G@ L@ V L@ @. T 2# X L@ U G@ I@ L@ 2# X J T T L@ X> P V 7# G@ H E$ T H H Y h] L' L@ H 8* O@ U H A H E$ @% K@ G . *) ^, q, s, s, x, x, s, u, u, y, y, t, y, y, x, x, s, x, x, x, u, y, x, u, y, x, u, u, u, r, A, u, x, v, s, z, t, s, x, q, +' s, r, s, v, v, x, |) x, s, s, +' x, x, s, x, u, r, s, [) x, v, s, s, s, v, z, x, y, u, s, x, x, s, s, v, s, x, x, s, s, s, s, s, s, s, s, y, t, -! }) x, x, u, x, [) =) $ &# } 6 ~ [ d < -> : ## -# $# $# { } ( 2 { ) { ~ U@ ~ ", +"u, [: z~ Mp.+' Mp.[: [) *[ z~ z~ q, z~ z~ z~ *[ *[ *[ z~ z~ ql.vh.z~ *[ e^ *) 98.)~ )~ |1 9| 98.e^ 2! <{ 9| <{ <{ <{ 9| 9| 9| ]^ J$ jP <{ <{ ], J$ J$ <{ ]& L$ k3 J$ R@ I/ G= L$ L$ R@ L$ p9 I/ ]^ I/ 0' L$ ]& 0' 0' + # + L$ T*.* V@ % + * # # $ + > [* [* + # $= [* > $= S$ = $= S$ =' . [* $ $ . |* - $ S$ ; [* S$ ^& - U@ H= N$ ; U$ $= U@ > H= - ^ $ R$ ; P$ ' ; N$ *' ^ . ] & { $ H= { W@ ; X@ 2 Z@ H= W@ { 7- { ^ | *# { *# 4 / } } X@ 4 X@ } $# 6 G9 ) 6 ,# } ( D, Y@ 8- ( Y> 6 4 d a 7 6! 6- 6 ,# a k Y> a 9 ># 6 6 ~# a } 3] a n !# 0 6 e ># W$ $# c e 6! 7 e a ;= 0 -) r n Z$ 0- s> `$ L= n c 7 r |& ,> Y$ p r 2, :# D ~# s> h Z$ Z$ m V| :# t D :# G ^# C Y$ B Z$ 4* w ^# /# w w D G z z I I I ^# N I N A F= x A P@ H$ z z P@ S z O@ M T 3# L' E$ H o> O E$ M |# P@ J U^ M P@ O 3) U Q P d- W @. L L@ D$ 3# J L@ P I@ d- U @. E@ )= @. I@ d- Y 3) I@ I@ L@ y@ X U G$ L@ L@ @. P +. . E@ 4# Q G@ z@ W Z@.$% y@ +. @. W H@ $% &. H@ )& 5# +. +. z@ z@ y@ =. $% A@ z@ -. z$ {. 5# >. z$ L@ z@ &. z$ @. =. b# 8# ). &. =. -. )& =. G@ &. !. ). &. ;. &. [, ). z@ A@ -. (* -. -. 7# ). B$ ,= z@ =. D@ A@ A@ &. z@ B$ A@ &. &. +. z@ =. -. $% b# ;. e- !. ,& x@ -. &. ,& +. A@ d# l> .. -. &. z@ &. z@ . A@ A$ z@ . A@ C@ z@ A@ &. (* !> 8# z@ (* E@ O= =. . O= +. A$ Q' R .. )= z@ A@ E@ 4# L@ 4# C$ L #. @. V G$ 4# 2# E@ V 4# D$ T ` L@ #. D$ Y H }; S L H 1# G@ T S L@ S L@ ` Y H S O J H H L ` J P@ H I K P@ M J C 4 L$ ], 5' 8' 8' s, s, v, x, z, y, u, u, y, x, s, x, u, s, x, z, y, z, u, x, u, x, s, x, s, v, z, 8' s, x, u, x, v, s, z, s, u, A, v, s, s, u, t, x, A, s, s, x, s, s, A, s, s, x, x, s, s, #' s, u, u, z, z, s, y, x, s, v, t, x, t, u, s, x, u, u, s, s, s, v, s, s, s, y, x, x, x, z, s, z, x, +' r, ; < $# 9 $# 1 W@ ) $# ( *# } } 6 ~ } N$ } { { < 2 { ## ", +"u, [: *[ z~ +' Mp.Mp.Mp.z~ q, q, z~ *[ *[ z~ rl.*[ z~ z~ z~ *[ 9i.vh.z~ 5o.z~ q, 2! Pi.*) 2! xi.|1 <{ |1 9| 9| <{ 9| *) <{ 9| 9| J$ J$ ], J$ ]^ R@ (}.s' R@ R@ L$ <{ 9| I/ I/ L$ 0' I/ L$ I/ #S R@ G= 0' I/ 0' 0' 0' 5_ # + ]& [n + V@ K$ # Z, !, # * ]& + + + $ . $ # + Q$ > = # > = . V@ = . ]& . R- = P$ > ; . ; > & Q$ ; M$ > $= . . . ' ~ $= %= > ; %= | ; S$ %= & N$ U@ 2 H= ' Z! ) 2 X@ ) X@ ~ ] R$ U$ 2 ~ T- & ## X@ X@ | / [ } { } /& [ } 1 } ## 1 2 $# d d } } } ~ $# D, q> &# 6- Y> 6 $# 5 { B; ,# 6 $# Y> : ~# 0 1 6- 0 ~# 0 a ,# b V) Vj e ]# 6 j tA r i L= a c h 0 o c |& q s> ~# ;= t V| p u ,> t 1; p q h n^ r 4* t :# n p m m ^# D 1; F= t D z w p ^# ^# :# 2; A I w :# t 2; A A I Q@ M o> P@ N@ z I O@ I P@ z K A O@ 3; Q@ n! z E$ d- E$ M@ I P@ I O@ A K@ H$ Q@ P@ L H@ Q G$ I@ T T L@ C$ d{ +% 1# T Q Y H T L L@ T G$ W W G$ ` L@ I@ I@ O= @. 4# 3) T L@ 4# I@ C$ +. $% #. L@ X G@ E@ O= A@ $% @. .. .= +. G@ H@ >. $% &. ;. 5# A@ *. V> A@ =. E@ . +. G@ +. 5# +. ;. &. +. 6# .. =. A@ A@ z@ =. e- z@ $% v{ x@ 6# 5# )& &. z@ F@ .. +. D! x@ (* ). 5# &. ,& ,& F, &. @. .. -. z$ F@ (* (* &. -. z@ +. z@ !. 5# z$ &. !. -. l> z@ e- (* A@ &. &. ,. x@ -. @. #. $% W -. &. )& 5# 8# 5# 5# @. 5# .. 4- .= z@ G@ 5# x@ .= 7# C$ B~ z$ @. >. 0# C$ @. F@ .. ). .= .. T 2# E@ W X Y @. T I@ W L@ L@ L@ V $% )= G$ T L@ X P 9* O T T ` P@ L' G$ Y ` T H >) L L@ S J H H O O 4; O D$ T A P@ H$ 3# P@ #= L K@ #= K= $ *) 5' s, 6' s, +' =) u, y, y, y, x, u, y, u, s, u, x, s, s, u, t, y, z, y, s, u, v, x, s, x, z, x, y, u, x, |) x, y, s, x, z, H) s, x, g] s, s, s, s, x, s, y, z, s, z, v, u, u, x, u, x, s, s, s, v, s, z, u, v, u, 8' s, x, u, z, v, u, y, s, s, s, s, s, u, v, x, y, z, u, x, u, y, y, x, s, [: ;# } d $# 7 7 &# } a } ( [& < 2 | } } 4 ) ( | ; ] ] ", +"y, +' 6' z~ [: Mp.+' Mp.z~ q, 6' z~ z~ q, z~ *[ z~ *[ *[ *[ z~ *[ rp.9i.*[ |1 |1 *) )~ Pi.*) 2! |1 Pi.9| 9| 9| 9| 9| 9| 9| <{ J$ R@ R@ J$ $8.<{ ]^ ;b <{ I/.L$ jP <{ <{ L$ L$ I/ 0' I/ I/ I/ jP BN L$ I/ I/ I/ L$ 0' I/ 5_ = ]& [n 0' # # K$ L$ + # $ ]& ]& # $ o! # T@ = R@ > = 0' > > > M$ [* ]& ; }* ] ~;.- . U@ > S$ H= $ S$ - ; P$ * > H= . T- R$ P$ ; & z] (& ; R$ ~;.U$ U@ ] ) { ] Q$ ~ ~ { O$ *# { 2 { { X@ { ~ ] ) [ 2 2 { | /& 2 8- d *# { ) X@ ~ } d Y@ $# 2d ># 1 [{ d } { ># 8 a V) 6- $# ,# Y@ d Y@ ,# ( a d b 0 ( $# i k a n j c h L= !# ~# L= c 0 h c ~# n ]c h ]c L= [& {# h r ~# q n 1; q h t (# _# L= q :# s> r t Z$ D m ^# O' y p s> m m D 1; 2; ^# ^# G `$ G 4* G w D t N w I z . @. z@ ,. 5# =. z@ +. E@ =. 5# +. =. E@ [, L) 5# X $% &. G! z@ +. .= #. 5# E@ ,. (* z@ @. W~ 8# $% !. +. 5# l> 6, ;! l> '. G! 5# .= ). z@ {. A@ #. -. (* -. 6, +. -. -. E@ #. 6# .. A@ .= E@ ;. V> -. l> -. E@ $% .= z@ 4# 7# !. ). . -. *. ). (* 5# .. E@ B$ z@ .= z$ #. a* V E@ .= E@ .= $% G@ 7# @. 2# @. z@ z@ F@ L V .= L@ I@ Y T E@ +. 7# W C$ V D$ H R ` D$ ` Y L@ T T U H D$ H 3& 2# H@ J L@ H@ J T E$ J O ` Q@ U Q@ J K@ P@ J z E$ E$ 3# M ^# > ], ], r, r, s, s, s, z, y, s, v, s, y, u, y, x, u, y, z, x, y, x, x, z, z, x, x, s, u, z, t, x, s, v, =) 7' s, s, y, s, x, u, H) t, x, v, v, x, +' r, y, s, u, x, u, x, s, v, v, u, s, v, x, 7' s, x, u, s, v, [) s, s, u, u, y, x, u, x, u, s, x, y, s, y, u, s, s, s, u, u, =) u, s, s, x, X( *) ## %# : b &# $# } 9 $# : < < @# ^ { { ^ N$ ^ 2 W@ ; & P$ ", +"u, z~ z~ q, Op.+' Mp.Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ *[ *[ Il.ah.z~ ql.|1 9i.*) rl.*) z~ 9i.|1 2! 9| 9| <{ *) 9| <{ 9| ], <{ <{ <{ <{ 2^ J$ 8S <{ <{ J$ BN l) <{ 2^ J$ R@ I/ 0' J$ ^, J$ I/ I/ L$ 0' 0' .( 0' 0' 0' Z, # + 0' $ # }, Gc ]& # $ o! R@ R@ + $ $ $ T@ G= ]& + V@ L$ V@ - = . # $ 0' V@ 1* > 05 H= > P$ & . - ; & - & N$ > N$ U$ 2) - U@ > Q$ ; N$ Z! ^ ; N$ ; ] W@ 2 ~ N$ ' | [ 2 N$ ) *# ( d d ~ 7- [ ~ | / [ X@ < { X@ /& X@ 2 2 < ~ 2 { { ,# 7 &# D, [ { d } 6 { ( } 7 d d 7 d $# ( } 0 /& d k a d {;.a ,# ,# i c ,# ,# ~# 0 e 2* k Q{ 0- A~ K= e h e a ~# {# o L= ~# Z$ r n `$ r `$ `$ Y$ |& p w % _# Y$ % c 2, r Z$ % 1; (# /# m F /# % C ^# 2, w ~& % t /# m G G 4* G w C x G O@ I z W) Q@ O@ D I C z w z M K P@ E$ E$ M A h] J I$ h] L' E$ 1& L M N ` L C$ L H |# d- L@ S H d{ P' L@ Y 4# O= V 7# D$ P@ O= R L@ I@ L J 4# 7# .. #. #. J 4# B$ P d- G$ I@ a* B$ C$ .. z@ 4& a* e- E@ E@ ,= P 5# >. $% . E@ +. =. A@ 7# . +. . @. +. a* #. +. 7# . 5# &. >. 5# 4# 5# !. ,. A@ .= A@ )& 4& 5# =. (* =. &. ). z@ &. X .= ). +. )= z$ A@ . 4& &. b# p) -. 0# z@ .= &. V> z@ ;. 5# z@ x@ {. 5# A@ ;. .= G! A@ d# *. +. .= @. X z@ G@ .= <; 5# +. $% A@ 5# +. ,= z$ A@ ,= z@ O= +. V =. .= A@ +. (* E@ y@ z$ E@ .= V A@ z@ z@ z$ Q' 5# )= 7# 5# .. P +. X X . B$ H@ S C$ H H E$ G@ H T J J ` L@ H U T H@ P L@ O L@ 3# H L@ +% K@ J L@ X L@ ` E$ J ` ` 4# C$ J H J 3& H M@ |# o> A H ` H E$ P@ K@ y N$ V! *) %{ [) r, s, s, u, y, x, s, s, y, u, y, x, y, y, A, s, y, v, =) s, s, s, u, s, s, x, x, u, s, s, v, s, s, x, y, x, s, s, x, u, y, x, v, s, +' v, z, u, u, v, x, 8' s, s, s, u, s, x, y, s, x, v, x, s, ' x, s, u, u, x, t, x, y, y, x, x, H) s, x, x, s, u, v, u, u, u, u, x, x, u, t, 6' V! } : [ +# { ## } [ ) } | [ $# { < ) { U$ H= { ~ { 2 W@ ", +"y, Mp.Mp.6' z~ +' z~ [: @] Np.z~ *[ z~ z~ z~ *[ z~ *[ z~ z~ z~ rl.2! vh.z~ z~ 9i.|1 $8.|1 )~ |1 ah.$8.e^ 9| 9| *) 2! ^, <{ 9| 9| 9| 2^ ], 9| <{ R@ .( J$ ;b J$ R@ R@ J$ <{ G= BN J$ L$ ], BN R@ 0' G= J$ BN 0' 0' L$ [n 0' 0' # # ]& [n # # * ]& # # + R@ + # $ V@ . $ . T@ & $ Z, ; o! $ # > 0' = - + # Q$ > . . . - . $ U$ H= & & | P$ & S$ ; U@ S$ %= U$ Q$ . . > & ~ ] ] | ;# | 8- /& | Q$ | %= X@ ) } ## 7- 1 ) ;# { { J) | } X@ ;# /& ( *# /& X@ 7- 1 { 1 $# J= <& 1 [ I= 2 ## /& ( $# a } Y> ~# 7 6 [ 5 Y> } $# 7- 9 6 d j a 0 0 e $# Y> X$ ]# 0 $# a a' c A~ s> c n L= a n 0 r `$ L= 2, ^# K/ ]# h q `$ _# h }& Y$ @= h D % ^# b' 4* :# ;= /# w 4* :# /# G m D D Y$ /# {& w ^# `$ Q(.z N= w I m G G C /# I G /# z I M N I m O@ K@ z I z |# U T P@ P@ I H A H |# M T H @% d- J |# J J H P@ T J C, E$ H t> C, 3) L T L I@ 3) L@ U L@ C$ P X y@ Q' X X W H Y C$ 2# 7# X X @. R X a* P .= A@ @. E@ O= e- .. . +. .. +. P 5# . +. @. y@ e- . 7# A@ >. L@ 7# A@ +. .= . W ,= +. E@ F@ @. 5# G@ A$ >. e- +. =. =. $. {. 4) .= A@ @. E@ =. 4& H@ Q' .= !. 5# ,= !. -. x@ &. b# {. z@ E@ E@ A@ &. -. $% -. z@ A@ E@ .= A@ . (* E@ A@ 4& E@ ,= F@ d- .= -. *. A@ W G@ 5# R z$ W ,= .= G@ T C$ &. z@ V E@ D$ 7# +. 5# &. E@ E@ .= B$ V 4# =. .= n) V .= y@ +. 4- C$ C$ X X C$ z$ $% P L@ L@ U Y H d- L@ +% L@ V T P@ 3^ X Z 1# L@ Y T ` H L@ U @. 4# #% Y S Y U M@ O 3# A :* H K@ E$ H$ J 1& P@ ` Q@ a- H M P@ 1& ^# 1 L$ <{ ^, [) s, H) v, u, x, u, x, u, y, x, s, u, u, y, x, x, y, s, s, y, x, z, u, x, u, s, x, x, s, s, ' s, s, z, u, x, u, =) z, s, u, x, u, x, s, s, s, x, s, s, u, s, x, z, x, A, x, x, u, y, u, s, H) u, x, s, s, z, }) s, z, z, z, y, u, s, x, s, u, x, z, y, y, x, x, x, y, u, y, y, s, 6' R@ [ b ## ( < } { ( } ## ~ ~ d Y@ < { 8- ) U@ [ ) { [ [ ", +"y, 8' Mp.6' q, +' 6' +' +' z~ z~ z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ ah.vh.ql.z~ 2! xi.2! )~ *) 9| xi.*) 9| <{ *) |1 *) <{ 9| 9| <{ 2^ J$ <{ <{ <{ R@ J$ ;b <{ ]^ ]^ ;b <{ 2^ J$ 9| <{ I/ k3 R@ I/ I/ J$ ]^ I/ BN L$ + 0' [n # # + 0' 5_ # # 0' V@ G= 5_ + <{ k) ]& 0' ]& # . S$ # Q$ ' $ . . ]& = # 0' ]& ; > > V@ > = # *' +i.$= k) S$ | %= H= N$ ; & & A; X@ > N$ | o! o! ] & U@ Q$ ' U$ | ) Z! H= P$ %# N$ ; ] X@ xS %# ! | { | U@ X@ W@ 4 7- N$ 7- g{.2 V~ [ ( } / } / 7- 1 &# } ## d 7- 2 } } ## Y> &# } a $# 1 J= a /& [ } 9 ( 5 3* ~# ~# g 7 e 7 ,# a 6 2* k k 0 a' 0 ~# 6 h [{ c :& m r n K= r 0 `$ n t' e ~# h t % ~# p t 9- _# `$ Q{ `$ C; m r :# 2; ^# C B F m w Z$ D w D /# z ^# N 2; m @= 2; G :# I I b' 1; Q@ N= z N /# K A 1& M ~& K@ H$ @% 3; E; I |# S I P@ K@ O@ B A |# T S I L' E$ P@ J J P@ L H M 5, C$ D$ O@ 3# |# I@ L@ L@ J P G$ P' V C$ X C$ O= X W I@ ` V Y X L@ 3& X $% W H 4# C$ G$ $% C$ E@ e- @. z@ =. .= .. X X z$ C$ $% ,= P 5# A@ .= X +. H 4# .= X E@ . C$ G$ @. =. E@ +. &. #. +. #. E@ -. +. #. .= E@ 5# !. B$ z@ +. @. 4& .. z@ .= .= *. .= &. B$ -. 4) z$ z@ +. A@ D! 4- . F@ B$ z@ 5# {. &. O= X z$ E@ z@ *. z@ #% @. (* $> .= .= 5# &. V E@ +. z@ .= E@ Q' H C$ 4# X ). B$ E@ (* 0* G$ G@ 5# R .= 5# $% R X P A@ C$ 4# @. @. T L@ V P 2# H P I@ .= P E@ L' C$ T d- L@ H T H Ld H@ H L J P P H I P@ J L@ 2# L@ P@ H O H L@ L@ 1# I@ L' ` M S L@ P@ E$ O@ K@ 3# Q@ E$ P@ S M P@ A |# c- x :& $ <{ 5' g] H) v, s, u, s, s, v, v, z, }) s, u, z, x, y, y, y, u, u, u, v, s, 8' s, u, y, z, s, x, x, u, x, s, s, v, s, s, v, x, s, A, v, v, x, v, u, v, s, s, 8' x, s, s, s, x, x, z, y, x, x, y, y, x, u, x, x, y, y, u, s, 8' s, z, y, y, y, t, H) s, v, 8' y, y, x, x, y, u, x, z, z, x, s, ] } X@ / $# [ [ X@ < == < } *# ^ 2 { [ ( / [ ~ N$ | ( ) ", +"y, +' +' q, z~ q, +' [: +' [) [) z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ z~ *[ vh.rp.*[ *[ 2! xi.*) 9i.9| vh.$8.9| ], 9| 2! *) *) 9| *) I/.J$ R@ R@ <{ <{ <{ ], ;b <{ ]^ *) 9| I/.<{ R@ *) *) L$ J$ ]^ 2^ L$ ]& I/ 0' I/ 0' R@ I/ 0' + # K$ 0' 0' + * $ 5_ J$ {c Z, + E! V@ + I/ $ + $ [* > . L$ > > > + V@ . $ + ; U@ H= . . U@ $ > - . 05 Q$ =' op.%= %= Q$ $ > ^ S$ N$ R$ ! | 2 ; & X@ N$ R$ . . %= N$ ; { H= | - H= X@ ^ ] S$ *# ) R$ 2 ## ) 5 N$ { } [ ) | d ## # ) 1 1 6 k J= ) Y> &# 2 ( 4 } ( d $# ,# `@.1 ,# 0 ~# 1 6 e b N' q> 6 2d !# } } d 3] o ~# ]# {# x0 o 0 ~# t' k j c 0- i ~# L= e n a K/ p h L= p ~# ~# Y$ p ~# 2, 1; :# 2, 4* s> r {# ,> :# m 2; {& y o _# `$ m C G 4* q % z ^# D w N ^# C; /# D w G w w I N F= G z n! {& z z a- w P@ I :# O@ H S z K@ 1& E$ M I t> G$ |# J J 3# J J 1& Y L O L@ C$ P@ T d- 3# ` L@ T T |# L@ I@ 2# H$ I@ H I@ I@ J T S H T L@ Q L @. Q P #. I@ E@ T #. G$ L@ V P +. I@ z$ E@ I@ B$ )& 5# G@ 5# 5# 9* H 7# 2# H G$ 5# z$ L@ .. C$ P *. +. W .= 5# E@ ,. $% V z; P @. D@ V 5# +. +. ,. C$ H@ 9* G@ O= =. .= r4 A@ A@ 6# A@ .= (* E@ .. z$ =. E@ 6# &. [; )= 5# z$ $% @. z@ 4# @. z@ P .= ,= F@ 5# (* 5# 5# G@ 5# 5# e- 5# .= (* +. . 5# )& 5# O= E@ P 5# 5# +. E@ 7# X W V +. $% H@ @. 4# R $% R K@ D$ C$ C$ 2# H T I@ }; }; }; C, }; 1# &' 4# T J D$ 3# H +% P@ 1# H@ C$ 3; X o> T S P U E$ P@ ` ` P@ L@ J L |; L@ J Y ` K@ 3# M J |# 3# S K@ M M@ C, L J A K M P@ M d{ F= `$ = L$ ^, g] g] s, u, y, s, s, z, u, y, u, u, y, u, s, y, y, u, y, x, s, u, x, x, x, x, y, y, s, s, u, x, z, y, u, x, y, 6' =) s, 8' u, s, v, u, s, u, s, x, x, x, x, x, x, s, x, z, y, y, u, 7' y, z, y, x, t, x, y, s, s, s, s, s, x, x, y, x, v, s, u, v, 8' u, z, s, v, x, y, z, t, x, t, 6' ~ } $# Y@ $# [ *# U$ : 2 2 { 2 < ) X@ } | 2 ) 2 | U@ | ~ ", +"y, Mp.+' v, 6' q, [: +' Mp.v, z~ z~ 6' [: z~ z~ z~ z~ z~ z~ q, *[ *[ *[ 9i.vh.*[ 5o.2! 98.e^ )~ 8S vh.|1 e^ *) 9| *) *) *) 9| 9| <{ <{ <{ 2^ <{ <{ <{ 2^ $8.<{ <{ 2^ BN <{ ;b J$ *) *) jP I/ L$ I/ 0' 0' G= L$ 0' I/ R@ 0' 0' 0' # * 0' J$ = * dp.]& <{ # L$ + # & k) L$ .( > + . > V@ M$ Z, > & ]& ]& # *' [* & S$ > !, . S$ & ; |* - $ S$ N$ ; U@ S$ & > ; U@ ; |* ; %= ] ~ ~ X@ X@ H= | U@ ; R$ & *' ~ ) | X@ N$ H= 2 { ) X@ N$ | 2 N$ ~ 2 | W@ 7- d 1 X@ d 5 &# / ( $# 4 } } a 5 D, d } } 7 ( J] &# 6 I= 6 a ,# a &# 8 6 d d ~# $# ,# Y> a ~# 9 a Y> a c 6! ,# L= c 3* ]# e 0 } o p V) {# L= 7 9- ,# n c{ s> _# r % h q ^# ,> r [& |& r |& q m % Z$ `$ `$ 4* D :# p ;) ^# r `$ s> `$ /# `$ p ^# ^# 4* ,> _# I w /# M /# w z z /# x I I N w O@ P@ w E$ w w n! 8* M M M@ J L a- G E$ J S P@ J K@ E$ P@ P P P H U T 3& L Y J D$ P P@ H I@ s! J H |# L@ I@ E$ X Y T P L@ I@ C$ L@ C$ R L@ 4# I@ L@ I@ Y U V +. @. V P O= fp.H@ X C$ L@ .= V> V 4# T P C$ +% 2# G$ [; =. +. E@ T C$ @. X . +. G@ H @. L@ P +. +. V E@ C$ 7# .= V E@ z@ V V 5# E@ O= P 5# . .. +. 5# R . =. B$ V B$ E@ P 4# B$ #. @. B$ #. z@ F; 5# @. .. C$ z@ .. +. =. z$ ,= +. G@ . 5# )& 5# A@ .= e- z@ 4# 4- +. A$ B$ R I@ z@ &. . W E@ y@ O= L@ @. E@ . 2# V 7# #. D$ n> V S G$ P C$ =. y@ .= 2# E@ 1# G$ M@ F@ 4# Y P ` Y H J U K@ J E$ +% P@ L@ Y C$ Y ` M@ S M Y L@ M J H$ J M S Y J E$ #= S P@ T S M I M S O@ P@ N@ H$ I H I I /# w Q$ ], q, x, v, s, v, =) x, s, H) u, u, u, u, z, x, v, u, x, x, y, y, y, y, y, y, y, y, y, u, v, s, u, u, x, u, y, u, x, u, 8' s, x, y, u, u, s, s, t, v, x, u, u, s, u, u, s, u, u, y, y, A, x, y, u, A, A, t, u, u, s, s, s, u, u, x, s, u, y, A, z, u, s, x, x, s, x, u, u, y, y, x, s, s, 2! ) 9 $# 7 [ ( < / X@ +# { < 1 | } ## $# X@ ( ) & 2 ) | ) ", +"y, q.8' Mp.6' q, [: +' Mp.6' [: z~ z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ *[ q, ql..q.9i.*[ 9i.xi.|1 Pi.*) 98.|1 ^, <{ 9| 9| 9| 9| 9| <{ 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ ;b J$ G= J$ <{ J$ jP jP 2^ R@ R@ ]^ L$ 0' I/ I/ I/ 0' <{ I/ I/ I/ 5_ # + X! p9 # * = + # # ]& # # [* $ ]& $ . # . V@ + ]& # ' o! T@ # = $= U@ S$ $= & U@ . |* ' > %= = > Z! U@ N$ Z! & > Q$ * . | > U$ & ; ) ] X@ & N$ ] N$ P$ & ; *' W@ 2 N$ ; H= { / ) U@ 2 T- { (& 1 ^ X@ 2 ) 8- / W@ 2 ## ( X@ { } Y@ ( d / 6- [ { } ~ } &# ( 1 d 6 x0 6 7 8 a ,# a a ,# V) [ d 7- 6 $# ,# b i e K/ e 6! 6 0- n ~# j 0 e *= _# 0 {# ~# L= n n K] ]# ,> `$ n e ~# ~# ~# Q{ K/ Y$ Y$ D 1; K/ % 1; ~# q {& @= Z$ Z$ w w 4* [& Z$ (# p ^# t 2, C G p Z$ G /# z /# @= 4* G I :# N {& G z {& E; A A w N w x K M M I M A: 3# P@ H$ O@ E$ N M n> S M h] M 3& H H J H L' m) H O@ T +% D$ 3# 3# 2# Q L@ L@ H 4# Y T I@ W P@ T C$ 5, C$ J H @% d- J H H }; T P H X .= V G@ L B$ X r! 3) $. .= E@ O= #. B$ 3! J B$ +. C$ G@ I@ C$ ,= @. B$ R +. +. R 2# J O O= E@ V E@ X 4# V X A@ $% =. C$ C$ .= O= ,= ,= !. $% R R 4# z@ ,= X X C$ .. 7# 3! z@ ` D@ z$ R H$ )= _* *{ W 5# z@ z$ V .= 5# W R (* 5# +. E@ V Y .= X @. 5# @. +. ,= $% &. 9* @. .. B$ i~ O= 9* L' W #. 4# E@ z$ V ;. 5# L@ L@ O .. I@ H M@ r! L@ K@ J S C$ 1# D$ D$ F$ P Y 1# S O Y C$ T T S 1# H$ M@ O c- P E$ P@ O O H L M P@ S E$ S L@ P@ M@ S h] 8* O K@ P@ J P@ P@ D$ P@ M P@ #= H I P@ K@ O@ z N@ ~ L$ [) v, =) z, A, t, x, x, s, x, x, s, u, u, y, s, t, y, y, y, u, u, y, y, z, u, y, x, s, y, u, s, x, x, y, u, u, s, u, s, u, y, y, u, H) =) s, y, y, u, u, y, z, y, u, x, |) s, x, s, x, z, v, x, s, u, x, 8' z, y, y, u, y, y, z, x, u, u, y, t, x, s, u, u, z, u, x, y, y, s, t, x, x, ]& } d $# { 2 ( [ < W@ < X@ *# ## ~ ## R$ ( ] 7- %= T- X@ ) ~ N$ ", +"y, +' Mp.+' Mp.[: z~ Op.Op.z~ Mp.*[ [: z~ z~ z~ z~ z~ q, z~ z~ z~ z~ z~ z~ vh.ah.*[ Xp.ah.xi.e^ Pi.<{ |1 <{ <{ 9| *) 9| 9| 9| 9| 9| <{ <{ 9| <{ J$ <{ J$ J$ <{ k3 J$ ]^ R@ <{ ;b BN L$ I/ 0' I/ ]^ G= 0' I/ I/ I/ I/ BN R@ 0' 0' = # $ X! 0' 5_ $ # ;b % $ L$ + ]& # # # 5_ [* o! $ . V@ Ez !, > > & > . Up.H= S$ ; N$ S$ > |* S$ . A; $ k3 & ; =' * | & = U@ ^& - Q$ ] ; ; T- A; g{.8- ~ & ~ ~ U@ ] . & < , 2 P$ Z@ 2 : R$ W@ 2 [ [ { [ 2 O$ { } < ) ( 2 $# &# ~ 5 ## ) ( { d ( *# ( 6 B; 2 N' N' { 2 /& } W@ $# 8 $# V~ { a ># /& *# 5 D, 6 k c6 e a s> a a 9 6 $# {# 7 K/ $# g ~# 0 L= ~# n n vA ]c 0 c h `$ [& Y$ ~# c c L= 1; % h :# 5` s> ^# n y Y$ Y$ L= `$ Z$ t % s> p `$ 1; 4* G w 2; I ^# m G w w F= w t w w G /# @= G O@ z I F= w G G M A S n! z H$ J Q@ o> M M A 8* a- P@ J |; E$ )W U G$ T I@ H L@ H d{ 4# Y H b- J@ T ` T V 4# H J Z L V P X T 7# H P L@ #. I@ 9* T J L@ U 4# 4# I@ T C$ $% O= O= G$ 1# }; ` I@ 4# C$ V +% J Y 1# L@ S G@ 4# 9* H K@ G! }; ,. .= @. 4# E@ }; I@ J@ I@ )= e- R 2# V G@ G@ 3! T C$ E@ G@ V 4# P .. G@ ,= V E@ L@ R ). . (* 4& . I@ z@ e- ;. #. F@ I@ L@ J +. (* 5# . z@ D@ O= G! @. G$ L@ W )= R C$ 5, X T @. @. C$ W z@ (* A@ O= Q' E@ 4# V @. O= X .= d- >) M@ L@ 4# 5# 4# }; H@ X .= 7# G@ D$ I@ T O X Y H E@ Z C$ D$ +% P U ` V T P P H$ P@ S D$ D$ H@ Y 3# Y Y P@ T ` C, E$ :* o> L@ J H S 3# M H E$ ` M@ P@ J H M A 3# S O A M x Z$ I I z M I 3* . %{ z~ s, s, v, s, H) u, v, x, u, y, y, x, u, v, A, y, y, y, s, s, y, y, y, y, z, 8' s, z, y, u, =) =) s, 8' u, z, u, x, s, u, u, u, z, u, y, y, y, y, y, x, s, u, x, r, y, u, u, x, y, u, t, s, s, s, y, x, u, z, y, u, y, x, u, s, z, x, s, s, x, x, x, u, x, x, y, y, u, x, y, z, x, # $# } } $# < 4 ~ ## [ ## ## < { 2 %# ) N$ P$ ~ o! & - { N$ ~ ", +"y, +' Mp.Mp.Mp.Mp.[: [: 6' [: +' [: [: q, z~ z~ z~ z~ z~ q, z~ 2! 9i.e^ z~ 2! ah.*[ z~ &[ xi.ah.Ip.|1 xi.|1 )~ <{ 9| 9| <{ <{ <{ *) <{ <{ 9| J$ <{ <{ <{ J$ <{ L$ J$ J$ J$ ;b I/.J$ 2^ BN ], J$ R@ R@ I/ I/ L$ I/ 0' I/ I/ 0' 0' [n $ = 0' 5_ 0' 0' I/ L$ J$ $ = ]& ;b # [* k) ]& $ k) Q$ . (& +q..( $ . $ + V@ S$ H= # A; > U@ S$ U@ N$ o! & P$ H= ' > ; > - > S$ & ^ X@ %= > ; | & ] & Q$ Z! ^& | N$ Q$ & I= | ~ %= ' ] I= { 1 7- X@ | [ 2 N$ ) ~ X@ , $# *# < g{.| %m 1 ( ( [ b 5 $# } ,# $# [ 6 Y@ } ( { 5 { ( 5 i } / 7 ~# d 6- 6 ># 5 a 0- b Y> d 6 6 a Y> 6 0 L= o h ~# 2, c ( a ~# L= h L= n 7 0 L= p n `$ h k n Y$ e n^ p ;= E, r s> Q{ K= s> c{ p Y$ V| D 2; p y p! % {& /# o/ 4* D m w B ^# h % @= G #] w t 5* z N F= ^# }# /# N 8* N N [# O@ z w I E; N O@ P@ A I O@ A I P@ A 3& A I :* Q@ L E$ H Q E$ T U |# L@ s! 5, H C, J M@ L@ X I@ E$ T J 1# T ` C$ X +% d- T 2# ` L@ S L H C$ H L@ G$ 3# L z$ I@ E@ @. @. G@ d- J L@ J . )& E@ 3& .= .. I@ Z +. 5# E@ 4# I@ H V E@ B$ H G$ L@ T 2# 1# L@ H 1# 4# D$ Y $% !. .= .= z@ 5# .= 5# V B$ H@ D$ V X 5# R #. >. z@ X W B$ A@ z@ R #. I@ t> |; 9* 3& }; z@ @. 4# #. #. .= C$ +. @. F@ .= 4# V Z C$ C$ 5# @. V G@ O= L@ D$ . }; E@ 7# . (* L@ O H H r! C$ 4# ` R E@ J T H@ $% C$ L@ C$ P P D$ P@ 3; 4# L@ P@ T 3) ` &' J L@ F@ H X 3) H E$ P@ K@ Y P S O 3& T P P H O z 3# M O S H H E$ P@ P@ P@ M E$ M@ J M G Q@ M M @% z E$ x /# A A G q! I o > e^ ^, +' s, s, 8' x, x, =) x, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, w, #' u, u, }) s, s, x, x, s, s, s, A, x, s, u, u, u, #' z, y, u, u, u, w, u, u, s, s, s, u, y, y, z, s, H) u, t, z, -! +' x, t, u, u, s, u, y, u, s, u, A, s, z, u, u, x, u, y, y, x, x, y, v, v, - 6 Y@ < I= : -# ) ) : 1 *# Z! ## *# { ) N$ ^ X@ # H= ] N$ ~ %= ", +"y, +' +' Mp.+' Mp.Mp.z~ Mp.Mp.+' Mp.z~ z~ z~ *[ *[ z~ *[ z~ z~ 9i.z~ *[ z~ *[ Il.9i.z~ 9i.xi.xi.)~ )~ $8.xi.vh.9i.9| w9.9| <{ 9| 9| 9| 9| <{ R@ <{ <{ I/.<{ 9| <{ <{ R@ l) #S L$ #S 2^ *) L$ BN (}.2^ p9 0' I/ I/ 0' 0' 0' 0' 0' 0' 0' * + 0' 0' Z, ]& # R@ ]& + ]& ;b K$ . ]& k) . . $ . & =' M$ + > + R@ |* S$ S$ $ |* U@ S$ > > > ; S$ U@ U@ *' - * > ; & P$ > S$ & ; P$ U@ U@ S$ U$ ] | | %= | S$ - & N$ N$ ! [ ~ S$ N$ %= R$ { , | { ) [ =' ) | ] `@ 4 7- ~ 7- N$ Y@ / < 2 ) } D, [ [ d J= 8- Y@ { %= Z! d { 4 5 1 1 1 6 a a } -# e j ( 3] N' e c ~# ,# } ,# a ~# a' o 0 K/ 8 2, Y> ~# 0 L= n 0 n c s> i g ,> ;= ,> n h r Y$ c ~# L= n n y % ~# C; s> `$ t 1; s> s c `$ ^# b' p Z$ m p w ^# p t Y$ :# m w w m /# I ~& 6* /# {& m D D z E; O@ Q@ P@ P@ M P@ P@ a- O@ I J Q@ O@ P@ P@ O@ =K E$ O@ E$ I |# E$ c- |# I@ H E$ I Q@ A 3# T T 3# A T O T L 2# J E$ J K@ L@ L@ E$ Y H Y E$ I@ N@ H$ P ` L@ H O Y 1# T 2# 1# D$ L@ P G$ E$ S d- 7# C$ @. G@ R D$ Z D$ I@ E@ }; T V 7# 1# P @. 4# P G$ D$ Z I@ H G@ O= E@ G@ X 4# }; F@ +. H@ C$ 5# B$ @. T L E$ L@ H L@ @. H@ E@ B$ 5# z@ X .= @. I@ +. z@ #. G@ E@ 4# T y@ e- V> X A: P ,= C$ #. 4# @. C$ +. C$ O= M@ T z@ (* C$ C$ (* O= H #. 3) L@ E@ E@ L@ X L@ L }; X E$ 4# 1# V J@ I@ L L@ L@ C, L@ Y X G$ Z O O L@ V P I@ Y .= L@ Y Y P@ M@ L@ E$ M@ M H$ O P@ K@ E$ |; J C$ H H +% L 3# H J H P@ #= T S M P@ T J H L@ P@ P@ I H M K@ M P@ @% H$ I G M A N G ^# p $ <{ 6' v, x, s, v, u, x, x, x, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, x, y, u, s, x, y, y, y, y, x, x, x, x, u, x, x, t, y, y, s, x, y, u, x, u, 8' s, s, u, y, z, v, y, u, y, x, s, s, r, s, y, y, y, u, y, y, x, z, y, y, y, s, u, x, u, y, y, s, s, v, t, s, v, ; { ## } < ~ ( == } /& -# < { W@ U@ ) ;# ; [ { ) 2 | | S$ ^ ", +"y, +' +' +' +' Mp.Mp.z~ 6' Mp.6' Mp.z~ z~ z~ *[ z~ z~ z~ *[ z~ z~ z~ 9i.z~ *[ Ip.vh.9i.z~ xi.xi.|1 Pi.9| xi.xi.)~ *) 9| *) <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 2^ <{ 9| l) R@ I/ J$ 8S BN *) I/ BN ]& R@ BN BN I/ I/ 0' 0' 0' 0' L$ I/ I/ + * ]& X! = # Z, L$ ]& # = + % + $ + $ k) . Q$ (& @q.R@ ]& # }* = . V@ Q$ . ; ; > > > > S$ $ T@ U@ . U@ - & X@ ; ; U@ = & |* > ; .# . + > > & N$ T- { ; ; R$ Q$ %= [ | N$ ] N$ *' [ | ) ( { ## X@ [ ^ 2 ~ ~ 2 ) ~ 4 N$ } } 1 7- } 5 I= } 5 4 J) I= D, { *# ( } $# d 7 Y@ 9 a 8 $# $# I= 6 d : == ># 7 $# 0 6 ~# !# 0 !# B; k a 6 6 a ~# ~# 8 g ># e 0- ~# m n 0 v {# Y$ h h ~# ,> r s> s> -) n p r L= r Y$ p :# Z$ p `$ c % `$ /# ^# C 4* % Z$ ^# ^# t h t % G 4* `$ % ^# E; m t /# Z$ K G G G w C I A P@ Q@ 8* M G C O@ z A |# O@ I I N %> |# 8* A O@ P@ Oz H P@ J 3& O E$ J Y Q J H L@ 1# 4# J Y J Q T n> O H P@ P@ Q@ J ` P 1# P L@ L@ J 3; |; H |; O J +% M@ H$ P@ L@ S 7# I@ U J@ V V 7# W C$ H 2# U H@ I@ L@ #. y@ C$ T 4# @. E@ T L@ H@ U .= D$ 4# }; P I@ J Y I@ X 4& .. 2# D$ H S 1# z$ X H 4# @. z@ Y F@ C$ E@ C$ G@ 7# V 4& V }; F@ P J I@ B$ 5# G$ 2# 4# C$ L@ I@ @. W I@ 4& +. .. 9* L@ L@ C$ z@ 4# }; I@ T L@ D$ C$ #. W 1# L@ ` P r! |; O D$ 2& L@ H U H ` L@ P P S 2# H L@ L@ |# H L@ P@ H L@ ` L M@ S M d- Y K@ S H J M@ S J +% L H H L Q@ 1# O 3# c- M M Q@ P@ P@ S K@ I I x H$ E$ M@ O@ M N A M O@ S M z I I I G G w C (# O$ ], ^, [) s, A, s, v, s, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, u, z, x, s, s, u, u, x, u, =) s, x, u, y, u, x, u, y, u, s, u, u, x, z, z, x, x, u, y, y, y, s, u, y, y, y, y, y, y, x, y, y, x, z, u, y, u, v, u, x, u, v, s, z, v, y, u, x, 8' s, u, }) 6' ~ : } 4 U$ < ) ( | ## [ ) ; { { 2 ) & 2 : 2 *# %= U@ ] ) ", +"y, s, [: Mp.Mp.Mp.Mp.z~ z~ +' [: [: [: z~ z~ *[ *[ *[ z~ z~ *[ z~ z~ |1 q, z~ z~ ah.ah.z~ 9i.2! 98.*) )~ 9| 9| 9| 2! *) 9| 9| <{ <{ 9| 9| *) <{ R@ J$ J$ <{ ], I/.<{ L$ 2^ BN J$ J$ <{ ]^ J$ ], J$ R@ I/ BN I/ I/ I/ ]& 0' 0' I/ 0' I/ p9 # $ + I/ + # 5_ = V@ $ + + # # L$ = . ' }, . > > . . S$ & > . U@ ' !, S$ . !, = - . Z, $ N$ S$ Q$ - Q$ $ Q$ & . Q$ & + . . ! > ' U@ ^& Q$ ; | ~ ~ ) 7- | Q$ /& ~ g{.| 2 { { ~ ~ X@ P$ | | *# ) 7- J) { I= 8- W@ | Z! 1 1 } 8- ( 6 6- Y@ d <& 2 } 8- 2 I= 4 D, J= 6 ( D, d ,# 7 7 ,# 6 7 a e Y@ Y> Y@ ## k 0 j c a t' j M' c n a c L= 2, g 0 ,# a n |& n L= L= r Y$ Y$ h [& Q{ 0- Z$ Y$ |& h n ^# Z$ p `$ r n Y$ r r ^# F :# Z$ 2, p `$ Y$ |& m Y$ w D ^# Y$ ^# w ^# G b' ^# `$ `$ 4* t G m A /# 1& E; A _# w O@ z A m) F= N 1& 8* z n! 1& H$ n! |# E$ M I P@ H$ E$ M S A M E$ S ` Q@ 3# E$ J E$ T P@ J O m) H P@ M C$ Y J +% P@ P@ X H$ P@ E$ T O Y L P M@ S E@ T H@ C$ }; G$ U V J P D$ ` H P@ P 2# Y Y H@ E@ P@ 4# S S @. C$ I@ L T E@ .= H G$ 1# H 2# V E@ L@ V 4# r! H 2# V V E@ G@ J 4# V V 4# L@ ` H 4# 2# E@ V P E@ L@ C$ C$ O= O= V 7# i~ @. T X E@ F@ E$ d- R T C$ Y }; d- ` |; P C$ ` F@ X @. T D$ X G@ V 2# I@ P 1# G@ T E$ L@ P@ T R Q J P@ H@ I@ V D$ P' 1# M@ L@ d- P@ E$ V P $> H d- J H H Y H A M@ M@ L@ T T H Y M L Q@ S ` J Q@ I@ Y J S P@ S P@ Q@ H S S H$ P@ I G M M 8* #= I I A z P@ I z I H$ G w G Q@ N G w y D $# s' g~ v, s, t, s, s, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, A, u, t, z, u, u, y, y, y, x, x, u, u, u, u, x, y, y, u, y, y, u, s, t, A, u, x, s, x, z, y, y, y, y, x, u, u, x, u, u, z, u, y, y, u, s, u, u, u, y, u, y, u, x, x, x, s, u, s, =) y, t, x, s, #q.^, ] W@ ## $# [ | 2 $# ) } : / W@ ## 2 2 2 ; ~ | 2 Z! ;# X@ ) ~ ", +"y, s, Mp.Mp.Mp.Mp.Mp.q, *[ Mp.q, Mp.Mp.%{ z~ z~ z~ *[ *[ *[ *[ *[ z~ 5' z~ z~ z~ ah.Il.*[ *[ z~ |1 9| e^ 9| |1 $8.9| <{ 9| *) 9| 9| 9| <{ 2! <{ 2^ 2^ J$ J$ *) 9| jP J$ J$ R@ R@ p9 jP 2^ R@ 2^ 0' L$ L$ L$ k3 0' G= 0' 0' I/ BN I/ I/ p9 $ K$ 0' = V@ + ]& 0' ]& + # $ % + + # ]& ]& = [* ]& {c $ p9 V@ # > + . ' . S$ - $ ], U@ & Q$ ]& > U@ ' Q$ + ' > }* Q$ Q$ %= ] ] H= N$ & { }* ; | ~ Z! | | ' U$ 7- o! { -.2 Z! [ Z! { ) 2 2 2 | 2 Z! ^& ~ P$ { : X@ U$ | 2 [ $# { ## ) d } %# /& 7- , ,# 2 ,# ( } q> 6 a Y@ D, 1 k 7 ( i /& 6 a V) 6 <& 5 2* !# d 8 ,# [& 6! ># k a ~# k L= 2, 0 f 0- h L= c{ c c Z$ e L= r p r K/ 7 c l r n t' o r h e p `$ s> Y$ t n^ ]c Z$ _# 2; m t s> O' % Y$ D {& p w /# N N {& z ~& % E; q m N D m m D % {& 4* 2; G G $S t G #] #= z z F 8* I M I H O@ A P@ P@ I |# x M 1& A P@ K@ I@ T H$ L@ 3) J J J q! J L@ J P S K@ P@ S Y G$ ` H K@ H 4# L@ L@ P 7# L P 3) H J C$ ` V C$ S H I@ C$ #% L@ U 2# X C$ I@ H H U I@ @. L@ Q H@ J C$ T 1# P P L Z Y U U P H D$ C$ +. E$ J J }; Z A@ .= L@ I@ 2# 4# 2# P X> G@ d- 2# C$ @. B$ @. .= D$ H@ X E@ .= $% E@ .= L@ D$ B$ V i~ O= 7# T G@ 4# I@ G$ L H@ L' o> L@ I@ G@ O= V O= #. X P G@ P J H L G@ G$ 4# Y d- C$ C$ 4; L@ #. T L@ @. I@ K@ P += d- 2# H H H D$ J +% 2# Z T S Z H$ +% H J P@ K@ c- ` K@ H O@ K@ E$ E$ P@ A M L@ N I S 3# P@ O@ I S 3# 8* G K@ A #= 8* A I z G P@ P@ c- n! N w z N q! /# P@ G w D O@ o ]& ^, 6' v, #' v, z, u, u, x, y, u, u, y, y, u, y, y, u, y, y, y, y, y, z, y, u, =) z, s, y, y, u, t, y, x, y, u, 7' y, y, s, x, t, v, u, x, s, s, s, s, x, s, z, x, z, u, u, x, y, y, y, y, s, x, y, }) }) v, y, y, z, u, x, y, u, u, y, z, x, s, s, t, x, s, u, x, y, s, v, s, q, ], X@ X@ 1 2 1 W@ [ Z! Z! { b d { [ ## ~ ^ ] ] | ~ { %= +# %# %# ", +"y, x, Mp.Mp.Mp.+' Mp.z~ z~ [: Mp.+' +' z~ z~ z~ z~ z~ *[ *[ *[ z~ z~ @] q, z~ z~ 9i.rp.ql.z~ z~ xi.9| e^ *) 9| $8.9| *) 9| 9| <{ 9| 9| <{ 9| 9| 9| 9| 2^ J$ <{ 9| J$ I/.I/..( ]^ L$ jP ;b G= ]^ (}.#S L$ R@ G= 0' I/ L$ ]& 0' I/ I/ I/ 0' $ + = #S 0' + # $ 1) # # + ]& + M$ + = $ * Q$ + > $ $ = $= S$ $= ]& V@ S$ . |* N$ # . U@ P$ k) N$ U$ S$ . > > [* ^ N$ > N$ | ] & N$ U@ | U@ U@ ; X@ | ' U$ R$ N$ | | *# ^ P$ H= ) & N$ N$ ] ~ /& 1 { 8- N$ { 7- 2 { X@ 2 { ## 2 7- { d { } D, { $# } 4 } /& ## 5 ( ,# a &# } / -# ,# ,# a a b } 6 b &# &# 7 ,# 6 9 3] k n 0 [& 6 k 8 ~# c{ n a r ~# n g ]# n ~# ~# ~# b Z> h 2, r ~# L= Y$ c c h h ~# p p Y$ 0n E, p D `$ p 4* K= % h m h n t ^# {& 2; C x ^# @= N m p ^# p 4* N $] G C C b' N /# w {& `$ N {& I G z z A M M I I A E$ 8* I 1& G O@ M b- AR A T H$ P@ P@ #= H E$ M S H T J J J M O O@ S L O@ P@ Q@ L' I@ E$ J L@ H ` J M T P E$ L@ 5# H +% 2# H$ P L@ H S C$ U Z I@ 3) D$ T L@ ` P ` H@ J@ |# P H 4# 1# 3# h] Y U H #. 3; C$ V Y D$ 4# 4# E$ D$ O= I@ H@ P H@ z$ C$ C$ }; P@ I@ T L@ U L@ G$ C$ V @. 4& =. C$ 4# .= #. C$ H D$ X #% d- U P T V d- 4# P 3) L@ V J L P ` G$ 2# 4# d- 4# E@ J T L@ +% L@ n> U J X X C$ H$ L@ H 1# H r! G$ D$ C$ S Y I@ K@ T Y Y P U 3) V T d- ` +% L $> J E$ S L@ P M L K@ P@ M H$ |# M@ P@ S M@ J I M J M@ M@ K@ O@ A 8* A b- P@ H$ A P@ I M I I I A M a- A A B Q@ z x z I I N G z w ^# h $ *) g~ +' v, s, y, u, u, v, x, y, y, y, y, t, s, s, x, u, y, y, y, y, u, y, y, u, x, x, z, u, x, s, u, r, y, s, s, y, z, s, s, s, #' y, s, x, u, y, y, y, x, y, y, y, y, y, u, x, x, y, z, y, y, #' s, u, s, u, y, t, x, u, z, x, x, y, s, s, s, s, z, y, u, u, u, y, y, z, u, s, + | 2 9 2 X@ | $# ) R$ W@ [ .# ## [ { | ~ ) ## 2 ~ | ) ( 2 U@ ", +"y, x, +' Mp.Mp.+' Mp.[: [: [: +' Mp.+' [: *[ z~ z~ z~ z~ q, z~ z~ z~ 9i.*[ *[ *[ 9i.vh.|1 z~ z~ xi.xi.*[ )~ <{ $8.vh.z~ 9| 9| 9| 9| <{ 9| 9| 9| <{ 9| <{ 2^ <{ J$ J$ J$ <{ l) 2^ ], <{ p9 L$ R@ R@ BN L$ BN BN L$ I/ R@ I/ 0' 0' L$ I/ 0' + I/ + I/ L$ 5_ # ]& $ V@ # # ]& J$ + . k) # $ + Q$ . + = . & Q$ $ > 1* Q$ - . ; U@ $= > ; Q$ . %= |* & . . & ; | ; ; ; - - > U$ N$ o! ; ] ] Q$ S$ f] X@ 2 ] | 8- { | X@ R$ ~ U@ H= ) ] N$ { ) N$ 2 { ( [ Y@ { ## 7- X@ ## ( 2 { ( ( ## { J= 2 ,# / D, $# 2 Y@ 6- } } $# } $# ,# ,# : == a B; } a b == 6 ,# ,# 0 B; ,# Y> $# g ~# k i q> a 8 V$ 0 ~# L= c L= V$ 0 L= 2, ># c{ 0- k r `$ ,> n r r c b ~# n t ~# n p `$ `$ Y$ }& @= r Z$ s> m Y$ y D -) m V| % m m m 1& C 4* 2; ^# F= 2; ^# 1; m /# `$ G m 2; N= ^# B 5* G Z$ A A D z A I @% E$ a7 A N@ M I I S A O@ M M |# Y C, E$ I S L M E$ A H$ O |# A h] A S H U S H P@ T L 3& J T J P@ J P@ J H$ E$ Y T J Y G$ I@ M@ Y 1# Z M F@ L@ M Y V H P S P@ d- P V H }; 7# .= O= I@ Y M@ C$ K@ 1# T +% J T P I@ 4# U 1# T Y L L@ L@ D$ E@ L@ U J H T J P H 4# ` C$ X G@ S L@ T X X H T J H 1# Q T H@ E@ G@ V L L@ T I@ T L@ L@ T U Q 0* I@ Y H H I@ 4# V J I@ X L@ H R 2# H M@ M@ T H M@ 3# S H T L@ U }; H H H H L' H M P@ J E$ S L@ H$ S 1# 1# P@ S Y J K@ Q@ E$ H$ P@ M H$ K@ P@ S K@ T P@ L N@ 8* M O@ M H$ M P@ M P@ z O@ P@ 8* A I x M@ A S I b- A I z G D b' C w N x M 1; ; i) 5' @] s, v, v, u, u, y, z, u, y, u, y, y, u, u, z, u, s, v, s, z, x, y, u, x, y, u, x, s, z, u, v, s, y, x, u, u, x, s, s, u, x, x, u, u, y, u, y, x, z, u, z, u, x, u, y, y, y, y, y, y, y, u, u, y, y, u, u, s, u, u, z, s, s, s, s, s, s, u, u, x, x, u, z, x, s, s, s, +' . [ $# ) { /& } / [ / [ W@ | } W@ { | $ 2 ~ ; ; ] ) |* ] N$ ", +"y, s, +' +' +' Mp.+' Mp.+' q, [: Mp.+' +' Vp.z~ z~ *[ *[ z~ z~ ah.2! z~ *[ z~ z~ *[ |1 xi.Il.z~ ah.xi.|1 e^ )~ |1 9| &[ <{ 9| *) 9| 9| 9| <{ 9| <{ <{ R@ 2^ <{ <{ <{ l) L$ .( R@ R@ .( .( R@ R@ I/ ]^ ]& I/ I/ L$ 0' G= R@ = X! 0' 0' + + # # 1) 0' = K$ # # $ 1) # ]& 5_ =[ . # T@ . > ]& Z, # $ 0' [* S$ Q$ * - . & & - U@ . + U@ ; Ez 5! & 05 $ - U@ %= ] U@ %= Q$ U$ ! U@ U@ ; > U@ %= S$ U@ > ^& | ; N$ & ; Z@ N$ N$ ~ ^ %= & ) | 5- ) f] S$ N$ [ { X@ X@ %= X@ { ( 2 7- /& $# ( W@ W@ x0 1 { 1 { { ## 7- 1 /& == d / 1 ( 1 ,# Y> ( ( ( d q> } V~ ,# /& Y> b ( ~# K/ 7 c n L= Y> ># 6- b ~# a 0 ~# c m*.6 b a ~# ~# 0 n 8 c 6! L= ~# c n ;= 0 [& e h 2, n m -) |& `$ p h l (# #| n `$ ;= `$ p p Z$ m ^# z % 4* 4* xE 4* {& @= ^# 2; {& z D t 4* G /# m w 2; b' m z w w I G O@ x G M M P@ M G O@ ^# M 3# A O@ M I M T Y I S +% M G Q@ M z M #= M L |# J H$ |# |# .~ o> Q@ U J 3& 4# L@ H Q@ C$ T L@ H H C$ L@ T T H P I@ H$ 4# C$ H@ P E$ Y Z n> J K@ |# H@ M@ J F@ E$ K@ D@ D$ P J #. J H$ K@ Y H@ L D$ 2# 2# V X 2# J P T P H@ 3# L@ L@ L@ P Y T P P E$ @. T d- F@ L@ P #. X #. 7# #. L@ J L@ L L C$ @. }; )= 2# L W I@ d- T H J G@ L@ T T #% G$ L@ C$ C, I@ J E$ I@ 1# U 2# M@ C$ L@ G@ Y J S P@ E$ H H I@ I@ K@ C$ P@ Y S J K@ S L J T 3# 3) H Q@ S H H$ M@ S M T H$ M O@ I N z 8* P@ 3# O@ C$ Y E$ O S I I K@ J z A G C z H A O@ G ~& I @% P@ w {& G N I K C /# G ^# Z$ {& ^# /# G 6- e^ g] s, v, u, s, s, H) u, y, s, z, s, y, y, y, y, y, y, u, v, x, y, y, y, z, u, y, z, y, x, x, u, y, y, y, z, z, y, y, z, s, z, s, x, y, u, u, y, y, y, u, u, u, t, s, u, y, y, y, y, y, y, t, u, u, y, u, y, y, x, u, u, -! x, y, s, y, y, t, x, y, y, y, y, y, x, s, z, s, 6' . } Y@ < { { d } ( } : ] , ) | W@ W@ ^ { ~ N$ & ] ' U$ & ; ", +"y, x, y: Mp.Mp.Mp.8' Mp.Mp.q, z~ [: +' Mp.[: z~ z~ z~ q, z~ z~ ql.z~ z~ *[ z~ q, *[ 9i.vh.9i.z~ 9i.vh.$8.e^ e^ *) |1 |1 <{ 9| *) 9| 9| 9| 9| <{ I/.<{ 2^ cp.<{ <{ 9| l) <{ l) R@ ]^ R@ J$ <{ R@ BN J$ <{ I/ R@ J$ p9 J$ J$ ]& ]& 0' I/ 0' p9 + K$ K$ = 0' K$ # # 5_ # * Gc 0' !, V@ # L$ ]& $ ]& $ |* & = . V@ *' . + [* [* $= U@ & |* U@ |* |* $ > ] & [* N$ - P$ P$ |* $= S$ > | . Ez Z! & H= H= ~ & > > | N$ ^ (& S$ H= U@ | g{.( ~ /& N$ | T- %= X@ ~ X@ ~ ) ( 2] 1 { *# X@ 6 ( I= / ## 4 &# d => Y@ 7 5 { ; X@ | ## &# / ~ 6 D, } ,# D, : 7 Y> } 4 5 7 7 ,# 7 6 a !# ~# ~# V) o i Y> 3] 7 d a {# ~# e ,# c a ~# n 0 $# ~# a i 6 2* s> c 0 c 0 0 ~# L= Y$ C; n C; n -) Z$ L= c e r p Y$ `$ h p ^# % V| 4* `$ u m /# `$ w y2 `$ % ^# :# w G w 5* I G ^# q M z z /# w B {& }# ^# m) /# I P@ w P@ P@ O@ q! {& I n! N I E$ N M M Q@ M a- A %> P@ K@ O@ d{ I@ O 3# P@ J A M@ H J 3) L@ P@ L L@ M H U O A H ` M 3# L@ T G$ E$ T L@ J S J J@ E$ K@ &' P@ M 8* O 1# J I@ H V W D$ D$ S 2# P@ Q 2# @. E$ P Y t> H@ H@ L@ H C$ J ` S Y I@ E$ T L@ @. @. H 2# r! T U T Y L T 2# D$ .= H I@ I@ H H T }; T J X L@ t> 1# D$ S P P U 3# T I@ P I@ J |; H T J T }; L 0* T L@ G@ 4# S U L@ H$ H Y L@ I@ Y J@ L@ +% O 2# P@ I@ M@ H M@ J X L@ L@ U J J S S J H H P@ M@ 1# S P@ L@ 2& J S M P@ L@ S P@ 8* Y S I I I O@ O +% S N@ z A A M H$ w z M @% H$ I z M N K N I F= z N G ^# F K I N % /# Z$ z h <{ [) r, =) y, u, x, s, u, x, x, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, 8' u, y, y, y, y, y, y, y, y, u, u, x, u, s, y, y, y, y, y, y, y, s, s, x, x, y, y, y, z, t, x, u, u, z, y, x, y, y, u, s, y, z, y, y, u, x, y, z, u, y, y, y, u, y, u, x, y, s, *) ; ( ## { { < { { { ~ ) { [ W@ ~ & ) ; ~ N$ | 2 ~ S$ U@ ~ & ", +"y, x, +' +' Op.Mp.8' Mp.+' 6' z~ z~ +' +' Mp.z~ z~ q, z~ z~ z~ z~ z~ z~ *[ *[ z~ z~ z~ ah.ah.*[ *[ 9i.|1 $q.e^ *) 9| |1 <{ 9| <{ 9| <{ 9| <{ 9| 9| <{ 2^ <{ 9| ;b <{ J$ <{ <{ L$ R@ R@ l) <{ l) 2^ G= jP I/ G= R@ ]& p9 J$ G= 0' 0' 0' 0' 0' 5_ # K$ + p9 = # # 0' # ]& o! $ # . $= Q$ .( Q$ $ = Q$ S$ $= S$ & H= $= = V@ S$ P$ S$ U$ S$ U$ & > [* S$ & 5- . . & > Q$ U@ U@ R- # U@ %= & | R$ ~ & ! U$ & 5- 2 & ] `@ J) P$ R$ ) | { ~ X@ 4 ) ~ > f] ) { N$ ] { J) ( ) X@ < } D, 2 { < ( 6 { D, 2 1 ( 4 ( } 9 4 7- ( } &# < J= ,# 8 7 } a 9 4 ( ># a 6 b 7 a' a a a Y> i h z: 0 3* ,# 6 ,# o k ~# L= 3] W$ i 0 h Y$ o 9 ,# L= c i k p Y$ e [& n -) p }& h L= r |& n Y$ p `$ ^# m p Y$ D (# r p ^# `$ % 2, -) Y$ w 4* ^# % `$ D I 2; w B G w ^# m G A O@ j4 m O@ :# G /# I I O@ J M N I M A |# F= I I N@ O@ I M I #= |# 8* K@ a- L@ H M E$ H H$ 3# M S x S P@ P@ L@ c- A H G$ U L@ P@ P@ ` P@ Y H E$ D$ J ` Q@ L P H H G$ ` K@ 3# H@ Y T Y Q@ M@ Q@ O N@ Y O J P D$ S P T T 4# D$ Y H I@ ` P L@ H K@ E$ P L@ T V V U 2# P L@ T L P L' H T D$ }; C$ H T D$ ` @. d- L@ L@ U T V J D$ 1# T T x .= T L@ 7# I@ I@ J ` X L@ P@ H L d- V X C$ O 1# J L@ C$ O +% K@ P@ P Q@ +% +% H@ 4# H ` :* I@ L@ H$ ` C$ J Y S H O L@ M M P@ S P@ H O J Q@ A P@ +% @% P@ z Q@ S O 3# S P@ K@ A H$ I M A H 3# :* N 8* I N H$ A E= z w Q@ Q@ A A A C 8* z }# }# I w F= w F= A A `$ Z$ t :# B F= ~# $ J$ [) s, x, s, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, u, s, y, y, u, u, x, u, y, y, y, z, y, y, y, u, t, x, u, x, u, y, y, y, y, z, s, x, y, y, y, y, x, u, y, y, x, y, y, y, z, s, y, y, x, t, u, y, y, y, y, s, y, y, y, y, y, y, y, y, y, y, z, v, ], X@ *# 2 { %# } 2 [ %# / X@ X@ W@ ] ; ; ] N$ ] ] ~ { S$ S$ ] | ] ", +"y, z, q.+' Mp.Mp.Mp.Mp.Mp.+' 6' z~ Mp.Mp.+' Mp.z~ z~ z~ z~ z~ z~ z~ q, z~ *[ z~ *[ z~ q, xi.ql.z~ z~ $8.9| )~ )~ 2! 2! |1 )~ 9| *) 2! *) *) 2! e^ <{ <{ <{ J$ 2^ <{ J$ J$ ;b I/.9| 2^ *) I/.l) #S L$ L$ R@ ]^ R@ J$ I/ L$ ]^ 0' 0' 0' I/ 0' 5_ = # + L$ %q.# # 5_ $ K$ # 1) + # # o! Gc > # $ $= > V@ $ $ $= $ Z, $= S$ *' [* $= ; & |* |* $ + Q$ ; & $ - %= > > & }* ; P$ ~ & > | > H= U@ ; %= N$ ~ R$ T- | ~ & | U$ ^ Z! 2 | 7- 2 Z@ V@ > ~ | ( N$ ~ | ] W@ X@ { /& ( *# X@ X@ { ~ [ N$ } ) 6 } ## ## ,# { ( } } < } 9 < ## 3* 6 6! $# 8- 2 b ~# N' 9 0 a a a 0 ,# b a ,# ,# a ~# L= ~# s> n ~# k a' ~# i a c ]# Y$ h s> ,# ~# L= ,# ~# n F! n n n n Z$ n 1; c ~# e 6! n 1; m s> Y$ ^# Y$ p p % Y$ /# % % t E, D h t 4* G m 4* t 2; `$ y w G N #] G w K ^# ^# B /# m :* @% P@ P@ ~& z N N= N O@ N O@ M M O@ O@ %> I z E$ A E$ H P@ M H I P@ H$ n! E$ A Q@ H P@ I P@ x P@ E$ |# 3# P C$ P@ Y E$ 8* M@ P@ P@ Z H$ H E$ P@ 3; P@ Y P@ Y H P Y H$ S H Y Y 7# J Z 3; ` T P J P H c- H P U Y C$ K@ }; T ` F@ |# J L@ S M Y T O= T L@ n> O ` H J V J H L@ T P P D$ D$ D$ T L@ T R E@ Y H H ` L@ P E@ W T H T U #. 4# L J J T P@ J D$ J I@ D$ H H I@ Y J O P@ J C$ D$ 1# S J L@ |# Y Y T T O H$ ` T I@ H L@ Q@ J S P@ M +% H$ H$ S J +% S P@ J@ w L@ I z Q@ K@ M M H$ E$ K@ H$ A P@ A P@ J M@ z S M I A I z A G G G I z x P@ I w B z ^# C w 2; m A z S N ^# M= 4* N `$ $ e^ v, v, =) s, s, x, u, s, x, y, y, x, x, u, y, y, y, y, y, y, y, y, y, y, x, x, y, x, x, y, x, u, z, v, u, y, y, u, y, u, u, y, y, u, z, x, s, y, y, y, y, y, y, x, y, x, s, s, s, u, y, y, u, y, x, s, y, y, y, z, y, y, y, y, s, u, y, v, x, y, y, y, y, y, s, y, x, s, ]& 2 ( [ [ W@ } 2 ~ ; U$ [ R$ / 6 ) ] 5- R$ ~ 2 ~ ( ~ U@ Q$ U$ | ", +"y, z, Mp.+' Mp.Mp.Mp.+' Mp.Mp.Mp.z~ Vp.Mp.+' Mp.z~ *[ z~ *[ q, z~ z~ z~ z~ *[ z~ q, z~ *[ |1 Il.*[ *[ ql.xi.|1 e^ e^ 98.|1 2^ *) |1 *) q, ^, q, *) 9| <{ *) J$ 9| <{ <{ ]^ <{ <{ l) R@ J$ <{ <{ R@ V! R@ R@ <{ G= 2^ jP I/ G= I/ 0' 0' I/ I/ 0' p9 # K$ ]& I/ $ # # # # $ #^ 0' # & $ Q$ 2) S$ S$ $= . V@ Q$ $ > > $ *X |* S$ & . Q$ |* > . o! Q$ =' V@ > o! P$ 05 & ; . - Z! & - X@ H= ; > > ~;.; ; S$ U@ . %= ] | & U@ ; & & /& ~ ; /& 4 { X@ ; N$ ; & ^ 2 &q.## 2 ~ U$ 2 X@ | | [ } / ) 6- 6 6- 2 5 7- } 1 ( ( } < =# d } 6 6 a 7 9 ( -> 5 ,# } } a < 6 5 e h 6 7 i ,# c b 3* n Y$ K/ 7 c tA a' e c ]# ,> a 0 a 6 g n L= L= |& c ~# a i Y$ c{ h Y$ h n h ~# a' % ,! h % K= Y$ p _# n -= ^# ,> s> `$ ^# Y$ Z$ 4* w m ^# ^# `$ A /# G ^# C w w 4* 4* G D I z O@ }# F= N G G N G z w B z I 1& E P@ I M J =K M P@ I A q! J I M@ E= |# P@ 1& A S J J S P@ A H E$ P@ A J ` O T T S G H H O@ H 8* ` |; T O@ K@ P 2# J 1# L }; E$ J |# Y H +% ` E$ M@ S T H Y B$ ` I O H S Y O M@ L@ H H D$ S T J P@ L P@ ` T T L' I@ 1# Y J H H$ 3# U J 3& O 3& P J L@ T T 1# I@ U L T H 2# G$ J J J M@ J ` 4# L@ t> L P J J T L@ 3# J H P C$ L@ J T O O 1# ` H L@ Y K@ 4; L@ J P@ S H 3; ` O P@ Y Q@ O H #= M@ 1# H P@ P@ O 8* #= 8* P@ 3; Y A z L@ S I E= +% M Q@ I M E$ G M A 8* I #= M .~ P@ A N@ Q@ F= A Q@ G z x Q@ x m) {& z w G F= w N C B m p 4* z N % {& p D ^# 8- g~ 6' 6' s, s, z, s, x, u, y, u, z, u, y, z, y, y, y, u, u, u, y, y, y, u, v, y, y, u, x, s, u, x, z, v, y, s, s, y, y, y, x, s, u, u, y, x, u, z, y, y, y, y, y, y, y, y, z, x, x, y, x, x, y, u, 8' t, y, y, y, u, y, y, y, y, x, u, y, x, u, y, u, u, y, y, u, x, H) x, # | $# ~ N$ { N$ { ) X@ | ) [ /& ~ P$ ) ~ O$ Z! ~ ## N$ ) ] ) ^ H= ", +"y, z, Mp.+' Mp.Mp.Mp.Mp.Mp.+' +' z~ z~ +' Mp.[: z~ z~ z~ z~ z~ z~ z~ q, *[ z~ 2! z~ *[ z~ 2! vh.|1 z~ 2! xi.98.*) *) 9| |1 *) q, 2! |1 |1 @ <{ 9| 9| <{ <{ ], <{ I/.9| J$ <{ <{ p9 ], R@ <{ <{ J$ J$ R@ R@ <{ R@ J$ 2^ I/ 0' I/ I/ I/ I/ I/ [n I/ = # + 0' = # # # # # # = . # # > Q$ . }, > $= |* ' # V@ =' . + V@ $ $= > & > ' . S$ H= > > Q$ ' U$ X@ . R- & P$ P$ ] > . P$ R$ ; J) ~ ; P$ ; & N$ ; ^& 4 ] ; ; 5- N$ ~ o! Up.{ N$ | X@ < X@ | 2 ~ %= N$ X@ R$ N$ 2 U$ X@ | %= | 4 Y@ d d } 1 4 [ ( < X@ } d 5 &# d N' W@ $# 0 W@ *# 1 } 6 j ( *# 5 d e 5 7 ~# 8 Y> ~# ,# B; a 7 ~# a 5 Y@ ~# 0 0 ~# e 2, n {# Y> / a h _# s> n 8 n n s> c 6 0 L= @= t p n 8 0 ,# Y$ C m Z$ :# `$ `$ h % % V| Y$ p 6* r 2; b' ^# m 1; p r m F= ^# 4* m y t m Z$ {& G A 4* % B D $] G z {& A z z F= F= [# F= N )> G z n! c- 8* N M P@ H$ Q@ N P@ 8* 8* A E$ P@ I H A I E$ x P@ S P@ N S J P@ L@ 2: S |# 4; K@ H$ E$ K@ S +% A M +% @% S H$ M Y *q.P@ T b- J A ` P I P P O@ K@ G$ L@ H S H Y M@ Q@ S P@ Q L@ U H@ P }; L@ Z E$ |# H H H E$ d- L@ E$ J T L@ E$ P Y }; J 2# 2# L@ H L@ L' L@ L' R T L L H E$ D$ 3& |# T 4# A Y H E$ J L@ L M@ P@ V I@ M@ L M@ H Q T S A H M P P@ J E= M Q@ T S P@ J 3; E$ M@ ` Q J M 3# P@ H P@ P@ +% J I S J P@ P@ b- ` Y S P@ O@ @% +% 1& P@ M N@ z A K@ A Q@ w A A A A I {& I I N@ A #= z x z G G b' z #] N 6* N= 8* p /# N z G :# ^# w n^ {& w G :# D [ J$ ^, q, 6' H) x, u, 8' x, x, s, y, y, y, y, y, y, y, s, x, z, y, y, y, y, u, y, y, y, s, s, y, u, u, v, y, y, u, y, y, y, x, u, u, s, x, z, y, z, z, z, y, y, y, y, y, y, s, u, z, u, s, y, y, s, u, y, y, y, u, s, y, y, u, x, x, y, y, x, x, z, x, u, y, y, u, y, +' v, ) { { ] N$ < 2 X@ W@ | ) ] | ] [ [ ~ { U@ | ~ ] ~ ] & ; ; | ", +"y, x, Mp.Mp.Mp.+' Mp.Op.Mp.Mp.Mp.[: z~ Mp.Mp.Vp.Mp.z~ *[ q, q, q, *[ z~ *[ z~ z~ *[ *[ rl.*[ 9i.vh.9i.ql.vh.xi.9i.)~ <{ 9| 9| e^ 2! 9| 9| <{ <{ <{ 9| <{ <{ <{ R@ <{ <{ 9| *) jP jP *) 2^ J$ ;b ;b ], <{ R@ J$ L$ ]& G= I/ I/ R@ L$ [n [n R@ L$ = 0' `Y # + = 5_ K$ # * + $ L$ 0' R- . + ]& . # # $ |* S$ S$ [* (& & .( = + = Q$ > > S$ N$ . $ 5_ Q$ ; . L$ ' ^& $ # > Q$ P$ Gc S$ & %= ; S$ S$ N$ 2 Z! 2] J) & . N$ T- X@ | | | X@ ; > N$ X@ N$ H= N$ ) N$ N$ | [ N$ X@ { | ; ~ ~ /& `@ ## [ X@ < } J] 1 7- D, 1 $# 6 d d [ ( b +# <& 2 ~ d [ } d ## d x0 } 7 ,# 9 } &# 2 ,# ,# D, a i ># e a a e h 0 ~# 0 a 6 ~# c n !# i -# c |& X$ ~# 0 k a ~# {# p h L= p K/ 0- p m r o a L= z `$ s> `$ |& p q r n h m ^# E Y$ w M= 2; ^# ]# w G Z$ {& % :# t b' G m w {& `$ N {& N G ^# t K D N G F= z F= N G /# G w z I G A I G M A P@ I C, Q@ I@ N M x I I Q@ S M J E; A Q@ A M J J H H Q@ A H A M@ H |# #= U I 8* S J M@ J J P@ 1& +% |; L P@ K@ S S +% J M M@ P@ O a- S H E$ Y J Y ` Y 1# L@ =q.Y J E$ H$ J D$ O r! O Y T Y J J P@ ` J T L' H H O 3& 1# P L@ P@ T d- X U H$ V H E$ O 4# Q E$ H P@ L@ C$ L@ r! S J d- L@ J E$ Y H P@ H J S L@ K@ E$ 2& L A H$ J L@ Y +% S P E$ O K@ L@ q! S A P@ H Q@ M O@ N@ J M 4, J 8* Q@ G I A M S 1& N S I A P@ 3# I S O@ O@ M O@ ^# B G 8* I z A A 4, P@ A A x N ^# I w #= Q@ P@ G G w N A D G C w w :# w G 5* y p D % :# t 7 V! `, g] ^, x, x, u, u, y, u, u, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, s, y, z, s, t, x, y, z, y, s, #' u, x, x, y, y, u, y, y, y, u, z, y, y, x, t, u, y, s, y, s, x, s, y, u, x, y, y, y, y, y, u, y, y, u, x, s, u, y, s, u, z, x, z, y, y, u, u, q, 5' - ~ | ) ~ { { [ 2 ; ~ & & 2 | %= U@ | | ] ) ; ; U@ & & [* ; ", +"t, y, +' Mp.Mp.+' Mp.Mp.Mp.Mp.+' 6' z~ Mp.+' 6' Mp.[: z~ z~ q, *[ *[ *[ z~ *[ Rp.*[ *[ z~ z~ z~ vh.9i.z~ z~ 2! ^, Pi.)~ 2! 9| 9| 9| <{ 9| 9| *) 9| 9| <{ <{ <{ J$ <{ <{ <{ <{ J$ <{ <{ J$ V! *) -q.J$ <{ R@ 2^ ;b I/ L$ L$ I/ L$ R@ L$ I/ L$ ]& 0' 0' 5_ # 5_ 0' 5_ K$ # + ]& * # $ + + ]& # + V@ # ' ' 1* [* ;b . # > $ # Q$ . + > $= & + > # o! > - > Q$ > $ $ > ^& o! & ; U@ ; Q$ }* = > ! | N$ Q$ 2 | | U) ; Z! Z! U$ H= ' ; P$ | `@ 2 [ > ; ) | ) | 2 { { X@ ( 4 /& /& ( ~ 2 Y@ } 5 2 [ 3* ;q.2 $# d 2 `@.~ V~ } X@ ( ## 6 a ( } < : d == N' d a 0 c6 {# ># ~# !# 6 e $# 1 ~# ~# e ~# 2 6 ~# i 0 } p 0 ~# ~# ># j L= vk `$ 0 3] 0- L= z: n h L= r h p! K= m p e g n `$ ^# m :# % c Z$ m n -= p Y$ r 1; % D m h ^# /# `$ p h 4* C q w w m ^# ;) w t N G @= Z$ {& A z )> A x A G /# W) [# D N I x z z I E$ A L I G Q@ I 3; |# 1& N P@ A P@ S A M@ E$ 8* H P@ M H {& |; J K@ J J I J 4, M S P@ ` K@ +% 1# S P@ P I M@ z |; 3# I@ M@ +% N@ M@ Q@ K@ S @% C, 2& E$ T H J P@ 2# 8* H K@ Y C, P L@ 1# ` c- I Y T P@ H X T P@ L K@ Y M D$ 3# J 1# G@ L 2# Z >z H@ P@ P ` L@ Q T 3# U T H 3# P S H S H H L@ K@ E$ J T P E$ A P J P@ C, J L@ V 3# Q S S S H G$ J E$ L@ M@ D$ 1# 8* H O@ O@ @% S ` |; O M %> @% K@ P@ 1# M A x G I b- 8* I b- P@ A N z G M G N P@ J 3# I F= I A A {& G G N z {& x w I z K@ D /# G N N w w I w z /# 4* D #] ^# 2; I _# t m /# ^# m G W$ q, 6' =) s, A, y, x, y, x, x, y, y, y, y, y, s, y, u, y, x, y, y, x, z, t, z, y, y, u, y, y, t, x, y, y, y, x, s, u, u, u, x, y, y, x, s, y, y, u, s, u, y, x, x, u, u, y, y, x, u, v, u, z, u, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, s, y, A, 6' `@ / { 1 R$ ) { ; Y@ { N$ ^ ; | | N$ S$ ] ; ~ & > ] & R$ & - { ", +"t, u, 6' +' +' >q.+' +' Mp.,q.Op.Mp.z~ 6' [: +' Mp.6' z~ z~ *[ z~ *[ *[ z~ q, z~ z~ z~ *[ *[ z~ xi.9i.*[ *[ z~ *) )~ e^ q, 2! *) *) *) *) 9| <{ <{ 9| 9| 9| <{ ]^ <{ *) <{ <{ ], <{ I/.J$ J$ *) l) k3 BN G= jP jP I/ ], J$ I/ p9 ]& 0' 0' I/ I/ = I/ 5_ # $ = p9 5_ + # ]& !, + = 0' V@ . # [* # o! 2) + 1* & + . S$ V@ . $ S$ $ . > S$ |* . S$ ; *' . - $= *' U@ ; ; > & V@ > . ] - . $ - & U$ Q$ | P$ U@ S$ %= | ( & P$ &= ) | ) { *# U@ H= N$ > | ; { H= ^ Z@ 2 ~ | | ~ /& $# ~ | X@ ( 2 7- { 2 ) D, d { } ;# 4 4 { 6 $# ( ( 3* D, &# ( /& /& 7 6 N' $# M' d } ~# B; i V) 6- a a d 8 e 0 ~# k ~# n {# n ~# ,> ~# ,# c L= h c ~# o {# g 0 L= o {# a a 9- ~# a s> n [& g h 1; 2, c{ 2, 1; p n `$ /# Y$ m Q{ {# h -) m 4* I `$ m ^# `$ m 2; b' {& :# w Q@ /# F= `$ {& w 2; @= G I I z w I z A Q@ /# z G w ^# w A N M c- M= I %> O z z S M H O@ I P@ H$ P@ O@ A P@ M@ P@ n! A 7* O@ J A A H$ +% S P@ P@ I b- G I Q@ S @% P@ S P@ A K@ 1& x P@ M x P@ E$ M@ S S K@ 4# Q@ J T Y E$ 4# L@ E$ Q U H P@ 2& T P@ P@ H T H ` H J S J Y I@ d- n> S d- &' H Y P@ 8* J M P@ P@ T H I@ Q@ L O J T M E$ 8* J E$ L T L@ H T T M Q@ I M H E$ L T Y J 1# P@ Y M 1# S P@ |# J@ J +% A S Y S S S @% +% S Z I P@ S Y M A N@ I H a- J 1& P@ F= O@ S S I A #= A z Q@ z w N Q@ ^# K@ x P@ A Q@ N z z K K 1& C G {& I z w G N /# #= x }& w t G )> C I G w N G ^# ,! w p {& K B ~& ^# {& t p c Q$ 3_ q, r, s, y, u, x, u, y, z, y, y, y, y, y, s, y, y, y, u, y, y, y, z, x, u, z, y, y, u, y, u, u, y, u, u, u, y, u, x, s, s, y, y, t, x, y, y, y, u, y, z, z, y, u, x, u, x, x, x, x, y, y, y, y, y, y, y, u, y, y, y, y, x, u, y, y, z, u, y, y, y, y, s, y, u, u, q, ^ | ~ W@ { 1 ( Q$ [ ## ; U@ | N$ < 2 ~ { ] U@ H= ] W@ U@ ; Q$ - ;# ", +"y, y: Mp.Mp.Op.X( +' Op.Mp.+' Mp.Mp.Mp.z~ [: Mp.+' +' [: Vp.*[ [: [: z~ z~ z~ z~ *[ 2! e^ z~ *[ Il.Il.9i.*[ 2! $8.)~ e^ e^ 2! 2! *[ *) 9| 9| 9| <{ <{ <{ <{ <{ J$ 2^ 9| <{ *) ], <{ J$ J$ 2^ ], l) r4.]& #S 2^ J$ I/ <{ BN I/ =$.L$ <{ k3 0' 0' ]& ]& 5_ + K$ + #S L$ + # ]& R@ # $ p9 L$ # $ $ k) }, # [* [* S$ ' = [* # Q$ 2) > > & [* & S$ $ $ V@ U@ Q$ . - . S$ U$ ; Q$ & . & & U@ - N$ ; %= 05 %= , 7- g{.Q$ .# 2 X@ ^ ~ H= X@ ~ S$ {c & N$ | { 4 & 2 ## ## 7- Y@ N$ | | ~ 2 & ~ 2 4 ] ~ ( | | 4 ) Y@ 6- } g{./& d /& 2 < d &# } ( ,# d q> $# $# ,# ( 6 a 6 6 ,# 6 a a ># ,# L= a a a M' g e a h ~# 7 6 e a c e L= c{ 0 0 g : ~# !# *= e n 9- k `$ n ,# 9- c Y$ K= ~# Y$ n `$ Y$ e ~# L= h r e r ^# % Y$ Y$ Z$ ,> D n^ D _# % v m 4* h p /# F= /# N /# m w I w w ^# p 2; [# G /# w z M A I Q@ D ^# n! G w w G I )> N K :# J E$ M@ J P |# P@ I M 8* I A 7* Q@ I z I S J S S H$ S H A A }# I Q@ Q@ F= H$ J A A G M@ H$ H$ #= Y S O@ L@ O@ O@ H +% S D$ ` T J@ S M Z O@ S 1# J 3# 1# ` J E$ J Y M@ z H o^ H M Y S T M T Y Q@ O H V M H P@ E$ M@ O 3# E$ 1# J ` T ` P@ D$ P J J Y M P@ P@ P@ Y P@ M Y 7* @. C$ J I@ S H Y Q@ H J Y x E$ Q@ 3# H$ P@ N@ A b- P@ G 8* +% M P@ P@ #= A H$ U M M@ 8* H$ M@ A 8* S +% K@ G K@ A 3# O I G A J J Q@ I I A z z I w I #= N A D /# M M I S G {& G G z F= I A z N F= w G w ^# F= G m F= ^# w D p p ^# w 2; C D ,! ^# ^# p n - <{ +' y: s, s, x, u, s, x, u, u, y, y, y, y, u, y, y, x, y, x, x, y, y, y, y, y, y, z, x, y, y, u, u, z, x, u, y, u, u, u, x, s, z, -! u, y, y, z, x, y, u, y, y, y, y, u, s, x, y, y, x, u, y, y, y, t, y, y, y, y, y, z, x, u, u, y, y, u, u, u, y, y, x, u, s, s, ' ;# [ ~ [ N$ N$ ~ $# | | ; | W@ { ~;.H= ^ ] `@ ~ N$ > ] ; ; > ; ", +"y, t, 8' Mp.Mp.Mp.Mp.Mp.Mp.Mp.Mp.+' +' [: z~ [: +' +' 8' z~ z~ 6' q, z~ z~ z~ z~ z~ 2! 9i.*[ *[ z~ vh.2! z~ z~ |1 9| ^, ^, *) |1 2! Pi.*) <{ <{ <{ *) <{ <{ <{ ;b <{ <{ <{ <{ ], J$ I/.<{ <{ R@ 2^ <{ l) L$ ]^ R@ 0' L$ L$ jP #S I/ ], R@ 0' I/ R@ J$ G= ]& # # + L$ # # + ]& !, # 0' + # + ]& o! $ Q$ H= Q$ S$ =' o! $ V@ . [* > * # . V@ U@ | S$ - & Q$ & . S$ $ |* - . & ; ! & N$ X@ & ; ] ] =' N$ ~ R$ o! - ; & | ] Q$ P$ - S$ N$ ) ## | | ) ~ X@ ~ ~ 2 /& { Z! { ) Z! 2 R$ ( Z! N$ | 2 2 P$ ~ ( / B; V~ 1 } } ## ( $# d 7 < { { d 6- -# d ,# } 1 $# B; b i x0 a 9 6 a ,# a n k {# a 0 ># a == a 6 6 ,# j k ~# 6 0 2d V- $# e a e &# e c j ~# n Y$ Y$ ^# a' c n [& 9- o n p n p h c |& C h n a' m `$ r t t D p p n b' % Y$ p 1; w `$ p t r n^ Z$ 2; :# m 4* w B ^# w Q@ F= 1& N w #= ^# D ^# z {& }# x w b' >= A G A O@ G I a- P@ P@ % z A I N Y A A P@ G P@ P@ A P@ P@ Q@ A N z A I P@ Y M M M@ I P@ 8* H T Q@ P@ M L@ H N H H$ H$ I@ E$ ` S E$ Z Q@ H$ +% P@ P@ ` H$ 3# H$ E$ L@ Y J J A K@ S P@ |# Q@ J |# c- @% S C$ S P@ K@ S I 8* z z P@ E$ M M J 3# P@ 8* T S O H :* L@ Q@ J S K@ J c- T c- |# P@ U 3# Q@ O J P@ I@ b- ` T M A P@ A @% ` O@ O S J H A S J G E$ K@ q2 A b- P@ O@ M P@ Q@ K@ 8* 8* I H$ M H$ A /# z I M z I A #= A G I I O@ N= M w A A G G B x I A I A w A P@ w ^# u A #= I D M= B w 2; N /# `$ :# p {& 1; m D 4* F= N G 4* w D ^# ^# s> ^# ~ J$ q, v, s, s, y, u, s, s, u, x, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, y, x, x, y, z, y, y, u, z, y, u, x, s, y, y, s, y, y, y, y, y, y, y, u, y, y, u, z, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, z, x, x, y, y, u, z, s, . ) ) ^ ~ / N$ %= ~ ; & ~ N$ | S$ > ) > . ; N$ & ^ | | & & O$ ~ ", +"y, u, 8' +' +' Mp.Mp.Mp.Mp.Mp.Op.+' +' [: z~ [: Mp.+' Mp.z~ *[ z~ q, z~ *[ z~ z~ z~ z~ q, *[ z~ 5o.xi.ah.9i.z~ )~ 9| )~ e^ *) vh.ah.2! *) <{ 9| <{ 9| <{ <{ 9| <{ *) <{ J$ 8S J$ <{ J$ J$ J$ J$ *) <{ J$ R@ I/ R@ R@ 0' BN ]^ I/ p9 G= I/ 0' I/ I/ ]& 0' p9 1) ]& R@ p9 + # # Z, # # 0' 0' # # ]& Z, . [* . . ' & [* = (& . ' S$ |* $ = . |* Q$ > $ > . 0' - |* . ; > + . U@ P$ $ > ] U@ ' N$ ~ & 2) ~ ] | & T- %= | - & Q$ = %= X@ ~ ## ; ~ ) X@ R$ { { N$ X@ [ ] H= ~ N$ b{ ; ## X@ <& 2 [ 4 1 ] ,# d ,# 2 6 *# { 7- { X@ /& 6 ## ( } 6- ## Y@ 7 6 i } &# b b d 4 e 6 6 V~ 6 a a a B; 6 c 0 a e i a g < i ,# k c K= L= 0 V$ 7 e c ~# n e Q{ s> 2, ~# Y$ _# Y$ ~# g n q Y$ h ;= o n {# Y$ ,> c ~# n s> Y$ Y$ q ;) ^# m % Y$ c r p 4* ^# h ^# N 2; w w m `$ w m r u h t /# K ^# C I w x F ^# y D p G Z$ D ~& G I O@ w D K M Q@ K@ w A w A B x N N N C >= C M P@ I M M P@ x Q@ Q@ @% S G K 7* A A A N@ H Q@ P@ M S I M= N A H S E; M@ I m) b- C$ M@ Q@ A H$ A H$ Q@ H$ T O P@ S Y S J N@ J E$ Q@ 8* H J S P@ K@ +% O H$ @% E$ P J 8* I #= Q@ J P@ E$ J@ +% M @% L S H c- Q@ J C$ 3# J N@ U +% D$ T L@ H$ 8* O J M A S H$ P@ +% P@ +% J M H O Q@ M T K@ M J C A ` x @% E= Q@ z I M 3# J M P@ A M 8* I M +% S O@ I I A P@ P@ P@ G I G w P@ P@ x N A N K@ #= ^# A w z q2 N G N I z I 2; N N I M -= ^# G w A z Z$ }& @= A ^# w G Z$ G GK ^# N p }& ^# _# p 2; Y$ ^# 6 J$ ^, g] s, =) y, x, s, s, s, x, y, y, y, u, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, ' w, y, u, x, y, y, y, y, y, y, u, u, x, x, y, y, z, y, s, y, y, u, y, x, y, z, y, y, y, x, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, z, y, x, x, u, r, = | ;# { < { N$ N$ 2] 2 ~ [ | %= %= , ! ~ ; R$ & Q$ S$ %= ; U@ ; ] ; ", +"y, y, 'q.Mp.+' Mp.+' +' +' Mp.Mp.Mp.Mp.[: z~ Vp.Mp.+' Mp.*[ *[ z~ z~ z~ z~ *[ *[ z~ z~ [: *[ *[ *[ 2! |1 2! z~ e^ 9| 9| 2! e^ 98.2! 2! 9| 9| 9| <{ <{ <{ 9| <{ <{ 9| R@ J$ <{ <{ <{ 2^ l) J$ J$ ], <{ *) J$ G= R@ 2^ L$ L$ ]^ G= I/ G= L$ 0' 0' 0' I/ = p9 0' 1) ]& 0' X! $ # # $ V@ + = . > . # = . . Q$ Q$ $= > = Q$ . $ Q$ # # = # $ $ . 2) $= - S$ U@ - |* i#.] . . N$ U@ }* ' & ] H= | ~ %= N$ W@ ~ ~ Q$ ~ ; Z! ; U@ S$ ; ~ | . ; 5- H= ; ] 2 | ; Q$ S$ N$ ) X@ & ^ H= Z! 5 ## 4 2 ~ %= 2 [ 4 6 } 7- => d *# /& 2 ## /& 7- < 6 d ,# &# 6 6 $# V$ D, Y@ Z! { ,# ,# 2* 7 a } 7 V) Y> 0 B; d ~# 0 k V$ a ,# o a a ~# ~# L= 7 ~# ~# n 6 ,# 6 ,# c ~# g a a r Z$ A~ K= 0 6 e ]# [& p h X$ ^# s> n >> n h `$ n^ % s> r h ^# m p `$ Q{ m n^ ^# 1; `$ s> `$ _# `$ Z$ n^ ^# Z$ /# Y$ m % G D ^# Y$ m Z$ G G {& F= D /# w ^# t 2; G F= G G N ^# #= I J P@ N F= x I I x C D G N N P@ N S G A P@ S A A I S E= D z A z M Y I Q@ N@ M A A A H$ @% M b- Q@ Q@ Q@ M I A M E$ J M@ 3# P@ S O@ )q.P@ I I K@ T K@ A S 1# 3# Q O A T H$ H$ M S M c- P@ S C, J O@ 1& M H H P@ H E$ P@ @% S P@ T P@ H 3# E$ J O M E$ |# 1& A M @% S L@ #= H$ O E$ b- E$ S A P E$ x O K@ S )> z I M S P@ 7* A P@ T A S 4, I N G E$ I Q@ S Q@ 7* A H$ Q@ P@ +% 8* x H$ 3# 7* I H$ N I w G 8* I F= N@ N Q@ I N W) N G z O@ N m :# I )> w ^# w B G /# D {& D /# G N % m t C `$ @= w y :# ^# t `$ % 2, w Z$ ^# 2, ^# s> k + 5' r, x, s, u, u, z, z, u, y, y, y, u, z, y, y, y, y, u, y, y, y, y, y, y, y, x, y, u, y, y, y, y, y, x, u, y, y, x, u, y, y, t, x, y, y, y, u, y, y, u, y, y, u, y, s, x, u, y, u, u, y, y, y, y, y, x, u, y, y, y, y, y, y, y, y, y, u, A, A, x, y, y, s, x, s' & ~ { ## ) | | ; ) { | ] ) %= U@ | ~ 2 & ] | ] ~ 4 ; Q$ - - . ", +"y, y, 8' 8' +' Mp.+' Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ [: Mp.[: Vp.z~ z~ z~ q, *[ z~ z~ q, z~ *[ *[ *[ z~ z~ 9i.ah.z~ z~ xi.9| *) Pi.*) xi.q, )~ <{ 9| <{ <{ <{ 9| 9| *) <{ J$ <{ *) *) <{ l) ;b <{ J$ J$ R@ <{ J$ R@ ]& L$ L$ 0' R@ G= I/ ]& L$ I/ I/ ;b 0' ]& L$ 0' # # Dv [n 1) # ]& ,Q + 1) # $ . # = $ $ $ ]& + [* 5_ k) ]& > + $ + + # & > > [* > & * $ = - & $ Q$ > > 5- N$ ' N$ | & U$ Z! & R$ ] | &= ) =' %= X@ R$ & ] ; N$ ; X@ 2 H= | ) ] | ~ X@ | | H= Z! - ] X@ ~ 2 [ ~ X@ 2 N$ | ] 4 ~ 1 5 5 V~ ( 5 < *# < -# /& 2 1 [ 5 W@ $# 1 5 } 6- { < V~ => } 9 9 -# a B; 6 6! Y> q> ># 0 {# ~# Y> ,# 6 N' g ,# 0 b ]# A~ j o n n g q> k Y$ s ~# ~# j j ~# c {# ^# p n :& C; t' /# C; e m 4* n^ Y$ {# [& `$ `$ L= Y$ h Q{ D Y$ L= o 9- 4* Y$ `$ 1; ^# n /# h m 1, m m Z$ h h t t m w D p q w m A I n! m F m I G /# Z$ G F y G B M z O@ z P@ A N q w G `$ D M= C M= }# w J 7* I A A P@ %> K@ I I E$ c- Q@ A M K I N H P@ H$ 2& A H$ #= O@ :* +% I K@ J S S M A Q@ @% C$ M K@ E$ P@ x I z P@ 8* I I P@ K@ Y w E$ 1& H 1& M@ H P@ T J K@ J Y P@ M A Y M Q@ O S H J 8* N@ Z H K@ D$ 1# M P@ 8* M H A 8* P@ E$ P@ b- #= H E$ N@ A J ` b- I Q@ b- I N 7* N x I P@ @% O@ G D #= f^ S M@ M@ P@ x I M Y A H$ K@ A T 8* 8* A K@ M@ n! +% M@ G G A z A P@ ^# I I M F= N :# I D x N x z /# M G >= Q@ A 4* D p F= ^# /# z w `$ #] p `$ v ^# D ^# Y$ m N D 4* :# y M= D N C w ^# m ~# ^# Y$ c $ 2! z~ r, x, s, s, y, u, y, y, y, t, v, A, y, y, y, y, s, z, y, y, y, y, y, y, y, u, v, v, y, y, y, y, x, s, y, y, u, u, u, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, x, z, y, t, x, y, y, y, y, y, y, y, y, y, y, z, u, y, y, x, s, s, 8' x, y, u, y, x, s, *) 2 ## ~ ~ %= { $# ] | 2 | { X@ ~ > N$ } ~ X@ .# 2 S$ ^ ^ U@ ~ U@ Q$ = ", +"y, y, 7' !q.Mp.Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.6' q, q, Mp.+' Mp.q, z~ *[ z~ z~ *[ *[ q, z~ z~ z~ *[ z~ z~ 9i.vh.*[ z~ 9i.9| ah.z~ *) 98.xi.*) <{ <{ 9| 9| <{ 9| <{ <{ <{ <{ 9| 9| <{ <{ <{ <{ 9| ], R@ ]^ <{ <{ J$ R@ ]& G= I/ L$ R@ BN I/ R@ G= I/ G= 0' 0' 0' I/ 5_ # # 0' = # Z, # R@ + = = E! # # # $ # .( # + 1* > + =' # . # # !, & . }, $= ; . S$ S$ $= > ^ $ & > - Z, $= U$ P$ $ & | R$ %= ] %= N$ ~ N$ o! o! 2] &= U@ | H= Q$ =' | 2 N$ ) , ; Z@ U@ ## 2 ~ ' N$ { [ 7- | ~ 2 7- H= 7- <& { ~ *# 4 2 } Y@ : { d 2 *# D, ( { ## } W@ 6 ;# [ } 6 &# } V~ N$ 7 *# d d d 6 i $# d ~# 0 [ b a a ,# 0 Y> c ># k c o &# a c {# 7 W$ n a c A~ ~# a a h n L= {# Q{ 3] n }& 0 [& c Y$ `$ Q{ ~# D h Vj r ^# ~# _# h |& Y$ m h p -) n^ C p s> p ,> p m m m G h b' y p l w ^# `$ Z$ Y$ m `$ t G t q y )> w ^# D Z$ D o D F B w D N B N I z {& I Y A ^# {& F= N N G x A 8* <, F= 7* A N O N 7* G Q@ x Q@ I K z w z Y z H M A Q@ Q@ M A @% A z M I A A M A K S 2& M@ A ^# G I P@ |# H$ I P@ +% J K@ H @% ` #= A O@ Q@ z A Q@ M 8* E$ T J J P@ J E$ P@ Q S P@ P@ P@ P@ H$ M@ A P J |# o> H$ z J I O@ I 8* S L ` P@ H P M J N@ N@ O@ A z Q@ S P@ %> Q@ A A F= H$ Y A A #= M@ I A S Q@ +% Q@ P@ }# x M z A M A 8* S x Q@ F= 8* #= N :# z I M B G Q@ N A x N %/ z K :# :# N z ^# m :# I G z m m w t 4* G `$ `$ p `$ w w _# `$ `$ I m ^# m p `$ /# Z$ D 6* 1; ^# Y$ o Z$ m p h l O$ *) q, +' H) s, s, u, s, u, x, z, y, y, u, x, y, y, y, x, x, y, y, y, y, y, y, u, z, x, ' y, y, y, z, y, u, y, y, y, z, u, v, A, y, u, u, y, y, y, y, y, y, y, y, y, z, x, z, y, x, u, y, y, y, y, y, y, y, y, u, y, z, x, y, u, y, y, y, y, y, y, x, u, u, s, *) 2 ## [ W@ 2 ; { ) `@ : N$ ) X@ S$ & S$ < H= ; ] ; R$ S$ & S$ ; S$ U@ S$ ", +"y, y, 8' Mp.!q.+' Mp.+' ~q.+' Mp.Mp.Mp.+' +' [: q, Mp.6' Mp.[: z~ z~ q, z~ z~ z~ z~ z~ z~ &[ *[ *[ z~ *[ vh.ql.z~ z~ *) 2! z~ *) 9| $8.*) |1 9| 9| 9| <{ 98.*) <{ <{ <{ J$ 9| 9| I/.<{ 9| <{ jP jP 2^ R@ I/.;b J$ *) BN 0' L$ J$ jP 0' I/ I/ I/ + 0' L$ I/ I/ 0' + * ]& 0' ]& * Z, $ + 0' R@ ]& 1) # $ # [* # # ]& # $= + . 1* S$ o! V@ V@ . o! . . & $ & $ > Q$ - Q$ Q$ = . . Q$ > $ . & > `@ & & H= o! X@ X@ ] & T- %= 2 N$ T- ] J) 4 | Q$ { ] N$ | | | Z! 2 X@ 2 2 1 7- ; | 7- { [ *# ( { [ 2 => ) | ~ 1 Y@ 7 $# 2 } N$ 2 ## ;# / 6 D, [{ 6 ( 7 6 ,# ) [ 6 d /& 9 1 == 9 5 5 ( } i / [ e 7 $# e ,# 7 a 7 j V~ }{ W$ e n h 0 e ~# ># ,# 0 {# e a 7 n }& C; `$ ,# e V$ h a [& X$ n K= n 2, h ]c o c n L= n `$ p h h 2, D l Y$ `$ p `$ _# h m n^ q c{ ^# h /# h Z$ D % Z$ m ^# 4* w D ^# t I {& w w -= ^# y w <, Z$ w P@ #= H$ c- O@ C ^# O@ z D {& G G B G I w N M= z N G z +% I N C A G @% Q@ O@ N A G Q@ I I S A I #= P@ I A O@ A J w G M@ A S S A Q@ Q@ I I@ P@ z M H$ M K@ z I M S z S b- M @% M M P@ P@ j4 H G 1& P@ H$ N@ A H$ 3# S M S S |# o^ M z M @% K@ L@ J Q@ I O@ H I w A 8* P@ J 3# S L L S Q@ z H O A M A N@ P@ P@ P@ z G M= P@ N O@ M S M@ I b- P@ z 4, N x N z G 8* I x S M A G x I G w I G A I G D w C /# Q@ I D w C ^# N 4* t {& z G G z w D D w /# D 1; p $] m 4* w ^# G D L= m C Y$ ^# p D h ,> ^# `$ Z$ y C t w w `$ V| Z$ _# ; *) r, q, x, x, z, x, v, x, x, s, u, u, y, y, y, y, y, y, y, y, x, y, y, y, x, z, z, y, y, y, y, y, y, y, y, u, u, y, y, z, y, y, x, x, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, x, u, u, s, u, u, y, y, y, y, y, y, u, z, =) s, R@ > ## ] Q$ ~ 2 N$ [ R$ ~ & U@ | [ X@ N$ R$ ~ ; ; > ; ] > (& U$ ~ ; ^& ", +"y, y, q.Mp.!q.Op.Op.+' +' Mp.Mp.+' +' +' +' +' q, z~ +' +' +' z~ z~ z~ z~ z~ z~ z~ z~ q, z~ vh.z~ z~ z~ Ip.vh.*[ z~ ah.98.ah.*) 9| 9| 9| $8.<{ <{ 9| 9| <{ ], I/.9| ;b <{ 9| 9| <{ <{ <{ <{ <{ k3 R@ R@ jP I/..( 2^ J$ I/ I/ L$ ]^ L$ I/ G= L$ = L$ J$ 0' L$ 0' = * ]& BN = K$ + ]& $ # + 0' + T@ * V@ o! . # V@ > S$ $= + # . # . M$ ' $ [* H= . > $ > $= $ P$ . $= $ |* - Q$ S$ U@ & N$ - . > ] | Q$ o! ^ ) & > N$ | & | R$ H= 4 { V@ H= ^ ; > ] [ N$ 2 ~ | 8- ) ~ Z! 2 / ; X@ ) { 2 | ~ /& 1 2 5 4 $# { 6 { /& { <& d X@ [ /& ^ ( 2 [ } e } 7 8 } => == 5 x0 6 ## 5 ,# } } a 6 ,# 7 0 3* 6 e 6 0 i k ]c ~# 2, 0 ~# 0 ># e e a' j [& A~ ~# e 7 n n 0 `$ g [& 6- c h r m L= n o a ~# j h _# p! `! }& c p ^# ^# Y$ h i n^ Z$ |& % D D p ^# m r ^# p p % C; p m 4* w D F= z D t w I D I ^# G m D % D D G D G I :# A 4* w x C I G z z N /# N :# D N G N A z N %/ G w 7* z }# N I G N F= @% Q@ z b- H$ I M N@ G P@ @% x A I ^# G #= I @% Q@ b- Q@ @% M b- Q@ I S H$ S Q@ N@ S E$ P@ G S I A Q@ H$ A I I {& I N@ O@ I A P@ I z n! K@ A O c- M Q@ x Q@ P@ H$ A H P@ }# A C, M %> F= z N P@ M M S +% M H$ 7* A O O@ I A P@ A P@ @% w +% +% G x @% x %/ A I Q@ S x A H b- Q@ N 1& K I I {& B M= F= C N ^# m Q@ N z #= I /# A I w G M N K N w F= t D E #= A G ^# {& N N I N w :# G Z$ z 2; N G ^# ^# r `$ :# :# t G C p n D O' Y$ 4* 4* `$ 5* ^# % r ;) ^# V~ ], [) r, s, x, z, x, y, u, u, y, x, x, y, y, y, u, t, y, y, y, z, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, t, y, y, u, y, y, y, y, x, y, y, y, u, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, x, z, x, q, # U@ - ) ] [ ) ] `@ N$ | %= 2 N$ W@ | | N$ | ) ; [* U@ ; . %= R$ N$ U@ & ", +"y, y, 7' !q.!q.Mp.Op.Mp.Mp.Mp.+' +' Mp.Op.Mp.+' *[ z~ Op.Mp.Mp.[: *[ z~ z~ z~ z~ *[ *[ z~ z~ 9i.|1 z~ z~ *[ vh.ah.*[ z~ xi.xi.e^ *) 9| 9| vh.<{ 9| 9| 9| <{ 9| 9| 9| <{ ]^ ]^ ]^ I/.<{ e^ ^, J$ L$ J$ ]^ 9| I/.=$.I/ I/ L$ I/ 0' J$ 2^ 0' I/ L$ k3 0' ]& 0' I/ 0' = + + BN $ 1) K$ + R@ =[ + L$ + + $= # V@ S$ . $ > > + k) . . $ # $= H= S$ . Wp.k) Q$ ; # = ' P$ S$ . > |* 2) S$ ^ > > ,Q - ; =' ; | | X@ 2 (& Q$ 2 & N$ ^ ] - | ) ] i#.| ^ S$ ] &= 2 Z! 2 ~ 2 2 | N$ /& } *# X@ X@ 7- 2 ] < | 1 ## / 2 { 1 ( < : { ( < *# ~ [ ## } 6 3* Y@ 6- ( ,# 7- 6 Y> :_.6 d ,# N' 3* 5 Y> < 6 W$ a b a 0 6 8 n b i c 0 : ,# L= h 0 a d ,# z: p L= a a' c 9- a h ~# n X$ a 0 a |& `$ s> }& h r n 0 7 e r r Y$ 0- j e h m Y$ r Y$ h -) o h p m `$ p u p G p n Z$ N p u D /# w w 6* q w w D G /# ;) r C D G n! )> F= p D w C u F N C N N G B Z$ }# O@ I A B w {& F= N N G q2 A F= T x I A N= F= N A I I G N x F= O@ w G B .~ n! A m w A G z A Q@ +% H$ 2& J Q@ GK M Q@ a- I G B H$ A I P@ P A Q@ A 8* I I G F= S N@ n! z S 3# H$ z G I I o^ A A I I O J &> Q@ Q@ M H$ H$ P@ P@ I I M A I A O@ 7* O@ N A 8* A N A M I M K@ G G 7* N x D G 7* I F= x P@ Q@ K@ A K@ A x G A z I I z w A 2; G I N 7* I G D w F N I N 2; ^# m ^# C w F C w {& w {& G N G G G N m D D ^# 4* w {& G ^# :# Z$ F @= @= G p m Y$ m t m m Y$ 4* m q t ^# {# h `$ h 1; r a ]& [) r, 6' [) t, y, y, y, y, y, x, y, y, y, y, u, u, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, x, s, s, w, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, x, u, s, t, s, y, y, y, u, u, y, u, y, u, q, [* 2 ] 2 2 X@ ~ ~ > | ~ : ) | N$ | ~ { | ~ ; T@ > U@ ; ^ U@ ^ | 5- ", +"y, y, 7' Mp.Mp.Op.Mp.Mp.+' Mp.Op.+' Mp.Mp.Mp.+' [: z~ Mp.+' +' Mp.Op.z~ z~ z~ q, z~ z~ z~ z~ z~ *[ q, ql.z~ ah.xi.z~ z~ q, vh.|1 Pi.|1 98.$8.*) 9| 9| 9| 9| <{ 9| 9| <{ <{ 9| 2^ ]^ 9| *) <{ ;b L$ 8S <{ 9| 8S ;b l) R@ R@ I/ 0' I/ ]^ ]& I/ R@ *) ]& 0' 5_ 0' ]& I/ 0' # ]& ;b 0' + # + ]& + $ = . + # [* > 2) [* * $ 1* + ;b R@ ' $ . + 2) . $ !, ]& ' & > + $= A; - = & U@ & $ > > * }* S$ U$ > N$ | N$ 05 ; & Q$ U@ Z! ~ X@ & %= S$ | ] J) N$ U$ %= & ; { Z! { N$ 2 2 [ ~ X@ Z! ) | N$ | | 2 { ~ | *# | ( X@ { } { { ( J) $# 4 ] 4 : ,# q> ,# 7 $# 6 1 ( -> { D, /& } d } 6 ># a } 6- 6 7 d Y> 0 k e L= k } ~# ,# ,# W$ !# ~# a j 6 $# 7 L= 0 i {# ,# 0 a O' L= ~# n j a a 6! h c r p o |& n L= 0 a' Z$ `$ Y$ `$ e ~# Y$ ~# o/ r Y$ n h 0- % m h ~# l p `$ D b' /# z ^# D ;= {& /# ^# p `$ Z$ ^# w ^# /# t D C ^# D G Z$ Z$ ^# w G z G N G x x A G G ^# D 2; t G N {& }# N 8* |{ C S C G A ^# I M= N x P@ N ^# I @% #= Q@ z D N x C A N F= }# G w M= A Q@ N@ A H$ N Q@ P@ Q@ P@ I A I A I F= z H$ 8* P@ A z G M I z w {& B N@ n! A S O E$ I 3& S H$ E$ P@ K@ H$ A K@ M@ M P@ Q@ M G #= 1& 7* O@ G A P@ P@ O@ O@ M N I #= M z G A P@ m) N Q@ w {& C C P@ N= w x z w A C N N@ E= A N G B I A O I /# m w b' 2; I w G G I 7* C x A I D x /# C /# N x ^# N ^# V| Z$ ^# {& C 2; m D ^# C C A 4* 4* Z$ t ^# ^# o _# D 2; ^# p `$ Z$ Y$ Y$ _# ,> p h h ^# `$ `$ `$ -) p h l ~# s> e R@ g] q, z, s, z, z, x, y, u, x, y, y, x, u, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, x, x, x, y, y, y, x, v, s, y, u, |) s, 6' s, y, y, y, y, y, y, y, u, H) y, y, y, y, y, y, y, y, s, y, y, y, y, y, x, u, y, x, u, y, u, y, y, z, x, s, u, y, u, v, v, ; ; { { { ~ ## X@ ~ # | [ ] ~ ; ] ' ; %= H= U@ . . > N$ N$ ' S$ & ; ", +"y, y, x, +' Mp.Op.!q.Mp.Mp.Mp.+' Mp.+' !q.Mp.Mp.+' Mp.z~ [: +' +' Mp.z~ z~ z~ z~ q, z~ z~ *[ z~ z~ z~ *[ *[ *[ ah.9i.z~ z~ &[ xi.Pi.<{ 9| vh.$8.*) 9| 9| 9| 9| 9| J$ 9| <{ <{ R@ J$ *) <{ ]^ <{ 8S <{ J$ R@ R@ I/.<{ 2^ L$ 0' (}.L$ J$ jP #S BN V! ]& R@ ]& I/ X! 0' Dv # + 0' 0' $ # # 0' # 0' L$ + + Q$ [* ]& . [* $ V@ [* .( = |* [* $ V@ $ = = ]& . ] . [* V@ . $= > Q$ Q$ %= > U@ & U@ ' H= > ; & N$ ; S$ X@ ; > $ N$ N$ | ; N$ U$ U@ ; 2 | | ] ] N$ g{.) { P$ | ^ 2 ; ] 2] N$ ~ $# | ## ~ { 2 2 ~ /& X@ D, V~ [ D, 6 2 [ 1 *# { ; { 9 N' } 9 { 4 d { } e 6 } ) $# d 9 3* L= J] $# d k ># 0 k 7 3* } b 9 6 3* ~# 7 J] ,# 0 e c d e 0 [& 7 a 7 c L= 0 L= c ~# Y$ 0 6 ~# c L= ~# e c p h ~# n ~# a *= Z$ ~# O' -) {# ~# r y2 `$ 1; % Y$ Y$ `$ w o `$ /# _# c{ C D % h ~# ^# :# ^# m Z$ _# `$ /# Z$ h D ,> w {& ;) D 6* m `$ ^# p ^# G z w S G N t M G F G ^# A ^# D m 5* G N D S N z x N N N {& N A z C C /# M I z N w K Q@ N S P@ A C Q@ z w G w I N I N ^# I z S +% Q@ b- z P@ I @% z I A M b- M @= A I G I ~& G A Q@ P@ }# z M I I A F= z 1& S S A E; M x I A }# Q@ G A O@ A }# G I I K@ M Q@ ` K@ 8* N x G M z Q@ A I P@ b- w G A x m I I N M w N G A K@ O@ w x w z Q@ n! z #= A G {& I G Q@ z x I b- A w F ^# M= z D N /# m b' x D w N `$ Y$ 4* ^# p /# p 6* p /# y m s> G % q `$ Z$ p `$ }& Z$ ^# h /# h r (# L= n o O' s> `$ -) r n o p n o L= f] ^, 6' s, s, s, s, x, y, x, u, z, y, y, y, y, s, s, y, y, y, y, y, y, y, x, u, s, x, x, z, y, u, y, y, y, x, s, u, y, y, y, u, y, y, s, z, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, x, x, y, y, u, z, s, y, y, y, y, s, x, s, q, & ~ %= } | | N$ { | [ { | > | > ~ | %= N$ ; - { U$ R$ > S$ . & ^ | ", +"u, y, z, +' +' !q.!q.8' +' Mp.Mp.+' Mp.Mp.Mp.+' y: [: q, [: +' Mp.Mp.z~ q, z~ *[ z~ rl.z~ z~ z~ z~ z~ z~ z~ z~ ah.Il.z~ *[ 9i.xi.z~ Pi.<{ |1 $8.*) 9| 9| 9| 9| 9| 2! |1 9| 9| J$ 2^ 9| <{ <{ I/.<{ I/.J$ R@ R@ J$ J$ ]& I/ jP I/ BN J$ 0' 0' I/ 0' I/ 0' R@ R@ I/ L$ + # + I/ ]& # # L$ =[ $ 0' + # k) 2) $ # + . > . ' 0' U@ ' . * V@ Q$ $ V@ $ A; > V@ $ . H= > * S$ S$ > ; . U$ > & > ] ] & %= P$ Q$ . ) %= o! | ] ]& ; N$ X@ Z! ~ U@ & & ] ; & ] | & { (& | H= ; T- ; { *# N$ { 2 2 2 { N$ 4 { } 4 d } 5 [ *# N$ { X@ ## 4 [ == *# { ## D, b d 8 d ( /& d d Y@ ( d 7 V~ 6 a == 6 6 / B; g V) } Y@ j c X$ 6 d ~# a ~# g L= ~# e [& c b C; k 8 ,# j g L= {# c k } n m h e 0 $# O' Q{ 0 c a ~# 0< c n 4* L= L= [& n -) `$ m y2 ^# c [& m ,> s> u ^# f r ~# ,> Z$ Z$ 0- Y$ ,> r Z$ r ^# `$ r y w D t h ^# D `$ ^# y C D C ^# C D t Z$ 1; :# {& /# ^# #= % G [# ^# N G 7* N M= C D I I C G B B 7* N m w N I Y N@ G /# G :# I N I A N A G '> {& Z$ /# Q@ Q@ z O@ B N z N N z G I M Q@ A I G A M z z P@ z b' z M I P@ A T^ P@ I z N z #= N w I B w M A G N@ Q@ Q@ P@ .~ M@ M P@ N Q@ o> b- q! m) E$ I S 8* A N K C z N 2; M= x x G A ~& M N w m G I z x G {& A Q@ z G z x N A B I G N B m w x B I w D N x 4* D /# z N ^# b' % m h 2; :# G s> m w `$ :# {& % m D N m G D D Y$ N G ^# m ^# `$ r D ^# p m n Z$ ,> n Y$ Z$ h `$ p r `$ K= L= o `$ 0- e 8 R@ 5' 6' s, t, s, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, t, x, u, z, z, y, s, u, u, y, x, s, y, y, y, y, x, y, y, t, z, y, y, y, y, u, y, u, u, u, y, y, y, y, y, z, x, u, y, z, y, z, u, x, s, x, y, y, y, x, u, y, y, y, u, s, x, x, ], | { *# 2 W@ ~ > 2 | ~ ) ] | & Z@ . ) ] U@ - > (& ] ] & R$ > N$ 5- # ", +"y, y, w, Mp.+' +' 8' Mp.Mp.Mp.Mp.+' Mp.Mp.Op.8' Mp.[: z~ z~ Mp.Mp.[: z~ z~ z~ z~ z~ z~ *[ z~ *[ z~ z~ z~ q, z~ 2! vh.*[ z~ ql.$8.98.5' *) 98.xi.<{ <{ 9| 9| 9| <{ *) <{ <{ 9| <{ 2^ ]^ I/.I/.l) J$ l) L$ R@ G= ;b J$ R@ L$ I/ BN 0' ]& R@ R@ ;b I/ G= 0' I/ 0' ]& 0' I/ ]& # # ]& ]& # # ]& = + + 0' + V@ H= S$ ]& + Q$ [* > + 5- $ 2) > . . > ' 2) $ + > - = > > & Q$ . ' $ ; . $ U@ - + H= ] > U@ & |* S$ ; & ; & - > N$ - ~ U@ . X@ W@ ; *# & N$ N$ ~ Z! ; 2 |* [ | ] 2 ^ ~ > | 2 } 2 H= ) X@ *# F:.) /& ) [ ( $# ~ /& I= /& ( D, $# [{ { /& ## ) / J] 5 d ~ } 4 V$ 7 6 /& 2 3* => / d 1 [ x0 5 *= Y> d c Y> a' 6 q> a 9 ,# tA a a ## *= 7 d c j a ~# ~# {# a' a ~# {# c{ a c e 8 c j s> 1; r c o c ># h p 0 Y$ L= ~# n n L= h h {# p C; ~# ^# _# 0 n D ,> ^# p p }& y `$ w `$ ^# w D D p [# z Z$ w % ,> `$ r r ^# D :, D w `$ `$ `$ :# I N N M= G G p D N {& {& ,! C x M= ^# I C 7* x /# N F w G B B D F :# G )> D A A z B S N G I G w G D A O@ w F= D G x N /# G G G C I A N A H$ Q@ A A x N z P@ N G K@ I G B O@ H M N E; I #] C 2; D N z B E$ I N G A x 8* G A I G x I A G G G S H$ Z$ I z A a- M= D w N N #= K G M= G N I G Q@ N w z x w x N I w }# w % K@ A z I w N F I Q@ G D m N 1; w N B D I D t D :# D 4* G Z$ ^# 2; ,> m y N m `$ q w t G w ^# D Z$ ,> p 4* p _# r ^# p p s> t _# L= n p Y$ m `$ C }& (# `$ n L= h m L= s> 8 R@ 6' v, x, x, 8' y, s, u, z, y, z, u, u, y, y, y, y, y, y, y, y, y, y, y, u, z, y, y, y, y, y, u, y, y, y, y, y, z, y, u, z, y, y, z, z, y, y, y, y, x, z, x, z, t, u, y, y, y, y, y, x, x, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, u, u, z, u, J$ ) /& %# [ U@ ~ U@ ~ W@ ) | ) | { N$ ] | S$ S$ $ ; & & ; - ; }* ' . ; ", +"u, t, {q.8' s, +' ,q.!q.Mp.+' Op.Mp.Mp.Mp.Mp.+' Mp.+' Op.z~ Mp.+' Mp.6' z~ z~ z~ z~ *[ *[ z~ z~ z~ z~ z~ z~ z~ z~ xi.9i.z~ z~ $8.$8.|1 *) e^ |1 <{ <{ <{ 9| 9| 9| 2^ 9| *) <{ <{ <{ J$ <{ 8S <{ 9| I/.I/.<{ J$ R@ L$ ;b R@ BN L$ 0' I/ R@ #S BN #S R@ .( 0' ]& R@ 5_ 5_ I/ ]& + = 0' + $ + ;b # Z, = + . ' + ]& + # $ # V@ . 2) . $ # = # [* L$ + . 1* $= $= S$ . = ; %= Q$ P$ ; ; . U@ > > & ! N$ > & > 'W U@ ; H= & %= N$ | > > Q$ N$ { ^ & $ & > 2 [ ( Z@ N$ ] | | ~ ; H= ; P$ .# & ) Z! 7- 1 $# d J= 2 /& W@ { d ,# < *# 6 { ; /& { ~ { 2 $# ,# $# 1 d } ( ## } I= ,# 6 /& a ( e a b 7 a 1 ,# ># d e a d 9 9 $# a ># ,# 6 e 7 a 0 ~# V$ i -# 7 7 9 q> n ~# vk K= n % 7 $# a a s> n _# ~# $# 7 j h h e n e [& L= c C; [& e c % p 0 Y$ h s> Y$ ^# s> `$ ^# Y$ p 1; 4* m h m w y m c Z$ m Z$ /# /# ^# n p Z$ G c{ ;) `$ }& ^# C D M= n! :# N z F= G /# G C ;= D N C C GK ^# /# D Y$ B N ^# I G G A G I w w F= I I P@ m /# I C F {& #= G B t N z z A x G }# A Q@ G I %> b' {& I {& G N x N= A I x A w 7* F= {& Q@ }# F= N N I G ^# E$ K@ {& /# w t )> 8* w I A G Q@ N N M N@ z G I E$ M z I z M I I G I I |{ C #= Q@ N N C I C :# N #= I A N G N M= {& N N w A t :# @% G x ^# Q@ {& /# ^# % G D }# F w :# ^# D w m D Z$ m N ^# G :# p y :# m Z$ Z$ Z$ % ^# t ^# `$ ^# `$ ^# G c D p m p q p c Y$ c p o ]# Y$ m n E, L= Y$ {# 2, L= r r }& m e r h c c p n # 2! +' x, u, s, y, x, y, x, s, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, z, y, s, y, z, x, y, u, u, s, H) u, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, y, y, y, y, y, y, y, y, u, A, x, s, ; ~ ~ [ ) [ | 2] U@ N$ ^ N$ N$ X@ ] ] ] ; S$ Q$ & ] ; > . ' > 2 | %= ", +"y, t, ]q.!q.8' +' !q.!q.+' Mp.Mp.Mp.+' Mp.+' Mp.Mp.+' Mp.z~ Vp.Mp.Mp.Mp.Vp.*[ *[ z~ z~ *[ z~ z~ z~ z~ z~ q, z~ z~ ql.vh.*[ 5o.2! $8.|1 *) Pi.9| <{ 9| 9| 9| 9| <{ 9| 9| 98.q, 2! <{ J$ <{ <{ <{ <{ 9| <{ <{ J$ J$ l) L$ .( ]^ R@ I/ BN BN BN *) <{ V! G= I/ I/ L$ 0' 0' 0' 5_ V@ + L$ L$ # z] + + $ + ]& + # V@ # 0' ]& # # + + + 2) 1) . . = Q$ Q$ $= - # - ]& - (& .( $= |* [* . |* S$ . ; & ; Q$ O$ V@ . Q$ > P$ & & & %= ] X@ - ' ^& T@ & ; & P$ Q$ T- ; & { 2 | X@ R$ > ] N$ U@ | | ; H= N$ S$ ; 2 X@ { /& 1 < X@ { ~ Y@ d ## < 4 2 2 ( ) T- ( $# ( ## ( d 1 / { N$ { == [ d } Y@ b 7 6 $# 6 8 V~ 6 o ( a ,# 0 ># ,# ,# ># c 0- 9 X$ 0 6 ~# a 6 X$ a ,# 7 } 7 8 c a F! 7 2, 6 ~# ,# n i a ># V$ ,# ~# 0 L= h _# s> K= h Q{ c p -) K= ~# L= Y$ L= s> r Y$ h o r z: p 0- h Z$ Y$ h r q [& m D Z$ o `$ r z Z$ C r h p `$ `$ y ^q.t `$ ^# ^# C y Z$ z D C ^# M= 4* N h G {& }# m 4* N 4* C N A ^# C D N A I G N N N V| z q F= N N G ^# N {& I x /# I G /# {& N z I I A A A G N 2; Y A B N G D N x z G ^# /# ^# G F= A G F= G I /# Q@ N F x G q! z w ^# D G /# K@ x G q2 8* E$ B 7* x N 6* G N M z A )> z w Q@ x G C M I N N N z I A Q@ N A N B t B GK D G z w N A D 7* x D G D F= ^# D C w D Y$ G m D A b' N ^# Z$ N ^# G 2; D t q m ^# D C D V| Y$ _# p Y$ m `$ m 4* n^ % C D :# n^ L= t' /# Y$ r p `$ `$ o |& n 1; Y$ }& |& 0 n L= g n C; _# g L= c ~# {# K= *> g~ r, x, x, s, x, y, z, y, x, y, y, y, u, u, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, u, y, u, s, x, y, y, u, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, r, ]& S$ | ~ ) ~ { / ] & S$ ] ] > Q$ ] ; | ] ; ; ; & S$ . > & |* S$ ] - ", +"y, u, x, !q.Mp.8' 8' !q.+' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' +' +' z~ z~ Mp.Mp.+' Mp.z~ z~ z~ z~ *[ *[ z~ z~ z~ *[ z~ z~ q, ql.vh.9i.z~ e^ ah.xi.<{ Pi.*) $8.xi.*) 9| *) ], <{ 9i.9| 9| *) <{ <{ 9| I/.<{ <{ 9| ;b l) I/.<{ 9| ;b J$ R@ ]^ I/ jP BN 9| BN <{ L$ I/ I/ I/ 0' G= 0' 0' 0' L$ I/ * 0' # . # + % }, ]& $ % # + 0' L$ + + . # V@ L$ ]& > . = ]& . $ $ [* . & L$ !, # $ # |* = $ & ; Q$ 2) > o! k) $= [* - = $ - o! (& - | o! | Q$ . U@ R$ U@ S$ ] H= X@ ; > > 05 & Q$ S$ ' > ; ~ ; Q$ H= ^ ; ] ; N$ X@ N$ } Y@ | { *# ~ : ) /& } 8 2 Z! ( 2 ,# } -> I= ,# d 7 $# ( { 2 8- 6 } d N' 9 } 0 ,# i / } 6 k a e b 6 8 7 ,# a ~# ># a {# 0 7 c 0 k ~# i k h e ,# 0 i i n e b ~# a' ~# 8 0 n g ># 8 9- 7 j -# k _# ~# ;= 9- h ~# h h {# K= Y$ n ~# m h % p ~# Y$ `$ `$ Z$ _# Y$ h xE n ]# ,> C; m c `$ ,> G t GK D :# r o Z$ `$ ^# ^# _# c{ /# ;) Z$ M= A F D M= B ^# m Y$ G :# C {& :# G w D p y w ^# z G w G :# ^# x N= /# 7* w #] I w w K@ I Z$ :# N 2; N F= C I z A N N F N F= G x ^# x w G D G 4* ^# ~& D w 6* G w A z I K@ I I ^# a7 w G x B 5* N B w I F= /# I z {& x E= I x N 3# w Q@ Q@ D D x G G x w G I :# D G w I A I D G I {& I w w {& B w N >= w x {& D N G t G t G S C ^# w G 4* :# h 1; N 1; D G D C D E= Z$ p h A t m p y2 % D N b' D h q X$ `$ % 4* `$ ,> w p q 6* ;= b' {& Y$ 4* m p ,> c{ b' {& t h [& h D -) h X$ Y$ {# W$ `$ h n c{ h c o e n h ^ 5' s, H) x, x, s, u, y, y, y, y, y, u, t, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, x, u, u, t, s, s, y, y, y, y, y, y, z, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, r, # ] | ; 4 ) ] W@ S$ ~ ; ^& $ ] ; ; ^& ] ] ^ ; - 2) & . V@ * Q$ * Q$ * ", +"y, u, x, !q.8' Mp.Mp.Mp.8' Mp.Mp.Mp.>q./q.Mp.Mp.Mp.Op.Mp.Vp.z~ z~ Op.Mp.+' [: z~ z~ z~ z~ *[ *[ z~ *[ *[ *[ z~ z~ z~ 9i.vh.*[ *[ 9i.2! |1 Pi.|1 xi.xi.<{ <{ *) 9| <{ *) 2! <{ 9| <{ J$ 2^ <{ 9| <{ 9| I/.;b ;b L$ ]^ R@ J$ J$ J$ R@ I/ I/ G= I/ G= ;b I/ L$ ]& #S ;b J$ 0' Z, ]& K$ + = # `Y # .( R@ # L$ 5_ # . + $ $ . . Q$ S$ |* $ ]& > # # . V@ ]& = |* . + # ]& + !, = > |* H= + . $ & & ; ' ; R$ > S$ Q$ > . o! > $ = . | U@ > ; | . ] ; & S$ | =' ) ^& U@ N$ { ) U$ %= ) ~ S$ ~ [ N$ & > | { ~ [ 7- 2 [ *# J= &# 4 1 5 { ~ ~ 05 { } } 5 { ( } } ( { { { 2 ( => D, G9 ) 5 Y> d 7 Y> d 0 a Y@ e < 9 ># ( V~ ,# 7 ,# M' 0 4 7 b d a 8 a 0 0 ,# o e 8 j e a h L= Y> a 8 L= [& ~# ~# o n n ~# 6 n X$ L= ~# X$ ~# C; c L= A~ Z$ c s> C; c ,> o p h ~# m o ~# C; n p n n `$ Y$ p r p /# _# D D; w `$ w r /# q q Y$ Z$ `$ /# C p w y G D G z N :# ^# D ^# D w D 4* ^# Y$ p t ,> C C C w G 4* G ^# {& ^# }# {& m z N ^# C C w C Q@ G {& M= ^# m w w D t G q C w x G G z B ^# I /# I E; A z A W) z I z w F= F= N A z G N= z G I N P@ I F= I O@ {& G B G N N I N= N %/ N x A G A }# w :# ^# % C x w x /# B F Q@ D q I G x G E; H$ A {& {& >= w I @% w x D w B D :# Z$ m C Y$ }# D w y I I ^# G p h p Y$ p m D ^# N p D w 4* C `$ O' Z$ `$ G D L= D ^# ^# -= Z$ w t 4* p C `$ 1; n ,> m 4* r e c `$ }& Y$ L= ]# % c 0 e o |& p % h L= a ># 8 j c _# ,# ;# 5' r, x, s, u, s, +' w, z, z, x, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, x, u, u, A, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, z, y, u, u, u, 6' Q$ N$ ~ { ) U$ U@ S$ U$ # N$ . ; N$ ; - ; ] N$ ~ ; U@ . S$ & & . & > T@ $ ", +"y, y, x, !q.+' +' +' +' !q.Mp.Mp.Mp.Mp.Mp.+' +' Op.Mp.Op.z~ z~ z~ Mp.Mp.Mp.[: e^ *[ *[ *[ *[ *[ z~ z~ z~ z~ *[ z~ z~ z~ vh.z~ z~ z~ 2! 9| e^ Pi.98.ah.2! e^ z~ 98.9| 9| V! *) 2! *) <{ <{ 9| 9| <{ 9| <{ J$ <{ L$ ]^ L$ I/.J$ G= I/ I/ #S R@ L$ I/ I/ L$ R@ 0' 0' I/ L$ Z, = 0' $ # 1) # # # }, k) # = ]& + + J$ % + V@ > = $ 1* ]& $ $ |* T@ 0' ]& . *' P$ ; # > H= > > Q$ $ - $ . > Q$ ' U$ - ; > %= > N$ Q$ > !, > U$ ) | Q$ ; & > Q$ | X@ ~ > ; & =' ~ ; H= | 2 N$ ~ | | [ ~ | H= ; %= X@ ) 2 { ] ) { => : [ D, / { ~ ( 'W 2 ( ## 2 } ( 7 ,# { 7 ( 2 3* [{ /& *# } { $# 5 /& Y@ q> 4 d ( 5 d $# 6 7 Y@ 2* $# 0 ~# 6 ,# a i 8 a /& 7 } 7 &# == g e a d ># n 6! e b 0 e -# 6 2* 6 V$ o 0 g j h W$ n {# j a $# L= ~# `$ ~# g e g ,> c n 2, n o h ~# l r n y r [& K= ^# 6! (# ^# :# q 4* `$ h l s Z$ t `$ p D `$ q _# {& t Z$ p y `$ p f^ C G ^# D 4* p r h 4* 2; Z$ _# ^# ^# p G :# p /# A m ,! M= {& G w w w F r D D G M= t G I C G B G m t G G q2 N= z w N@ N G M= N A I M Q@ w b' A N m D 4* H$ G G w G {& W) I G G B G I w z G I N= z w Z$ w /# t G w G G N N F D w w }# z % y G G x M= {& w A A :# t A I N N m y w A I @% G m n D N N I N w x C {& G ^# N w G N G p m C G w D 6* G w D D p G M= `$ 1; C ,> /# Y$ f^ B w I b' 1; m p `$ ^# D Y$ ^# Y$ D p e h q `$ 0- m L= o a K= e n _# K/ r e n e n a !# 0- a e ~# b :& X$ 6- a A~ 1 *) q, x, x, s, s, x, u, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, u, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, u, u, z, y, y, u, y, u, u, y, z, y, &[ | | | N$ X@ S$ %= 2 ~ | N$ ] ~ | |* N$ S$ S$ S$ ~ $ . S$ . > > o! > & N$ }* ", +"y, y, z, !q.8' Mp.+' +' !q.!q.+' Mp.Mp.Mp.Mp.Mp.Mp.8' 8' 6' z~ z~ Mp.+' Mp.+' z~ z~ z~ *[ z~ z~ z~ z~ *[ z~ *[ q, z~ *[ Il.ah.*[ z~ 9i.xi.<{ e^ 9| $8.$8.<{ 9| 9| <{ 9| 9| *) e^ *) <{ 9| 9| 9| I/.<{ <{ l) <{ <{ R@ I/ J$ l) R@ BN L$ BN I/ *) 2^ ;b jP R@ 0' 0' <{ jP ;b 5_ =[ + K$ # + K$ # + 0' L$ G= V@ [* + # . + + + # = > + # 0' $= $= + + # # !, ]& $ > k) 1) $ |* 2) S$ $ ' $ U$ U@ %= ^& U@ U@ & U$ ] + . > N$ Q$ > ] & ] > ; > Z@ ] Q$ Q$ - I= ] & Q$ H= ; 2 N$ ; ~ ) Q$ R$ ( N$ [ ] | ) X@ N$ | Z! ^ 05 8- ) d ~ { 4 6- 2 /& 5 { 2 ] ) 1 ( ## } } == b a ) /& } 2 == 6 d 2 d ~ 5 $# / ( } 7 6 a ( $# d ## 5 ~# } *# a a 3] $# j 0 8 -# 6 c a' ~# e c {# }{ 6 ,# 7 3* c 7 $# 8 i L= X$ h f [& Q{ k e e ;= tA 2, c o c n 8 h L= p n^ ~# Q{ h c Z$ n e `$ o 0 h p ~# n Y$ `$ 4* ,! Y$ h o Y$ q (# m u m X$ ]# _# ,> D W$ q :# y p r p Z$ p G p G p `$ D h Y$ `$ y ^# `$ t `$ `$ D M= C I C m D <, I G G D t D G D M= C C D }# t D ^# -) w w /# G F= Z$ ^# A G z A A 2; w I p 4* {& %/ w {& /# ^# N x ^# G /# 2; w z /# G z G D I I <, m I m) F= w w G %> N N A D :# N I ^# G I A /# G N w `$ % G C {& B F D G C I z D D m B N z #= B /# }# I N N ^# /# z 4* w t w /# w G B Z$ Y$ 6* 2; Z$ w {& t N z G q (# s> 2; ^# D {& D o p 4* ^# Y$ m m s> `$ Z$ (# }& p p D Y$ t 0- e Y$ c Y$ 0- Y$ c Y$ `$ Q{ X$ g Y$ a o c `$ Y$ }& c s> X$ 7 0 6 ~# g c a g j s> # x, x, x, s, s, y, z, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, z, y, x, z, y, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, s, u, u, x, s, 7' v, J$ | H= S$ & [ ; ~ [ S$ N$ ; & ; ] & Z, ' Q$ ; ' . ; T@ > ~ ' | A; |* * $ ", +"y, y, u, (q.(q.Mp.+' Mp. q.!q.+' Mp.Mp.Mp.Mp.Mp.+' !q.+' +' [: z~ 6' Mp.+' +' +' z~ [: z~ *[ z~ z~ q, z~ *[ z~ *[ z~ q, ql.vh.Xp.*[ z~ 2! |1 e^ <{ |1 vh.|1 *) *) <{ <{ *) 9| <{ <{ <{ $8.9| ]^ <{ 8S 2^ J$ <{ I/.R@ L$ .( J$ s' jP BN J$ I/ I/ L$ L$ [n 0' R@ ]& J$ 0' R@ 5_ I/ ]& + # #S + # K$ L$ k) # = = 0' % $= [* + + > @ # - + 0' . V@ $ L$ + # $ $ $ R- . Gc $ V@ o! > ^& S$ $ - . S$ ] ; & S$ ; > . [* Q$ %= Q$ R$ T- ; N$ . U@ S$ ~ { ; ' ^& ; . ] - S$ & ; > ] ] | { | ) & ] U@ R$ N$ R$ *' N$ 4 T- Z! ;# [ 1 ] [ d 1 ~ ;# | [ $# < ) | ## d /& / 6 b /& } 5 } V~ } } 5 $# Y@ 0 a } 6 3* 6 $# 6 8 6 ( 7 ## k } q> k c k a D, a d ,# a &# g 0 ~# ~# $# c 7 ~# ,# *= c i i o a c V$ h n 9- e 0 $# a j 8 ,# i a `$ a' {# j C; !# g c ~# L= h [& 0 l o ~# c h [& h j c h Y$ :# v e h `$ `$ _# `$ m f^ Z$ ~# n r y _# ^# p m n (# O' M= /# ^# :# :# h p F= /# ^# D `$ #| p Z$ <, n^ :# `$ ^# F m 4* j~ }# D :# G `$ D Z$ w C M= w {& G C Z$ D w C ^# :# N 4* x I B y N= O@ N M= w C /# N D N w :# Z$ m G b' ^# D m m `$ z ^# {& /# /# G m B G z G D G I D % 1; D 2; B I G A N ^# C 2; C t D M= b' D `$ y M= M= :# A F Z$ N@ C w N C /# &> D w G C D G B I w G D `$ G 1; D C D I % {& m C G m m 4* w ,> q :# m G t w ^# -) `$ GK `$ D D h p /# :# m ^# ^# E, m }& ^# Y$ C; A~ l t ^# Y$ Y$ C; h a' p q c ~# _# C; Y$ o ~# p 0 f j L= X$ ~# n 0 `$ '# c 0 c q> 7 8 e o T@ q, =) s, s, s, u, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, z, u, y, u, y, y, y, y, y, z, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, y, y, y, y, y, u, y, y, y, y, y, #' u, u, s, u, 6' $ & H= > U@ | Q$ 2 ~ ; | ; ] N$ R$ N$ . T@ P$ ; . Q$ ] S$ & Q$ . $ $ Q$ ] ; ", +"y, y, u, 7' 7' !q.Mp.+' Mp.!q.8' +' Mp.Mp.Mp.y: +' Mp.Mp.Mp.+' q, z~ Op.+' Mp.Mp.z~ [: r, z~ q, z~ z~ *[ *[ *[ z~ *[ z~ z~ |1 |1 *[ z~ Ip.q, z~ Pi.2! vh.vh.2! *) <{ <{ <{ 9| 9| 9| 9| <{ 2^ R@ <{ <{ <{ 9| <{ 8S J$ .( L$ <{ I/.<{ *) R@ BN ;b BN J$ I/ I/ L$ L$ I/ I/ L$ 0' = I/ 5_ K$ I/ ]& 5_ 1) # Z, K$ # = 0' T@ & k) ]& [* > T@ $= ^& [* p9 1) + ]& # V@ V@ Q$ + - > . . > $ . ! U@ = & $ = & & ' V@ {c U@ . . ' ! . Q$ U@ N$ Q$ ~ U@ ] H= ^& - * $ & $ ~ & . H= ~ 2 | ] ~ S$ ; ^ ; %= | X@ ; ] ; R$ 2 ( [ 2 X@ X@ U$ ) == *# ) d 2 { [ 2 N$ | } /& ~ [ ,# 6 6 6 /& X@ ( 4 *# /& { # a d ( { 6 1 : == $# 6! 6 7 `@ ,# 7 L= [{ b e c ~# V$ 0 ,# !# a 7 $# q> a 7 {# k g e 9 8 $# 0 e e } $# 7 Q{ e _# A~ 7 0 h o *= ,# ,# r i ~# 0 xE n h n a a !# W$ c o C; h r h z: `$ r p Y$ n p }& a p c ]# q r /# `$ h Y$ ^# r 1, m <, Z$ ^# `$ D ^# w p y `$ `$ o m p m n p y w j~ `$ D Z$ G n^ `$ ^# t m `$ C ^# N y N C /# D w ^# G t 5* 5* F q ^# D b' w N /# m 2; :# t ;= )> G M= w }& D @= w z F= b' ^# `$ G C /# m r 6* M= N % t F w m 2; O@ G q2 N G w F= D w G D t w C D )> <, w /# ^# I M= D G ^# C % B /# m D t D D D t 1; :# ^# w D `$ D -= V| m {& I N K N 4* m C 4* q D Y$ s> t ,> /# Y$ Z$ t 4* ,> 4* `$ 1; t ^# ^# {& ;= `$ /# m z D p m 4* (# p h -= L= 1; t p /# F m p h Z$ r ^# ]# ~# 0 C; e A~ c r 9- c c n o c L= n 8 j n A~ o n [& ]# o e k c j K= K= &# 7 ;# 2! 6' s, s, z, x, y, y, y, z, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, t, y, y, y, y, x, s, v, x, v, + N$ S$ `@ | > S$ P$ ] Q$ H= . ; & U@ - - U@ U@ & %= > . Q$ ' # & S$ S$ {c S$ Gc ", +"y, y, y, 7' 7' _q.+' Mp.8' 8' !q.+' +' +' Mp.Mp.Mp.Mp.Mp.+' Mp.[: z~ z~ Mp.+' Mp.q, z~ z~ q, z~ z~ q, z~ q, z~ z~ *[ z~ *[ .q.Il.2! *[ *[ z~ *) Pi.e^ $8.xi.9| *) 9| 9| 9| 9| 9| 9| <{ <{ <{ <{ <{ I/.<{ <{ 9| <{ J$ R@ J$ 2^ <{ jP <{ ], 2^ J$ BN 9| G= I/ I/ I/ 5_ I/ I/ 0' I/ 0' 0' K$ 5_ I/ 0' * # + # K$ L$ 0' # ), [* ]& ]& V@ + > ]& 1* [* $ $ - . . # $ ' V@ U@ . $ > ] S$ ,Q . . X! = . [* $ & S$ U@ H= R$ & ] S$ 2 2) N$ U$ ; N$ ' Q$ S$ %= U@ U@ - $ ~ > > ] ] N$ > X@ ~ P$ ) ~ o! - 5- U@ & T- X@ ; P$ { ~ # { 2 7- W@ ( 1 [ D, V~ { ; 7- ## X@ ## 5 ( ( ; U@ ^ ## X@ { { ) } [ X@ ~ 4 ) ,# 6 } < 6 } e ## a 6 &# ,# [ $# 6 0 &# a } ,# 9 $# b $# 7 e e a ~# 0 ~# } b i $# 5 a e k $# q> ,# *= b 6 M' e i j c p g -# ~# e e *= ~# n L= 8 e |& X$ 0 Q{ c 9- L= o g h p ,> r 1; p p |& a % r h ^# O' r `$ ^# q p h ^# p h r p Z$ :# `$ z `$ O' D C `$ D I B m t y D m m Z$ w G G 2, D N N D q p D GK N ^# :# 4* Z$ G {& C ^# -= {& C ,> D `$ Z$ 4* D ;) m V| D q D D w 2; G B 4* B G w C B w m t ^# /# G m <, ^# :# 4* w 2; G G z )> I G G C G `$ Z$ ^# ,> G ,! x ^# w /# N= C :# N ^# w D /# M= z B u w w t m p G M= C D -) Z$ `$ C Y$ w ^# Z$ z :# -= Y$ G w G D % ^# 1; % C L= `$ m -) m G w t h p t :# 4* p p % N C; w Z$ a p 9- s> `$ p n % n `$ ~# tA u % Y$ L= L= m s> n n n &# b A~ ~# 0 n a 8 ~# `$ g o c r p e 0 n L= 0 i a L= 2, o g 0 b V$ a 7 *= &# ] 5' 6' v, u, z, v, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, s, u, y, y, y, y, u, x, u, =) - ^ ~ ] ~ ; U@ U@ P$ | ~ ' ; & S$ & - ; . ; - - # # T@ * U@ - . + > ; ", +"u, y, y, 7' !q.!q.!q.8' 8' y: Mp.Mp.+' Mp.+' Mp.!q.Mp.Mp.Mp.+' !q.[: z~ Mp.Mp.Mp.6' Vp.z~ z~ z~ ah.z~ z~ *[ *[ z~ *[ ql.*[ ah.|1 ah.z~ z~ |1 $8.Pi.)~ |1 xi.$8.)~ *) 9| 9| <{ <{ 9| 9| <{ <{ <{ J$ J$ 9| 2^ <{ J$ ;b <{ 2^ J$ <{ <{ J$ )~ BN <{ R@ BN G= I/ 0' L$ + L$ I/ L$ 0' [n 0' 1) # 5_ = # # = + 5_ . = # $ ]& # > . $ > 1* + = $ + $ + ]& . V@ - > . $= H= . ' - * $ U@ ; + $ + > ; H= |* %= Gc & ^ *' > > %= > & & T@ ; `@ ; ' ; ; H= Q$ ; ; U$ 2 ] ' & P$ ; & U$ & ; W@ 2 N$ ' X@ | ; ; X@ 'W | *# ~ { ~ | ) ] 8- { } } ( 2 ;# Z! ; ) [ ) | } g{.} D, D, N$ 1 ,# 1 3* 5 1 a d ,# [ ># } } Y@ ( 6 6 a 7 ,# 6! $# 7 6 8 d a' ~# a 7 6 b / 7 6 a ~# c d c } a c c g 8 7 e 2* ~# {# 8 E, n 9- ,# |& j e c 0- n [& `$ |& g ~# j ,# f h Y$ X$ |& _# r o Z$ r o X$ r c 6! O' Y$ h s y r y h q r r r h n ^# r `$ p :# {& `$ G 2, u p D Z$ m C `$ w D D s> p p Y$ 4* D w t p D M= D 2, D w :# y 5* p Z$ ^# u t m 4* p `$ m C t 2; Z$ t 4* r G ^# ;= ^# )> B ^# w /# s> M= D D D m m w D Y$ :# w /# G p m ^# D [# w w D G M= C G ^# D 4* m w % G G F N C C :# t Q@ N G :# C w Z$ `$ % m t `$ :# p G I `$ p u u p (# m `$ G `$ }& p p m w `$ `$ ^# `$ `$ t D p _# N 1; p 5* C ^# r Z$ 9- :# b' m Y$ ,> m p _# n 0 Y$ `$ h Y$ g o n p ,> p h Z$ |& &].c A~ Y$ `$ ~# |& 0 h h `$ `$ `$ ~# n p Y$ 0 *= c c o 7 {# a e 6 b V- 6 a a g 7 ># 8 &# a i { < ], v, s, v, t, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, &[ ~ X@ | ] W@ ~ | ^ ; S$ ] > > ; > U@ | Q$ Q$ S$ S$ * . = . ] . > . T@ * * ", +"y, y, y, q.Mp.,q.8' !q.Mp.+' 8' 8' 8' !q.Mp.+' 8' Mp.Mp.+' +' 6' z~ z~ [: Mp.Mp.+' [: z~ z~ z~ z~ z~ *[ z~ z~ z~ z~ vh.*[ z~ 9i.rp.z~ z~ vh.vh.$8.<{ e^ xi.ah.2! <{ 9| <{ <{ 9| 9| 9| *) <{ 9| J$ J$ 2^ J$ <{ J$ L$ .( l) R@ <{ I/.R@ <{ J$ R@ I/ BN BN ], L$ I/ I/ jP #S jP 5_ :q.= # # J$ L$ =[ # # # # + L$ + # . [* $ $ # V@ . V@ # 0' }, > 2) $ 1* S$ # # - . . $ $ & * - - & + - $ S$ S$ . & & ] ] S$ ]& & N$ Q$ $ S$ Q$ & S$ b{ . - }* $ $ ; ; N$ > N$ ; ) & U@ | P$ U$ & { & 2 & | *# 2 U@ { ~ R$ T- ~ ] ) ) { W@ ~ ~ Z@ /& [ ( /& ; ## ; ; 8- W@ $# d 2 7 } Z! 1 3* *# | d d $# /& ) { a D, { 7- X@ 6 / 1 $# B; ~# ,# / Y> &# ~# } &# 6 e a $# ,# d a e 9- 0 j 7 n 0 7 e 9 6 ,# q> c j 6 o a ># g L= ~# n 7 a' Q{ ~# {# e ]# n O' L= i ~# h c 2* j c C; ]# p `$ [& W$ r h c r s> h 1, u n _# p C (# Z$ ^# c j s> 1; r :, c }& _# Z$ <, (# /# D Y$ Z$ 1; q Z$ 6* p I ^# ^# /# ^# r Z$ /# x w N ^# _# `$ p t D Y$ t 4* `$ p m t :# D p 2; m G G D t D C ^# y2 t D :# /# `$ p w N ^# Y$ `$ C D D G C ^# m {& G :# N /# N % I m G `$ D D n ^# (# z 6* 1; w C D D {& {& {& :# Z$ C 2; z y x ^# 4* G x I :# ^# ^# q ^# GK :# y N B D ^# q :# N= w % m w m C ^# t % {& y h p `$ `$ Y$ ^# p y 4* ^# 4* ^# ^# n^ `$ :# (# m p V| 2, h Z$ ^# s> n L= Z$ ;) h 6 e h h c p p |& L= l p ]# p h n s> Y$ Y$ o Y$ s> L= n n n i a 9 j V- V- 8 V$ n c o ~# 9 7 ,# k 0 2* a a i b 7 6 e e $ 6' v, s, x, y, s, v, u, y, y, z, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, u, x, z, y, y, y, y, y, y, y, u, z, y, u, y, y, y, y, y, y, z, z, z, y, y, y, y, y, u, y, y, y, y, y, y, y, u, u, u, *) N$ ] ) | N$ ] ] ~ ' ~ ; ; S$ - ] ; ] ; U@ ; S$ $ U@ & ]& ; # ' * * = 0' ", +"u, y, y, 8' 8' !q.,q.8' Mp.Mp.8' ,q.8' Mp.+' +' +' Mp.!q.Mp.Mp.+' z~ *[ z~ Mp.+' +' [: *[ q, q, q, z~ z~ *[ *[ *[ z~ .q.&[ z~ z~ Il.|1 5o.9i.vh.|1 $8.Pi.9| |1 xi.|1 9| <{ 9| <{ 9| 9| 9| 9| 9| 9| 9| <{ <{ 2^ J$ |1 <{ J$ R@ ]^ <{ L$ I/ 2^ ]^ I/ I/ G= ], J$ 0' 0' 0' 0' I/ L$ I/ 0' + + K$ ]& L$ * # 0' + ]& J$ = # # k) + 0' ]& # ]& [* $= = = 1* V@ # # E! > . V@ 0' & [* $ ]& # o! V@ S$ 2) . }* }* > S$ H= X@ N$ . > $ . $= o! > U$ ; ' ; ; & H= %= %= Q$ `@ ; = # - H= . [ & P$ ; N$ ( ] ^ ~ N$ U@ | *' ) { 2 X@ W@ ## X@ ^ ~ ) { N$ 8- *# N$ ~ < Z! *# < [ ~ d { ~ < [ 1 4 2 b ( X@ X@ ~ ## 4 < d 2 1 1 &# : /& [ : 1 9 $# M' b : 8 a $# $# g b 7 &# 6 6 $# ># g $# 7 $# ,# L= ]c a 7 ~# ~# e e o a a 7 o c [& 6 a c a 7 e 0 !# 7 0 e c p W$ !# 3] h 8 c h e }& s> h e L= n O' p h h c h 0- 0- _# r Z$ p `$ Z$ _# o c ~# a n ~# }& }& _# Y$ -= p (# n O' `$ h 4* 2; 5* p D `$ t 4* ^# G ;= Z$ G C C; 4* ^# x q `$ 1; w K N 1; Y$ s> s> _# ^# D y G N D GK t G x /# m w ^# Q@ ^# n C C D `$ :# ^# N {& /# m w 4* 2; t p t N G N `$ `$ 5* z % n `$ G G G `$ ^# /# :# 4* Z$ w I ^# % _# m D w b' ^# m ,> Z$ ^# D C -= _# ^# n^ w M= D `$ m j~ Z$ n^ s> r `$ q Y$ ^# ^# h D {& % % Y$ h n^ Y$ u ]# {& Y$ q ^# q r s> Z$ p m C; ^# 2, `$ n h o A~ c -) p w % _# 1; n Y$ [& c [& m s> ]c p n h Y$ p r ~# c 0 n ]# p ~# ~# e *= 0 a g p c 2* a 6 V$ ~# ,# e L= 7 o j ~# h e 8 b 7 8 ~# 6 j } > ^, v, s, y, u, z, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, s, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, u, z, y, 2^ > ] ^ > { ; Q$ | U@ S$ > . S$ ] ^ ; > ; ' ; ; (& S$ . & & & T@ Z, * - * ", +"t, u, y, s, +' !q.8' !q.+' +' +' 8' Mp.Mp.Mp.+' +' +' [) Mp.Mp.Op.Mp.[: [: [: +' Mp.[: z~ *[ z~ z~ *[ *[ z~ *[ z~ z~ Il.*[ *[ *[ ah.vh.ql.*[ z~ xi.xi.Pi.e^ 9| $8.2! *) 9| 9| <{ 9| 2! 9| 9| 8S 9| *) J$ <{ J$ <{ 2! ;b ;b R@ R@ L$ I/.9| ]^ BN L$ I/ ;b *) I/ p9 R@ L$ 0' I/ <{ L$ I/ 0' 0' 1) = + 5_ # = ;b J$ K$ L$ = 1) V@ # > ]& + . p9 + . [* 0' [* - = + # L$ M$ $ > + > $ & $ U@ . . . & S$ . & ; > S$ Q$ > %= P$ ] > * H= H= U@ U@ [* # > %= U@ U@ Z! ; ; . ; Q$ Q$ ; | | S$ R$ | ~ Z@ | | & U@ ^& $= ] ; | X@ N$ $# X@ & ~ N$ [ [ ~ +# ^& { X@ [ /& /& < | ) } 2 [ W@ { ,# ( V~ { 7- Z! 4 d W@ / 1 2 { 5 e d ,# ,# } Y@ } 6 [ / 6 k < $# 9 $# a ,# d 7 $# ,# Q{ h a 7 j d $# -# -# V$ 7 a 7 a 8 8 n ,# 8 7 e C; a i e a 7 n ~# 0 7 e {# f |& s> 7 ~# c o W$ 0 }& h n '# 6 a C; [& [& h ~# h X$ Y$ n o c r p ^# h o o L= X$ n c{ y p h r h h p Z$ ^# ^# % Z$ Y$ ]# r r C ^# `$ D r h ^# M= h Y$ % G D D ^# ^# M= `$ G Y$ s> D Z$ h C {& ,> ^# p m D ^# /# F m Z$ :# m ,> r w % M= ^# D t Y$ /# ,> w m `$ Y$ 0- G % N D % /# p m D m p `$ Z$ ^# `$ m ^# D /# ^# `$ `$ % /# Z$ L= ]# p ,! D `$ C Y$ -= }& `$ t C p o m m 4* ^# ^# Z$ ^# q ^# Z$ 2, Z$ 2, p 1; Z$ 4* t q o/ D :# ;) D D m ^# p Q{ L= n % ^# n Y$ r `$ Q{ o X$ c 4* `$ p p Y$ p e Y$ Z$ p h n n h % Z$ s Y$ c p 0 L= p |& g 9- 0- e {# c n Q{ n 0 o 0 0 ># 0 o {# a 8 j b V$ ,# ># a 0 C; ~# r L= [ 8 == ,# a ~# ( a } ; v, s, z, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, z, y, y, y, y, y, y, R@ & | ) ] H= ; ; %= ] ' ^& U$ ; ~ > . # * - ; U@ {c & = - = . pH # * # = ", +"t, t, u, 7' +' 8' !q.7' Mp.Mp.Mp.Mp.!q.Mp.Mp.Mp.+' Mp.+' Mp.Mp.Mp.Mp.Mp.z~ *[ Mp.Mp.Op.Vp.*[ *[ z~ *[ *[ z~ z~ *[ z~ *[ *[ *[ z~ z~ vh.9i.*[ ah.ah.$8.Pi.Pi.*) Tp.9| <{ 9| 9| 9| <{ 9| 9| 9| |1 <{ 2^ J$ <{ <{ <{ 9| p9 <{ <{ 2^ 2^ ;b p9 L$ ]^ <{ |1 BN BN 0' [n I/ I/ 0' I/ I/ I/ I/ BN 1) # X! L$ I/ # L$ = + ]& L$ I/ <{ 1) $ + # ' + # $= Q$ ]& = . ]& $ # + # k) > > ]& V@ N$ > . Q$ - $ o! Q$ ; =' > + H= $ Q$ Q$ ] ' - Q$ H= ] - | $ $ U@ b{ ] N$ Q$ ; ^ ] = & - Q$ N$ H= N$ 2 ] Q$ | | U@ + P$ / { ; U@ ~ | 2 2 | 2 | X@ R$ [ U@ 7- ^ ~ 4 4 Z! /& N' $# } 2 *# { ## 2 { N$ 7- 5 ~ } $# ( f] 1 ## } < D, 6 +# Y> 6 6 a a b ># == $# $# 9 ,# } ( Y> 6 $# ,# [ d e i ,# ,# j } $# 8 6 o b i n !# e o e i a e {# ~# g 0 7 8 6 e a ~# f n ~# e a 3* V$ e L= ~# h n c ~# c *= e e Y$ ~# j Z> r L= e c L= F! r l `$ h `$ c r Y$ o `$ p /# !# h r Z$ D 2, ,> `$ `$ `$ Z$ p p o r 0 r Z$ p r y n :# Z$ h ^# D ,> ^# w ^# D (# p `$ p `$ C n w t Y$ Z$ 6* D q m m t D D p % }& p 4* ^# N ^# m /# m 4* m ^# 4* p -) ^# >= m s> C p n D Y$ p Z$ w 4* {& `$ b' /# C m p! % F ^# `$ m h 6* ^# m D s> t F `$ w t p w m r Z$ % n ^# Y$ r h h V| 6* m E, p D n^ y Z$ Q{ n h s> D V| h 1; `$ m ^# t n p V| `$ p ~# {# j `$ ^# C; p 4* n^ q 2, o p s> h `$ c m g K= o ~# Y$ }& ~# c o h s> h c n ~# Y$ c p s> L= n c g 0 h [& 0 9 V$ e 0 6 g 8 6 c 7 n e 6 ~# 7 9 k B; ># == ,# 0 b V$ 7 6 ~ 6' g] v, x, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, A, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, u, u, =) y, y, y, y, y, u, y, y, y, y, y, y, y, x, x, z, x, y, u, y, y, y, y, y, y, w, . & - | | & & & V@ & > | ' & . > . ; U@ & U@ . + > . * . ; Q$ . . Q$ & ", +"t, t, u, 8' Mp.Mp.!q. # > =' S$ & #^ |* S$ $ > $ $ Q$ . > > & & ^& Gc S$ - & = T@ & X! $ Q$ - S$ }* $ * Q$ %= + S$ ; o! ' S$ N$ Q$ ~ 2] | | - k) Q$ ( ] N$ Q$ Z! ; ~ ~ *# ## Y@ 2 5 J= ) [ ## X@ ~ 9 ## N$ V~ | | ) { W@ < } 1 1 1 2 [ 8- | } # b 6 9 9 [ ( 7 } Y> 7 } d /& i } ## 9 $# a 7 e N' a ># 6- 9 9 : : d L= e 8 &# :& *= a 6- ~# k h 6 < b } ~# o a 7 b b d V$ C; L= L= ~# ,# C; 7 {# 0 ~# q> V$ e Q{ n a c c X$ X$ h ~# 9 *= n p o ~# h >> c ~# c{ `$ r `$ p o e K/ a _# m _# K/ m p C p s y l L= 0 q p 4* r 0- m Y$ Y$ p (# `$ /# p t Y$ m `$ Y$ n <, D 4* `$ 1; D N /# D `$ 1; p L= Y$ p M= n ^# B V| ^# ^# 1; t `$ (# 4* /# t h ^# D ^# V| D :# |& p Z$ (# ^# G % ,! h p p h @= u D 1; `$ ^# Z$ t ,! Z$ r ,> ^# g r h `$ {& 4* m ^# s> p Z$ % ^# w ^# :# m r p D p Z$ n !# h r c{ ^# Z$ m c Y$ n r o p E, ^# p ^# ^# m Y$ -= n p r s> Y$ p n Y$ D h [& Y$ L= Q{ y Y$ ^# m o W$ n Y$ 4* p n h Y$ q :# ~# ,# p L= a L= 0 }& Q{ n W$ e p q c c a p 2* b ~# A~ i a b ~# i o E, 6 a 6 c V$ 7 X$ e a 9- ,# 7 ,# 6 b e ~# =# $# V$ b } r, s, s, x, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, z, t, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, t, 6' . ] ] ] S$ | ; ; . ; H= X@ ; & S$ & ; . Q$ $ > * $ > Q$ . - - * Z, . ' > ", +"t, t, u, 7' Mp.!q.8' ]q.8' +' y: +' !q.Op.+' Mp.+' +' Mp.Op.Mp.+' !q.Mp.[: *[ [: Op.Op.Mp.[: *[ *[ z~ *[ *[ z~ z~ z~ *[ z~ *[ *[ z~ vh.vh.9i.z~ 9i.|1 98.)~ 9i.9| 9| 9| e^ <{ $8.9| 9| <{ <{ 9| I/.*) *) <{ <{ <{ 2^ <{ ]& I/ R@ ]^ J$ L$ <{ 2^ *) jP L$ R@ 2^ <{ I/ I/ I/ 5_ p9 #S I/ I/ I/ I/ # ]& 0' I/ # + R@ G= ]& # $ ]& E! [* = ]& # > # + + + = # > . = # $ > H= - U@ $ 2) S$ > o! . S$ o! & S$ - & }, & $ 0' # . Q$ ' & $ {c > ^ & Q$ # . & & %= & = ^ ; S$ %= U@ H= ; T- ; | ; T@ S$ ; - Q$ | N$ | 2 & ' 2 d [ { 2 [ 5 4 { 2 Y@ [ 2 ( ( | => 2 R$ /& ~ 2 [ 6 $# d 1 ( { 5 ( ( | ( [ ( D, %# 6 ## 9- a *# $# } < 4 6 d j / 1 8 6 ( b i <& &# k 7 %# &# 7 o b 7 6 [& L= V- 7 9 6- J= 6 *= $# e i e a e ~# L= i 8 6 k n i Y$ *= ,# e a i c e c n a E, o `$ 6! g e b o 0 r 0 C; ,> o h s> n n n t p ^# [& 7 Y$ h 8 r :, p 2, ;) ^# Z$ h Y$ h `$ h p y Y$ u :# m c p p `$ `$ p 4* _# (# % r q o -= % <, r s> p % t D 6* Z$ p |& `$ N m ^# m p! Y$ Vj L= D Z$ r m m ,> Z$ 0< m D 4* 4* 4* n^ p :# D `$ w D C v p ^# /# % s> /# t ^# D ^# ,> h q w #| Y$ p C; `$ r h w r h q 4* p L= {# `$ n -= Y$ % 2, ,> :# p (# `$ p D `$ s> ^# `$ l `$ Y$ t Z$ }& Y$ r Y$ `$ q `$ ,> p O' m q p n^ p ]# L= m % D h p {# ;= ,> h 2, r 0- j X$ |& n ,# Y$ p |& h ~# h h _# `$ c a ]# k 0 A~ j b o h n c 0 e e L= ~# V$ j ,# a j ~# &# e c 8 7 V- e 9 V$ 7 e V$ -# ,# ~# 8 == 7 ># &# -# &# 6 [q.v, s, x, u, y, u, t, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, H) u, y, y, y, u, y, y, y, y, y, y, y, x, 2! & =' | | Q$ ~ N$ H= ] N$ > ; # Z, $ - & & ; . . V@ - ; + }* S$ . S$ # ; ' . ", +"y, t, t, 8' +' +' Mp.8' !q.!q.+' +' +' Mp.!q.Mp.Mp.Mp. q.+' Mp.Mp.Mp.Mp.Mp.[: e^ Np.Mp.+' Mp.z~ z~ z~ q, z~ *[ *[ z~ q, z~ ah.rl.z~ *[ |1 |1 q, z~ |1 xi.9| )~ *) 9| 9| )~ z~ 2! 9| 9| 9| <{ 9| 9| <{ ], ]^ R@ jP <{ <{ l) #S L$ ]^ ]^ J$ I/.l) J$ 9| J$ 0' BN R@ I/ I/ 5_ <{ J$ L$ G= J$ G= I/ `Y 0' + I/ ]& K$ + $ + K$ . + # # $ . [* > !, # ]& . ]& V@ $ + . =[ k) Q$ > $= $= . ' > 0' $ > |* $ $ . Q$ S$ ] . $ Z, . T@ .( > & P$ Q$ U@ ' H= . - U@ N$ %= | N$ U@ ~ . ) S$ Q$ U@ > ; N$ ~ ; | X@ ) | X@ ~ Z@ X@ . ; 4 X@ ; ) g{.> ~ 4 / ~ | { ~ ~ { { ) 'W | N$ 2 | { / { { }q.*# ## 4 ] ## [ ~ { d d 9 : Y@ } ,# 5 5 / / $# 7 4 ( W$ } D, [ ( 6 k ,# ,# V$ $# &# d ( i a e k c L= ># 8 a a 8 } 6 L= a k '# g i b b =# i q> 8 a b ,# $# j ~# ~# i n 2* h h h n h L= ~# e c ~# W$ 7 o Y$ h m r K= ~# e r 2, h Y$ Z$ _# ~# n h r |& `$ O' ^# s (# y ~# h ~# (# g s> h Y$ h b `$ L= 0 |& `$ `$ Y$ -= C % C % w D Z$ n q p Y$ `$ 2, t D `$ 6* Y$ `$ -= ^# Z$ -) Y$ :# m % s> 1; p s> ,> ^# p h Z$ p 2, ^# % D :# ;= p ~# `$ `$ % w {& ^# m ^# #| G Z$ /# `$ p ^# `$ r `$ y C; o Y$ p 1; ;) h ^# Y$ r D `$ ^# }& p `$ y 4* `$ D p y q Z$ ,> % 2, :# ^# h h 4* t h Y$ h n 0 m p Y$ |& `$ n Y$ m p n s> X$ Y$ c 2, 0 h c Y$ ^# -= n p ~# e h o s> n 0 {# r c p n p c n n `$ h r j e o a ;= Y$ a a ~# Y$ L= W$ c c {# a c ,# c L= 0 a 7 ,# 0 a b [{ a V$ e a 7 0 b g i s> a 6 $# 7 =# } a 6 V@ v, r, x, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, z, z, y, y, y, y, y, u, x, y, y, y, y, y, y, t, y, y, y, y, y, y, y, y, y, y, x, z, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, u, s, e^ ] - N$ ; ~ ~ $ ' | ) H= ; & N$ > H= (& ' & & . # |* . ; > . > & = ; > * ", +"y, u, t, !q.8' Mp.+' 8' !q.!q.+' +' Mp.8' !q.8' Mp.Mp.Mp.+' +' Mp.+' +' +' Mp.z~ Vp.Mp.Mp.Mp.z~ *[ z~ z~ z~ z~ z~ z~ z~ z~ 9i.9i.*[ z~ 9i.vh.z~ *[ z~ ah.9| *) *) xi.xi.|1 *) *) <{ <{ 9| <{ <{ 9| <{ <{ R@ R@ l) I/.9| <{ (}.l) R@ ]^ R@ I/.<{ BN jP 2^ 0' L$ *) L$ 0' =[ 2^ ;b 0' 0' 0' 0' 0' # K$ I/ L$ # # # ]& =[ + 0' L$ # K$ = o! # # > # + ]& * # $ [* # ' $= > > $ # $ $= $ 0' - ] & = > ; ' T@ * ]& + > T@ + $ U@ H= & ; = = > $ + & ^ H= ; N$ ~ > & > N$ H= ] ; ; H= | X@ X@ ; ! J) | Y@ 2 U@ > =' {c ^ ~ , | ; [ | N$ A; ; ) N$ ] } : N$ { 2 Y@ [ { ~ ( ( | 1 X@ X@ 7- N$ ( => <& { } d ## 9 , J= { 6 $# 6 d : 2 7 } 7 Y> 6 $# a ~# [& 5 8 a e 8 a -# e ~# j a g : b b d 7 a 8 e $# b 7 7 i a a' 6 e z: 0 i ~# a j i 0 7 2* n ~# n a r n n [& a ~# 0- ~# h e ,# e h h L= F! e s> r ~# ~# o ~# ~# c o n h c r 9- 2, r p p !# h n _# `$ 0 p 4* s> c (# ,> r h |& Y$ -= [& h r ^# ^# c Y$ s> p C; p r Y$ ;) ~# `$ D Y$ o p Y$ Z$ Z$ h ^# r -) r V| n h s> p /# t n Z$ % `$ F h `$ ^# |& s> p h 2, c m p D {& _# h n r ^# Y$ 2, 1, h `$ l t 5* `$ Y$ l % `$ p `$ /# m `$ `$ r r n `$ p ^# ^# Z$ ,> m _# ~# n Z$ Y$ h `$ c Y$ p ^# m r h `$ Z$ ^# _# n `$ ^# Y$ Y$ y o L= 6! {# 0 a 0 0 Y> h p ^# q Y$ _# ,# ~# `$ ~# n p e Q{ `$ p c r h g C; r p o ~# C; X$ ~# % K] o ,# L= e 0 h o e !# ~# ~# n c 0 0- 0 d c 2* 0 e e h 8 F! g a *= Y> i ~# a k Y> a &# b 8 } a a | *) v, s, s, z, y, y, x, x, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, t, y, y, y, z, y, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, x, y, y, z, y, y, y, y, u, y, y, y, z, y, y, y, y, y, y, x, u, x, <{ H= ) U@ & | U@ ; - ; %= . > ; U@ - ] . ' . # = > Q$ $ $ ; > V@ . k) . = ", +"y, y, u, 8' !q.8' !q.!q.!q.8' !q.+' +' !q.!q.Op.Mp.Mp.Mp.Mp.+' Mp.+' Mp.Mp.[: z~ *[ [: Mp.Mp.q, z~ z~ z~ q, z~ z~ z~ z~ z~ q, ah.z~ *[ z~ vh.9i.*[ z~ 2! xi.2! Pi.98.8S 98.98.$8.9| <{ 9| 9| <{ 9| <{ J$ R@ R@ J$ <{ <{ 9| 8S I/.R@ ]^ L$ <{ <{ L$ jP BN I/ <{ *) *) <{ (}.G= ]& ]& 0' 0' I/ 0' + # =[ 0' J$ K$ # # $ # Z, 0' L$ V! > > + > + # # + J$ L$ # + Q$ 2) |* V@ X! $ # # > . $ - $ Q$ . + = > . ] > - Q$ [* Q$ T@ + [* $ . Q$ . Q$ X! $ > $ & 2 & N$ U@ ) ] > & $ ; > ; N$ H= *' [* | ; ] 2 S$ | N$ N$ X@ P$ *' Z! | %= P$ ] ) { , ^ ) ^ X@ N$ 4 $# | | | < D, Y@ 1 <& *# ~ } 7- ~;.7- { X@ { ( 1 [ %# < / / d | /& 6 1 ## { 6 D, 4 9 [ 6- } $# ># $# <& 6 6 a &# 6 9 8 b ># d &# 6 ( 0- a : $# == i : V$ ~# f ~# 6 g k $# n a Y> ~# ># b 6 / *= g 6! c L= 0 &# 8 ,# 0 e ,# e a ~# m 9- < ,# g 0 ~# X$ L= `$ r ,# o Z$ 0 c c h C; _# n h `$ n f 0 >> ~# _# `$ g p D Y$ 9- 9- ]# n _# c `$ h ,> L= h h 0- Y$ s> % Z$ (# O' D % s> s> ,> |& h *= n Y$ p 1; h p l O' Y$ h Z$ ~# s D (# h Z$ `$ -= h Y$ F % L= p p 4* `$ r t h r n ^# r ^# `$ ,> % % ^# Y$ 9- ,> p C; D F ;) p _# L= o Y$ p n Y$ h s> Y$ c D n }& 0- K= r p p s l r r p V| D p ^# Y$ r p h `$ {# `$ ^# n ]# Y$ m h -= n ~# o ;= h $# 9- Y$ [& ~# {# 6! L= n L= L= {# X$ ]# p h L= ;= n E, Y$ !# -) e 0 h 0 7 ~# b i i a e L= 7 a 7 0 c V$ p '# a } 8 *= L= n 0- n 0 7 7 a ,# V$ a =# i 7 b c 0 ~# -> d 6 {# c 7 7 0 V$ ~# 7 # *) r, A, y, y, u, y, u, u, y, y, y, y, y, y, u, u, y, y, y, y, y, z, z, y, x, y, z, y, y, y, y, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, +' $ U@ N$ ; U@ > f] | . S$ > & > & & - R- $ > > $ > Z, > # 5- $= > & * > }* = 0' ", +"y, y, u, 8' !q.8' !q.8' !q.!q.(q.+' +' 8' Op.!q.+' Mp.Mp.Mp.+' Op.Op.Mp.Mp.Mp.[: Vp.Vp.Op.+' [: [) rl.q, q, z~ z~ z~ z~ *[ *[ 9i.z~ z~ *[ |1 .q.*[ *[ 9i.xi.vh.e^ )~ 98.9i.$8.|1 9| 2^ 9| 9| <{ *) 9| ;b <{ ]^ ], <{ <{ ]^ jP ;b I/.J$ R@ J$ ;b L$ V! R@ BN L$ 9| ;b 5_ I/ I/ L$ I/ #S #S I/ <{ 0' + # + L$ ]& # # J$ ]& + $ $ {, ]& . + V@ $ ' [* . > & L$ # - . =' k) H= > = # $ = [* H= > & # + = U@ A; U@ * & ; N$ & & S$ . T@ - Q$ T@ |* > U$ > $ + Q$ > k) . Z! > ~ ; ^ o! H= & > H= P$ H= & | & ] %= H= *' | | N$ X@ ~;.V@ | ~ ~ N$ 2 &= 1 d 7- { ) ; /& 2 : < | ~ { ~ : { [ [ [ [ { ## X@ X@ N' /& [ { $# } ( 6 { g ## J= } 6 V~ D, d 6 ~# 5 ,# 4 [ ,# 6 a ,# d } 7 $# a $# $# &# Y@ } d / -> 6 $# 8 6 =# e e J= o 6 g e 0 a j 6 e } e *= c ~# e M' e n ,# 7 b 8 s> h j L= g 6 n h a 7 a o a a n h c n ~# n a a j n 0 n Y$ c r 0 e Y$ r o h ;) n h n p h `$ Z> q ^# j~ u o ^# 6* {# ~# L= L= _# ~# % Z$ s> ^# s> `$ h ~# s> ^# h ^# D Y$ Y$ Z$ `$ L= `$ `$ p p Y$ s> }& m f^ `$ Y$ p ^# `$ ~# `$ Y$ Y$ h n Y$ `$ r m m p }& ^# ^# m p % _# n ^# `$ o p O' r `$ 4* `$ o t h Y$ `$ h m n h `$ o D m `$ Y$ 0 X$ p r p r ^# r c{ }& n h p q Y$ 0 m C Z$ r % Y$ `$ n m E, Z$ c }& c h Y$ 9- 0 p n ~# e a L= s> n X$ ~# Y$ `$ n 8 n r o Y$ ~# c A~ X$ a' a' h e -# a e j 0 d L= 7 0 p c n *= n r g i n 6 h 0 n 0 a a e 7 d 7 : 7 7 f D, ~# $# ~# 7 ~# j a } } } } < [ } W@ *) q, u, t, u, x, y, y, z, y, y, y, y, y, y, y, y, y, y, z, y, y, z, u, y, u, u, y, y, y, y, u, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, y, y, y, y, y, x, u, x, x, y, y, y, z, u, x, = > - | P$ H= ; & ] & - $ ] N$ . Q$ [* $ ; > o! & $ Q$ # |* > $= . }* * . . # ", +"y, y, u, 8' !q.!q.Mp.+' 8' 8' |q.!q.8' Mp.!q.8' s, s, +' Mp.Mp.Mp.Mp.+' +' +' 6' z~ q, Mp.Mp.+' Mp.z~ q, q, z~ *[ *[ *[ z~ z~ z~ z~ z~ *[ 9i.vh.z~ *[ z~ ah.xi.2! e^ |1 vh.$8.*) q, 9| 9| 9| 9| *) w9.9| <{ 2^ <{ 9| 9| ], 2^ jP <{ R@ 2^ 9| jP <{ ]^ ]^ 2! BN J$ =[ R@ 0' I/ G= I/ I/ I/ I/ BN I/ 0' + # 0' L$ + # + I/ # + $ J$ L$ E! # # [* ' = 1* $= $ + V@ ]& ' . V@ > [* # ]& = V@ # . $ A; $ Q$ . > > & - Q$ T@ P$ S$ > Q$ |* V@ 0' - - U@ S$ ; > . . - ' & > - & ; ; ; Q$ O$ H= H= & S$ U@ S$ ^& N$ Z! ; P$ N$ & | 2 . - 2 N$ $# N$ ^ ; ] ~ [ *# N$ & Z! { 4 / { 1 /& } # 8- ,# < { 2 5 ( 2 ># < { ( [ b ( $# [ 6- d J= } [ 6- } D, [ d : $# { 2 { J= $# 7 i &# : a 1 a 7 6 ># a e d $# 7 $# V$ $# 6 6 ( 7 6 $# :& ( b :& e ,# e _ e b a d g 6 a' a } V$ X$ e 0 r 8 -# 6 o a ~# ~# ~# 7 a i e 6 d b c a' 7 ~# ~# W$ i ~# F! a h h C; d j 6! c{ `$ Y$ ;= p _# ~# n -= r `$ L= c{ L= ^# p c i n p n ~# Q{ 0 p o -) <, p E, n h n `$ L= Z$ p t Y$ % `$ p ^# p }& n s> s> s> Y$ l `$ Y$ p D 4* 9- r n m r L= 0- L= t Y$ }& ~# `$ p Y$ :# p r ~# Y$ Y$ `$ m ^# o l L= h f `$ (# `$ h K= Y$ ,> h L= p u L= ;= Z$ p p h p ;= n o ,> c Y$ p r n Z$ r p Q{ L= n ~# e h ~# n h r h -) s> 0 c 7 Y$ F! n Y$ Y$ 0 c n 0- 0 c{ ~# 6! ~# 0 0 n s> j n e j 0 ,# h g n n 7 e ~# g L= {# 7 b a h Y$ h 7 &# i L= ~# e ,# 7 j 0 a k $# 6- j e ~# r> ,# ( $# : ~# V$ } 1 } -# 6 V~ &# $# b $# < [ 6 v, x, x, z, z, y, y, x, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, u, t, t, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, u, s, s, +' - S$ U@ ] ] ] 2 S$ S$ ; S$ . U@ . * > ; . . - ; U@ ; & # ; $ Q$ T@ - & # + ]& ", +"y, y, u, s, !q.!q.8' +' +' !q.|q.!q.+' Mp.,q.,q.Op.Mp.+' Mp.Mp.Mp.Mp.Mp.Mp.Op.Mp.[: q, [: Op.Mp.Op.q, z~ z~ z~ z~ z~ z~ z~ z~ z~ *[ *[ *[ 9i.vh.|1 *[ z~ ah.vh.2! *) 2! vh.$8.<{ 9i.*) 2! 9| 9| *) *) 9| <{ 2^ R@ J$ <{ *) 2^ $8.;b <{ J$ R@ J$ I/.J$ BN J$ *) I/ I/ 2^ jP I/ I/ G= I/ 5_ I/ 0' 0' 0' + # # L$ # K$ # L$ # # + R@ L$ # R@ ]& . [* + ]& S$ $ ;b ]& # <{ ]& V@ !, $ # + . $ . # # $ # . . = > S$ # - > > Q$ Q$ U$ & . U@ > o! > S$ ' Q$ . > ; ^& & =' T@ $= > & %= N$ S$ [ ~ > & . ] ~ $= U@ ~ | ; & S$ N$ N$ P$ ] | ] J/ & 6- ~ { 2] D, g{.*# 8- | ~ X@ { ^ { 2 | } -# 6 ;> < 1 { 2 { V~ 2 ## 6 | [ ## Y@ Y> 7 8- 1 6- 6 ( [ } d 7 V$ ,# $# a D, $# } N' 7 ,# : ,# Y@ 6 7 _ ( i D, ># 7 d 1 7 b $# a 8 b &# : $# 8 e 7 o 9 a h V$ 8 :& b 9 < 7 ~# 9 i 0 ,# g 0 a V$ 6 >> h =# 8 j ~# a o c F! M' p j 0 C; Y$ h c e a k e c g L= a e r r n 0 c _# q n a' s> ~# h Y$ n h o s> Z$ n Y$ r L= 0 r h r `$ ~# c `$ p r `$ a l r n h X$ r n p s> (# D s> `$ Y$ ~# `$ c h r c p ^# p h _# % E, c 0 ~# n m p (# c r r n Z$ 4* 2, 9- c Q{ Y$ `$ p `$ ~# 2, `$ l r c }& c ~# o ,> c{ h y X$ n L= j r n h h Y$ n h h L= `$ a' r p p r V| `$ r !# L= 0- _# n h L= s> c n p p n ~# p p s> o a ~# `$ h Q{ `$ % h c L= ~# c h p n n 7 e g e h c ~# e b 7 ~# i b g 7 7 == -# $# a ~# 6 L= {# 7 0 Q{ d e 7 7 c k a 8 V$ a e a < 8 &# 0 7 ,# / { 8 6 1 Y@ V$ 9 == ## g b R- 6' s, A, z, z, y, y, u, u, y, s, z, y, y, y, y, y, y, y, y, y, u, y, y, y, x, y, y, z, y, y, y, u, u, u, u, x, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, x, 6' `@ > ; Q$ > = | > Q$ S$ ' & ' ' & Q$ ^ S$ ] - - ^& . > $ + * Q$ > ' & . $ + ", +"y, y, y, s, (q.!q.8' s, Mp.!q.1q.!q.Mp.Mp.!q.Mp.!q.!q.Mp.Mp.'q. q.+' +' +' +' +' 6' z~ 5o.!q.Mp.Mp.5o.5o.z~ z~ z~ z~ *[ z~ z~ q, z~ e^ z~ 9i.|1 xi.ah.z~ 2! xi.|1 <{ e^ |1 $8.$8.|1 98.2! 9| <{ ], <{ *) <{ <{ J$ <{ 9| ;b 2^ J$ jP 8S 2^ 2^ <{ l) R@ L$ BN <{ I/ 0' G= J$ ;b 0' ], R@ 5_ I/ 0' = 0' ]& # + 0' + # # = + # # Z, = # + ]& M$ + + + + $= > = ]& ]& # ]& > + $ + > $= # . > $ + [* ^& . * > o! = . Q$ $ ] $= > ] 5- U$ - o! 1* ] Gc Q$ . ^& ; > U@ Q$ Q$ > & ; ~ & & R$ > . $ | ; ] S$ 4 05 P$ %= N$ ; | & ] 2 ~ H= $# ~ ( | : U$ { [ ; 2 | H= | ] ) > > | ) 4 [ { ~ 2 | { 7- 2 d ( Y@ ## *# [ 9 } ) d /& [ ( ) } 7 9 W@ < [ } $# { a &# d ( 6 } ~# $# 1 b &# { : [ $# 7 $# e < < ( a Y@ 7 &# 8 ,# c 0 ,# ( 1 6 0 8 8 a 6 $# e g a 8 6 e ~# n Y> a i c e e ,# 6 a e j d L= o e Y$ ~# a i o o n a o ~# o [& ~# Z> 0 h 1, p h p `$ h ~# C; `$ Z$ h c h Y$ p Y$ `$ `$ p Y$ n Q{ Y$ c c c n Z$ Y$ N G `$ h L= Y$ p L= m L= n h L= p Y$ Y$ o h c Y$ Y$ Q{ s> l n n e D Y$ ~# L= Vj `$ r |& g _# h s> |& c n Y$ n c h 4* m p h r % n 6 D p e `$ 2, n n o p c ~# 0- Y$ r X$ r Z$ A~ ,> Y$ `$ t p ~# {# L= n -= O' C; Y$ ~# p _# s> X$ c L= `$ |& i 0 h h n |& L= X$ r 0 p 8 0 h ;= s> ~# s> 7 d e 7 e e b c c c n^ c b [& e X$ !# o e ~# 8 J= 9- 6 d 8 7 V$ V$ g 0 e h 7 j j i A~ e ,# 5 X$ e h 7 0 e a 7 } } 6 -# 6 : 6 $# ## 6 7 { 9 &# / ># d &# %# O$ *) H) A, x, u, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, x, y, y, y, u, x, u, y, z, y, y, u, u, y, u, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, A, y, y, y, y, z, s, q, . & Z, & - ; ; ; S$ + }* . > ' . $ + > > . & . . . # $ * > > $ M$ . $ = ", +"y, y, y, z, (q.!q.!q.8' s, 8' ,q.8' 8' Mp.+' +' Mp.!q.Mp.Mp.+' +' Mp.+' +' Mp.+' Mp.z~ z~ [: @] +' @] z~ z~ z~ q, z~ *[ z~ *[ z~ z~ z~ 2! *[ z~ ah.ah.z~ z~ xi.vh.9| )~ <{ 9| vh.2! *) <{ 9| <{ 9| 9| <{ 9| <{ <{ 9| <{ <{ <{ R@ l) 8S J$ ]^ R@ 9| <{ #S BN jP L$ 0' I/ 0' 0' 0' G= R@ J$ L$ I/ I/ I/ = # = 5_ L$ 1) K$ K$ $ V@ # + # + R@ + L$ + = + . . > $ o! [* S$ > [* + ' #^ . - . > . . $ 0' + . $ ' U@ + $ U@ ]& > V@ 1* - Z, k) U$ & Q$ ; $ Q$ > . # > - ; > ; | . Q$ S$ H= & ] [ O$ N$ ' S$ ; [ 4 N$ W@ & & - & N$ Y@ | U$ 2 2] ; 2 2 , { ] > ; X@ U@ N$ ^ } ^ | Y@ | ~ %# X@ } d | 2 4 X@ [ |, [ $# O$ ^ { ( { 6 { { 1 1 $# [ $# { W@ $# } : ~ 4 7 9 $# < 8- 6 &# < 7 8 [ {# &# ## 7 ~# ( $# 8 { 7 d $# ,# g $# ( b 6 6- X$ a a &# -# 7 V- a' < V$ b i a 0- c r a k o a ~# K= e h X$ B; ># -# e c a L= e a j a {# n e e Y$ ~# n Y$ c ~# p a 0 L= !# Z$ a r X$ |& n e L= n L= L= r h n [& h E, L= p n e n ~# -) j o r ~# {# s> Q{ C; h p C; L= s> -= 4* a p n Y$ Q{ }& ~# h 0 [& L= c{ Y$ 9- ~# e p s> h C; n^ g h ~# s> m K/ Z$ m p :# n n o L= X$ n Z$ n 9- ~# {# r p c 6! ~# Y$ h o `$ ^# D t _# ]c n ~# r q 0- p L= (# _# `$ r n c h {# L= ^# h ~# b a C; r l `$ j Y$ ~# e U- 0 i r p V) 7 a 0 |& 0 c e ~# 6 8 {# 8 1 [& [& 0 o =# a 8 q> 0 7 e c :& e 9 c 9- 6 ~# L= $# 6 c 7 9 b k a &# 0 6 6 L= V$ e 0 V$ j ># 6 -# a [{ < 7 7 $# V$ 6 a 8 b b / } V) } 1 6 d ( &# ~ 2! v, u, A, z, x, z, y, y, y, y, x, y, z, y, y, z, y, y, y, y, y, z, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, u, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, x, q, & $ - & ; ) ] $ ~ H= & & & . $ . k) Q$ * - * & > T@ T@ $ V@ Z, $ > * $ $ * ", +"y, y, y, y, [* = # & $ $ # V@ > + + # + . > [* ]& ; > > S$ N$ > . $= - | Q$ - > = ^ & Q$ U@ & > U@ & - * o! U@ & . | 2 > ] | & & X@ ^ H= | > P$ (& ; ; | | W@ g{.~ U$ ~ X@ 4 } ## [ ) ~ ] X@ Z! N$ ; 2 `@ N$ & { ] `@ { X@ 2 ## /& | <& } , tp.[ ~ / { 2 $# Y@ $# / { [ [ d ( 4 $# < 6 7- [ Y@ 6- a X@ ( ( ( 3* / } < 6 { [ j a 6 &# < 1 { $# ,# : &# b 6 =# :& -# V$ a b 6 < ,# Q{ } -> 0 ( 9 == d g } b V- V$ a X$ 8 7 K= e h o e a 8 9 e ~# r |& c h ~# r l 0 1; 7 ,# 0 a ~# a a X$ 0 c c {# 5 c 7 0 n p k r 0 n g r [& ~# L= |& -) -= s> L= r L= c _# Y$ 7 h h r E, {# p s> c h -) 1; `$ Z$ Y$ n L= g 8 0 r p Q{ ,> s> p 0 a r r n n Q{ #| r `$ Y$ c{ h Q{ Y$ o ~# h ]# p n c r p r L= p e a s c h _# r 8 Y$ C; c `$ r s> o k L= h a' n % 2, 0- p _# L= g a 7 g r L= s> a b 0 n {# |& o n h ># {# L= C; 0 e L= a i c `$ a h j ~# k a ~# &# 1, Y@ i h c X$ L= :& j 7 ~# b n b == b 8 ,# ~# c 7 } V$ } &# a 9 7 Y> X$ ~# 7 : } ## g b a ># =# $# $# 0 6 b ># W@ $# } $# :& } -> V$ } 6 -# ,# D, b 6 7 i 6 7 W@ + [) x, x, v, x, s, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, z, y, u, A, y, u, u, z, y, x, x, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, x, y, y, y, y, y, y, y, u, x, u, l) & $= ] S$ S$ ] S$ . > ] S$ ' > $ Q$ ; . & $ ; Z, . = * . Q$ (& $ T@ # . ; * * ", +"y, y, y, z, 7' 8' !q.8' Mp.Op.8' !q.!q. q.Mp.+' Mp.!q.+' Mp.+' +' +' Mp.Mp.Mp.Mp.Op.+' [: q, Mp.+' [: z~ *[ z~ z~ *[ z~ z~ z~ z~ *[ z~ z~ *[ *[ z~ Il.vh.9i.z~ 2! 9| *) Pi.|1 ah.|1 *) <{ <{ 9| 9| 2^ <{ <{ 9| <{ *) ]^ <{ <{ ]^ J$ <{ <{ <{ ]^ *) <{ <{ J$ J$ ], #S I/ I/ R@ J$ R@ R@ ]& 0' jP I/ 0' 0' 5_ + G= 0' ]& # + 0' 0' V@ # ]& + =[ $= k) R@ = % [* # # 1* . ]& # . ;b ]& # L$ . . V@ + + $ = = . ; > = > . ' - ] U@ ; %= U@ > S$ & # . > ] %= $ ; ; & ; > > o! > ; H= ~ 2 Z, ] U@ & ; & & Q$ - | Z! /& ) & . ' H= | ; { < H= ~ `@ U@ X@ ~ 7- } ~ %= N$ ( X@ => ) `@ { *# ^ ) 7 | W@ 2 N$ 2 2 ;# 2 ( { # ~ ) ( d &# [ ~ < 6 d : 5 { 1 J= [ < d $# ( $# /& / : 7 / -# 2 ## } W@ } < $# b *= d ( 2 < b ~# 7 $# 7 &# 6 =# 6 8 7 -# h 0 8 &# 7 9 7 c ~# b a a *= n L= c e a 6 0 7 8 ,# g a e b e o h b ~# Y> 8 o ~# K= 7 a g 7 0 t' e tA ~# o r W$ a Y$ a c n n n K= ,# k 9- n L= L= h ^# c c n C; K/ {# K= `$ q ~# r s> h s> 7 r t Y$ r ,> r h p W$ % c n L= n s> s> o Y$ n^ Y$ h p h h !# ~# e ~# s> c Y$ ~# g a 7 e n ]# j ~# n h Y$ n 2, 2* ~# g L= h X$ p c !# 8 p c !# n (# n p O' h ~# k n n `$ h s> ,# ~# K/ g g ~# r c ~# a g a 0 ~# h X$ ~# Y> c L= L= c L= |& n ~# 0 6 a {# c g 3] 0 k a b c e n j e j e c 6 0 (# j [& a a ,# 7 6 i o 8 } c e g e c e b 6 a j ~# V$ $# $# j h 8 9 $# $# 9 8 :& [ } } : } : } < $# /& } &# ,# } $# [ V$ 7 7 $# ## 1* 2! v, x, A, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, z, u, u, ' # > H= ] }* Q$ ; ] > $ U$ > * . Q$ - 5- - Q$ p9 + * & $ . ' > . > > !, V@ & $ $ ", +"y, y, y, z, z, 7' !q.8' Mp.Mp.+' Op.(q.!q.Mp.Mp.Mp.8' Mp.Mp.+' +' +' +' +' Mp.Mp.Mp.y: q, z~ Mp.Mp.Vp.8' !q.[) z~ z~ z~ q, q, z~ z~ *[ z~ z~ *[ z~ *[ `p.9i.z~ z~ 2! 9| e^ Pi.&[ xi.<{ <{ <{ 9| <{ 2^ 9| 9| 9| <{ <{ <{ 9| <{ J$ R@ J$ <{ <{ 9| *) 9| jP <{ J$ G= I/ I/ ]^ J$ L$ I/ I/ 0' I/ I/ BN L$ 5_ I/ 1) # 0' I/ = # K$ + # 5_ L$ 0' + Q$ Q$ # ]& + . R@ + # . L$ . $= R@ R@ # !, . > |* |* - = & . = S$ }* k3 = $ %= U@ . . . $ 2) * + $ > = U@ U@ N$ $ . ; Q$ A; ; U$ & Q$ > (& & ~ N$ %= ; & | ] ; U$ > N$ H= N$ ; # N$ & H= ; ; & ) Z! { U@ ; W@ ] ( ( | Z! > ; N$ X@ 2 ; ~ 1 { { $# X@ ) U$ T- { /& ## X@ ; { J= 5 4 { d -# W@ 1 [ $# *# Y> 2 { ] / `@ : $# ,# ( 6 6 ,# / 2 [ $# 1 b &# / $# { [ 4 6 b 7 e $# d a 7 b 8 V$ b b $# J= +# /& L= a 0 i e 9 } o 8 6 6 6 6 c ~# b g c *= V$ V$ 8 g 9 a n !# ># g L= j a k f n ~# p d o h j 9 c c ,# o s C; r g a 6! h z: ~# k ~# 0 c L= c h 9- e h L= p 0 Y$ 0 k a n {# n n n 0 X$ L= L= r n `$ G ~# C; [& {# p c L= n L= 0 r Y$ s> }& 7 e n a {# o Y$ p r s> X$ Q{ h *= 0 L= L= c |& c r o h c ~# n `$ ~# ,# n |& n c *= c V$ c n o {# [& r n _# i k Y$ 2* h s (# p e h h ~# ~# A~ 0 n c e n ~# A~ n ~# V$ 8 e *= c ~# L= h h a $# 0 a 0 0 a 7 A~ a 6 ~# {# ( ~# s> a 8 7 ># X$ &# 6 ~# X$ h 6 l d 6 a j c 6 &# o a ,# a e &# a } } b b b 7 a 6 n Y@ ,# : 7 a 8 7 ## d &# ( } $# d &# < $# 6 } $# 6 5 6 == d 5 ,# &# - r, v, =) u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, z, u, u, u, y: # > N$ U@ . . $ & H= ; . & | ; ~ ; $ Z, . !, V@ }* > # > > . $ $ > . # > & Z, ", +"y, y, y, z, ]q.7' !q.!q.!q.8' Mp.8' (q.8' Mp.Mp.Mp.!q.Mp.+' Mp.Mp.+' +' Mp.Mp.Mp.Mp.Mp.Mp.*[ [: Mp.Mp.Mp.Mp.q, z~ q, q, z~ z~ *[ z~ q, z~ z~ z~ z~ *[ vh.9i.z~ *[ 2! 9| 9| )~ <{ 9| 9| 2! 9| 9| *) 9| w9.9| 9| <{ <{ <{ <{ <{ <{ <{ 9| <{ <{ 2^ 2^ *) <{ <{ 2^ L$ I/ p9 G= BN ]& 0' I/ L$ I/ 0' <{ BN ]& 5_ I/ + # 0' = * 1) 0' ]& + = + V@ Q$ . $ $ ' # = + + # ]& 1* + ;b ]& L$ . . > # > $ > . & > ^& > . $ k) 5_ > $= ' > + > V@ ]& U@ . & > ^& > $ - $ . > . ] S$ ^ - ] ] U@ P$ | }* P$ Z, Q$ ' o! | ; H= N$ | Q$ | H= & S$ ; S$ %= | U$ U@ ^& - U$ 1 { ; ] %= N$ ( X@ ; - { ~ ] W@ .# ~ ~ /& | 2 | | | X@ $# { 2 ( 1 $# $# 9 *# ) 6 9 6 9 X@ } : ( 9 &# 6 $# &# { { < 1 $# < 7 9 } d -> &# < ## $# ,# 6! a a a 6 d d :& $# a 9 ,# a [ V~ 7 7 a 6 } 6 == 7 &# 7 9 $# V$ ,# ># q> 7 $# c $# 9 '# 3* j a } i c !# ~# c ~# K/ _# c Q{ c -> 7 Y> 8 e e a n 1, L= `$ h r ~# W$ ~# 3] r ~# c n Y$ ~# [& a' ~# ~# d c c L= a 0- 0 L= b L= j~ h n n {# ~# h ~# n `$ j K/ m e n 0- ~# ,> o 0 A~ o Y$ h a L= 7 ~# h |& e 0 c 0- s> h l h l 0 h [& o i n n e j h a n h ~# D, a 0 ~# r A~ h [{ a f o r Y$ n h c % p `$ `$ c M' h n o a 7 3* n V$ a i n n 0 L= 7 ~# 0 ~# ]c j g 7 !# ,# ~# 7 ]# c ># a e e a a ~# C; e b 6 ~# 6 i j 9 q> V$ -# 0 ~# j e } 6 ,# ~# a 7 a a Y@ a -# 7 b == d e X$ d &# V$ $# 6 $# $# e 8 6 $# 7 $# $# b b 7 [ : d e j < V$ { } 1 ( $# } B; 5 W@ , [ : ] D[ 8' x, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, u, y, y, z, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, u, s, y, y, y, y, y, u, s, y, u, )~ ] ] | S$ T@ * . & > - . V@ | - z] U@ . ] $ Q$ > $ = X! $ + * Z, = $ $ + * 2) + ", +"u, y, y, y, 2q.7' 8' 8' !q.8' +' Mp. q.(q.Mp.y: +' !q.8' Mp.Op.Mp.Mp.Mp.Mp.Mp.+' Mp.Mp.6' z~ z~ [: Mp.[: Mp.5o.5' z~ z~ q, z~ z~ z~ *[ z~ *[ *[ *[ z~ vh.9i.z~ z~ z~ 2! 2! 9i.<{ 9| xi.2! *) <{ 9| 2! <{ 9| 9| *) <{ 2^ 9| J$ <{ 9| J$ J$ <{ 8S *) <{ ], <{ <{ J$ R@ L$ <{ R@ <{ ;b 0' R@ R@ 0' pH ]& ]& 0' L$ $ * # 0' Z, $ # $ . + ]& ]& + . = = . . + ]& # V@ }, L$ + . ]& $ R- . . > U@ $= ]& o! . # = > . Q$ = + J$ ]& ^& > - + - & - ] > & . U@ + Z, * $ # Q$ U@ $ > - > # > | $ Q$ * N$ H= Q$ & . X@ [ ; N$ | ; & H= U@ U@ | ! ) | ] H= | 2 U@ Z@ N$ & ; R$ H= 4 | | ] d Z! 1 ~ < { / ~ ] ) [ X@ ~ T- { [ } d { 2* /& : 5 | , &# ) 9 ( 2 1 $# 6 &# ,# ( $# d { < ,# 6 &# V$ V$ +# J= /& $# } } V$ [ 6 X$ 7 ,# $# d 5 b $# d -# == 6 8 $# d b 6 a a 7 6 8 a V$ b 9 7 a -# a e } e &# 7 d i d 6 d a 9 *= {# ~# ~# {# e 6 ~# [& e ~# 6 ># a ,# j a i 0 c ,> `$ r n ~# [& 0- 0 [& j n vk r C; L= 0 Y$ ~# ~# h 0 a Y$ h [& h s> ~# {# 0 !# ]c r 0- ~# r n L= p ~# [& `$ X$ ~# ]# ~# L= h 6! 0 h r [& n r i V$ -# g n h c h C; o L= ~# L= g W$ z: c a c n 7 a n n a c c g e o h $# j a g r n 3* a e c6 ~# Y$ h h c _# a 0 c c } c ~# c n ~# 2* n 0 a h 2, L= g {# a '# k {# *= vk e n L= h o j i a a 6! ~# n a j c ~# 7 i 0 7 a L= j a &# 7 7 } ,# e &# e e V$ 6 } 8 ,# / 6 e $# 9 < $# 7 &# *= 6 &# 6 7 a 7 *# [ =# 6 a ( } $# 8 a b &# $# $# } ># } } ( } ## } d 6 ) ], +' u, z, y, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, z, y, z, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, u, y, x, ], ]& - { ; ' S$ & . V@ > | S$ > ^& . & $ & N$ * . Q$ # > S$ + V@ V@ - # = $ # . V@ ", +"u, u, y, y, 3q.2q. $ = # + = Q$ V@ & [* # U$ S$ o! ] & & . | > . ; & S$ . & N$ = - . }, U@ S$ o! > ) S$ . ~ Q$ $ N$ ; Q$ ] - | ' ' N$ ~ & ; ; ] N$ { ) | { ; %= | { > ] J) 7- ] ^ ; 2 ] ## Y@ 7- | /& %m 7- } { [ { ; ) : ; < } } D, 7- b 5 } 6 } [ { < 7 # } ~# $# 7 1 } < / 1 Y> $# : =# -# &# a [ } _ 2 d e b == a -# ( &# b } ( 6 b ( &# $# $# 6 b < 6 d $# a o F! $# b &# b i &# c f 8 *= 7 7 V~ -# a a ,# e B; 7 ~# c l Q{ o ,# ~# k i ,# ># V- ~# V) j n a L= n 0 0 0 c p n 0 l ,# n Q{ c e h 6! L= ~# h 0 6 |& _# c ~# a h a h [& L= 9- {# c e L= L= ~# p _# g n Q{ n K/ c e ,# p c 7 n _# 3* h X$ e e X$ a h p g h `$ o 1, p 0 ~# c *= c L= Q{ L= g ~# a z: 0 c ~# e *= n 0 a n L= ~# {# e e r `$ e r 9- n 0 a h L= == $# k a' !# k [& c e e C; L= 9- c e 0 e ,# L= a e n e c {# 3] L= e 7 a a 0 ~# 0 j 8 L= o 7 e V$ [& 7 i 6 b 7 d 0 X$ D, :& h $# 7 V$ 7 e c 7 d a 6 Y@ [ b &# ## 6 ( 7 ( 7- $# j 0 7 6 i [{ D, &# 7 g :& g $# b b } < 6- ## 2 < ( } < { ,# + q, x, y, x, x, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, y, x, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, u, s, @ ] ; - Q$ & ; ^& & U@ > U@ . N$ - S$ & $ & ; - [* $ . > & V@ # . . + Z, # = p9 $ ", +"y, t, y, y, V@ + 0' V@ # $ E! # Q$ R@ % # # $= {c Q$ 0' 0' . . = 0' + !, ]& + > L$ . > |* + T@ 0' # ' . & $ |* > S$ ; | =' N$ > & = $ > $ Q$ > ; Q$ H= ; ), . ^ $ * . ; ; S$ U@ N$ Q$ ] | 2 | { R$ & W@ ] ## 7- ) > R$ N$ X@ | U@ ~ ] ) ~ %# 2 W@ } d { 5 ] } { 2 { X@ ) / ~ ^ ] X@ 6 ( 4 ;# ,# 2 { : &# 2 ~ Y@ } &# { $# < [ 6 < : [ 7 2 ( < $# < < ) 8- == 6 b : $# == -# : } } -# } &# $# [& 6 ( $# =# b } $# b j 8 c pp.K= e k a i b V$ a ~# e [{ i ># i 6 d a Y> W$ 6- b h ~# } X$ c V$ Q{ 0 7 j 0 ~# 0 == X$ i ~# c b A~ n K/ ~# h [& {# g 9 ~# h |& ~# L= c h k ~# r ~# e h e 7 c i K/ V$ 0 0 c 0- h Y$ c c 7 h c c 0 !# e ~# L= ~# {# 0 g !# L= n n ~# o ~# c n 6 i e a' e ~# n c g e r e o A~ p a' ~# 6 r c o g g e n n j e e 0 L= j a 0 ~# ,# q> L= n a K= 8 7 7 j n e a 7 8 C; j Q{ o Y$ f 9 ,# ~# k a $# c ~# ~# 7 h o c 7 i 6 } n 8x 0 0 e W$ 8 7 0 b a [& 9 } [& e e 6 a 9 } 6 ( 6 b d 6 $# {# 0 7 &# :& < &# $# *# a 9 < V$ ( b $# $# -# 6 7 7- 7 9 $# b -# ## 4 } { } $# ># < < } ## } < d 1 }* v, s, u, u, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, u, x, y, y, y, y, y, x, y, y, y, y, y, u, y, y, z, y, y, y, y, y, u, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, u, x, H) .( $ !, & * = - V@ & & U@ $ & $ T@ - + & Q$ = . * Q$ ' Z, & $ ; > + . $ $ . T@ V@ ", +"y, t, y, y, |* # = # ; Z, > U@ & & S$ U@ & > S$ & . > & & U@ & 2) > ! U@ N$ Q$ H= =' ] - - ~ W@ P$ Q$ S$ ~ *' | S$ N$ P$ 2 d { ) ~ %= U@ | P$ ; *' & 4 ; { N$ N$ & > N$ ~ ) | , ^ ~ ) | 2 ~ { 2 ) %# 1 W@ 5 2 ) / ( ## d } < ) X@ / ## { < / 7- [ 2 ,# $# < ## b / $# == e { ) 7 6 $# { ( [ &# ( : : ~ < / == $# } V) -# &# 6 $# 9 *# e &# 6 } c j i b b == &# 5 &# 8 } 8 8 i 7 i ~# ~# a Y> b a e $# a j 6 e 7 i c a e N' c n 7 o ~# n n j 6! j k 7 a i X$ a ~# 3] L= Q{ 0 p ~# |& 0 6! 0 a e L= Q{ h n h k r 0- a X$ ~# p ^# c r p c g c c e L= n 6! ~# g ~# o ~# h h ~# ~# c Q{ 6 Q{ L= 7 e 0 5 o 2, h c b o c 7 6 X$ a L= a `$ L= *= 7 [& ># L= e 7 0 0 ~# L= o ~# 0 L= [& ~# ~# o :& $# e ,# j a J] 6 i e a 0 } c 8 a ## 7 ~# h a' k ,# 8 e a 7 a 0 ~# c 0 7 $# k 0 Y> < ~# ~# a i e $# $# a $# } d ( $# < 6 V$ == V$ 6 8 8 :& :& e ,# ># ( b [ ( a 7 / $# &# } ~# $# 7 6 &# &# 6 6 < b e _ { &# { ## } 9 &# / d 4 { 9 -> { < / ( ; q, s, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, y, y, u, u, y, y, y, y, z, u, y, y, y, y, y, u, y, y, y, y, y, y, y, z, z, x, y, y, y, y, y, y, y, y, y, y, u, u, u, y, x, x, s, & ; ; & - . > > U@ Q$ . $ ; . > V@ ; Z, ; {c . S$ H= ' $ . + $ |* ]& > > . . 0' = ", +"y, t, t, y, ]q. . ]& + ]& + + - . . S$ & $ $ > ; L$ ]& V@ # = 1) > Q$ . - > . N$ ; S$ $ > Q$ $ . ] ; # . $ $ 0' & . ' $ o! S$ S$ S$ + & > ] & ) P$ | 2 S$ Q$ & & H= U@ ] & /& T@ ] ] ) ^& ~ | - N$ . ; | | X@ N$ | (& - . J/ ] 1 2 /& 1 { ) d { ~ $# ## { 2 ) $# { ( { { 2 ~ W@ 5 d ) 7- W@ : $# : W@ ## 1 : } b W@ [ 6- ,# 6 } &# $# 6 7 $# } $# 6 7 } &# } o $# 6 3* 9 &# j 9 == 8 7 $# / d a '# e d i $# :& 8 ~# 0 a N' 2* 8 e c n a a ># n 6 2* 0 d V$ 6 _ c ,# 7 6 6 ># V$ &# $# i n o [& ~# 0 6 n h h A~ ~# n i C; c h ~# k e c k n r Y$ 0 a k e c ,# ~# e {# e n C; n a e C; ~# ,# 0 c A~ e 0 0 g e h ~# ~# 8 e a h h c 7 8 0 e ~# c g a 7 j n ~# o 8 e c p g V$ c j a c a e h ~# g 2* h c 7 0 X$ b k ~# e c V$ } c h e j 0 c 7 j ~# 6 V$ C; [& i a A~ 6 $# ~# 7 b ,# 2* 6 ># 0 0 8 Y@ ~# e k c 0 6 0 ,# 6 D, ( $# 6- 5 a 8 ,# i V$ e b &# ~# &# j &# ,# b &# : 7 c a j b =# 6 9 &# $# $# < 7 6 1 1 b $# } a 8 ( 1 7 $# ## d $# &# $# /& ( ( 9 == &# ## <& Y@ 1 < [ ^ 9 ( 1 $# W@ & ; 2! H) s, u, z, z, y, y, y, y, y, y, y, y, z, y, u, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, y, y, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, u, q, . . - Q$ & ' N$ S$ & & Q$ . Q$ & > + . & . $ * . # T@ . . > + ; + $ $ $ + $ ]& ", +"y, u, t, u, ]q. k) $= |* . + = R- R- # Q$ & > & $ Q$ $ $ |* S$ $ ] $ = $ # & & > o! . - 5- Z! H= ~ P$ ] ; N$ N$ ] | S$ S$ ; > > & | W@ ; S$ ~ { |* | ! ; | N$ H= 2 R$ | ) & X@ W@ ~ | X@ *# ] X@ | ] ] Z! | ( { 7- : [ ) 5 W@ { D, } { ~ +# : / [ 4 { 9 $# < 9 / ~ 4 7 b Y@ < 2 ) $# ## < 1 [ : } /& $# &# &# : &# ## ## 7 d 7 &# 6 &# ) /& V$ a $# < 0 ,# ~# $# : 7 b d 7 D, b 6 5 [& $# Y@ { 6 7 $# 6 < D, a e 0 b N' b h o 9- K= ~# ># a 7 b ~# 0 a a c L= o L= k 6 a g ~# ,# C; ~# a b i 0 Q{ c 6! 0 0 a o L= L= n ~# Y$ 6! c 9- n L= i A~ Y> r [& n a e a 0 j 7 ~# g [& c ~# 8 e 2* h 7 g 0 e a V$ ~# n K] L= |& ~# K= n k g e c o ,# 7 ,# e ~# ~# 7 &# ,# 0 b 6 o _# ~# V$ a V$ a n ~# h o ~# i a 6 e ~# n n V$ 6 5 *= ~# Vj 7 a 7 } q> ,# 7 Q{ i a b -# 9 a 8 a g 6 [& ~# 0 b e e ,# L= 0 a {# a 1 c 8 d [ [{ a 7 &# j } ,# ,# 7 $# b 0 ( =# $# ,# ~# 9 $# $# < $# $# 7 &# < $# &# b :& 6 $# } 6 Y@ 9 V$ } < 6 V$ /& /& V$ $# 6 $# [ < &# < $# { { 9 < [ ## ~ *# %= s' v, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, z, y, y, z, u, y, y, y, y, y, y, y, y, x, s, u, y, y, y, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, u, ^, . + R$ ~ Q$ Q$ > * 1* z] & > & T@ P$ $= $ k) . * * . # # # V@ $ # - * ]& L$ o! > * ", +"y, y, u, t, 7' > ]& S- ]& T@ ] ; & & N$ - ! $= & > - > ] ~ & $ > Q$ k) & = ' Q$ U$ N$ o! | Q$ Q$ ; - N$ N$ R$ ; Q$ > . ; ~ | $ ; A; | 2 X@ ] | U@ N$ ] | 2 ] { W@ / I= 2 ; ^ N$ & ] N$ N$ & ; ( ) 4 } < N$ X@ ) `@ < ) ## ^ } 2 ^ ~ R$ ~ $# 2 [ $# [ < $# X@ $# &# ~# 7 i /& [ j $# ## ;> { [ 7 $# == } : $# ( b a } U- ( V$ a' 7 7 { a 6 == V$ -# %m $# : =# } d ( } e e 7 7 z: 2* $# 5 $# 0 V- c ( Y> c a ~# b ># V) ~# {# *= a a ># 8 c Y> e a A~ a 7 ~# 6 e ># a p 6! a ~# ,# ~# 0- ~# 0 {# ,# h h n c a h a ~# n ~# 6! h !# 6- Z$ 0 L= i i &# q> Y$ e o Q{ c o 6 ~# $# =# a 6 b 7 X$ 8 c e e ~# L= ~# a X$ X$ K/ 6 o 8 ~# X$ b } Y> n a n r L= e V$ 7 b b 0 L= d a ~# 6 6! X$ d j a c h ,# c i a 7 :& 6 i c W$ &# V$ a &# 0 a a n 7 '# $# ># ~# 0 a' &# N' 9 0 -# 7 l n {# 3* ,# ,# 6 7 a' a {# {# L= 7 ,# a $# b b d < =# -# e $# } $# } d D, V$ &# $# =# < i < ## $# 7 $# 7 ) 6 6 [ ( ( 6 $# b 1 d [ a 7 6 6 d } { $# / ( b } &# 6- 2 { $# 4 } -> } [ < { ~ ~ R@ q, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, x, y, y, y, y, x, y, y, y, y, y, y, y, y, y, s, u, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, 5' U@ $ S$ o! ; - Q$ 0' # o! > | > $ (& ]& . > U@ - 5- ' ]& V@ $ > R- . T@ $ Z, . * $ L$ ]& ", +"y, y, u, t, ]q.]q.]q.{q.7' (q.(q.8' 8' 8' Mp.!q.!q.,q.8' Mp.8' 8' !q.+' Mp.Mp./q. q.Mp.+' Mp.Mp.+' z~ z~ q, +' Mp.Mp.6' q, z~ z~ z~ q, q, z~ q, q, z~ z~ z~ z~ Il.|1 z~ 9i.ah.|1 9| e^ *) 2! 2! |1 5' 2! 98.9| 2^ ^, *) *) <{ <{ `, ^, jP *) 2^ jP I/.J$ J$ J$ jP jP 9i.*) 9| jP I/ BN 2^ J$ ;b L$ R@ ]& I/ I/ L$ ]& 5_ 1) # ]& 0' Dv # + 0' L$ =[ ]& $ ]& ]& V@ > + + # ]& # . l) ]& # > $= $ # ]& $ ]& + & =' . V@ . = . |* + + ^& Q$ - # > ' Z, V@ > = U@ * T@ = - $ T@ $ ] . %= ' & Q$ Q$ > & . & Q$ $ Q$ ; ; T@ ^& ; . ;# ~ *' . |* U@ S$ & . Z! N$ }* H= ; S$ | *# # 7- | > > ; ; & (& - ] 4 ~ { U@ T- N$ ~ ) 2 Q$ g{.$# 2 1 [ 1 1 } : 4 { | Y@ 2 ) } ~ [ / [ Y@ &# } { ) { } 8- ( # *# U- $# 2 ( ~ [ =# $# / | [ } 6 $# } a $# / 4 &# &# -# $# f] $# 7 { ) $# 7 6 < /& ( &# 6 : < ~ } 8 &# ( b 7 { 7 6 a 7 6 ~# 7 } b :& 0 ,# 9 9- 2* b {# [ a i ,# 6 c } d d g h n 7 ~# Y> ,# C; !# ~# e b 8 ~# L= 6- i ~# e c L= ~# [& 7 g ,# a ~# ~# o L= 7 {# ~# b &# X$ |& ~# o 7 6 7 6 a 9- n V$ j e ~# 7 D, ( V$ a b b 6 ~# c g a 6 0 $# } g } ~# c ~# e 6 6 3* 8 !# n a p c c r 0 h h c n a h C; o a c g q> ~# ,# ,# e {# j a c V$ 6 k {# 7 b d d a a a c 7 b a j ~# a 8 &# 6 ~# &# j $# ,# a $# ,# g 3* 6 e ,# ( d ,# V$ j j k 7 ,# b b 7 $# d # } N' < b 6 =# $# 7 &# $# Y@ $# } 6 ,# 5 d ## d @# } j 7 } [ : 4 6 7 { Y@ /& : { $# ( ( : { { ; $# [ V$ ( 4 [ ( ## { ) X@ { . q, s, u, y, u, y, y, y, z, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, u, u, y, u, u, y, u, z, y, y, y, y, y, s, x, V! ] . R$ ] o! > $ * > . = Q$ > Z, = . > & Q$ k) $ N$ . $ = + 0' $ . $ = + + > . + ", +"y, y, y, u, ]q. + ]& $ V@ ' $ R@ ]& . = $ . U@ $ * # Z, . T@ V@ + $= Q$ 0' + > & $ * S$ T@ o! * * = . $ > 0' Q$ U@ $ & . $ Q$ }* & . Z, + Q$ ]& $ ; S$ ' ; & ; ^& H= ~ T- ' N$ | T@ P$ | | ~ ~ ; [ < ) ( | ) ), & *' | ] ; & | ; | ^ ~ ~ ~ ) 1 2 8- 2 2 ~ /& - ^ 1 [ { ( ; [ | [ 2 ~ 6 d { ) W@ | a [ : : T$ ## W@ / 2] $# } 7 { $# ## [ } { 2 : 6 { } $# _ ) d a 8 } 6 g ( $# 2 $# $# $# [ 7 $# } ## $# [ d &# < -# 7 } $# ( } $# 7 a :& 9 ( $# $# e a 6 c e j ~# e e 3] ,# a ># 6 6 j *= a ~# d i 0 0 a k ~# L= ~# a V$ &# ( a c e L= a n ~# J] L= e a ~# tA n ~# a' ~# d b 7 D, 7 *= a ~# c 7 ,# 6 ~# 7 e 6 $# a' c 7 7 6 6 l Y> ,# o i 0 k ;= e Y@ e j 7 h 7 7 0 7 8 n W$ *= ~# F! c a n [& i b 0 0 V- e ~# e F! 0 *= e ,# c c q> c d c [& a a ,# 7 7 7 j a 6 6 ,# 1 ,# ~# 8 &# &# h [& ,# e a 6 7 i ~# j 0 ( &# &# 6 ># Y@ ( b 7 / &# Q{ 7 7 3* q> d -# $# 7 &# } &# $# } &# ( 5 < 1 U- a [ } &# < } &# I= < b 7 } ( $# } } } : { 9 : 1 -# ( $# ## : ~ { 2 $# 1 } 2 4 ) 2 | d / [ { [ { { ## ; `, s, y, u, x, 7' x, y, x, x, y, y, y, z, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, x, y, u, y, y, y, y, y, y, y, y, y, y, y, x, y, y, y, y, y, y, z, y, y, x, u, x, y, y, y, y, y, y, y, y, u, r, + ; N$ N$ > . $ ]& T@ . Q$ ' > > + V@ Z, $ ' = + L$ > $ = . . . * = * $ # * $ Q$ # ", +"y, y, y, u, 7' = ]& }, $ L$ + # + V@ . ]& # + = |* $ . - [* Z, > Q$ - ]& [* # $ . # $ Q$ . U@ H= |* & | $ (& # $ ; - > + ' ; Q$ * * . ; S$ U@ H= & Q$ ; ; P$ Q$ Q$ > S$ Q$ ^ 4 { > ~ { | ] U@ ~ ; & ) & . & N$ W@ ] & ~ [ W@ Z! U$ N$ X@ > N$ N$ -.1 ) ) { | } < ~ ~ | N$ ) 2 W@ [ ## { / W@ Z@ 2 / W@ [ ) ## } 4 +# 1 { / ## -# < -# : $# < $# ## [ / $# $# *# 5 &# $# 5 1 { < ## 6 =# [ *# ( ) ## < -# < < [ ## &# V- } $# V$ b V$ &# 6 7 < 6 7 6 d x0 ## a e b N' ## a 6 9 6 6 7 ,# 7 b &# ,# 6 !# r 0 L= a 0 L= ,# ~# 8 6 g s> n {# {# a ~# 6 9 ~# ~# -# q> 5 V$ b k k d a 6 } $# b 7 7 e ,# n a ~# d a e a ~# V$ i e e 0 c a 0 c } L= a L= e e ~# d -# *= i j L= L= n j i V$ 8 &# ## 2* 6 g Q{ a j vk ~# 8 e $# 6 6 l d $# b b 6 q> ,# vk 9 9 i 7 Y$ L= 9 a 0 0 7 a ># b 6 ( 7 ,# 0 ~# 6 9 e a' a 6 A~ $# 0 ,# 6 8 &# d b 6 b } d 7 7 < { 6 [ 4 b } $# [ } 7 == ( /& ( 6 { } g &# e 7 } < } } =# } &# 7 2 [ < [ } < { [ Y@ } { Y@ d Y@ [ ## ~ : [ } ## { ## $# ( 2 ## 4 P$ { /& { < X@ ~ 2 q, }) x, y, y, t, x, y, x, t, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, s, y, y, y, y, y, y, y, y, y, y, y, y, y, 8' u, z, y, y, y, y, y, y, y, t, y, y, y, y, u, s, u, y, z, y, y, x, M$ > Q$ $ & $ + # * R- Z, & . = * . ' . k) . . $ Z, $ !, + L$ # = ]& * $ + Z, $ p9 $ ", +"y, y, y, y, 8' ]q. = . V@ $ $ . 0' .( $ $= & ' Z, + ]& > $ . & > . X! # T@ . - R$ ~ - . . . ,Q ] - o! ^ ; $ $ . ; k) . V@ ; ; > > ' ; S$ S$ 2 | | N$ | ) ; ] ] ] `@ ~ ; ^& H= & | ; > ^ J= 2 - { ( ) ] | 2 X@ N$ 2 N$ | ] & ) ] Z! 2 ) ) | ^ 2 1 ,# 1 ## { ) [ 7 { [ D, ~ | < { T$ ( 2 { D, ;# } b ( &# } } { J= [ [ a } ~ $# 6 1 ^ $# $# W@ 5 7 d { ( ## 1 @# : ( J= $# } } &# } -# } -> $# } 6 } } $# { } V~ } d 6 6 6 ~# a } g 7 b e 6 7 ( a ( e b a a 7 0 a e 9- {# e 9 {# a a' d $# a' 7 $# g 7 ,# $# ,# X$ 9 0 c j 7 ~# a X$ -# b &# Q{ [& 7 a e ># a d a n a W$ V$ ,# g 0 0 7 {# j &# {# L= a ~# ~# 8 a' a 2* i b e a 8 a k ~# 7 X$ h *= ~# 7 e [& 8 j c 6 a 0 c 8 6 e a i 8 L= ~# d &# d ,# ,# 0 a e X$ k 6 7 e 5 $# 6 6 ,# a 9 5 +# -# a } &# $# a 6 6 7 6 < ~# } d e &# $# 8 L= $# 6 6 ## &# 8 $# 1 &# } &# a } 7 &# a' j 9 :& $# ( [ &# 7 J= 7 V- < ( 7 $# < d ( ~ *# } ( Y@ ( Y@ == 7 { 6 } 1 7- : } { 1 [ 2 } } { } { 2 *# < [ < 2 < d *# 2 ) | R@ s, u, y, u, y, y, y, y, y, u, z, u, y, y, y, y, y, y, y, y, y, y, u, u, y, y, y, y, u, u, y, y, u, y, y, y, y, y, y, y, y, y, y, y, y, x, u, u, y, y, y, y, y, y, y, y, y, y, y, u, u, u, u, y, y, y, u, 6' # . ; ]& Q$ Z, & . Z, T@ $ ] . Z, > . > ; & ; > $= ]& . . & + + l) $ ]& 0' . X! ]& $ $ ", +"y, y, y, y, 7' 7' ; > > ; U$ ^& ! N$ *# N$ 5- & ; | ] - ; ! { ## N$ [ 2 Z! P$ N$ N$ ^ S$ [ } ; R$ ! ) Y@ Y@ : { { d { ~ } [ : ,# ( Y@ $# { ~ 1 /& [ { [ N$ Y@ { ## $# 2 $# ## { $# ( ( 9 :& 6 J= [ ) 2 ~ &# =# } 6 -# V) 9 6 7 V$ Y@ X@ ## b { 4 6 e b b } ( -# } -# b 6 L= 6 i 9 ,# D, 9 : ~# } /& Y> { 5 d -# ,# b &# 7q.6 } b } => c Y> c e [& j 8 c6 k 0 $# g n i 0 9 a 0 a ># 7 ># ~# a 0 a ~# d 0 i L= b n ,# X$ -# 7 0 {# 0- L= h 7 g d b %# 6 ~# e e 6 0 3] i a [& h =# V$ X$ 0 V$ ~# ~# 7 g i 7 $# $# 7 n 7 V- j W$ a 6 -# $# 7 6 7 i i $# $# } ~# 7 8 a 6 k ,# ~# V$ 6 a $# 6 a V$ a ,# b == } a $# : &# == 7 V$ 7 6- 7 a &# &# 6 7 6 V$ 1 : [ 8 V$ } ,# 6 9 6 V$ =# &# ,# } $# &# i $# a 6- < b 9 9 $# a ## ( V$ ( $# &# V$ ( [ ( ( ( ( V$ [ } } a ( /& 2 : { : 6 } < { | [ 2 ) < { $# d } { ~ { ) ) ~ ## 2 2 | { ; ) ~ U$ G= s, s, y, y, y, y, y, y, y, y, u, u, y, y, y, y, y, y, y, y, y, y, u, y, y, u, y, u, y, y, y, y, y, u, y, y, y, u, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, y, y, y, y, y, x, u, u, s, u, s, y, y, 6' . + ; - . V@ T@ U) T@ T@ 0' . ]& = . ' S$ ; > S$ . & ' H= Q$ = # Q$ V@ . T@ $ $ Z, = ]& ]& ", +"y, y, y, y, ]q.8' |* = Q$ ; ; ; ] ] & N$ Dv & $ ^& !, $ %= & o! . V@ . - %= > $ | N$ & 4 ] ; 2 N$ 2 ^ ~ g{.X@ N$ ] X@ | U@ ^ ~ U@ W@ W@ ) > | g{.| ~ [ ] > H= ^ ~ ; d ( 2 W@ ~ ) ~ ## ( } : { < J= 4 W@ $# 2 2 { $# W@ } $# Y@ W@ g{.6 { } { 2 { / -# &# [ ~ & ) 6 /& ~ { < '# : W@ &# $# 9 } $# } ( < 6 : } *= b 7 i ( : 7- d 6 i j a d d d b $# { [ d 0 a &# < ( d 6 $# 6 D, $# J= 0 9 } ~# 8 6 a D, 7 6 j M' 3] 6 n 6 ,# ~# C; ,# e e A~ &# b j 0 a ,# a 6 V- 7 0 a tA c 7 &# $# i a ~# ,# 6 &# &# 8 8 q> 6 0 d L= $# b 6 8 *= n b b a 7 } 7 i -# 6 e i ,# &# 8 d 8 6 7 ~# } } 2* a ,# 7 ,# d 7 9 7 a g 6 6 d 0 6 ,# } a a a U- } k } ,# a == ( a d $# $# a == 6 $# 8 &# &# 6 a' } } 7 &# 6 ~# e g ,# _ +# 6 :& -# : i &# } $# : } { } b b J= , 6 J= < ## [ ( < 7 $# } $# _ ## / $# a $# ## == | *# *# ## } d < < { *# 7 [ ( X@ 2 } Y@ /& [ { { / [ { < { } 1 : } < X@ Z! ~ 2 ## | %= > r, A, u, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, u, u, y, z, z, y, x, y, u, s, y, y, y, y, s, x, y, y, y, y, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, s, y, x, )~ . > & > !, V@ > # > Y! 0' # & T@ & $= . * # $ + Z, $ $ Q$ = . . # M$ ]& + . $ $ = = ", +"y, y, y, y, z, !q.!q.]q.]q.]q.2q.]q.(q. # # $= |* . = > V@ $ $= $ ]& # > * * #^ + > + + + ' T@ > + * T@ = . = - Q$ . . - o! Q$ + T@ S$ ; > Q$ * & & Q$ > U@ & - > (& > $ > U@ & & H= S$ N$ { U$ ] 2 { 2 R$ H= & U@ ; ; ; ~ ] { 4 ] ] ) ^& | | N$ ~ N$ ] ] *# | ) { ] d 4 4 } ~ ~ ) [ T- ) , W@ ## &# ~ ] W@ ( 4 q> ( `@ < { | [ [ N$ ) 2 { $# ( ## *# /& $# *# 1 b &# $# : [ ## ( $# ( 8 $# 7 6- ## ( ( } &# ( b 8 7 &# } ## : } d 6 d d a &# ## 2 9 b [ 6- D, a 6 V$ 0 Y> *# } ,# 6 b a e 6 J] 7 e a a ~# ,# ~# i ~# L= $# 7 ># a Y> i k d d ,# 0 a 3] M' 6 -# e $# ># *= 6 $# 8 ~# a 8 : 9 ~# ,# 3* a 6 [ } 7 L= ~# ># 7 6 $# } < $# 9 ~# [{ 9 b e 7 g 7 ~# &# 3* {# &# n 7 6 c a ,# } < 4 d g 8 ,# 7 Y> 1 9 ( } ,# V$ b ,# 9 ,# b } ,# g a ,# 0 ># J= ,# $# e 7 b 7 j $# } 6 $# &# b $# $# 6- 8 $# } 6 b a Y> 0 b $# ,# &# :& a 4 : } $# V$ $# < ~ &# $# -# 6 { } +# < : 6 6 ## &# ( d } ~ } :& } } ( 6 / ) { $# [ ## *# ( ) [ d { [ g{.< 6 2 { } X@ $# } : ~ { T- | ~ ~ : [ ~ ( ## Y> ~ ) ^ %= ## { & 6' w, x, x, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, x, u, y, u, u, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, y, u, y, s, s, v, @ T@ Q$ {c > Q$ > > - * }* . . $ $ $ = $ . $ $ Q$ . ' $ & * $ M$ ]& . = + Z, ]& ]& L$ = ", +"y, y, y, y, 6q.9q.(q.]q. # 0' V@ + # + ]& $ $ 5_ . S$ . + !, # = V@ 1* S$ ' # L$ + # > V@ * . - ]& * ]& . . # ]& + - * $ ; ' $ Q$ ; > Q$ - & o! T@ . - ; > 5- o! %= ; N$ | & | > & *' H= > | = ] ; | ] ^& { aq.H= H= & N$ ; > ] [ `@ X@ ) ^ ^ & < 4 S$ 2 N$ N$ ; ] ; `@ ) [ 2 ~ ) ^ [ W@ [ [ Y@ $# 2 } ) %# { *# [ [ Y@ / ) | W@ ] ~ T$ < [ | ] { +# } [ _ } +# ( [ < / [ : W@ ) +# | *# ## } 2 [ { b -# } b =# } <& 9 -# : / { d ## ## { 7 ## $# ( 9 $# d } Y> V$ 9 o i ( b e 9 /& ( Y@ 0 6 6 $# == 0 [ } ## V~ a d k ,# 7 ># Y@ 7 / ,# k ## 1, ~# 0 c 6! i a' ,# ,# $# h 7 ~# k 4 } 6 '# $# ,# : Y> 6! 6 0 } &# $# a Y@ &# g ~# $# 6 a =# ( c c i $# $# ## ## 6 7 7 J= < 7 j : 7 e e 8 ,# X$ 7 6 :& -# e a 6 6 a 0 [& < d 6 &# -# a < d -# : 9 5 7 6 b a 7 a a } 9 6 ,# a } < &# &# $# a b V$ $# == } ## } b ,# &# n } &# } == < < [ { d $# 9 d < [ 1 0 -# $# | $# 6 $# &# b 7 &# } $# : 9 Y@ 6 $# < { } 6 Y> 1 &# < [ { $# -# *# / ## [ ) { { 2 : d [ N$ $# < | Z! W@ [ | < { { H= N$ ~ { ) H= ) ; 2 d ! ^ `, r, s, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, x, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, x, x, s, > }* . . S$ . # & $ # = X! Z, . ]& = . $ # R@ V@ . S$ V@ # M$ ]& ]& V@ ^& * + + M$ Z, = 0' ", +"y, y, y, y, z, . # $ * $ = U$ ; = * = = . . = . . . $ = * - Q$ # . = $ U@ ' - . & - # ; & S$ - U@ 0' . | & > . `@ $ ] A; . & N$ H= | * Q$ ; . ; ' & Z@ ~ ; - ] & A; S$ & U@ H= ) T- & ] |* ] U$ A; | ! ^ ; X@ { P$ ; ~ ~ ) 1 | ~ ] | ^ `@ | 6 ~ Q$ ] 2 | 4 / { ] ( W@ 7 ~ ( { | ;# $# 2 { < W@ [ X@ [ { [ [ ) : ) ) 7 $# | $# : 2 } ## X@ :& 6 *# : [ < } } $# a : N' ( } { 3* $# V$ a &# 8- 7 b 6 ( } } 6 &# 6 9 a } 7 ,# 6 9 q> } 6 e $# / $# 6 a a ( 8 6 $# b d b ,# ,# 6 == a ,# q> 7 } 9 0 3] 7 k 7 $# &# ~# b d 6 7 6 3* 6 a j $# a ~# b k k $# 6 ,# 6 6 7 } b a ~# -# V$ Y> -# b $# } 6- 6 == a 6 6 ,# ## 6 $# 7 7 7 7 ~# 8 d 6 -# e 7 d g } 1 k X$ d ># b a a [& ( a &# < } Y@ } 5 U- Y> 5 6 $# $# a g } e $# == a $# : 7 k 7 a } [ 7 7 6 7 &# 6 $# $# $# $# $# [ $# : a } -# 9 [ : /& d < 6- $# $# [ $# : $# $# Y@ { -# =# $# : /& [ X@ / < ## < 3 : } 2 / &# } ^ < 1 W@ ) } X@ W@ 1 .# } : ) ] 2 X@ ) | ) } 2 ) | ~ { ) ~ 2 ~ ] 2 ~ X@ 4 | W@ ^, v, s, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, z, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, s, s, v, R@ = ^& . Dv $ X! - S$ . > . * V@ . & [* > $ Q$ > # > $ L$ k) # L$ 0' . # p9 . ]& + $ Z, ", +"y, y, y, y, z, ]q.7' (q.]q.]q. V@ = = T@ . 0' . T@ . X! # # = . & # = * Z, 0' = > $ [* T@ > o! !, > & = U@ $ o! ~ U@ V@ T@ | - k) Z3 N$ H= & ' ' | %= H= 2 ~ ^ & H= U$ S$ S$ U@ U@ |* > N$ & > & U@ ] X@ ^ 2 | | ; 2 - [ ; H= 2 U@ | | | X@ ^ ~ ^ N$ ~ ^ /& ( | - ) 2 N$ ~ %# } | *# b } { { | / ^ ) } 1 { [ { } [ ~ [ 6 *# ## $# } { [ { 2 ## | ~ { { 6 6 W@ ( ## ## ~ [ 2 < } 2 e } Y@ +# / 6 6 ( { &# b b 6 1 ( 9 9 7 7 $# 6 d e D, 6 ~# 7 } 7 9 9 i 0 g } $# 6 ># ># i ,# e a b ## $# d ,# 6 ,# 6 bq.0 c a 1 b Y@ ,# k ,# 3] ,# a ># a ,# e -# ## 1 e 7 7 a -# } 6 ~# 6 ,# i } &# 8 c [ a 7 a a d -# e a e 7 8 ~# d i b a ,# i ,# g $# -> } 0 d } $# $# d 7 ,# 7 == Y> V$ 9 } $# 6 a } b ( ~# ## d c a $# ( /& 6- J= 7 [& 6 a [ 7 $# 6 / D, { 9 b } 6 7 1 &# b ,# &# [ } ## &# 7 5 $# 7 7 : { ## [ d | [ ( ## } V$ ( < b ## [ J= == d 2 ~ ## < { } 2 } 7 { R$ | ( < ) ~ { 2 ## ## { [ ~ / } 1 ( ~ ~ N$ [ < [ ^ } ~ /& U@ | H= X@ : ## 2 R$ H= 2 ~ 2 | X@ 6 =) q, y: y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, u, y, y, y, y, y, u, y, y, y, y, u, y, u, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, y, s, y, y, s, R@ * * ; | Q$ k) [* > ' & . = . & # . . Z, . . = M$ ]& J$ L$ I/ + = # # ]& * ]& ]& = ]& R@ "}; diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/welcome.png b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/welcome.png new file mode 100644 index 0000000..0e4641b Binary files /dev/null and b/eznixOS12Xdev-calamares/eznixOS12Xdev/splash/welcome.png differ diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-17/16865021501.desktop b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-17/16865021501.desktop new file mode 100644 index 0000000..5daa0c8 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-17/16865021501.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch TerminalEmulator +Icon=org.xfce.terminalemulator +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-AppStream-Ignore=True +Name=Terminal Emulator +Comment=Use the command line +X-XFCE-Source=file:///usr/share/applications/xfce4-terminal-emulator.desktop diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-18/16865021502.desktop b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-18/16865021502.desktop new file mode 100644 index 0000000..b6dd1b5 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-18/16865021502.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch FileManager %u +Icon=org.xfce.filemanager +StartupNotify=true +Terminal=false +Categories=Utility;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=inode/directory;x-scheme-handler/trash; +X-AppStream-Ignore=True +Name=File Manager +Comment=Browse the file system +X-XFCE-Source=file:///usr/share/applications/xfce4-file-manager.desktop diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-19/16865021503.desktop b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-19/16865021503.desktop new file mode 100644 index 0000000..96042ba --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/launcher-19/16865021503.desktop @@ -0,0 +1,14 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Exec=exo-open --launch WebBrowser %u +Icon=org.xfce.webbrowser +StartupNotify=true +Terminal=false +Categories=Network;X-XFCE;X-Xfce-Toplevel; +OnlyShowIn=XFCE; +X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https; +X-AppStream-Ignore=True +Name=Web Browser +Comment=Browse the web +X-XFCE-Source=file:///usr/share/applications/xfce4-web-browser.desktop diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/whiskermenu-7.rc b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/whiskermenu-7.rc new file mode 100644 index 0000000..2cf1948 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/panel/whiskermenu-7.rc @@ -0,0 +1,89 @@ +favorites=xfce4-web-browser.desktop,xfce4-mail-reader.desktop,xfce4-file-manager.desktop,xfce4-terminal-emulator.desktop +recent= +button-title=Menu +button-icon=emblem-debian +button-single-row=false +show-button-title=true +show-button-icon=true +launcher-show-name=true +launcher-show-description=false +launcher-show-tooltip=false +launcher-icon-size=2 +hover-switch-category=true +category-show-name=true +category-icon-size=1 +sort-categories=true +view-mode=2 +default-category=0 +recent-items-max=0 +favorites-in-recent=true +position-search-alternate=true +position-commands-alternate=true +position-categories-alternate=true +position-categories-horizontal=false +stay-on-focus-out=false +profile-shape=0 +confirm-session-command=true +menu-width=479 +menu-height=500 +menu-opacity=100 +command-settings=xfce4-settings-manager +show-command-settings=true +command-lockscreen=xflock4 +show-command-lockscreen=true +command-switchuser=dm-tool switch-to-greeter +show-command-switchuser=false +command-logoutuser=xfce4-session-logout --logout --fast +show-command-logoutuser=false +command-restart=xfce4-session-logout --reboot --fast +show-command-restart=false +command-shutdown=xfce4-session-logout --halt --fast +show-command-shutdown=false +command-suspend=xfce4-session-logout --suspend +show-command-suspend=false +command-hibernate=xfce4-session-logout --hibernate +show-command-hibernate=false +command-logout=xfce4-session-logout +show-command-logout=true +command-menueditor=menulibre +show-command-menueditor=true +command-profile=mugshot +show-command-profile=true +search-actions=6 + +[action0] +name=Man Pages +pattern=# +command=exo-open --launch TerminalEmulator man %s +regex=false + +[action1] +name=Search the Web +pattern=? +command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u +regex=false + +[action2] +name=Search for Files +pattern=- +command=catfish --path=~ --start %s +regex=false + +[action3] +name=Wikipedia +pattern=!w +command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u +regex=false + +[action4] +name=Run in Terminal +pattern=! +command=exo-open --launch TerminalEmulator %s +regex=false + +[action5] +name=Open URI +pattern=^(file|http|https):\\/\\/(.*)$ +command=exo-open \\0 +regex=true + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/displays.xml new file mode 100644 index 0000000..0dc41fc --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/displays.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml new file mode 100644 index 0000000..9ddc443 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/thunar.xml new file mode 100644 index 0000000..ff26405 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/thunar.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml new file mode 100644 index 0000000..e72def1 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml new file mode 100644 index 0000000..d7ea804 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml new file mode 100644 index 0000000..5865d01 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml new file mode 100644 index 0000000..8c0f72f --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml new file mode 100644 index 0000000..4fdf554 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml new file mode 100644 index 0000000..8346363 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml new file mode 100644 index 0000000..c1d4b3c --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml new file mode 100644 index 0000000..e139250 --- /dev/null +++ b/eznixOS12Xdev-calamares/eznixOS12Xdev/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

q c #88B3F0", +",q c #85AFEC", +"'q c #84AFEC", +")q c #83AFEB", +"!q c #7EA8E5", +"~q c #94B7E9", +"{q c #BBD3EF", +"]q c #AFCAEF", +"^q c #81A5E0", +"/q c #91B0E2", +"(q c #CBDEF2", +"_q c #8FAFE2", +":q c #648BCC", +"r c #8EB4EC", +",r c #7BA3E2", +"'r c #84ADEA", +")r c #8AB3F0", +"!r c #86B0EF", +"~r c #88B3EF", +"{r c #8EB6F0", +"]r c #85B0ED", +"^r c #7FA9E6", +"/r c #97B9EA", +"(r c #C1D6F1", +"_r c #BED6F0", +":r c #BED6EF", +"s c #8EAFE7", +",s c #5379BB", +"'s c #2F569A", +")s c #2F569B", +"!s c #30579C", +"~s c #3E66AA", +"{s c #4A72B5", +"]s c #4D76B7", +"^s c #78A1E0", +"/s c #89B0ED", +"(s c #8BA3CF", +"_s c #03214F", +":s c #161919", +"t c #062C6F", +",t c #052257", +"'t c #BFB715", +")t c #C6BE12", +"!t c #575521", +"~t c #7F7B21", +"{t c #D4CC18", +"]t c #AAA321", +"^t c #B6AF1D", +"/t c #B3AC20", +"(t c #AFA829", +"_t c #373A38", +":t c #0F1D3A", +"u c #102A53", +",u c #C9C234", +"'u c #C5BE36", +")u c #132D58", +"!u c #152E5A", +"~u c #BDB73D", +"{u c #D3CC34", +"]u c #1A325C", +"^u c #F0E61B", +"/u c #35425C", +"(u c #193462", +"_u c #173361", +":u c #9F9C50", +"v c #162A51", +",v c #D8D02F", +"'v c #ADA83F", +")v c #122C58", +"!v c #122B57", +"~v c #A39F46", +"{v c #E1D82B", +"]v c #24365B", +"^v c #152F5C", +"/v c #E1D82C", +"(v c #273A5F", +"_v c #17325E", +":v c #16315F", +"w c #1C3C71", +",w c #23447D", +"'w c #22427D", +")w c #1A3D7D", +"!w c #153B7B", +"~w c #0A3176", +"{w c #093174", +"]w c #163D83", +"^w c #304E86", +"/w c #B2CDF3", +"(w c #96BBF1", +"_w c #A0C2F2", +":w c #8FB7F1", +"x c #6F9CDA", +",x c #6F99D8", +"'x c #7AA2DE", +")x c #90B2E4", +"!x c #AEC9EF", +"~x c #A9C5EE", +"{x c #A7C5EF", +"]x c #92B4E6", +"^x c #85AAE3", +"/x c #729CDA", +"(x c #719CDB", +"_x c #719BDA", +":x c #719AD9", +"y c #7DA4DF", +",y c #779EDA", +"'y c #789FDA", +")y c #749BD9", +"!y c #719BD9", +"~y c #739DDB", +"{y c #3E64A9", +"]y c #3E65AA", +"^y c #456CAF", +"/y c #577EC0", +"(y c #99BDF0", +"_y c #B7D1F2", +":y c #6A87BC", +"z c #031531", +",z c #B0AA28", +"'z c #817D33", +")z c #2E3237", +"!z c #EFE614", +"~z c #868232", +"{z c #071B3E", +"]z c #071F43", +"^z c #272F42", +"/z c #B5AF32", +"(z c #716F42", +"_z c #3B4149", +":z c #D8D028", +"A c #223254", +",A c #122955", +"'A c #132B56", +")A c #15305A", +"!A c #1F3157", +"~A c #DBD32E", +"{A c #BCB640", +"]A c #132E5A", +"^A c #757653", +"/A c #C2BC41", +"(A c #CBC43C", +"_A c #1A3465", +":A c #1F4180", +"B c #719DDB", +",B c #739BDB", +"'B c #537BBC", +")B c #537ABD", +"!B c #6088C7", +"~B c #739ADA", +"{B c #89AFEB", +"]B c #A0C1F0", +"^B c #B9CEED", +"/B c #1C4083", +"(B c #082F73", +"_B c #6B6815", +":B c #ABA416", +"C c #414135", +",C c #99942D", +"'C c #8B872F", +")C c #101E3C", +"!C c #C9C226", +"~C c #A9A32D", +"{C c #041B3E", +"]C c #071B40", +"^C c #8F8B37", +"/C c #D8D023", +"(C c #43453F", +"_C c #051C3F", +":C c #071E42", +"D c #DBD21B", +",D c #F0E611", +"'D c #9E992D", +")D c #595838", +"!D c #DBD31F", +"~D c #9F9A31", +"{D c #6D6A37", +"]D c #676639", +"^D c #8E8A37", +"/D c #BAB42A", +"(D c #E6DD1A", +"_D c #45483F", +":D c #BAB42C", +"E c #2E3543", +",E c #1A2748", +"'E c #C2BB31", +")E c #9B963D", +"!E c #17294F", +"~E c #CAC332", +"{E c #C7C035", +"]E c #122B55", +"^E c #858348", +"/E c #F2E916", +"(E c #928F4D", +"_E c #142E5A", +":E c #15305B", +"F c #81AFEC", +",F c #83B0EF", +"'F c #6D99D8", +")F c #7AA6E4", +"!F c #648ACA", +"~F c #4E75B7", +"{F c #547CBE", +"]F c #5C82C3", +"^F c #7097D7", +"/F c #9FC0F0", +"(F c #D0E1F3", +"_F c #161816", +":F c #BCB412", +"G c #203764", +",G c #1B3665", +"'G c #1E3968", +")G c #1C3667", +"!G c #1D3768", +"~G c #1C3A6A", +"{G c #224378", +"]G c #163B7A", +"^G c #0C3278", +"/G c #143D82", +"(G c #14397B", +"_G c #BDCCE2", +":G c #C6DAF3", +"H c #132B55", +",H c #162E58", +"'H c #152D57", +")H c #142C57", +"!H c #122B56", +"~H c #152E59", +"{H c #132C57", +"]H c #142E58", +"^H c #1A315D", +"/H c #19335E", +"(H c #18315C", +"_H c #18325D", +":H c #162E5B", +"I c #061D40", +",I c #061C3F", +"'I c #082045", +")I c #0B234A", +"!I c #0D244C", +"~I c #0E254E", +"{I c #0F274F", +"]I c #102750", +"^I c #112852", +"/I c #142D56", +"(I c #112954", +"_I c #142F59", +":I c #142D58", +"J c #1E365F", +",J c #1D3766", +"'J c #1B3566", +")J c #203C6B", +"!J c #1C3A6B", +"~J c #193C7B", +"{J c #193C7C", +"]J c #173B7B", +"^J c #14397C", +"/J c #A6B8D8", +"(J c #A4C5F2", +"_J c #9ABEF1", +":J c #87B1F0", +"K c #092148", +",K c #0D234C", +"'K c #122951", +")K c #142B54", +"!K c #152E58", +"~K c #173058", +"{K c #19315B", +"]K c #172F59", +"^K c #3D475B", +"/K c #3D485D", +"(K c #1A3561", +"_K c #1E3966", +":K c #1F3A69", +"L c #C5DAF3", +",L c #4769A6", +"'L c #0B2248", +")L c #082146", +"!L c #11284F", +"~L c #142B53", +"{L c #132A53", +"]L c #122A54", +"^L c #132C56", +"/L c #17315A", +"(L c #1A3560", +"_L c #172F5C", +":L c #19325D", +"M c #83AEED", +",M c #8AB4F0", +"'M c #84ACE6", +")M c #4F77BA", +"!M c #7EA6E5", +"~M c #A5C5F3", +"{M c #B9D2F3", +"]M c #8DA7D3", +"^M c #153B82", +"/M c #03255C", +"(M c #021C48", +"_M c #061A3A", +":M c #081C3E", +"N c #112850", +",N c #1A3260", +"'N c #193460", +")N c #1D3664", +"!N c #1D3563", +"~N c #1C3664", +"{N c #223D6D", +"]N c #233F6E", +"^N c #1A4185", +"/N c #446095", +"(N c #D2E1F3", +"_N c #A5C4F2", +":N c #9ABFF3", +"O c #031735", +",O c #061E3F", +"'O c #091F43", +")O c #092041", +"!O c #0B2347", +"~O c #0F274C", +"{O c #12294F", +"]O c #112751", +"^O c #132A52", +"/O c #172F57", +"(O c #183159", +"_O c #1B345E", +":O c #1C335F", +"P c #C4D5EE", +",P c #5A80C1", +"'P c #557EBF", +")P c #547DBE", +"!P c #5982C3", +"~P c #91B7F0", +"{P c #DFEBF5", +"]P c #89A4D3", +"^P c #061939", +"/P c #10284E", +"(P c #0D244B", +"_P c #142C52", +":P c #172E58", +"

q c #88B3F0", +",q c #85AFEC", +"'q c #84AFEC", +")q c #83AFEB", +"!q c #7EA8E5", +"~q c #94B7E9", +"{q c #BBD3EF", +"]q c #AFCAEF", +"^q c #81A5E0", +"/q c #91B0E2", +"(q c #CBDEF2", +"_q c #8FAFE2", +":q c #648BCC", +"r c #8EB4EC", +",r c #7BA3E2", +"'r c #84ADEA", +")r c #8AB3F0", +"!r c #86B0EF", +"~r c #88B3EF", +"{r c #8EB6F0", +"]r c #85B0ED", +"^r c #7FA9E6", +"/r c #97B9EA", +"(r c #C1D6F1", +"_r c #BED6F0", +":r c #BED6EF", +"s c #8EAFE7", +",s c #5379BB", +"'s c #2F569A", +")s c #2F569B", +"!s c #30579C", +"~s c #3E66AA", +"{s c #4A72B5", +"]s c #4D76B7", +"^s c #78A1E0", +"/s c #89B0ED", +"(s c #8BA3CF", +"_s c #03214F", +":s c #161919", +"t c #062C6F", +",t c #052257", +"'t c #BFB715", +")t c #C6BE12", +"!t c #575521", +"~t c #7F7B21", +"{t c #D4CC18", +"]t c #AAA321", +"^t c #B6AF1D", +"/t c #B3AC20", +"(t c #AFA829", +"_t c #373A38", +":t c #0F1D3A", +"u c #102A53", +",u c #C9C234", +"'u c #C5BE36", +")u c #132D58", +"!u c #152E5A", +"~u c #BDB73D", +"{u c #D3CC34", +"]u c #1A325C", +"^u c #F0E61B", +"/u c #35425C", +"(u c #193462", +"_u c #173361", +":u c #9F9C50", +"v c #162A51", +",v c #D8D02F", +"'v c #ADA83F", +")v c #122C58", +"!v c #122B57", +"~v c #A39F46", +"{v c #E1D82B", +"]v c #24365B", +"^v c #152F5C", +"/v c #E1D82C", +"(v c #273A5F", +"_v c #17325E", +":v c #16315F", +"w c #1C3C71", +",w c #23447D", +"'w c #22427D", +")w c #1A3D7D", +"!w c #153B7B", +"~w c #0A3176", +"{w c #093174", +"]w c #163D83", +"^w c #304E86", +"/w c #B2CDF3", +"(w c #96BBF1", +"_w c #A0C2F2", +":w c #8FB7F1", +"x c #6F9CDA", +",x c #6F99D8", +"'x c #7AA2DE", +")x c #90B2E4", +"!x c #AEC9EF", +"~x c #A9C5EE", +"{x c #A7C5EF", +"]x c #92B4E6", +"^x c #85AAE3", +"/x c #729CDA", +"(x c #719CDB", +"_x c #719BDA", +":x c #719AD9", +"y c #7DA4DF", +",y c #779EDA", +"'y c #789FDA", +")y c #749BD9", +"!y c #719BD9", +"~y c #739DDB", +"{y c #3E64A9", +"]y c #3E65AA", +"^y c #456CAF", +"/y c #577EC0", +"(y c #99BDF0", +"_y c #B7D1F2", +":y c #6A87BC", +"z c #031531", +",z c #B0AA28", +"'z c #817D33", +")z c #2E3237", +"!z c #EFE614", +"~z c #868232", +"{z c #071B3E", +"]z c #071F43", +"^z c #272F42", +"/z c #B5AF32", +"(z c #716F42", +"_z c #3B4149", +":z c #D8D028", +"A c #223254", +",A c #122955", +"'A c #132B56", +")A c #15305A", +"!A c #1F3157", +"~A c #DBD32E", +"{A c #BCB640", +"]A c #132E5A", +"^A c #757653", +"/A c #C2BC41", +"(A c #CBC43C", +"_A c #1A3465", +":A c #1F4180", +"B c #719DDB", +",B c #739BDB", +"'B c #537BBC", +")B c #537ABD", +"!B c #6088C7", +"~B c #739ADA", +"{B c #89AFEB", +"]B c #A0C1F0", +"^B c #B9CEED", +"/B c #1C4083", +"(B c #082F73", +"_B c #6B6815", +":B c #ABA416", +"C c #414135", +",C c #99942D", +"'C c #8B872F", +")C c #101E3C", +"!C c #C9C226", +"~C c #A9A32D", +"{C c #041B3E", +"]C c #071B40", +"^C c #8F8B37", +"/C c #D8D023", +"(C c #43453F", +"_C c #051C3F", +":C c #071E42", +"D c #DBD21B", +",D c #F0E611", +"'D c #9E992D", +")D c #595838", +"!D c #DBD31F", +"~D c #9F9A31", +"{D c #6D6A37", +"]D c #676639", +"^D c #8E8A37", +"/D c #BAB42A", +"(D c #E6DD1A", +"_D c #45483F", +":D c #BAB42C", +"E c #2E3543", +",E c #1A2748", +"'E c #C2BB31", +")E c #9B963D", +"!E c #17294F", +"~E c #CAC332", +"{E c #C7C035", +"]E c #122B55", +"^E c #858348", +"/E c #F2E916", +"(E c #928F4D", +"_E c #142E5A", +":E c #15305B", +"F c #81AFEC", +",F c #83B0EF", +"'F c #6D99D8", +")F c #7AA6E4", +"!F c #648ACA", +"~F c #4E75B7", +"{F c #547CBE", +"]F c #5C82C3", +"^F c #7097D7", +"/F c #9FC0F0", +"(F c #D0E1F3", +"_F c #161816", +":F c #BCB412", +"G c #203764", +",G c #1B3665", +"'G c #1E3968", +")G c #1C3667", +"!G c #1D3768", +"~G c #1C3A6A", +"{G c #224378", +"]G c #163B7A", +"^G c #0C3278", +"/G c #143D82", +"(G c #14397B", +"_G c #BDCCE2", +":G c #C6DAF3", +"H c #132B55", +",H c #162E58", +"'H c #152D57", +")H c #142C57", +"!H c #122B56", +"~H c #152E59", +"{H c #132C57", +"]H c #142E58", +"^H c #1A315D", +"/H c #19335E", +"(H c #18315C", +"_H c #18325D", +":H c #162E5B", +"I c #061D40", +",I c #061C3F", +"'I c #082045", +")I c #0B234A", +"!I c #0D244C", +"~I c #0E254E", +"{I c #0F274F", +"]I c #102750", +"^I c #112852", +"/I c #142D56", +"(I c #112954", +"_I c #142F59", +":I c #142D58", +"J c #1E365F", +",J c #1D3766", +"'J c #1B3566", +")J c #203C6B", +"!J c #1C3A6B", +"~J c #193C7B", +"{J c #193C7C", +"]J c #173B7B", +"^J c #14397C", +"/J c #A6B8D8", +"(J c #A4C5F2", +"_J c #9ABEF1", +":J c #87B1F0", +"K c #092148", +",K c #0D234C", +"'K c #122951", +")K c #142B54", +"!K c #152E58", +"~K c #173058", +"{K c #19315B", +"]K c #172F59", +"^K c #3D475B", +"/K c #3D485D", +"(K c #1A3561", +"_K c #1E3966", +":K c #1F3A69", +"L c #C5DAF3", +",L c #4769A6", +"'L c #0B2248", +")L c #082146", +"!L c #11284F", +"~L c #142B53", +"{L c #132A53", +"]L c #122A54", +"^L c #132C56", +"/L c #17315A", +"(L c #1A3560", +"_L c #172F5C", +":L c #19325D", +"M c #83AEED", +",M c #8AB4F0", +"'M c #84ACE6", +")M c #4F77BA", +"!M c #7EA6E5", +"~M c #A5C5F3", +"{M c #B9D2F3", +"]M c #8DA7D3", +"^M c #153B82", +"/M c #03255C", +"(M c #021C48", +"_M c #061A3A", +":M c #081C3E", +"N c #112850", +",N c #1A3260", +"'N c #193460", +")N c #1D3664", +"!N c #1D3563", +"~N c #1C3664", +"{N c #223D6D", +"]N c #233F6E", +"^N c #1A4185", +"/N c #446095", +"(N c #D2E1F3", +"_N c #A5C4F2", +":N c #9ABFF3", +"O c #031735", +",O c #061E3F", +"'O c #091F43", +")O c #092041", +"!O c #0B2347", +"~O c #0F274C", +"{O c #12294F", +"]O c #112751", +"^O c #132A52", +"/O c #172F57", +"(O c #183159", +"_O c #1B345E", +":O c #1C335F", +"P c #C4D5EE", +",P c #5A80C1", +"'P c #557EBF", +")P c #547DBE", +"!P c #5982C3", +"~P c #91B7F0", +"{P c #DFEBF5", +"]P c #89A4D3", +"^P c #061939", +"/P c #10284E", +"(P c #0D244B", +"_P c #142C52", +":P c #172E58", +"

q c #88B3F0", +",q c #85AFEC", +"'q c #84AFEC", +")q c #83AFEB", +"!q c #7EA8E5", +"~q c #94B7E9", +"{q c #BBD3EF", +"]q c #AFCAEF", +"^q c #81A5E0", +"/q c #91B0E2", +"(q c #CBDEF2", +"_q c #8FAFE2", +":q c #648BCC", +"r c #8EB4EC", +",r c #7BA3E2", +"'r c #84ADEA", +")r c #8AB3F0", +"!r c #86B0EF", +"~r c #88B3EF", +"{r c #8EB6F0", +"]r c #85B0ED", +"^r c #7FA9E6", +"/r c #97B9EA", +"(r c #C1D6F1", +"_r c #BED6F0", +":r c #BED6EF", +"s c #8EAFE7", +",s c #5379BB", +"'s c #2F569A", +")s c #2F569B", +"!s c #30579C", +"~s c #3E66AA", +"{s c #4A72B5", +"]s c #4D76B7", +"^s c #78A1E0", +"/s c #89B0ED", +"(s c #8BA3CF", +"_s c #03214F", +":s c #161919", +"t c #062C6F", +",t c #052257", +"'t c #BFB715", +")t c #C6BE12", +"!t c #575521", +"~t c #7F7B21", +"{t c #D4CC18", +"]t c #AAA321", +"^t c #B6AF1D", +"/t c #B3AC20", +"(t c #AFA829", +"_t c #373A38", +":t c #0F1D3A", +"u c #102A53", +",u c #C9C234", +"'u c #C5BE36", +")u c #132D58", +"!u c #152E5A", +"~u c #BDB73D", +"{u c #D3CC34", +"]u c #1A325C", +"^u c #F0E61B", +"/u c #35425C", +"(u c #193462", +"_u c #173361", +":u c #9F9C50", +"v c #162A51", +",v c #D8D02F", +"'v c #ADA83F", +")v c #122C58", +"!v c #122B57", +"~v c #A39F46", +"{v c #E1D82B", +"]v c #24365B", +"^v c #152F5C", +"/v c #E1D82C", +"(v c #273A5F", +"_v c #17325E", +":v c #16315F", +"w c #1C3C71", +",w c #23447D", +"'w c #22427D", +")w c #1A3D7D", +"!w c #153B7B", +"~w c #0A3176", +"{w c #093174", +"]w c #163D83", +"^w c #304E86", +"/w c #B2CDF3", +"(w c #96BBF1", +"_w c #A0C2F2", +":w c #8FB7F1", +"x c #6F9CDA", +",x c #6F99D8", +"'x c #7AA2DE", +")x c #90B2E4", +"!x c #AEC9EF", +"~x c #A9C5EE", +"{x c #A7C5EF", +"]x c #92B4E6", +"^x c #85AAE3", +"/x c #729CDA", +"(x c #719CDB", +"_x c #719BDA", +":x c #719AD9", +"y c #7DA4DF", +",y c #779EDA", +"'y c #789FDA", +")y c #749BD9", +"!y c #719BD9", +"~y c #739DDB", +"{y c #3E64A9", +"]y c #3E65AA", +"^y c #456CAF", +"/y c #577EC0", +"(y c #99BDF0", +"_y c #B7D1F2", +":y c #6A87BC", +"z c #031531", +",z c #B0AA28", +"'z c #817D33", +")z c #2E3237", +"!z c #EFE614", +"~z c #868232", +"{z c #071B3E", +"]z c #071F43", +"^z c #272F42", +"/z c #B5AF32", +"(z c #716F42", +"_z c #3B4149", +":z c #D8D028", +"A c #223254", +",A c #122955", +"'A c #132B56", +")A c #15305A", +"!A c #1F3157", +"~A c #DBD32E", +"{A c #BCB640", +"]A c #132E5A", +"^A c #757653", +"/A c #C2BC41", +"(A c #CBC43C", +"_A c #1A3465", +":A c #1F4180", +"B c #719DDB", +",B c #739BDB", +"'B c #537BBC", +")B c #537ABD", +"!B c #6088C7", +"~B c #739ADA", +"{B c #89AFEB", +"]B c #A0C1F0", +"^B c #B9CEED", +"/B c #1C4083", +"(B c #082F73", +"_B c #6B6815", +":B c #ABA416", +"C c #414135", +",C c #99942D", +"'C c #8B872F", +")C c #101E3C", +"!C c #C9C226", +"~C c #A9A32D", +"{C c #041B3E", +"]C c #071B40", +"^C c #8F8B37", +"/C c #D8D023", +"(C c #43453F", +"_C c #051C3F", +":C c #071E42", +"D c #DBD21B", +",D c #F0E611", +"'D c #9E992D", +")D c #595838", +"!D c #DBD31F", +"~D c #9F9A31", +"{D c #6D6A37", +"]D c #676639", +"^D c #8E8A37", +"/D c #BAB42A", +"(D c #E6DD1A", +"_D c #45483F", +":D c #BAB42C", +"E c #2E3543", +",E c #1A2748", +"'E c #C2BB31", +")E c #9B963D", +"!E c #17294F", +"~E c #CAC332", +"{E c #C7C035", +"]E c #122B55", +"^E c #858348", +"/E c #F2E916", +"(E c #928F4D", +"_E c #142E5A", +":E c #15305B", +"F c #81AFEC", +",F c #83B0EF", +"'F c #6D99D8", +")F c #7AA6E4", +"!F c #648ACA", +"~F c #4E75B7", +"{F c #547CBE", +"]F c #5C82C3", +"^F c #7097D7", +"/F c #9FC0F0", +"(F c #D0E1F3", +"_F c #161816", +":F c #BCB412", +"G c #203764", +",G c #1B3665", +"'G c #1E3968", +")G c #1C3667", +"!G c #1D3768", +"~G c #1C3A6A", +"{G c #224378", +"]G c #163B7A", +"^G c #0C3278", +"/G c #143D82", +"(G c #14397B", +"_G c #BDCCE2", +":G c #C6DAF3", +"H c #132B55", +",H c #162E58", +"'H c #152D57", +")H c #142C57", +"!H c #122B56", +"~H c #152E59", +"{H c #132C57", +"]H c #142E58", +"^H c #1A315D", +"/H c #19335E", +"(H c #18315C", +"_H c #18325D", +":H c #162E5B", +"I c #061D40", +",I c #061C3F", +"'I c #082045", +")I c #0B234A", +"!I c #0D244C", +"~I c #0E254E", +"{I c #0F274F", +"]I c #102750", +"^I c #112852", +"/I c #142D56", +"(I c #112954", +"_I c #142F59", +":I c #142D58", +"J c #1E365F", +",J c #1D3766", +"'J c #1B3566", +")J c #203C6B", +"!J c #1C3A6B", +"~J c #193C7B", +"{J c #193C7C", +"]J c #173B7B", +"^J c #14397C", +"/J c #A6B8D8", +"(J c #A4C5F2", +"_J c #9ABEF1", +":J c #87B1F0", +"K c #092148", +",K c #0D234C", +"'K c #122951", +")K c #142B54", +"!K c #152E58", +"~K c #173058", +"{K c #19315B", +"]K c #172F59", +"^K c #3D475B", +"/K c #3D485D", +"(K c #1A3561", +"_K c #1E3966", +":K c #1F3A69", +"L c #C5DAF3", +",L c #4769A6", +"'L c #0B2248", +")L c #082146", +"!L c #11284F", +"~L c #142B53", +"{L c #132A53", +"]L c #122A54", +"^L c #132C56", +"/L c #17315A", +"(L c #1A3560", +"_L c #172F5C", +":L c #19325D", +"M c #83AEED", +",M c #8AB4F0", +"'M c #84ACE6", +")M c #4F77BA", +"!M c #7EA6E5", +"~M c #A5C5F3", +"{M c #B9D2F3", +"]M c #8DA7D3", +"^M c #153B82", +"/M c #03255C", +"(M c #021C48", +"_M c #061A3A", +":M c #081C3E", +"N c #112850", +",N c #1A3260", +"'N c #193460", +")N c #1D3664", +"!N c #1D3563", +"~N c #1C3664", +"{N c #223D6D", +"]N c #233F6E", +"^N c #1A4185", +"/N c #446095", +"(N c #D2E1F3", +"_N c #A5C4F2", +":N c #9ABFF3", +"O c #031735", +",O c #061E3F", +"'O c #091F43", +")O c #092041", +"!O c #0B2347", +"~O c #0F274C", +"{O c #12294F", +"]O c #112751", +"^O c #132A52", +"/O c #172F57", +"(O c #183159", +"_O c #1B345E", +":O c #1C335F", +"P c #C4D5EE", +",P c #5A80C1", +"'P c #557EBF", +")P c #547DBE", +"!P c #5982C3", +"~P c #91B7F0", +"{P c #DFEBF5", +"]P c #89A4D3", +"^P c #061939", +"/P c #10284E", +"(P c #0D244B", +"_P c #142C52", +":P c #172E58", +"

q c #88B3F0", +",q c #85AFEC", +"'q c #84AFEC", +")q c #83AFEB", +"!q c #7EA8E5", +"~q c #94B7E9", +"{q c #BBD3EF", +"]q c #AFCAEF", +"^q c #81A5E0", +"/q c #91B0E2", +"(q c #CBDEF2", +"_q c #8FAFE2", +":q c #648BCC", +"r c #8EB4EC", +",r c #7BA3E2", +"'r c #84ADEA", +")r c #8AB3F0", +"!r c #86B0EF", +"~r c #88B3EF", +"{r c #8EB6F0", +"]r c #85B0ED", +"^r c #7FA9E6", +"/r c #97B9EA", +"(r c #C1D6F1", +"_r c #BED6F0", +":r c #BED6EF", +"s c #8EAFE7", +",s c #5379BB", +"'s c #2F569A", +")s c #2F569B", +"!s c #30579C", +"~s c #3E66AA", +"{s c #4A72B5", +"]s c #4D76B7", +"^s c #78A1E0", +"/s c #89B0ED", +"(s c #8BA3CF", +"_s c #03214F", +":s c #161919", +"t c #062C6F", +",t c #052257", +"'t c #BFB715", +")t c #C6BE12", +"!t c #575521", +"~t c #7F7B21", +"{t c #D4CC18", +"]t c #AAA321", +"^t c #B6AF1D", +"/t c #B3AC20", +"(t c #AFA829", +"_t c #373A38", +":t c #0F1D3A", +"u c #102A53", +",u c #C9C234", +"'u c #C5BE36", +")u c #132D58", +"!u c #152E5A", +"~u c #BDB73D", +"{u c #D3CC34", +"]u c #1A325C", +"^u c #F0E61B", +"/u c #35425C", +"(u c #193462", +"_u c #173361", +":u c #9F9C50", +"v c #162A51", +",v c #D8D02F", +"'v c #ADA83F", +")v c #122C58", +"!v c #122B57", +"~v c #A39F46", +"{v c #E1D82B", +"]v c #24365B", +"^v c #152F5C", +"/v c #E1D82C", +"(v c #273A5F", +"_v c #17325E", +":v c #16315F", +"w c #1C3C71", +",w c #23447D", +"'w c #22427D", +")w c #1A3D7D", +"!w c #153B7B", +"~w c #0A3176", +"{w c #093174", +"]w c #163D83", +"^w c #304E86", +"/w c #B2CDF3", +"(w c #96BBF1", +"_w c #A0C2F2", +":w c #8FB7F1", +"x c #6F9CDA", +",x c #6F99D8", +"'x c #7AA2DE", +")x c #90B2E4", +"!x c #AEC9EF", +"~x c #A9C5EE", +"{x c #A7C5EF", +"]x c #92B4E6", +"^x c #85AAE3", +"/x c #729CDA", +"(x c #719CDB", +"_x c #719BDA", +":x c #719AD9", +"y c #7DA4DF", +",y c #779EDA", +"'y c #789FDA", +")y c #749BD9", +"!y c #719BD9", +"~y c #739DDB", +"{y c #3E64A9", +"]y c #3E65AA", +"^y c #456CAF", +"/y c #577EC0", +"(y c #99BDF0", +"_y c #B7D1F2", +":y c #6A87BC", +"z c #031531", +",z c #B0AA28", +"'z c #817D33", +")z c #2E3237", +"!z c #EFE614", +"~z c #868232", +"{z c #071B3E", +"]z c #071F43", +"^z c #272F42", +"/z c #B5AF32", +"(z c #716F42", +"_z c #3B4149", +":z c #D8D028", +"A c #223254", +",A c #122955", +"'A c #132B56", +")A c #15305A", +"!A c #1F3157", +"~A c #DBD32E", +"{A c #BCB640", +"]A c #132E5A", +"^A c #757653", +"/A c #C2BC41", +"(A c #CBC43C", +"_A c #1A3465", +":A c #1F4180", +"B c #719DDB", +",B c #739BDB", +"'B c #537BBC", +")B c #537ABD", +"!B c #6088C7", +"~B c #739ADA", +"{B c #89AFEB", +"]B c #A0C1F0", +"^B c #B9CEED", +"/B c #1C4083", +"(B c #082F73", +"_B c #6B6815", +":B c #ABA416", +"C c #414135", +",C c #99942D", +"'C c #8B872F", +")C c #101E3C", +"!C c #C9C226", +"~C c #A9A32D", +"{C c #041B3E", +"]C c #071B40", +"^C c #8F8B37", +"/C c #D8D023", +"(C c #43453F", +"_C c #051C3F", +":C c #071E42", +"D c #DBD21B", +",D c #F0E611", +"'D c #9E992D", +")D c #595838", +"!D c #DBD31F", +"~D c #9F9A31", +"{D c #6D6A37", +"]D c #676639", +"^D c #8E8A37", +"/D c #BAB42A", +"(D c #E6DD1A", +"_D c #45483F", +":D c #BAB42C", +"E c #2E3543", +",E c #1A2748", +"'E c #C2BB31", +")E c #9B963D", +"!E c #17294F", +"~E c #CAC332", +"{E c #C7C035", +"]E c #122B55", +"^E c #858348", +"/E c #F2E916", +"(E c #928F4D", +"_E c #142E5A", +":E c #15305B", +"F c #81AFEC", +",F c #83B0EF", +"'F c #6D99D8", +")F c #7AA6E4", +"!F c #648ACA", +"~F c #4E75B7", +"{F c #547CBE", +"]F c #5C82C3", +"^F c #7097D7", +"/F c #9FC0F0", +"(F c #D0E1F3", +"_F c #161816", +":F c #BCB412", +"G c #203764", +",G c #1B3665", +"'G c #1E3968", +")G c #1C3667", +"!G c #1D3768", +"~G c #1C3A6A", +"{G c #224378", +"]G c #163B7A", +"^G c #0C3278", +"/G c #143D82", +"(G c #14397B", +"_G c #BDCCE2", +":G c #C6DAF3", +"H c #132B55", +",H c #162E58", +"'H c #152D57", +")H c #142C57", +"!H c #122B56", +"~H c #152E59", +"{H c #132C57", +"]H c #142E58", +"^H c #1A315D", +"/H c #19335E", +"(H c #18315C", +"_H c #18325D", +":H c #162E5B", +"I c #061D40", +",I c #061C3F", +"'I c #082045", +")I c #0B234A", +"!I c #0D244C", +"~I c #0E254E", +"{I c #0F274F", +"]I c #102750", +"^I c #112852", +"/I c #142D56", +"(I c #112954", +"_I c #142F59", +":I c #142D58", +"J c #1E365F", +",J c #1D3766", +"'J c #1B3566", +")J c #203C6B", +"!J c #1C3A6B", +"~J c #193C7B", +"{J c #193C7C", +"]J c #173B7B", +"^J c #14397C", +"/J c #A6B8D8", +"(J c #A4C5F2", +"_J c #9ABEF1", +":J c #87B1F0", +"K c #092148", +",K c #0D234C", +"'K c #122951", +")K c #142B54", +"!K c #152E58", +"~K c #173058", +"{K c #19315B", +"]K c #172F59", +"^K c #3D475B", +"/K c #3D485D", +"(K c #1A3561", +"_K c #1E3966", +":K c #1F3A69", +"L c #C5DAF3", +",L c #4769A6", +"'L c #0B2248", +")L c #082146", +"!L c #11284F", +"~L c #142B53", +"{L c #132A53", +"]L c #122A54", +"^L c #132C56", +"/L c #17315A", +"(L c #1A3560", +"_L c #172F5C", +":L c #19325D", +"M c #83AEED", +",M c #8AB4F0", +"'M c #84ACE6", +")M c #4F77BA", +"!M c #7EA6E5", +"~M c #A5C5F3", +"{M c #B9D2F3", +"]M c #8DA7D3", +"^M c #153B82", +"/M c #03255C", +"(M c #021C48", +"_M c #061A3A", +":M c #081C3E", +"N c #112850", +",N c #1A3260", +"'N c #193460", +")N c #1D3664", +"!N c #1D3563", +"~N c #1C3664", +"{N c #223D6D", +"]N c #233F6E", +"^N c #1A4185", +"/N c #446095", +"(N c #D2E1F3", +"_N c #A5C4F2", +":N c #9ABFF3", +"O c #031735", +",O c #061E3F", +"'O c #091F43", +")O c #092041", +"!O c #0B2347", +"~O c #0F274C", +"{O c #12294F", +"]O c #112751", +"^O c #132A52", +"/O c #172F57", +"(O c #183159", +"_O c #1B345E", +":O c #1C335F", +"P c #C4D5EE", +",P c #5A80C1", +"'P c #557EBF", +")P c #547DBE", +"!P c #5982C3", +"~P c #91B7F0", +"{P c #DFEBF5", +"]P c #89A4D3", +"^P c #061939", +"/P c #10284E", +"(P c #0D244B", +"_P c #142C52", +":P c #172E58", +"